/* remove the bullets, padding and margins from the lists */
.menu 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 */
.menu li{
float:left;
position:relative;
z-index:100;
}
/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:22px;
}
/* style all the links */
.menu ul li a { font-size: 12px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none; letter-spacing: 1px; display:block; width:110px; padding:3px 0; color:#00469b; font-weight: 700; background:#fffff5; text-decoration:none; margin-right:1px; text-align:center; border-left: 1px solid; border-bottom: 1px solid; border-right: 1px solid; border-top-style: solid; border-top-width: 1px; }
.menu ul li a:visited { font-size: 12px; font-family: Arial, Verdana, Helvetica, sans-serif; text-decoration: none; letter-spacing: 1px; display:block; width:110px; padding:3px 0; color:#00469b; font-weight: 700; background:#fffff5; text-decoration:none; margin-right:1px; text-align:center; border-left: 1px solid; border-bottom: 1px solid; border-right: 1px solid; border-top-style: solid; border-top-width: 1px; }
/* style the links hover */
.menu ul li a:hover{ color:#fffff5; background:#00469b; border: solid 1px #00f; }
/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:110px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul :hover ul{
visibility:visible;
}
.menu ul ul li a { color: #00469b; background-color: #fffff5; margin-top: -1px; order-right-style: solid; }
.menu ul ul li a:visited { color: #00469b; background-color: #fffff5; margin-top: -1px; order-right-style: solid; }
.menu ul ul li a:hover { color: #fffff5; background-color: #00469b; margin-top: -1px; order-bottom-style: solid; order-right-style: solid; }
