div#test-accordion{
}

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

div.accordion-toggle{
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
	background: #fff;   
    cursor: pointer;
	font-weight:bold;
	border-bottom:1px dashed #CCCCCC;
	padding:5px;	
}

div.accordion-toggle:hover{
	background:#f8f8f8;
}

div.accordion-toggle-active, div.accordion-toggle-active:hover{
	background: #CDE619;
	border-bottom:3px solid #ffffff;
}

div.accordion-content{
    overflow: hidden;	/* required for effect */
    background: url(../img/2009/degrade-bleu-v-1x150.jpg) left -105px repeat-x;
	border-bottom:1px solid #2E3889;
	padding:0 5px 0 5px;
	font-size:0.9em;	
	
}
