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

.anylinkcss{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 1px solid gray;
	border-bottom-width: 0;
	font: normal 12px Verdana;
	line-height: 18px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: lightyellow;
	width: 220px; /* default width for menu */
}

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

	
.anylinkcss ul li a{
	width: 100%;
	display: block;
	text-indent: 3px;
	border-bottom: 1px solid gray;
	padding: 2px 0;
	text-decoration: none;
/*	font-family: "Gill Sans MT", Verdana, Arial, sans-serif; */
    font-family: "Gill Sans MT", Verdana, Arial, sans-serif;
	font-size: 12px;
	color: #b62821;
	text-align: left;
	text-indent: 5px;
	background-color: #fdfbe9;
}

/* the red color: #bb2727 */
/* product listing header #f6eb96 - dark yellow*/
/* product listing bkgrnd: #fdfbe9; - light yellow */

.anylinkcss a:hover{ /*hover background color*/
	background-color: #e9e9e9;
	color: black;
}

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


.anylinkcsscols{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid gray;
padding: 10px;
/* font: normal 12px Verdana; */
z-index: 100; /*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;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}






.sample_menus_menu{
    width: 170px; /*width of menu*/
}

.sample_menus_menu .headerbar{
    font-family: "Gill Sans MT", Verdana, Arial, sans-serif;
	font-size: 1.0em;
	font-weight: bold;
	color: black;
	background: #f6eb96;
	margin-bottom: 0; /*bottom spacing between header and rest of content*/
	text-transform: uppercase;
	text-indent: 10px;
	padding: 7px 0 7px 0; /*31px is left indentation of header text*/
}

.sample_menus_menu ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}

.sample_menus_menu ul li{
/*	padding-bottom: 2px; /*bottom spacing between menu items*/
	border: 1px solid gray;
}

.sample_menus_menu ul li a{
    font-family: "Gill Sans MT", Verdana, Arial, sans-serif;
	font-size: 0.9em;
	color: gray;
	position: relative;
    background: #fdfbe9;  /* was #E9E9E9; */
	display: block;
	padding: 2px 0;
	line-height: 17px;
	padding-left: 8px; /*link text is indented 8px*/
	text-decoration: none;
}

.sample_menus_menu ul li a:visited{
color: black;
}

.sample_menus_menu ul li a:hover{ /*hover state CSS*/
	background: gray;
	color: black;
}

