/*image_ombre*/
:root {
	--blanc: #fff;
	--gris_clair: #9a9a9a;
	--gris_moyen: #686868;
	--gris_fonce: #212121;
	--shadowColor: 0 0 8px rgba(0, 0, 0, .7);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1200px) {
	#menu_tablette {display:none;}
	.titre_menu {font-size:2rem;}
	.sous_titre_menu {font-size:1rem;}
	#menu_ecran {width:25%;display:inline-block;}
	#content {width:71%;margin:5% 1%;}
	.image_ombre {margin:0 5px 13px;}
	.image_ombre img {height:clamp(60px, 22vw, 220px);}
	.block_gauche {width:35%;}
	.block_droit {width:61%;}
	.block_50 {width:48%;}
	.trois_col .titre_image {height:20px;}
	.img1_trois_col {width:31%;}
	.img2_trois_col {width:17%;}
	.paragraphe_trois_col {width:46%;}
}
@media only screen and (min-width: 960px) and (max-width: 1199px) {
	#menu_tablette {display:none;}
	.titre_menu {font-size:2rem;}
	.sous_titre_menu {font-size:1rem;}
	#menu_ecran {width:30%;display:inline-block;}
	.image_ombre {margin:0 5px 13px;}
	.image_ombre img {height:clamp(60px, 16vw, 200px);}
	#content {width:66%;margin:5% 1%;}
	.block_gauche {width:42%;}
	.block_droit {width:54%;}
	.block_50 {width:48%;}
	.trois_col .titre_image {height:40px;}
	.img1_trois_col {width:33%;}
	.img2_trois_col {width:21%;}
	.paragraphe_trois_col {width:40%;}
}
@media only screen and (min-width: 769px) and (max-width: 959px) {
	#menu_ecran {display:none;}
	.titre_menu {font-size:2rem;}
	.sous_titre_menu {font-size:1rem;}
	#content {width:98%;margin:70px 1% 1% 1%;}
	.image_ombre {margin:0 5px 13px;}
	.image_ombre img {height:clamp(60px, 22vw, 200px);}
	.block_gauche {width:38%;}
	.block_droit {width:58%;}
	.block_50 {width:48%;}
	.trois_col .titre_image {height:20px;}
	.img1_trois_col {width:33%;}
	.img2_trois_col {width:21%;}
	.paragraphe_trois_col {width:40%;}
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
	#menu_ecran {display:none;}
	.titre_menu {font-size:1.2rem;}
	.sous_titre_menu {font-size:1rem;}
	#content {width:98%;margin:70px 1% 1% 1%;}
	.image_ombre {margin:0 5px 10px;}
	.image_ombre img {height:clamp(60px, 22vw, 200px);}
	.block_gauche {width:98%;}
	.block_droit {width:98%;}
	.block_50 {width:98%;margin:1% 0;}
	.trois_col .titre_image {height:40px;}
	.img1_trois_col {width:33%;}
	.img2_trois_col {width:21%;}
	.paragraphe_trois_col {width:40%;}
}
@media only screen and (max-width: 479px) {
	#menu_ecran {display:none;}
	.titre_menu {font-size:1rem;}
	.sous_titre_menu {font-size:0.8rem;}
	#content {width:98%;margin:70px 1% 1% 1%;}
	.image_ombre {margin:0 5px 5px;}
	.image_ombre img {height:clamp(60px, 22vw, 200px);}
	.block_gauche {width:98%;}
	.block_droit {width:98%;}
	.block_50 {width:98%;margin:1% 0;}
	.trois_col .titre_image {height:55px;}
	.img1_trois_col {width:36%;}
	.img2_trois_col {width:18%;}
	.paragraphe_trois_col {width:40%;}
}

@font-face {
  font-family: 'SortsMillGoudy-Regular';
  src: url('../fonts/SortsMillGoudy-Regular.eot');
  src: url('../fonts/SortsMillGoudy-Regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/SortsMillGoudy-Regular.otf') format('otf'),
       url('../fonts/SortsMillGoudy-Regular.svg#SortsMillGoudy-Regular') format('svg'),
       url('../fonts/SortsMillGoudy-Regular.ttf') format('truetype'),
       url('../fonts/SortsMillGoudy-Regular.woff') format('woff'),
       url('../fonts/SortsMillGoudy-Regular.woff2') format('woff2');
	font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
	font-size:100%;
	margin:0;
	padding:0;
}
body { 
	margin:0;
	padding:0;
	font-family:SortsMillGoudy-Regular, serif;
	background:var(--blanc);
}
a {
  text-decoration: none;
  color: inherit;
}
#conteneur {
    width:100%;
    max-width:1600px;
    margin:0 auto;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

#page_principale {
    flex:1;
}
#noscript {
	display:none;
	margin:0 auto;
	text-align:center;
	background: rgba(255,255,255, .3);
	border-radius: 5px;
	-webkit-box-shadow:var(--shadowColor);
	box-shadow: var(--shadowColor);
}
/*debut Fleche retour en haut*/
a#cRetour{
	border-radius:3px;
	padding:10px;
	font-size:15px;
	text-align:center;
	color: var(--blanc);
	background:rgba(0, 0, 0, 0.25);
	position:fixed;
	right:20px;
	opacity:1;
	z-index:99999;
	transition:all ease-in 0.2s;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	text-decoration: none;
}
a#cRetour:before{ content: "\25b2"; }
a#cRetour:hover{
	background:rgba(0, 0, 0, 1);
	transition:all ease-in 0.2s;
}
a#cRetour.cInvisible{
	bottom:-35px;
	opacity:0;
	transition:all ease-in 0.5s;
}
a#cRetour.cVisible{
	bottom:20px;
	opacity:1;
}
/*fin Fleche retour en haut*/
#menu_ecran {
    margin:0 0 0 2%;
    background-image:url('../images/fond_menu_charles_sahuguet.webp');
    background-repeat:no-repeat;
    background-position:right center;
    background-size:auto;
}
.texte_menu {text-align:center;}
.titre_menu {color: var(--gris_fonce);}
.sous_titre_menu {color: var(--gris_clair);}

.vertical_menu {
    width:100%;
}
.vertical_menu a {
    font-size:1.1rem;
    color: var(--gris_clair);
    display:block;
    padding:5px 12px;
    text-decoration:none;
}
.vertical_menu a::before {
    content:"";
    display:inline-block;
    width:8px;
    height:8px;
    background:var(--gris_clair);
    margin-right:10px;
}
.vertical_menu a:hover {
    color:var(--gris_fonce);
}
.vertical_menu a:hover::before {
    background:var(--gris_fonce);
}
.vertical_menu a.active {
    color:var(--gris_fonce);
}
.vertical_menu a.active::before {
    width:0;
    height:0;
    background:none;
    border-top:5px solid transparent;
    border-bottom:5px solid transparent;
    border-left:7px solid var(--gris_fonce);
    margin-right:11px;
}
#bt_menu {
	position: fixed;
	width:100%;
	margin-top:1rem;
	margin-left:2rem;
	background-color:#fff;
	font-size:30px;
	z-index:150;
	cursor: pointer;
}
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index:300;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0, 0.7);
  overflow-x: hidden;
  transition: 0.5s;
}
.overlay-content {
  position: relative;
  top:5%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding-bottom:50px;
}
.overlay a {
  padding: 8px;
  text-decoration: none;
  color: var(--blanc);
  display: block;
  transition: 0.3s;
}
.overlay a:hover, .overlay a:focus {color:#ccc;}
.overlay .active{color:#ccc;}
.overlay .closebtn_menu {
  position: absolute;
  top:0rem;
  left:1.5rem;
  font-size: 40px;
}
@media screen and (max-height: 450px) {
  .overlay .closebtn_menu {
  font-size: 40px;
  top:1rem;
  left: 1rem;
  }
}
#text_menu_gr {
	text-align:center;
	color:var(--blanc);
	background-color: var(--gris_clair);
	padding:12px;
}
#text_menu_gr a {
	text-decoration: none;
	color:var(--blanc);
	padding: 12px;
}
#text_menu_gr a:hover, #text_menu_gr a:focus {color:var(--gris_fonce);}

#myNav {
	display:none;
	animation-name:ouverture_menu;
	animation-duration:0.5s;
	animation-timing-function:cubic-bezier(10,2,3,1);
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: both;
}
@keyframes ouverture_menu {
	0% {
		transform: translateX(-100%) scale(1,0.2);

	}
	50% {
		transform: translateX(0%) scale(1,0.2);
	}
	100% {
		transform: translateX(0%) scale(1,1);
	}
}
.onglet {
	font-size:1.2rem;
}
.onglet a:after {
	content: '';
	display: block;
	margin: auto;
	height: 1px;
	width: 0;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}
.onglet a:hover:after {
  width:50%;
  background: var(--gris_moyen);
}
#content {
	padding:0;
	color: var(--gris_moyen);
	display:inline-block;
	vertical-align:top;
}

h1,h2 {
	font-size:1.8rem;
	color: var(--gris_moyen);
	text-align:right;
	margin-right:10%;
}
h1 {
    margin-bottom: 0;
}
h2 {
    margin-top: 0;
}
#logo {
    width:100%;
    margin-top:20px;
    padding:0;
    display:flex;
    justify-content:center;
    align-items:center;
}

#logo a {
    display:block;
    text-align:center;
}

#logo picture {
    display:block;
}

#logo img {
    display:block;
    width:auto;
    max-width:100%;
    height:auto;
    margin:0 auto;
}
.success {
	border-top: 2px solid #e3ffe0;
    border-right: 2px solid #e3ffe0;
    border-bottom: 2px solid #e3ffe0;
	border-left: 6px solid #00d700;
}
.warning {
	border-top: 2px solid #e9c9ff;
    border-right: 2px solid #e9c9ff;
    border-bottom: 2px solid #e9c9ff;
	border-left: 6px solid #7a4593;
}
.closebtn {
	margin-top: 5px;
	margin-right: 5px;
	color: var(--gris_fonce);
	font-weight: bold;
	float: right;
	font-size: 1.5rem;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
	z-index:99999;
}
.closebtn:hover {color: var(--gris_moyen);}
.alert {
	position: fixed;
	top:2%;
	left: 0;
	right: 0;
	width:50%;
	height:auto;
	background-color: var(--blanc);
	border-radius: 5px;
	-webkit-box-shadow:var(--shadowColor);
	box-shadow: var(--shadowColor);
	color:var(--gris_fonce);
	text-align:center;
	margin:2% auto;
	vertical-align: middle;
	padding:2px 5px;
	z-index:999;
	opacity: 1;
	transition: opacity 0.6s; /* 600ms to fade out */
}
.block_general {
    width:100%;
    margin:0 auto 70px;
    padding:0;
    box-sizing:border-box;
}
.block_general p{
    margin-bottom:10px;
}
/*.image_ombre {
    display:inline-block;
    position:relative;
    margin:0 5px 20px;
    transition:transform 0.3s ease;
}
.image_ombre img {
    width:auto;
    height:200px;
    display:block;
    margin:0;
    padding:0;
    transition:all 0.3s ease;
    box-shadow:0 5px 12px rgba(0,0,0,0.25);
}*/
.image_ombre {
	display:inline-block;
	position:relative;
	transition:transform 0.3s ease;
}
.image_ombre img {
	width:auto;
	display:block;
	margin:0;
	padding:0;
	transition:all 0.3s ease;
	box-shadow:0 5px 12px rgba(0,0,0,0.25);
}
.image_ombre:hover {
    transform:translateY(-5px);
}
.image_ombre:hover img {
    box-shadow:0 12px 25px rgba(0,0,0,0.35);
}
/*@media (max-width:479px) {
	.block_general br {
        display:none;
    }
	.block_general { 
		display:grid;
		grid-template-columns:repeat(3, 100px);
		justify-content:center;
		column-gap:10px;
		row-gap:20px;
	}
	.image_ombre {
		width:100px;
		margin:0;
		display:flex;
		justify-content:center;
		align-items:flex-start;
	}
	.image_ombre img {
		width:auto;
		max-width:100px;
		height:auto;
		max-height:none;
	}
}*/
.block_50 {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.block_general > .block_50:first-of-type::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -1px;
    width: 1px;
    height: calc(100% - 40px);
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gris_fonce) 10%,
        var(--gris_fonce) 90%,
        transparent
    );
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
    .block_general > .block_50:first-of-type::after {
        display: none;
		content: "";
        width: 0;
        height: 0;
    }
}
.block_gauche,.block_droit {
	display:inline-block;
	vertical-align:top;
}
.block_droit p {
	margin:0;
	padding:0;
}
.block_gauche,.block_droit p {
	margin-top:10px;
}
.ligne {
	display: grid;
    column-gap: 20px;
    margin-top: 20px;
	grid-template-columns: 1fr;
}
.ligne p {
    margin: 0;
}
.ligne > p:first-child {
    font-weight: bold;
	margin-left: 10px;
}
[id^="detail"] {
	display:none;
}
[id^="detail"] p {
	margin-top:10px;
}
.trois_col {
	display:inline-block;
	width:31%;
	text-align:center;
	margin:0 1%;
}
.img1_trois_col,.img2_trois_col {
	display:inline-block;
	vertical-align:top;
	text-align:center;
}
.img1_trois_col {
	margin:0 1%;
}
.img2_trois_col {
	margin-right:1%;
}
.paragraphe_trois_col {
	display:inline-block;
	text-align:left;
}
.paragraphe_trois_col p {
	padding:0;
	margin:0;
	vertical-align:top;
}
.button {
	font-style: italic;
	margin-top:10px;
	padding:0;
	color: var(--gris_fonce);
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
}
.button:hover {
	color: var(--gris_clair);
}
.margin_top { margin-top:10%;}
.margin_bottom { margin-bottom:15px;}
.trois_col .button, .img1_trois_col .button, .img2_trois_col .button{
	float: none;
	text-align:center;
	padding:0;
	margin-top:0;
}
.col_gauche {text-align:center;}
.ttpetit { font-size:0.8rem; }
.gros { font-size:1.2rem; }
.italique { font-style: italic; }
.marge_droite {margin-right:1%;}
.marge_gauche {margin-left:1%;}
.marge_gauche_ligne {margin-left:5%;}
.fl { float: left;margin-right:10px; }
.vcentre { vertical-align: middle; }
.centre { text-align: center; }
.bold { font-weight: bold; }
.droite { text-align: right; }
.clearfloat {
	clear:both;
	height:0;
	line-height: 0px;
}
.marge_gauche_paragraphe {margin:1% 0 1% 10%;}
#footer {
	height:30px;
	text-align: center;
}
#footer a {
	color: var(--gris_moyen);
	text-decoration: none;
}
#footer a:link, #footer a:visited {
	color:var(--gris_clair);
}
#footer a:hover, #footer a:focus{
	color:var(--gris_fonce);
}
.formulaire {
	width:98%;
	max-width:1600px;
	margin:2% auto;
	padding:0;
	text-align:center;
	z-index:100;
}
.formulaire input[type=text], .formulaire textarea{
  width:100%;
  padding:12px 1%;
  margin:0 auto;
  border: 1px solid var(--gris_fonce);
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  background-color:transparent;
  z-index:100;
  cursor: pointer;
}
.formulaire textarea{
	height:200px;
}
.formulaire input[type=submit] {
	background: var(--gris_fonce);
	color: var(--blanc);
	padding:12px;
	margin-top:20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	z-index:100;
}
.formulaire input[type=submit]:hover {
	background-color: var(--gris_clair);
	color: var(--gris_fonce);
}
.formulaire input[type=text]:hover, .formulaire textarea:hover,.formulaire input[type=text]:focus, .formulaire textarea:focus {
	outline:none;
	border: 1px solid var(--gris_fonce);
}
.formulaire .form_col_50,.formulaire .form_col_75,.formulaire .form_col_100 {
  display:inline-block;
  margin-bottom: 6px;
}
.formulaire .form_col_25 {display:inline;width: 24%;margin-right:1%;}
.formulaire .form_col_50 {width: 50%;}
.formulaire .form_col_75 {width: 75%;}
.formulaire .form_col_100 {width: 100%;}
.formulaire .form_col_25:after,.formulaire .form_col_50:after,.formulaire .form_col_75:after,.formulaire .form_col_100:after {
  content: "";
  display: table;
  clear: both;
}
.captcha{
	display:inline-block;
	padding:12px;
	vertical-align:middle;
	background:var(--gris_fonce);
	color:var(--blanc);
	border-radius: 4px;
}
/*debut lightbox*/
body.lb-disable-scrolling {
  overflow: hidden;
}
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: black;
  opacity: 0.8;
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  border: 4px solid white;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/lightbox/loading.gif) no-repeat;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/lightbox/prev.png) left 48% no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/lightbox/next.png) right 48% no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 4px;
  color: var(--gris_clair);
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}
.lb-data .lb-caption a {
  color: var(--gris_moyen);
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: var(--gris_clair);
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/lightbox/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}