<style type="text/css">

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

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.9em;
	color: #FFFFFF; /*bottom spacing between header and rest of content*/
	text-transform: uppercase;
	padding: 8px 0 4px 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	height: 1.5em;
	font-weight: bolder;
	border-bottom: solid #fff 1px;
	text-indent: 20px;
	background-image: url(../images/closedleftnav_header.png);
}

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

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0px; /*bottom spacing between each UL and rest of content*/
	font-family: Helvetica, Arial, sans-serif;
	line-height: 1.3em;
}

.arrowlistmenu ul li{
	padding-bottom: 0px;
	border-bottom: solid #fff 1px;
	font-size: .75em;
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/

}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
}

.arrowlistmenu ul li a{
	color: #000; /*custom bullet list image*/
	display: block;
	padding: 0px 0; /*link text is indented 19px*/
	text-decoration: none;
	font-family: Helvetica, Arial, sans-serif;
	background: #ccc;
	padding-left: 20px;
}

.arrowlistmenu ul li a:visited{
	color: #000; /*custom bullet list image*/
	display: block;
	padding: 1px 0; /*link text is indented 19px*/
	text-decoration: none;
	font-family: Helvetica, Arial, sans-serif;
	background: #ccc;
	padding-left: 20px;
	border-bottom: solid #fff 1px;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	background: #aaa;
	border-left: 5px #000 solid;
	padding-left: 20px;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
	background: lightblue;
	border-left: solid #000 5px;
}

</style>
