/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 3px solid #3BAACE;

font: normal 12px Verdana;
/*line-height: 18px;*/
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #E9F5F9;
width: 200px; /* default width for menu */
text-align:left;
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li{
border-bottom: 1px solid #3BAACE;
padding:8px 10px;
background: none;
margin:0px;
}

.anylinkmenu ul li a{
width: 100%;
display: block;
text-indent: 0px;
padding: 0px 0;
text-decoration: none;
font-weight: bold;
text-indent: 0px;
}

.anylinkmenu li:hover{ /*hover background color*/
background: #F9D34A;
color: #D63322;
}

