@charset "utf-8";
.arrowlistmenu{
	width: 219px; /*width of accordion menu*/
}
.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #2F6E82; /*bottom spacing between header and rest of content*/
	text-transform: uppercase; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	padding-top: 5px;
	padding-left: 15px;
	padding-bottom: 5px;
	line-height: 1.7em;
}
.categoryitems {
	background-color: #F1f1f1;
	padding-top: 10px;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
}
.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.arrowlistmenu ul li{
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
}
.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
}
.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
}
.arrowlistmenu ul li a{
	display: inline;
	padding-left: 34px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	padding-right: 0;
	color: #178080;
	text-transform: none;
}
.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #000000;
}
.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
}
