.arrowlistmenu{
	/*width: 208px; width of accordion menu*/
	width: 100%; /*width of accordion menu*/
	color: #000;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font-size:1em;
	font-weight:normal;
	margin:0 0 1px 0;
	padding: 5px;
	box-sizing:border-box;
	border-bottom:solid 1px #F1F3F4;
}

.menuheader a{ /*CSS class for menu headers in general (expanding or not!)*/
	text-decoration: none;
	padding: 5px;
	box-sizing:border-box;
	display: block;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	/*background-color:#FFF;*/
}

.openheader a{ /*CSS class to apply to expandable header when it's expanded*/
	color:#2380DC;
	font-weight:bold;
	padding: 10px 5px;
	box-sizing:border-box;
}

.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{
	padding-bottom: 1px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
	/*background: lightblue !important;*/
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
	/*background: lightgreen !important;*/
}

.arrowlistmenu ul li a{
	color:#1370CC;
	text-decoration: none;
	font-size:.9em;
	background: url(arrowbullet2.png) no-repeat center left; /*custom bullet list image*/
	/*background-color:#FFF;*/
	border:solid 1px #fff;
	margin-right:5px;
	padding: 10px 3px 10px 13px;
	box-sizing:border-box;
	display:block;
  }

.arrowlistmenu ul li a:visited{
	color:#1370CC;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	border:solid 1px #EBD57C;
	border-radius:3px;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
	/*background: lightblue;*/
}