@charset "utf-8";
/* Accordian Menu Style CSS Document */

body
{
	font-size: 62.5%;
	font-family: Georgia,Times, serif;
	color: #333333;
	background-color: #1C1811;

}
ul, li, img, body, html
{
	margin: 0;
	padding: 0;
}


.arrowlistmenu{
	width: 225px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 2.0em Georgia,Times, serif;
	color: #ECE6C5;
	/*background: black url(titlebar.png) repeat-x center left;*/
	margin-bottom: 5px; /*header text is indented 10px*/
	margin-top:1px;
	cursor: hand;
	cursor: pointer;
	padding-left:.5em;
	
}

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


.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;
	margin: 0;
	padding: 0;
	margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
	padding-bottom: 2px; /*bottom spacing between sub menu items*/
}

.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: #ECE6C5;
	/*background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 3px 0;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	font-size: 1.4em;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color:#FFFFFF;
	background-color: #CC0000;
	background: transparent url(../images/img.php.png) no-repeat top left;
	height: auto;
	width:100%;
	
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
	
	background-color: #CC0000;

}

