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

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	line-height: 18px;
	z-index: 100;
	width: 175px; /* default width for menu */
	background-color: #CCCC99;
	font-family: Verdana;
	font-size: 11px;
	font-style: italic;
	font-weight: normal;
	font-variant: normal;
	color: #000000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666633;
	border-right-color: #666633;
	border-bottom-color: #666633;
	border-left-color: #666633;
}

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

.anylinkmenu ul li a{  /*Font color is in here*/
	width: 100%;
	display: block;
	text-indent: 3px;
	padding: 2px 0;
	text-decoration: none;
	font-weight: bold;
	text-indent: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666633;
	color: #000000;
}

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


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

.anylinkmenuWhite{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	line-height: 18px;
	z-index: 100;
	width: 175px; /* default width for menu */
	background-color: #FFFFFF;
	font-family: Verdana;
	font-size: 11px;
	font-style: italic;
	font-weight: bold;
	font-variant: normal;
	color: #000000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}
.anylinkmenuWhite ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.anylinkmenuWhite ul li a {
	width: 100%;
	display: block;
	text-indent: 3px;
	padding: 2px 0;
	text-decoration: none;
	font-weight: bold;
	text-indent: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	color: #000000;
}
.anylinkmenuWhite a:hover {
	color: white;
	background-color: #000000;
}

