/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
right: 0;
top: 0;
visibility: hidden;
color:#fff;
border: 1px solid #000;
border-bottom-width: 0;
font: normal 12px Verdana;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #1e0d61;
width: 250px; /* default width for menu */
}

.anylinkmenu ul{
color:#fff;
margin: 0;
padding: 0;
list-style-type: none;
z-index: 100; /* zIndex should be greater than that of shadow's below */

}


.anylinkmenu ul li a{
/*color: #00bff3;*/
color:#fff;
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid #000;
padding: 3px 0 0 10px;
/*color:#FFFFFF;*/
text-decoration: none;
font-weight: bold;
z-index: 100; /* zIndex should be greater than that of shadow's below */

}


.anylinkmenu ul li a:hover{ /*hover background color*/
/*
background-color:#FFFFFF;
background: #fff;
color:#000000;
*/
width: 100%;
display: block;
background: #fff;
color:#000;
text-indent: 3px;
border-bottom: 1px solid #000;
padding: 3px 0 0 10px;
/*color:#FFFFFF;*/
text-decoration: none;
font-weight: bold;
z-index: 100; /* zIndex should be greater than that of shadow's below */


}



