@charset "utf-8";
/* CSS Document */

h4{
	margin-top:10px;
}

.arrowlistmenu{
	width: 200px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: white;
	background: #00FF00 url(/images/hover.png) repeat-x center left;
	margin-bottom: -5px; /*bottom spacing between header and rest of content*/
	text-transform: capitalize; /*header text is indented 10px*/
	text-decoration: underline;
	cursor: pointer;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
}

.arrowlistmenu .menuheader:hover{ /*CSS class for menu headers in general (expanding or not!)*/
	color: white;
	background: #FF0000 url(/images/hover.png) repeat-x center left;
	margin-bottom: -5px; /*bottom spacing between header and rest of content*/
	text-transform: capitalize; /*header text is indented 10px*/
	text-decoration: underline;
	cursor: pointer;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
}

.arrowlistmenu .menuheaderlinked:link{ /*CSS class for menu headers in general (expanding or not!)*/
	color: white;
	text-decoration: none;
}

.arrowlistmenu .menuheaderlinked:visited{ /*CSS class for menu headers in general (expanding or not!)*/
	color: white;
	text-decoration: none;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background: #FF0000 url(/images/titlebar-active.png) repeat-x center left;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin-top: 10px;
	padding: 0px;
	margin-bottom: 0px; /*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: #c23e38;
	background: url(/images/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0px;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #dadada;
	font-size: 13px;
}

.arrowlistmenu ul li a:visited{
	color: #c23e38;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #c23e38;
	text-decoration: underline;
	background-color: #EEEEEE;
}

