@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
	width: 150px; /*width of accordion menu*/
}
h3 {
	margin: 0px;
	padding: 0px;
}


.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: 12px Arial;
	color: white;
	background: url(button_bg.gif) no-repeat left;
	margin-bottom: 10px;
	padding: 4px 0 4px 22px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
}
.arrowlistmenu .menuheader  a {
	color: #FFFFFF;
	text-decoration: none;
}
.arrowlistmenu .menuheader a:hover {
	color: #FF0000;
}

.arrowlistmenu .nosub {
	font: 12px Arial;
	color: white;
	background: url(button_bg.gif) no-repeat left;
	margin-bottom: 10px;
	padding: 4px 0 4px 22px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
}
.arrowlistmenu .nosub a {
	color: #FFFFFF;
	text-decoration: none;
}
.arrowlistmenu .nosub a:hover {
	color: #FF0000;
}





.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(button_bg.gif);
	color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: left;
}

.arrowlistmenu 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*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
	color: #045A41; /*custom bullet list image*/
	display: block;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	padding-right: 0;
	padding-bottom: 2px;
	padding-left: 22px;
}

.arrowlistmenu ul li a:visited{
	color: #045A41;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #D42029;
}
