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

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #FFFFFF;
width: 70px; /* default width for menu */
text-transform: uppercase;
text-align: center;
font-size: 11px;
}

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

.anylinkmenu ul li a{
width: 100%;
display: block;
padding: 2px 0;
text-decoration: none;
color: #666666;
}

.anylinkmenu a:hover{ /*hover background color*/
color: #000000;
}