

.arrowlistmenu {
width: 566px;

}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	font-family: /*Verdana, Arial,*/ Helvetica, sans-serif;
	/*cursor: hand;*/
	cursor: pointer;
	height: 20px;
	padding-top: 2px;
	padding-left: 30px;
	padding-bottom: 4px;
	background-image: url(/_standards/accordion01.jpg);
	background-repeat: repeat-x;
	text-align: left;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(/_standards/accordion02.jpg);
text-decoration: none;
}

.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: 0px; /*bottom spacing between menu items*/
	
}

.arrowlistmenu ul li a{
	color: #666666;
	background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 5px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	font-size: 90%;
}

.arrowlistmenu ul li a:visited{
	color: #22587f;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #7894A3;
}

