/*Accordion*/

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font-family: "Lucida Grande", "Trebuchet MS", "Tahoma", "Helvetica", "Arial", sans-serif;
	font-size: 16px;
	color: black;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/
	padding: 4px 0 4px 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	margin-top:-13px; !important; /* I don't know why, but somewhere in this class firefox and IE differ - hence the firefox hack - It's not too bad if it doesn't work, though */
}
.arrowlistmenu .menuheader:hover	{
	background:url(/images/nav-hover.jpg) repeat-x 0 -1px;
	color:#fff;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(/images/nav-hover.jpg);
	background-repeat:no-repeat;
	color:#000;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-top:-10px; /* Adjusts the space between a header and it's first submenu */
	margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a {
	color: #a70303;
	background: url(/images/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	font-size: 13px;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #fff;
	background-color: #70a107;
}
