.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
	background: none;
}


/* ######### Default class for drop down menus ######### */

.utilityDropdown {
	position: absolute;
	left: 0; top: 0;
	visibility: hidden;
	border: 1px solid #C7BD8A;
	border-bottom-width: 0;
	font: normal 12px Verdana;
	line-height: 18px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #FFFFFF;
	width: 178px; /* default width for menu */
	color: #7D212B;
}

.utilityDropdown ul, .utilityDropdown ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.utilityDropdown ul li a {
	display: block;
	border-bottom: 1px solid #C7BD8A;
	text-decoration: none;
	margin: 0;
	padding: 5px 6px 5px 8px;
	color: #7D212B;
}

.utilityDropdown a:hover{ /*hover background color*/
	background: #C7BD8A;
	color: #000000;
}

.utilityDropdown ul li a.ON {
	display: block;
	border-bottom: 1px solid #C7BD8A;
	text-decoration: none;
	margin: 0;
	padding: 5px 6px 5px 8px;
	background: #C7BD8A;
	color: #000000;
}

.utilityDropdown a.ON:hover { /*hover background color*/
	background: #C7BD8A;
	color: #000000;
}

/* ######### 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: #000000;
	visibility: hidden;
}
