/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
margin-top: -15px;
visibility: hidden;
border: 1px solid #fff;
border-bottom-width: 0;
font: normal 12px Arial;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: lightyellow;
width: 220px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li a{
width: 100%;
color: #14569d;
display: block;
text-indent: 3px;
border-bottom: 1px solid #ccc;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
}

.anylinkmenu a:hover{ /*hover background color*/
background: black;
color: white;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
position: absolute;
margin-top: -16px;
width: 480px;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #fff;
padding: 10px;
font: normal 11px Arial;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #fff;
}
.anylinkmenucols a{
color: #14569d;
}
.anylinkmenucols a:hover{
	text-decoration: none;
}
.anylinkmenucols li{
padding-bottom: 3px;
}

.anylinkmenucols .column{
float: left;
padding: 3px 8px;
margin-right: 5px;
background: #fff;
}

.anylinkmenucols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}
.anylinkmenucols .column li{
border-bottom: #F3F3F3 solid 1px;
padding-left: 5px;
}


/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
margin-top: -15px;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}





/* ######### Top Menu ######### */

.anylinkmenu5{
	position: absolute;
	left: 0;
	top: 0;
	margin-top: -15px;
	visibility: hidden;
	border: 1px solid #000;
	border-bottom-width: 0;
	font: normal 11px Arial;
	line-height: 18px;
	z-index: 100;
	width: 220px; /* default width for menu */
	background-color: #000000;
}

.anylinkmenu5 ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu5 ul li a{
	width: 100%;
	color: #FFFFFF;
	display: block;
	text-indent: 3px;
	border-bottom: 1px solid #ccc;
	padding: 2px 0;
	text-decoration: none;
	font-weight: bold;
	text-indent: 5px;
}

.anylinkmenu5 a:hover{ /*hover background color*/
background: black;
color: white;
}