@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
	width: 162px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #FFF;
	padding-top: 4px;
	padding-right: 0;
	padding-bottom: 4px;
	padding-left: 10px;
	background-color: #8CC63F;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/

	/*background-color: #0C9847;*/
}

.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*/
	background-color: #9dda4c;
}

.arrowlistmenu a, .arrowlistmenu a:hover, .arrowlistmenu a:visited {
	color:#FFF;
	text-decoration: none;
}

.expandable {
	background-image: url(../images/DownArrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
	width: 25px;
}

