
.arrowlistmenu{
	width: 180px;
	padding-top: 10px;
	padding-left: 10px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #191919; /*bottom spacing between header and rest of content*/
	text-transform: uppercase; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	font-family: Geneva, Arial Narrow, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	background-image: url(../_img/sdcollapsed.gif);
	background-position: left center;
	background-repeat: no-repeat;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 23px;
	margin: 0px;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(../_img/sdexpanded.gif);
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 1px; /*bottom spacing between each UL and rest of content*/
}

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

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;
}

.arrowlistmenu ul li a{
	color: #191919; /*custom bullet list image*/
	display: block;
	padding-left: 10px; /*link text is indented 19px*/
	text-decoration: none;
	font-size: 12px;
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 1px;
	border-bottom-width: 1px;
	border-left-width: thick;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #dadada;
	border-left-color: #191919;
	cursor: hand;
	cursor: pointer;
}

.arrowlistmenu ul li a:visited{
	color: #191919;
	text-decoration: none;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	background-color: #F3F3F3;
	text-decoration: none;
	border-left-width: thick;
	border-left-style: solid;
	border-left-color: #CBE3B2;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}
