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

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
font: normal 10px Verdana;
line-height: 24px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: transparent;
width: 170px; /* default width for menu */
}
.anylinkmenu ul {
margin:0;
padding:0;
list-style-type:none;
}
.anylinkmenu ul li{
width: 170px;
background-image:url(../img/submenu_bg.png);
background-repeat:no-repeat;
background-position: top left;
margin-top: 1px;
list-style-type: none;
}

.anylinkmenu ul li a{
width:100%;
display: block;
text-decoration: none;
font-weight: normal;
text-indent: 10px;
padding:0;
}

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

