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

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

.anylinkmenu{
position: absolute;
left: 0;
top:0;
margin-top:10px;
visibility: hidden;
border: none;
font: normal 11px Verdana;
line-height: 25px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #000;
filter:alpha(opacity=80);
-moz-opacity:0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
width: 99px; /* default width for menu */
height:30px;
}

.anylinkmenu ul{
margin:0;
padding: 0;
list-style-type: none;
}
.anylinkmenu ul li {
height:30px;	
border: 1px solid #74746f;
filter:alpha(opacity=80);
-moz-opacity:0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
}
.anylinkmenu ul li a{
width: 100%;
display: block;
margin:0;
text-indent: 5px;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
background: #000;
filter:alpha(opacity=80);
-moz-opacity:0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
color:#939288;
}

.anylinkmenu a:hover{ /*hover background color*/
background: #000;
filter:alpha(opacity=90);
-moz-opacity:0.9;
-khtml-opacity: 0.9;
opacity: 0.9;
color: #da010f;
}

