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

.arrowlistmenu{
	width: 210px;
	padding-left: 20px;
	background: #7A6A4D;
	margin-top: 10px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	margin-bottom: 5px; /*bottom spacing between header and rest of content*/
	text-transform: capitalize;
	padding: 0px 8px 0px 20px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	color: #D6CEB5;
	background: url(../images/menu_images/left-arrow.gif) no-repeat left 2px;
	font-size: 85%;
	font-weight: normal;
}

.arrowlistmenu .menuheader a{
color: #D6CEB5;
text-decoration:none;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background: url(../images/menu_images/bottom-arrow.gif) no-repeat left 2px;
	font-weight: normal;
}

.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*/
	line-height: 90%;
}

.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{
	color: #FFFFFF;
	background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0 2px 0px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	border-bottom: 1px solid #AD9C8C;
	font-size: 80%;
	margin-left: 19px;
}

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

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

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

