.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;
	display:none;
	border: 1px solid white;
	border-bottom-width: 0;
	font: normal 10px Verdana;
	line-height: 16px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #336699;
	width: 155px; /* default width for menu */
}

.anylinkmenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.anylinkmenu ul li a {
	width: 147px;
	display: block;
	text-indent:0;
	border-bottom: 1px solid white;
	padding: 4px;
	text-decoration: none;
	/* font-weight: bold; */
	color: white;
	font: normal 10px Verdana;
}
.anylinkmenu a:hover { /*hover background color*/
	background: #ffcc00;
	color: black;
	width: 147px;
	padding: 4px;
}
/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 1px solid black;
	padding: 0px;
	font: normal 10px Verdana;
	z-index: 100; /*zIndex should be greater than that of shadow's below*/
	background: #336699;
}
.anylinkmenucols li {
	padding-bottom: 0px;
}
.anylinkmenucols .column {
	float: left;
	padding: 0px;
	margin-right: 0px;
	background: #336699;
}
.anylinkmenucols .column ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/* ######### class for shadow DIV ######### */


.anylinkshadow { /*CSS for shadow. Keep this as is */
}
