.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: yellow;
}

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

.anylinkmenu{
position: absolute;
visibility: hidden;
font: normal 11px Arial;
line-height: 14px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #FFFFFF;
width: 120px; /* default width for menu */
}

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

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

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