@charset "utf-8";
/* CSS Document */

.arrowlistmenu {
	
}
.arrowlistmenu .menuheader { /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 11px Arial;
	color: #666;
	margin-bottom: 4px; /*bottom spacing between header and rest of content*/
	border-bottom:1px dashed #4b8b28;
	/* text-transform: uppercase; */
	padding: 4px 0 4px 0px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
}
.arrowlistmenu .openheader { /*CSS class to apply to expandable header when it's expanded*/
	color: #FFF;
	padding-left:8px;
	background-color: #4b8b28;
}
.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*/
	left:0px;
}
.arrowlistmenu ul li a {
	color: #666;
	display: block;
	text-decoration: none;
	border-bottom: 1px solid #4b8b28;
	font-size: 10px;
}
.arrowlistmenu ul li a:visited {
	color: #4b8b28;
}
.arrowlistmenu ul li a:hover { /*hover state CSS*/
	color: #FFF;
	background-color: #4b8b28;
}

