#menu_container {
	background-color: #dee7ef;
	width: 100%;
	padding: 7px 7px 2px;
}

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

.arrowlistmenu .menuheader { /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 9px Arial;
	background: black url(/img/titlebar.png) repeat-x center left;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/
	text-transform: uppercase;
	padding: 6px 0 6px 10px; /*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(/img/titlebar-active.png);
}

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

.arrowlistmenu ul li{
	padding-bottom: 1px; /*bottom spacing between menu items*/
	list-style-type: none;
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
	background: #dee7ef !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
	background: #dee7ef !important;
}

.arrowlistmenu ul li a{
	color: #666666;
	/*  background: url(img/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 4px 0;
	padding-left: 2px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	border-bottom: 1px solid #acb6bf;
	font-size: 90%;
}

.arrowlistmenu ul li ul li a {
	font-size: 75%;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	background-color: #e9f1f7;
	text-decoration: none;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/

}

