.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: yellow;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	font: normal 10px Georgia #82394d;
	line-height: 18px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #eee8e8;
	width: 200px; /* default width for menu */
	
}

.anylinkmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	
}

.anylinkmenu ul li a{
	width: 100%;
	text-indent: 3px;
	padding: 3px 0;
	text-decoration: none;
	text-indent: 5px;
	color: #82394d;
	letter-spacing: 5px;
	font-size: 13px;
	padding-left: 10px;
	line-height: 3;	
}

.anylinkmenu a:hover{ /*hover background color*/
background: #eee8e8;
color: #82394d;

}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
position: absolute;
width: 350px;
left: 0;
top: 0;
visibility: hidden;
padding: 10px;
font: normal 12px Georgia;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #eee8e8;

}

.anylinkmenucols li{
padding-bottom: 3px;
}

.anylinkmenucols .column{
float: left;
padding: 3px 8px;
margin-right: 5px;
background: #eee8e8;

}

.anylinkmenucols .column ul{
margin: 0;
padding: 0;
list-style-type: none;

}



