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

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

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 10px;
	visibility: hidden;
	font: normal 13px/18px Helvetica, sans-serif;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #008939;
	width: 130px; /* default width for menu */
	color: #FFFFFF;
	text-decoration: none;
	clip: rect(0px,auto,auto,auto);
}

.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 #8BB19B;
	padding: 2px 0;
	text-decoration: none;
	text-indent: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	font-weight: bold;
}

.anylinkmenu a:hover{ /*hover background color*/
	background: #79387d;
	color: white;
}

