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

.anylinkcss{
	position: fixed;
	left: 0px;
	top: 0px;
	visibility: hidden;
	line-height: 11px;
	z-index: 50; /* zIndex should be greater than that of shadow's below */
	background: #000000;
	width: 110px; /* default width for menu */
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color: #FFF;
}

.anylinkcss ul{
	padding: 0px;
	list-style-type: none;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.anylinkcss ul li a{
	width: 110px;
	display: block;
	text-indent: 3px;
	padding: 5px;
	text-decoration: none;
	font-weight: normal;
	text-indent: 0;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: white;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #999;
	text-align: left;
}

.anylinkcss a:hover{ /*hover background color*/
	color: #FFF;
	width: 100px;

	text-decoration: none;
	background-color: #333;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkcsscols{
	position: absolute;
	left: 0px;
	top: 0px;
	visibility: hidden;
	padding: 0px;
	font: normal 10px Verdana;
	z-index: 100; /*zIndex should be greater than that of shadow's below*/
	background: #000000;
	text-align: left;
}

.anylinkcsscols .column{
	width: 110px;
	float: left;
}

.anylinkcsscols .column ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 100%;
}

.anylinkcsscols li{
	padding-bottom: 0px;
}

/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0; /*zIndex for shadow*/
	background: black;
	visibility: hidden;
}
