div#test-accordion{
    margin: 0px;
    border: 0px solid #aaa;
    width:100%;
    
    
}

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

div.accordion-toggle{
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
	background: #eee;   
    cursor: pointer;
    margin:2px;
    padding:5px;
    color:#eb9130;
    text-align:right;
    width:220px;
    
}

div.accordion-toggle-active

{
	background: #aaa;
	color:#ffffff;
	font-weight:bold;
	font-variant:small-caps;
	font-size:11pt;
	width:220px;

}

div.accordion-content{
    overflow: hidden;	/* required for effect */
    background: #fff;
    margin: 3px;
    height:110px;
    
}
