.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
color: #000;
text-decoration: none;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: fixed;
margin-top:6px;
margin-left:-2px;
visibility: hidden;
border-bottom: 1px solid #b7872d;
font:13px 'Cambria', Times New Roman; 
color:#000; 
z-index: 100; /* zIndex should be greater than that of shadow's below */
background:#fff;
/*background-color:rbga(255,255,255,0.9);*/
width: 230px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0px;
padding: 5px;
list-style-type: none;
}

.anylinkmenu ul li a{
width: 220px;
display: block;
text-indent: 3px;
padding: 3px 0;
text-decoration: none;
color: #000;
/* border-bottom: 1px solid #1c1c1c; */
/*border-bottom-style:dotted;*/
}

.anylinkmenu a:hover{ /*hover background color*/
color: #b7872d;
}



