.arrowlistmenu{
	width: 178px; /*width of accordion menu*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #007066;
	margin-top: 0px;
	float: left;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	background: #007066; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-right: 0;
	padding-left: 10px;
	padding-bottom: 5px;
	padding-top: 5px;
}
.arrowlistmenu .menuheader a:link {
	color: #FFFFFF;
	text-decoration: none;
}	
.arrowlistmenu .menuheader a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
.arrowlistmenu .menuheader a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
.arrowlistmenu .menuheader a:active {
	color: #FFFFFF;
	text-decoration: none;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
}

.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*/
	background-color: #E2E1DD;
}

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

.arrowlistmenu ul li a{
	color: #333333; /*custom bullet list image*/
	display: block;
	padding: 2px 0 2px 19px; /*link text is indented 19px*/
	text-decoration: none;
	border-bottom: 1px solid #999999;
	font-size: 10px;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #007066;
	background-color: #DFDFDF;
}

