@charset "UTF-8";
/* CSS Document */


.arrowlistmenu{
	width: 175px;
}

.arrowlistmenu .menucategory{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 11px helvetica;
	color: black;
	font-weight: bold;
	text-transform: uppercase;
	cursor: hand;
	cursor: pointer;
	background-color: #a6948a;
	padding-left: 25px;
	height: 16px;
	padding-top: 36px;
	margin: 0px;
	padding-bottom: 0px;
}

.arrowlistmenu .menulogo{ /*CSS class for menu headers in general (expanding or not!)*/
	background-color: #a6948a;
	padding-left: 25px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin: 0px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 12px helvetica;
	color: white;
	font-weight: bold; /*bottom spacing between header and rest of content*/
	text-transform: lowercase; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	background-color: #a6948a;
	padding-left: 25px;
	height: 16px;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 2px;
	margin: 0px;
}
.arrowlistmenu .menuheader:hover{ /*hover state CSS*/
	background-color: #c1b4ad;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	color: black;
	background-image: none;
	background-color: #C1B4AD;
	margin: 0px;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}



.arrowlistmenu ul li a{
	color: #89756a; /*custom bullet list image*/
	display: block;
	padding-left: 35px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	background-color: #D2C8BE;
	background-image: url(images/arrow_dark.jpg);
	background-repeat: no-repeat;
	background-position: 20px center;
	font-family: helvetica;
	text-transform: lowercase;
	font-size: 12px;
	height: 16px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 6px;
	margin-top: 0px;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #89756a; /*custom bullet list image*/
	font-family: helvetica;
	text-transform: lowercase;
	font-size: 12px;
	background-color: white;
	background-image: url(images/arrow_dark_roll.jpg);
	background-repeat: no-repeat;
	background-position: 20px center;
}

