.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
	
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 0;
	font-size: 90%;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #CCCCCC;
	width: 80px; /* default width for menu */
	padding: 5px 15px 2px 0;
}

.anylinkmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style: none;
}

.anylinkmenu ul li {
	list-style: none;
}

.anylinkmenu ul li a{
	width: 100%;
	display: block;
	text-decoration: none;
	font-style: italic;
}

.anylinkmenu a:hover{
	font-style: italic;
	color: white;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
	position: absolute;
	width: 80px;
	left: 0;
	top: 0;
	visibility: hidden;
	font-size: 90%;
	z-index: 100; /*zIndex should be greater than that of shadow's below*/
}

.anylinkmenucols li{
	list-style: none;
}

.anylinkmenucols .column{
	float: left;
	padding: 3px;
}

.anylinkmenucols .column ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}



/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99; /*zIndex for shadow*/
	visibility: hidden;
}