@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
	width: 181px; /*width of accordion menu*/
	/*margin-left: 20px;*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #0b2700;
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	text-transform: uppercase; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	background-color: #D3E0C1;
	background-image: url(titlebar.png);
	background-repeat: repeat-x;
	background-position: left center;
	height: 30px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #AFBA9A;
	line-height: 30px;
}
.arrowlistmenu a {color: #0b2700; text-decoration: none;}
.arrowlistmenu a:hover {color:#2d9005; text-decoration: none;}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(titlebar-active.png);
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
	
}

.arrowlistmenu ul li{
	padding-bottom: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
	color: #000000; /*custom bullet list image*/
	display: block;
	padding-left: 5px; /*link text is indented 19px*/
	text-decoration: none;
	font-size: 80%;
	height: 20px;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 2px;
	line-height: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #AFBA9A;
	background-color: #E6EDDC;
	background-image: url(arrowbullet.png);
	background-repeat: no-repeat;
	background-position: left center;
}

.arrowlistmenu ul li a:visited{
	color: #000000;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #FFFFFF;
	background-color: #677965;
}
.arrowlistmenu p {
	margin-top: 12px;
}
