@charset "UTF-8";
/* CSS Document */

#left_column .arrowlistmenu{
width: 200px;/*width of accordion menu*/
font-family:Verdana, Arial, Helvetica, sans-serif;
text-align: left;
}

#left_column .arrowlistmenu a{
	text-decoration: none;
	color:#b36436;
}

#left_column .arrowlistmenu a:hover{
	color: #734567;
	
}
#left_column .arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 11.5px Verdana;
color:#b36436;
padding: 4px 0; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
margin-bottom: 0;
margin-top: 0;


}

#left_column .arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
color: #330000;
}

#left_column .arrowlistmenu .menuheader:hover{
	color: #734567;
}

#left_column .arrowlistmenu .openheader:hover{
	color: #330000;
}

#left_column .arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
font-size: 11.5px;
margin-bottom: 1px; /*bottom spacing between each UL and rest of content*/
}

#left_column .arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
color: #330000;
font-weight: bold;
margin-left: .75em;
}



#left_column .arrowlistmenu ul li a{
color: #b36436;
/*custom bullet list image*/
display: block;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
margin-left: 0;
}

#left_column .arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #734567;
}

#left_column #current a{
	color: #330000;
}


