
/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
font: normal 11px;
line-height: 11px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #500e1e;
width: 200px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li a{
width: 100%;
height: 20px;
display: block;
text-indent: 3px;
padding: 8px 0 0 0;
text-decoration: none;
text-indent: 5px;
color:#ffffff;
text-transform:uppercase;
}

.anylinkmenu a:hover{ /*hover background color*/
background: #3f0b17;
}

