.arrowlistmenu{
	width: 100%; /*width of accordion menu*/
  	font-size:14px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 14px Arial;
	color: #94a4c0;
	padding: 2px 15px 2px 0; /*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(titlebar-active.png);*/
	color:#365899;
}

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

.arrowlistmenu ul li{
	/*padding-bottom: 2px; *//*bottom spacing between menu items*/
	line-height: 20px;
	margin-left:15px;
	height:20px;
}

.arrowlistmenu ul li a{
	color: #94a4c0;
/*	background: url(arrowbullet.png) no-repeat center left; *//*custom bullet list image*/
	display: block;
	padding:0;
	text-decoration: none;
	font-weight: bold;
	/*border-bottom: 1px solid #dadada;*/
	margin:0;
	padding:0 15px 0 0;
}

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

.arrowlistmenu ul li a:hover, .arrowlistmenu ul li a.current{ /*hover state CSS*/
	color: #365899;
}

a.menu {
	color: #94a4c0; 
	font-weight: bold;
	text-decoration: none;
}

a:hover.menu, a.current {
	color: #365899; 
	font-weight: bold;
	text-decoration: none;
}

