div#test-accordion{
  	background-color:#fff;
	padding:0px;
}

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

div.accordion-toggle{
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
	background: #e5e5e5;
	color:#000;
	font-weight:bold;   
    cursor: pointer;
	margin-bottom:1px;
	padding:9px 14px 1px 14px;
		
}
div.accordion-toggle:hover, div.accordion-toggle-active{
	background-color:#FFF;
	border-bottom:1px solid #e5e5e5;
	color:#0099FF;
	font-weight:bold;
	}

div.accordion-content{
    overflow: hidden;	/* required for effect */
    background: #fff;
	padding:9px 24px 1px 24px;	
	color:#000;
	
}