
/* ######### Default class for drop down menus ######### */

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 1px solid white;
	border-bottom-width: 0;
	line-height: 26px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #304abb;
	width: auto; /* default width for menu */
	color: white;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	text-align: center;
}

.anylinkmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.anylinkmenu ul li a{
	width: auto;
	display: block;
	text-indent: 3px;
	border-bottom: 1px solid white;
	text-decoration: none;
	font-weight: bold;
	text-indent: 5px;
	color: white;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
}

.anylinkmenu a:hover{ /*hover background color*/
background: #9fa55f;
color: white;
}


/* ######### 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;
}

