@charset "UTF-8";
/* CSS Document */

body, form, input, textarea, field {
	font-family: 'Source Sans Pro', sans-serif;
	font-size:14px;
	color: #222;;
	font-weight:400;
}

body {
	background-repeat:no-repeat;
	background-color:#FFFFFF;
}

.centrage {
	width: 95%;
	max-width:1050px;
	margin:auto;
}

nav a {
	text-decoration:none;
	display:block;
}

.clear {
	width: 0;
	height: 0;
	clear:both;
}

a {
	text-decoration: underline;
	color: #009ACC;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-ms-transition: color 0.2s;
	-o-transition: color 0.2s;
	transition: color 0.2s;
}
a:hover {
	color: #0C1C4E;
}

/* On définit ici les titres et textes*/

h1, h2, h3, h4, strong, .bold, .black {
	font-weight:normal;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight:700;
}
h1 {
	font-size: 30px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 18px;
}

p {
	text-align:justify;
	margin-top:10px;
	margin-bottom:10px;
	line-height: 18px;
	color: #222;
}

strong {font-weight: 700;}

/* On définit ici les couleurs du site*/

.vert {
	color:#62c748;
}
.bleuclair {
	color:#5282c2;
}
.bleuclair2 {
	color:#3c55a2;
}
.bleufonce {
	color:#0c1c4e;
}
/* On définit ici les colonnes du site*/

.col66 {
	float: right;
	min-height: 100px;
	width: 67.5%;
	margin-left: 4%;
}

.col33 {
	float: right;
	width: 28.5%;
}

.colGauche {
	margin-left: 0;
}

/* On définit ici les paddings pour le responsive*/

.padding20x30 {
	display: block;
	padding: 20px 30px;
}

.padding20 {
	display: block;
	padding: 20px;
}

/* On définit ici les flottants */

.floatL {float: left;}
.floatR {float: right;}

.imgleft {
	float:left;
	padding:10px;
	margin-right:20px;
	margin-bottom:20px;
}

.imgright {
	float:right;
	padding:10px;
	margin-left:10px;
	margin-bottom:10px;
}

.imgleft + p, .imgright + p {
	margin-top:0px;
}


/*Style des images contenant un outil de zoom (mettre l'img dans un a.fancy et rajouter un span avant ou après, dans le a)*/

.fancy {
	display: block;
	position: relative;
	text-align: center;
	border: #fff solid 2px;
	-webkit-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
}
.fancy span {
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	left: 50%;
	margin: -20px 0 0 -20px;
	background-position: center top;
	background-repeat: no-repeat;
	background-image: url('../../ressources/img/pictos/zoom.png');

}
	.fancy:hover span {background-position: center bottom;}

/* On définit ici les ombres appliquées aux box */
.boxshadow {
	-webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}


/* On définit ici les ombres appliquées aux textes */
.textshadow {
	text-shadow: 2px 2px 2px #000000;
	filter: dropshadow(color=#000000, offx=2, offy=2);
}


/* On définit ici les arrondis appliqués aux box */
.borderradius {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

/* On définit ici le style du bouton général et les spécifiques */
.btn {
	display:inline-block;
	font-size:13px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 12px 20px 10px 20px;
	border: none;
	background-color: #3B55A2;
	border-bottom: #2c3f75 solid 3px;
	color: #fff;
	text-decoration: none;

	-webkit-transition: background-color 0.2s, color 0.2s, border 0.2s;
	-moz-transition: background-color 0.2s, color 0.2s, border 0.2s;
	-ms-transition: background-color 0.2s, color 0.2s, border 0.2s;
	-o-transition: background-color 0.2s, color 0.2s, border 0.2s;
	transition: background-color 0.2s, color 0.2s, border 0.2s;
}

.btn-vert {
	background-color: #62c748;
	border-bottom: #4a9936 solid 3px;
}
.btn-orange {
	background-color: #F0892E;
	border-bottom: #c27028 solid 3px;
}

.btn-small {
	font-size: 13px;
	padding: 7px 12px 5px 12px;
}

.btn:hover {
	background-color: #0C1C4E;
	color: #fff;
	border-bottom: #0C1C4E solid 3px;
}

.btn-download {
	padding: 12px 25px 12px 50px;
	background-image: url("../../ressources/img/pictos/download.png");
	background-position: 20px center;
	background-repeat: no-repeat;
	margin-bottom: 20px;
}
.btn-download span {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	font-weight: 400;
}

.iconePlus {
	color: #fff;
	text-align: center;
	text-decoration: none;
}
.iconePlus .icon-circle {
	font-size: 34px;
	color: #0C1C4E;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-ms-transition: color 0.2s;
	-o-transition: color 0.2s;
	transition: color 0.2s;
}
.iconePlus .icon-plus {
	font-size: 20px;
	margin-left: 5px;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-ms-transition: color 0.2s;
	-o-transition: color 0.2s;
	transition: color 0.2s;
}

	.iconePlus:hover .icon-circle {color: #fff;}
	.iconePlus:hover .icon-plus {color: #0C1C4E;}

.plusBleufonce .icon-plus{color: #3C55A2;}
.plusBleuclair .icon-plus{color: #5282C2;}
.plusVert .icon-plus{color: #62C748;}

.rondBleuclair .icon-circle{color:#5282C2 ;}
.rondVert .icon-circle{color: #62c748;}
.rondRose .icon-circle{color: #AE83B6;}
.rondOrange .icon-circle{color: #F0892E;}


/* On définit ici le style des formulaires */

.erreur, .succes{ /*attention erreur est un <p>*/
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
	padding-left: 170px;
}

.succes span{
	background-color:#9BB40F;
	padding: 10px 2% 10px 2%;
	width: 88%;
	color:#fff;
	display: block;
	border: 1px solid #ccc;
}

.erreur span{
	background-color:#c83558;
	padding: 10px 2% 10px 2%;
	width: 88%;
	color:#fff;
	display: block;
	border: 1px solid #ccc;
}

.erreurchamp {
	background-color:#c83558!important;
	color:#fff;
}

form {
	width: 100%;
	margin-bottom: 20px;
}

form p {
	position: relative;
	margin-bottom: 15px;
	padding-left: 170px;
	padding-right: 35px;
}

form p.paragraphe {
	padding-left: 0;
}

form p.paragraphe strong {
	font-weight: 700;
}

form p label {
	display: block;
	position: absolute;
	left: 0;
	width: 170px;
	display: block;
	padding-top: 10px;
	font-weight: 400;
}

form input[type=text],
form input[type=email],
form input[type=file],
form select,
form textarea {
	display: inline-block;
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	padding: 10px 2% 10px 2%;
	width: 96%;
}

form input[type=file] {
	padding-top: 6px;
	padding-bottom: 6px;
}


form input[type=text]:focus,
form input[type=email]:focus,
form select:focus,
form textarea:focus {
	border: 1px solid #f1f1f1;
}

form textarea {
	min-height: 200px;
	-webkit-resize: vertical;
	-moz-resize: vertical;
	resize: vertical;
}

form input[type=submit] {
	cursor: pointer;
	float: right;
	margin-right: 35px;
	border: none;
	padding-top: 6px;
	padding-bottom: 3px;
	border-bottom: #2c3f75 solid 3px;
}

.captcha img{
	width: 100px;
	border : #ccc solid 1px;
	padding: 10px 2% 10px 2%;
}

.conseil{
	position: absolute;
	top: 7px;
	right: 0;
	background-image: url('../../ressources/img/pictos/aide.png');
	background-repeat: no-repeat;
	background-position: top left;
	display: block;
	height: 20px;
	width: 20px;
}

.conseil:hover{
	background-position: bottom left;
}

/*Zone de chargement formulaire CMS*/

.chargement{
	display: none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: #3c55a2;
	background-color:rgba(60, 85, 162, 0.9);
	z-index: 1000;
}

.chargement img{
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-25px;
	margin-left:-25px;
}

/* On définit ici le style des tableaux */

table.tableau {
	width: 100%;
	margin-bottom: 30px;
}

table.tableau tr th,
table.tableau tr td {
	padding: 10px;
	border: #ddd solid 1px;
}

table.tableau tr th {
	text-align: left;
	font-weight: 600;
	background-color: #333;
	color: #fff;
}

table.tableau tr td {
	background-color: #fff;
}

table.tableau tr:nth-child(even) td{
	background-color: #f2f2f2;
}

	table.tableau tr:hover td {
		background-color: #00FFFC;
	}

/* On définit ici le style du fil d'ariane*/

.ariane {
	position: relative;
	display: block;
	height: 20px;
	list-style: none;
	margin: 0;
	padding: 10px 20px;
	background-color: #fcfcfc; /*pour IE*/
}

.ariane > li {
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	height: 20px;
	margin-right: 5px;
}

.ariane > li > a {
	display: inline-block;
	padding: 3px 10px 3px 10px;
	height: 14px;
	color: #0C1C4E;
	font-size: 12px;
	text-decoration: none;
}
.ariane > li:first-child > a{
	padding-left: 0;

}
.ariane > .active {
	padding: 3px 0 3px 0;
	height: 14px;
	font-size: 12px;
	margin-right: 0;
}

/* On définit ici le style des paginations */

#pagination {
	margin-bottom: 20px;
}
#pagination li {
	margin-right: 2px;
	float: left;
}
#pagination li a {
	display: inline-block;
	text-decoration: none;
	width: 31px;
	padding: 7px 0 9px 0;
	color: #fff;
	font-weight: 700;
	text-align: center;
	background-color: #0C1C4E;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-transition: background-color 0.15s linear;
	-moz-transition: background-color 0.15s linear;
	-ms-transition: background-color 0.15s linear;
	-o-transition: background-color 0.15s linear;
	transition: background-color 0.15s linear;
}
#pagination li.arrow a {padding: 6px 0 10px 0;}
#pagination li a.current,
#pagination li a:hover {
	background-color: #62C748;
}
#pagination li a.active {font-weight: bold;}


/*QR codes*/      /*Prendre soin de bien importer les images associées pour que ces styles fonctionnent*/

.qrcode {
	height: 150px;
	margin: 20px 0 20px 0;
	padding: 15px 20px;
	background-color: #fafafa;
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
	*display: none;
}
.qrcode canvas {
	height: 130px;
	float: left;
	border: 10px solid #fff;
	-webkit-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
}
.qrcode .titre {display: none;}
.qrcode .QRinfo {float: left;}
.qrcode .tag {
	display: inline-block;
	height: 14px;
	font-size: 14px;
	padding: 10px 20px 10px 40px;
	margin: 10px 0 0 20px;
	background: url("../img/utils/tag.png") left center no-repeat;
	color: #fff;
}
.qrcode .illus {
	display: block;
	width: 155px;
	height: 80px;
	background: url("../img/utils/QRcode-illus.png") center no-repeat;
	margin: 20px 0 0 40px;
}
.bloc_qrcode:first-child{
	float:left;
}


/* On définit ici le style du message pour internet explorer */
.antiie{
	background-color:#fff;
	width:950px;
	margin:auto;
}

.navigie{
	float:left;
	width:219px;
	height:66px;
	background-image:url('../../ressources/img/navig.jpg');
	background-repeat:no-repeat;
}

.messageie{
	float:left;
	padding-top:15px;
	width:500px;
}
