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

ul.anylinkcss
{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #9CF;
width: 200px; /* default width for menu */
text-align: left;
}

ul.anylinkcss
{
margin: 0;
margin-top: -1em;
padding: 3px;
list-style-type: none;
}
ul.anylinkcss li
{
	margin: 0;
	padding: 0;
}
ul.anylinkcss li a
{
width: 100%;
display: block;
color: #000;
font-family: sans-serif;
padding: 0;
margin: 0;
text-decoration: none;
font-weight: bold;
font-size: 1.2em;
}

ul.anylinkcss a:hover{ /*hover background color*/
background: black;
color: white;
}

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