.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
/*	background: yellow; */
}

.anylinkcss {
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 1px solid black;
	border-bottom-width: 0;
	font: normal small Arial;
	line-height: 150%;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #cbcccd;
	width: 85px; /* menu width */
	}
.anylinkcss ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	}
.anylinkcss ul li {
	width: 100%;
	display: block;
	text-align: center;
	border-bottom: 1px solid black;
	padding: 2px 0;
	}

/* ######### multi-column ######### */
.anylinkcsscols {
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 1px solid black;
	border-bottom-width: 0;
	font: normal small Arial;
	z-index: 100; /*zIndex should be greater than that of shadow's below*/
	background: #cbcccd;
	}
.anylinkcsscols .column {
	float: left;
	}
.anylinkcsscols .column ul {
	width: 120px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	}
.anylinkcsscols li {
	float: left;
	margin: 0;
	text-align: center;
	width: 40px;
	padding: 5px 10px;
	border-bottom: 1px solid #000;
	}

/* ######### class for shadow DIV ######### */
.anylinkshadow{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99; /*zIndex for shadow*/
	background: black;
	visibility: hidden;
	}