
li#spacer{
visibility:hidden
}

/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
font-family:verdana;
font-weight:bold;
padding:0; margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list for IE6*/
.menu table{
border-collapse:collapse;
position:absolute;
z-index:100;
left:-1px;
top:21px; /* depends on font height and padding in .menu a{} */
}

/* style all the links */
.menu a, .menu :visited {
background:#99cc66; color:#000;
text-decoration:none;
text-align:center;
font-size:10px;
display:block;
width:149px;
padding:4px 0;
margin-right:1px;
border-top:1px solid #ccffcc;
border-bottom:1px solid #000
}
/* style the links hover */
.menu :hover{
background:#336633; color:#fff;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}
