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

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

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
border-bottom-width: 0;
font: normal 10px Arial;
line-height: 15px;
z-index: 100; /* zIndex should be greater than that of shadow's below */

background: #000000;

/* background: lightyellow; */

width: 100px; /* default width for menu */
}

.anylinkmenu ul{
font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	color: #00CC00;
	font-weight: lighter;
	text-align: left;
	display: block;
	background-color: #333333;
	text-indent: 10px;
}

.anylinkmenu ul li a, ul li a:visited {
	height:1%;
	display:block;
	color: #33FF00;
	text-decoration:none;
	padding:2px 10px;
	background-color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	text-align: right;
	}

.anylinkmenu a:hover{ /*hover background color*/
color:#000000;
background-color: #00CC00;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
position: absolute;
width: 150px;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
padding: 10px;
font: normal 10px Verdana;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #black;
}

.anylinkmenucols li{
padding-bottom: 3px;
background: #black;
}

.anylinkmenucols .column{
float: left;
padding: 3px 8px;
margin-right: 5px;
background: black;
}

.anylinkmenucols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
background: black;
}



/* ######### 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: black;
visibility: hidden;
}