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

ul.drop_down_menu
{
position: absolute;
left: 0;
top: 0;
margin-top: 1px;
visibility: hidden;
border: 1px solid #eee;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #fff;
width: 194px; /* default width for menu */
text-align: left;
padding: 3px 0;
}
ul.drop_down_menu
{
list-style-type: none;
}
ul.drop_down_menu li
{
	margin: 0;
	padding: 0;
}
ul.drop_down_menu li a
{
display: block;
padding: 0 5px;
margin: 0;
text-decoration: none;
font-weight: bold;
color: #1e4485;
font-size: 1.3em;
line-height: 1.5em;
font-family: "Arial Rounded MT Bold", Tahoma, Arial, Verdana, Helvetica, sans-serif;
}

ul.drop_down_menu a:hover{ /*hover background color*/
background: #eee;
/*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;
}