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

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	text-align:center;
	height:30px;
	color: #7D000A;
	font-family:"trebuchet MS";
	/*background: #812735 url(images/titlebar-active.png) repeat-x center left;*/
	background-image:url(../images/headeraccordition.jpg);
	background-repeat:no-repeat;
	margin-bottom: 5px; /*bottom spacing between header and rest of content*/
	font-weight:bold;

	padding: 4px 100px 2px 0px; /*header text is indented 10px*/
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(images/titlebar-active.png);
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{

	font-size: 1.2em;
	/*padding-bottom: 2px; bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
	color: #812735;
	background:  url(../images/accordition.jpg) no-repeat; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 35px; /*link text is indented 19px*/
	text-decoration: none;
	border-bottom: 1px solid #dadada;
	font-size:0.8em;
}

.arrowlistmenu ul li a:visited{
	color: #812735;
}

.arrowlistmenu ul li a:hover,.arrowlistmenu ul li a.current{ /*hover state CSS*/
	color: #A70303;
	background-image:url(../images/accordition_current.jpg);
	background-repeat: no-repeat;
	
}

