.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: transparent;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 0;
	margin: 7px 0 0 10px;
	padding: 0;
	visibility: hidden;
 	font-family:Verdana, Geneva, sans-serif;
	font-size: 11px;
	line-height: 22px;
	font-weight: bold;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: transparent;
	width: 350px; /* default width for menu */
	text-indent: 10px;
	text-align: left;
	list-style-type: none;
	list-style-image: none;
 	border: 1px solid #EBD081;
}

.anylinkmenu ul{
	margin: 0;
	padding: 0;
 	border-top: 0px;
	list-style-type: none;
	list-style-image: none;
 }

.anylinkmenu ul   a{
	width: 100%;
	display: block;
	border-bottom: 1px solid #EBD081;
	margin: 0;
	padding: 0;
	text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: bold;
	line-height: 27px;
	text-indent: 10px;
	color: #fff;
	text-align: left;
	list-style-type: none;
	list-style-image: none;
 }

.anylinkmenu a:hover{ /*hover background color*/
	color: #fff;
	background: #BF8330;
	list-style-type: none;
	list-style-image: none;
 }

/* ######### class for shadow DIV ######### */

.anylinkshadow{ /*CSS for shadow. Keep this as is */
	position: absolute;
	left: 0;
	top: 0;
	margin: 7px 0 0 10px;
	z-index: 99; /*zIndex for shadow*/
	background: #555555;
	visibility: hidden; 
}