/**
 █████                         █████                                                       
░░███                         ░░███                                                        
 ░███████  ████████   ██████  ███████    ██████  ████████   ████████      ██████   ██████  
 ░███░░███░░███░░███ ███░░███░░░███░    ███░░███░░███░░███ ░░███░░███    ███░░███ ░░░░░███ 
 ░███ ░███ ░███ ░░░ ░███████   ░███    ░███ ░███ ░███ ░███  ░███ ░░░    ░███ ░░░   ███████ 
 ░███ ░███ ░███     ░███░░░    ░███ ███░███ ░███ ░███ ░███  ░███        ░███  ███ ███░░███ 
 ████████  █████    ░░██████   ░░█████ ░░██████  ████ █████ █████     ██░░██████ ░░████████
░░░░░░░░  ░░░░░      ░░░░░░     ░░░░░   ░░░░░░  ░░░░ ░░░░░ ░░░░░     ░░  ░░░░░░   ░░░░░░░░
**/
/**
 * Reinit 
 * @autor : Eric A. Meyer; 
 * http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
**/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:none;}table{border-collapse:collapse;border-spacing:0;}
/**
 * Balise html
 * @autor : Remi Breton;
 * @content : On regroupe toutes les balises html;
**/
html{
	background: #2f343f;
}
body{
	color: #cad5e0;
	font: 16px Consolas,Arial,Georgia,sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
a:link,a:visited {
	color: #2292ff;
}
a:hover {
	color: #6ab6ff;
}
a:active {
	color: #4d97a7;
}
header{
	background: #2e3a4d;
	box-shadow: 2px 0 3px 0 #1b222f; -webkit-box-shadow: 0 2px 3px 0 #1b222f;
}
footer{
	background: #2e3a4d;
	color: #dfdfe4;
	margin: auto 0 0 0;
	padding: 10px 0;
	box-shadow: inset 0 2px 3px 0 #1b222f; -webkit-box-shadow: inset 0 2px 3px 0 #1b222f;
}
h1{
	font-size: 32px;
	font-weight: bold;
	padding: 0 0 30px;
}
h2{
	font-size: 26px;
	font-weight: bold;
	padding: 0 0 20px;
}
h3{
	font-size: 20px;
	font-weight: bold;
	padding: 0 0 10px;
}
h4{
	font-size: 16px;
	font-weight: bold;
	padding: 0 0 10px;
}
p{
	padding: 0 0 30px 0;
	text-align: justify;
}
strong{
	font-weight: 700;
}
blink{
  animation: blink 1.5s step-end infinite; -webkit-animation: blink 1.5s step-end infinite;
}
@-webkit-keyframes blink {
  67% { opacity: 0 }
}
@keyframes blink {
  67% { opacity: 0 }
}
ul.dashed > li:before {
  content: "-";
  font-weight: bold;
	position: absolute;
	margin: 0 0 0 -20px;
}
ul.dashed > li {
  margin:  5px 0 0 20px;
}
ul.tabbed {
	margin: 0 0 0 15px;
}
sup {
  vertical-align: super;
  font-size: smaller;
	padding: 0 0 0 1px;
}
/**
 * Générale
 * @autor : Remi Breton;
 * @content :id et classe général;
**/
.hidden{
	display: none;
}
.clear{
	clear: both;
}
.left{
	float: left;
}
.right{
	float: right;
}
.padded{
	padding: 0 0 30px 0;
}
.paddedSmall{
	padding: 0 0 5px 0;
}
.notPadded{
	padding: 0;
}
.maxWidthSpan{
	max-width: 540px;
	display: block;
	margin: 0 auto;
}
.wrapper{
	background: #f2f2f2;
}
.centerContent{
	margin: 0 auto;
	max-width: 960px;
	min-width: 300px;
}
.content{
	padding: 70px 15px;
}
.button {
    padding: 10px;
    border: 1px outset #f3f;
    border-radius: 3px;
    color: #333;
    background-color: #fff;
    text-decoration: none;
}
.bigIcon{
	font-size: 120px;
}
.imgMiddle{
	text-align: center;
	margin: 20px 0;
}
.imgRound{
	border-radius: 100%; -webkit-border-radius: 100%;
	box-shadow: 0 0 5px #1b222f; -webkit-box-shadow: 0 0 5px #1b222f;
	height: 300px;
	margin: 0 30px 20px 0;
}
.imgSmall{
	width: 240px;
}
.endSection{
	margin: 50px 0;
	text-align: center;
}
.endSection .material-symbols-rounded{
	font-size: 45px;
}
.center{
	text-align: center;
}
.oneCol{
	padding: 20px 0 0 0;
}
.twoCol{
	padding: 20px 0 0 0;
	width: 49%;
}
.twoUlCol{
	columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
.progBar{
	width: 70%;
	height: 15px;
	margin: 2px 0 0 0;
	float: right;
	background: #a4a4a4;
	border-radius: 2px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
}
.pBSmall{
	width: 40%;
}
.inProgBar{
	height: 15px;
	text-align: right;
	margin: 0 10px 0 0;
	border-radius: 2px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	color: #010;
}
.progBar1{
	width: 25%;
	color: #df4c4c;
	background-color: #df4c4c;
}
.progBar2{
	width: 50%;
	color: #d57355;
	background-color: #d57355;
}
.progBar3{
	width: 75%;
	color: #d5c155;
	background-color: #d5c155;
}
.progBar4{
	width: 100%;
	color: #55d563;
	background-color: #55d563;
}
/**
 * Logo bretonr
 * @autor : Remi Breton;
 * @content : les css pour générer le logo;
**/
.logo{
	font: normal 30px 'Courier New', 'Lucida Console', monospace;
	padding: 5px 0 0 0
}
.logo a:link, .logo a:visited{
	text-decoration: none;
	color: #cad5e0;
}
.logo a:hover{
	color: #6ab6ff;
}
.logo a:active{
	color: #4d97a7;
}
.lSignature{
	margin: 3px 0 0 9px;
}
.lTinyLetterSpacing{
	letter-spacing: -1px;
}
.lItalic{
	font-style: italic;
	padding: 0 0 0 4px;
}
.txtCursor{
	font-size: 17px;
}
.lWrapper{
	float: left;
	width: 32px;
}
.lDarkWhite{
	background: #828998;
	float: left;
	width: 15px;
	height: 15px;
	box-shadow: inset 1px 1px 2px 0 #0a0b0d; -webkit-box-shadow: inset 1px 1px 2px 0 #0a0b0d;
}
.lDarkBlue{
	background: #304567;
	float: right;
	margin: 2px 0 0 0;
	width: 15px;
	height: 15px;
	box-shadow: inset 1px 1px 2px 0 #0a0b0d; -webkit-box-shadow: inset 1px 1px 2px 0 #0a0b0d;
}
.lLightBlue{
	background: #508b98;
	clear: both;
	margin: 0 0 0 2px;
	width: 15px;
	height: 15px;
	box-shadow: inset 1px 1px 2px 0 #0a0b0d; -webkit-box-shadow: inset 1px 1px 2px 0 #0a0b0d;
}
/**
 * Navigation
 * @autor : Remi Breton;
 * @content : les css pour la navigation;
**/
#stickyNav{
	width: 100vw;
	position: fixed;
	z-index: 100;
}
#spacerNav{
	height: 68px;
	width: 100%;
}
.mainNavContener{
	padding: 0 5px 10px 5px;
}
.mainNav{
	padding: 30px 15px 0 0;
}
.mainNav a{
	font-size: 18px;
	text-decoration: none;
}
.mainNav ul li{
	margin: 0 0 0 20px;
	float: left;
}
.mainNav ul li+li{
	padding: 0 0 0 10px;
}
.mainNav ul li:first-child:before{
  content: none;
	position: absolute;
	margin: 0;
}
.mainNav ul li:first-child{
	margin: 0;
}
.mainNav ul li.active a {
  color: #88baf0;
  font-weight: bold;
}
.statusChecker, .hamLine{
	display: none;
}
.txtCenter{
	text-align: center;
}
.txtCenter p{
	text-align: center;
}
.smallTxt{
	font-size: 10px;
}
/**
 * Easter Egg
 * @autor : Remi Breton;
 * @content : les css pour ouvrir le site et voir le code html;
**/
.easterEgg{
	text-decoration: none;
	height: 30px;
	display: block;
	width: 100%;
	position: absolute;
	top: 68px;
}
.easterEgg:active ~.openCode{
	max-height: 305px;
  transition: max-height 0.50s ease-in-out;
}
.openCode{
	background: #dadfe6;
	color: #2f343f;
	font-size: 13px;
	line-height: 15px;
	box-shadow: 2px 0 3px 0 #1b222f inset; -webkit-box-shadow: 2px 0 3px 0 #1b222f inset;
	white-space: nowrap;
	overflow: hidden;
	max-height: 0px;
	transition: max-height 0.50s ease-in-out;
}
.openCode ol {
	list-style: none;
	counter-reset: li;
	margin: 10px 30px;
}
.openCode ol li::before {
	content: counter(li); 
	color: #b3b3b3;
	display: inline-block; 
	width: 1em; 
	margin: 0 1em 0 0; 
	text-align: right; 
	direction: rtl
}
.openCode ol li {counter-increment: li}
.blackGreen{
	color: #0e7364;
}
.green{
	color: #049159;
}
.red{
	color: #ab1f3d;
}
.purple{
	color: #a24ca8;
}
/**
 * Form
 * @autor : Remi Breton;
 * @content : les css pour les formulaires;
**/
.formArea{
  margin: 25px auto;
}
.formArea textarea {
	font: 15px/25px Consolas,Arial,Georgia,sans-serif;
	width: 100%;
  height: 128px;
  line-height: 150%;
  resize:vertical;
  box-sizing: border-box;
  padding: 10px;
}
.formArea .errorF + input{
	border: 2px solid #ab1f3d;
}
.formArea .errorF + textarea{
	border: 2px solid #ab1f3d;
}
.formArea input {
	font: 15px/25px Consolas,Arial,Georgia,sans-serif;
  width:100%;
  box-sizing: border-box;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 1px 1px 2px rgb(130, 189, 201) inset;
  margin: 3px 0 10px;
}
.formArea [type="submit"] {
  width: 50%;
  background: #304567;
  border-radius: 3px;
  box-shadow: 1px 1px 2px rgb(74, 89, 148) inset;
  border: 0;
  color: #cad5e0;
  cursor: pointer;
  font-size: 20px;
  padding: 10px 0;
  margin: 20px 0;
}
.formArea [type="submit"]:hover { 
	background: #508b98;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.950) inset;
}
.formArea [type="submit"]:disabled{
  background-color: #828998;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.950) inset;
}