.arrowlistmenu{
	width: 170px; /*width of accordion menu*/
	background-color: #ffffff;
}
.arrowlistmenu a{
	color: #000000;
	text-decoration: none;
}
.arrowlistmenu a:hover{
	color: #B7181E;
	text-decoration: none;
}
.arrowlistmenu h3{
	margin: 0;
}
.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 12px Verdana;
	color: #000000;
	
	/*bottom spacing between header and rest of content*/
	/* margin-bottom: 4px; */
	padding: 0;
	margin: 6px 0;
	cursor: hand;
	cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	
	color: #B7181E;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	padding: 0px 0 0px 10px;
	margin: 0; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
	padding-bottom: 0px; /*bottom spacing between menu items*/
	margin: 0;
}

.arrowlistmenu ul li a{
	display: block;
	font-family: verdana, sans-serif;
	font-size: 12px;
	color: #ffffff;
	background-image: url('/images/background-accordian-off.gif');
	background-repeat: no-repeat;
	background-color: #B7181E;
	margin: 0;
	padding: 2px 3px 3px 22px;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #A7151A;
}

.arrowlistmenu ul li a:visited{
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	background-image: url('/images/background-accordian-on.gif');
	background-repeat: no-repeat;
	background-color: #8F1318;
	color: #ffffff;
	text-decoration: none;
}