@charset "utf-8";
/* css document*/

/*____________________________________________________________________*/
/*----------------------------- Principal ----------------------------*/

body {
	background: #f2f2f2;
	font-family: Ubuntu;
	margin: 0px;
}

#contenerPrincipal {
	display: block;
	position: absolute;
	width: 90%;
	top: 0px;
	left: 5%;
	background: #fff;
	margin: 0px auto;
	-webkit-box-shadow: 0px 0px 10px #cacaca;
	box-shadow: 0px 0px 10px #cacaca;
}

#contenerPrincipal > * {
	width: 1280px;
	max-width: 80%;
	margin: 0px auto;
}

#contenerPrincipal article {
	margin: 15px auto;
}

#contenerPrincipal article a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all ease-in-out 250ms;
	transition: all ease-in-out 250ms;
}

#contenerPrincipal article a:hover {
	color: #206aa4;
}

h2 {
	color: #206aa4;
	font-size: 20px;
	font-weight: 700;
}

ul {
	padding: 0px;
}

li {
	list-style: none;
}

/*--------------------------------------------------------------------*/

/*____________________________________________________________________*/
/*------------------------------- Header -----------------------------*/

header {
	color: #206aa4;
	font-size: 100px;
}

header h1 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 0px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

header a {
	color: #206aa4;
	text-decoration: none;
}

header img {
	display: inline-block;
}

/*--------------------------------------------------------------------*/

/*____________________________________________________________________*/
/*----------------------------- Navigation ---------------------------*/

#contenerNav {
	width: 100%;
	max-width: 100%;
	background: #206aa4;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

#contenerNav > * {
	width: 1280px;
	max-width: 80%;
	padding: 10px 0px;
	margin: 0px auto;
}

#contenerNav a {
	text-decoration: none;
	color: #fff;
}

#navPrincipale {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#contenerNav li {
	width: 100%;
	cursor: pointer;
	border-right: 2px solid #fff;
}

#contenerNav li:last-child {
	border-right: 0px solid #fff;
}

.contenerNavSecondaire {
	position: absolute;
	width: 100%;
	left: 0px;
	background: #206aa4;
	overflow: hidden;
}

.navSecondaire {
	display: none;
	position: relative;
	width: 1280px;
	max-width: 80%;
	padding: 15px 0px 10px;
	margin: 0px auto;
	background: #206aa4;
	z-index: 2;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

#ongletNavPrincipale0:hover #navSecMembres {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#ongletNavPrincipale2:hover #navSecJeux {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.navSecondaire li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	border-right: 2px solid #fff;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navSecondaire li:last-child {
	border-right: 0px solid #fff;
}

/*--------------------------------------------------------------------*/

/*____________________________________________________________________*/
/*----------------------------- Diaporama ----------------------------*/

@-webkit-keyframes arrive {
	from {left: 100%;}
	to {left: 0%;}
}

@keyframes arrive {
	from {left: 100%;}
	to {left: 0%;}
}

@-webkit-keyframes depart {
	from {left: 0%;}
	to {left: -100%;}
}

@keyframes depart {
	from {left: 0%;}
	to {left: -100%;}
}

@-webkit-keyframes arriveInverse {
	from {left: -100%;}
	to {left: 0%;}
}

@keyframes arriveInverse {
	from {left: -100%;}
	to {left: 0%;}
}

@-webkit-keyframes departInverse {
	from {left: 0%;}
	to {left: 100%;}
}

@keyframes departInverse {
	from {left: 0%;}
	to {left: 100%;}
}

#contenerDiaporama {
	display: block;
	position: relative;
	overflow: hidden;
}

#contenerDiaporama img {
	display: inline-block;
	position: absolute;
	max-width: 100%;
}

.arrive {
	-webkit-animation-name: arrive;
	animation-name: arrive;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.depart {
	-webkit-animation-name: depart;
	animation-name: depart;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.arriveInverse {
	-webkit-animation-name: arriveInverse;
	animation-name: arriveInverse;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.departInverse {
	-webkit-animation-name: departInverse;
	animation-name: departInverse;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.flecheDirection {
	position: absolute;
	top: 45%;
	padding: 20px;
	background: rgba(32, 106, 164, 0.7);
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
}

#flecheGauche {
	left: 0px;
	border-radius: 0px 7px 7px 0px;
}

#flecheDroite {
	right: 0px;
	border-radius: 7px 0px 0px 7px;
}

#navDiapo {
	position: absolute;
	bottom: 10px;
	right: 10px;
}

#navDiapo li {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 10px;
	background: rgba(255, 255, 255, 0.7);
	border: 2px solid #206aa4;
	border-radius: 15px;
	cursor: pointer;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all ease-in-out 250ms;
	transition: all ease-in-out 250ms;
}

#navDiapo li:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-box-shadow: 0px 0px 10px #f2f2f2;
	box-shadow: 0px 0px 10px #f2f2f2;
}

/*--------------------------------------------------------------------*/

/*____________________________________________________________________*/
/*------------------------------- Footer -----------------------------*/
footer {
	border-top: 1px solid #206aa4;
}

footer > *, footer nav > *, footer nav ul > *, footer nav ul li > * {
	padding: 0px;
	vertical-align: top;
	white-space: nowrap;
	-webkit-transition: all ease-in-out 250ms;
	transition: all ease-in-out 250ms;
}

#navMembresFooter, #navJeuxFooter {
	display: inline-block;
	width: 50%;
}

#navMembresFooter li, #navJeuxFooter li {
	border-bottom: 2px solid #fff;
	overflow: hidden;
}

#navMembresFooter li:after, #navJeuxFooter li:after {
	content: '';
	display: inline-block;
	position: relative;
	float: right;
	height: 16px;
	width: 0px;
	border: 1px solid #000;
	-webkit-box-shadow: 0px 0px 0px #fff;
	box-shadow: 0px 0px 0px #fff;
	-webkit-transition: all ease-in-out 250ms;
	transition: all ease-in-out 250ms;
}

#navMembresFooter li:hover, #navJeuxFooter li:hover {
	border-bottom: 2px solid #206aa4;
}

#navMembresFooter a, #navJeuxFooter a {
	text-decoration: none;
	color: #000;
}

#navMembresFooter li:hover:after, #navJeuxFooter li:hover:after {
	border: 1px solid #206aa4;
	-webkit-box-shadow:
	-10px 0px 0px rgba(32, 106, 164, 1),
	-20px 0px 1px rgba(32, 106, 164, 1),
	-30px 0px 2px rgba(32, 106, 164, 1),
	-40px 0px 3px rgba(32, 106, 164, 1),
	-50px 0px 4px rgba(32, 106, 164, 1),
	-60px 0px 5px rgba(32, 106, 164, 0.9),
	-70px 0px 6px rgba(32, 106, 164, 0.8),
	-80px 0px 7px rgba(32, 106, 164, 0.7),
	-90px 0px 8px rgba(32, 106, 164, 0.6),
	-100px 0px 9px rgba(32, 106, 164, 0.5),
	-110px 0px 10px rgba(32, 106, 164, 0.4),
	-120px 0px 11px rgba(32, 106, 164, 0.3),
	-130px 0px 12px rgba(32, 106, 164, 0.2),
	-140px 0px 13px rgba(32, 106, 164, 0.1),
	-150px 0px 14px rgba(32, 106, 164, 0.0);
	box-shadow:
	-10px 0px 0px rgba(32, 106, 164, 1),
	-20px 0px 1px rgba(32, 106, 164, 1),
	-30px 0px 2px rgba(32, 106, 164, 1),
	-40px 0px 3px rgba(32, 106, 164, 1),
	-50px 0px 4px rgba(32, 106, 164, 1),
	-60px 0px 5px rgba(32, 106, 164, 0.9),
	-70px 0px 6px rgba(32, 106, 164, 0.8),
	-80px 0px 7px rgba(32, 106, 164, 0.7),
	-90px 0px 8px rgba(32, 106, 164, 0.6),
	-100px 0px 9px rgba(32, 106, 164, 0.5),
	-110px 0px 10px rgba(32, 106, 164, 0.4),
	-120px 0px 11px rgba(32, 106, 164, 0.3),
	-130px 0px 12px rgba(32, 106, 164, 0.2),
	-140px 0px 13px rgba(32, 106, 164, 0.1),
	-150px 0px 14px rgba(32, 106, 164, 0.0);
}

#navMembresFooter li:hover a, #navJeuxFooter li:hover a {
	color: #206aa4;
}

/*--------------------------------------------------------------------*/

/*____________________________________________________________________*/
/*----------------------------- Formulaire ---------------------------*/

form {
	display: block;
	width: 100%;
}

form legend {
	display: block;
	color: #206aa4;
}

form fieldset {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	width: 100%;
	border-width: 0px;
}

form label {
	padding: 5px;
	margin: 10px auto;
	border: 1px solid #cacaca;
	-webkit-box-shadow: 0px 0px 0px #fff;
	box-shadow: 0px 0px 0px #fff;
	-webkit-transition: all ease-in-out 250ms;
	transition: all ease-in-out 250ms;
}

form textarea {
	width: 100%;
}

form label:hover {
	border: 1px solid #206aa4;
	-webkit-box-shadow: 0px 0px 5px #cacaca;
	box-shadow: 0px 0px 5px #cacaca;
}

form label input {
	outline: none;
	border: none;
	padding: 0px;
	text-align: right;
	margin: 0px 10px;
}

input::-webkit-input-placeholder {
	color: #206aa4;
	opacity: 0.7;
}

input:-ms-input-placeholder {
	color: #206aa4;
	opacity: 0.7;
}

input::placeholder {
	color: #206aa4;
	opacity: 0.7;
}

/*--------------------------------------------------------------------*/

/*____________________________________________________________________*/
/*--------------------------------- img ------------------------------*/
.iconeMembre, .iconeJeux {
	width: 100%;
	max-width: 150px;
	height: auto;
}

.imgJeux {
	width: 1280px;
	max-width: 100%;
	height: auto;
	margin: 0px auto;
}

/*--------------------------------------------------------------------*/

/*____________________________________________________________________*/
/*-------------------------- Contener membre -------------------------*/

#contenerMembre .iconeMembre {
	float: right;
}

/*--------------------------------------------------------------------*/

/*____________________________________________________________________*/
/*--------------------------- Contener jeux --------------------------*/

#contenerJeux .iconeJeux {
	float: right;
}

#contenerImgJeux {
	text-align: center;
	margin-top: 150px;
}