﻿/* remove the bullets, padding and margins from the lists */
.menuguide 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 */
.menuguide li{
float:left;
position:relative;
z-index:100;

}

/* use the table to position the dropdown list */
.menuguide table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menuguide a, .menuguide :visited {
display:block;
font-size:11px;
width:120px;
/*padding:10px 0;*/
color:#FFFFFF;
background:#444443;
text-decoration:none;
margin-right:1px;
text-align:center;
height:38px;
}
/* style the links hover */
.menuguide :hover{
color:#fe682d;
background:#444443;
}

/* hide the sub level links */
.menuguide ul ul {
visibility:hidden;
position:absolute;
width:120px;
height:0;
}
/* make the sub level visible on hover list or link */
.menuguide ul li:hover ul,
.menuguide ul a:hover ul{
visibility:visible;
}
