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

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #1F64B1;
	margin-bottom: 5px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #4FB8EF;
	background-image: url(../images/arrowbl.gif);
	background-repeat: no-repeat;
	background-position: 1px center;
	text-indent: 15px;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 2px;
	padding-left: 10px;
}
.arrowlistmenu .menuheader a{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #C7E5F8;

}

.arrowlistmenu .menuheader a:hover{ /*hover state CSS*/
	color: #FFFFFF;
	text-decoration: none;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	color: #333333;
	background-color: #A7D2EC;
}

.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: 2px; /*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: #B38D1E; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	background-image: url(../images/breadcrumb.gif);
	background-repeat: no-repeat;
	background-position: 5px center;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	background-color: #FFFFFF;
	color: #1F64B1;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
	background-color: #FFFFFF;
}
