.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;
	visibility: hidden;
	border: 2px solid #7bb6e3;
	border-bottom-width: 0;
	font-family:Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:white;
	font-style:normal;
	line-height: 15px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background:#1287c8;
	width: 200px; /* default width for menu */
	padding-top:0px;
}

.anylinkmenu ul{
	margin: 0;
	padding-left: 0px;
	padding-top:0px;
	list-style-type: none;
	color:#FFFFFF;
}

.anylinkmenu ul li a{
	width: 100%;
	display: block;
	text-indent: 3px;
	border-bottom: 2px solid #7bb6e3;
	padding-bottom: 5px; 
	text-decoration: none;
	font-weight: bold;
	text-indent: 5px;
	padding-top:0px;
	color:#FFFFFF;
}

.anylinkmenu a:hover{ /*hover background color*/
	background: #ee1c1a;
	color: #FFFFFF;
	padding-bottom: 5px; 
	padding-top:0px;
}

/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99; /*zIndex for shadow*/
	background: black;
	visibility: hidden;
	padding-top:0px;
}
