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

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
border-bottom-width: 0px;
font: normal 11px Verdana;
line-height: 15px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
color: #ffffff;
background: #006600;
}

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

.anylinkmenu ul li a{
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 3px 5px 3px 0px;
text-decoration: none;
font: normal 11px Verdana;
color: #ffffff;
text-indent: 5px;
}

.anylinkmenu a:hover{ /*hover background color*/
font: normal 11px Verdana;
color: #ffffff;
background-color: #000000;
}


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