.menuanchorclass { 
	}
.menuanchorclass a {
	}
.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
}

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

.anylinkmenu{
	position: absolute;
	visibility: hidden;
	font: normal 10px "Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height: 14px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #fff;
	width: 125px;
	margin-top: 7px;
	height: 92px;
	bottom: 0px;
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
border: 1px solid black;

}
.anylinkmenu ul li{
border-top: 1px solid #bbb;padding: 2px 5px;

}

.anylinkmenu ul li a{
width: 100%;
display: block;
text-decoration: none;
font-weight: bold;
 color:#333; border:none
}

.anylinkmenu a:hover{ /*hover background color*/
background: #e6e5e1;
color: #a71033;
}

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


.anylinkmenucols{
position: absolute;
width: 350px;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
font: normal 16px Verdana;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #f00;
}

.anylinkmenucols li{
padding-bottom: 3px;
}

.anylinkmenucols .column{
float: left;
padding: 3px 8px;
margin-right: 5px;
}

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


