/* ######### Default class for drop down menus ######### */
.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
  color: yellow;
}
.ddMenu{
	position: absolute;
	left: 0;
	top: 0;
	color: yellow;
	visibility: hidden;
	border: 1px solid  black;
	border-bottom-width: 0;
	line-height: 18px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #E2E8EF;
	width: 12em; /* default width for menu */
	margin-top: .1em;
  font-size: .9em;
  font-family: sans-serif;
}
.ddMenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}
.ddMenu ul li a{
width: 100%;
display: block;
text-indent: 1em;
border-bottom: 1px solid #AFBDD1;
padding: 2px 0;
text-decoration: none;
text-indent: 5px;
color:black;
}
.ddMenu a:hover{ /*hover background color*/
 color: blue;
}
/* shadow style */
.anylinkshadow{ 
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}
