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

.anylinkcss{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #000000;
border-bottom-width: 0;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #ffcc66;
width: 200px; /* default width for menu */
}

.anylinkcss ul{
margin: 0px;
padding: 0px;
list-style-type: none;
}
.anylinkcss ul li {margin:0px; padding:0px; display:block; width:200px; border-bottom:solid 1px #886600;}
.anylinkcss ul li a {display: block; width:194px; padding: 3px 3px 3px 3px; 
text-decoration: none;
color:#000000;
}

.anylinkcss a:hover { /*hover background color*/
background: #886600;
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;*/
}