<html>
<style type="text/CSS">

/* truc à la con que ça marche pas sans ########################################################*/
.entree {color:#000000;}

/* ###################### tableau de titre et menu ###############################*/

/* le tableau d'entête */

#tab_entete {
      width: 100%;
      height: 120px;
	border-collapse: collapse;
      overflow: hidden;
      background-color: none;
      position: fixed;
      top: 0;
      z-index: 3;
      }

/* l'espace en haut du corps de page */
#tab_espace {
      height: 120px;
      }

/* la cellule non active */

.nohilite {
	background: rgb(40, 40, 40);
	background: rgba(40, 40, 40, 0.8);
	font-family: 'Pompiere', cursive;
	font-size: 3em;
	font-weight: bold;
	text-align: center;
	color: white;
	width: 24%;
	}

/* une cellule active */

.hilite {
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.8);
	font-family: 'Pompiere', cursive;
	font-size: 3em;
	font-weight: bold;
	text-align: center;
	color: #0039e6;
	width: 24%;
	}

/* cellules vides à gauche et à droite */

.cellvide {
	background: rgb(40, 40, 40);
	background: rgba(40, 40, 40, 0.8);
	font-family: 'Pompiere', cursive;
	font-weight: bold;
	text-align: center;
	}

/* __________________________________ le tableau pour réseaux sociaux __________________________________ */

.tab_socmed {
            border-collapse: collapse;
            overflow: hidden;
            background-color: none;
            position: fixed;
            top: 122px;
      	z-index: 3;
      }

.lien_pg_fb {
	border-radius: 4px;
	font-family:'Arial';
	font-size: 1em;
	border-spacing : 2;
	background-color: #4267b2;
	border-style: none;
	color: #ffffff;
	padding: 5px 5px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	margin: 2px 2px;
	cursor: pointer;
	}

/* ###################### pages principales ############################### */

body, html {
	}

body#grosspage {
	background-color: #6f6f6f;
	margin: 0 0 0 0;
	}

#img_fond {
	position: fixed;
	z-index: -1;
	top: 0px;
	left: 0px;
	}

#img_logo{
	position: relative;
	z-index: 2;
	}

/* le tableau qui contient le contenu principal */
.contenu_principal {
	width: 90%;
      z-index: 3;
	}

/* tout tableau pour mise en forme de txt simple */
.txt_norm {
	border:0px;
	font-family:'Pompiere', cursive;
	text-align:justify;
	font-size:2em;
	vertical-align:top;
	color: #EEEEEE;
	}

.txt_simple {
	width:80%;
	}

.fond_texte {
	position: relative;
	z-index: 2;
	padding: 10;
	background: rgb(40, 40, 40);
	background: rgba(40, 40, 40, 0.8);
	margin-left: 5%;
	margin-right: 5%;
      }

/* les image de la bio */

.imgbio{
	float: left;
	margin: 0 0 10px 10px;
	padding: 15px;
	}

hr {
	display: block;
	color: #4d79ff;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	margin-left: auto;
	margin-right: auto;
	border-style: solid;
	border-width: 1px;
	}

/* ###################### les inputs de la page contact ###################### */

 input[type=text] {
    width: 100%;
    padding: 5px 5px;
    margin: 0px;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 2.5em;
	font-family:'Pompiere', cursive;
	background-color: #202020;
	border-style: solid;
	border-color: #999999;
	color: white;
	}

 textarea {
    width: 100%;
    height: 200px;
    padding: 5px 5px;
    margin: 0px;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 2.5em;
	font-family:'Pompiere', cursive;
	background-color: #202020;
	border-style: solid;
	border-color: #999999;
	color: white;
    resize: vertical;
	}

.seleclist {
    overflow: hidden;
    width: 100%;
    padding: 5px 5px;
    margin: 0px;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 2.5em;
	font-family:'Pompiere', cursive;
	background-color: #202020;
	border-style: solid;
	border-color: #999999;
	color: white;
	}

.button {
	background-color: #404080;
	border-style: solid;
	border-color: #a0a0bb;
	color: white;
	padding: 5px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
	font-family:'Pompiere', cursive;
    font-weight:bold;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 3px;

	}

/* ######################  flip ###############################*/

.coin {
	position: relative;
	z-index: 2;
	}
/* entire container, keeps perspective */
.flip-container {
	perspective: 1500px;
	z-index: 3;
}
	/* flip the pane when hovered */
	.flip-container:active .flipper, .flip-container.active .flipper {
		transform: rotateY(180deg);
		-webkit-transform: rotateY(180deg);
	}

.flip-container, .front, .back {
	width: 400px;
	height: 400px;
}

/* flip speed goes here */
.flipper {
	transition: 0.6s;
	-webkit-transition: 0.6s;
	transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

/* front pane, placed above back */
.front {
	z-index: 7;
	/* for firefox 31 */
	transform: rotateY(0deg);
	-webkit-transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
}


/* ###################### images pour galleries ###############################*/

.thumbn {
	margin: 1px;
	border: 1px solid #777777;
	max-width: 200px;
	max-height: 200px;
	}

.thumbn:hover {
	box-shadow: 0 0px 10px 2px rgba(128, 159, 255, 1), 0 0px 10px 2px rgba(128, 159, 255, 1);
	}

.thumbgall {
	display: block;
	width: 100%;
	}

.thumbgall:hover {
	box-shadow: 0 0px 10px 2px rgba(128, 159, 255, 1), 0 0px 10px 2px rgba(128, 159, 255, 1);
	}

.cache_repere {
   	border: 1px solid white;
   	color: white;
   	text-align: center;
   	display: none;
	}

#iframe_gall_montre_video {
      display: none;
	}

#tab_gall_montre_photo {
	background: rgb(40, 40, 40);
	background: rgba(40, 40, 40, 0.8);
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: auto;
    text-align:center;
      z-index: 5;
      display: none;
      }

#tab_gall_montre_video {
	background: rgb(40, 40, 40);
	background: rgba(40, 40, 40, 0.8);
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: auto;
    text-align:center;
      z-index: 5;
      display: none;
      }

#subtab_gall_montre_photo {
    width: 100%;
    height: 100%;
    margin-left:auto;
    margin-right:auto;
    background-position: center;
 	position: relative;
      align: center;
	background-size: contain;
	background-repeat: no-repeat;
       z-index: 6;
     display: none;
	}

#cell_gall_montre_photo {
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    align:center;
	}

#img_montre_photo {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    overflow: auto;
      display: none;
	}

#tab_navig_vid {
      width: 500px;
	height: 55px;
	border-collapse: collapse;
      overflow: hidden;
      position: fixed;
      bottom: 10;
      right: 15;
      z-index: 5;
	font-family: 'Pompiere', cursive;
	font-size: 23px;
	font-weight: bold;
	color: #ffffff;
      display: none;
      }

.conc_suiv {
      width: 80%;
      }

.espace_gall {
      width: 550px;
	}

.td_gall {
	background-color: #404080;
      padding: 10px;
      cursor: pointer;
	}

/* ###################### paragraphes ###############################*/

p {	
	border:0px;
	font-family:'Pompiere', cursive;
	font-size:3em;
	vertical-align:top;
	color: white;
	text-shadow: 1px 1px black;
	display: inline;
	}

li {
	list-style: circle;
	margin-top: 10px;
	border:0px;
	font-family:'Pompiere', cursive;
	font-size:3em;
	vertical-align:top;
	color: white;
	text-shadow: 1px 1px black;
	}

.txtbio {
	border:0px;
	font-family:'Pompiere', cursive;
	font-size:3em;
	vertical-align:top;
	color: white;
	text-shadow: 1px 1px black;
	display: inline-block;
	}

.citation {
	font-family:'Pompiere', cursive;
	text-align:left;
	font-size:3em;
	font-style: italic;
	vertical-align:top;
	color: #b3ccff;
	text-shadow: 1px 1px black;
	display: inline-block;
	}

.credits_photos {
	font-size:1em;
	display: block;
	}

h1 {
	color:#4d79ff;
	text-align:Left;
	font-weight:bold;
	font-size:3em;
	font-family:'Pompiere', cursive;
	text-shadow: 1px 1px black;
	display: block;
	}

h2 {
	color:#809fff;
	text-align:Left;
	font-weight:bold;
	font-size:2.5em;
	font-family:'Pompiere', cursive;
	text-shadow: 1px 1px black;
	display: block;
	}

h3 {
	color:#809fff;
	text-align:Left;
	font-weight:bold;
	font-size:1.8em;
	font-family:'Pompiere', cursive;
	text-shadow: 1px 1px black;
	display: block;
	}

 .txt_hilite{
 	color: #809fff;
	font-weight:bold;
	display: inline;
	}

a:link {
	text-decoration:none;
	color:#99ccff;
	display: inline;
	}

a:visited {
	text-decoration:none;
	color:#809fff;
	display: inline;
	}

a:hover {
	text-decoration:none;
	color:white;
	text-shadow: 0px 0px 5px #4d79ff, 0px 0px 5px #4d79ff;
	}

</style>
</html>