@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
	width: 242px; /*width of accordion menu*/
	padding: 0px;
	position: relative;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	margin-bottom: 0px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	padding: 0px;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	padding: 0;
	margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
}

.arrowlistmenu ul li{
	padding-bottom: 0px; /*bottom spacing between menu items*/
	padding-top: 0px;
}

.arrowlistmenu ul li a{
	color: #717171; /*custom bullet list image*/
	display: block; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	font-size: 13px;
	background-image: url(images/arrow.jpg);
	background-repeat: no-repeat;
	background-position: 18px center;
	font-family: "Trebuchet MS";
	text-transform: capitalize;
	height: 30px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	line-height: 30px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E9E9E9;
	width: 228px;
	margin-right: 7px;
	margin-left: 7px;
	text-indent: 40px;
	padding-left: 0px;
	text-align: left;
}
h3 {
	margin: 0px;
	padding: 0px;
}

.arrowlistmenu ul li a:visited{
	color: #717171;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #08A2C6;
	background-color: #F3F3F3;
}

