@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
	width: 220px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	margin-top:10px;
	color: white;
	background: url(/images/normal.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: none;
	text-align: left;
	cursor: pointer;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	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: url(/images/active.png) no-repeat center left;
	margin-bottom: -5px; /*bottom spacing between header and rest of content*/
	text-transform: capitalize; /*header text is indented 10px*/
	text-decoration: none;
	cursor: pointer;
	padding-top:7px;
	padding-right: 0px;
	padding-bottom: 7px;
	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: url(/images/active.png) no-repeat 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: #be1c0d;
	background: url(/images/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	margin-left: 5px;
	display: block;
	padding: 2px 0px;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
	border-bottom: 1px solid #dadada;
	font-size: 12px;
	font-family: Comic Sans MS;
}

.arrowlistmenu ul li a:visited{
	color: #be1c0d;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #be1c0d;
	text-decoration: underline;
}

