@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
width: 160px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	cursor: hand;
	cursor: pointer;
	font-family: Arial;
	font-size: 12px;
	font-weight: bold;
	color: #000033;
	padding: 0px;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(titlebar-active.png);
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none; /*bottom spacing between each UL and rest of content*/
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 8;
	margin-left: 0;
}

.arrowlistmenu ul li{
	padding-bottom: 1px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
	color: #A36C07; /*custom bullet list image*/
	display: block; /*link text is indented 19px*/
	text-decoration: none;
	border-bottom: 1px solid #dadada;
	font-size: 12px;
	padding: 1px;
}

.arrowlistmenu ul li a:visited{
	color: #A36C07;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #A36C07;
	background-color: #F3F3F3;
}
.arrowlistmenu h3 a {
	font-size: 12px;
	font-weight: bold;
	color: #000033;
}
.arrowlistmenu  h3.heading {
	text-indent: -10000px;
	display: block;
	margin-top: 6px;
	height: 36px;
}
