div#test-accordion{
	background-color: white;
}

div.accordion {
	position: relative; /* required for bounding */
	width:100%;
}

div.accordion-toggle{
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
	background: transparent;
	background-image:url('../images/arrowactive.gif');
	background-repeat:no-repeat;
	background-position: center left;
	color: #794500;  
	font-weight: bold;
	font-size: 14px; 
    cursor: pointer;
	margin-bottom:1px;
	padding:9px 14px 6px 24px;
	border-top:1px solid #dedede;	
}
div.accordion-toggle:hover, div.accordion-toggle-active{
	background-color: transparent;
}

div.accordion-toggle:active, div.accordion-toggle-active{
	background-color: transparent;
	background-image: url('../images/arrowother.gif');
	background-repeat: no-repeat;
}

div.accordion-content{
    overflow: hidden;	/* required for effect */
    background: white;
	padding:9px 24px 6px 24px;
	color: black;
	border-bottom:1px solid #dedede;
}