/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import
	url(http://fonts.googleapis.com/css?family=Roboto:400,700,400italic,700italic,300,300italic)
	;

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video
	{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section
	{
	display: block;
}

body {
	line-height: 1;
}

ol,ul {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*++++++ Font ++++++*/ /*+++++ Color ++++++*/ /*++++ link +++++*/
	/*++++++ Breakpoint ++++++*/ /*MIXIN*/ /*media querie*/ /*annimation*/
	/*vendor prefix*/ /*calculate rem font size with px fallback*/
	/*crossbrowser opacity*/ /*invisible but accessissible*/
	/*transition du texte*/
a {
	-webkit-transition-property: color;
	-moz-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

.text-hidden {
	display: block;
	height: 100%;
	overflow: hidden;
	text-indent: 101%;
	white-space: nowrap;
}

/* ==========================================================================
   Grid
   ========================================================================== */
	/*
 * Example uses:
 *
 * <div class="grid">
 *     <div class="grid__cell unit-1-2"></div>
 *     <div class="grid__cell unit-1-2"></div>
 *     <div class="grid__cell unit-1-3"></div>
 *     <div class="grid__cell unit-1-3"></div>
 * </div>
 *
 * <div class="grid grid--center">
 *     <div class="grid__cell unit-1-3"></div>
 *     <div class="grid__cell unit-1-3"></div>
 * </div>
 */ /* Grid core
   ========================================================================== */
	/**
 * Grid container
 * Must only contain `.grid` or `.grid__cell` components as children.
 *
 * 1. Adjustment for child element margins.
 * 2. Ensure consistent default alignment/
 * 3. Remove inter-unit whitespace that appears between `inline-block` child
 *    elements. Work for all non-monospace font-families.  If you're using a
 *    monospace base font, you will need to set the `grid` font-family to
 *   `sans-serif` and then redeclare the monospace font on the `grid__cell`
 *    objects.
 * 4. Protect against WebKit bug with optimizelegibility.
 */
.grid {
	display: block;
	padding: 0;
	margin: 0 -10px;
	/* 1 */
	text-align: left;
	/* 2 */
	letter-spacing: -0.31em;
	/* 3 */
	text-rendering: optimizespeed;
	/* 4 */
}

/**
 * Opera hack
 */
.opera:-o-prefocus,.grid {
	word-spacing: -0.43em;
	/* 3 */
}

/**
 * Child `grid` object adjustments
 * Used for more complex fixed-fluid hybrid grids.
 */
.grid>.grid {
	overflow: hidden;
	margin-right: 0;
	margin-left: 0;
}

/**
 * Grid units
 * No explicit width by default. Apply `.unit-x-y` classes.
 *
 * 1. Fundamentals of the non-float grid layout mechanism.
 * 2. Apply grid gutter.
 * 3. Controls vertical positioning of units.
 * 4. Keeps content correctly aligned with the grid direction.
 * 5. Reset text defaults.
 */
.grid__cell {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	display: inline-block;
	/* 1 */
	margin: 0;
	padding: 0 10px;
	/* 2 */
	vertical-align: top;
	/* 3 */
	text-align: left;
	/* 4 */
	letter-spacing: normal;
	/* 5 */
	word-spacing: normal;
	/* 5 */
	text-rendering: auto;
	/* 5 */
}

/* Grid modifiers
   ========================================================================== */
	/**
 * Modifier: horizontally center all grid units
 * Allows for automatic unit centering irrespective of the number of
 * units in the grid.
 */
.grid--center {
	text-align: center;
}

/**
 * Modifier: align horizontally all grid units to the left
 */
.grid--left {
	text-align: left;
}

/**
 * Modifier: align horizontally all grid units to the right
 */
.grid--right {
	text-align: right;
}

/* Grid cell modifiers
   ========================================================================== */
	/**
 * Modifier: horizontally center one unit
 * Set a specific unit to be horizontally centered. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
.grid__cell--center {
	display: block;
	margin: 0 auto;
}

/**
 * Modifier: align horizontally one unit to the left
 * Set a specific unit to be horizontally on the left. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
.grid__cell--left {
	display: block;
	margin-right: auto;
}

/**
 * Modifier: align horizontally one unit to the right
 * Set a specific unit to be horizontally on the right. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
.grid__cell--right {
	display: block;
	margin-left: auto;
}

/*Grid bonus option*/
.grid.grid--no-gutter {
	margin: 0;
}

.grid.grid--no-gutter>.grid__cell {
	padding: 0;
}

.grid.grid--inverted::after {
	clear: both;
	content: "";
	display: table;
}

.grid.grid--inverted .grid__cell {
	float: right;
}

.grid.grid--valign-middle .grid__cell {
	vertical-align: middle;
}

.grid.grid--valign-bottom .grid__cell {
	vertical-align: bottom;
}

.grid.grid--justify {
	text-align: justify;
}

/*---Construct grid---*/ /* Proportional units
       ========================================================================== */
	/*
     * Specify the proportional width of an object.
     * Primarily for, but not limited to, use with `.grid__cell` components.
     * Intentional redundancy build into each set of unit classes.
     */
.unit-1-2,.unit-2-4,.unit-3-6 {
	width: 50%;
}

.unit-1-3,.unit-2-6 {
	width: 33.33333%;
}

.unit-2-3,.unit-4-6 {
	width: 66.66667%;
}

.unit-1-4 {
	width: 25%;
}

.unit-3-4 {
	width: 75%;
}

.unit-1-6 {
	width: 16.66667%;
}

.unit-5-6 {
	width: 83.33333%;
}

@media screen and (min-width: 576px) { /* Proportional units
       ========================================================================== */
	/*
     * Specify the proportional width of an object.
     * Primarily for, but not limited to, use with `.grid__cell` components.
     * Intentional redundancy build into each set of unit classes.
     */
	.unit-1-2--medium,.unit-2-4--medium {
		width: 50%;
	}
	.unit-1-3--medium {
		width: 33.33333%;
	}
	.unit-2-3--medium {
		width: 66.66667%;
	}
	.unit-1-4--medium {
		width: 25%;
	}
	.unit-3-4--medium {
		width: 75%;
	}
}

@media screen and (min-width: 900px) { /* Proportional units
       ========================================================================== */
	/*
     * Specify the proportional width of an object.
     * Primarily for, but not limited to, use with `.grid__cell` components.
     * Intentional redundancy build into each set of unit classes.
     */
	.unit-1-2--large,.unit-2-4--large {
		width: 50%;
	}
	.unit-1-3--large {
		width: 33.33333%;
	}
	.unit-2-3--large {
		width: 66.66667%;
	}
	.unit-1-4--large {
		width: 25%;
	}
	.unit-3-4--large {
		width: 75%;
	}
	/* Proportional units
       ========================================================================== */
	/*
     * Specify the proportional width of an object.
     * Primarily for, but not limited to, use with `.grid__cell` components.
     * Intentional redundancy build into each set of unit classes.
     */
	.unit-1-7--large-screen {
		width: 14.28571%;
	}
	.unit-2-7--large-screen {
		width: 28.57143%;
	}
	.unit-3-7--large-screen {
		width: 42.85714%;
	}
	.unit-4-7--large-screen {
		width: 57.14286%;
	}
	.unit-5-7--large-screen {
		width: 71.42857%;
	}
	.unit-6-7--large-screen {
		width: 85.71429%;
	}
	/*only for the demo*/
	.grid div[class *="full--large"] {
		width: 100%;
	}
}

/*--- Bloc englobant ---*/
.container {
	margin: auto;
	padding: 0 20px;
}

@media screen and (min-width: 576px) {
	.container {
		width: 556px;
	}
}

@media screen and (min-width: 900px) {
	.container {
		width: 880px;
	}
}

/*only for the demo*/
.demo .grid__cell>div {
	background-color: #AAAAAA;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	text-align: center;
	margin-bottom: 10px;
}

.demo .grid__cell .grid__cell>div {
	background-color: #CCCCCC;
}

/*---image---*/
.image-fluid img {
	max-width: 100%;
	height: auto;
}

.image-full img {
	width: 100%;
	height: auto;
}

.image-left {
	text-align: left;
}

.image-right {
	text-align: right;
}

.image-center {
	text-align: center;
}

.button,header nav li {
	position: relative;
	z-index: 1;
}

.button:after,header nav li:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 0;
	height: 5px;
	bottom: 0;
	left: 50%;
	background: rgba(255, 255, 255, 0.4);
	-webkit-transition: width 0.3s ease-out 0s, left 0.3s ease-out 0s;
	-moz-transition: width 0.3s ease-out 0s, left 0.3s ease-out 0s;
	transition: width 0.3s ease-out 0s, left 0.3s ease-out 0s;
}

.button:hover:after,header nav li:hover:after {
	width: 100%;
	left: 0;
}

.button,header nav li {
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	display: inline-block;
	padding: 11px 13px;
	background: #F15A24;
	color: #FFFFFF !important;
	cursor: pointer;
}

.button:hover,header nav li:hover {
	color: #FFFFFF;
}

.button a,header nav li a {
	color: inherit;
}

.button--full {
	display: block;
}

.button--big {
	padding: 16px 20px;
	font-size: 17px;
	font-size: 1.21429rem;
}

.button--nav-prev:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
}

.button--nav-next:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
}

.button--black {
	padding: 16px 20px;
	font-size: 17px;
	font-size: 1.21429rem;
	border: 2px solid #FFFFFF;
	background: #000000;
	background: rgba(0, 0, 0, 0.2);
}

.button--black:hover {
	background: #111111;
	background: rgba(0, 0, 0, 0.5);
}

.button--gray {
	color: #333333;
	font-weight: normal;
	background: #161616;
}

.button--gray:hover,.button--gray.active {
	background: #444444;
	color: #333333;
}

.button--gray.active {
	font-weight: strong;
}

.button--blue {
	background: #0681d0;
}

.link-arrow {
	display: inline-block;
}

.link-arrow:after {
	content: '';
	display: inline-block;
	margin-left: 5px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #0681d0;
}

@font-face {
	font-family: "icons";
	src: url("../font/icons.eot");
	src: url("../font/icons.eot?#iefix") format("eot"),
		url("../font/icons.woff2") format("woff2"), url("../font/icons.woff")
		format("woff"), url("../font/icons.ttf") format("truetype"),
		url("../font/icons.svg#icons") format("svg");
}

.icon:before {
	font-family: "icons";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	/* speak: none; only necessary if not using the private unicode range (firstGlyph option) */
	text-decoration: none;
	text-transform: none;
}

.icon-cart:before {
	content: "\E001";
}

.icon-casque:before {
	content: "\E002";
}

.icon-chevron-big-left:before {
	content: "\E003";
}

.icon-chevron-big-right:before {
	content: "\E004";
}

.icon-chevron-bottom:before {
	content: "\E005";
}

.icon-chevron-left:before {
	content: "\E006";
}

.icon-chevron-medium-bottom:before {
	content: "\E007";
}

.icon-chevron-medium-top:before {
	content: "\E008";
}

.icon-chevron-right:before {
	content: "\E009";
}

.icon-chevron-top:before {
	content: "\E00A";
}

.icon-close:before {
	content: "\E00B";
}

.icon-more-infos:before {
	content: "\E00C";
}

.icon-notice:before {
	content: "\E00D";
}

.icon-pen:before {
	content: "\E00E";
}

.icon-print:before {
	content: "\E00F";
}

.icon-reload:before {
	content: "\E010";
}

.icon-review:before {
	content: "\E011";
}

.icon-security:before {
	content: "\E012";
}

.icon-shop:before {
	content: "\E013";
}

.icon-smile:before {
	content: "\E014";
}

.icon-star-rating:before {
	content: "\E015";
}

.icon-status-no:before {
	content: "\E016";
}

.icon-status-yes:before {
	content: "\E017";
}

.icon-technical:before {
	content: "\E018";
}

.icon-truck:before {
	content: "\E019";
}

.icon-user:before {
	content: "\E01A";
}

/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
	font-family: 'FontAwesome';
	src: url("../font/fontawesome-webfont.eot?v=4.6.3");
	src: url("../font/fontawesome-webfont.eot?#iefix&v=4.6.3")
		format("embedded-opentype"),
		url("../font/fontawesome-webfont.woff2?v=4.6.3") format("woff2"),
		url("../font/fontawesome-webfont.woff?v=4.6.3") format("woff"),
		url("../font/fontawesome-webfont.ttf?v=4.6.3") format("truetype"),
		url("../font/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular")
		format("svg");
	font-weight: normal;
	font-style: normal;
}

.fa {
	display: inline-block;
	font: normal normal normal 14px/ 1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.fa-lg {
	font-size: 1.33333333em;
	line-height: .75em;
	vertical-align: -15%;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-fw {
	width: 1.28571429em;
	text-align: center;
}

.fa-ul {
	padding-left: 0;
	margin-left: 2.14285714em;
	list-style-type: none;
}

.fa-ul>li {
	position: relative;
}

.fa-li {
	position: absolute;
	left: -2.14285714em;
	width: 2.14285714em;
	top: .14285714em;
	text-align: center;
}

.fa-li.fa-lg {
	left: -1.85714286em;
}

.fa-border {
	padding: .2em .25em .15em;
	border: solid .08em #eee;
	border-radius: .1em;
}

.fa-pull-left {
	float: left;
}

.fa-pull-right {
	float: right;
}

.fa.fa-pull-left {
	margin-right: .3em;
}

.fa.fa-pull-right {
	margin-left: .3em;
}

.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

.fa.pull-left {
	margin-right: .3em;
}

.fa.pull-right {
	margin-left: .3em;
}

.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}

.fa-pulse {
	-webkit-animation: fa-spin 1s infinite steps(8);
	animation: fa-spin 1s infinite steps(8);
}

@
-webkit-keyframes fa-spin { 0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

100%
{
-webkit-transform


:

 

rotate


(359
deg
);


    

transform


:

 

rotate


(359
deg
);

 

}
}
@
keyframes fa-spin { 0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

100%
{
-webkit-transform


:

 

rotate


(359
deg
);


    

transform


:

 

rotate


(359
deg
);

 

}
}
.fa-rotate-90 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.fa-rotate-180 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.fa-rotate-270 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

.fa-flip-horizontal {
	-ms-filter:
		"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.fa-flip-vertical {
	-ms-filter:
		"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}

:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical
	{
	filter: none;
}

.fa-stack {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	vertical-align: middle;
}

.fa-stack-1x,.fa-stack-2x {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
}

.fa-stack-1x {
	line-height: inherit;
}

.fa-stack-2x {
	font-size: 2em;
}

.fa-inverse {
	color: #fff;
}

.fa-glass:before {
	content: "\f000";
}

.fa-music:before {
	content: "\f001";
}

.fa-search:before {
	content: "\f002";
}

.fa-envelope-o:before {
	content: "\f003";
}

.fa-heart:before {
	content: "\f004";
}

.fa-star:before {
	content: "\f005";
}

.fa-star-o:before {
	content: "\f006";
}

.fa-user:before {
	content: "\f007";
}

.fa-film:before {
	content: "\f008";
}

.fa-th-large:before {
	content: "\f009";
}

.fa-th:before {
	content: "\f00a";
}

.fa-th-list:before {
	content: "\f00b";
}

.fa-check:before {
	content: "\f00c";
}

.fa-remove:before,.fa-close:before,.fa-times:before {
	content: "\f00d";
}

.fa-search-plus:before {
	content: "\f00e";
}

.fa-search-minus:before {
	content: "\f010";
}

.fa-power-off:before {
	content: "\f011";
}

.fa-signal:before {
	content: "\f012";
}

.fa-gear:before,.fa-cog:before {
	content: "\f013";
}

.fa-trash-o:before {
	content: "\f014";
}

.fa-home:before {
	content: "\f015";
}

.fa-file-o:before {
	content: "\f016";
}

.fa-clock-o:before {
	content: "\f017";
}

.fa-road:before {
	content: "\f018";
}

.fa-download:before {
	content: "\f019";
}

.fa-arrow-circle-o-down:before {
	content: "\f01a";
}

.fa-arrow-circle-o-up:before {
	content: "\f01b";
}

.fa-inbox:before {
	content: "\f01c";
}

.fa-play-circle-o:before {
	content: "\f01d";
}

.fa-rotate-right:before,.fa-repeat:before {
	content: "\f01e";
}

.fa-refresh:before {
	content: "\f021";
}

.fa-list-alt:before {
	content: "\f022";
}

.fa-lock:before {
	content: "\f023";
}

.fa-flag:before {
	content: "\f024";
}

.fa-headphones:before {
	content: "\f025";
}

.fa-volume-off:before {
	content: "\f026";
}

.fa-volume-down:before {
	content: "\f027";
}

.fa-volume-up:before {
	content: "\f028";
}

.fa-qrcode:before {
	content: "\f029";
}

.fa-barcode:before {
	content: "\f02a";
}

.fa-tag:before {
	content: "\f02b";
}

.fa-tags:before {
	content: "\f02c";
}

.fa-book:before {
	content: "\f02d";
}

.fa-bookmark:before {
	content: "\f02e";
}

.fa-print:before {
	content: "\f02f";
}

.fa-camera:before {
	content: "\f030";
}

.fa-font:before {
	content: "\f031";
}

.fa-bold:before {
	content: "\f032";
}

.fa-italic:before {
	content: "\f033";
}

.fa-text-height:before {
	content: "\f034";
}

.fa-text-width:before {
	content: "\f035";
}

.fa-align-left:before {
	content: "\f036";
}

.fa-align-center:before {
	content: "\f037";
}

.fa-align-right:before {
	content: "\f038";
}

.fa-align-justify:before {
	content: "\f039";
}

.fa-list:before {
	content: "\f03a";
}

.fa-dedent:before,.fa-outdent:before {
	content: "\f03b";
}

.fa-indent:before {
	content: "\f03c";
}

.fa-video-camera:before {
	content: "\f03d";
}

.fa-photo:before,.fa-image:before,.fa-picture-o:before {
	content: "\f03e";
}

.fa-pencil:before {
	content: "\f040";
}

.fa-map-marker:before {
	content: "\f041";
}

.fa-adjust:before {
	content: "\f042";
}

.fa-tint:before {
	content: "\f043";
}

.fa-edit:before,.fa-pencil-square-o:before {
	content: "\f044";
}

.fa-share-square-o:before {
	content: "\f045";
}

.fa-check-square-o:before {
	content: "\f046";
}

.fa-arrows:before {
	content: "\f047";
}

.fa-step-backward:before {
	content: "\f048";
}

.fa-fast-backward:before {
	content: "\f049";
}

.fa-backward:before {
	content: "\f04a";
}

.fa-play:before {
	content: "\f04b";
}

.fa-pause:before {
	content: "\f04c";
}

.fa-stop:before {
	content: "\f04d";
}

.fa-forward:before {
	content: "\f04e";
}

.fa-fast-forward:before {
	content: "\f050";
}

.fa-step-forward:before {
	content: "\f051";
}

.fa-eject:before {
	content: "\f052";
}

.fa-chevron-left:before {
	content: "\f053";
}

.fa-chevron-right:before {
	content: "\f054";
}

.fa-plus-circle:before {
	content: "\f055";
}

.fa-minus-circle:before {
	content: "\f056";
}

.fa-times-circle:before {
	content: "\f057";
}

.fa-check-circle:before {
	content: "\f058";
}

.fa-question-circle:before {
	content: "\f059";
}

.fa-info-circle:before {
	content: "\f05a";
}

.fa-crosshairs:before {
	content: "\f05b";
}

.fa-times-circle-o:before {
	content: "\f05c";
}

.fa-check-circle-o:before {
	content: "\f05d";
}

.fa-ban:before {
	content: "\f05e";
}

.fa-arrow-left:before {
	content: "\f060";
}

.fa-arrow-right:before {
	content: "\f061";
}

.fa-arrow-up:before {
	content: "\f062";
}

.fa-arrow-down:before {
	content: "\f063";
}

.fa-mail-forward:before,.fa-share:before {
	content: "\f064";
}

.fa-expand:before {
	content: "\f065";
}

.fa-compress:before {
	content: "\f066";
}

.fa-plus:before {
	content: "\f067";
}

.fa-minus:before {
	content: "\f068";
}

.fa-asterisk:before {
	content: "\f069";
}

.fa-exclamation-circle:before {
	content: "\f06a";
}

.fa-gift:before {
	content: "\f06b";
}

.fa-leaf:before {
	content: "\f06c";
}

.fa-fire:before {
	content: "\f06d";
}

.fa-eye:before {
	content: "\f06e";
}

.fa-eye-slash:before {
	content: "\f070";
}

.fa-warning:before,.fa-exclamation-triangle:before {
	content: "\f071";
}

.fa-plane:before {
	content: "\f072";
}

.fa-calendar:before {
	content: "\f073";
}

.fa-random:before {
	content: "\f074";
}

.fa-comment:before {
	content: "\f075";
}

.fa-magnet:before {
	content: "\f076";
}

.fa-chevron-up:before {
	content: "\f077";
}

.fa-chevron-down:before {
	content: "\f078";
}

.fa-retweet:before {
	content: "\f079";
}

.fa-shopping-cart:before {
	content: "\f07a";
}

.fa-folder:before {
	content: "\f07b";
}

.fa-folder-open:before {
	content: "\f07c";
}

.fa-arrows-v:before {
	content: "\f07d";
}

.fa-arrows-h:before {
	content: "\f07e";
}

.fa-bar-chart-o:before,.fa-bar-chart:before {
	content: "\f080";
}

.fa-twitter-square:before {
	content: "\f081";
}

.fa-facebook-square:before {
	content: "\f082";
}

.fa-camera-retro:before {
	content: "\f083";
}

.fa-key:before {
	content: "\f084";
}

.fa-gears:before,.fa-cogs:before {
	content: "\f085";
}

.fa-comments:before {
	content: "\f086";
}

.fa-thumbs-o-up:before {
	content: "\f087";
}

.fa-thumbs-o-down:before {
	content: "\f088";
}

.fa-star-half:before {
	content: "\f089";
}

.fa-heart-o:before {
	content: "\f08a";
}

.fa-sign-out:before {
	content: "\f08b";
}

.fa-linkedin-square:before {
	content: "\f08c";
}

.fa-thumb-tack:before {
	content: "\f08d";
}

.fa-external-link:before {
	content: "\f08e";
}

.fa-sign-in:before {
	content: "\f090";
}

.fa-trophy:before {
	content: "\f091";
}

.fa-github-square:before {
	content: "\f092";
}

.fa-upload:before {
	content: "\f093";
}

.fa-lemon-o:before {
	content: "\f094";
}

.fa-phone:before {
	content: "\f095";
}

.fa-square-o:before {
	content: "\f096";
}

.fa-bookmark-o:before {
	content: "\f097";
}

.fa-phone-square:before {
	content: "\f098";
}

.fa-twitter:before {
	content: "\f099";
}

.fa-facebook-f:before,.fa-facebook:before {
	content: "\f09a";
}

.fa-github:before {
	content: "\f09b";
}

.fa-unlock:before {
	content: "\f09c";
}

.fa-credit-card:before {
	content: "\f09d";
}

.fa-feed:before,.fa-rss:before {
	content: "\f09e";
}

.fa-hdd-o:before {
	content: "\f0a0";
}

.fa-bullhorn:before {
	content: "\f0a1";
}

.fa-bell:before {
	content: "\f0f3";
}

.fa-certificate:before {
	content: "\f0a3";
}

.fa-hand-o-right:before {
	content: "\f0a4";
}

.fa-hand-o-left:before {
	content: "\f0a5";
}

.fa-hand-o-up:before {
	content: "\f0a6";
}

.fa-hand-o-down:before {
	content: "\f0a7";
}

.fa-arrow-circle-left:before {
	content: "\f0a8";
}

.fa-arrow-circle-right:before {
	content: "\f0a9";
}

.fa-arrow-circle-up:before {
	content: "\f0aa";
}

.fa-arrow-circle-down:before {
	content: "\f0ab";
}

.fa-globe:before {
	content: "\f0ac";
}

.fa-wrench:before {
	content: "\f0ad";
}

.fa-tasks:before {
	content: "\f0ae";
}

.fa-filter:before {
	content: "\f0b0";
}

.fa-briefcase:before {
	content: "\f0b1";
}

.fa-arrows-alt:before {
	content: "\f0b2";
}

.fa-group:before,.fa-users:before {
	content: "\f0c0";
}

.fa-chain:before,.fa-link:before {
	content: "\f0c1";
}

.fa-cloud:before {
	content: "\f0c2";
}

.fa-flask:before {
	content: "\f0c3";
}

.fa-cut:before,.fa-scissors:before {
	content: "\f0c4";
}

.fa-copy:before,.fa-files-o:before {
	content: "\f0c5";
}

.fa-paperclip:before {
	content: "\f0c6";
}

.fa-save:before,.fa-floppy-o:before {
	content: "\f0c7";
}

.fa-square:before {
	content: "\f0c8";
}

.fa-navicon:before,.fa-reorder:before,.fa-bars:before {
	content: "\f0c9";
}

.fa-list-ul:before {
	content: "\f0ca";
}

.fa-list-ol:before {
	content: "\f0cb";
}

.fa-strikethrough:before {
	content: "\f0cc";
}

.fa-underline:before {
	content: "\f0cd";
}

.fa-table:before {
	content: "\f0ce";
}

.fa-magic:before {
	content: "\f0d0";
}

.fa-truck:before {
	content: "\f0d1";
}

.fa-pinterest:before {
	content: "\f0d2";
}

.fa-pinterest-square:before {
	content: "\f0d3";
}

.fa-google-plus-square:before {
	content: "\f0d4";
}

.fa-google-plus:before {
	content: "\f0d5";
}

.fa-money:before {
	content: "\f0d6";
}

.fa-caret-down:before {
	content: "\f0d7";
}

.fa-caret-up:before {
	content: "\f0d8";
}

.fa-caret-left:before {
	content: "\f0d9";
}

.fa-caret-right:before {
	content: "\f0da";
}

.fa-columns:before {
	content: "\f0db";
}

.fa-unsorted:before,.fa-sort:before {
	content: "\f0dc";
}

.fa-sort-down:before,.fa-sort-desc:before {
	content: "\f0dd";
}

.fa-sort-up:before,.fa-sort-asc:before {
	content: "\f0de";
}

.fa-envelope:before {
	content: "\f0e0";
}

.fa-linkedin:before {
	content: "\f0e1";
}

.fa-rotate-left:before,.fa-undo:before {
	content: "\f0e2";
}

.fa-legal:before,.fa-gavel:before {
	content: "\f0e3";
}

.fa-dashboard:before,.fa-tachometer:before {
	content: "\f0e4";
}

.fa-comment-o:before {
	content: "\f0e5";
}

.fa-comments-o:before {
	content: "\f0e6";
}

.fa-flash:before,.fa-bolt:before {
	content: "\f0e7";
}

.fa-sitemap:before {
	content: "\f0e8";
}

.fa-umbrella:before {
	content: "\f0e9";
}

.fa-paste:before,.fa-clipboard:before {
	content: "\f0ea";
}

.fa-lightbulb-o:before {
	content: "\f0eb";
}

.fa-exchange:before {
	content: "\f0ec";
}

.fa-cloud-download:before {
	content: "\f0ed";
}

.fa-cloud-upload:before {
	content: "\f0ee";
}

.fa-user-md:before {
	content: "\f0f0";
}

.fa-stethoscope:before {
	content: "\f0f1";
}

.fa-suitcase:before {
	content: "\f0f2";
}

.fa-bell-o:before {
	content: "\f0a2";
}

.fa-coffee:before {
	content: "\f0f4";
}

.fa-cutlery:before {
	content: "\f0f5";
}

.fa-file-text-o:before {
	content: "\f0f6";
}

.fa-building-o:before {
	content: "\f0f7";
}

.fa-hospital-o:before {
	content: "\f0f8";
}

.fa-ambulance:before {
	content: "\f0f9";
}

.fa-medkit:before {
	content: "\f0fa";
}

.fa-fighter-jet:before {
	content: "\f0fb";
}

.fa-beer:before {
	content: "\f0fc";
}

.fa-h-square:before {
	content: "\f0fd";
}

.fa-plus-square:before {
	content: "\f0fe";
}

.fa-angle-double-left:before {
	content: "\f100";
}

.fa-angle-double-right:before {
	content: "\f101";
}

.fa-angle-double-up:before {
	content: "\f102";
}

.fa-angle-double-down:before {
	content: "\f103";
}

.fa-angle-left:before {
	content: "\f104";
}

.fa-angle-right:before {
	content: "\f105";
}

.fa-angle-up:before {
	content: "\f106";
}

.fa-angle-down:before {
	content: "\f107";
}

.fa-desktop:before {
	content: "\f108";
}

.fa-laptop:before {
	content: "\f109";
}

.fa-tablet:before {
	content: "\f10a";
}

.fa-mobile-phone:before,.fa-mobile:before {
	content: "\f10b";
}

.fa-circle-o:before {
	content: "\f10c";
}

.fa-quote-left:before {
	content: "\f10d";
}

.fa-quote-right:before {
	content: "\f10e";
}

.fa-spinner:before {
	content: "\f110";
}

.fa-circle:before {
	content: "\f111";
}

.fa-mail-reply:before,.fa-reply:before {
	content: "\f112";
}

.fa-github-alt:before {
	content: "\f113";
}

.fa-folder-o:before {
	content: "\f114";
}

.fa-folder-open-o:before {
	content: "\f115";
}

.fa-smile-o:before {
	content: "\f118";
}

.fa-frown-o:before {
	content: "\f119";
}

.fa-meh-o:before {
	content: "\f11a";
}

.fa-gamepad:before {
	content: "\f11b";
}

.fa-keyboard-o:before {
	content: "\f11c";
}

.fa-flag-o:before {
	content: "\f11d";
}

.fa-flag-checkered:before {
	content: "\f11e";
}

.fa-terminal:before {
	content: "\f120";
}

.fa-code:before {
	content: "\f121";
}

.fa-mail-reply-all:before,.fa-reply-all:before {
	content: "\f122";
}

.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before
	{
	content: "\f123";
}

.fa-location-arrow:before {
	content: "\f124";
}

.fa-crop:before {
	content: "\f125";
}

.fa-code-fork:before {
	content: "\f126";
}

.fa-unlink:before,.fa-chain-broken:before {
	content: "\f127";
}

.fa-question:before {
	content: "\f128";
}

.fa-info:before {
	content: "\f129";
}

.fa-exclamation:before {
	content: "\f12a";
}

.fa-superscript:before {
	content: "\f12b";
}

.fa-subscript:before {
	content: "\f12c";
}

.fa-eraser:before {
	content: "\f12d";
}

.fa-puzzle-piece:before {
	content: "\f12e";
}

.fa-microphone:before {
	content: "\f130";
}

.fa-microphone-slash:before {
	content: "\f131";
}

.fa-shield:before {
	content: "\f132";
}

.fa-calendar-o:before {
	content: "\f133";
}

.fa-fire-extinguisher:before {
	content: "\f134";
}

.fa-rocket:before {
	content: "\f135";
}

.fa-maxcdn:before {
	content: "\f136";
}

.fa-chevron-circle-left:before {
	content: "\f137";
}

.fa-chevron-circle-right:before {
	content: "\f138";
}

.fa-chevron-circle-up:before {
	content: "\f139";
}

.fa-chevron-circle-down:before {
	content: "\f13a";
}

.fa-html5:before {
	content: "\f13b";
}

.fa-css3:before {
	content: "\f13c";
}

.fa-anchor:before {
	content: "\f13d";
}

.fa-unlock-alt:before {
	content: "\f13e";
}

.fa-bullseye:before {
	content: "\f140";
}

.fa-ellipsis-h:before {
	content: "\f141";
}

.fa-ellipsis-v:before {
	content: "\f142";
}

.fa-rss-square:before {
	content: "\f143";
}

.fa-play-circle:before {
	content: "\f144";
}

.fa-ticket:before {
	content: "\f145";
}

.fa-minus-square:before {
	content: "\f146";
}

.fa-minus-square-o:before {
	content: "\f147";
}

.fa-level-up:before {
	content: "\f148";
}

.fa-level-down:before {
	content: "\f149";
}

.fa-check-square:before {
	content: "\f14a";
}

.fa-pencil-square:before {
	content: "\f14b";
}

.fa-external-link-square:before {
	content: "\f14c";
}

.fa-share-square:before {
	content: "\f14d";
}

.fa-compass:before {
	content: "\f14e";
}

.fa-toggle-down:before,.fa-caret-square-o-down:before {
	content: "\f150";
}

.fa-toggle-up:before,.fa-caret-square-o-up:before {
	content: "\f151";
}

.fa-toggle-right:before,.fa-caret-square-o-right:before {
	content: "\f152";
}

.fa-euro:before,.fa-eur:before {
	content: "\f153";
}

.fa-gbp:before {
	content: "\f154";
}

.fa-dollar:before,.fa-usd:before {
	content: "\f155";
}

.fa-rupee:before,.fa-inr:before {
	content: "\f156";
}

.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before {
	content: "\f157";
}

.fa-ruble:before,.fa-rouble:before,.fa-rub:before {
	content: "\f158";
}

.fa-won:before,.fa-krw:before {
	content: "\f159";
}

.fa-bitcoin:before,.fa-btc:before {
	content: "\f15a";
}

.fa-file:before {
	content: "\f15b";
}

.fa-file-text:before {
	content: "\f15c";
}

.fa-sort-alpha-asc:before {
	content: "\f15d";
}

.fa-sort-alpha-desc:before {
	content: "\f15e";
}

.fa-sort-amount-asc:before {
	content: "\f160";
}

.fa-sort-amount-desc:before {
	content: "\f161";
}

.fa-sort-numeric-asc:before {
	content: "\f162";
}

.fa-sort-numeric-desc:before {
	content: "\f163";
}

.fa-thumbs-up:before {
	content: "\f164";
}

.fa-thumbs-down:before {
	content: "\f165";
}

.fa-youtube-square:before {
	content: "\f166";
}

.fa-youtube:before {
	content: "\f167";
}

.fa-xing:before {
	content: "\f168";
}

.fa-xing-square:before {
	content: "\f169";
}

.fa-youtube-play:before {
	content: "\f16a";
}

.fa-dropbox:before {
	content: "\f16b";
}

.fa-stack-overflow:before {
	content: "\f16c";
}

.fa-instagram:before {
	content: "\f16d";
}

.fa-flickr:before {
	content: "\f16e";
}

.fa-adn:before {
	content: "\f170";
}

.fa-bitbucket:before {
	content: "\f171";
}

.fa-bitbucket-square:before {
	content: "\f172";
}

.fa-tumblr:before {
	content: "\f173";
}

.fa-tumblr-square:before {
	content: "\f174";
}

.fa-long-arrow-down:before {
	content: "\f175";
}

.fa-long-arrow-up:before {
	content: "\f176";
}

.fa-long-arrow-left:before {
	content: "\f177";
}

.fa-long-arrow-right:before {
	content: "\f178";
}

.fa-apple:before {
	content: "\f179";
}

.fa-windows:before {
	content: "\f17a";
}

.fa-android:before {
	content: "\f17b";
}

.fa-linux:before {
	content: "\f17c";
}

.fa-dribbble:before {
	content: "\f17d";
}

.fa-skype:before {
	content: "\f17e";
}

.fa-foursquare:before {
	content: "\f180";
}

.fa-trello:before {
	content: "\f181";
}

.fa-female:before {
	content: "\f182";
}

.fa-male:before {
	content: "\f183";
}

.fa-gittip:before,.fa-gratipay:before {
	content: "\f184";
}

.fa-sun-o:before {
	content: "\f185";
}

.fa-moon-o:before {
	content: "\f186";
}

.fa-archive:before {
	content: "\f187";
}

.fa-bug:before {
	content: "\f188";
}

.fa-vk:before {
	content: "\f189";
}

.fa-weibo:before {
	content: "\f18a";
}

.fa-renren:before {
	content: "\f18b";
}

.fa-pagelines:before {
	content: "\f18c";
}

.fa-stack-exchange:before {
	content: "\f18d";
}

.fa-arrow-circle-o-right:before {
	content: "\f18e";
}

.fa-arrow-circle-o-left:before {
	content: "\f190";
}

.fa-toggle-left:before,.fa-caret-square-o-left:before {
	content: "\f191";
}

.fa-dot-circle-o:before {
	content: "\f192";
}

.fa-wheelchair:before {
	content: "\f193";
}

.fa-vimeo-square:before {
	content: "\f194";
}

.fa-turkish-lira:before,.fa-try:before {
	content: "\f195";
}

.fa-plus-square-o:before {
	content: "\f196";
}

.fa-space-shuttle:before {
	content: "\f197";
}

.fa-slack:before {
	content: "\f198";
}

.fa-envelope-square:before {
	content: "\f199";
}

.fa-wordpress:before {
	content: "\f19a";
}

.fa-openid:before {
	content: "\f19b";
}

.fa-institution:before,.fa-bank:before,.fa-university:before {
	content: "\f19c";
}

.fa-mortar-board:before,.fa-graduation-cap:before {
	content: "\f19d";
}

.fa-yahoo:before {
	content: "\f19e";
}

.fa-google:before {
	content: "\f1a0";
}

.fa-reddit:before {
	content: "\f1a1";
}

.fa-reddit-square:before {
	content: "\f1a2";
}

.fa-stumbleupon-circle:before {
	content: "\f1a3";
}

.fa-stumbleupon:before {
	content: "\f1a4";
}

.fa-delicious:before {
	content: "\f1a5";
}

.fa-digg:before {
	content: "\f1a6";
}

.fa-pied-piper-pp:before {
	content: "\f1a7";
}

.fa-pied-piper-alt:before {
	content: "\f1a8";
}

.fa-drupal:before {
	content: "\f1a9";
}

.fa-joomla:before {
	content: "\f1aa";
}

.fa-language:before {
	content: "\f1ab";
}

.fa-fax:before {
	content: "\f1ac";
}

.fa-building:before {
	content: "\f1ad";
}

.fa-child:before {
	content: "\f1ae";
}

.fa-paw:before {
	content: "\f1b0";
}

.fa-spoon:before {
	content: "\f1b1";
}

.fa-cube:before {
	content: "\f1b2";
}

.fa-cubes:before {
	content: "\f1b3";
}

.fa-behance:before {
	content: "\f1b4";
}

.fa-behance-square:before {
	content: "\f1b5";
}

.fa-steam:before {
	content: "\f1b6";
}

.fa-steam-square:before {
	content: "\f1b7";
}

.fa-recycle:before {
	content: "\f1b8";
}

.fa-automobile:before,.fa-car:before {
	content: "\f1b9";
}

.fa-cab:before,.fa-taxi:before {
	content: "\f1ba";
}

.fa-tree:before {
	content: "\f1bb";
}

.fa-spotify:before {
	content: "\f1bc";
}

.fa-deviantart:before {
	content: "\f1bd";
}

.fa-soundcloud:before {
	content: "\f1be";
}

.fa-database:before {
	content: "\f1c0";
}

.fa-file-pdf-o:before {
	content: "\f1c1";
}

.fa-file-word-o:before {
	content: "\f1c2";
}

.fa-file-excel-o:before {
	content: "\f1c3";
}

.fa-file-powerpoint-o:before {
	content: "\f1c4";
}

.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before
	{
	content: "\f1c5";
}

.fa-file-zip-o:before,.fa-file-archive-o:before {
	content: "\f1c6";
}

.fa-file-sound-o:before,.fa-file-audio-o:before {
	content: "\f1c7";
}

.fa-file-movie-o:before,.fa-file-video-o:before {
	content: "\f1c8";
}

.fa-file-code-o:before {
	content: "\f1c9";
}

.fa-vine:before {
	content: "\f1ca";
}

.fa-codepen:before {
	content: "\f1cb";
}

.fa-jsfiddle:before {
	content: "\f1cc";
}

.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before
	{
	content: "\f1cd";
}

.fa-circle-o-notch:before {
	content: "\f1ce";
}

.fa-ra:before,.fa-resistance:before,.fa-rebel:before {
	content: "\f1d0";
}

.fa-ge:before,.fa-empire:before {
	content: "\f1d1";
}

.fa-git-square:before {
	content: "\f1d2";
}

.fa-git:before {
	content: "\f1d3";
}

.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before
	{
	content: "\f1d4";
}

.fa-tencent-weibo:before {
	content: "\f1d5";
}

.fa-qq:before {
	content: "\f1d6";
}

.fa-wechat:before,.fa-weixin:before {
	content: "\f1d7";
}

.fa-send:before,.fa-paper-plane:before {
	content: "\f1d8";
}

.fa-send-o:before,.fa-paper-plane-o:before {
	content: "\f1d9";
}

.fa-history:before {
	content: "\f1da";
}

.fa-circle-thin:before {
	content: "\f1db";
}

.fa-header:before {
	content: "\f1dc";
}

.fa-paragraph:before {
	content: "\f1dd";
}

.fa-sliders:before {
	content: "\f1de";
}

.fa-share-alt:before {
	content: "\f1e0";
}

.fa-share-alt-square:before {
	content: "\f1e1";
}

.fa-bomb:before {
	content: "\f1e2";
}

.fa-soccer-ball-o:before,.fa-futbol-o:before {
	content: "\f1e3";
}

.fa-tty:before {
	content: "\f1e4";
}

.fa-binoculars:before {
	content: "\f1e5";
}

.fa-plug:before {
	content: "\f1e6";
}

.fa-slideshare:before {
	content: "\f1e7";
}

.fa-twitch:before {
	content: "\f1e8";
}

.fa-yelp:before {
	content: "\f1e9";
}

.fa-newspaper-o:before {
	content: "\f1ea";
}

.fa-wifi:before {
	content: "\f1eb";
}

.fa-calculator:before {
	content: "\f1ec";
}

.fa-paypal:before {
	content: "\f1ed";
}

.fa-google-wallet:before {
	content: "\f1ee";
}

.fa-cc-visa:before {
	content: "\f1f0";
}

.fa-cc-mastercard:before {
	content: "\f1f1";
}

.fa-cc-discover:before {
	content: "\f1f2";
}

.fa-cc-amex:before {
	content: "\f1f3";
}

.fa-cc-paypal:before {
	content: "\f1f4";
}

.fa-cc-stripe:before {
	content: "\f1f5";
}

.fa-bell-slash:before {
	content: "\f1f6";
}

.fa-bell-slash-o:before {
	content: "\f1f7";
}

.fa-trash:before {
	content: "\f1f8";
}

.fa-copyright:before {
	content: "\f1f9";
}

.fa-at:before {
	content: "\f1fa";
}

.fa-eyedropper:before {
	content: "\f1fb";
}

.fa-paint-brush:before {
	content: "\f1fc";
}

.fa-birthday-cake:before {
	content: "\f1fd";
}

.fa-area-chart:before {
	content: "\f1fe";
}

.fa-pie-chart:before {
	content: "\f200";
}

.fa-line-chart:before {
	content: "\f201";
}

.fa-lastfm:before {
	content: "\f202";
}

.fa-lastfm-square:before {
	content: "\f203";
}

.fa-toggle-off:before {
	content: "\f204";
}

.fa-toggle-on:before {
	content: "\f205";
}

.fa-bicycle:before {
	content: "\f206";
}

.fa-bus:before {
	content: "\f207";
}

.fa-ioxhost:before {
	content: "\f208";
}

.fa-angellist:before {
	content: "\f209";
}

.fa-cc:before {
	content: "\f20a";
}

.fa-shekel:before,.fa-sheqel:before,.fa-ils:before {
	content: "\f20b";
}

.fa-meanpath:before {
	content: "\f20c";
}

.fa-buysellads:before {
	content: "\f20d";
}

.fa-connectdevelop:before {
	content: "\f20e";
}

.fa-dashcube:before {
	content: "\f210";
}

.fa-forumbee:before {
	content: "\f211";
}

.fa-leanpub:before {
	content: "\f212";
}

.fa-sellsy:before {
	content: "\f213";
}

.fa-shirtsinbulk:before {
	content: "\f214";
}

.fa-simplybuilt:before {
	content: "\f215";
}

.fa-skyatlas:before {
	content: "\f216";
}

.fa-cart-plus:before {
	content: "\f217";
}

.fa-cart-arrow-down:before {
	content: "\f218";
}

.fa-diamond:before {
	content: "\f219";
}

.fa-ship:before {
	content: "\f21a";
}

.fa-user-secret:before {
	content: "\f21b";
}

.fa-motorcycle:before {
	content: "\f21c";
}

.fa-street-view:before {
	content: "\f21d";
}

.fa-heartbeat:before {
	content: "\f21e";
}

.fa-venus:before {
	content: "\f221";
}

.fa-mars:before {
	content: "\f222";
}

.fa-mercury:before {
	content: "\f223";
}

.fa-intersex:before,.fa-transgender:before {
	content: "\f224";
}

.fa-transgender-alt:before {
	content: "\f225";
}

.fa-venus-double:before {
	content: "\f226";
}

.fa-mars-double:before {
	content: "\f227";
}

.fa-venus-mars:before {
	content: "\f228";
}

.fa-mars-stroke:before {
	content: "\f229";
}

.fa-mars-stroke-v:before {
	content: "\f22a";
}

.fa-mars-stroke-h:before {
	content: "\f22b";
}

.fa-neuter:before {
	content: "\f22c";
}

.fa-genderless:before {
	content: "\f22d";
}

.fa-facebook-official:before {
	content: "\f230";
}

.fa-pinterest-p:before {
	content: "\f231";
}

.fa-whatsapp:before {
	content: "\f232";
}

.fa-server:before {
	content: "\f233";
}

.fa-user-plus:before {
	content: "\f234";
}

.fa-user-times:before {
	content: "\f235";
}

.fa-hotel:before,.fa-bed:before {
	content: "\f236";
}

.fa-viacoin:before {
	content: "\f237";
}

.fa-train:before {
	content: "\f238";
}

.fa-subway:before {
	content: "\f239";
}

.fa-medium:before {
	content: "\f23a";
}

.fa-yc:before,.fa-y-combinator:before {
	content: "\f23b";
}

.fa-optin-monster:before {
	content: "\f23c";
}

.fa-opencart:before {
	content: "\f23d";
}

.fa-expeditedssl:before {
	content: "\f23e";
}

.fa-battery-4:before,.fa-battery-full:before {
	content: "\f240";
}

.fa-battery-3:before,.fa-battery-three-quarters:before {
	content: "\f241";
}

.fa-battery-2:before,.fa-battery-half:before {
	content: "\f242";
}

.fa-battery-1:before,.fa-battery-quarter:before {
	content: "\f243";
}

.fa-battery-0:before,.fa-battery-empty:before {
	content: "\f244";
}

.fa-mouse-pointer:before {
	content: "\f245";
}

.fa-i-cursor:before {
	content: "\f246";
}

.fa-object-group:before {
	content: "\f247";
}

.fa-object-ungroup:before {
	content: "\f248";
}

.fa-sticky-note:before {
	content: "\f249";
}

.fa-sticky-note-o:before {
	content: "\f24a";
}

.fa-cc-jcb:before {
	content: "\f24b";
}

.fa-cc-diners-club:before {
	content: "\f24c";
}

.fa-clone:before {
	content: "\f24d";
}

.fa-balance-scale:before {
	content: "\f24e";
}

.fa-hourglass-o:before {
	content: "\f250";
}

.fa-hourglass-1:before,.fa-hourglass-start:before {
	content: "\f251";
}

.fa-hourglass-2:before,.fa-hourglass-half:before {
	content: "\f252";
}

.fa-hourglass-3:before,.fa-hourglass-end:before {
	content: "\f253";
}

.fa-hourglass:before {
	content: "\f254";
}

.fa-hand-grab-o:before,.fa-hand-rock-o:before {
	content: "\f255";
}

.fa-hand-stop-o:before,.fa-hand-paper-o:before {
	content: "\f256";
}

.fa-hand-scissors-o:before {
	content: "\f257";
}

.fa-hand-lizard-o:before {
	content: "\f258";
}

.fa-hand-spock-o:before {
	content: "\f259";
}

.fa-hand-pointer-o:before {
	content: "\f25a";
}

.fa-hand-peace-o:before {
	content: "\f25b";
}

.fa-trademark:before {
	content: "\f25c";
}

.fa-registered:before {
	content: "\f25d";
}

.fa-creative-commons:before {
	content: "\f25e";
}

.fa-gg:before {
	content: "\f260";
}

.fa-gg-circle:before {
	content: "\f261";
}

.fa-tripadvisor:before {
	content: "\f262";
}

.fa-odnoklassniki:before {
	content: "\f263";
}

.fa-odnoklassniki-square:before {
	content: "\f264";
}

.fa-get-pocket:before {
	content: "\f265";
}

.fa-wikipedia-w:before {
	content: "\f266";
}

.fa-safari:before {
	content: "\f267";
}

.fa-chrome:before {
	content: "\f268";
}

.fa-firefox:before {
	content: "\f269";
}

.fa-opera:before {
	content: "\f26a";
}

.fa-internet-explorer:before {
	content: "\f26b";
}

.fa-tv:before,.fa-television:before {
	content: "\f26c";
}

.fa-contao:before {
	content: "\f26d";
}

.fa-500px:before {
	content: "\f26e";
}

.fa-amazon:before {
	content: "\f270";
}

.fa-calendar-plus-o:before {
	content: "\f271";
}

.fa-calendar-minus-o:before {
	content: "\f272";
}

.fa-calendar-times-o:before {
	content: "\f273";
}

.fa-calendar-check-o:before {
	content: "\f274";
}

.fa-industry:before {
	content: "\f275";
}

.fa-map-pin:before {
	content: "\f276";
}

.fa-map-signs:before {
	content: "\f277";
}

.fa-map-o:before {
	content: "\f278";
}

.fa-map:before {
	content: "\f279";
}

.fa-commenting:before {
	content: "\f27a";
}

.fa-commenting-o:before {
	content: "\f27b";
}

.fa-houzz:before {
	content: "\f27c";
}

.fa-vimeo:before {
	content: "\f27d";
}

.fa-black-tie:before {
	content: "\f27e";
}

.fa-fonticons:before {
	content: "\f280";
}

.fa-reddit-alien:before {
	content: "\f281";
}

.fa-edge:before {
	content: "\f282";
}

.fa-credit-card-alt:before {
	content: "\f283";
}

.fa-codiepie:before {
	content: "\f284";
}

.fa-modx:before {
	content: "\f285";
}

.fa-fort-awesome:before {
	content: "\f286";
}

.fa-usb:before {
	content: "\f287";
}

.fa-product-hunt:before {
	content: "\f288";
}

.fa-mixcloud:before {
	content: "\f289";
}

.fa-scribd:before {
	content: "\f28a";
}

.fa-pause-circle:before {
	content: "\f28b";
}

.fa-pause-circle-o:before {
	content: "\f28c";
}

.fa-stop-circle:before {
	content: "\f28d";
}

.fa-stop-circle-o:before {
	content: "\f28e";
}

.fa-shopping-bag:before {
	content: "\f290";
}

.fa-shopping-basket:before {
	content: "\f291";
}

.fa-hashtag:before {
	content: "\f292";
}

.fa-bluetooth:before {
	content: "\f293";
}

.fa-bluetooth-b:before {
	content: "\f294";
}

.fa-percent:before {
	content: "\f295";
}

.fa-gitlab:before {
	content: "\f296";
}

.fa-wpbeginner:before {
	content: "\f297";
}

.fa-wpforms:before {
	content: "\f298";
}

.fa-envira:before {
	content: "\f299";
}

.fa-universal-access:before {
	content: "\f29a";
}

.fa-wheelchair-alt:before {
	content: "\f29b";
}

.fa-question-circle-o:before {
	content: "\f29c";
}

.fa-blind:before {
	content: "\f29d";
}

.fa-audio-description:before {
	content: "\f29e";
}

.fa-volume-control-phone:before {
	content: "\f2a0";
}

.fa-braille:before {
	content: "\f2a1";
}

.fa-assistive-listening-systems:before {
	content: "\f2a2";
}

.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before
	{
	content: "\f2a3";
}

.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before {
	content: "\f2a4";
}

.fa-glide:before {
	content: "\f2a5";
}

.fa-glide-g:before {
	content: "\f2a6";
}

.fa-signing:before,.fa-sign-language:before {
	content: "\f2a7";
}

.fa-low-vision:before {
	content: "\f2a8";
}

.fa-viadeo:before {
	content: "\f2a9";
}

.fa-viadeo-square:before {
	content: "\f2aa";
}

.fa-snapchat:before {
	content: "\f2ab";
}

.fa-snapchat-ghost:before {
	content: "\f2ac";
}

.fa-snapchat-square:before {
	content: "\f2ad";
}

.fa-pied-piper:before {
	content: "\f2ae";
}

.fa-first-order:before {
	content: "\f2b0";
}

.fa-yoast:before {
	content: "\f2b1";
}

.fa-themeisle:before {
	content: "\f2b2";
}

.fa-google-plus-circle:before,.fa-google-plus-official:before {
	content: "\f2b3";
}

.fa-fa:before,.fa-font-awesome:before {
	content: "\f2b4";
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.sr-only-focusable:active,.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: #333333;
	line-height: 1.4;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1 {
	font-size: 28px;
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 0.6em 0;
}

h2 {
	font-size: 24px;
	font-size: 1.71429rem;
	font-weight: bold;
	margin: 0 0 0.6em 0;
	display: table;
	border-bottom: 2px solid #F15A24;
}

h3 {
	font-size: 20px;
	font-size: 1.42857rem;
	font-weight: bold;
	margin: 0 0 0.6em 0;
}

h4 {
	font-size: 16px;
	font-size: 1.14286rem;
	font-weight: bold;
	margin: 0 0 0.6em 0;
}

h5 {
	font-size: 15px;
	font-size: 1.07143rem;
	margin: 0 0 0.6em 0;
}

h6 {
	font-size: 15px;
	font-size: 1.07143rem;
	margin: 0 0 0.6em 0;
}

/*paragraph*/
p {
	margin: 0 0 1.4em 0;
}

b,strong {
	font-weight: bold;
}

i,em {
	font-style: italic;
}

/*blockquote*/
blockquote {
	font-style: italic;
	font-size: 1.2em;
	color: #AFA9A0;
	margin: 0 0 1.4em 0;
}

blockquote:before {
	color: #AFA9A0;
	content: "\00ab\0020";
	font-size: 1.2em;
	line-height: 0.1em;
}

blockquote:after {
	color: #AFA9A0;
	content: "\0020\00bb";
	font-size: 1.2em;
	line-height: 0.1em;
}

blockquote>p:first-child {
	display: inline;
}

pre {
	background: #f2f2f2;
	border-left: 4px solid #a0a0a0;
	font-family: monospace;
	padding: 10px 12px;
	margin: 0 0 1.4em 0;
	overflow-y: hidden;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

/*link*/
a {
	text-decoration: none;
	color: #151515;
	display: inline-block;
}

a:hover,a:focus {
	color: #333333;
}

/*liste*/
ul {
	list-style: none;
}

ul,ol {
	margin-left: 10px;
	margin-bottom: 1.4em;
	padding: 0;
}

ul li,ol li {
	margin-bottom: 0.6em;
}

ul>li {
	padding-left: 10px;
}

/*ul>li:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #333333;
}*/
ul>li ul {
	padding-left: 10px;
}

ul>li ul li {
	padding-left: 10px;
}

ol {
	counter-reset: item;
	list-style: none;
	margin-left: 10px;
	padding: 0;
}

ol li {
	counter-increment: item;
}

ol li:before {
	content: counters(item, ".") " ";
	padding-right: 10px;
	font-weight: bold;
	color: #000000;
}

ul.reset-list,ul.reset-list>li {
	margin: 0;
	padding: 0;
}

ul.reset-list>li:before {
	display: none;
}

html,body {
	height: 100%;
}

body {
	display: table;
	table-layout: fixed;
	width: 100%;
}

header {
	position: fixed;
	z-index: 9;
	top: 0;
	width: 100%;
	background-color: #BBBBBB;
}

header #head {
	overflow: hidden;
	position: relative;
}

header #head .wrapp {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

header #languette {
	overflow: hidden;
	background-color: #000;
	z-index: 10;
}

header #languette .languette_mess {
	color: #EEEEEE;
	text-align: center;
	text-transform: uppercase;
	padding: 1.2em;
}

header nav ul {
	margin-left: 0;
}

header nav li:before {
	display: none;
}

/*CONTENT*/
.page-content {
	overflow: hidden;
	margin-top: 50px;
	padding-bottom: 50px;
}

/*FOOTER*/
footer {
	background: #444444;
	color: #BBBBBB;
	font-size: 12px;
	font-size: 0.85714rem;
}

footer.footer-sticky {
	display: table-row;
	height: 1px;
	min-height: 1px;
}

footer>.footer-inner-wrap {
	padding-top: 20px;
	padding-bottom: 20px;
}

/*---Home layout---*/
.bandeau-intro {
	background-color: #CCCCCC;
	padding: 2% 0;
	margin-bottom: 4%;
	font-size: 18px;
	font-size: 1.28571rem;
	text-align: center;
}

.bandeau-intro h1 {
	margin: auto;
	margin-bottom: 10%;
}

.article .image {
	margin: 0 14%;
}

#sidebar {
	float: left;
	width: 200px;
}

#sidebar .inner-sidebar {
	background-color: #BBBBBB;
	overflow: hidden;
	padding: 10px;
}

.Listes_des_projets {
	margin-top: 1.5em;
}

.Listes_des_projets .text-center {
	font-size: 40px;
	font-weight: 600;
	color: #212121;
	padding: 20px 0 0;
	font-family: 'Roboto', sans-serif;
	position: relative;
	margin-bottom: 10px;
}

@media ( max-width : 767px) {
	.Listes_des_projets .text-center {
		font-size: 30px;
	}
}

.Listes_des_projets .text-center:after {
	content: '';
	background-color: #0681d0;
	height: 2px;
	width: 230px;
	margin: 0 auto;
	text-align: center;
	display: block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
}

#page_173 .Listes_des_projets .text-center:after {
	background-color: #00aeef;
}

#page_174 .Listes_des_projets .text-center:after {
	background-color: #ffd17e;
}

#page_175 .Listes_des_projets .text-center:after {
	background-color: #dd585c;
}

#page_176 .Listes_des_projets .text-center:after {
	background-color: #17a88e;
}

.Listes_des_projets .fa {
	font-size: 27px;
	font-weight: thin;
	width: 70px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	color: #fff;
	margin: 0 auto;
	display: block;
	background-color: #0681d0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	display: none;
}

.Listes_des_projets p {
	font-size: 17px;
	padding: 10px 0;
	color: #999;
	margin-bottom: 0;
	text-align: center;
}

.Listes_des_projets .line_dariel {
	text-align: left;
}

.Listes_des_projets p.line_dariel {
	color: #0681d0;
	font-size: 16px;
}

.line_dariel a:first-child {
	color: #666;
}

.line_dariel a {
	font-size: 17px;
	color: #666;
	text-transform: none;
}
.line_dariel a:hover {
	text-decoration: none;
}

.Listes_des_projets form {
	margin-top: 2em;
}

.Listes_des_projets form button {
	float: right;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 13px;
	background: #0a599b;
	border-bottom: 3px solid #084578;
}

.Listes_des_projets .reforme_default {
	margin-top: 2em;
	text-align: center;
}

.Listes_des_projets .reforme_default h2 {
	border: none;
	margin-bottom: 5px;
}

.Listes_des_projets .reforme_default h4 {
	color: #4e4e4e;
	text-align: left;
}

.Listes_des_projets .reforme_default .reforme_date {
	color: #121212;
	font-size: 17px;
	text-align: left;
	display: inline-block;
	width: 100%;
}

.Listes_des_projets .reforme_default p {
	text-align: left;
	line-height: 30px;
}

@media ( max-width : 991px) {
	.Listes_des_projets .reforme_default p {
		line-height: 23px;
		font-size: 15px;
	}
}

.Listes_des_projets .reforme_default table {
	margin-top: 0.7em;
	margin-bottom: 0.7em;
}

.Listes_des_projets .reforme_default table td {
	padding: 10px 45px 5px;
	color: #fff;
	font-size: 17px;
	border-right: 2px solid #1096c9;
}

.Listes_des_projets .reforme_default table td:last-child {
	border-right: none;
}

.Listes_des_projets .reforme_default table td span {
	font-weight: bold;
	color: #fff;
}

@media ( max-width : 767px) {
	.Listes_des_projets .reforme_default table td span {
		display: inline-block;
	}
}

@media ( max-width : 991px) {
	.Listes_des_projets .reforme_default table td {
		font-size: 15px;
		padding: 5px 10px 5px;
	}
}

.Listes_des_projets .reforme_default:after {
	content: '';
	height: 1px;
	width: 250px;
	display: inline-block;
	text-align: center;
	background-color: #999;
	margin-bottom: 1em;
	margin-top: 2em;
}

.Listes_des_projets .reforme_nb1 h2 {
	color: #18c0ff;
}

.Listes_des_projets .reforme_nb1 img {
	border: 3px solid #18c0ff;
}

.Listes_des_projets .reforme_nb1 table {
	background-color: #18c0ff;
}

.Listes_des_projets .reforme_nb2 h2 {
	color: #17a88e;
}

.Listes_des_projets .reforme_nb2 img {
	border: 3px solid #17a88e;
}

.Listes_des_projets .reforme_nb2 table {
	background-color: #17a88e;
}

.Listes_des_projets .reforme_nb2 table td {
	border-right-color: #0e957d;
}

.Listes_des_projets .reforme_nb3 h2 {
	color: #dd585c;
}

.Listes_des_projets .reforme_nb3 img {
	border: 3px solid #dd585c;
}

.Listes_des_projets .reforme_nb3 table {
	background-color: #dd585c;
}

.Listes_des_projets .reforme_nb3 table td {
	border-right-color: #c8474a;
}

.Listes_des_projets .reforme_nb4 h2 {
	color: #f2c26a;
}

.Listes_des_projets .reforme_nb4 img {
	border: 3px solid #f2c26a;
}

.Listes_des_projets .reforme_nb4 table {
	background-color: #f2c26a;
}

.Listes_des_projets .reforme_nb4 table td {
	border-right-color: #c39540;
}

.top-header {
	padding: 1em 0em;
	background: #0074bd;
	border-top: 5px solid #F7B400;
}

@media screen and (max-width: 576px) {
	.header-address {
		float: none;
		width: 100%;
		text-align: center;
	}
}

.header-address ul li {
	display: inline-block;
	margin-right: 0.5em;
}

.header-address ul li:before {
	display: none;
}

.header-address ul li a {
	font-size: 0.9em;
	color: #fff;
	display: inline-block;
	cursor: pointer;
}

.top-social ul {
	padding: 0em;
	list-style: none;
	text-align: right;
}

.top-social ul li {
	display: inline-block;
	margin-right: 1em;
}

.top-social ul li a {
	vertical-align: -webkit-baseline-middle;
}

a {
	text-decoration: none;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	font-family: sans-serif;
}

.banner-w3ls {
	position: relative;
}

.banner-w3ls .header {
	margin: 0 auto;
	padding: 0;
	height: 926px;
}

@media ( max-width : 1050px) {
	.banner-w3ls .header {
		height: 710px;
	}
}

@media ( max-width : 1024px) {
	.banner-w3ls .header {
		height: 676px;
	}
}

@media ( max-width : 1600px) {
	.banner-w3ls .header {
		height: 796px;
	}
}

@media ( max-width : 1080px) {
	.banner-w3ls .header {
		height: 750px;
	}
}

@media ( max-width : 768px) {
	.banner-w3ls .header {
		height: 600px;
	}
}

@media ( max-width : 736px) {
	.banner-w3ls .header {
		height: 350px;
	}
}

@media ( max-width : 320px) {
	.banner-w3ls .header {
		height: 265px;
	}
}

.banner-w3ls .header .bgfader,.banner-w3ls .header .bgfader .image {
	position: absolute;
	z-index: -2;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-attachment: fixed;
	display: none;
}

.banner-w3ls .header .bgfader .bgfader-overlay {
	z-index: -1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.banner-w3ls .header .bgfader .image {
	display: none;
	max-width: 100%;
	height: auto !important;
}

@media ( max-width : 736px) {
	section.banner-w3ls {
		padding-top: 14em;
	}
}

.title_banner {  
	padding: 400px 160px 40px;
	color: #fff; 
	font-family: 'Roboto', sans-serif;
	margin: 0 auto;
	border: none;
	text-shadow: 0 3px 5px #000;
}
 

/*@media ( max-width : 1600px) {
	section .title_banner {
		padding: 220px 160px 40px;
	}
}*/

@media ( max-width : 1280px) {
	section .title_banner h3 {
		font-size: 30px; 
	}
}

@media ( max-width : 1080px) {
	/*section .title_banner { 
		padding: 110px 55px 30px;
	}*/

	section .title_banner h3 {
		font-size: 25px; 
	}
}

@media ( max-width : 1050px) {
	/*section .title_banner { 
		padding: 110px 55px 30px;
	}*/

	section .title_banner h3 {
		font-size: 25px; 
	}
}

@media ( max-width : 1024px) {
	/*section .title_banner { 
		padding: 110px 55px 20px;
	}*/

	section .title_banner h3 {
		font-size: 25px; 
	}
}

@media ( max-width : 900px) {
	section .title_banner { 
		padding: 360px 70px 15px;
	}

	section .title_banner h3 {
		font-size: 20px; 
	}
}

@media ( max-width : 768px) {
	/*section .title_banner { 
		padding: 160px 55px 15px;
	}*/

	section .title_banner h3 {
		font-size: 26px; 
	}
}

@media ( max-width : 736px) {
	section .title_banner { 
		padding: 400px 45px 0px;
	}
	section .title_banner h3 {
		font-size: 17px; 
	}
}

@media ( max-width : 610px) {
	section .title_banner { 
		padding: 200px 45px 0px;
	}
	section .title_banner h3 {
		font-size: 17px; 
	}
}

@media ( max-width : 480px) {
	section .title_banner { 
		padding: 160px 45px 0px;
	}

	section .title_banner h3 {
		font-size: 17px; 
	}

	.title_banner p a {
		font-size: 12px;
	}
}

@media ( max-width : 384px) {
	section .title_banner { 
		padding: 190px 40px 0px;
	}
	section .title_banner h3 {
		font-size: 17px; 
	}
}

@media ( max-width : 375px) {
	section .title_banner { 
		padding: 190px 40px 0px;
	}
	section .title_banner h3 {
		font-size: 17px; 
	}
}

@media ( max-width : 320px) {
	section .title_banner {
		padding: 190px 30px 0px;

	}
	section .title_banner h3 {
		font-size: 17px; 
	}
}

section.banner-w3ls p.text-center {
	font-size: 17px;
	font-weight: normal;
	color: #fff;
	line-height: 35px;
	text-shadow: 0 3px 5px #000;
}

@media ( max-width : 1080px) { 
	section.banner-w3ls p.text-center {
		font-size: 16px;
	}
}

@media ( max-width : 736px) {
	section.banner-w3ls p.text-center {
		font-size: 14px;
		line-height: 30px;
	}
}

@media ( max-width : 320px) {
	section.banner-w3ls p.text-center {
		font-size: 13px;
		line-height: 27px;
	}
}

section.special-w3layouts {
	padding: 25px 0;
	background: #fff;
}

section.special-w3layouts p.text-center {
	font-size: 16px;
	font-weight: normal;
	color: #999;
	line-height: 30px;
	padding-bottom: 25px;
}

section.special-w3layouts h4.text-center {
	font-size: 22px;
	font-weight: normal;
	color: #000;
	padding: 10px 0 0;
	margin-bottom: 0;
	text-transform: capitalize;
	font-family: 'Roboto', sans-serif;
}

section.special-w3layouts p.special-p1 {
	font-size: 15px;
	font-weight: normal;
	color: #999;
	text-align: center;
	line-height: 30px;
}

section.special-w3layouts h3.text-center {
	font-size: 40px;
	font-weight: 600;
	color: #212121;
	padding: 20px 0 0;
	font-family: "Roboto", sans-serif;
	position: relative;
	margin-bottom: 15px;
}

@media ( max-width : 767px) {
	section.special-w3layouts h3.text-center {
		font-size: 35px;
	}
}

section.special-w3layouts h3.text-center:after {
	content: '';
	background-color: #0576be;
	height: 2px;
	width: 230px;
	margin: 0 auto;
	text-align: center;
	display: block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
}

.navbar {
	min-height: 180px;
}

/*@media ( min-width : 992px) and ( max-width : 1199px) { 
	.navbar-collapse.collapse {
		display: inline-block !important;
		width: 67%;
	}
 }*/
@media ( min-width : 992px) {
	.navbar .navbar-right {
		padding-top: 3.4em;
	}
}

.navbar .navbar-right li.active {
	background-color: #dd585c;
	padding: 0;
}

.navbar .navbar-right li.active a {
	background: none;
	color: #fff;
}

.navbar .navbar-right li.active a:hover {
	background: none;
	color: #fff;
}

.navbar .navbar-right li a {
	color: #777;
	font-size: 14px;
	font-weight: normal;
	font-family: 'Roboto', sans-serif;
	padding: 5px 7px;
	text-transform: uppercase;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
}

.navbar .navbar-right li a.active {
	color: #fff;
	background-color: #212121;
}

.navbar .navbar-right li a:hover {
	color: #fff;
	background-color: #212121;
}

.navbar .navbar-right li:before {
	display: none;
}

.navbar .navbar-brand h1 {
	margin: 0;
}

.navbar .navbar-brand p {
	font-size: 11px;
	margin-top: 5px;
	line-height: 15px;
	text-align: center;
}

.navbar .header-top {
	background: #212121;
	min-height: 45px;
}

.navbar .header-top .header-top_left {
	display: inline-block;
}

.navbar .header-top .header-top_left ul {
	padding-top: 0.8em;
	margin-bottom: 0;
	margin-left: 0;
}

.navbar .header-top .header-top_left ul li {
	display: inline-block;
	padding-top: 0.2em;
	padding-right: 1em;
	border-right: 1px solid #333;
}

.navbar .header-top .header-top_left ul li a:before {
	display: inline-block;
	font: normal normal normal 14px/ 1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #cdcdcd;
	margin-right: 0.3em;
	font-size: 1.2em;
}

.navbar .header-top .header-top_left ul li:nth-child(1) a:before {
	content: "\f29c";
}

.navbar .header-top .header-top_left ul li:nth-child(2) a:before {
	content: "\f0e0";
}

.navbar .header-top .header-top_left ul li:nth-child(3) a:before {
	content: "\f0c0";
}

.navbar .header-top .header-top_left ul li:last-child {
	border-right: none;
	padding-left: 10px;
}

.navbar .header-top .header-top_left ul li a {
	color: #fff;
	font-size: 12px;
}

.navbar .header-top .header-top_left ul li a i {
	color: #cdcdcd;
	margin-right: 0.3em;
	font-size: 1.2em;
}

.navbar .header-top .header-top_right {
	display: inline-block;
	float: right;
	padding-top: 0.8em;
}

@media ( max-width : 767px) {
	.navbar .header-top .text-size {
		display: none;
	}
}

.header-top .text-size {
	display: inline-block;
}

.navbar .header-top .header-top_right .text-size ul {
	margin-left: 5px;
	margin-right: 0;
	padding: 0;
}

.header-top .text-size ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
}

.header-top .text-size ul li a {
	background-color: #409076;
	padding: 0.4em;
	border-radius: 20px;
	width: 25px;
	height: 25px;
	text-align: center;
	margin-right: 0.15em;
}

@media ( max-width : 360px) {
	.navbar .header-top .header-top_right {
		padding-bottom: 1em;
	}
}

.navbar .header-top .header-top_right ul {
	display: inline-block;
	margin-right: 0.5em;
	margin-bottom: 0;
}

@media ( max-width : 360px) {
	.navbar .header-top .header-top_right ul {
		display: none;
	}
}

.navbar .header-top .header-top_right ul li:before {
	display: none;
}

.navbar .header-top .header-top_right ul li a {
	font-size: 12px;
	color: #e6e6e6;
	font-family: "Trebuchet MS";
}

.navbar .header-top .header-top_right select {
	background: none;
	padding: 1px 3px;
	color: #fff;
	border: 1px solid #0d95ec;
}

.navbar .header-top .header-top_right select option {
	color: #fff;
	background: #0074BD;
}

@media ( max-width : 991px) {
	.navbar .collapse.in {
		background: #fafafa;
	}
}

@media ( max-width : 767px) {
	.navbar .collapse.in {
		background: #fafafa;
		display: inline-block !important;
		width: 100%;
		padding-right: 0 !important;
	}
}

@media ( max-width : 1279px) {
	.navbar .navbar-nav {
		margin-right: 0px;
	}
	.navbar .navbar-nav li {
		float: none;
		margin-bottom: 20px;
	}
}

@media ( max-width : 1279px) {
	.navbar-toggle {
		display: block !important;
		position: absolute;
		right: 0;
		margin-top: 25px;
	}
}

@media ( min-width : 992px) {
	.navbar-toggle {
		display: none;
	}
}

.footer {
	padding: 50px 0 0;
	background-color: #212121;
	text-align: center;
	text-align: -webkit-center;
	text-align: -moz-center;
}

.footer_bootom {
	background-color: #0074BD;
}

@media ( min-width : 992px) { /*.footer {
		margin-top: 100px;
	}*/
}

.footer h3 {
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	font-family: 'Roboto', sans-serif;
	padding-bottom: 10px;
	text-align: left;
	text-transform: uppercase;
	font-weight: 600;
}

@media ( max-width : 767px) {
	.footer h3 {
		padding-bottom: 20px;
		font-size: 21px;
		text-align: left;
	}
}

@media ( max-width : 991px) {
	.footer h3 {
		text-align: left;
		padding-bottom: 0;
	}
}

.footer .info-links,.footer .footer-links {
	list-style: none;
	text-align: justify;
	margin-left: 0;
}

@media ( max-width : 991px) {
	.footer .info-links,.footer .footer-links {
		margin-left: 0;
	}
}

.footer .info-links li,.footer .footer-links li {
	padding-bottom: 0;
	text-align: left;
	list-style: none;
	color: #fff;
	padding-left: 0;
}

.footer .info-links li:before,.footer .footer-links li:before {
	display: none;
}

.footer .info-links li a,.footer .footer-links li a {
	font-size: 13px;
	font-weight: normal;
	color: #fff;
}

.footer .info-links li a i.fa,.footer .footer-links li a i.fa {
	margin-right: 5px;
}

.footer .info-links li:hover a,.footer .footer-links li:hover a {
	padding-left: 10px;
	transition: all 0.5s;
}

.footer .footer-links {
	margin-left: 0;
}

@media ( max-width : 991px) {
	.footer .footer-links {
		margin-left: 0;
	}
}

.footer .contact-info {
	text-align: justify;
	margin-left: 0;
	margin-top: -13px;
}

@media ( max-width : 991px) {
	.footer .contact-info {
		margin-left: 0;
		margin-bottom: 15px;
	}
}

.footer .contact-info .address,.footer .contact-info .phone {
	margin-bottom: 5px;
}

.footer .contact-info i {
	color: #fff;
	font-size: 22px;
	margin: 25px 15px 10px 0px;
	display: inline-block;
}

.footer .contact-info .p3 {
	padding: 0;
	display: inline-block;
	color: #fff;
	vertical-align: middle;
	margin: -40px 0 0px;
	font-size: 14px;
	font-weight: 500;
}

.footer .contact-info .p4 {
	padding: 0;
	display: block;
	color: #fff;
	vertical-align: middle;
	font-weight: 500;
	font-size: 14px;
	margin: -19px 0 0 38px;
}

.footer .contact-info .p5 {
	padding: 0;
	display: inline-block;
	color: #fff;
	vertical-align: middle;
	margin: -40px 0 0px;
	font-size: 14px;
	font-weight: 500;
}

.footer .contact-info .email-info p {
	margin: -10px 0 0;
}

.footer .contact-info .p5 a {
	text-decoration: none;
	color: #fff;
}

.footer .contact-info .p6 {
	padding: 0;
	display: block;
	color: #fff;
	vertical-align: middle;
	font-weight: 500;
	font-size: 14px;
	margin: -19px 0 0 41px;
}

.footer .contact-info .p6 a {
	text-decoration: none;
	color: #fff;
}

.footer .subscribe input {
	width: 95%;
	height: 32px;
	color: #000;
	font-size: 13px;
	font-weight: normal;
	padding: 0 10px;
	margin-bottom: 0;
	outline: none; 
}

.footer .subscribe .btn-outline {
	border: solid 2px #fff;
	font-size: 15px;
	padding: 4px 10px;
	color: #fff;
	background: 0 0;
	font-family: 'Roboto', sans-serif;
	transition: all .3s ease-in-out;
}

.footer .subscribe .btn-outline:hover {
	border: solid 2px #fff;
	color: #0074BD;
	background: #fff;
}

.footer .social-icons2 {
	list-style: none;
	padding-bottom: 10px;
}

.footer .social-icons2 li {
	display: inline-block;
	margin-right: 3px;
}

.footer .social-icons2 li:before {
	display: none;
}

.footer .social-icons2 li .fa {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

.footer .social-icons2 li .fa-facebook {
	background-color: #3b5998;
}

.footer .social-icons2 li .fa-twitter {
	background-color: #55acee;
}

.footer .social-icons2 li .fa-linkedin {
	background-color: #e68523;
}

.footer .social-icons2 li .fa-google-plus {
	background-color: #dc4e41;
}

.footer .copyright {
	font-size: 13px;
	font-weight: 300;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	padding: 10px 0;
	margin: 0;
	text-align: left;
	float: left;
}

.footer .copyright_2 { 
	display: inline-block;
	text-align: right;
	float: right;
	padding: 10px 0;
	margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

.footer .copyright_2 a {
	color: #ffd17e;
	font-weight: bold;
}

.cd-top.cd-is-visible,.cd-top.cd-fade-out,.no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 40px;
	right: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: rgba(0, 0, 0, 0.5) url(../img/cd-top-arrow.svg) no-repeat
		center 50%;
	background-size: 40px;
	-webkit-background-size: 40px;
	-moz-background-size: 40px;
	-o-background-size: 40px;
	-ms-background-size: 40px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top:hover {
	background-color: #000;
	opacity: 1;
}

.cd-top.cd-top.cd-fade-out {
	opacity: .5;
}

.cd-top.cd-top.cd-is-visible {
	visibility: visible;
	opacity: 1;
	z-index: 9999;
}

@media only screen and (min-width: 768px) {
	.cd-top {
		right: 20px;
		bottom: 20px;
	}
}

@media only screen and (min-width: 1024px) {
	.cd-top {
		height: 50px;
		width: 50px;
		right: 30px;
		bottom: 30px;
	}
}

.special-w3layouts .reforme {
	text-align: center;
	margin: 0 auto;
	padding: 2.3em;
	border-radius: 120px;
	display: table;
	color: #fff;
}

.special-w3layouts .reforme:hover { /*-webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
      transform: scale(0.8);*/
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	color: #fff;
}

.special-w3layouts .reforme i {
	font-size: 55px;
	color: #fff;
}

.special-w3layouts .reforme_globale {
	background: #0d95ec;
	background: -moz-linear-gradient(top, #0d95ec 0%, #0681d0 100%);
	background: -webkit-linear-gradient(top, #0d95ec 0%, #0681d0 100%);
	background: linear-gradient(to bottom, #0d95ec 0%, #0681d0 100%);
	filter: progid :   DXImageTransform.Microsoft.gradient (    
		startColorstr = 
		 '#0d95ec', endColorstr =   '$blue', GradientType =   0 );
	border: 10px solid #086aaa;
}

.special-w3layouts .reforme_qualite {
	background: #e7a457;
	background: -moz-linear-gradient(top, #e7a457 0%, #be7c36 100%);
	background: -webkit-linear-gradient(top, #e7a457 0%, #be7c36 100%);
	background: linear-gradient(to bottom, #e7a457 0%, #be7c36 100%);
	filter: progid :   DXImageTransform.Microsoft.gradient (    
		startColorstr = 
		 '#e7a457', endColorstr =   '#be7c36', GradientType =   0 );
	border: 10px solid #ae702e;
}

.special-w3layouts .reforme_gouvernance {
	background: #c5413c;
	background: -moz-linear-gradient(top, #c5413c 0%, #ab413d 100%);
	background: -webkit-linear-gradient(top, #c5413c 0%, #ab413d 100%);
	background: linear-gradient(to bottom, #c5413c 0%, #ab413d 100%);
	filter: progid :   DXImageTransform.Microsoft.gradient (    
		startColorstr = 
		 '#c5413c', endColorstr =   '#ab413d', GradientType =   0 );
	border: 10px solid #962e2a;
}

.special-w3layouts .reforme_appui {
	background: #409076;
	background: -moz-linear-gradient(top, #409076 0%, #32705d 100%);
	background: -webkit-linear-gradient(top, #409076 0%, #32705d 100%);
	background: linear-gradient(to bottom, #409076 0%, #32705d 100%);
	filter: progid :   DXImageTransform.Microsoft.gradient (    
		startColorstr = 
		 '#409076', endColorstr =   '#32705d', GradientType =   0 );
	border: 10px solid #286452;
}

section.banner-w3ls2 {
	background: url(../img/banner2.jpg);
	background-position: center;
	background-attachment: fixed;
	background-repeat: no repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	min-height: 650px;
	padding-bottom: 1em;
}

section.banner-w3ls2 h3.text-center {
	font-size: 55px;
	font-weight: normal;
	padding: 100px 0 0;
	margin: 0;
	color: #fff;
	line-height: 90px;
	text-shadow: 1px 3px 5px #000;
	font-family: 'Roboto', sans-serif;
}

section.banner-w3ls2 h3.text-center img {
	position: relative;
	top: 0.2em;
}

section.banner-w3ls2 .banner-w3ls2_h4 {
	color: #fff;
	font-size: 30px;
	text-shadow: 0px 2px 3px #000;
	margin-bottom: 40px;
}

section.banner-w3ls2 .bloc_date {
	background: #0681d0;
	min-height: 151px;
	font-size: 42px;
	padding: 35px 5px;
	text-align: center;
}

section.banner-w3ls2 .bloc_date a {
	color: #fff;
	line-height: 30px;
}

section.banner-w3ls2 .bloc_date a span {
	color: #e0e0e0;
	font-size: 22px;
}

section.banner-w3ls2 .bloc_date a:hover {
	text-decoration: none;
}

@media ( max-width : 767px) {
	section.banner-w3ls2 .bloc_date {
		font-size: 28px;
		padding: 35px 0px;
	}
	section.banner-w3ls2 .bloc_date span {
		font-size: 20px;
	}
}

section.banner-w3ls2 .bloc_date_desc {
	background-color: rgba(8, 8, 8, 0.75);
	min-height: 151px;
	padding-top: 10px;
}

@media ( max-width : 991px) {
	section.banner-w3ls2 .bloc_date_desc {
		margin-bottom: 10px;
	}
}

section.banner-w3ls2 .bloc_date_desc h4 {
	margin-bottom: 0;
}

section.banner-w3ls2 .bloc_date_desc h4 a {
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 5px;
}

@media ( max-width : 767px) {
	section.banner-w3ls2 .bloc_date_desc h4 a {
		font-size: 16px;
	}
}

section.banner-w3ls2 .bloc_date_desc p {
	color: #fff;
	font-size: 15px;
}

section.banner-w3ls2 .bloc_date_desc:hover {
	-webkit-transition: background-color 1000ms linear;
	-moz-transition: background-color 1000ms linear;
	-o-transition: background-color 1000ms linear;
	-ms-transition: background-color 1000ms linear;
	transition: background-color 1000ms linear;
}

section.banner-w3ls2 .bloc_date_desc.bloc_date_desc_reforme_green:hover
	{
	background-color: #17a88e;
}

section.banner-w3ls2 .bloc_date_desc.bloc_date_desc_reforme_bleu:hover {
	background-color: #00aeef;
}

section.banner-w3ls2 .bloc_date_desc.bloc_date_desc_reforme_yellow:hover
	{
	background-color: #f9a65b;
}

section.banner-w3ls2 .bloc_date_desc.bloc_date_desc_reforme_red:hover {
	background-color: #dd585c;
}

@media ( max-width : 1080px) {
	section.banner-w3ls2 {
		min-height: 600px;
	}
}

@media ( max-width : 991px) {
	section.banner-w3ls2 {
		min-height: 500px;
		background-size: contain;
		-webkit-background-size: contain;
		-moz-background-size: contain;
		-o-background-size: contain;
		-ms-background-size: contain;
	}
}

@media ( max-width : 900px) {
	section.banner-w3ls2 {
		min-height: 400px;
	}
}

@media ( max-width : 768px) {
	section.banner-w3ls2 {
		background-size: cover;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		-ms-background-size: cover;
	}
}

@media ( max-width : 736px) {
	section.banner-w3ls2 {
		min-height: 293px;
	}
}

@media ( max-width : 414px) {
	section.banner-w3ls2 {
		min-height: 245px;
	}
}

@media ( max-width : 320px) {
	section.banner-w3ls2 {
		background-attachment: inherit;
	}
}

@media ( max-width : 767px) {
	section.banner-w3ls2 h3.text-center {
		padding-top: 80px;
	}
	section.banner-w3ls2 .banner-w3ls2_h4 {
		font-size: 27px;
	}
}

@media ( max-width : 991px) {
	.special-w3layouts.special-w4layouts {
		padding: 10px 0;
	}
}

.special-w3layouts.special-w4layouts .special-w4layouts_texte {
	color: #212121;
	padding: 20px 0 30px;
	margin-bottom: 0;
}

.special-w3layouts.special-w4layouts .special-partenaires .special-w4layouts_texte
	{
	color: #fff;
	font-size: 37px;
}

.special-w3layouts.special-w4layouts .special-w4layouts_texte:after {
	background-color: #0576be;
}

.special-w3layouts.special-w4layouts P {
	color: #000;
}

.special-w3layouts.special-w4layouts h4 {
	font-size: 18px;
	color: #000;
	margin-top: 0.6em;
}

.special-w3layouts.special-w4layouts h5 {
	color: #545454;
}

.special-w3layouts.special-w4layouts p {
	color: #ababab;
	font-size: 17px;
}

.special-w3layouts.special-w4layouts .voir_plus {
	background: #000;
	border-radius: 3px;
	padding: 6px 12px;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
}

.special-w3layouts.special-w4layouts .voir_plus:hover {
	box-shadow: inset 0 100px 0 0 #0681d0;
}

.banner-w3ls2 .voir_plus:hover {
	box-shadow: inset 0 100px 0 0 #0681d0;
}

.banner-w3ls2 .voir_plus {
	background: #c5413c;
	border-radius: 3px;
	padding: 6px 12px;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	float: right;
	margin-top: 1em;
}

.special-w3layouts.special-w4layouts .bloc_evenements_right {
	margin-bottom: 25px;
	display: inline-block;
}

.special-w3layouts.special-w4layouts .bloc_evenements_right .btn_position_right
	{
	right: 0;
	background: #e7a457;
}

.special-w3layouts.special-w4layouts .bloc_evenements_right h3 {
	background: #e5e5e5;
	color: #000;
	padding: 9px 15px;
	font-size: 18px;
	margin-bottom: 20px;
}

@media ( max-width : 991px) {
	.special-w3layouts.special-w4layouts .bloc_evenements_right h3 {
		/*margin-top: 15px;*/
		font-size: 16px;
	}
}

@media ( max-width : 767px) {
	.special-w3layouts.special-w4layouts .bloc_evenements_right h3 {
		margin-top: 15px;
	}
}

.special-w3layouts.special-w4layouts .bloc_evenements_right p {
	font-size: 14px;
	color: #b0b0b0;
}

@media ( max-width : 991px) {
	.special-w3layouts.special-w4layouts .bloc_evenements_right p {
		font-size: 13px;
	}
}

div.special-partenaires {
	background: url(../img/partenaire.png);
	background-position: center;
	background-attachment: fixed;
	background-repeat: no repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	min-height: 300px;
	padding-top: 50px;
	padding-bottom: 50px;
}

div.special-partenaires ul li:before {
	display: none;
}

div.special-partenaires ul li a {
	background-color: #fff;
	transition: transform 1s;
	padding: 1em;
	border-radius: 120px;
	width: 110px;
	display: table-cell;
	vertical-align: middle;
	border-bottom: 5px solid #0074bd;
	height: 110px;
}

div.special-partenaires ul li.list_partenaires {
	display: inline-block;
	margin-right: 1em;
}

div.special-partenaires ul {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

/*@media ( max-width : 320px) {
	div.special-partenaires ul li a {
		height: 110px;
	}
}

@media ( min-width : 412px) {
	div.special-partenaires ul li a {
		height: 160px;
	}
}

@media ( min-width : 768px) {
	div.special-partenaires ul li a {
		height: 190px;
	}
}

@media ( min-width : 991px) {
	div.special-partenaires ul li a {
		height: 165px;
	}
}*/
@media ( max-width : 991px) {
	div.special-partenaires ul li a {
		height: 90px;
		width: 90px;
	}
}

div.special-partenaires ul li a img {
	text-align: center;
	margin: 0 auto;
	max-width: 90%;
}

/*div.special-partenaires ul li a:hover {
	transform: rotate(360deg);
}*/
div.special-partenaires ul li:after {
	content: '';
	background: url(../img/shadow_partenaires.png);
	background-repeat: no-repeat;
	width: 88px;
	height: 17px;
	display: block;
	text-align: center;
	margin: 10px auto;
}

.padding-fixed {
	padding-top: 175px;
	padding-bottom: 20px;
}

@media ( max-width : 991px) {
	.padding-fixed {
		padding-top: 180px;
	}
	.banner_interne .banner_interne_bg {
		background-size: cover !important;
	}
	.banner_interne .banner_interne_bg h2 {
		padding-top: 100px !important;
	}
}

@media ( max-width : 767px) {
	.padding-fixed {
		padding-top: 80px;
	}
	.banner_interne {
		padding-top: 100px;
	}
	.banner_interne .banner_interne_bg {
		background-size: cover !important;
	}
	.banner_interne .banner_interne_bg h2 {
		padding-top: 200px !important;
	}
	.navbar .header-top .header-top_right .block_search {
		display: none;
	}
	.navbar .header-top .header-top_left ul li {
		padding-right: 0.3em;
		padding-left: 0.3em;
	}
	.navbar .header-top .header-top_left ul li:last-child {
		padding-left: 0.3em;
	}
}

.banner_interne .banner_interne_bg {
	/*background-image: url(../img/banner_interne.png);*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 400px;
	width: 100%;
	height: auto !important;
	background-attachment: fixed;
	overflow: hidden;
}

.banner_interne .banner_interne_bg h2.text-center {
	font-size: 51px;
	font-weight: normal;
	padding: 120px 0 10px;
	margin: 0 auto;
	color: #fff;
	line-height: 30px;
	font-family: 'Roboto', sans-serif;
	border-bottom: none;
	text-shadow: 0 3px 7px #000;
}

.banner_desc {
	position: absolute;
	top: 0;
	width: 100%;
}

.banner_interne_bg {
	position: relative;
}

@media ( max-width : 767px) {
	.banner_interne .banner_interne_bg h2.text-center {
		font-size: 30px;
		line-height: 25px;
	}
}

.banner_interne .banner_interne_bg .text-center {
	font-size: 17px;
	font-weight: normal;
	color: #fff;
	line-height: 35px;
	margin: 0 auto;
	padding: 0 0.8em;
}

@media ( max-width : 767px) {
	.banner_interne .banner_interne_bg .text-center {
		font-size: 14px;
		line-height: 25px;
	}
}

.banner_interne .banner_interne_bg_contact {
	background-image: url(../img/banner_contact.png);
}

.contact-us {
	padding: 50px 0;
}

.contact-us .fa {
	font-size: 27px;
	font-weight: thin;
	width: 70px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	color: #fff;
	margin: 0 auto;
	display: block;
	background-color: #0681d0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
}

.contact-us .text-center {
	font-size: 50px;
	font-weight: normal;
	color: #000;
	padding: 20px 0 0;
	font-family: 'Roboto', sans-serif;
	position: relative;
}

@media ( max-width : 767px) {
	.contact-us .text-center {
		font-size: 30px;
	}
}

.contact-us .text-center:after {
	content: '';
	background-color: #0681d0;
	height: 5px;
	width: 230px;
	margin: 0 auto;
	text-align: center;
	display: block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
}

.contact-us .contact-us_text {
	font-size: 17px;
	padding: 0 0 40px;
	color: #999;
	text-align: center;
}

.contact-us .googlemaps {
	height: 400px;
	width: 100%;
	margin-bottom: 2%;
}

.contact-us h4 {
	font-size: 20px;
	padding: 20px 0;
	font-weight: bold;
	color: #0681d0;
	font-family: 'Roboto', sans-serif;
}

.contact-us p {
	font-size: 17px;
	padding: 10px 0;
	color: #999;
	margin-bottom: 0;
	text-align: center;
	text-align: left;
}

.contact-form .text-center {
	font-size: 50px;
	font-weight: normal;
	color: #000;
	padding: 20px 0 0;
	font-family: 'Roboto', sans-serif;
	position: relative;
}

@media ( max-width : 767px) {
	.contact-form .text-center {
		font-size: 30px;
	}
}

.contact-form .text-center:after {
	content: '';
	background-color: #0681d0;
	height: 5px;
	width: 230px;
	margin: 0 auto;
	text-align: center;
	display: block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
}

.contact-form .fa {
	font-size: 27px;
	font-weight: thin;
	width: 70px;
	height: 70px;
	text-align: center;
	line-height: 70px;
	color: #fff;
	margin: 0 auto;
	display: block;
	background-color: #0681d0;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	-ms-border-radius: 50%;
}

.contact-form p {
	font-size: 17px;
	padding: 10px 0;
	color: #999;
	margin-bottom: 0;
	text-align: center;
}

.contact-form form {
	margin-top: 2em;
	margin-bottom: 2em;
}

.contact-form form .contact-p1 {
	font-size: 17px;
	font-weight: 300;
	color: #16214e;
	padding-bottom: 10px;
}

.contact-form form input {
	font-size: 17px;
	font-weight: normal;
	color: #000;
	background-color: transparent;
	border-radius: 0;
	border-color: grey;
	outline: none;
	height: 50px;
}

.contact-form form textarea.form-control {
	height: auto;
}

.contact-form form .btn-primary {
	color: #fff;
	background-color: #0681d0;
	border: 2px solid #0681d0;
	font-size: 17px;
	padding: 10px 20px;
	width: 100%;
}

.contact-form form .btn-primary:hover {
	background-color: #000;
	border: 2px solid #000;
}

@media ( min-width : 768px) {
	.container {
		width: 750px;
	}
}

@media screen and (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

.navbar-nav li {
	padding-left: 0;
}

.block_search {
	display: inline-block;
}

.block_search input {
	border: none;
	padding: 3px 5px;
	font-size: 13px;
	background: #f1f1f1;
	height: 25px;
}

.block_search button {
	margin-left: -3px;
	margin-right: 10px;
	border: none;
	padding: 2px 6px;
	background: #e7a457;
	height: 25px;
}

.block_search button i {
	color: #fff;
}

@media ( max-width : 767px) {
	.navbar-brand img {
		width: 80% !important;
	}
}

/***********submenu*************/
.submenu {
	display: none;
	visibility: hidden;
}

.navbar-nav li:hover ul {
	display: block;
	visibility: visible;
	position: absolute;
	background: #f8f8f8;
	width: 120%;
	margin: 0;
	padding: 0;
}

.submenu li {
	margin: 0;
	padding: 2px 0px;
}

.submenu li a {
	cursor: pointer;
	width: 100%;
	font-size: 13px;
}

@media ( min-width : 1280px) {
	.navbar-nav li:hover ul {
		box-shadow: 0px 5px 5px #7b7a7a;
	}

	.navbar .navbar-right li .submenu li a {
		padding:5px 15px;
		font-size: 13px;
		text-transform: capitalize;
	}
}

@media ( max-width : 1279px) {
	.navbar .navbar-nav {
		padding-top: 0.5em;
	}
	.navbar-nav li:hover ul.submenu {
		position: relative;
		padding-left: 0;
		background: none;
		padding-top: 10px;
		padding-bottom: 0;
	}
	.navbar-nav li:hover ul.submenu li a {
		font-size: 14px;
		padding: 6px 10px;
		font-weight: normal;
	}
	.navbar .navbar-right li a.active {
		background: none;
		color: #0d95ec;
	}
}

.navbar-header .navbar-brand {
	padding: 15px 0px 0 10px;
}

@media ( min-width : 992px) {
	.navbar-brand>img {
		max-width: 100%;
	}
}

/*************************end*submenu**************************/
	/************************Langue AR*****************************/
.lang_1 .navbar .header-top .header-top_right {
	float: left;
}

.lang_1 .navbar .header-top .header-top_left ul li:last-child {
	border-right: 1px solid #1581c6;
}

.lang_1 .navbar .header-top .header-top_left ul li:first-child {
	border-right: none; 
}

.lang_1 .navbar .header-top .header-top_left ul li a:before {
	margin-right: 0;
	margin-left: 5px;
}

@media ( max-width : 767px) {
	.lang_1 .navbar .header-top .header-top_left ul li {
		border: none;
	}

	.navbar .header-top .header-top_left ul li:first-child { 
		display: none;
	}
}

.lang_1 .navbar .header-top .header-top_left ul li {
	padding-right: 0.5em;
}

.lang_1 .block_search {
	float: right;
	margin-left: 5px;
}

.lang_1 .navbar .header-top .header-top_left ul li a {
	padding-right: 5px;
}

.lang_1 .navbar-header {
	float: right;
}

.lang_1 .navbar-collapse.collapse {
	float: left;
}

.lang_1 .navbar-nav li {
	float: right;
}

.lang_1 .navbar-nav li .submenu li {
	float: none;
}

.lang_1 section.banner-w3ls2 .bloc_date {
	float: right;
}

.lang_1 .banner-w3ls2 .voir_plus {
	float: left;
}

.lang_1 .special-w3layouts.special-w4layouts .bloc_evenements_right .btn_position_right	{
	left: 10px;
	right: inherit;
	margin-right: 15px;
}

.lang_1 .bloc_right_ar {
	float: right;
}

.lang_1 .cd-top {
	left: 30px;
	right: inherit;
}

.lang_1 .special-w3layouts.special-w4layouts .voir_plus {
	float: right;
}

.lang_1 .bloc-right_ar {
	float: right;
}

.lang_1 .footer h3, .lang_1 .footer .info-links li, .lang_1 .footer .footer-links li {
	text-align: right;
}

.lang_1 .Listes_des_projets .line_dariel {
	text-align: right;
}

.lang_1 .address, .lang_1 .phone, .lang_1 .email-info {
	padding-right: 25px;
}

.lang_1 .footer .contact-info i {
	margin: 25px -33px 10px 10px;
}

.lang_1 .Listes_des_projets p {
	text-align: right;
}

.lang_1 .block_search button {
	margin-left: 10px;
	margin-right: -4px;
	padding: 3px 6px;
}

.lang_1 .interne_page .listing_date {
	text-align: right;
}

.lang_1 .bloc_list .listing-img {
	float: right;
}

.lang_1 .interne_page .news__image  {
	float: right;
}

.lang_1.Contact_page .bloc-right_ar p {
	text-align: right;
}

.lang_1 .footer .copyright_2 a {
	float: right;
	margin-left: 5px;
}

@media ( max-width : 1279px) {
	.lang_1 .navbar-toggle {
		left: 10px;
		right: inherit;
	}
	.lang_1 .collapse.in {
		right: 15px;
	}
	.lang_1 .collapse.in {
		left: inherit;
	}
	.lang_1 .collapse.in ul.navbar-right {
		float: none !important;
	}
	.lang_1 .navbar-nav li {
		float: none;
	}
	.navbar .header-top .header-top_left ul li a {
		font-size: 12px;
	}
	.navbar .header-top .header-top_right select {
		font-size: 10.5px;
		padding: 1px 2px;
	}
	.navbar .header-top .header-top_left ul li::before {
		font-size: 11px;
	}
}

.lang_1 .next_period {
	 margin-left: 50px; 
	 float: right;
} 

.lang_1 .prev_period {
	 margin-right: 50px; 
	 float: left;
} 

/************************END Langue AR************************/
@media ( max-width : 1279px) {
	.collapse {
		position: fixed;
		z-index: 9;
		top: 45px;
		bottom: 0;
		left: -350px;
		height: 100% !important;
		width: 310px;
		overflow-y: auto;
		min-height: 100%;
		background-color: #f4f4f4;
		background-color: rgba(244, 244, 244, 0.9) !important;
		padding: 110px 20px !important;
		border: none !important;
		animation-name: collapse;
		-webkit-animation-name: collapse;
		animation-duration: 0.7s;
		-webkit-animation-duration: 0.7s;
		animation-timing-function: ease-in-out;
		-webkit-animation-timing-function: ease-in-out;
	}
	@
	keyframes collapse { 0% {
		transform: translateX(-150%);
	}
	50%{
	transform
	:
	 
	translateX
	(8%);
	
		
}

65%{
transform
:
 
translateX
(-4%);

		
}
80%{
transform
:
 
translateX
(4%);

		
}
95%{
transform
:
 
translateX
(-2%);

		
}
100%
{
transform
:
 
translateX
(0%);

		
}
}
@
-webkit-keyframes collapse { 0% {
	-webkit-transform: translateX(-150%);
}

50%{
-webkit-transform
:
 
translateX
(8%);

		
}
65%{
-webkit-transform
:
 
translateX
(-4%);

		
}
80%{
-webkit-transform
:
 
translateX
(4%);

		
}
95%{
-webkit-transform
:
 
translateX
(-2%);

		
}
100%
{
-webkit-transform
:
 
translateX
(0%);

		
}
}
.collapse.in {
	left: 0;
}

.collapse.in ul.navbar-right {
	float: left !important;
}

.navbar .navbar-right li a {
	font-size: 16px;
	font-weight: bold;
}

.collapsing {
	display: none !important;
}

}
@media ( max-width : 767px) {
	.collapse.in {
		left: 15px;
	}
	.collapse {
		width: 300px !important;
		border: none;
	}
}

@media ( max-width : 320px) {
	.collapse {
		width: 260px !important;
	}
}

/*******************************Interne*********************/
p.bodytext {
	text-align: justify;
	height: auto;
	color: #696969;
	font-size: 16px;
	position: relative;
}

.active_menu_header .navbar .header-top .header-top_left ul li a.active,.active_menu_header .navbar .header-top .header-top_left ul li a.active:before
	{
	color: #ffd17e;
}

p.line_dariel {
	padding-top: 15px;
  padding-bottom: 10px;
  padding-left: 12px;
  font-size: 17px;
  margin-bottom: 0;
}

section.rootline {
	background-color: #f5f5f5;
	margin-bottom: 15px;
}

.sep {
	padding-left: 5px;
	padding-right: 5px;
	color: #0d95ec;
}

/********************Contact_page*********************/

.Contact_page h3.text-center {
	font-size: 40px;
  font-weight: normal;
  color: #000;
  padding: 20px 0 0;
  font-family: 'Roboto', sans-serif;
  position: relative;
}

@media (max-width: 767px) {
	.Contact_page h3.text-center {
  	font-size: 30px;
	}

	.Contact_page .interne_page form.powermail_form {
		margin-top: 0;
	}
}

.Contact_page h3.text-center:after {
  content: '';
  background-color: #0681d0;
  height: 2px;
  width: 230px;
  margin: 0 auto;
  text-align: center;
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
}

.Contact_page .googlemaps {
  height: 400px;
  width: 100%;
  margin-bottom: 2%;
}

.Contact_page h4 {
  font-size: 20px;
  padding: 0;
  font-weight: bold;
  color: #0681d0;
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

.Contact_page .social-icons2 {
	margin-left:0;
	margin-top: 10px;
}

.Contact_page .left-column .social-icons2 li {  
  padding: 0;
  margin-right: 10px;
}

.Contact_page p {
  font-size: 17px;
  padding: 10px 0;
  color: #999;
  margin-bottom: 0;
  text-align: left;
}

.Contact_page form.powermail_form {
  margin-top: 2em;
  margin-bottom: 2em;
  display: inline-block;
}

.Contact_page form.powermail_form .controls label {
  font-size: 16px;
  font-weight: 300;
  color: #737373;
  padding-bottom: 5px;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}

.Contact_page form.powermail_form .controls label span {
	color: #f00;
}

.Contact_page form.powermail_form .form-group .controls input {
	font-size: 16px;
  font-weight: normal;
  color: #000;
  background-color: transparent;
  border-radius: 0;
  border-color: grey;
  outline: none;
  height: 35px;
}  
.form-group .controls input {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-group .controls input:focus {
  border-color: #66afe9 !important;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.Contact_page form.powermail_form .btn {
	color: #fff;
  background-color: #0681d0;
  border: 2px solid #0681d0;
  font-size: 17px;
  padding: 10px 20px;
  width: 100%;
}

.Contact_page form.powermail_form .btn:hover {
  background-color: #000;
  border: 2px solid #000;
}

/********************interne_page******************/

.interne_page h3.text-center {
	margin-top: 20px;
  font-size: 40px;
  font-weight: 600;
  color: #000;
  padding: 20px 0 0;
  font-family: 'Roboto', sans-serif;
  position: relative;
  margin-bottom: 30px;
}

.interne_page h3.text-center:after {
  content: '';
  background-color: #0681d0;
  height: 2px;
  width: 230px;
  margin: 0 auto;
  text-align: center;
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
}

.interne_page .news-single-img {
  float: left;
  margin: 10px 0 0 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -webkit-box;
}

.interne_page .news__image {
	padding: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}

.interne_page .news__content {
	margin-top: 2em;
}

.interne_page .news__content p {
	font-size: 16px;
  padding: 7px 0;
  color: #999;
  margin-bottom: 0; 
  text-align: left;
  line-height: 28px;
}

.lang_1 .interne_page .news__content p {
  text-align: right;
}

.interne_page .news-single-img img {
  border: none;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.interne_page .csc-sitemap li {
	margin-bottom: 0;
}

.interne_page .csc-sitemap li a {
  display: inline-block;
  padding: 6px 0px;
  font-size: 17px;
  color: #204d74
}

.interne_page .csc-sitemap li a:hover {
	text-decoration: none;
}

.interne_page .csc-sitemap li ul li a {
	font-size: 14px;
	color: #4e4e4e;
}

.interne_page .csc-sitemap li a:before {
  margin-right: 5px;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  content: '\f0da';
}

.interne_page .content_heading h2 {
	color: #0681d0;
	border-bottom: none;
	margin-bottom: 0;
} 

.interne_page .reforme_date {
  background: #000;
  border-radius: 3px;
  padding: 5px 12px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.interne_page .listing-img img {
	max-width: 100%;
  height: auto;
}

.interne_page .bloc_list {
  background: #efefef;
  padding: 1.5em;
  margin-bottom: 2em;
}

.interne_page .bloc_list:hover {
	background: #fafafa; 
	cursor: pointer;
}

.interne_page .listing_date {
	color: #121212;
	font-size: 17px;
	text-align: left;
	display: inline-block;
	width: 100%;
}

.interne_page .content-list h2 {
  color: #0681d0;
  border-color: #0681d0;
  display: inline-block;
  width: 100%;
  border-width: 1px;
  margin-top: 5px;
}

.interne_page .content-list .reforme_date a {
	color: #fff;
}

.interne_page .content-list .reforme_date:hover {
	background-color: #0681d0;
}

.interne_page .content-list p {
	color: #525252;
  font-size: 16px;
}

#pagination ul.inline-list {
	float: right;
}

#pagination ul.inline-list li {
	display: inline-block;
	background: #000;
	border-radius: 5px;
	padding: 3px 10px;
  margin-right: 3px;
}

#pagination ul.inline-list li:hover {
	background: #0681d0;
}

#pagination ul.inline-list li a {
	color: #fff;
}

#pagination ul.inline-list li.disable {
	background: #999;
}

#pagination ul.inline-list li.disable:hover {
	background: #999;
}

#pagination ul.inline-list li.active{
	background: #0681d0;
}

/*************************listing_extend**************************/

.lang_1 .listing_ar {
	float: right;
}

.lang_1 .input_ar , .lang_1 .submit_ar {
	float: right;
} 

.listing_extend {
	display: inline-block;
	background-color: #f9f9f9;
	padding: 20px;
	margin-bottom: 20px;
  border: 1px solid #ececec;
}

.listing_extend h4 {
	color: #0d95ec;
  font-size: 15px;
  text-transform: lowercase;
}

.listing_extend h4::first-letter {
	text-transform: capitalize;
}

.listing_extend p {
  color: #525252;
  font-size: 14px;
  height: 180px;
  padding-right: 1em;
  overflow-x: auto;
}

.voir_plus {
  background: #000;
  border-radius: 3px;
  padding: 5px 12px;
  color: #fff;
  font-size: 13px;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 10px;
}

.voir_plus:hover  {
  background-color: #0681d0;
}

@media (max-width: 767px) {
	.listing_extend img {
  	margin-bottom: 15px;
  	vertical-align: middle;
  	width: 100%;
	}
	.search_listing .submit_ar button {
		font-size: 12px;
		float: left;
	}

	.input_ar , .submit_ar{
		padding-left: 0;
	}

	.lang_1 .input_ar {
		padding-left: 15px;
		padding-right: 0;
	}
}

.search_listing {
  background: #f5eade;
  display: inline-block;
  width: 100%;
  padding: 20px 5px 5px;
  margin-bottom: 20px;
  margin-top: 10px;
  border: 1px solid #fdd7ab;
}

.search_listing button { 
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  background: #0a599b;
  border-bottom: 3px solid #084578;
  float: right;
}

.search_listing .radio { 
  margin-top: 10px !important;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 15px;
}

.search_listing .radio input[type="radio"]:checked + label:before {
	background: #0a599b !important; 
} 

.search_listing .radio input[type="radio"] + label:before {
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  vertical-align: middle;
  background: #efefef;
  border-radius: 50px;
  border: 2px solid #0d95ec;
}

.search_listing .radio input[type="radio"], .search_listing .radio input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 23px;
  z-index: 1;
}
.search_listing .radio input[type="radio"] , .search_listing .radio input[type="radio"] + label {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-size: 13px;
}


.parsley-errors-list {
	margin-left: 0;
  margin-bottom: 0;
}

.parsley-errors-list .parsley-required , .parsley-errors-list .parsley-custom-error-message {
	color: #f00;
	padding-left: 0;
  font-size: 13px;
  padding-top: 5px;
  margin-bottom: 0;
}

/************/
/* POWERMAIL*/
/************/
/*
.tx-powermail .powermail_progressbar {
    width: 100%;
    height: 5px;
    float: right;
    border: 1px solid #EEEEEE;
    clear: both
}
.tx-powermail .powermail_progressbar.disable {
    display: none
}
.tx-powermail .powermail_progressbar>.powermail_progress {
    background: #1E5799;
    width: 0%;
    max-width: 100%;
    -webkit-animation: progress 5s 1 forwards;
    -moz-animation: progress 5s 1 forwards;
    -ms-animation: progress 5s 1 forwards;
    animation: progress 5s 1 forwards
}
.tx-powermail .powermail_progressbar>.powermail_progress>.powermail_progess_inner {
    height: 5px;
    width: 100%;
    overflow: hidden;
    background: url("/MFPE-INT/typo3conf/ext/powermail/Resources/Public/Image/icon_loading.gif") repeat-x;
    -moz-opacity: 0.25;
    -khtml-opacity: 0.25;
    opacity: 0.25;
    -ms-filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=25);
    filter: progid: DXImageTransform.Microsoft.Alpha(opacity=25);
    filter: alpha(opacity=25)
}
.tx-powermail .powermail_confirmation .powermail_progressbar {
    width: 100%
}

@-webkit-keyframes progress {
    to {
        width: 100%
    }
}
@-moz-keyframes progress {
    to {
        width: 100%
    }
}
@-ms-keyframes progress {
    to {
        width: 100%
    }
}
@keyframes progress {
    to {
        width: 100%
    }
}*/

.tx-powermail .powermail_create .bodytext {
  color: #efefef;
  font-weight: bold;
  font-size: 16px;
}

/****************detail_projets******************/

.interne_page .bs-example .nav .active a {
	color: #fff; 
}

.interne_page .bs-example .nav li a {
	color: #555;
  background: #efefef;
  font-weight: bold;
  text-transform: uppercase;
}

.interne_page .bs-example .nav-tabs { 
  padding-bottom: 1px;
  margin: 0;
}

.interne_page .bs-example .nav-tabs > li { 
  margin-left: 0;
  padding-left: 0;
  padding-right: 10px;
}

.interne_page .bs-example .tab-content {
	padding-top: 2em;
}

.interne_page .bs-example .tab-content h5 {
  color: #fff;
  padding: 5px 10px;
  font-weight: bold; 
  margin-bottom:0;
}

.interne_page .bs-example .tab-content p {
  background: #efefef;
  color: #3a3a3a;
  padding: 5px 10px;  
  font-size: 16px;
  margin-bottom: 2px;
}

.interne_page .bs-example .tab-pane_formulation p {
	background: none;
	padding-left: 0;
}

.interne_page .bs-example .tab-content .blox_specifications p {
	background: none;
}

.interne_page .tab-pane_formulation ul li {
  padding-left: 0;
  list-style-type: disc;
  margin-left: 10px; 
}

.interne_page .bs-example .tab-content p span {
	font-weight: bold;
}

.interne_page .bs-example .tab-content p.title_extrants {
	background-color: #949494;
	color: #fff;
}

.interne_page .bs-example .tab-content p.title_extrants_first {
	background-color: #353535;
	color: #fff;
	padding-right: 25px;
	position: relative;
	font-size: 15px;
}

.interne_page .bs-example .tab-content p.title_extrants_first[aria-expanded="true"]:after { 
	content: "\f146";
  font: normal normal normal 16px/1 FontAwesome;
  position: absolute;
  right: 8px;
  top: 8px;
}

.interne_page .bs-example .tab-content p.title_extrants_first[aria-expanded="false"]:after { 
	content: "\f0fe";
  font: normal normal normal 16px/1 FontAwesome;
  position: absolute;
  right: 8px;
  top: 8px;
}

.interne_page .bs-example .tab-content h6 {
  font-weight: bold;
  margin-top: 20px;
  text-decoration: underline;
}

.interne_page .bs-example .tab-content ul li p:first-letter {
  text-transform: capitalize !important;
} 

.blox_specifications {
	margin-top: 20px;
	border: 1px solid #dcdbdb;
}

.interne_page .bs-example .thumbnail img {
	text-align: center;
	margin: 0 auto;
}

.interne_page .bs-example ul.social-icons1 li {
  display: inline-block!important;
  margin: 1px!important;
  padding: 10px 0;
}

.interne_page .bs-example ul.social-icons1 li a {
  text-decoration: none;
}

.interne_page .bs-example ul.social-icons1 li a i.fa.fa-facebook {
  color: #fff;
  background-color: #3b5998;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  text-align: center;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

.interne_page .bs-example ul.social-icons1 li a i.fa.fa-facebook:hover {
    background-color: #17233E;
}

.interne_page .bs-example ul.social-icons1 li a i.fa.fa-twitter {
  color: #fff;
  background-color: #55acee;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  text-align: center;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

.interne_page .bs-example ul.social-icons1 li a i.fa.fa-twitter:hover {
  background-color: #1F435F;
}

.interne_page .bs-example ul.social-icons1 li a i.fa.fa-linkedin {
  color: #fff;
  background-color: #e68523;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  text-align: center;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

.interne_page .bs-example ul.social-icons1 li a i.fa.fa-linkedin:hover {
  background-color: #794612;
}

.interne_page .bs-example .caption p {
	font-weight: bold;
}

.bs-example.bs-example-tabs {
	margin-top: 25px;
} 

.panel_background .panel-heading {  
	color: #fff;
	cursor: pointer;
	position: relative;
}

.panel_background .panel-heading [aria-expanded="false"]:after {
  content: "\f0fe";
  font: normal normal normal 20px/1 FontAwesome;
  position: absolute;
  right: 10px;
  top: 10px; 
} 

.panel_background .panel-heading [aria-expanded="true"]:after {
  content: "\f146";
  font: normal normal normal 20px/1 FontAwesome;
  position: absolute;
  right: 10px;
  top: 10px;
}

.panel_background .panel-body {
	padding: 0;
}

.panel_background .panel-heading:hover a , .panel_background .panel-heading:focus a , .panel_background .panel-heading a {
	color: #fff;
}

.panel_background ul {
	margin-left: 0;
	margin-bottom: 0;
}

.panel_background ul li {
	padding-left: 0;
	background: #eaeaea;
	margin-bottom: 1px;
  padding: 7px 20px;
}

.panel_background ul li:hover { 
	cursor: pointer;
}

.panel_background ul li a {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.panel_background ul li:hover a {
	color: #fff;
}

.interne_page i.reforme-globale_i {  
  text-align: center;
  margin: 0 auto;
  padding: 0.4em;
  border-radius: 60px;
  color: #fff;
  display: table;
  width: 35px;
  font-size: 35px;
  line-height: 35px;
  height: 35px;
}

.team_structure {
	margin-top: 10px;
	display: inline-block;
	width: 100%;
	margin-bottom: 10px; 
	color: #fff;
	padding: 6px 0;
}

.interne_page h3.title_interne_reforme {
  font-size: 40px;
  font-weight: normal;
  color: #000;
  padding: 20px 0 0;
  font-family: 'Roboto', sans-serif;
  position: relative;
  margin-top: 0;
}

.interne_page .title_interne_reforme:after {
  content: ''; 
  height: 5px;
  width: 230px;
  margin: 0 auto;
  text-align: center;
  display: block;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
}

.interne_page .panel_background ul li:hover a {
	color: #fff !important;
}

@media (max-width: 1279px) {
	.interne_page .bs-example .panel-group .collapse {
    width: 100% !important;
    padding: 0 !important;
    top: 0;
    position: relative;
    left: 0;
  }

  .blox_specifications:last-child {
  	margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
	.interne_page .bs-example .nav-tabs > li {  
	  display: inline-block;
	  width: 100%;
	  padding: 0;
	}
}

/*******************reforme_globale****************/
.reforme_globale.interne_page .bs-example .tab-content h5 {
  background: #00aeef;
}

.reforme_globale.interne_page .bs-example .tab-content p span {
	color: #00aeef;
}

.reforme_globale.interne_page .bs-example .tab-content h6 {
  color: #00aeef;
}

.reforme_globale.interne_page .bs-example .caption h4 {
  color: #00aeef;
}

.reforme_globale.interne_page i.reforme-globale_i , .reforme_globale.interne_page .panel_background .panel-heading{
  background: #0d95ec;
  background: -moz-linear-gradient(top, #0d95ec 0%, #0681d0 100%);
  background: -webkit-linear-gradient(top, #0d95ec 0%, #0681d0 100%);
  background: linear-gradient(to bottom, #0d95ec 0%, #0681d0 100%);
  filter: progid : DXImageTransform.Microsoft.gradient (  startColorstr =  '#0d95ec', endColorstr = '$blue', GradientType = 0 ); 
}

.reforme_globale.interne_page i.reforme-globale_i {
	border: 4px solid #086aaa;
}

.reforme_globale.interne_page .bs-example .tab-content .title_extrants_first {
	border-left: 5px solid #00aeef;
}

.reforme_globale.interne_page .team_structure { 
	background: #0d95ec; 
}

.reforme_globale.interne_page .title_interne_reforme:after { 
  background-color: #0681d0; 
}

.reforme_globale.interne_page .bs-example .nav .active a { 
  background-color: #0074BD;
}

.reforme_globale.interne_page .bs-example .nav-tabs {
  border-bottom: 1px solid #0074bd; 
}

.reforme_globale.interne_page .panel_background ul li:hover {
	background: #1a72a9; 
}

.reforme_globale.interne_page .panel_background ul li a { 
	color: #00aeef;
}

.reforme_globale.interne_page .panel_background .panel-heading [aria-expanded="false"]:after {
	color: #022942;
} 

/*******************reforme_Qualite****************/
.reforme_qualite.interne_page .bs-example .tab-content h5 {
  background: #e7a457;
}

.reforme_qualite.interne_page .bs-example .tab-content p span {
	color: #e7a457;
}

.reforme_qualite.interne_page .bs-example .tab-content h6 {
  color: #e7a457;
}

.reforme_qualite.interne_page .bs-example .caption h4 {
  color: #e7a457;
}

.reforme_qualite.interne_page i.reforme-globale_i , .reforme_qualite.interne_page .panel_background .panel-heading {  
  background: #e7a457;
  background: -moz-linear-gradient(top, #e7a457 0%, #be7c36 100%);
  background: -webkit-linear-gradient(top, #e7a457 0%, #be7c36 100%);
  background: linear-gradient(to bottom, #e7a457 0%, #be7c36 100%);
  filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =  '#e7a457', endColorstr = '#be7c36', GradientType = 0 ); 
}

.reforme_qualite.interne_page i.reforme-globale_i {
	border: 4px solid #ae702e;
}

.reforme_qualite.interne_page .bs-example .tab-content .title_extrants_first {
	border-left: 5px solid #e7a457;
}

.reforme_qualite.interne_page .team_structure { 
	background: #e7a457; 
}

.reforme_qualite.interne_page .title_interne_reforme:after { 
  background-color: #e7a457; 
}

.reforme_qualite.interne_page .bs-example .nav .active a { 
  background-color: #cc893c;
}

.reforme_qualite.interne_page .bs-example .nav-tabs {
  border-bottom: 1px solid #e7a457; 
}

.reforme_qualite.interne_page .panel_background ul li:hover {
	background: #e7a457; 
}

.reforme_qualite.interne_page .panel_background ul li a { 
	color: #e7a457;
}

.reforme_qualite.interne_page .panel_background .panel-heading [aria-expanded="false"]:after {
	color: #9c5606;
}

/*******************reforme_gouvernance****************/
.reforme_gouvernance.interne_page .bs-example .tab-content h5 {
  background: #c5413c;
}

.reforme_gouvernance.interne_page .bs-example .tab-content p span {
	color: #c5413c;
}

.reforme_gouvernance.interne_page .bs-example .tab-content h6 {
  color: #c5413c;
}

.reforme_gouvernance.interne_page .bs-example .caption h4 {
  color: #c5413c;
}

.reforme_gouvernance.interne_page i.reforme-globale_i , .reforme_gouvernance.interne_page .panel_background .panel-heading {  
  background: #c5413c;
  background: -moz-linear-gradient(top, #c5413c 0%, #ab413d 100%);
  background: -webkit-linear-gradient(top, #c5413c 0%, #ab413d 100%);
  background: linear-gradient(to bottom, #c5413c 0%, #ab413d 100%);
  filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr = '#c5413c', endColorstr = '#ab413d', GradientType = 0 );
}

.reforme_gouvernance.interne_page i.reforme-globale_i {
	border: 4px solid #962e2a; 
}

.reforme_gouvernance.interne_page .bs-example .tab-content .title_extrants_first {
	border-left: 5px solid #c5413c;
}

.reforme_gouvernance.interne_page .team_structure { 
	background: #c5413c; 
}

.reforme_gouvernance.interne_page .title_interne_reforme:after { 
  background-color: #c5413c; 
}

.reforme_gouvernance.interne_page .bs-example .nav .active a { 
  background-color: #ad3732;
}

.reforme_gouvernance.interne_page .bs-example .nav-tabs {
  border-bottom: 1px solid #c5413c; 
}

.reforme_gouvernance.interne_page .panel_background ul li:hover {
	background: #c5413c; 
}

.reforme_gouvernance.interne_page .panel_background ul li a { 
	color: #c5413c;
}

.reforme_gouvernance.interne_page .panel_background .panel-heading [aria-expanded="false"]:after {
	color: #541513;
}    


/*******************reforme_appui****************/
.reforme_appui.interne_page .bs-example .tab-content h5 {
  background: #409076;
}

.reforme_appui.interne_page .bs-example .tab-content p span {
	color: #409076;
}

.reforme_appui.interne_page .bs-example .tab-content h6 {
  color: #409076;
}

.reforme_appui.interne_page .bs-example .caption h4 {
  color: #409076;
}

.reforme_appui.interne_page i.reforme-globale_i , .reforme_appui.interne_page .panel_background .panel-heading{  
  background: #409076;
  background: -moz-linear-gradient(top, #409076 0%, #32705d 100%);
  background: -webkit-linear-gradient(top, #409076 0%, #32705d 100%);
  background: linear-gradient(to bottom, #409076 0%, #32705d 100%);
  filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr = '#409076', endColorstr = '#32705d', GradientType = 0 );
}

.reforme_appui.interne_page i.reforme-globale_i {
	border: 4px solid #286452; 
}

.reforme_appui.interne_page .bs-example .tab-content .title_extrants_first {
	border-left: 5px solid #409076;
}

.reforme_appui.interne_page .team_structure { 
	background: #409076; 
}

.reforme_appui.interne_page .title_interne_reforme:after { 
  background-color: #409076; 
}

.reforme_appui.interne_page .bs-example .nav .active a { 
  background-color: #2e755e;
}

.reforme_appui.interne_page .bs-example .nav-tabs {
  border-bottom: 1px solid #409076; 
}

.reforme_appui.interne_page .panel_background ul li:hover {
	background: #409076; 
}

.reforme_appui.interne_page .panel_background ul li a { 
	color: #409076;
}

.reforme_appui.interne_page .panel_background .panel-heading [aria-expanded="false"]:after {
	color: #174c3b;
}

/********************/

.tab-content .tab-pane.fade .thumbnail {
	padding:0;	
}

.tab-content .tab-pane.fade .thumbnail .caption {
	padding-bottom: 0;
	min-height: 175px;
}

.tab-content .tab-pane.fade .thumbnail .caption .social-icons1 {
	margin-bottom: 0;
}

.interne_page .bs-example .caption ul.social-icons1 li {
	padding-top: 0;
}

/***************bloc-accordion_reforme*******************/

.bloc-accordion_reforme {
	margin-top: 40px;
}

.bloc-accordion_reforme .panel-group {
  margin-bottom: 10px;
}

/*****panel-group_vision*****/

.panel-group_vision .panel-heading {
	background: #0d95ec;
	background: -moz-linear-gradient(top, #0d95ec 0%, #0681d0 100%);
	background: -webkit-linear-gradient(top, #0d95ec 0%, #0681d0 100%);
	background: linear-gradient(to bottom, #0d95ec 0%, #0681d0 100%);
	filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr = '#0d95ec', endColorstr = '$blue', GradientType = 0 );
	border: 1px solid #086aaa;
}

.panel-group_vision .panel_background ul li:hover {
	background: #00aeef;
}




/****panel-group_qualite*******/

.panel-group_qualite .panel-heading {
	background: #e7a457;
  background: -moz-linear-gradient(top, #e7a457 0%, #be7c36 100%);
  background: -webkit-linear-gradient(top, #e7a457 0%, #be7c36 100%);
  background: linear-gradient(to bottom, #e7a457 0%, #be7c36 100%);
  filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr = '#e7a457', endColorstr = '#be7c36', GradientType = 0 );
  border: 1px solid #ae702e;
}

.panel-group_qualite .panel_background ul li:hover {
	background: #e7a457;
}

    

/*****panel-group_gouvernance******/

.panel-group_gouvernance .panel-heading {
  background: #c5413c;
  background: -moz-linear-gradient(top, #c5413c 0%, #ab413d 100%);
  background: -webkit-linear-gradient(top, #c5413c 0%, #ab413d 100%);
  background: linear-gradient(to bottom, #c5413c 0%, #ab413d 100%);
  filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr = '#c5413c', endColorstr = '#ab413d', GradientType = 0 );
  border: 1px solid #962e2a;
}

.panel-group_gouvernance .panel_background ul li:hover {
	background: #c5413c;
}

/*****panel-group_appui******/

.panel-group_appui .panel-heading {
  background: #409076;
  background: -moz-linear-gradient(top, #409076 0%, #32705d 100%);
  background: -webkit-linear-gradient(top, #409076 0%, #32705d 100%);
  background: linear-gradient(to bottom, #409076 0%, #32705d 100%);
  filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr = '#409076', endColorstr = '#32705d', GradientType = 0 );
  border: 1px solid #286452;
}

.panel-group_appui  .panel_background ul li:hover {
	background: #409076;
}

/*****bloc-search_rapide*****/

.bloc-search_rapide {
  background: #eaeaea;
  display: inline-block;
  padding: 0px 0px 10px 0px;
	border: 1px solid #d6d6d6;
	width: 100%;
}

.bloc-search_rapide h5 {
  background: #333;
  color: #fff;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: bold;
}


.special-partenaires .owl-carousel .item a {
  background-color: #fff;
  transition: transform 1s;
  padding: 1em;
  border-radius: 120px;
  width: 110px;
  display: table-cell;
  vertical-align: middle;
  border-bottom: 5px solid #0074bd;
  height: 110px;
}

.special-partenaires .owl-carousel .item a img {
  text-align: center;
  margin: 0 auto;
  max-width: 90%;
}

.special-partenaires .title_home {
	color: #fff;
	border:none;
	text-align: center;
	margin: 0 auto 60px auto;
	font-size: 40px;
  font-weight: normal;
  text-shadow: 1px 3px 5px #000;
  font-family: 'Roboto', sans-serif;
}

@media ( max-width : 991px) { 
	.special-partenaires .title_home {
		font-size: 20px;
	}

	div.special-partenaires {
		min-height: 300px;
	}
}

.left-column .social-icons2 li .fa {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.left-column .social-icons2 li .fa-twitter {
	background-color: #55acee;
}
.left-column .social-icons2 li .fa-linkedin {
	background-color: #e68523;
}
.left-column .social-icons2 li .fa-google-plus {
	background-color: #dc4e41;
}
.left-column .social-icons2 li .fa-facebook {
    background-color: #3b5998;
}

.left-column .social-icons2 li {
	display: inline-block;
	margin-right: 3px;
	padding: 20px;
}

.lang_1 p.bodytext{
	text-align: justify;
}

@media ( min-width : 992px) {
	.block-home_reforme .owl-carousel .owl-stage {
	  position: initial; 
	}
}

/*********************Identification**************************/
@media ( max-width : 991px) { 
	.tx-felogin-pi1 form {
		width: 100% !important;
	}
}

.tx-felogin-pi1 form {
  display: table;
  width: 50%;
  background: #f5f5f5; 
  margin: 15px auto;
  border: 1px solid #e4e4e4;
}

.tx-felogin-pi1 form legend {
	background: #212121;
	color: #fff; 
	font-size: 15px;
	margin-bottom: 10px; 
}

.tx-felogin-pi1 form fieldset div {
	padding: 10px 15px;
}

.tx-felogin-pi1 form fieldset div label {
  font-size: 16px;
  font-weight: 300;
  color: #737373;
  padding-bottom: 5px;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}

.tx-felogin-pi1 form fieldset div input[type="text"], .tx-felogin-pi1 form fieldset div input[type="password"] {
  font-size: 15px;
  font-weight: normal;
  background-color: #fff !important;
  border-radius: 0;
  border-color: #c7c7c7;
  background: #fff !important;
  height: 29px;
  padding: 5px;
  border-width: 1px;
}

.tx-felogin-pi1 form fieldset div input[type="submit"]:hover {
  background-color: #000;
  border: 2px solid #000;
}
.tx-felogin-pi1 form fieldset div input[type="submit"] {
  color: #fff;
  background-color: #0681d0;
  border: 2px solid #0681d0;
  font-size: 17px;
  padding: 5px 15px;
  display: block;
  margin:0 auto;
  text-align: center;
}

.tx-felogin-pi1 form fieldset div input[type="text"]::focus {
	background: #f00;
}

.tx-felogin-pi1 .input_login {
	padding: 0
}

.tx-felogin-pi1 .input_login p {
  background: #e2e2e2;
  padding: 8px 10px;
  color: #6d6d6d;
}

.tx-felogin-pi1 .felogin-hidden {
	padding: 0;
}

.csc-bulletlist li {
	list-style-type: disc;
	padding-left: 0; 
	color: #696969;
	font-size: 16px; 
}

.contenttable {
  width: 100%;
  background: #efefef;
  border: 1px solid #dedede;
}

.contenttable caption {
	background: #212121;
	padding: 8px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}

.contenttable tr td{
	padding: 10px;
	color: #696969;
	font-size: 15px;
	border-right: 1px solid #dedede; 
}

.contenttable tr:nth-child(2n+1) { background-color: #fbfbfb; } 
.contenttable tr:nth-child(2n+0) { background-color: #eee; } 

.interne_page .csc-menu {
	margin-left: 0;
}

.interne_page .csc-menu li {
	padding-left: 0;
}

.interne_page .csc-menu li a {
	margin-top: 10px;
  color: #fff;
  background-color: #0681d0;
  border: 2px solid #0681d0; 
  padding: 5px 15px;
  font-size: 15px;
}

.interne_page .csc-menu li a:hover {
	background: #212121;
	border-color: #000;
}

@media ( min-width : 1250px) { 
	section.carousel_home {
		overflow: hidden;
		height: 635px; 
	}
}

@media ( max-width : 991px) { 
	/*section.carousel_home {
		height: 480px; 
	}*/

	section .carousel-control {
  	top: 55%;
  	font-size: 22px;
  }
}

@media ( max-width : 767px) { 
	/*section.carousel_home {
		height: 320px; 
	}*/

	 section.carousel_home img {
		height: 360px; 
		max-width: auto;
	}
}

/*.carousel_home {
	height: 720px; 
}*/

.carousel_home img {
	width: 100%;
	max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.title_banner {
  position: absolute;  
  margin: 0 auto;
  width: 100%;
  text-align: center;
  left: 0;
  color: #fff;
	border:none;    
  font-family: 'Roboto', sans-serif;
  z-index: 1000000000;
}

.title_banner h3 {   
  color: #fff;
	border:none;  
	font-size: 29px;
  font-weight: normal;
  text-shadow: 1px 3px 5px #000;
  font-family: 'Roboto', sans-serif;
	margin-bottom: 10px; 
}

.title_banner p {
	text-shadow: 0 0 0;
	color: #000;
	font-size: 18px;
}

.title_banner p a {
  color: #fff;
  font-weight: normal;
  background: #0681d0;
  padding: 5px 10px;
  font-size: 14px;
  font-style: italic;
}

.carousel-control {
  top: 35%;
  box-shadow: 0 0 0;
  background: none !important;
  color: #212121;
  font-size: 33px;
  opacity: 0.9;
}

.lang_1 .panel_background .panel-heading a {
  padding-right: 22px;
} 

.carousel_home {
	display: inline-block;
	width: 100%;
	padding-top: 9em;
	position: relative;
}

@media screen and (max-width: 1249px) {
	.carousel_home .carousel-inner .item .item { 
	  height: 32rem; 
	} 
}

@media screen and (max-width: 767px) and (orientation: portrait) {
	.carousel_home .carousel-inner .item .item { 
	  height: 18rem;
	} 
}

.carousel-inner .item .item { 
  height: 48rem;
  -moz-flex-basis: auto;
  -webkit-flex-basis: auto;
  -ms-flex-basis: auto;
  flex-basis: auto;
}

.carousel-inner .item .item img {
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
} 

.arrow-left_absolute , .arrow-right_absolute {
	position: absolute;
	top: 35%;
	color: #fff;
	font-size: 33px;
	cursor: pointer;
	z-index: 10000;
}

.arrow-left_absolute {
	left: 0;
}

.arrow-right_absolute {
	right: -15px;
}

@media screen and (min-width: 1250px) {
	.special-partenaires .partenaires_left .owl-carousel.owl-theme {
		margin-left: -25px;
	}

	.arrow-right_absolute {
		right: -10px;
	}
}