.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: white;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0px;
top: 0px;
visibility: hidden;
border-width: 1px;
border-style: solid;
font: 14px Calibri, Verdana, Arial;
z-index: 100; /*zIndex for menu*/
line-height: 16px;
background: #fff5f5;
width: 200px; /* default width for menu */
}

.anylinkmenu a:link {
	color: #696969;
	text-decoration: none;
}
.anylinkmenu a:visited {
	color: #696969;
	text-decoration: none;
}
.anylinkmenu a:hover {
	color: #696969;
	text-decoration: none;
}
.anylinkmenu a:active {
	color: #696969;
	text-decoration: none;
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li a{
	width: 190px;
	display: block;
	text-indent: 0px;
	padding: 3px 5px;
	text-decoration: none;
	font-weight: normal;
	text-indent: 0px;
	text-align: left;
}

.anylinkmenu a:hover{ /*hover background color*/
background: #F48CA5;
color: #FFFFFF;
}

.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}
}