/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border-bottom-width: 0;
font-family: Tahoma, Arial, Helvetica;
font-size:12px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
width: 150px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
}

.anylinkmenu ul li{
list-style:none;
list-style-type: none;
margin: 0;
padding: 0;
line-height:15px;
}

.anylinkmenu ul li a{
display: block;
padding: 3px 10px;
border-bottom: 1px solid #3C4678;
text-decoration: none;
}

.anylinkmenu a:hover{ /*hover background color*/
background: #3C4678;
color: #939dbc;
}



/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}