/*######### Default class for drop down menus #########*/
.anylinkmenu
{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 0px solid #DA006A;
	border-bottom-width: 0;
	font: normal 12px Verdana;
	line-height: 18px;
	z-index: 100;
/*zIndex should be greater than that of shadow's below*/
	background: #C5C6C8;
	width: 140px;
/*default width for menu*/
}
.anylinkmenu UL
{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.anylinkmenu UL LI A
{
	width: 100%;
	display: block;
	text-indent: 3px;
	border: 0px solid #DA006A;
	border-left: 5px solid #DA006A;
	padding: 2px 0;
	text-decoration: none;
	font-weight: normal;
	text-indent: 5px;
	color: #DA006A;
	font-size: 11px;
}
.anylinkmenu A:hover
{
/*hover background color*/
	background: #582041;
	color: white;
}

