/* ######### Default class for drop down menus ######### */

#mainmenu{
width: 100%; /*width of menu*/
}

#mainmenu .headerbar{
font: bold 13px Verdana;
color: white;
background: #606060;
margin-bottom: 0; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
text-indent: 10px;
padding: 7px 0 7px 0; /*31px is left indentation of header text*/
}

#mainmenu ul{
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}

#mainmenu ul li{
border-bottom: solid 1px #FFF; /*bottom spacing between menu items*/
}

#mainmenu ul li a{
font: normal 13px Tahoma;
color: #666;
position: relative;
background: #f5f5f5;
display: block;
padding: 5px 0;
line-height: 17px;
padding-left: 8px; /*link text is indented 8px*/
text-decoration: none;
}

#mainmenu ul li a:visited{
color: #666;
}

#mainmenu ul li a:hover{ /*hover state CSS*/
color: white;
background: #a1c4d0;
}

.anylinkcss{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #bdddfe;
border-bottom-width: 0;
font: normal 13px Tahoma;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #ebf5ff;
width: auto; /* default width for menu */
min-width: 150px;
}

.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcss ul li a{
width: 100%;
display: block;
/*text-indent: 3px;*/
border-bottom: 1px solid #bdddfe;
padding: 1px 0px;
text-decoration: none;
font-weight: normal;
text-indent: 5px;
margin-right: 5px; /* set right space of submenu items */
}

.anylinkcss a:hover{ /*hover background color*/
background: #68cbfe;
color: white;
}

