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


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

.anylinkcss{
position: absolute;
left: 25px;
top: 10px;
visibility: hidden;
border: 1px #000033;
border-bottom-width: 0;
font: normal 10px Verdana;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background-color:#CCCCCC;
width: 100px; /* default width for menu */
}

.anylinkcss ul{
margin: 0;
padding:0;
list-style-type: none;
}

.anylinkcss ul li a{
width: 100%;
display: block;
border-bottom: 1px solid black;
left: 25px;
top: 10px;
padding: 3px 0;
text-decoration: none;
font-weight: bold;
text-indent: 10px;
}

.anylinkcss a:hover{ /*hover background color*/
background: #003366;
	text-decoration: none;
	color: #c4c4c4;
}


/* ######### class for shadow DIV ######### */


/*.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: #999999;
visibility: hidden;
}
*/