/* ######### Default class for drop down menus ######### */
.anylinkmenu{
position: absolute;
margin-top:9px;
left: 0;
top: 0;
visibility: hidden;
border-bottom-width: 0;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #CB0101;
width: 170px; /* default width for menu */
}

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

.anylinkmenu  a{
width: 100%;
display: block;
text-indent: 1px;
border-bottom: 1px solid #DDDDDD;
padding: 3px 0;
text-decoration: none;
color:#fff;
}

.anylinkmenu a:hover{ /*hover background color*/
background: #000;
color:#fff;
font-size:12px;
font-weight:bold;

}




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