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

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #666;
border-bottom-width: 1;
font-family:Myriad Pro, Helvetica, sans-serif
	font-size: 13px;
	text-transform:lowercase;
	font-variant:small-caps;
	font-weight:500;
	color: #0066CC;
	letter-spacing: 1px;
line-height: 15px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: white;
width: 175px; /* default width for menu */
}

.anylinkmenu A:link {text-decoration: none; color: #004D99}
.anylinkmenu A:visited {text-decoration: none; color: #004D99}
.anylinkmenu A:active {text-decoration: none; color: #004D99}
.anylinkmenu A:hover {text-decoration: none; color: 004D99;}

.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: 3px 0;
text-decoration: none;
text-indent: 5px;
text-align:left;
}

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











