/*stuff for the menu settings */
.arrowlistmenu{
	width: 167px;
	text-decoration: none;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 13px Arial;
	color: #b2c9d7;
	background: black url(blue.png) repeat-x center left;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/
	text-transform: uppercase;
	padding: 10px 0 10px 10px; /*header text is indented 10px*/
	cursor: pointer;
	cursor: pointer;
	text-decoration: none;
}



.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(yellow.png);
color: #11212c;
}


.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
background-image: url(images/leftgreywhite.jpg);
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: #11212c;
	background: url(arrowbulletblue.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	/*border-bottom: 1px solid #ffffff; */
	font-size: 80%;
	font-family: Arial, Helvetica, sans-serif;
}

.arrowlistmenu ul li a:visited{
color: #11212c;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #616262;
background-color: #Ffffff;
}
