.menu {
width:110px; 
float:left;
position:relative;
margin-top:5px;
margin-right:0px;
z-index:90;
height:170px;
font-family:arial, Helvetica, sans-serif;
font-size:12px;
font-weight:normal;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
float:left;
padding:0;
margin:0;
list-style-type:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
width:110px;
position:relative;
}

.menu li img {
border:0;
}


/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
/*font-size:12px;
font-weight:bold;*/
text-decoration:none;  
width:110px; 
border:0;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:110px;
w\idth:110px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
width:80px;
visibility:hidden;
position:relative;
height:0;
top:-55px;
left:-85px; 
border-top:0;
display:block;
}
/* another hack for IE5.5 */
* html .menu ul ul {
position:relative;
visibility:hidden;
top:-25px;
t\op:-25px;
width:80px;
/*left:107px;*/
left:-88px;
}

/*.menu ul li.ns {
margin-top:-12px;
margin-bottom:-3px;
}
 
*html .menu ul li.ns {
margin-top:-9px;
margin-bottom:-1px;
}*/

.menu ul li.ns {
margin-top:-5px;
margin-bottom:0;
}
 
*html .menu ul li.ns {
margin-top:-5px;
margin-bottom:5px;
}


/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
/*background-color:#666666;*/
width:80px;
background-color:#375029;
color:#FFFFFF; 
padding-left:5px;
padding-top:2px;
padding-bottom:2px;
}

/* style the top level hover */
.menu a:hover{
text-decoration:none;
padding:0;
margin:0;
}

.menu :hover > a {
text-decoration:none;
padding:0;
margin:0;
}

.menu ul ul a:hover{
width:80px;
padding-left:5px;
padding-top:2px;
padding-bottom:2px;
color:#375029;
background-color:#ffcc66;
}

.menu ul ul :hover > a {
width:80px;
padding-left:5px;
padding-top:2px;
padding-bottom:2px;
color:#375029;
background-color:#ffcc66;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; 
}


