
/* JQUERY ACCORDION
----------------------------------*/

.arrowlistmenu{
	width: 100%; /* width of accordion menu */
	margin-left:0;
}
.arrowlistmenu .menuheader{ /*CSS class for menu headers (expanding or not!) */
	font-size:1.2em;
	color: #782201;
	background: url(../images/global/accordionArrowPlus.png) no-repeat 0px 5px;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/
	padding: 0 0 0 16px; /*header text is indented 10px*/	
	cursor: pointer;
}
.arrowlistmenu .openheader{ /* CSS class to apply to expandable header when it's expanded */
	background: url(../images/global/accordionArrowMinus.png) no-repeat 0px 5px;
}
.categoryitems { /* CSS class to apply to expanded content */
	padding-left:16px;
}
