.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
	background-color: #3F4C6B;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: lightyellow;
	width:150px; /* default width for menu */
	background-color: #3F4C6B;
	color: #FFFFFF;
	font-family: Verdana;
	font-size: 12px;
	font-weight: normal;
	font-variant: normal;
	font-style: normal;
	line-height: 18px;
}

.anylinkmenu ul{
	margin: 0;
	list-style-type: none;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 1px;
}

.anylinkmenu ul li a{
	width: 100%;
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 2px;
	padding-left: 2;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000033;
	font-weight: bold;
}

.anylinkmenu a:hover{ /*hover background color*/
	color: white;
	background-color: black;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
	position: absolute;
	width: 350px;
	left: 0;
	top: 0;
	visibility: hidden;
	font: normal 12px Verdana;
	z-index: 100; /*zIndex should be greater than that of shadow's below*/
	background: #E9E9E9;
	padding-top: 10px;
	padding-bottom: 10px;
}

.anylinkmenucols li{
	padding-bottom: 3px;
}

.anylinkmenucols .column{
	float: left;
	margin-right: 5px;
	background: #E0E0E0;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 8px;
	padding-left: 8px;
}

.anylinkmenucols .column ul{
	margin: 0;
	list-style-type: none;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0px;
}



/* ######### 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;
}
