.selectedanchor
{
/*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
	background: #FFFFFF;
}
/*######### Default class for drop down menus #########*/
.anylinkmenu
{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 1px solid #D3581F;
	border-bottom-width: 0;
	font: normal 10px Verdana, Geneva, Arial, Helvetica, sans-serif;
	line-height: 20px;
	z-index: 100;
/*zIndex should be greater than that of shadow's below*/
	background: #FFFFFF;
	width: 160px;
/*default width for menu*/
}
.anylinkmenu UL
{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.anylinkmenu UL LI A
{
	width: 100%;
	display: block;
	text-indent: 10px;
	border-bottom: 1px solid #D3581F;
	padding: 2px 0;
	text-decoration: none;
	font-weight: bold;
	color: #D3581F;
}
.anylinkmenu A:visited
{
	font-weight: bold;
	color: #D3581F;
}
.anylinkmenu A:hover
{
/*hover background color*/
	background: #ECA517;
	font-weight: bold;
	color: #820000;
}
/*######### 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;
}
