
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
/* Fin normalize */

/* ------------------------------------------
  GLOBAL STYLES
--------------------------------------------- */
html {
	height: 100%;
	margin:0;
	padding:0
}
/* Switching box model for all elements */
* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	color: #525252;
	background: #efefef;
	font-family: 'Roboto Condensed', sans-serif;
	font-size:16px;
}



a:active,
a:hover {
	outline: 0;
}

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }

.largeur-site {
	width:1150px;
	margin: 0 auto;
	clear:both;
}



/*****LOADER*****/

.load_page {
    width: 100%;
    height: 100%;
    z-index: 200;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
}
.loader {
    width: 100px;
    height: 100px;
    background: url(../img/loader.gif) no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
    border: none;
}

/* ------------------------------------------
  FIXED HEADER
--------------------------------------------- */

header {
	background-color: rgba(255, 255, 255, 1);
	position: fixed;
	z-index: 30;
	width: 100%;
	min-height: 80px;
	left: 0;
	top: 0;
	text-align: center;-webkit-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.6);
-moz-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.6);
box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.6);
}

.logo {
	padding: 10px 0 5px 20px;
	float: left;
}
#langue {
	position: absolute;
	top:20px;
	right:30px;
	color:#104493;
}
#langue a {
	color:#6E6E6E;
	text-decoration: none;
}
#langue a:hover {
	color:#104493;
}
#espaceclient {
	position: absolute;
	top:20px;
	right:115px;
}
#espaceclient a {
	color:#104493;
	text-decoration: none;
}
#espaceclient a:hover {
	text-decoration: underline;
}

/* ------------------------------------------
  NAVIGATION STYLES
--------------------------------------------- */
.menu-principal {
	float:right;
	margin: 70px 20px 0 0;
}

/* ------------------------------------------
  BOUTONS
--------------------------------------------- */

input[type="submit"],
input[type="button"] {
	background-color: #104493;
    border:1px solid #104493;
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #FFFFFF;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #ffffff;
	color: #104493;
	border:1px solid #104493;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
input[type="submit"]:focus,
input[type="button"]:focus {
	background-color: #f1f1f1;
	color: #104493;
	border:1px solid #104493;
}
input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner {
  border: none;
}


.bt1,
.bt2 {
	display:inline-block;
}
.bt1 a {	
	display:block;
	color:#fff;
	text-decoration: none;
	border:1px solid #ffed00;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.bt1 a:hover {
	background-color: #ffed00;
	color:#104493;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.bt2 a {	
	display:block;
	color:#104493;
	text-decoration: none;
	border:1px solid #104493;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.bt2 a:hover {
	background-color: #104493;
	color:#fff;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.button {
	display:inline-block;
	margin: 1em;
	padding: 1em 2em;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.button:focus {
	outline: none;
}
.button > span {
	vertical-align: middle;
}
.button--border-thin {
	border: 1px solid;
}



/* Rayen */
.button--rayen {
	overflow: hidden;
	padding: 0;
	width: 200px;
}
.button--rayen.button--inverted {
	color: #fff;
	border-color:  #ffed00;
}
.button--rayen::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffed00;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.button--rayen.button--inverted::before {
	background: #ffed00;
	color: #104493;
}
.button--rayen > span {
	display: block;
}
.button--rayen::before,
.button--rayen > span {
	padding: 20px 0;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--rayen:hover::before {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.button--rayen:hover > span {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}


.bthome a {
	padding:10px 20px;
}



/* ------------------------------------------
  ACCUEIL
--------------------------------------------- */

#home {
	/*background-image: url(../img/accueil/photo.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;*/
}


#bando-accueil {
	display: flex;
	flex-direction: column;
	height: 100vh;
	position: relative;
	padding-top: 90px;
}
#masquevideo {
	position: absolute;
	top: 0;
	left: 0;
	right:0;
	bottom:0;
	background-color: #000;
	z-index: 1;
	opacity: 0.4;
}
#video-container {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#video-container > video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* 1. Pas de support d'object-fit */
@media (min-aspect-ratio: 16/9) {
  #video-container > video {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  #video-container > video {
    width: 300%;
    left: -100%;
  }
}
/* 2. En cas de support d'object-fit, écrase les règles en (1) */
@supports (object-fit: cover) {
  #video-container > video {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
  }
}


#bando-texte {
	text-align:center;
	margin: auto;
	z-index:2;
}
.bandotxt1 {
	display:inline-block;
	font-size:40px;
	font-weight:700;
	margin: 0 10px;
	color:#ffffff;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.7);
	border-bottom: 8px solid #ffed00;
}
.bandotxt2 {
	font-family: 'Roboto', sans-serif;
	font-size:36px;
	font-weight:100;
	margin:20px 20px;
	color:#ffed00;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.7);
}
.btbando a {
	width:180px;
	padding:20px 0;
	margin: 20px 20px 0 20px;
}
#bt-bas {
	position:absolute;
	bottom: 20px;
	left:50%;
	margin-left:-36px;
	z-index: 200000;
}
#bt-bas a img {
	opacity:0.6;
}
#bt-bas a:hover img {
	opacity:1;
}



#homepres {
	padding: 140px 0 30px 0;
	text-align: center;
	background-color: #fff;
}
.homepres-bloc {
	width: 380px;
	display: inline-block;
	margin: 20px;
}
.homeprestitre {
	font-weight: 700;
	font-size: 36px;
	color:#104493;
	text-transform: uppercase;
	margin: 0;
}
.homeprestext {
	margin: 0;
}

#homecompteurs {
	background-image: url(../img/home-baner2.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
	text-align: center;
	padding: 40px 0 10px 0;
}
#homecompteur-zone {
	margin: 200px 0 0 0;
}
.homecompeur-bloc {
	width: 350px;
	display: inline-block;
	margin: 20px;
	background-color: rgba(255,255,255,0.9);
	border-radius: 10px;
	padding: 30px 0;
}
.homecompeur-titre {
	font-weight: 700;
	font-size: 48px;
	color:#fff;
	text-shadow: 1px 2px 3px rgba(0,0,0, 0.9);
	margin: 30px 5px 0 5px;
}
.homecompteur-chiffre {
	font-weight: 400;
	font-size: 70px;
	color:#104493;
	line-height: 70px;
	margin: 0;
}
.homecompteur-txt {
	margin:0;
}

#homesection {
	text-align: center;
	padding: 30px 0;
	background-color: #fff;
}
#homesyndicats {
	display: inline-block;
	vertical-align: top;
	width:800px;
	text-align: center;
}
#homesyndicats hr {
	width:40%;
	  height: 6px;
	  margin: 10px auto;
	  padding: 0;
	  color: #ffed00;
	  background-color: #ffed00;
	  border: 0;
}
.homesyndicats-titre {
	font-weight: 400;
	font-size: 36px;
	color:#104493;
	text-transform: uppercase;
	margin: 20px 5px 10px 5px;
}
.homesyndicats-bloc {
	width: 150px;
	display: inline-block;
	vertical-align: top;
	margin: 20px;
}
.homesyndicats-bloc img {
	width: 100px;
	height:auto;
}
.homesyndicats-txt {
	color:#104493;
	margin: 5px 0;
}
#homesflux {
	display: inline-block;
	vertical-align: top;
	width:350px;
	background-color: #104493;
	padding: 0 0 15px 0;
	border-radius: 10px;
}
#homesflux-bloc {
	width:90%;
	height: 300px;
	background-color: #b5d0f7;
	color:#104493;
	margin: 0 auto;
	overflow: auto;
	text-align: left;	
}
.homesflux-titretop {
	font-weight: 400;
	font-size: 24px;
	color:#ffed00;
	text-transform: uppercase;
	margin: 20px 5px 10px 5px;
}
.homesflux-date {
	font-size: 12px;
	margin: 20px 5px 0 5px;
}
.homesflux-titre {
	font-weight: 700;
	margin: 0 5px 0 5px;
}
.homesflux-titre a {
	text-decoration: underline;
	color:#104493;
}
.homesflux-titre a:hover {
	text-decoration: none;
}
.homesflux-txt {
	margin: 0 5px 0 5px;
}


/* ------------------------------------------
  COMMUN
--------------------------------------------- */


#page {
	padding: 100px 0 60px 0;
	min-height: 1200px;
}
#page2 {
	padding: 110px 0 0 0;
	min-height: 600px;
}
#page3 {
	padding: 100px 0 0 0;
}
#bando-titre {
	background-color: #ffed00;
	padding:10px 0;
}
.titrepage {
	font-weight:300;
	font-size:48px;
	font-style:italic;
	color: #104493;
	margin: 30px 20px 0 20px;
	text-align: center;
}
.titrepage2 {
	font-weight:300;
	font-size:36px;
	font-style:italic;
	color: #104493;
	margin: 30px 20px 10px 20px;
	text-align: center;
}
.banniere-page {
	display: flex;
	position:relative;

	min-height: 400px;
}
.masque-banniere {
	position: absolute;
	top: 0;
	left: 0;
	right:0;
	bottom:0;
	background-color: #000;
	z-index: 1;
	opacity: 0.5;
}
.banniere-texte {
	text-align:center;
	margin: auto;
	z-index:2;
}
.titrebanniere {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 52px;
	color:#ffed00;
	margin: 60px 20px;
}
.soustitre {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 24px;
	color:#104493;
	margin: 20px 0 10px 0;
}


/* ------------------------------------------
  HISTORIQUE
--------------------------------------------- */


.banniere-histo {
	background-image: url(../img/home-baner2.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.historique {
	background-color: #fff;
	padding: 20px 20px;
	margin: 10px 0;
}

/* ------------------------------------------
  TRANSPORT - LOGISTIQUE
--------------------------------------------- */

.banniere-solutions-transport {
	background-image: url(../img/banniere-solutions-transport.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}
.banniere-solutions-logistique {
	background-image: url(../img/banniere-solutions-logistique.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}
.presblock {
	width:530px;
	min-height: 250px;
	display:inline-block;
	vertical-align: top;
	background-color: #f0f6fe;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
	margin: 20px;
}
.presblock-col1 {
	float:left;
	width:64%;
	text-align: left;
}
.presblock-col2 {
	float:right;
	width:35%;
	height: 250px;
}
.presblocktitre {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	text-transform: uppercase;
	font-style:italic;
	color:#104493;
	margin: 15px 15px 10px 15px;
}
.presblocktext {
	margin: 10px 15px 20px 15px;
}
.presimg {
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}
.presimg1 {
	background-image: url(../img/efds-transport-1b.jpg);
}
.presimg2 {
	background-image: url(../img/efds-transport-1.jpg);
}
.presimg3 {
	background-image: url(../img/efds-transport-3.jpg);
}
.presimg4 {
	background-image: url(../img/efds-transport-4.jpg);
}
.presimg5 {
	background-image: url(../img/efds-transport-5.jpg);
}
.presimg6 {
	background-image: url(../img/efds-transport-6.jpg);
}
.presimg7 {
	background-image: url(../img/efds-transport-7.jpg);
}
.presimg8 {
	background-image: url(../img/efds-transport-8.jpg);
}
.presimg9 {
	background-image: url(../img/efds-transport-9.jpg);
}
.presimg10 {
	background-image: url(../img/efds-transport-10.jpg);
}
.presimg11 {
	background-image: url(../img/efds-transport-11.jpg);
}
.presimg12 {
	background-image: url(../img/efds-transport-12.jpg);
}

.centrer {
	text-align: center;
}
.logistintro {
	font-size: 18px;
	color:#104493;
	margin: 30px 10px 10px 10px;
}

/* ------------------------------------------
  EFDS 2.0
--------------------------------------------- */


.banniere-logiciel {
	background-image: url(../img/winfret-baner.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}
.titrelogiciel {
	margin-top: 320px;
}
#efds-2-0 img {
	display:block;
	width:100%;
	height:auto;
}


/* ------------------------------------------
  CONTACT
--------------------------------------------- */

#form-contact {
	max-width:600px;
	text-align:center;
	margin: 20px auto 50px auto;
}
#form-contact label {
	display:inline-block;
	width:90px;
	text-align:left;
	vertical-align:top;
	margin: 10px 0 0 0;
}
#form-contact input[type="text"],
#form-contact input[type="email"] {
	width:500px;
	background-color:#fff;
	text-align:left;
	border:none;
	padding: 8px 5px;
	margin: 5px 0;	
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
}
#form-contact select {
	width:500px;
	background-color:#fff;
	text-align:left;
	border:none;
	padding: 8px 5px;
	margin: 5px 0;	
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
}
#form-contact textarea {
	width:500px;
	height:160px;
	background-color:#fff;
	text-align:left;
	border:none;
	resize: none;
	padding: 8px 5px;
	margin: 5px 0;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
}
#bt-envoi {
	width:180px;
	padding:20px 0;
	text-transform: uppercase;
}

.contact-form {
	width:700px;
	display:inline-block;
	vertical-align: top;
}
.contact-infos {
	width:400px;
	display:inline-block;
	vertical-align: top;
}
.contact-infos-bloc {
	background-color:#fff;
	padding: 10px 20px;
	margin: 30px;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
}
.contactmail a {
	color:#104493;
	text-decoration: none;
}
.contactmail a:hover {
	text-decoration: underline;
}
.btsavoir {
	margin: 10px 0;
}
.btsavoir a {
	padding:15px 25px;
}
.contactinfotitre {
	font-size: 20px;
	color:#104493;
	margin: 10px 0 0 0;
}
.contactinfotext {
	margin: 10px 0;
}
.titreefds {
	font-size: 24px;
	color:#104493;
}
#googlemap {
	margin: 80px 20px 20px 20px;
}


/* ------------------------------------------
  NOTIFICATION
--------------------------------------------- */

.notif-erreur {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#C00;
	text-align:center;
	margin:2px;
}
.notif-traitement {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#F90;
	text-align:center;
	margin:2px;
}
.notif-valide {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#0C0;
	text-align:center;
	margin:2px;
}


/* ------------------------------------------
  CHIFFRES CLES
--------------------------------------------- */



.banniere-chiffrecles {
	background-image: url(../img/banniere-chiffrecles.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}
.chiffres-cles {
	text-align: center;
	margin: 20px 0;
}
.ca-evolution {
	width:740px;
	display:inline-block;
	vertical-align: top;
}
.ca-repartition {
	width:400px;
	display:inline-block;
	vertical-align: top;
}
.ca-soustitre {
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color:#104493;
	margin: 10px 0 20px 0;
}
.chiffresclesglob {
	max-width: 1100px;
	margin: 0;
	background-color: #fff;
	color:#fff;
	text-align: left;
	padding: 5px 0 20px 28px;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
}
.chiffrecle-bloc {
	width:350px;
	display:inline-block;
	vertical-align: top;
	text-align: left;
	margin: 10px;
	padding: 40px 0;
}
.chiffrecle-nbre {
	font-weight: 400;
	font-size: 70px;
	line-height: 70px;
	margin: 0 0 0 20px;
}
.chiffrecle-legende {
	margin: 0 0 0 20px;
}
.chiffrecle-back1 {
	background-color: #104493;
}
.chiffrecle-back2 {
	background-color: #ffc000;
}
.chiffrecle-back3 {
	background-color: #4085ee;
}
.chiffrecle-back4 {
	background-color: #a7a7a7;
}
.chiffrecle-back5 {
	background-color: #049800;
}

.chiffretab tr {
	border: 2px solid #fff;
}
.chiffretab td {
	background-color: #efefef;
	text-align: left;
	color:#104493;
	padding: 15px 10px;
}

/* ------------------------------------------
  IMPLENTATION
--------------------------------------------- */

.implentationtext {
	font-size: 24px;
	color:#104493;
	letter-spacing: 2px;
}

/* ------------------------------------------
  ELECTIONS
--------------------------------------------- */

.banniere-election {
	background-image: url(../img/banniere-election.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}
.largeur-site-video {
	max-width: 900px;
	margin: 0 auto;
}
.titrelection {
	font-size: 35px;
	color:#104493;
	margin: 20px 0 10px 0;
}
.elecimg {
	max-width:170px;
	height:auto;
}

.video-conteneur {
position:relative;
padding-bottom:56.25%;
height:0;
overflow:hidden;
}
 
.video-conteneur iframe,
.video-conteneur object,
.video-conteneur embed {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}
/* ------------------------------------------
  NOS VALEURS
--------------------------------------------- */

.banniere-valeurs {
	background-image: url(../img/banniere-valeurs.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}
.chiffrevaleur {
	font-size: 16px;
	line-height: 16px;
	display:inline-block;
	width:16px;
	background-color: #ffed00;
	color:#ffed00;
	text-align: center;
}
.valeursoustitre {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 30px;
	color:#104493;
	margin: 20px 0 10px 0;
}
.sep1 {
	border:1px solid #104493;
	width:50%;
	margin: 40px auto 20px auto;
}

/* ------------------------------------------
  LOI GAYSSOT
--------------------------------------------- */


.banniere-loig {
	background-image: url(../img/home-baner2.jpg);
	background-position: center center;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}

.loig {
	background-color: #fff;
	padding: 20px 20px;
	margin: 10px 0;
	text-align: center;
}
.loig p {
	margin: 30px 0;
}
.loig img {
	vertical-align:bottom ;
}
.loig a {
	color:#104493;
}
.loig a:hover {
	text-decoration: none;
}


/* ------------------------------------------
  FOOTER
--------------------------------------------- */


footer {
	background-color:#031234;
	text-align: center;
	color:#fff;
	padding: 10px 0 10px 0;
}
.logo-footer {
	margin: 0 0 0 0;
}
footer a {
	color:#fff;
	text-decoration:none;
}
footer a:hover {
	color:#ffed00;
}
footer p {
	margin: 5px 0 10px 0;
}
#credits {
	font-size: 14px;
	color:#fff;
	padding: 10px 0 0 0;
}
#credits img {
	vertical-align:middle;
}

#bt-haut {
	background-color:#031234;
	text-align: center;
	padding: 10px 0 0 0;
}
#bt-haut a img {
	opacity:0.5;
}
#bt-haut a:hover img {
	opacity:1;
}


/* ------------------------------------------
  identification
--------------------------------------------- */

#identification-popup {
	width: 260px;
	position: absolute;
	top: 46px;
	right: 10px;
	background-color: #fff;
	text-align: center !important;
	padding: 15px 0;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
	border: 1px solid #104493;
	z-index: 10000;
}
#identification-popup input[type="text"],
#identification-popup input[type="password"] {
	width:200px;
	height:30px !important;
	font-size:18px;
	color:#104493;
	border: 1px solid #104493;
	padding: 4px 5px;
	margin: 0;
}
#identification-popup input[type="submit"] {
	padding: 5px 15px;
	margin: 8px 0 15px 0;
}
#identification-popup p {
	margin: 5px 0;
	text-align: center !important;
}
#identification-popup a {
	color:#052f69;
	text-decoration:none;
}
#identification-popup a:hover {
	text-decoration:underline;
}



/**************** fin identification *****************/