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

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 13px "Trebuchet MS", Arial;
	color: white;
	background: black url(titlebar.png) no-repeat center left;
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	text-transform: normal;
	padding: 0px; /*header text is indented 10px*/
	height:38px; /* 37 */
	cursor: hand;
	cursor: pointer;
}

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

.menuheader_inner {
	padding:10px 0 0 10px;
}

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

.arrowlistmenu ul li{

	padding-bottom: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a div {
	padding:10px 0 0 10px;

}
.arrowlistmenu ul li a, .arrowlistmenu ul li a.first {
	color: #fff;
	background: url(subtitlebar.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 0;
	height:38px;
	text-decoration: none;
	font: bold 13px "Trebuchet MS", Arial;
}

.arrowlistmenu ul li a.first {
	background: url(subtitlebar-first.png) no-repeat center left; /*custom bullet list image*/
	padding:0;margin:0;

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #fff200;
	background-color: #F3F3F3;
}