@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
	width: 185px;
	text-align: left;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #000;
	margin-bottom: 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #aaa9a9;
	background-image: url(../images/titlebar-active.png);
	background-position: left center;
	background-repeat: no-repeat;
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 15px;
}
.arrowlistmenu .menuheader a {
	color: #000;
	text-decoration: none;
}
.arrowlistmenu .menuheader a:hover {
	color: #aaa9a9;

}


.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(../images/titlebar.png);
	background-repeat: no-repeat;
	background-position: left center;
}

.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*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
	color: #000000;
	background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 20px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #aaa9a9;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #aaa9a9;
	background-color: #FFF;
}

