/* Styles for CSS Drop Down (Main) Menu */

/* 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:25px;
}

/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:11px;	/* was 10px */
width:96px;		/* changes the width of the menu items. 92px + 4px padding-left = 96px total = 960 total website width / 10 menu items */
height: 24px;	
padding:4px 0px 6px 0px;
color:#C75E00;
background-image:url(../img/menu-button_bg5.jpg);
border-bottom:1px solid #99CC66;
text-decoration:none;
margin-right:0px;
text-align:center;
font-family:verdana, sans-serif;
}
/* style the links hover */
.menu :hover{
color:#D9F5BC;
background:#C75E00;
}

/* 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;
}


