div#test-accordion{
    border: 1px solid #343230;
}

div.accordion {
	position: relative; /* required for bounding */
}

div.accordion-toggle{
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
	background: #572B1F;
	background-image:url(../img/off.jpg);
	background-repeat:repeat-x;
	background-position:bottom;
	color:#ffffff;   
    cursor: pointer;
	padding:9px 14px 6px 14px;
	border-top:1px solid #5d5852;	
	height:50px;
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.5;
}
div.accordion-toggle:hover, div.accordion-toggle-active{
	background-image:url(../img/on.jpg);
	background-color:#2B0A01;
	border-top:1px solid #a06b55;
	height:50px;
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	color:white;
	line-height: 1.5;
}

div.accordion-content{
    overflow: hidden;	/* required for effect */
	border-bottom:1px solid #000000;
	height: auto !Important;
}