.arrowlistmenu{
width: 250px; /*width of accordion menu*/
margin-top: 25px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
background: transparent url(../images/accordion_closed.jpg) no-repeat center left;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 15px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

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

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

.arrowlistmenu ul li{
	font-family: Helvetica, Verdana, Arial, sans-serif;
	font-size: 11px;
	color: #525046;
	padding-bottom: 8px; /*bottom spacing between menu items*/
	padding-left: 25px;
}