/* ######### Default class for drop down menus ######### */

.anylinkmenu{
	background: #efefef;
	border: 1px solid #000000;
	color: #000000;
	left: 0;
	padding: 5px;
	position: absolute;
	top: 0px;
	visibility: hidden;
	width: 340px; /* width of menu */
	z-index: 100; /* zIndex should be greater than that of shadow's below */
}

.anylinkmenu a:hover{
	background: #000000; /*hover background color*/
	color: #ffffff;
}

/* keep to prevent bullets */
.anylinkmenu ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.anylinkmenu ul li a{
	background: transparent;
	color: #000000;
	display: block;
	font-size: .8em;
	font-weight: bold;
	line-height: 150%;
	/*border-bottom: 1px solid black;*/
	padding: 2px 0 0 0;
	text-decoration: none;
	text-indent: 5px;
	width: 100%;
}

/* ######### class for shadow DIV ######### */
.anylinkshadow{
	background: #000000;
	left: 0;
	/*CSS for shadow. Keep this as is */
	position: absolute;
	top: 0;
	visibility: hidden;
	z-index: 99; /*zIndex for shadow*/
}

/* Note I added this class simply so TopStyle's Site Reports wouldn't say it's an undefined class */
.menuanchorclass {
	background: transparent;
}

.selectedanchor{
	background: #ffff00; /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
	color: #000000;
}
