@charset "UTF-8";
/* CSS Document */

/*********** Balises générales ***********/
h1, h2, h3, h4, h5, h6, h7 {
	margin: 0px;
	padding: 0px;
	text-align: left;
}

h1 {
	display: none;
	font-size: 18px;
	font-weight: bold;
	color: #FF8727;
}

h2 {
	font-size: 18px;
	font-weight: bold;
	color: #FF8727;
}

h3 {
	font-size: 16px;
	font-weight: bold;
	color: #5B5958;
}

h4 { /* A virer */
	font-size: 18px;
	color: #FFFFFF;
}

h5 { /* A virer */
	font-size: 15px;
	font-weight: bold;
	color: #5B5958;
}

h6 { /* A virer */
	font-size: 25px;
	color: #CFCAC5;
}

h7 { /* A virer */
	font-size: 24px;
	color: #CFCAC5;
}

a:link, a:visited {
	color: #333;
	transition: color 0.4s ease; /* Temporisation de changement de couleur */
}

a:hover {
	color: #FF8727;
}

a.anchor { /* Correction bug decalage vertical Top ancres */
	display: block;
	position: relative;
	top: -120px;
	visibility: hidden;
}

ul {
	margin: 0px;
	padding: 10px;
}

li {
	list-style-type: none;
	position: relative;
	padding-left: 18px;
	margin-bottom: 2px; /* Réduit l’espace vertical */
	line-height: 1.2; /* Ajuste la hauteur */
}
li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #FF8727;
}
.no-arrow li,
li.no-arrow {
	position:initial;
	margin-left: 10px;
}
.no-arrow li::before,
li.no-arrow::before {
    content: none !important;
}

/*********** Balises dédiées aux formulaires et encarts ***********/
fieldset {
	background-color: #FAFAFA;
	margin: 0 auto; /* Pour le centrer dans la page */
	width: auto;
	display: inline-block;
	padding: 0.5em; /* Pour voir les limites du formulaire */
	border: 1px solid #FF8727;
	border-radius: 1em;
}

legend {
	color: #FF8727;
	font-weight: bold;
}

label {
	/* Afin de s'assurer que toutes les étiquettes aient la même dimension et soient alignées correctement */
	display: inline-block;
	width: auto;
}

input, textarea {
	/* Afin de s'assurer que tous les champs textuels utilisent la même police
	Par défaut, textarea utilise une police à espacement constant */
	font: 1em Verdana, Arial," sans-serif";
	padding: 10px;
	/* Pour harmoniser l'apparence des bordures des champs textuels */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/* Pour donner la même dimension à tous les champs textuels */
	background-color: #FFE0C7;
	color: #3c3c3c;
	border: 3px solid rgba(0,0,0,0);
	border-radius: 5px;
	margin-bottom: 10px;
	box-shadow: inset 0px 2px 2px rgba(0, 0, 0, .3);
}

input[type=checkbox], input[type=radio] {
	display: none;
}

input[type=checkbox] + label:before, input[type=radio] + label:before {
	display: inline-block;
	width: 15px;
	height: 15px;
	content: "";
	vertical-align: middle;
	margin-right: 8px;
	background-color: #FFE0C7;
	box-shadow: inset 0px 2px 2px rgba(0, 0, 0, .3);
	border: 1px solid #ccc;
	border-radius: 4px;
}

input[type=checkbox]:checked + label:before, input[type=radio]:checked + label:before {
	line-height: 15px;
	background-color: #FF8727;
	text-align: center;
	color: #FFFFFF;
	content: "\2714";
	text-shadow: 0px 0px 3px #eee;
}

textarea {
	/* Pour aligner correctement les champs multilignes et leurs étiquettes */
	vertical-align: top;

	/* Pour donner assez d'espace pour entrer du texte */
	height: 8em;

	/* Pour permettre aux utilisateurs de redimensionner un champ textuel horizontalement
	   Cela ne marche pas avec tous les navigateurs  */
	resize: vertical;
}

input:focus, textarea:focus {
	/* Afin de rehausser les éléments actifs */
	border-color: #000;
}

button[type=submit], button[type=button] {
	width: 140px;
	/* Cette marge représente approximativement le même espace
	que celui entre les étiquettes et les champs textuels */
	margin-left: .5em;
	border: 1px #FF8727 solid;
	border-radius: 5px;
	background-color: #FFFFFF;
	font-weight: bold;
	font-size: 15px;
	color: #000000;
	cursor: pointer;
	box-shadow: 1px 1px 1px #FF8727;
	margin: 10px;
	padding: 5px;
}

button[type=submit]:hover, button[type=button]:hover {
	box-shadow: inset 1px 1px 2px #FF8727;
}