/* ######### Default class for drop down menus ######### */

.anylinkcss{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border-bottom-width: 0;
text-decoration: none;
padding: 5px 1em;
font: 11pt arial, sans-serif;
text-align: left;
font-style: italic;
font-weight: bold;
color: #990000;
font-variant: small-caps;
line-height: 20px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #ffffcd;
width: 200px; /* default width for menu */
}

.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcss ul li a{
width: 100%;
display: block;
text-indent: 3px;
padding: 5px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
border: 1px solid #990000;
text-decoration: none;
}

.anylinkcss a:hover{ /*hover background color*/
background: #ffcc99;
color: #990000;
text-decoration: none;
}




/* ######### 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;
}
