/*
*#########################
*	ACCORDIAN WIDGET
*#########################
*/
div.basic  {
	margin:  0;
	padding: 0;
}
.basic > div {
	background-color: #f1f1f1;
}
.basic > div.scrolling {
	overflow: auto !important;
}

.basic > div > p, .basic > div > form {
	margin-bottom : 10px;
	border: none;
	text-decoration: none;
	font-weight: bold;
	font-size: 10px;
	margin: 0px;
	padding: 10px;
}
.basic > a {
	color: white;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
	cursor:pointer;
	display:block;
	padding:5px;
	margin-top: 0;
	background-color: #5B6B78;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #999;
	background-image:url(../fr/charte/accordeon_off.png);
	background-repeat:no-repeat;
	background-position:98% 50%;
}
.basic > a#rt  {
	color: white;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
	cursor:pointer;
	display:block;
	padding:5px;
	margin-top: 0;
	background-color: #E3001B;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #999;
	
	}
.basic > a.selected ,
.basic > a.active ,
.basic > a:hover {
	color: black;
}
.basic > a.active {
	color: #00C;
}
.basic > a.ui-state-active {
		background-image:url(../fr/charte/accordeon_on.png);
	background-repeat:no-repeat;
	background-position:98% 50%;
	}


