/* ######### Default class for drop down menus ######### */

.anylinkcss
{
	font-family: Verdana, Helvetica, Arial, Sans-Serif;
	position: absolute;
	left: 0;
	top: 0em;
	visibility: hidden;
	border-bottom-width: 0;
	z-index: 1000;
	background-color: #81a2c3;
	/*background: url('../images/common/nav-bg.png') repeat-y right;*/
	_width:200px;
}

.anylinkcss ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	
}

.anylinkcss ul li
{
	padding: 4px 10px;
}
	
.anylinkcss ul li a
{
	width: 100%;
	display: block;
	color: #fff;
	text-decoration: none;
	line-height:1.5em;	
}

.anylinkcss a:hover,.anylinkcss ul li:hover
{
	/*hover background color*/
	color: #2D5C88;
	background-color: #e6e6e8;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkcsscols
{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 1px solid black;
	padding: 10px;
	z-index: 200; /*zIndex should be greater than that of shadow's below*/
	background: #DEFFCA;
}

.anylinkcsscols .column
{
	width: 130px;
	float: left;
}

.anylinkcsscols .column ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.anylinkcsscols li
{
	padding-bottom: 3px;
}

/* ######### class for shadow DIV ######### */


.anylinkshadow
{
	/*CSS for shadow. Keep this as is 
	position: absolute;
	left: 0;
	top: 0;
	margin-top:.25em;
	z-index: 199; 
	background: black;
	visibility: hidden;*/
}

