@import url(https://fonts.googleapis.com/css?family=Vollkorn:400,700);
* 
{ 
	margin:0;
	padding:0; 
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    -webkit-transition: color 0.6s ease 0s, background 0.6s ease 0s;
    -moz-transition: color 0.6s ease 0s, background 0.6s ease 0s;
    -o-transition: color 0.6s ease 0s, background 0.6s ease 0s;
    transition: color 0.6s ease 0s, background 0.6s ease 0s;
}
body
{
	font-family: 'Vollkorn', Verdana, Geneva, Arial, sans-serif;
	font-size:14px;
	font-weight:200;
	color:#202225;
	letter-spacing:1px;
	background:#fff;
    -webkit-text-size-adjust: none; /* Modif pour IPHONE / IPAD  */
	-webkit-overflow-scrolling: touch; /* Modif pour IPHONE / IPAD */
	overflow:hidden;
}
::selection 
{
  background: #42576a;
  color: white;
}
::-moz-selection 
{
  background: #42576a;
  color: white;
}
#loadContenu
{
	overflow:hidden;
	width:100%;
	height:100%;
    position:fixed;
    z-index:4;
	left: 0;
	top:0;
	background:#000;
	color:#fff;
}
#loadContenu > .pourcentage
{        
	left: 0;
    margin-top: -25px;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 50px;
	text-align:center;
	font-size:40px;
}
.noscript div
{
    border: 1px solid #555555;
    color: #FFFFFF;
    font-size: 20px;
    left: 50%;
    margin-left: -165px;
    margin-top: -57.5px;
    padding: 30px;
    position: fixed;
    text-align: center;
    top: 50%;
	height:115px;
    width: 330px;
    z-index: 4;
    background:#333;
}
.anim
{
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}
.noAnim
{
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}
.animOpacity
{
	cursor:pointer;
	opacity:1;
	filter:alpha(opacity=100);
    -webkit-transition: opacity 0.6s ease 0s, filter 0.6s ease 0s;
    -moz-transition: opacity 0.6s ease 0s, filter 0.6s ease 0s;
    -o-transition: opacity 0.6s ease 0s, filter 0.6s ease 0s;
    transition: opacity 0.6s ease 0s, filter 0.6s ease 0s;
}
.animOpacity:hover,.animOpacity.active
{
	opacity:0.6;
	filter:alpha(opacity=60);
}
.animRotation
{
	display:inline-block;
	-webkit-perspective: 300px;
	-moz-perspective: 300px;
	-ms-perspective: 300px;
	-o-perspective: 300px;
	perspective: 300px;
}
.animRotation img
{
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}
.animRotation:hover img
{
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.animUp
{
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}
.animUp:hover
{
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}
.animBorder
{
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}
.animBorder:hover
{
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.verticalCenter
{
	position:absolute;
	top:50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	max-height:100%;
	overflow-y: auto;
    overflow-x: hidden;
}

/*
-----------------------
   Attribut general 
-----------------------
*/

a
{
    border:none;
	text-decoration: none;
	outline:none;
    color:#6b6a6b;
}
a:hover
{
    border:none;
	text-decoration: none;
	outline:none;
    color:#202225;
}
img
{
	border:none;
}
ul
{
	list-style:none;
}
h1,h2,h3
{
	font-weight:500;
}
h1
{
	font-size: 30px;
}
h2
{
	font-size: 25px;
}
h3
{
	font-size: 20px;
}

/*
-----------------------
    BOUTTON, CHAMP
-----------------------
*/

/* Cette partie corrige l'alignement entre input et select selon la width choisi */
input,select,textarea
{
	width:200px;   
}
textarea 
{
    resize: none;
}
input[type="text"], input[type="number"], input[type="password"], textarea, input[type="file"]
{
	border:none; 
	color: #fff;
	padding:10px;
	background:#1b1b1b;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	outline: none;
}
input[type="text"]:focus, input[type="number"]:focus, input[type="password"]:focus, textarea:focus, input[type="file"]:focus
{
	background:#333;
	color:#fff;
}
input[type="image"]
{
	width:auto;
}
button, input[type="submit"]
{
	cursor:pointer;
	background:none; 
	border:none;
	padding:10px;
	color: #fff;
}
button:hover, input[type="submit"]:hover
{
	color: #bbb;
}


/*
-----------------------
   conteneur & article
-----------------------
*/

#page
{
	position:absolute;
	width:100%;
	min-height:100%;
}
#page.majPages
{
	transform-style:preserve-3d;
	perspective:2000px;
}
.codehtml,.oldCodehtml
{
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:65px;
	background:#212224;
	overflow:auto;
	overflow-x:hidden;
}
.oldCodehtml.majPages
{
	z-index:1;
}
.codehtml.majPages,.oldCodehtml.majPages
{
	backface-visibility:hidden;
}
.loadhtml
{
	display:none;	
}
article
{
	background:#fff;	
}

/*
-----------------------
    COLONE
-----------------------
*/

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 , .col-12 , .col-custom
{
	display:inline-block;
	vertical-align: top;
	padding:0 15px;
	text-align:center;
}
.col-12 
{
	width: 100%;
}
.col-11 
{
	width: 91.66666667%;
}
.col-10 
{
	width: 83.33333333%;
}
.col-9 
{
	width: 75%;
}
.col-8 
{
	width: 66.66666667%;
}
.col-7 
{
	width: 58.33333333%;
}
.col-6 
{
	width: 50%;
}
.col-5 
{
	width: 41.66666667%;
}
.col-4 
{
	width: 33.33333333%;
}
.col-3 
{
	width: 25%;
}
.col-2 
{
	width: 16.66666667%;
}
.col-1 
{
	width: 8.33333333%;
}

/*
-----------------------
    mentions légales
-----------------------
*/

.btnMentionsLegales {
    background: url("/pages/images/mentions_legales.png");
    bottom: 0;
    cursor: pointer;
    height: 32px;
    position: fixed;
    right: 0;
    width: 33px;
    z-index: 4;
}

/*
-----------------------
    loader
-----------------------
*/

#loaderPage
{
	width:100%;
	display:block;
	padding:0;
	height:5px;
	margin:0;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	position:fixed;
	top:0;
	left:0;
	box-shadow:none;
	-moz-box-shadow:none; 
	-webkit-box-shadow:none; 
	background:none;
	z-index:3;
}
#loaderPage .progress
{
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

/*
-----------------------
    POPUP
-----------------------
*/

#popUp
{
	background:#eee;
	background:rgba(0,0,0,0.5);
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	display:none; 
	z-index: 5;
}
#popUp #popUpConteneur
{
	position:absolute;
	height:90%;
	width:90%;
	left:50%;
	top:50%;
	padding:30px;
	overflow:auto;
	background:#fff;
	color:#000;
	box-shadow: 0 0 6px #999;
	-moz-box-shadow: 0 0 6px #999; 
	-webkit-box-shadow: 0 0 6px #999; 
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
#popUp #popUpConteneur > .fermerPopup
{
    background-image: url("/pages/images/croix_small.png");
	background-position:0 0;
    cursor: pointer;
    position: absolute;
    right: 7px;
    top: 7px;
    width: 20px;
    height: 20px;
}
#popUp #popUpConteneur > .fermerPopup:hover
{
	background-position:0 -26px;
}

/*
-----------------------
    backToTop
-----------------------
*/

.backToTop
{
	position:fixed;
	right:-50px;
	bottom:50px;
	width:50px;
	height:50px;
	cursor:pointer;
	text-align:center;
	background:#000;
	background:rgba(0,0,0,0.5);
	overflow:hidden;
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}
.backToTop.active
{
	right:0;
}
.backToTop:hover
{
	background:rgba(0,0,0,0.8);
	height:80px;
}
.backToTop > div
{
	color:#eee;
	font-size:30px;
	line-height:50px;
	text-align:center;
}
.backToTop:hover > div
{
	color:#fff;
}

/*
-----------------------
    LOADER
-----------------------
*/

.loader
{
	display:none;
	position:fixed;
	top:50%;
	height: 40px;
	margin-top:-20px;
	left:50%;
	width: 40px;
	margin-left:-20px;
	z-index: 1;
}
.loader.active
{
	display:block;
}
.double-bounce1, .double-bounce2
{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #333;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: bounce 2.0s infinite ease-in-out;
	animation: bounce 2.0s infinite ease-in-out;
}
.double-bounce2
{
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes bounce {
	0%, 100% { 
	transform: scale(0.0);
	-webkit-transform: scale(0.0);
	} 50% { 
	transform: scale(1.0);
	-webkit-transform: scale(1.0);
	}
}