/* @override http://sitedit.editions-glyphe.com/wp-content/themes/sitedit/css/sitedit.css */

/* RESET */

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;
}
.clear-after:after {
	display: table;
	content: " ";
	clear: both;
}
* {box-sizing: border-box;}
button {
	cursor: pointer;
}
hr.clear {
	display: table;
	content: " ";
	clear: both;
	border: none;
	color: transparent;
}

/* accessibility */
.screen-reader-text {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
}


/* NAVIGATION */

/* preventing from overflow */
html,
body {
	overflow-x: hidden;
}

/* wrapper styles */
.container {
	position: relative;
	min-height: 100vh;
	background: #fff;
}

aside.sidebar {
	background: #444;
	color: #fff;
}

aside.sidebar a {
	color: #fff;
}

@media (min-width: 801px) {
	aside.sidebar {
		display: none;
	}
	.hide-desktop {
		display: none;
	}
}

@media (max-width: 800px) {
	.hide-mobile {
		display: none;
	}
	.sidebar {
		position: absolute;
		top: 0;
		right: 0;
		width: 60vw;
		min-height: 100vh;
	}	
	.container {
		transform: translateX(0) translateZ(0);
		transition: transform .2s;
		will-change: transform;
	}
	[class^="nav-button"] {
		display: block;
		z-index: 9;
		font-size: 30px;
		text-decoration: none;
		color: #7f807f;
		position: absolute;
		right: 10px;
		top: 24px;
		cursor: pointer;
		-webkit-tap-highlight-color: rgba(0,0,0,0);
	}
	[class^="nav-button"]:before {
		display: inline-block;
		content: "\f0c9";
		font-family: 'FontAwesome';
	}
	a.nav-button-close:before {
		content: "\f057";
	}
	body:target .container {
		transform: translateX(-60vw);
		position: fixed;
		left: auto;
		top: auto;
	}
	.nav-button-close,
		body:target .nav-button-open {
		display: none;
	}
	.nav-button-open,
		body:target .nav-button-close {
		display: block;
	}
	
	/* mobile navigation styles */
	#navigation a {
		display: block;
		text-transform: uppercase;
		text-decoration: none;
		padding: 10px 10px 10px 2em;
		border-bottom: 1px solid rgba(255,255,255,.3);
	}
	#navigation ul ul a {
		font-size: .8em;
		color: rgba(255,255,255,.8);
		padding-left: 30px;
	}
	
}
/* end of small screen media query */

/* THEME STYLES */

html {
	font-size: 62.5%;
}
body {
	background: #fff;
	color: #333;
	font: 200 1.6em/1.5em "Raleway", Arial, sans-serif;
}
b, strong {
	font-weight: 600;
}
i,em {
	font-style: italic;
}

/* MENUBAR */
#main-nav {
	background: #444;
	margin-top: 20px;
	margin-bottom: 1px;
}
#main-nav .grid.grid-pad {
	padding-top: 0;
	overflow: visible;
}
#menubar {
	float: left;
	z-index: 99;
	position: relative;
	font-size: .95em;
}
#menubar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#menubar ul li {
	display: block;
	position: relative;
	float: left;
}
#menubar li ul {
	width: 240px;
	position: absolute;
	display: none;
}
#menubar ul li a {
	display: block;
	padding: 0 20px;
	text-decoration: none;
	color: #fff;
	color: rgba(255,255,255,.8);
}
#menubar li:hover > ul {
	display: block;
}
#menubar li:hover li {
	float: none;
}
#menubar ul:before,
#menubar ul:after {
	content: " ";
	display: table;
}
#menubar ul:after {
	clear: both;
}

/* menubar styling */
#menubar a {
	text-transform: uppercase;
	line-height: 40px;
	height: 40px;
	display: block;
	font-weight: 400;
}
#menubar li > ul a {
	height: auto;
	line-height: 1.2em;
	padding: 10px;
	text-transform: none;
	border-bottom: 1px solid #fff;
	border-color: rgba(255,255,255,.3);
}
#menubar li:hover > ul {
	background: #555;
	-moz-box-shadow: 0 3px 4px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 3px 4px rgba(0,0,0,.2);
	-o-box-shadow: 0 3px 4px rgba(0,0,0,.2);
	box-shadow: 0 3px 4px rgba(0,0,0,.2);
}
#menubar li:hover > a {
	color: #fff;
}
#menubar li > ul a:hover {
	background: #999;
	color: #fff;
}
#menubar li.menu-item-has-children>a:after {
	display: inline-block;
	content: "\f107";
	font-family: 'FontAwesome';
	margin-left: .5em;
	color: #fff;
	color: rgba(255,255,255,.5);
}

/* second level navigation */
#menubar li > ul ul {
	position: absolute;
	left: 240px;
	top: 0;
	width: 240px;
	box-shadow: 3px 3px 4px rgba(0,0,0,.2) !important;

}
#menubar li li.menu-item-has-children > a:after {
	content: "\f105";
	float: right;
}


/* TOP ARROW */
.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);
    border-radius: 4px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: rgba(0, 0, 0, .5) url(../img/cd-top-arrow.svg) no-repeat center 50%;
    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;
    z-index: 999;
}
.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.cd-is-visible {
    visibility: visible;
    opacity: 1;
}
.cd-top.cd-fade-out {
    opacity: .5;
}
.no-touch .cd-top:hover {
    background-color: #000;
    opacity: 1;
}
@media only screen and (min-width:768px) {
    .cd-top {
        right: 20px;
        bottom: 20px;
    }
}

/* social networks */
ul.socials li,
ul.social-share li {
	display: inline-block;
	margin: 0 .25em;
	font-size: 24px;
}
section#content ul.social-share li {
	font-size: .8em;
	vertical-align: middle;
	padding-left: 0;
}
section#content ul.social-share li:before {
	content: "";
}
ul.social-share li:first-child,
ul.socials li:first-child {
	margin-left: 0;
}
ul.social-share li:last-child,
ul.socials li:last-child {
	margin-right: 0;
}
ul.social-share li a,
ul.socials li a {
	text-decoration: none;
	color: inherit;
}
ul.socials li i {
	display: none;
}
ul.socials li a:before {
	font-family: 'FontAwesome';
	content: "\f230";
	display: inline-block;
	vertical-align: middle;
}
ul.socials li.facebook a:before {content: "\f230";}
ul.socials li.twitter a:before {content: "\f099";}
ul.socials li.linkedin a:before {content: "\f0e1";}
ul.socials li.google a:before {content: "\f0d5";}
ul.socials li.youtube a:before {content: "\f167";}

ul.socials li.facebook a, ul.social-share .facebook a {color: #3b5998;}
ul.socials li.twitter a, ul.social-share .twitter a {color: #1da1f2;}
ul.socials li.linkedin a, ul.social-share .linkedin a {color: #0077b5;}
ul.socials li.google a, ul.social-share .google a {color: #dd4b39;}
ul.socials li.youtube a, ul.social-share .youtube a {color: #cd201f;}

ul.social-share a {font-size: 24px;}

footer ul.socials li a {color: #fff !important;color: rgba(255,255,255,.8) !important; font-size: 1.2em;}
footer ul.socials li a:hover {color: #fff !important;}

/* THEME LAYOUT */
/* ------------------------------------------------------ */
header ul.socials {
	float: right;
}


/* search form & newsletter form */
form#newsletter-footer,
header form#search-form {
	width: 100%;
	position: relative;
	background: #eee;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
form#newsletter-footer input,
header form#search-form input {
	background: transparent;
	border: none;
	width: 100%;
	line-height: 1.6em;
	font-size: .8em;
	padding: 3px 12% 3px 10px;
}
form#newsletter-footer input:focus,
header form#search-form input:focus {
	outline: none;
}
form#newsletter-footer button,
header form#search-form button {
	background: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 1.3em;
	font-size: 1em;
	color: #aaa;
	transition: color .5s;
}
form#newsletter-footer ::-webkit-input-placeholder,
form#search-form ::-webkit-input-placeholder {
	color: #333;
}
form#newsletter-footer ::-moz-placeholder,
form#search-form ::-moz-placeholder {
	color: #333;
}
form#newsletter-footer :-ms-input-placeholder,
form#search-form :-ms-input-placeholder {
	color: #333;
}
form#newsletter-footer :-moz-placeholder,
form#search-form :-moz-placeholder {
	color: #333;
}
form#newsletter-footer input[type="text"]:focus ~ button,
form#search-form input[type="text"]:focus ~ button {
	color: #444;
}

/* footer */
footer {
	background: #333;
	color: #fff;
	padding: 30px 0;
	font-size: .9em;
}
footer .subfooter {
	font-size: x-small;
	padding-top: 1em;
	padding-bottom: 30px;
	margin-top: 1em;
	border-top: 1px solid #fff;
	border-color: rgba(255,255,255,.25);
}
footer a,
footer a:hover {
	color: inherit;
}
footer .widget {
	margin-bottom: 30px;
	padding-right: 10%;
}
footer .sitedit {
	text-align: right;
}
footer .widget-title {
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: .5em;
}

footer .widget ul.menu li,
footer .widget_recent_entries ul li {
	padding-left: 20px;
	position: relative;
	margin-bottom: .8em;
}
footer .widget ul.menu li a,
footer .widget_recent_entries ul li a {
	text-decoration: none;
}

footer .widget ul.menu li:before,
footer .widget_recent_entries ul li:before {
	display: block;
	width: 20px;
	font-family: 'FontAwesome';
	font-size: .6em;
	content: "\f0c8";
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	color: rgba(255,255,255,.5);
}

footer .subfooter span.copyright,
footer .subfooter div.menu-footer-container,
footer .subfooter ul.menu,
footer .subfooter ul.menu li {
	display: inline-block;
	margin-right: 1.5em;
}
footer .subfooter ul.menu li a {
	font-size: 1.1em;
	text-decoration: none;
	font-weight: 400;
}
footer .subfooter ul.menu li a:hover {
	text-decoration: underline;
}


/*secondary*/
#secondary .widget-title {
	margin-bottom: .8em;
}


/* homepage */
div.home-bg {
	background: #efefef;
	padding: 20px 0;
}
#home .front-title {
	font-size: 1.4em;
	margin-bottom: .5em;
	font-weight: 700;
}
#home .widget {
	margin-bottom: 20px;
}
#home .widget-title {
	font-size: 1.2em;
	margin-bottom: .5em;
	font-weight: 700;
}

/* book */
article.news,
article.event,
article.book {
	margin-bottom: 20px;
	font-size: .9em;
	line-height: 1.4em;
}
article.news:after,
article.event:after,
article.book:after {
	content: " ";
	display: table;
	clear: both;
}
article.news .thumb,
article.event .thumb,
article.book .thumb {
	float: left;
	width: 25%;
}
article.news .thumb img,
article.event .thumb img,
article.book .thumb img {
	display: block;
	max-width: 100%;
	height: auto;
}
article.news.thumbnail .desc,
article.event.thumbnail .desc,
article.book.thumbnail .desc {
	width: 72%;
	float: right;
}
article.event .event-title,
article.news .desc .news-title,
article.book .book-title {
	font-size: 1.1em;
	font-weight: 600;
}
article.book .author {
	font-size: .9em;
}
article.book .release {
	font-size: .8em;
	margin-bottom: 1em;
}
#slider a.read-more-button,
article.book a.read-more-button {
	display: inline-block;
	background: #333;
	color: #fff;
	margin-top: .5em;
	padding: 2px 12px;
	text-align: center;
	font-size: .8em;
	text-decoration: none;
}
#slider a.read-more-button:hover,
article.book a.read-more-button:hover {
	background: #000;
}

div.featured-content {
	font-size: .9em;
	margin-top: 1em;
}
article.news .desc a.read-more {
	display: block;
	font-size: .9em;
	margin-top: .5em;
}

body.archive .thumb.event img,
article.event .thumb img {
	display: block;
	margin: 0;
}

body.archive .thumb.event,
article.event .thumb {
	position: relative;
	min-height: 4em;
}
body.archive .thumb.event .event-date,
article.event .thumb .event-date {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
body.archive .thumb.event .event-date span,
article.event .thumb .event-date span {
	color: #fff;
	display: block;
	text-align: center;
	font-size: 1em;
	line-height: 1.1em;
	text-transform: uppercase;
	font-weight: 100;
	background: rgba(0,0,0,.5);
}
body.archive .thumb.event .event-date span.day,
article.event .thumb .event-date span.day {
	font-size: 2em;
}
body.archive .thumb.event .event-date span.month,
article.event .thumb .event-date span.month {
	padding-bottom: .4em;
}

/* slider */
.bx-wrapper {
	position: relative;
}
.bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border:  none;
	background: transparent;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: auto;
	top: -35px;
	right: 0;
	padding: 0;
	text-align: right;
	padding-right: 10px;
}
.bx-wrapper .bx-pager .bx-pager-item {
	display: inline;
	margin-left: 10px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	background: #000;
	display: inline-block;
	font-size: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-webkitborder-radius: 0;
	width: 14px;
	height: 14px;
}
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #fff;
}


#slider li {
	position: relative;
}
#slider li {
    vertical-align: middle;
    display: inline-block;
    float: none !important;
}
#slider li img {
	display: block;
	width: 100%;
	height: auto;
}
#slider li div.about {
	position: absolute;
	background: rgba(0,0,0,.75);
	height: 0;
	min-height: 0;
	width: 100%;
	bottom: 0;
	left: 0;
	color: #fff;
	font-size: .9em;
	line-height: 1.3em;
	-moz-transition: all .5s ease-out;
	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;
}
#slider li:hover div.about {
	min-height: 100%;
}
#slider li .book-title {
	font-size: 1.2em;
	font-weight: 800;
	margin-bottom: .5em;
	padding: 15px 15px 0;
}
#slider li .author a {
	color: #fff;
	padding: 0 15px;
	display: inline-block;
}
#slider a.read-more-button {
	display: block;
	margin: 40px 15px 15px;
	padding: 5px;
}
/* slider 1 featured book */
#slider #one-featured-book * {
	padding: 0;
	margin: 0;
}
#slider #one-featured-book a {
	color: inherit;
	text-decoration: none;
}

#slider #one-featured-book .thumb {
	width: 30%;
	float: left;
}
#slider #one-featured-book .desc {
	width: 68%;
	float: right;
}
#slider #one-featured-book .book-title {
	font-size: 2.4em;
	font-weight: 200;
	line-height: 1.2em;
	margin-bottom: .3em;
}
#slider #one-featured-book .author {
	font-weight: 600;
	margin-bottom: .5em;
}
#slider #one-featured-book .release {
	margin-bottom: 1em;
}
#slider #one-featured-book a.more-link {
	font-weight: 600;
	text-decoration: underline;
}
#slider #one-featured-book a.more-link span {
	padding-left: .5em;
}


/* content */
section#content {
	padding-top: 20px;
	padding-bottom: 50px;
	min-height: 500px;
}
section#content h1.main-title {
	font-size: 2.6em;
	line-height: 1.2em;
	margin-bottom: .5em;
}
section#content h2 {
	font-size: 1.8em;
	line-height: 1.2em;
	margin-bottom: .3em;
}
section#content h3 {
	font-size: 1.2em;
	line-height: 1.2em;
	margin-bottom: .3em;
	font-weight: 400;
}
section#content blockquote {
	margin: 1em 0;
	font-style: italic;
	padding-left: 2.5em;
	position: relative;
}
section#content blockquote:before {
	content: "\f10d";
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	top: .2em;
	font-size: 1.8em;
	font-style: normal;
	color: #bbb;
}
section#content li {
	padding-left: 20px;
	position: relative;
	margin-bottom: .5em;
}
section#content li:before {
	display: block;
	width: 20px;
	font-family: 'FontAwesome';
	font-size: .6em;
	content: "\f0c8";
	position: absolute;
	left: 0;
	top: 0;
	color: #ddd;
}
section#content p {
	margin-bottom: .8em;
}

section#content img.alignright {float:right; margin:0 0 1em 1em}
section#content img.alignleft {float:left; margin:0 1em 1em 0}
section#content img.aligncenter {display: block; margin-left: auto; margin-right: auto}
section#content a img.alignright {float:right; margin:0 0 1em 1em}
section#content a img.alignleft {float:left; margin:0 1em 1em 0}
section#content a img.aligncenter {display: block; margin-left: auto; margin-right: auto}

section#content .gallery {
	margin-bottom: 1em;
}
section#content .gallery img {
	border: none;
}

#breadcrumbs {
	font-size: small;
	margin-bottom: 1.5em;
}
#breadcrumbs a {
	color: inherit;
	text-decoration: none;
}
#breadcrumbs a:hover {
	text-decoration: underline;
}

/* single book & single author */
.book-single h1,
.single-author h1 {
	font-size: 2.4em;
	font-weight: 200;
	line-height: 1.2em;
	margin-bottom: .5em;
}
.book-single h1 small {
	font-size: .7em;
	line-height: 1.1em;
}
.book-single .authors {
	font-weight: 600;
}
.book-single ul.social-share,
.single-author ul.social-share {
	margin: 1em 0;
}
.single-livre .list-books,
.single-author .list-books {
	font-size: 1.3em;
	margin: 2em 0 .5em;
}
.single-livre ul.other-books li {
	display: inline-block;
	margin: 0 20px 20px 0;
}
.single-livre ul.other-books li img {
	display: block;
}
.book-meta {
	font-size: .8em;
	line-height: 1.5em;
}
.book-meta .price,
.book-meta .release {
	font-weight: 600;
}
.book-single .pdf-excerpt a {
	text-decoration: none;
	font-size: .9em;
	font-weight: 400;
}
.book-single .pdf-excerpt a em {
	font-weight: 600;
}
.book-single .pdf-excerpt a:hover {
	text-decoration: underline;
}


/* pagination */
#paginate:before {
	display: table;
	content: " ";
	clear: both;
	margin-top: 2em;
}
#paginate a {
	display: inline-block;
	margin: 0 .25em;
	padding: .3em;
	background: #bbb;
	color: #fff;
	min-width: 2em;
	text-align: center;
	text-decoration: none;
}
#paginate span>a,
#paginate span>a:hover {
	background: transparent;
	color: inherit;
}
#paginate a:first-child {
	margin-left: 0;
}
#paginate a.active {
	background: #444;
}
#paginate a:hover {
	background: #000;
}

/* single book */
section#content .suggested ul li,
section#content .related ul li{
	padding: 0;
}
section#content .suggested ul li:before,
section#content .related ul li:before {
	content: "";
}



/* archives */
body.archive article.book,
body.page-template-page-a-paraitre article.book,
body.page-template-page-nouveautes article.book {
	width: 33%;
	display: inline-block;
	vertical-align: top;
	margin-top: 20px;
	padding-right: 30px;
}
body.blog section#content .actu,
body.archive section#content .actu,
body.archive section#content .author-item,
body .collection-item {
	width: 22%;
	margin-right: 2%;
	display: inline-block;
	vertical-align: top;
	margin-top: 20px;
}
body .collection-item .desc p {
	font-size: .9em;
	line-height: 1.3em;
}
body section#content .collection-item .collection-title {
	font-size: 1.4em;
	font-weight: 400;
}

body.archive section#content .actu .date {
	font-size: .9em;
}
body.archive section#content .actu .title {
	font-size: 1.1em;
	font-weight: 600;
}
body.archive section#content .actu a.more {
	font-size: .9em;
}


body.archive section#content .author-item .author-name {
	font-size: 1.2em;
	font-weight: 400;
}
body.archive section#content .actu .desc p,
body.archive section#content .author-item .desc p {
	font-size: .9em;
	line-height: 1.3em;
}
body.archive section#content .tax-desc {
	font-size: 1.5em;
	line-height: 1.3em;
}
body.archive section#content .book-title {
	font-weight: 600;
	font-size: 1.3em;
}
body.archive section#content .author {
	font-size: .9em;
}

body.archive section#content .author {
	font-size: .9em;
}
body.archive section#content .excerpt p {
	font-size: .9em;
	line-height: 1.2em;
	margin: .5em 0;
}
body.archive section#content .release-date {
	font-weight: 400;
}

body.archive section#content article.actu .date {
	font-size: .8em;
	margin-top: .5em;
}

/* single related boo, */
body.single article.book.news-related {
	max-width: 50%;
	margin-top: 2em;
}


/* single event */
#home .event-title,
section#content .event-title {
	position: relative;
}
#home .event-title:after,
section#content .event-title:after {
	display: table;
	clear: both;
	content: " ";
}
#home .event-title,
section#content .event-title {
	position: relative;
	padding-left: 80px;
	min-height: 80px;
}
#home .event-title,
section#content article .event-title {
	padding-left: 46px;
	min-height: 40px;
}

#home .event-title .event-date,
section#content .event-title .event-date {
	width: 70px;
	height: 70px;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	color: #fff;
}
#home .event-title .event-date,
section#content article .event-title .event-date {
	width: 36px;
	height: 36px;
}

#home .event-title .event-date span,
section#content .event-title .event-date span {
	display: block;
	font-size: 24px;
	line-height: 35px;
	text-transform: uppercase;
}
#home .event-title .event-date span,
section#content article .event-title .event-date span {
	font-size: 12px;
	line-height: 18px;
}

#home .event-title .event-date span.day,
section#content .event-title .event-date span.day {
	font-size: 40px;
}
#home .event-title .event-date span.day,
section#content article .event-title .event-date span.day {
	font-size: 20px;
}

/*search */
body.search section#content article.book {
	display: inline-block;
	width: 23%;
	margin-right: 1%;
	vertical-align: top;
}
body.search section#content article.book .book-title {
	font-size: 1.2em;
	line-height: 1.2em;
}
body.search section#content article.book .author {
	font-size: .9em;
}
body.search section#content article.book .excerpt p {
	font-size: .9em;
	line-height: 1.3em;
}
body.search section#content article.book .release-date {
	font-weight: 400;
	font-size: .9em;
}

/* contact form */
form#contact label {
	display: block;
	margin-bottom: .2em;
	line-height: 1em;
}
form#contact input,
form#contact textarea {
	width: 100%;
	padding: 5px;
	font: 15px/20px 'Raleway';
	border: 1px solid #ddd;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
form#contact input.error,
form#contact textarea.error {
	border-color: red;
}
form#contact textarea {
	height: 8em;
}
form#contact button {
	border: none;
	background: #000;
	font-size: 16px;
	color: #fff;
	padding: 1em 2em;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
form#contact label.error {
	color: red;
	font-size: .9em;
	font-weight: 400;
	margin-bottom: 1em;
	margin-top: .3em;
}
form#contact label.error:before {
	font-family: 'FontAwesome';
	content: "\f106";
	display: inline-block;
	vertical-align: top;
	margin-right: .5em;
}
#fountainG {
	display: none;
}

/* blog archive */
body.blog section#content .actu h2 {
	font-size: 1.2em;
	font-weight: 400;
}
body.blog section#content .desc,
body.blog section#content a.more {
	font-size: .9em;
	line-height: 1.4em;
}


/* paypal button */
button.paypal-button {
	display: inline-block;
	font-size: 1em;
	background: #000;
	color: #fff;
	padding: .3em 1em !important;
	border: none;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	transition: all .3s ease-out;
}
button.paypal-button:hover {
	padding-left: 1.5em !important;
}

/* error 404 */
body.error404 section#content .fa {
	font-size: 12em;
	line-height: 1em;
	margin-bottom: .5em;
}
body.error404 section#content h1 {
	font-size: 2.5em;
	line-height: 1em;
}

@media (max-width: 800px) {
	header div.logo {
		max-width: 80%;
		margin-top: 0;
	}
	header .search.col-3-12 {
		padding: 0;
	}
	.mob-reset {
		float: none !important;
		width: auto !important;
		display: block !important;
		margin-bottom: 20px !important;
	}
	body .collection-item,
	body.archive article.book,
	body.page-template-page-nouveautes article.book,
	body.page-template-page-a-paraitre article.book,
	body.blog section#content .actu,
	body.archive section#content .actu,
	body.archive section#content .author-item {
		width: auto;
		display: block;
		margin-bottom: 30px;
	}
	body .collection-item img.attachment-news,
	body.archive section#content .actu img.wp-post-image,
	body.archive section#content .author-item img.wp-post-image {
		width: 100%;
		display: block;
		height: auto;
		margin-bottom: 10px;
	}
	body.single article.book.news-related {
		max-width: 80%;
	}
	
	/* mobile font sizes */
	section#content {
		font-size: .9em;
	}
	section#content h1.main-title {
		font-size: 1.8em;
	}
	section#content h2 {
		font-size: 1.5em;
	}
	section#content h3 {
		font-size: 1.2em;
	}
}