/* ######### Default class for drop down menus ######### */

.anylinkcss{
	position: absolute;
	left: 0;
	top: 10px;
	visibility: hidden;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	color: #333333;
	text-transform: uppercase;
	word-spacing: 3px;
	line-height: 12px;
	z-index: 5001;
	width: 153px; /* default width for menu */
	background-color: #B3B3B3;
	border-right-width: 0px;
	border-left-width: 0px;
	border-bottom-width: 0;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
}

.anylinkcss ul{
	padding: 0;
	list-style-type: none;
	margin-top: 4px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.anylinkcss ul li a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
}

.anylinkcss a:link{ /*hover background color*/
color: #333333;
}

.anylinkcss a:hover{ /*hover background color*/
background: #333333;
color: white;
}


/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 4999; /*zIndex for shadow*/
background: black;
visibility: hidden;
}

