#test-accordion .titre{
    font-size:14px;
	text-decoration:underline;
	font-weight:bolder;
	margin-top:4px;
}

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

div.accordion-toggle{
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
	background-image:url(../img/off.jpg);
	background-repeat:repeat-x;
	background-position:bottom;  
    cursor: pointer;
	margin-bottom:1px;
	padding:9px 14px 6px 14px;
	color:white;
	font-weight:bolder;
}
div.accordion-toggle:hover, div.accordion-toggle-active{
	background-image:url(../img/on.jpg);
	color:white;
	font-weight:bolder;
}

div.accordion-content{
	overflow:auto;
	padding:0 15px;
	text-align:justify;
	height:445px;
}