/* remove the bullets, padding and margins from the lists */
.men ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.men li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.men table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:21px;
}

/* style all the links */
.men a, .men :visited {
display:block;
font-size:9px;
width:100px;
padding:6px 0;
color:#97AFCF;
background:#000000;
text-decoration:none;
margin-right:1px;
text-align:left;
}
/* style the links hover */
.men :hover{
color:#FFF;
text-decoration:none;
background:#;
}

/* hide the sub level links */
.men ul ul {
visibility:hidden;
position:absolute;
width:100px;
height:0;
}
/* make the sub level visible on hover list or link */
.men ul :hover ul{
visibility:visible;
}