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

.menu1 {
	position: absolute;
	top: 0px;
	visibility: hidden;
	border-bottom-width: 0;
	font-size:14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	line-height: 18px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: lightyellow;
	width: 203px;
}

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

.menu1 ul li a {
	width: 100%;
	display: block;
	color:#ffffff;
	text-indent: 10px;
	text-decoration: none;
	text-indent: 5px;
	padding: 5px 0px 5px 0px;
	position:relative;
	z-index:99;
}

.menu1 a:hover { /*hover background color*/
	background:#102e64;
	color: #FFF;
	font-style: italic;
}




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