.arrowlistmenu{
	width: 200px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: 11px Verdana, Arial, Tahoma, Verdana, Helvetica, sans-serif;
	color: #000;
	padding: 0 0 1px 25px; /*header text is indented 10px*/
	margin: 0px;
	cursor: hand;
	cursor: pointer;
	line-height: 20px;
	/* border-top: 1px solid #999; */
	background: url("../images/border.jpg") center top no-repeat;
}

.arrowlistmenu .menuheader:hover{
	color: #333333;
	/* background: url(../images/arrowright3.jpg) no-repeat center left; 
	background-position: 3px 2px;*/
	background: url("../images/borderhover.jpg") center top no-repeat;
	
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	color: #333333;
	background: url("../images/borderhover.jpg") center top no-repeat;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	padding-left: 20px;
	margin: 0 0 0 20px;
	margin-bottom: 10px; /*bottom spacing between each UL and rest of content*/
	list-style: url(../images/dash.gif);
}

.arrowlistmenu ul li{
	padding: 0; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
	/* background: url(../images/bullet.jpg) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding-left: 5px; /*link text is indented 19px*/
	text-decoration: none;
	color: #000;
}
/*
.arrowlistmenu ul li a:visited{
color: #A70303;
}
*/
.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #CC3333;
}

