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

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 0px solid black;
	border-bottom-width: 0;
	line-height: 18px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #68F1FD;
	width: 123px; /* default width for menu */
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}

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

.anylinkmenu ul li a{
	width: 100%;
	display: block;
	text-indent: 3px;
	border-bottom:0px solid black;
	padding: 0px 0;
	text-decoration: none;
	color:#000;
}


.anylinkmenu ul li a:hover{ /*hover background color*/
	background: #00BAF2;
	text-decoration: none;
	color: WHITE;	
}

.anylinkmenu5{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 0px solid black;
	border-bottom-width: 0px;
	line-height: 18px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #E4A025;
	width: 107px; /* default width for menu */
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}

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

.anylinkmenu5 ul li a{
	width: 100%;
	display: block;
	text-indent: 3px;
	border-bottom: 0px solid black;
	text-decoration: none;
	padding: 0px 0;
	left: 3px;
	color: #000;
}

.anylinkmenu5 a:hover{ /*hover background color*/
	background: #00BAF2;
	text-decoration: none;
	color: WHITE;
}






