@charset "utf-8";
/*
Theme Name: SAPERE
Theme URI: http://sapere.fr/
Description: 
Version: 1.0
Author: Olivier PASQUINI
Author URI: http://devtype.fr
Tags: 
*/

/*-- RESET ALL --*/
html,body,div,span,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,img,ins,kbd,q,s,samp,small,strike,strong,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,canvas,button,article,aside,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video { margin: 0; padding: 0; border: none; outline: none; font-size: 100%; vertical-align: baseline; background: transparent; }
h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,em,strong,th { font-size: 100%; font-weight: normal; font-style: normal; }
h1,h2,h3,h4,h5,h6 { clear: both; }
body { line-height: 1; }
input,textarea,select { margin:0; padding:0; border:none; }
ol,ul { list-style: none; }
a,a:hover,a:active,a:link,a:visited { text-decoration: none; outline: none;}
blockquote, q { quotes: none; }
blockquote:before,blockquote:after,q:before,q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption,th,td { font-weight: normal; text-align: left; }
strong, strong em { font-weight: bold; }
em,em strong { font-style: italic; }
del { text-decoration: line-through; }
pre {}
code { word-wrap: break-word; font-family: "Courier New", Courier, monospace; }
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section {display: block;}

@font-face {
    font-family: 'marcellus';
    src: url('./fonts/marcellus-regular-webfont.eot');
    src: url('./fonts/marcellus-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('./fonts/marcellus-regular-webfont.woff') format('woff'),
         url('./fonts/marcellus-regular-webfont.ttf') format('truetype'),
         url('./fonts/marcellus-regular-webfont.svg#marcellusregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*-- GLOBAL --*/
html, body {
	background-color: #FFF;
	font: normal 12px/18px Arial, Helvetica, sans-serif;
	color: #000;
}

.clear {
	clear: both;
	visibility: hidden;
	font-size: 0px;
	height: 0px;
	overflow: hidden;
}

/*-- ALIGN --*/
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin: 0 auto 10px auto;
}
.alignnone {
	float: none;
	clear: both;
}

/* IMG */
img.alignleft {
	margin: 0 20px 10px 0;
}
img.alignright {
	margin: 0 0 10px 20px;
}
img.aligncenter {
	margin-bottom: 10px;
}

/*-- FORM ELEMENTS --*/
form {
	position: relative;
}

.form-input {
	margin-bottom: 15px;
	position: relative;
}

.form-input.alignleft,
.form-input.alignright {
	width: 50%;
}

.input-error {
	font-size: 11px;
	background-color: #c6401c;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	padding: 5px 8px;
	margin: 10px 0 0 14px;
	color: #fff;
	border-radius: 3px;
	box-shadow: 1px 1px 2px 0px #aaa;
}

.input-error:before {
	content: "";
	border: solid 0px transparent;
	border-right-color: #c6401c;
	border-width: 5px 7px 5px 0px;
	height: 0;
	width: 0;
	position: absolute;
	left: -7px;
	top: 5px;
}

label {
	color: #171717;
}

input[type="hidden"] {display: none;}

input[type="text"],
input[type="password"],
textarea,
select {
	background: #FFF;
	font: normal 12px Arial, Helvetica, sans-serif;
	color: #898989;
	padding: 10px;
	border: 1px solid #DDD;
}

input[type="text"],
input[type="password"] {
	width: 90%;
}

.form-input.alignleft input[type="text"],
.form-input.alignright input[type="text"],
.form-input.alignleft input[type="password"],
.form-input.alignright input[type="password"] {
	width: 88%;
}

textarea {
	height: 140px;
	width: 96%;
}

input[type="radio"],
input[type="checkbox"] {
	vertical-align: middle;
}

input[type="submit"],
input[type="button"] {
	background: #333;
	border: 0 none;
	font: normal 12px 'marcellus', Arial, Helvetica, sans-serif;
	color: #FFF;
	cursor: pointer;
	padding: 3px 50px;
	margin-top: 10px;
}

/* Ajax events */
.ajax-loading {
	background: url(./img/loader.gif) center no-repeat;
	width: 32px;
	height: 32px;
	position: absolute;
	z-index: 1;
	left: 28%;
	bottom: 0;
	display: none;
}

.ajax-response {
	padding: 5px 10px;
	color: #000;
	border-radius: 5px;
}

.ajax-success {
	border: #2BAC17 1px solid;
}

.ajax-error {
	border: #D63722 1px solid;
}

/*-- POPUP --*/
#bgOverlay {
	background: #000;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

#popupLoad {
	background: url(./img/ploader_black.gif) center no-repeat;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	position: absolute;
	left: 50%;
	z-index: 10;
}

.popup {
	background: #fff;
	position: absolute;
	z-index: 15;
	width: 640px;
}

.close-popup {
	background: url(img/close-popup.png) center no-repeat;
	width: 27px;
	height: 27px;
	position: absolute;
	right: -30px;
	top: -30px;
	z-index: 20;
}

.popup .pop-in {
	padding: 30px;
}

.popup .pop-title {
	font-size: 30px;
}

/* Video popup */
.popup .pop-in iframe {
	display: block;
	width: 100%;
	height: 360px;
}

#pop-video .pop-in {
	padding: 0;
}

/*-- Load on Scroll --*/
.load-more {
	overflow: hidden;
}

.load-more div {
	background: url(./img/loader.gif) 0 0 no-repeat;
	width: 32px;
	height: 32px;
	display: none;
}

/*-- Back to Top --*/
.backToTopAnchor {
	position: absolute;
	width: 0px;
	height: 0px;
	overflow: hidden;
	visibility: hidden;
	line-height: 0;
	clip: rect(1px, 1px, 1px, 1px);
}

#backToTopBtn {
	background: #333;
	font: normal 12px/1 Arial, Helvetica, sans-serif;
	color: #FFF;
	text-transform: uppercase;
	padding: 10px;
	border-radius: 5px;
	display: block;
	position: fixed;
	right: 30px;
	bottom: 30px;
	cursor: pointer;
}

/*-- Assistive text --*/
.assistive-text,
.screen-reader-text {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	width: 0px;
	height: 0px;
	overflow: hidden;
	visibility: hidden;
	line-height: 0;
}

/*-- GENERAL --*/
.wrap {
	width: 1024px;
	margin: 0 auto;
}

#content {
	padding-bottom: 20px;
}

/*-- CONTENT --*/
article {
	position: relative;
}

article .article-thumb {
	float: left;
	margin-top: 5px;
	width: 18%;
	height: auto;
}

article .article-content {
}

article.has_post_thumb .article-content {
	float: right;
	width: 78%;
}

article .entry-header h2,
article .entry-header h2 a {
	font-size: 17px;
	color: #747474;
}

article .postdate {
	font-size: 11px;
	font-style: italic;
	color: #8a8a8a;
	margin-bottom: 5px;
}

article .excerpt {
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'marcellus', Georgia, "Times New Roman", Times, serif;
	line-height: normal;
}

.content {
	overflow: hidden;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	color: #6f89a2;
	text-transform: uppercase;
	margin-bottom: 0.4em;
	line-height: 1.7;
}

.content h1 {
	font-size: 22px;
}

.content h2 {
	font-size: 18px;
}

.content h3 {
	font-size: 16px;
}

.content h4 {
	font-size: 14px;
}

.content h5 {
	font-size: 14px;
}

.content h6 {
	font-size: 13px;
}

.content a {
	color: #F7941C;
}

.content p {
	margin-bottom: 1.2em;
}

.content ul {
	margin: 5px 0 1.2em 15px;
	list-style: outside;
}

.content ol {
	margin: 5px 0 1.2em 15px;
	list-style: decimal;
}

.content li {
	padding: 5px 0;
}

.content blockquote {
	background-color: #c2c6af;
	float: right;
	font: normal 18px/21px Arial, Helvetica, sans-serif;
	color: #FFF;
	/*text-transform: uppercase;*/
	text-align: justify;
	padding: 25px;
	margin-left: 20px;
	width: 180px;
}

.content blockquote p {
	margin: 0;
}

/*-- MORE LINKS --*/
.more {
	background: url(./img/more.png) center center no-repeat;
	display: block;
	width: 16px;
	height: 15px;
	position: absolute;
	right: 5px;
	bottom: 5px;
	z-index: 1;
}

.blue-more {background-color: #538bc9;}
.black-more {background-color: #333;}
.grey-more {background-color: #4c4e51;}

/*-- HEADER --*/
#header {
	padding: 20px 0;
	position: relative;
}

#header .site-description {
	display: none;
}

/* Menu */
#top-menu {
	font: normal 16px 'marcellus', Georgia, "Times New Roman", Times, serif;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	top: 65px;
}

#top-menu ul {
}

#top-menu ul li {
	margin-left: 20px;
	display: inline-block;
	position: relative;
	white-space: nowrap;
}

#top-menu ul li a {
	color: #2e2e2e;
	display: block;
	padding: 5px 0;
}

#top-menu ul li.current-menu-item a,
#top-menu ul li.current-menu-ancestor > a,
#top-menu ul li a:hover {
	color: #0c4da2;
}

#top-menu ul li ul {
	position: absolute;
	z-index: 3;
	width: 100%;
	margin-left: -15px;
	padding: 0 15px;
	box-shadow: 0 1px 2px -2px #111;
	display: none;
}

#top-menu ul li ul li {
	display: block;
	margin-left: -15px;
	width: 100%;
}

#top-menu ul li ul li a {
	background: #fff;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

#top-menu ul li ul li a:hover {
	background-color: #fafafa;
}

/* Lang selector */
#language {
	background: #b3c5d0;
	font: normal 16px 'marcellus', Georgia, "Times New Roman", Times, serif;
	text-transform: uppercase;
	color: #FFF;
	position: absolute;
	right: 0;
	top: 0;
	padding: 8px 10px;
}

#language ul {
}

#language ul li {
	display: inline-block;
	margin: 0 1px;
}

#language ul li a {
	color: #FFF;
}

#language ul li span {
	text-decoration: underline;
}

/*-- HEADING --*/
.heading-img {
	width: 100%;
	overflow: hidden;
}

.heading-img img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}

.bg-heading-img {
	background-position: center top;
	background-repeat: no-repeat;
	width: 100%;
	overflow: hidden;
}

.bg-heading-img a {
	display: block;
	width: 100%;
	height: 100%;
}

/*-- HOME --*/
.home #content {
	background: url(./img/bg-index.jpg) center top repeat-y;
}

#home-row {
	padding-top: 20px;
}

#home-excerpt,
#home-actu {
	float: left;
	text-align: justify;
}

#home-excerpt .more,
#home-actu .more {
	right: 0;
	bottom: 0;
}

#home-excerpt {
	width: 43%;
}

#home-excerpt h1 {
	font-size: 26px;
	color: #538bc9;
}

#home-excerpt h1 span {
	font-size: 40px
}

/* actus */
#home-actu {
	width: 27%;
	margin-left: 4%;
	position: relative;
}

h1.home-title,
h3.widget-title {
	font-size: 18px;
	text-transform: uppercase;
	padding: 15px 0 8px;
}

#home-actu .excerpt {
	font-size: 11px;
	line-height: 14px;
}

#home-actu .more {
	bottom: -56px;
}

/* video */
#home-video {
	width: 23%;
	float: right;
}

.video-preview {
	position: relative;
	display: block;
}

.video-preview img {
	display: block;
	width: 100%;
	height: auto;
}

.video-preview .play {
	background: url(./img/play.png) center no-repeat;
	display: block;
	width: 46px;
	height: 46px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -23px 0 0 -23px;
}

/* Countries */
#countries-home {
	padding-top: 30px;
}

.country-col {
	width: 23%;
	float: left;
	overflow: hidden;
}

#country-col-3 {
	width: 24%;
}

.country-col.col-map {
	width: 30%;
	text-align: center;
}

.country-col.col-map img {
	width: 97%;
	height: auto;
}

.country-col article {
	font-weight: bold;
	color: #FFF;
	padding: 20px 10px;
	margin: 0 5px;
}

.country-col article .entry-header h2,
.country-col article .entry-header h2 a {
	font-size: 24px;
	color: #262626;
	text-transform: uppercase;
	margin-bottom: 10px;
}

#country-col-1 article {
	margin-left: 0;
}

#country-col-4 article {
	margin-right: 0;
}

/*-- PAGE TEMPLATE --*/
.page-content {
	background: url(./img/bg-page.jpg) center repeat-y;
}

.page-content .page-header {
	background: url(./img/bg-page-header.jpg) center repeat-y;
}

.page-header .entry-header {
	background: url(./img/quote-left-blue.png) 0 20px no-repeat;
	padding: 30px 0 40px;
}

.page-header .entry-header.w_back_link {
	position: relative;
}

.page-header .entry-header h1 {
	background: url(./img/quote-right-blue.png) 100% 100% no-repeat;
	display: inline-block;
	font-size: 34px;
	color: #313131;
	padding: 20px 90px 0 100px;
}

.page-header .entry-header.w_back_link h1 {
	max-width: 650px;
}

.w_back_header_right {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background-color: #0094DA;
}

.w_back_header_right a {
	margin-top: 35px;
}

.page_tpl {
	width: 68%;
	float: left;
}

.page_tpl .content {
	margin-top: 20px;
}

/* Duo boxes */
.duo_boxes {
	padding: 15px 5px;
	border: 1px solid #d9dcc7;
}

.duo_title {
	font-size: 18px;
	color: #a0a581;
	margin: 0 5px 15px;
}

.duo_box {
	float: left;
}

.duo_box .content {
	padding: 10px;
}

.duo_box_1 {background-color: #d9dcc7;}
.duo_box_1 ul {list-style-image: url(./img/list_green.png);}

.duo_box_2 {background-color: #e0e4e8;}
.duo_box_2 ul {list-style-image: url(./img/list_blue.png);}

/*-- COUNTRY PAGE TEMPLATE --*/
.page-content.pays-content {
	background: url(./img/bg-page.jpg) center repeat-y;
}

.page-content.pays-content .page-header {
	background: url(./img/bg-pays-header.jpg) center repeat-y;
}

.page-content.pays-content .heading-img {
	margin-left: -96px;
	padding-left: 96px;
}

.page-content.pays-content .heading-img img {
	max-width: none;
	float: right;
}

.country_tpl {
	padding-top: 30px;
}

.country_tpl .entry-title {
	font-size: 36px;
	color: #a0a581;
}

.country_tpl .side-gallery {
	width: 25%;
	float: left;
	margin-top: 20px;
}

.country_tpl .side-gallery .side-img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 15px;
}

.country_tpl .side-gallery .video-preview {
	margin-bottom: 15px;
}

.country_tpl .side-gallery .video-preview .play {
	background-image: url(./img/play-circle.png);
	width: 78px;
	height: 78px;
	margin: -39px 0 0 -39px;
}

.country_tpl .side-gallery h6 {
	font-size: 14px;
	color: #262626;
	text-transform: uppercase;
}

.country_tpl .entry-content {
	width: 71%;
	float: right;
}

.country_tpl.no_side_gallery .entry-content,
.pays-france .country_tpl.no_side_gallery .entry-content {
	float: none;
	width: auto;
}

.country_tpl .content {
	text-align: justify;
}

/*-- FRANCE PAGE TEMPLATE --*/
.page-content.pays-content.pays-france {
	background: url(./img/bg-france.jpg) center repeat-y;
}

.page-content.pays-content.pays-france .page-header {
	background: url(./img/bg-france-header.jpg) center repeat-y;
}

.pays-france .country_tpl .entry-content {
	background: url(./img/quote-left-orange.png) 0 0 no-repeat;
	width: 73%;
	padding-top: 14px;
}

.pays-france .country_tpl .entry-title {
	color: #dc7500;
}

.page-content.pays-content.pays-france .entry-content .content-wrap {
	background: url(./img/quote-right-blue-2.png) 100% 0 no-repeat;
	padding: 14px 75px 0 50px;
	margin-top: -14px;
}

.page-content.pays-content.pays-france .content h5,
.page-content.pays-content.pays-france .content h6 {
	font-family: Arial, Helvetica, sans-serif;
	color: #232323;
	text-transform: none;
}

.page-content.pays-content.pays-france .content a {
	color: #5f7e9e;
}

/*-- CONTACT PAGE TEMPLATE --*/
#contact-map {
	width: 100%;
	height: 300px;
}

.contact-wrap {
	padding-top: 35px;
}

.contact_tpl {
	float: left;
	width: 53%;
}

.contact_tpl .entry-header h1 {
	font-size: 36px;
	color: #a0a581;
	margin-bottom: 15px;
}

.contact_tpl .content h1,
.contact_tpl .content h2,
.contact_tpl .content h3,
.contact_tpl .content h4,
.contact_tpl .content h5,
.contact_tpl .content h6,
.contact-side .side-title {
	color: #171717;
}

.contact-form {
	padding-top: 20px;
}

.contact-side {
	float: right;
	width: 44%;
	padding-top: 80px;
}

.contact-side .side-title,
.contact-side .duo_title {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 15px;
	color: #262626;
}

.social-networks {
	margin-bottom: 30px;
}

.social-networks a {
	display: inline-block;
	margin-right: 10px;
}

.contact-infos {
}

.contact-side .duo_boxes {
	background-color: #c4c8b2;
	padding: 15px 10px;
	border: 0 none;
}

.contact-side .duo_box .content {
	padding: 0;
}

.contact-side .duo_box_1,
.contact-side .duo_box_2 {
	background-color: transparent;
}

.contact-side .duo_box_1 ul,
.contact-side .duo_box_2 ul {
	list-style-image: none;
}

.contact-side .duo_box .content {
	margin: 0;
	color: #898989;
}

.contact-side .duo_box .content h1,
.contact-side .duo_box .content h2,
.contact-side .duo_box .content h3,
.contact-side .duo_box .content h4,
.contact-side .duo_box .content h5,
.contact-side .duo_box .content h6 {
	color: #FFF;
	text-transform: none;
	font-weight: normal;
	margin-bottom: 0;
}

.contact-side .duo_box .content h5 {
	margin-bottom: 3px;
}

.exp-content .duo_box .content p {
	margin-bottom: 0;
}

.contact-side .duo_box .content h1 a,
.contact-side .duo_box .content h2 a,
.contact-side .duo_box .content h3 a,
.contact-side .duo_box .content h4 a,
.contact-side .duo_box .content h5 a,
.contact-side .duo_box .content h6 a,
.exp-content .duo_box .content a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #262626;
	text-decoration: underline;
}

.contact-side .duo_box .content h5 a {
	float: right;
}

/*-- SAPERE CHEZ VOUS --*/
#ccols-content {
	padding-top: 35px;
}

.countries-cols .duo_boxes {
	margin: 30px 0 10px;
}

/*-- CATEGORY --*/
.category-content {
	background: url(./img/bg-page.jpg) center repeat-y;
}

.category-content .page-header {
	background: url(./img/bg-cat-header.jpg) center repeat-y;
}

.cat-header {
	background: url(./img/quote-left-blue.png) 0 15px no-repeat;
	padding: 30px 0 15px;
	position: relative;
	margin-left: -45px;
}

.cat-header h1 {
	background: url(./img/quote-right-blue.png) 100% 100% no-repeat;
	display: inline-block;
	font-size: 34px;
	color: #313131;
	padding: 15px 90px 10px 100px;
}

.back-country {
	position: absolute;
	right: 30px;
	top: 60px;
}

.back-country span,
.back-country .selector {
	display: inline-block;
}

.back-country span {
	text-transform: uppercase;
}

.back-country .selector {
	background: #fff url(./img/select.jpg) 97% 50% no-repeat;
	padding: 1px 70px 1px 8px;
	position: relative;
	margin-left: 20px;
	cursor: pointer;
	z-index: 1;
}

.back-country ul {
	background-color: #FFF;
	position: absolute;
	left: 0;
	top: 100%;
	display: none;
	width: 100%;
	border-top: 1px solid #DDD;
}

.back-country ul li {
	border: 1px solid #DDD;
	border-top: 0 none;
}

.back-country ul li a {
	display: block;
	padding: 3px 8px;
	color: #000;
}

.back-country ul li a:hover {
	background-color: #EEE;
}

#cat-entries,
#doc-entries,
#exp-entries {
	padding-top: 35px;
	margin-left: 50px;
}

#cat-entries .cat-col,
#doc-entries .doc-col,
#exp-entries .exp-col {
	width: 25%;
	float: left;
}

.cat-item {
	background-color: #fbb26a;
	margin: 0 5px 12px 5px;
}

#cat-entries #cat-col-4 .cat-item,
#doc-entries #doc-col-4 .doc-item,
#exp-entries #exp-col-4 .exp-item {
	margin-right: 0;
}

.cat-item img.actu-thumb,
.doc-item img.actu-thumb,
.exp-item img.actu-thumb {
	display: block;
	width: 100%;
	height: auto;
}

.cat-item .article-content-cat {
	padding: 25px 15px 40px 15px;
}

.cat-item .entry-title,
.cat-item .entry-title a, {
	font-size: 18px;
	color: #FFF;
}

.cat-item .entry-content {
	line-height: 14px;
	margin: 15px 0;
}

.cat-item .postdate {
	color: #FFF;
}

.cat-item .more {
	right: 10px;
	bottom: 47px;
}

/*-- DOCUMENTS --*/
.doc-content {
	background: url(./img/bg-page.jpg) center repeat-y;
}

.doc-content .page-header {
	background: url(./img/bg-doc-header.jpg) center repeat-y;
}

.doc-header {
	background: url(./img/quote-left-white.png) 0 15px no-repeat;
	padding: 20px 0 15px;
	position: relative;
	margin-left: -82px;
}

.doc-header .doc-header-left {
	width: 550px;
	float: left;
}

.doc-header .doc-header-right {
	width: 508px;
	float: right;
	line-height: normal;
	padding: 0 20px;
}

.doc-header .doc-header-right p {
	margin-bottom: 5px;
}

.doc-header h1 {
	background: url(./img/quote-right-white.png) 100% 100% no-repeat;
	display: inline-block;
	font-size: 34px;
	color: #313131;
	padding: 15px 80px 10px 90px;
	max-width: 365px;
}

.doc-item {
	margin: 0 5px 12px 5px;
	border: 1px solid #889ea9;
}

.doc-item .entry-title {
	font-size: 17px;
	color: #889ea9;
}

.doc-item .article-content-doc {
	padding: 5px 15px 10px;
}

.doc-item .entry-content {
	font-size: 11px;
	line-height: 14px;
	margin: 15px 0 25px;
}

.doc-item .postdate {
	color: #889ea9;
}

.doc-item .download {
	background: #333;
	font-family: 'marcellus', Georgia, "Times New Roman", Times, serif;
	color: #FFF;
	display: inline-block;
	padding: 0 10px;
	position: absolute;
	right: 10px;
	bottom: 15px;
}

/* login form */
#doc-login {
	width: 50%;
	margin: 70px auto 200px;
}

#doc-login h6 {
	font-size: 18px;
	margin-bottom: 20px;
}

#doc-login form .ajax-loading {
	left: 36%;
}

/*-- PARTAGE D'EXPERIENCE --*/
.exp-content {
	background: url(./img/bg-experience.jpg) center repeat-y;
}

.exp-content .page-header {
	background: url(./img/bg-experience-header.jpg) center 0 repeat-y;
}

.exp-header {
	background: url(./img/quote-left-white.png) 0 15px no-repeat;
	padding: 20px 0 15px;
	position: relative;
	margin-left: 225px;
}

.exp-header .vignette {
	position: absolute;
	left: -206px;
	top: -10px;
}

.exp-header .exp-header-left {
	width: 620px;
	float: left;
}

.exp-header .exp-header-right,
.w_back_header_right {
	width: 145px;
	float: right;
	line-height: normal;
	padding: 0 10px;
}

.exp-header .exp-header-right a,
.w_back_header_right a {
	color: #171717;
	text-transform: uppercase;
	text-align: center;
	display: block;
}

.exp-header .exp-header-right a img,
.w_back_header_right a img {
	margin: 5px auto 0;
}

.exp-header h1 {
	background: url(./img/quote-right-white.png) 100% 100% no-repeat;
	display: inline-block;
	font-size: 34px;
	color: #313131;
	padding: 15px 80px 10px 90px;
	max-width: 450px;
}

#exp-entries {
	padding-top: 25px;
}

.exp-item {
	background-color: #84d0f0;
	margin: 0 5px 12px;
	border-radius: 0 0 15px 15px;
}

.exp-item .entry-title,
.exp-item .entry-title a {
	font-size: 17px;
	color: #FFF;
}

.exp-item .entry-title {
	padding-bottom: 10px;
}

.exp-item .article-content-exp {
	padding: 10px 7px 7px;
}

.exp-item .entry-wrap {
	background-color: #FFF;
	border-radius: 0 0 11px 11px;
	padding: 10px 5px 15px;
}

.exp-item .entry-content {
	line-height: 14px;
	margin: 0 0 10px;
	text-align: justify;
}

.exp-item .postdate {
	margin-bottom: 0;
}

.exp-item .more {
	right: 15px;
	bottom: 23px;
}

/* Duo boxes */
.exp-content .duo_boxes {
	padding: 40px 0 0 55px;
	border: 0 none;
}

.exp-content .duo_box {
	float: left;
}

.exp-content .duo_box_1 {
	width: 55%;
}

.exp-content .duo_box_2 {
	width: 45%;
}

.exp-content .duo_box_1,
.exp-content .duo_box_2 {
	background-color: transparent;
}

.exp-content .duo_box_1 ul,
.exp-content .duo_box_2 ul {
	list-style-image: none;
}

.exp-content .duo_box .content {
	margin: 0;
	padding: 20px 15px 15px;
	color: #FFF;
}

.exp-content .duo_box .content p {
	margin-bottom: 5px;
}

.exp-content .duo_box .content a {
	color: #84d0f0;
}

.exp-content .duo_box_1 .content {
	background-color: #0095da;
}

.exp-content .duo_box_2 .content {
	background-color: #0c4da2;
	margin-left: 10px;
}

/*-- SIDEBAR --*/
#sidebar {
	float: right;
	width: 28.5%;/*293px*/
}

.widget {
	background-color: #dcd6c9;
	padding: 0 20px;
	position: relative;
	margin-bottom: 15px;
}

.widget-title {
}

.widget-content {
	overflow: hidden;
}

.widget-content article {
	padding: 0 5px 15px 10px;
	margin-bottom: 15px;
	border-bottom: 1px dotted #b7b2a7;
}

.widget-content article:last-child {
	border-bottom: 0 none;
}

.widget-content article .entry-header h2,
.widget-content article .entry-header h2 a,
.widget-content article .entry-header .postdate {
	color: #100a00;
}

.widget-content article .excerpt {
	line-height: normal;
}

.widget .all_posts {
	background-color: #c7c0b0;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	font: normal 11px 'marcellus', Georgia, "Times New Roman", Times, serif;
	text-transform: uppercase;
}

.widget .all_posts a {
	display: block;
	position: relative;
	text-align: right;
	color: #262626;
	padding: 3px 30px 3px 10px;
}

.widget .all_posts a .more {
	bottom: 3px;
}

a.ext-site {
	background-color: #A0A581;
	display: block;
	font: normal bold 14px 'marcellus', Arial, Helvetica, sans-serif;
	color: #171717;
	text-transform: uppercase;
	text-align: center;
	padding: 10px 5px;
	margin: 15px 0;
}

/* Sidebar countries */
.sidebar-actus .widget article .article-thumb {
	width: 21%;
}

.sidebar-actus .widget article.has_post_thumb .article-content {
	width: 76%;
}

/* Sidebar france */
.sidebar-france .widget {
	background-color: #FFF;
	border-radius: 15px;
	border: 7px solid #bae5f7;
	margin: 55px 15px 20px;
	padding: 70px 5px 30px;
}

.sidebar-france .widget .widget-title {
	position: absolute;
	left: 3px;
	top: -70px;
}

.sidebar-france .widget article .article-thumb {
	width: 23%;
}

.sidebar-france .widget article.has_post_thumb .article-content {
	width: 73%;
}

.sidebar-france .widget article .entry-header h2,
.sidebar-france .widget article .entry-header h2 a,
.sidebar-france .widget .widget-content .postdate {
	color: #747474;
}

.sidebar-france .widget .widget-content .excerpt {
	font-size: 11px;
}

.sidebar-france .widget .all_posts {
	background-color: transparent;
	bottom: 15px;
}

.sidebar-france .widget_exps {
	border-color: #ded8cc;
}

/* Sidebar experiences */
.sidebar-france.sidebar-exp {
	background-color: #DCD6C9;
}

/*--FOOTER --*/
#footer {
}

.foot-mentions {
	background: url(./img/bg-fm.jpg) 0 0 repeat;
	color: #FFF;
	text-align: center;
	padding: 15px;
	border-top: 1px solid #303339;
}