.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: none;

}

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
background-color: #C5BE6E;
border:1px solid #B4AB8C;
border-bottom-width: 0;
font:normal 11px Trebuchet MS, sans serif;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
width: 170px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid #B4AB8C;
padding: 1px 0;
text-decoration: none;
font-weight: normal;
color: #535252;
text-indent: 3px;
}


.anylinkmenu a:hover{ /*hover background color*/
background-color: #9C9758;
color: white;
}

#dropmenudiv {
position:absolute;
background-color: #C5BE6E;
border:1px solid #B4AB8C;
border-bottom-width: 0;
font:normal 11px Trebuchet MS, sans serif;
line-height:18px;
z-index:100;
}

#dropmenudiv a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid #B4AB8C;
padding: 1px 0;
text-decoration: none;
font-weight: normal;
}

#dropmenudiv a:hover{ /*hover background color*/
background-color: #9C9758;
}