/*
// ===============================================
// ###############################################
// ### JS - recherche.css ########################
// ###############################################
// ===============================================
// ### HISTORIQUE DE VERSION #####################
// ===============================================
// 29/08/2024 : Intégration des mots clé
// 09/02/2024 : Ajustement avec les valeurs du thème
// ===============================================
*/
.page-cadre {
	display: block;
	float: none;
	position: relative;	
}
.page {
	display: block;
	float: none;
	position: relative;
	padding-right: 50px;
	padding-left: 50px;
	margin-right: auto;
	margin-left: auto;
	max-width: 1440px;
	transition: padding var(--theme_transition);
	padding-top: 30px;
	padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
	.page {
	padding-right: 10px;
	padding-left: 10px;	
	}
}
.page-haut {
	display: flex;
	float: none;
	position: relative;	
	flex-direction: column;
}
.page-haut-titre {
	display: flex;
	float: none;
	position: relative;
	text-align: center;
	padding-right: 150px;
	padding-left: 150px;
	flex-direction: column;
	align-items: center;
	padding-top: 0px;
	padding-bottom: 30px;
}
@media screen and (max-width: 1366px) {
	.page-haut-titre {
	padding-right: 140px;
	padding-left: 140px;	
	}
}
@media screen and (max-width: 1280px) {
	.page-haut-titre {
	padding-right: 130px;
	padding-left: 130px;	
	}
}
@media screen and (max-width: 1024px) {
	.page-haut-titre {
	padding-right: 90px;
	padding-left: 90px;	
	}
}
@media screen and (max-width: 768px) {
	.page-haut-titre {
	padding-right: 70px;
	padding-left: 70px;	
	}
}
@media screen and (max-width: 580px) {
	.page-haut-titre {
	padding-right: 30px;
	padding-left: 30px;	
	}
}
.page-haut-titre h1 {
	margin: 0px;
	color: #000;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.page-haut-titre div {
	display: block;
	float: none;
	height: 5px;
	width: 20%;
	position: relative;
	background-color: rgb(var(--theme_couleur_2));
}
.page-detail {
	display: block;
	float: none;
	position: relative;
	padding-right: 30px;
	padding-left: 30px;
}
.rechercher-moteur {
	display: block;
	float: none;
	position: relative;	
}
.rechercher-moteur-formulaire {
	display: flex;
	width: 60%;
	position: relative;
	box-sizing: border-box;
	transition-property: width;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width: 767px) {
	.rechercher-moteur-formulaire {
		width: 100%;
	}	
}
.rechercher-moteur-champ {
	display: block;
	position: relative;
	box-sizing: border-box;
	flex-grow: 1000;
}
.rechercher-champ {
	display: block;
	position: relative;
	float: none;
	width: 100%;
	height: 43px;
	font-family: var(--theme_formulaire_police);
	font-size: var(--theme_formulaire_champ_texte_taille);
	font-weight: normal;
	color: rgb(var(--theme_formulaire_champ_couleur_contenu));
	border: 1px solid rgb(var(--theme_formulaire_champ_couleur_contour));
	padding-right: 5px;
	padding-left: 46px;
	border-radius: var(--theme_formulaire_champ_arrondi);
	box-sizing: border-box;
	-webkit-appearance: none;
	outline: none;
	background-image: url(../../graphisme/recherche/loupe-recherche.svg);
	background-repeat: no-repeat;
	background-position: 13px 12px;
	background-color: rgb(var(--theme_formulaire_champ_couleur_fond));
}
.rechercher-champ:hover {
	border: 1px solid rgb(var(--theme_formulaire_champ_couleur_contour_survol));
}
.rechercher-champ:focus {
	border: 1px solid rgb(var(--theme_formulaire_champ_couleur_contour_focus));
	box-shadow: 0 0 0 3px rgba(var(--theme_formulaire_champ_couleur_contour_focus),0.3);	
}
@media screen and (max-width: 768px) {
	.rechercher-champ {
	background-image: none;
	padding-left: 5px;
	}
}
datalist option {
	font-size: 20px;
	background-color: #0C6;
	display: block;
	float: none;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	position: relative;
}
.rechercher-moteur-bouton {
	display: block;
	position: relative;
	box-sizing: border-box;
	padding-left: 15px;
	flex-grow: 1;
}
.rechercher-bouton {
	font-size: 15px;
	font-weight: bold;
	color: rgb(var(--theme_bouton_2_couleur_contenu));
	background-color: rgb(var(--theme_bouton_2_couleur_fond));
	border: 1px solid rgb(var(--theme_bouton_2_couleur_contour));
	height: 43px;
	padding-right: 20px;
	padding-left: 20px;
	position: relative;
	box-sizing: border-box;
	border-radius: var(--theme_bouton_2_arrondi);
	text-align: center;
	cursor: pointer;
	transition: box-shadow var(--theme_transition), color var(--theme_transition), background-color var(--theme_transition), border var(--theme_transition);
	background-image: none;
	-webkit-appearance: none;
	padding-top: 12px;
	padding-bottom: 12px;
}
.rechercher-bouton:hover {
	box-shadow: 0px 0px 0px var(--theme_bouton_2_halo) rgba(var(--theme_bouton_2_couleur_fond),0.3);
	color: rgb(var(--theme_bouton_2_couleur_contenu_survol));
	background-color: rgb(var(--theme_bouton_2_couleur_fond_survol));
	border: 1px solid rgb(var(--theme_bouton_2_couleur_contour_survol));
}
@media screen and (max-width: 768px) {
	.rechercher-bouton {
	padding-right: 16px;
	padding-left: 16px;	
	}
}
.recherche-attente {
	display: flex;
	position: relative;
	float: none;
	width: 100%;
	margin-bottom: 10px;
	margin-top: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	justify-content: center;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
	opacity: 0;
}
@keyframes recherche-attente-animation {
  0% {fill:#3d3d3d}
  12.5% {fill:#484848}
  25% {fill:#575757}
  37.5% {fill:#676767}
  50% {fill:#7b7b7b}
  62.5% {fill:#8f8f8f}
  75% {fill:#c2c2c2}
  87.5% {fill:#dfdfdf}
  100% {fill:#efefef}
}
@keyframes recherche-attente-animation-cadre {
  0% {transform: rotate(0deg)}
  100% {transform:rotate(360deg)}
}
.recherche-attente svg {
	fill: rgba(var(--theme_couleur_1),0.25);
	animation-name: recherche-attente-animation-cadre;
	animation-duration: 1s;	
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-direction: normal;
	
}
.recherche-attente svg .recherche-attente-01 {
	animation-name: recherche-attente-animation;
	animation-duration: 0s;	
	animation-delay: 0s;
	animation-iteration-count: infinite;
	fill: rgba(var(--theme_couleur_1),0.125);
}
.recherche-attente svg .recherche-attente-02 {
	animation-name: recherche-attente-animation;
	animation-duration: 0s;	
	animation-delay: 1s;
	animation-iteration-count: infinite;
	fill: rgba(var(--theme_couleur_1),0.25);
}
.recherche-attente svg .recherche-attente-03 {
	animation-name: recherche-attente-animation;
	animation-duration: 0s;	
	animation-delay: 2s;
	animation-iteration-count: infinite;
	fill: rgba(var(--theme_couleur_1),0.375);
}
.recherche-attente svg .recherche-attente-04 {
	animation-name: recherche-attente-animation;
	animation-duration: 0s;	
	animation-delay: 3s;
	animation-iteration-count: infinite;
	fill: rgba(var(--theme_couleur_1),0.5);
}
.recherche-attente svg .recherche-attente-05 {
	animation-name: recherche-attente-animation;
	animation-duration: 0s;	
	animation-delay: 4s;
	animation-iteration-count: infinite;
	fill: rgba(var(--theme_couleur_1),0.625);
}
.recherche-attente svg .recherche-attente-06 {
	animation-name: recherche-attente-animation;
	animation-duration: 0s;	
	animation-delay: 5s;
	animation-iteration-count: infinite;
	fill: rgba(var(--theme_couleur_1),0.75);
}
.recherche-attente svg .recherche-attente-07 {
	animation-name: recherche-attente-animation;
	animation-duration: 0s;	
	animation-delay: 6s;
	animation-iteration-count: infinite;
	fill: rgba(var(--theme_couleur_1),0.875);
}
.recherche-attente svg .recherche-attente-08 {
	animation-name: recherche-attente-animation;
	animation-duration: 0s;	
	animation-delay: 7s;
	animation-iteration-count: infinite;
	fill: rgba(var(--theme_couleur_1),1);
}
.resultat {
	display: block;
	float: none;
	position: relative;
	box-sizing: border-box;
	padding-top: 0px;
}
.resultats {
	display: block;
	float: none;
	position: relative;	
}
.resultats-cadre {
	display: block;
	float: none;
	position: relative;	
}
.resultat-action-cadre, .resultat-action-cadre-dx, .resultat-cadre-dx {
	display: block;
	float: none;
	position: relative;	
}
.resultat-action {
	display: table;
	float: none;
	position: relative;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	width: 100%;
	box-sizing: border-box;
	padding-bottom: 7px;
	font-size: 15px;
	color: #666666;
}
.resultat-action div:first-of-type{
	text-align: left;
	vertical-align: top;
	display: table-cell;
	position: relative;
	box-sizing:border-box;
}
.resultat-action div:last-of-type{
	text-align: right;
	vertical-align: top;
	display: table-cell;
	position: relative;
	box-sizing:border-box;
}
.resultat-action-filtre {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	background-image: url(../../graphisme/recherche/fleches-recherche.svg);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	cursor: pointer;
	background-color: #FFF;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: right -25px;
	padding-top: 0px;
	padding-right: 16px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 6px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.resultat-action-filtre-up {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	background-image: url(../../graphisme/recherche/fleches-recherche.svg);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	cursor: pointer;
	background-color: #FFF;
	display: inline-block;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: right 11px;
	padding-top: 0px;
	padding-right: 16px;
	padding-bottom: 0px;
	padding-left: 0px;	
	margin-top: 0px;
	margin-right: 6px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.resultat-action-reinitialiser {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #0070c9;
	text-decoration: none;
	cursor: pointer;
	background-color: #FFF;
	display: inline-block;
	background-repeat: no-repeat;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 6px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
@media screen and (max-width: 580px) {
	.resultat-action-reinitialiser {
	font-size: 0px;
	background-image: url(../../graphisme/recherche/croix-reinitialiser.svg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 13px;
	width: 13px;
	vertical-align: top;
	margin-top: 4px;
	}
}
.resultat-action-trier {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	background-image: url(../../graphisme/recherche/fleches-recherche.svg);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	cursor: pointer;
	background-color: #FFF;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: right -25px;
	padding-top: 0px;
	padding-right: 16px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin: 0px;
}
.resultat-action-trier-up {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	background-image: url(../../graphisme/recherche/fleches-recherche.svg);
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	cursor: pointer;
	background-color: #FFF;
	display: inline-block;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: right 11px;
	padding-top: 0px;
	padding-right: 16px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.resultat-filtre {
	text-align: left;
	display: none;
	float: none;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	position: relative;
}
.resultat-filtre-dx {
	display: none;
	float: none;
	position: relative;	
}
.resultat-filtre ul {
	display: block;
	margin: 0px;
	padding: 0px;
	float: none;
	list-style-type: none;
	position: relative;
}
.resultat-filtre ul li{
	font-family: "Roboto Condensed", sans-serif;
	font-size: 13px;
	font-weight: 400;
	position: relative;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 5px;
	list-style-position: inside;
	list-style-type: square;
	display: inline-block;
	background-image: url(../../graphisme/recherche/puce-resultat.svg);
	background-repeat: no-repeat;
	background-position: right 11px;		
}
.resultat-filtre ul li:last-of-type {
    background-image: none;
}
.resultat-filtre ul li button {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	display: inline-block;
	position: relative;
	background-color: #FFF;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	border-radius: 2px;
	cursor: pointer;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.resultat-filtre ul li button.actif {
    background-color: #e6e6e6;
    color: #0070c9;
}
.resultat-trier {
	text-align: right;
	display: none;
	float: none;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	position: relative;
}
.resultat-trier ul {
	display: block;
	margin: 0px;
	padding: 0px;
	float: none;
	list-style-type: none;
	position: relative;
}
.resultat-trier ul li{
	position: relative;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 5px;
	list-style-position: inside;
	list-style-type: square;
	display: inline-block;
	background-image: url(../../graphisme/recherche/puce-resultat.svg);
	background-repeat: no-repeat;
	background-position: right 11px;		
}
.resultat-trier ul li:last-of-type {
    background-image: none;
}
.resultat-trier ul li button {
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	display: inline-block;
	position: relative;
	background-color: #FFF;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	border-radius: 2px;
	cursor: pointer;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.resultat-trier ul li button.actif {
    background-color: #e6e6e6;
    color: #0070c9;
}
.resultat-message {
	font-size: 15px;
	font-weight: 400;
	text-align: center;
	display: block;
	padding-top: 60px;
	padding-bottom: 400px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	position: relative;	
}
.article {
	display: flex;
	float: none;
	width: 100%;
	padding-top:15px;
	padding-bottom: 15px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	position: relative;	
	box-sizing: border-box;
	flex-wrap: nowrap;
}
@media screen and (max-width: 580px) {
	.article {
	flex-wrap: wrap;
	}
}
.article:first-of-type {
	border-top-width: 0px;
}
.article-visuel {
	display: block;
	float: none;
	width: 100%;
	max-width: 220px;
	min-width: 220px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 15px;
	position: relative;
	box-sizing: border-box;
	transition-property: width;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	flex-grow: 1;
}
@media screen and (max-width: 580px) {
	.article-visuel {
	padding-right: 0px;
	padding-bottom: 7px;
	}
}
@media screen and (max-width: 580px) {
	.article-visuel {
	max-width: inherit;
	min-width:  inherit;
	}
}
.article-visuel figure {
	display: block;
	float: none;
	position: relative;
	box-sizing: border-box;
}
.article-visuel figure a {
	display: block;
	float: none;
	overflow: hidden;
	position: relative;
	border: 1px solid #fff;
	transition-property: border;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}
.article-visuel figure a:hover {
	border: 1px solid #CCC;
}

.article figure a img{
	display: block;
	float: none;
	position: relative;
	height: auto;
	width: 100%;
	transform: scale(1,1);
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}
.article figure a img:hover{
	transform: scale(1.1,1.1);
}
.article-resume {
	display: block;
	position: relative;
	float: none;
	padding-top:15px;
	padding-left: 15px;
	padding-bottom: 15px;
	box-sizing: border-box;
	flex-grow: 10;
}
@media screen and (max-width: 580px) {
	.article-resume {
	padding-left: 0px;
	width: 100%;
	padding-top: 7px;
	}
}
.article-resume h3 {
	font-weight: 700;
	margin: 0px;
	padding: 0px;
	position: relative;
}
.article-resume h3 a {
	color: rgb(var(--theme_couleur_noir));
	text-decoration: none;
}
.article-resume h3 a:hover {
	color: rgb(var(--theme_couleur_1));
	text-decoration: none;
}
.article-resume p {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.01em;	
}
@media screen and (max-width: 580px) {
	.article-resume p {
	font-size: 15px;
	}
}
@media screen and (max-width: 360px) {
	.article-resume p {
	font-size: 14px;
	}
}
.navigation {
	display: table;
	width: 100%;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCC;
	border-bottom-color: #CCC;
	position: relative;
	box-sizing: border-box;
	padding-top: 8px;
	padding-bottom: 8px;
}
.navigation-precedent {
	vertical-align: middle;
	display: table-cell;
	width: 90px;
	position: relative;
	box-sizing: border-box;
	text-align: left;
}
.navigation-precedent a{
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	background-image: url(../../graphisme/recherche/fleche-precedent.svg);
	background-repeat: no-repeat;
	background-position: 2px center;
	position: relative;
	padding-left: 13px;
	cursor: pointer;
}
.navigation-precedent a:hover{
	color: #000;
	text-decoration: none;
	background-position: 0px center;
}
.navigation-suivant {
	vertical-align: middle;
	display: table-cell;
	width: 90px;
	position: relative;
	box-sizing: border-box;
	text-align: right;
}
.navigation-suivant a{
	font-size: 15px;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	background-image: url(../../graphisme/recherche/fleche-suivant.svg);
	background-repeat: no-repeat;
	background-position: right 2px center;
	position: relative;
	padding-right: 13px;
	cursor: pointer;
}
.navigation-suivant a:hover{
	color: #000;
	text-decoration: none;
	background-position: right 0px center;
}
.navigation ul {
	text-align: center;
	vertical-align: middle;
	display: table-cell;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	position: relative;	
	box-sizing: border-box;
}
@media screen and (max-width: 580px) {
	.navigation ul {
		display: none;
	}
}
.navigation ul li {
	display: inline-block;
	position: relative;	
}
.navigation ul li a{
	font-size: 15px;
	line-height: 25px;
	color: #000;
	text-decoration: none;
	background-color: #fff;
	display: block;
	float: none;
	height: 25px;
	margin-right: 0px;
	margin-left: 0px;
	padding-right: 6px;
	padding-left: 6px;
	position: relative;
	border-radius: 2px;
	transition-property: margin-right, margin-left;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	cursor: pointer;
}
.navigation ul li a:hover{
	background-color: #e6e6e6;
	margin-right: 3px;
	margin-left: 3px;
}
.navigation ul li a.active{
	color: #0070c9;
	border: 1px solid #CCCCCC;
}
.navigation ul li a.active:hover{
	background-color: #e6e6e6;
	border: 1px solid #e6e6e6;
}
.navigation-resultat {
	font-size: 13px;
	text-align: center;
	display: block;
	float: none;
	padding-top: 8px;
	color: #666;
	position: relative;
	font-weight: 300;
	letter-spacing: 0.01em;
}
.recherche-mot-cle {
	display: block;
	position: relative;
	float: none;
}
.recherche-mot-cle ul {
	display: flex;
	position: relative;
	float: none;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 25px;
}
.recherche-mot-cle ul li {
	display: block;
	position: relative;
	float: none;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.recherche-mot-cle ul li a {
	display: block;
	position: relative;
	float: none;
	font-size: 16px;
	font-weight: 300;
	color: rgb(var(--theme_couleur_noir));
	background-color: rgb(var(--theme_couleur_gris_clair));
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 4px;
	user-select: none;
	-webkit-user-select: none;
	text-decoration: none;
	cursor: pointer;
	transition: box-shadow var(--theme_transition), color var(--theme_transition), background-color var(--theme_transition);
}
@media screen and (max-width: 580px) {
	.recherche-mot-cle ul li a {
		font-size: 16px;
		padding-top: 3px;
		padding-bottom: 3px;
		padding-left: 8px;
		padding-right: 8px;
	}
}
.recherche-mot-cle ul li a.actif {
	color: rgb(var(--theme_couleur_blanc));
	background-color: rgb(var(--theme_couleur_1));
}
.recherche-mot-cle ul li a:hover {
	color: rgb(var(--theme_couleur_blanc));
	background-color: rgb(var(--theme_couleur_1));
	box-shadow: 0px 0px 0px 3px rgba(var(--theme_couleur_1), 0.3);
}