@charset "utf-8";
/* CSS Document */

	/*---- Accordéon sous forme de boutons, comme dans la page /ressources/bibliotheque/officialisation/termes-officialises-index-thematique.aspx -------*/
	
	.accordion {
    background-color: #F8FBFC;
	cursor: pointer;
    width: 100%;
	height: 43px;
	padding-left: 15px;
	margin-bottom: 5px;
    border: 1px solid #D5EAF4;
    text-align: left;
    outline: none;
    transition: 0.4s;
	border-radius: 5px;
	}
	
	.active, .accordion:hover {
		background-color: #E6F5F9; 
		border: 1px solid #BFDFEE;
	}
	
	.panel {
		padding: 18px;
		display: none;
		background-color: #F9F9F9;
		overflow: hidden;
		margin-bottom: 8px;
	}
	
.accordion	h3 {
	font-size:1.1em;
	margin: 0px;
	color: #3C4348;
	line-height: 1.2em;
	font-weight: bold;
}

.accordion h4 {
	font-size:1.1em;
	margin:10px 0px;
}

.accordion h5 {
	font-size: 1em;
	margin:10px 0px;	
}
		
	/*-----Fin Accordéon---------*/
	
	/*---- Boutons développer/réduire -------*/
	
.developper_reduire {
	margin: 15px 0px ;
	text-align: right;
}

.bouton_dev-reduire {
	padding: 6px;
	border-right: 2px solid #CCC;
	border-bottom: 2px solid #CCC;
	border-radius: 5px;
}
	/*---- Fin Boutons développer/réduire -------*/