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

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

.anylinkmenu{
position: absolute;
top: 0;
left: 0;
visibility: hidden;
border: 0px solid black;
border-bottom-width: 0;
font:12px 'Trebuchet MS', Arial, Helvetica, sans-serif; color:#006666;
line-height: 22px;

background: aliceblue;
width: 300px; /* 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 gray;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
text-indent: 15px;
}

.anylinkmenu a:hover{ /*hover background color*/
background: #e0ffff;
color: #006666;
}

