:root
{
	--couleurRouge1: rgb(159,0,6);
	--couleurRouge1_light: rgba(159,0,6,0.1);
	--couleurTexte1: black;
	--couleurFond1: white;
}

@font-face {
    font-family: 'Verdana';
    font-weight: normal;
    font-style: normal;
    src: url('Fonts/verdana.ttf') format('truetype');
	font-display: swap;
}

html {
  height: 100%;
}
body
{
	width: 100%;
	height: 100%;
	 background-color: var(--couleurFond1);
	border: 0px solid transparent;
	margin: 0px;
	min-height: 100%;
	padding: 0px;
	font-size: 1.0em;
	font-family: 'arial';
	color: var(--couleurTexte1);
	font-weight:normal;
	text-align: center;
}
h1
{
	color: var(--couleurRouge1);
	font-family:Constantia,Georgia,'Nimbus Roman No9 L',serif;
	font-style:italic;
	font-weight:normal;
	font-size:1.875em;
	text-align: center;
	text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}
h2
{
	color:var(--couleurRouge1);
	font-family:Constantia,Georgia,'Nimbus Roman No9 L',serif;
	font-style:italic;
	font-weight:normal;
	font-size:1.375em;
	text-align: center;
	text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}
.TexteNormal
{
	color: var(--couleurTexte1);
	font-family:'arial';
	font-size:15px;
	text-align: justify;
	padding:10px;
}
.TexteImportant
{
	color: var(--couleurRouge1);
	font-family:Constantia,Georgia,'Nimbus Roman No9 L',serif;
	font-style:italic;
	font-weight:bold;
	font-size:16px;
	text-align: justify;
}
.FormulaireTABLE
{
	color: var(--couleurTexte1);
	font-family: 'arial';
	font-size: 15px;
	text-align: justify;
	border-width: 2px;
	border-style: solid;
	border-color: var(--couleurRouge1);
}
.FormulaireTD
{
	color: var(--couleurTexte1);
	font-family: 'arial';
	font-size: 15px;
	text-align: justify;
	border-width: 0px;
}
.FormulaireTD2
{
	color: var(--couleurTexte1);
	font-family: 'arial';
	font-size: 15px;
	text-align: center;
	border-width: 0px;
}
.FormulaireTD3
{
	color: var(--couleurTexte1);
	font-family: 'arial';
	font-size: 15px;
	text-align: center;
	border-width: 0px 2px 2px 2px;
	border-style: solid;
	border-color: var(--couleurRouge1);
}
.FormulaireTDPointillesHaut
{
	border-width: 1px 0px 0px 0px;
	border-color: var(--couleurRouge1);
	border-style: dashed;
}
.AsterisqueObligatoire
{
	color:rgb(179,0,0);
}
a:active, a:hover, a:visited, a:link
{
	color: var(--couleurRouge1);
	text-decoration:underline;
}

.image_cliquable
{
	border: none;
	cursor:pointer;
}

/**/

.container
{
  position: relative;
  border-color: var(--couleurRouge1);
  border-style: solid;
  border-width: 0px 0px 2px 0px;
  display: flex;
  padding: 10px 0px 10px 0px;
  background-color: var(--couleurFond1);
}

@media screen and (min-width: 980px)
{
	.container2
	{
/*	  margin-top: -125px;	//	Permet de rattraper le décalage de l'image au dessus sur affichage ordi*/
	}
}

.container2
{
  margin-top: 0px;
}

.degrade1
{
    background:linear-gradient(to bottom,var(--couleurFond1),var(--couleurFond1),var(--couleurFond1),var(--couleurFond1),rgb(220,220,220));
}

.center2 {
	position: relative;
	top: 0px;
	left: 0px;
	transform: translate(-52.6%, 0);
	width: 80%;
	min-width: 80%;
	max-width: 80%;
}

@media screen and (min-width: 800px)
{
	.center2
	{
		transform: translate(-18.6%, 0);
		width: 60%;
		min-width: 60%;
		max-width: 60%;
	}
}

.largeur100
{
	width: 100%;
}
.largeur100px
{
	width: 100px;
}
.largeur200px
{
	width: 200px;
}

.ul_standard li
{
	margin-left: 30px;
	margin-top: 5px;
}

.ul_accueil li
{
	margin-left: 10px;
	margin-top: 5px;
	list-style: none;
}
@media screen and (min-width: 980px)
{
	.ul_accueil li
	{
		margin-left: 30px;
}
}

.ul_gite
{
	list-style-position: outside;
	padding-left:30px;
	padding-right:30px;
}

.ul_gite li
{
	margin-top: 5px;
}

.container_important
{
	position: relative;
	border-color: var(--couleurRouge1);
	border-style: solid;
	border-width: 2px;
	display: inline-block;
	margin: 10px 0px;
	padding: 10px;
	padding-left: calc(40px + 20px) !important;
	background-color: var(--couleurFond1);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	min-height: calc(35px + 2*10px);
	text-align: justify;
}

.container_important::before
{
	content: "";
	display: inline-block;
	position: absolute;
	width:40px;
	height:35px;
	left:10px;
	top: calc((100% - 35px)/2);
	background-image: url("Images/Important.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(-0%,-50%);
}

.container_information
{
	position: relative;
	border-color: var(--couleurRouge1);
	border-style: solid;
	border-width: 2px;
	display: inline-block;
	margin: 10px 0px;
	padding: 10px;
	padding-left: calc(40px + 20px) !important;
	background-color: var(--couleurFond1);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	min-height: calc(40px + 2*10px);
	text-align: justify;
}

.container_information::before
{
	content: "";
	display: inline-block;
	position: absolute;
	width:40px;
	height:40px;
	left:10px;
	top: calc((100% - 40px)/2);
	background-image: url("Images/Information.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(-0%,-50%);
}

/**/

@font-face {
    font-family: 'charmregular';
    font-weight: normal;
    font-style: normal;
    src: /*url('Fonts/charm-regular-regular-webfont.woff2') format('woff2'),*/
         url('Fonts/charm-regular-regular-webfont.woff') format('woff'),
         url('Fonts/charm-regular-regular-webfont.ttf') format('truetype');
	font-display: swap;
}

.bandeau_langues
{
	width: 100%;
	float: left;
	display: inline-block;
}

.bandeau_titre
{
	width: 100%;
	float: left;
	border: 0px solid red;
	display: inline-block;
}

.bandeau_menu
{
	width: 100%;
	float: left;
	border: 0px solid red;
	display: inline-block;
	margin-top:0px;
}

@media screen and (min-width: 980px)
{
	.bandeau_titre
	{
		width: 40%;
	}
	.bandeau_menu
	{
		width: 60%;
		margin-top:40px;
	}
}

#wrap{
  min-height:100%;
  position: relative;
}

#main{
  position relative;
}

/**/

.nav2_parametres_1
{
	--bg_color1: var(--couleurFond1);
	--bg_color2: var(--couleurRouge1);
	--color1: var(--couleurRouge1);
	--color2: rgb(235,225,189);
	--border_color: var(--couleurRouge1);
}
.largeur150px
{
	width: 150px;
}
.nav2
{
    margin: 0 auto;
    z-index: 1000;
	float:right;
	background-color:transparent;
}
.nav2 ul li ul
{
	display: none;
	list-style-type: none;
	flex-flow: row wrap;
	background-color:tranparent;
}
.nav2 ul li
{
    flex: 1 1 auto;
    text-align: center;
}
.nav2 ul
{
	display: flex;
	flex-flow: row wrap;
}
.nav2 a
{
    display: block;
    text-decoration: none;
	color: var(--color1);
	padding: 0px 0px;
	background-color: var(--bg_color1);
}
.nav2 a:link, .nav2 a:active, .nav2 a:visited
{
	color: var(--color1);
}

.nav2 a:hover
{
	color:var(--color2);
	background-color: var(--bg_color2);
}

.nav2 > ul li:hover .nav2_sous
{
	display: flex;
	flex-flow: column wrap;
}

.nav2_deroulant
{
	display: inline-block;
	opacity: 1.0;
	transition-duration: 0.3s;
	border-width: 0px;
	border-style: solid;
	border-color: var(--border_color);
	color: var(--color1);
	text-align: center;
	text-decoration: none;
	font-style: normal;
	font-weight: normal;
	font-size: 1.0em;
	cursor: pointer;
	position: relative;
}

.nav2_deroulant > a
{
    -webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	border-width: 2px;
	border-style: solid;
	border-color: var(--border_color);
	text-align: left;
	padding-left: 40px;
}

.nav2_deroulant > a::before
{
	content: "";
	display: inline-block;
	position: absolute;
	width:1.2em;
	height:1.2em;
	left:10px;
	top:1px;
	background-image: url("Images/Globe4.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.nav2_deroulant > a:hover::before
{
	background-image: url("Images/Globe4i.png");
}
.nav2_deroulant > a::after
{
	content: '\25bc';
	font-size: 12px;
	color: var(--color1);
	width: 0.7em;
	height: 1.0em;
	position: absolute;
	top: calc((100% - 12px) / 2);
	right: 20px;
}

.nav2_deroulant > a:hover::after
{
	color:var(--color2);
}

.nav2_deroulant ul li
{
	border-width: 0px 1px 1px 1px;
	border-style: solid;
	border-color: var(--border_color);
	margin: 0px 10px;
	text-align: left;
}

.nav2_deroulant ul li a
{
	padding-left: 30px;
}

.nav2_sous
{
	display: none;
	position: absolute;
	width: 100%;
}

/*	Menu	*/

/*Reset CSS*/
*{
    margin: 0px;
    padding: 0px;
    font-family: Avenir, sans-serif;
}
nav{
    width: 100%;
    margin: 0 auto;
	background-color:rgb(235,225,189);
    top: 0px;
    z-index: 1000;
}
.conteneur-nav{
    width: 100%;
    z-index: 1000;
}
nav input[type=checkbox]{
    display: none;
}
nav label{
    display: inline-block;
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    color: rgb(235,225,189);
    background-color: var(--couleurRouge1);
    z-index: 1000;
	cursor: pointer;
}
nav ul{
    display: none;
    list-style-type: none;
    background-color: #AAA;
}
nav input[type=checkbox]:checked + ul{
    display: flex;
    flex-flow : column wrap;
}
nav ul li{
    flex: 1 1 auto;
    text-align: center;
}
nav > div > ul > li > a
{
    color: rgb(235,225,189);
	border: 1px solid var(--couleurRouge1);
	border-top-width: 0px;
}
nav > div > ul > li:first-child > a
{
	border-top-width: 1px;
}
nav a{
    display: block;
    text-decoration: none;
	color: var(--couleurRouge1);
	padding: 10px 0px;
}
nav a:hover{
	color:rgb(235,225,189);
	background-color: var(--couleurRouge1);
}

.sous{
    display: flex;
    flex-flow: column wrap;
    z-index: 1000;
}

.sous li{
    flex: 1 1 auto;
    text-align: left;
}
.sous a
{
    padding: 10px;
	background-color:rgb(235,225,189);
	border: 1px solid var(--couleurRouge1);
	border-top-width: 0px;
}
.sous a:hover
{
	background-color: var(--couleurRouge1);
}

@media screen and (min-width: 980px)
{
    .conteneur-nav{
        position: static;
    }
    nav label, nav input{
        display: none;
    }
    nav input[type=checkbox]:checked + ul, nav ul{
        display: flex;
        flex-flow: row wrap;
        background-color: var(--couleurFond1);
    }
    nav ul li{
        position: relative;
    }
    nav > div > ul > li > a
	{
		color: var(--couleurRouge1);
		border: 1px solid var(--couleurRouge1);
		border-right-width: 0px;
	}
    nav > div > ul > li:last-child > a
	{
		border-right-width: 1px;
	}
    nav a{
//        border-bottom: 2px solid transparent;
    }
/*    nav a:hover{
		color:rgb(235,225,189);
		background-color:rgb(52,1,1);
    }*/
    .sous
	{
        display: none;
        box-shadow: 0px 1px 2px #CCC;
        background-color: var(--couleurFond1);
        position: absolute;
        width: 100%;
    }
    nav > div > ul li:hover .sous
	{
        display: flex;
        flex-flow: column wrap;
    }
    .sous a
	{
		border-top: none;
        background-color: rgb(235,225,189);
		border: 1px solid var(--couleurRouge1);
		border-top-width: 0px;
    }
/*    .sous a:hover{
        border-bottom: none;
		background-color:rgb(52,1,1);
    }*/
    .deroulant > a::after
	{
  		content: '\25bc';
        font-size: 12px;
    }
}

nav a:active, nav a:visited, nav a:link
{
	color: var(--couleurRouge1);
	text-decoration:none;
}
nav a:hover
{
	color:rgb(235,225,189);
	text-decoration:none;
}

/*	Début de page	*/

.Nom
{
	color: var(--couleurRouge1);
	font-family:charmregular;
	font-size:2.0em;
	letter-spacing: 0em;
	text-align: center;
	padding-top: 6px;
	font-weight:bold;
	text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}
.Nom2
{
	color: var(--couleurRouge1);
	font-family:charmregular;
	font-size:1.375em;
	text-align: center;
	padding-bottom: 5px;
	font-weight:normal;
	text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}
@media screen and (min-width: 980px)
{
	.Nom
	{
		letter-spacing: .18em;
	}
}

/*	Fin de page	*/

.bandeauPP
{
	background-color: #000000;
	display: inline-block;
	width: 100%;
	margin:auto;
}
.partieCoordonnees
{
	padding: 10px;
	vertical-align: top;
	width: 28%;
	color: white;
}
.coordonnesligne1
{
	color:rgb(255,40,40);
}
.partieMentions
{
	padding: 10px;
	vertical-align: top;
	width: 28%;
	color: white;
}
.partieLogo1
{
	padding: 10px 10px 0px 10px;
	vertical-align: bottom;
	width: 20%;
}
.partieLogo2
{
	padding: 10px 10px 0px 10px;
	vertical-align: bottom;
	width: 20%;
}
@media only screen and (max-width: 800px)
{
	.partieCoordonnees,
	.partieMentions,
	.partieLogo1,
	.partieLogo2
	{
		width: 100%;
	}
}
@media only screen and (min-width: 800px) and (max-width: 1000px)
{
	.partieCoordonnees,
	.partieMentions,
	.partieLogo1,
	.partieLogo2
	{
		width: 49%;
	}
}
.lienPP
{
	color: white;
	text-decoration: none;
}
.lienPP:link, .lienPP:active, .lienPP:visited
{
	color: white;
	text-decoration: none;
}
.lienPP:hover
{
	color: white;
	text-decoration: underline;
}
