@charset "utf-8";
/* CSS Document */
.arrowlistmenu{
width: 100%px; /*width of accordion menu*/
}


.menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: 12px Arial;
color: white;
background:  url(bg02-event-lightgrey-closed.jpg) repeat-x center right;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}
.openheader{ /*CSS class to apply to expandable header when it's expanded*/
font: 12px Arial;
color: white;
background:  url(bg02-event-lightgrey-opened.jpg) repeat-x center right;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

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*/
}

 ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

 ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

 ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;
}

 ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}
.addborder {
	border: 1px solid #000000;
}
