@charset "UTF-8";
/* CSS Document */



.arrowlistmenu{
	width: 180px; /*width of accordion menu*/
	height: 20px;
	background-color: #E6E6E6;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	color: white; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	font-family: Arial;
	font-size: 14px;
	line-height: 0px;
	font-weight: bold;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
}

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

.arrowlistmenu ul li{
	padding-bottom: 0;
}

.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{
	background-color:#FFF;
	color: #7B6535; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
	border-bottom: 1px dashed #dadada;
	font-size: 12px;
}

.arrowlistmenu ul li a:visited{
	color: #7B6535;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
background-color: #F3F3F3;
}

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

h3 {
	line-height: 0px;
	font-size:1px;
	margin: 0px;
	padding-top: 1px;
}
body {
	background-color: #FFF;
}
