@charset "utf-8";

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(webfonts/open-sans-400.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(webfonts/open-sans-700.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

/* PAGE GENERAL
-------------------------------------------------------- */
html, body {
	margin: 0;
	padding: 0;
	color: #444;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 300;
	font-family: "Open Sans", "Trebushet MS", Verdana, Arial, sans-serif;
	word-wrap: break-word;
}

body {
	background-color: #F1F1F1;
}

::selection {
	color: black;
	background: #FFEE4B;
}
::-moz-selection {
	color: black;
	background: #FFEE4B;
}

blockquote::selection { background: #4BCFFF; }
blockquote::-moz-selection { background: #4BCFFF; }

a {
	text-decoration: none;
	color: inherit;
}

pre, code {
	white-space: pre-wrap;
}

strong, b {
	font-weight: bold;
}
em, i {
	font-style: italic;
}

textarea, input {
	font-family: inherit;
	font-size: inherit;
	font-weight: 300;
	vertical-align: middle;
}

/* PAGE HEADER
-------------------------------------------------------- */

#page-header {
	background: white;
	color: black;
	background: linear-gradient(to right, rgba(255, 205, 0, 1) 15%, rgba(255, 255, 63, 1) 30%, rgba(255, 255, 255, 1));
	overflow: hidden;
}

/* HEADER : top bar
-------------------------------------------------------- */
#top-bar {
	background: rgba(128, 128, 168, .2);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, .2);
}

#top-bar > div {
	max-width: 1400px;
	display: flex;
	align-items: center;
	position: relative;
	margin: 0 auto;
}

#top-bar h1 {
	font: bold 2em 'trebuchet MS', helvetica, arial, sans-serif;
	text-shadow: 1px -1px 2px white;
	margin-left: 25px;
}

#top-icons {
	flex: 1;
	text-align: right;
	margin: 0;
	padding: 10px;
	margin-right: 10px;
}

#top-icons li {
	display: inline-block;
	border: 5px solid transparent;
}

#top-icons li a {
	display: inline-block;
	box-sizing: border-box;
	height: 27px;
	width: 28px;
	padding-left: 28px;
	overflow: hidden;
	vertical-align: middle;
	background: url(imgs/sprites.png) no-repeat 0 0 / 60px 216px;
	opacity: .4;
}

#top-icons li a.icn-atom { background-position: -34px -46px; } /* rss */
#top-icons li a.icn-mail { background-position: -34px -22px; } /* mail */
#top-icons li a.icn-twit { background-position: -34px 2px; }  /* twitter */
#top-icons li a.icn-goog { background-position: -34px -95px; } /* google+ */
#top-icons li a.icn-fcbk { background-position: -34px -70px; } /* facebook */
#top-icons li a.icn-mast { background-position: -34px -172px } /* mastodon */
#top-icons li a.icn-gthb { background-position: -34px -118px; } /* github */
#top-icons li a.icn-cdpn { background-position: -34px -144px } /* codepen */

#top-icons li a:hover {
	opacity: .6;
}

/* HEADER : logo
-------------------------------------------------------- */

#top-sitename {
	height: 170px;
}

#top-sitename div {
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background: url(logo.svg) no-repeat 40px 0px / 350px 170px;
}

#top-sitename img {
	height: 100%;
	width: auto;
}

#search {
	display: flex;
	margin: 10px 25px 10px;
	border-radius: 2px;
	box-shadow: 0 0 4px rgba(0, 0, 0, .4);
	background: rgba(255, 255, 255, .8);
}

#search #q {
	padding: 10px;
	border: 1px solid transparent;
	border-radius: 2px 0 0 2px;
	box-sizing: border-box;
	background: transparent;
	color: inherit;
	min-width: 0;
	width: 275px;
	-webkit-appearance: none;
}

#search #input-rechercher {
	overflow: hidden;
	width: 50px;
	padding: 0 0 0 50px;
	background: transparent no-repeat 12px -183px url(imgs/sprites.png);
	height: 50px;
	border: 0;
}


/* HEADER : menu-bar
-------------------------------------------------------- */
#page-menu {
	background: #222;
	color: white;
	font-weight: bold;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, .9);
	position: relative;
}

#page-menu > ul {
	margin: 0 auto;
	padding: 0;
	list-style-type: none;
	max-width: 1400px;
}

#page-menu li {
	display: inline-block;
}

#page-menu li > a {
	display: inline-block;
	padding: 10px 25px;
}

#page-menu a:hover {
	background: rgba(255, 255, 255, .1);
}

/* PAGE MAIN
-------------------------------------------------------- */

#page-main {
	max-width: 1400px;
	margin: 20px auto;
	padding: 10px;
	display: flex;
}

#blog {
	flex: 1 1 auto;
	flex: 1 1 auto;
	min-width: 0;
}

/* MAIN : blog posts
------------------------------------- */
#blog .blog-post {
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
	margin: 15px 15px 40px 15px;
}

/* blog posts : headers ------------- */
.blog-post-header {
	padding: 15px;
}
.blog-post-header > h1 {
	font-size: 1.6em;
	font-weight: 400;
	margin: 0 0 20px;
}

.blog-post-header a:hover {
	text-decoration: underline;
} 

/* date + author */
.blog-post-header > .blog-post-meta {
	margin: 0;
	font-size: .8em;
	color: #999;
	display: flex;
}
.blog-post-header > .blog-post-meta > span {
	flex: 1 1 auto;
}
/* nb coms*/
.blog-post .blog-post-commlink {
	color: #1155fc;
	font-weight: bold;
}


/* blog posts : content ------------- */
.blog-post-content {
	padding: 15px;
	background: white;
}

.blog-post-content::after {
	content: '';
	display: block;
	clear: both;
}

.blog-post-content a {
	text-decoration: underline;
	color: #1155fc;
}
.blog-post-content a:visited {
	color: #80a3e5;
}

.blog-post-content a:hover {
	color: black;
}

.blog-post-content p.small {
	font-size: .8em;
	text-align: center;
}

.blog-post-content blockquote {
	padding: 1em 1em 1em 2em;
	text-align: justify;
	border-radius: 2px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
	font-weight: 100;
	line-height: 1.7;
	font-style: italic;
	font-family: serif;
	overflow: hidden;
}

.blog-post-content pre,
.blog-post-content code {
    font-size: .9em;
    margin: 10px;
    background-color: #f1f1f1;
    border-left: 4px solid #ff7700;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    font-family: monospace;
    padding: 10px 5px 10px 15px;
	overflow: hidden;
}

.blog-post-content pre > code {
	background-color: initial;
	box-shadow: initial;
	border: initial;
	padding: 0;
	margin: 0;
	font-size: initial;
}

.blog-post-content code {
	padding: 3px;
	margin: 0;
}

.blog-post-content kbd {
	padding: 1px 2px;
	border: 2px #000 outset;
	background: #333;
	color: #fff;
	border-radius: 5px;
	font-size: .9em;
}


.blog-post-content figure {
	margin: 10px 0;
}

.blog-post-content figure figcaption {
	color: #777;
	font-size: .8em;
	text-align: center;
	margin-top: 0;
	font-style: italic;
}

.blog-post-content img {
	max-width: 100%;
	height: auto;
}

.blog-post-content .one {
	margin: 0 0 15px 15px;
	float: right;
}
.blog-post-content .centrerinline {
	display: block;
	margin: 20px auto;
	box-shadow: 1px 1px 4px silver;
}
.blog-post-content hr {
	border: 0;
	text-align: center;
}
.blog-post-content hr::after {
	content: "***";
}
.blog-post-content p {
	margin: 1.5em 0px;
}

.blog-post-content ul,
.blog-post-content ol {
	margin: 2em 0;
}
.blog-post-content li {
	margin-top: .6em;
}

.blog-post-content table {
	margin: 3em auto;
	border-collapse: collapse;
	border: 1px solid #ddd;
	box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}
.blog-post-content table tr {
	border: 1px solid silver;
}
.blog-post-content table td {
	padding: 8px 10px;
}
.blog-post-content table th,
.blog-post-content table thead td {
	background-color: #2196F3; 
	color: white;
	font-weight: bold;
}
.blog-post-content table tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, .03);
}


/* blog posts : footer -------------- */

.blog-post-footer {
	clear: both;
	background: white;
	padding: 15px;
	display: flex;
	align-items: center;
}
.blog-post-footer a {
	margin-left: 5px;
	padding: 5px 10px;
	display: inline-block;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 3px;
}
.blog-post-footer a:hover {
	transition: box-shadow .3s ease-in;
	box-shadow: 0 6px 12px 0 rgba(0,0,0,0.2);
}

.blog-post-footer .blog-post-commlink {
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
}

.blog-post-footer > .tags {
	flex: 1 1 auto;
	text-align: right;
}

/* MAIN : comments
------------------------------------- */
/* list of comments */
#comments {
	margin: 30px auto;
	padding: 15px;
}

#comments .nbcom {
	margin: 10px 0 40px;
	font-size: 1.3em;
}

/* 1 comment */
.blog-comment {
	margin: 15px 15px 24px;
	display: flex;
}

.blog-comment:not(:last-of-type) .blog-comment-sidebloc::after {
	content: "";
	background-color: rgba(0, 0, 0, .05);
	display: block;
	width: 5px;
	height: 60%;
	height: calc(100% - 80px);
	position: relative;
	margin: 0 auto;
	top: 10px;
}

.blog-comment .blog-comment-sidebloc {
	flex: 0 0 160px;
	text-align: center;
}

.blog-comment .blog-comment-sidebloc .blog-comment-datetime {
	font-size: .7em;
	color: rgba(0, 0, 0, .4);
	display: inline-block;
	max-width: 85px;
}

.blog-comment .blog-comment-sidebloc .blog-comment-gravatar {
	border-radius: 48px;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
	width: 48px;
	display: block;
	margin: 5px auto;
}

.blog-comment .blog-comment-body {
	flex: 1;
	padding: 20px 24px;
	background-color: white;
	border-bottom: 1px solid #d9d9d9;
	box-shadow: 0 0 2px rgba(0,0,0,0.12),0 2px 4px rgba(0,0,0,0.24);
	min-width: 0;
}

.blog-comment:target .blog-comment-body {
	box-shadow:  0 0 2px rgba(0,0,0,0.12),0 2px 4px rgba(0,0,0,0.24), inset 3px 0 0 #4386fa;
}

.blog-comment-header {
	padding: 0 0 15px;
	color: rgba(0, 0, 0, .5);
	font-size: .9em;
}

.blog-comment-header .author {
	font-size: 1.25em;
	font-weight: bold;
	color: rgba(0, 0, 0, .8);
}

.blog-comment-content a {
	text-decoration: underline;
	color: #1155fc;
}
.blog-comment-content a:visited {
	color: #80a3e5;
}

.blog-comment-content a:hover {
	color: black;
}


.blog-comment-content a:hover {
	text-decoration: underline;
}

.blog-comment-content blockquote {
	padding: 1em 1em 1em 2em;
	text-align: justify;
	border-radius: 2px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
	font-weight: 100;
	line-height: 1.7;
	font-style: italic;
	font-family: serif;
}

.blog-comment-footer {
	text-align: right;
	padding: 15px 0 0
}

.blog-comment-footer a {
	margin-left: 5px;
	padding: 5px 10px;
	display: inline-block;
	border: 1px solid;
	opacity: .2;
	border-radius: 3px;
	transition: box-shadow .3s ease-in, opacity .3s ease-in;
}
.blog-comment-footer a:hover {
	opacity: .8;
	box-shadow: 0 6px 12px 0 rgba(0,0,0,0.2);
}

/* Formulaire commentaires 
------------------------ */
#postcom {
	padding: 15px;
	background: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .25);
	border-radius: 3px;
	margin: 30px 15px 0;
}
.form-commentaire fieldset {
	border: 0;
}

/* Boutons de formatage  */
p.formatbut {
	height: 30px;
	width: 100%;
	line-height: 28px;
	margin: 0; padding: 0;
	background: #f5f5f5;
}
.formatbut button {
	padding: 0;
	vertical-align: middle;
	background: rgba(0, 0, 0, 0);
	height: 24px; width: 24px;
	border: 1px solid transparent;
	border-radius: 4px;
}
.formatbut button:hover {
	border-color: silver;
}
.formatbut button:active {
	border-color: gray;
	background: #cde6ff;
	background: linear-gradient(to top, white, #d6d6d6);
}
.formatbut button span {
	display: inline-block;
	width: 16px;
	height: 24px;
	background: no-repeat url(imgs/sprites.png);
}
.formatbut .spacer {
	width: 2px;
	margin: 0 4px;
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #fafafa
}

/* .formatbut  */
#button01 span { background-position: -4px   -1px; }
#button02 span { background-position: -4px  -21px; }
#button03 span { background-position: -4px  -42px; }
#button04 span { background-position: -4px  -82px; }
#button09 span { background-position: -4px  -62px; }
#button10 span { background-position: -4px -102px; }
#button12 span { background-position: -4px -122px; }

/* textarea field in comments */
.form-commentaire > .field {
	border: 1px solid rgba(0, 0, 0, 0.3);
	padding: 0;
}
.form-commentaire textarea {
	font: inherit inherit 300;
	resize: both;
	width: 100%;
	border: 0;
	padding: 5px;
	box-sizing: border-box;
}

/* inputs */
.form-commentaire > .infos {
	margin: 15px auto 0;
	max-width: 480px;
}
.form-commentaire > .infos label {
	display: block;
	text-align: right;
	padding: 5px 0;
}

.form-commentaire > .infos input {
	width: 250px;
	padding: 2px 0;
	border: 0;
	margin-left: 5px;
	background: white no-repeat;
	background-image: linear-gradient(to bottom, #2196F3, #2196F3), linear-gradient(to bottom, silver, silver);
	background-size: 0 2px, 100% 1px;
	background-position: 50% 100%, 50% 100%;
	transition: background-size 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
}

.form-commentaire > .infos input:focus {
	background-size: 100% 2px, 100% 1px;
}

.form-commentaire input:invalid {
	background-image: linear-gradient(to bottom, #F44336, #F44336), linear-gradient(to bottom, #F44336, #F44336);
	box-shadow: none;
}

.form-commentaire > .buttons {
	text-align: right;
}
.form-commentaire .submit {
    background: #2196F3 none repeat scroll 0% 0%;
    color: #FFF;
    font-weight: bold;
    vertical-align: middle;
    padding: 3px 12px;
    margin: 7px 0px 0px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    border: 1px solid transparent;
    min-width: 100px;
}

.form-commentaire .submit[name="previsualiser"] {
	background: #FFF none repeat scroll 0% 0%;
	color: #333;
	box-shadow: none;
}

.form-commentaire .submit[name="previsualiser"]:hover {
	border: 1px solid #DDD;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
}


/* MAIN : Blog-Links
------------------------------------- */
#blog .blog-shaar {
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	margin: 15px 15px 40px 15px;
}

/* links : headers ------------- */
.blog-shaar-header {
	padding: 15px;
}

.blog-shaar-header > h1 {
	font-size: 1.6em;
	font-weight: 400;
	margin: 0 0 10px;
}

.blog-shaar-header a:hover {
	text-decoration: underline;
}

/* date + author */
.blog-shaar-header > .blog-shaar-meta {
	margin: 0;
	font-size: .8em;
	color: #999;
	display: flex;
}

.blog-shaar-header > .blog-shaar-meta > span {
	flex: 1 1 auto;
	text-align: right;
}

/* links : content ------------- */
.blog-shaar-content {
	padding: 15px;
	background: white;
}

.blog-shaar-content a {
	text-decoration: underline;
	color: #1155fc;
}
.blog-shaar-content a:visited {
	color: #80a3e5;
}

.blog-shaar-content a:hover {
	color: black;
}

.blog-shaar-content blockquote {
	padding: 1em 1em 1em 2em;
	text-align: justify;
	border-radius: 2px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
	font-weight: 100;
	line-height: 1.7;
	font-style: italic;
	font-family: serif;
}

.blog-shaar-content pre {
    font-size: .9em;
    margin: 10px;
    background-color: #f1f1f1;
    border-left: 4px solid #ff7700;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    font-family: monospace;
    padding: 10px 5px 10px 15px;
}

.blog-shaar-content p {
	margin: 1.5em 0px;
}

.blog-shaar-content ul,
.blog-shaar-content ol {
	margin: 2em 0;
}
.blog-shaar-content li {
	margin-top: .6em;
}

/* links : footer -------------- */

.blog-shaar-footer {
	clear: both;
	background: white;
	padding: 15px;
	display: flex;
	align-items: center;
}
.blog-shaar-footer a {
	margin-left: 5px;
	padding: 5px 10px;
	display: inline-block;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 3px;
}
.blog-shaar-footer a:hover {
	transition: box-shadow .15s ease-in;
	box-shadow: 0 6px 12px 0 rgba(0,0,0,0.2);
}

.blog-shaar-footer > .hardlink {
	flex: 1 1 auto;
	text-align: left;
	font-size: .8em;
	color: rgba(0, 0, 0, .4);
}
.blog-shaar-footer > .tags {
	flex: 1 0 auto;
	text-align: right;
}

/* MAIN : list all articles
------------------------------------- */
#liste-all-articles {
	list-style: none;
	background: white;
	padding: 50px;
	margin: 15px;
	flex: 1 1 auto;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

#liste-all-articles li {
	padding: 15px 0;
	margin: 2px;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	display: flex;
}

#liste-all-articles a {
	color: #2455C3;
}

#liste-all-articles time {
	order: 1;
	flex: 1 1 0%;
	text-align: right;
}

/* MAIN : sidebar
------------------------------------- */
#sidebar {
	flex: 0 0 350px;
	text-align: center;
	min-width: 0;
	position: relative;
}

#sidebar nav {
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	margin: 15px 15px 40px 15px;
}

#sidebar > nav > .sidenav-head {
	padding: 15px;
	background-color: #F1F1F1;
}

#sidebar > nav > .sidenav-head > p {
	margin: 0;
	font-size: 1.2em;
	font-weight: bold;
}

#sidebar > nav > .sidenav-body {
	padding: 15px;
	background: white;
	text-align: left;
}

/* SIDEBAR : calendar
--------------------------- */
#calendrier {
	margin: 0 auto;
}

#calendrier caption {
	padding: 15px 0 20px;
}

#calendrier caption > a {
	padding: 5px 10px;
}

#calendrier td {
	width: 30px;
	height: 30px;
	border-radius: 3px;
	border: 1px solid transparent;
	empty-cells: hide;
	text-align: center;
	line-height: 30px;
	color: rgba(42, 42, 42, .3);
	position: relative;
}

#calendrier td a {
	color: rgba(42, 42, 42, .8);
	display: inline-block;
	width: 100%;
	height: 100%;
}

#calendrier td a:hover {
	background: rgba(0, 0, 0, .1);
	border-radius: 50%;
}

#calendrier td a::before {
	content: "";
	background-color: #2196F3;
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	left: 14px;
	bottom: 2px;
}

#sidebar .sidebar-calendar ul {
	text-align: center;
	list-style: none;
	padding: 0;
}

#sidebar .sidebar-calendar ul a:hover {
	text-decoration: underline;
}

/* SIDEBAR : last comms
--------------------------- */
.sidebar-lastcoms ul {
	padding: 0;
	list-style: none;
}

.sidebar-lastcoms ul li {
	padding: 5px 15px 15px;
}

.sidebar-lastcoms a:hover {
	text-decoration: underline;
} 

/* SIDEBAR : tag cloud
--------------------------- */
.sidebar-tagcloud ul {
	list-style: none;
	padding: 0;
	font-size: 0;
}

.sidebar-tagcloud li {
	display: inline-block;
	font-size: initial;
	margin: 2px;
	border: 1px solid silver;
	background: rgba(0, 0, 0, .05);
	border-radius: 3px;
}

.sidebar-tagcloud li:hover {
	background: rgba(0, 0, 0, .1);
} 

.sidebar-tagcloud li a {
	display: inline-block;
	margin: 0;
	padding: 3px 5px;
	vertical-align: middle;
	font-size: .8em;
}

.sidebar-tagcloud li a:last-of-type {
	width: 16px;
	height: 20px;
	background: transparent url(imgs/sprites.png) no-repeat -35px -48px / 60px 216px;
	opacity: .2;
}

.sidebar-tagcloud li a:first-of-type {
	border-right: transparent 1px solid;
}
.sidebar-tagcloud li:hover a:first-of-type {
	border-right-color: silver;
}

/* SIDEBAR : blog-roll
--------------------------- */
.sidebar-blogroll ul a:hover {
	text-decoration: underline;
}

/* SIDEBAR : Firefox logo
--------------------------- */
#sidebar nav.sidebar-recommended .sidenav-body {
	text-align: center;
}

/* SIDEBAR : about the site
--------------------------- */
#sidebar nav.sidebar-about {
	box-shadow: none;
}
#sidebar nav.sidebar-about .sidenav-body {
	text-align: center;
	font-size: .8em;
	color: rgba(0, 0, 0, .5);
	background: none;
	padding: 0 20px;
}
#sidebar nav.sidebar-about .sidenav-body a {
	color: #1155fc;
}

/* PAGE FOOTER
-------------------------------------------------------- */
/* FOOTER : pagination links
--------------------------- */
#links-prev-next {
	text-align: center;
	margin: 50px auto 70px;
	font-size: 1.1em;
}

.pagination {
	display: inline-block;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	border-radius: 3px;
	border: 1px solid #ccc;
}

.pagination a {
	background: white;
	display: inline-block;
	padding: 8px 16px;
	transition: background-color .2s,color .2s,box-shadow .2s,opacity 0.2s;
}

.pagination a:first-of-type {
	border-top-left-radius: inherit;
	border-bottom-left-radius: inherit;
}
.pagination a:last-of-type {
	border-top-right-radius: inherit;
	border-bottom-right-radius: inherit;
}

.pagination a:nth-of-type(n+2) {
	border-left: 1px solid #ccc;
}

.pagination a:hover {
	background: #ccc;
}

.pagination a[rel="prev"]::before { content: "« "; }
.pagination a[rel="next"]::after { content: " »"; }

/* FOOTER : page-footer links
--------------------------- */
#page-footer {
	text-align: center;
}

#page-footer p {
	font-size: .85em;
	color: rgba(0, 0, 0, .6);
}

#page-footer a:hover {
	text-decoration: underline;
}

/* FOOTER : Fast Scroll
--------------------------- */
#scr {
	background: url(imgs/icon_top.png) no-repeat center center;
	opacity: 0;
	width: 0px;
	height: 80px;
	position: fixed;
	z-index: 99;
	bottom: 0; right: 0;
	transition: opacity .5s linear, width 0s .6s linear;
	overflow: hidden;
}

#scr.scrollbutton-on {
	opacity: .3;
	width: 80px;
	transition: opacity .5s linear, width 0s linear;
}

#scr.scrollbutton-top {
	transform: rotate(180deg)
}

#scr a {
	width: 80px;
	height: 80px;
	position: fixed;
}

/* CONTACT : css anti-spam
-------------------------- */
.inv_mail {
	unicode-bidi: bidi-override;
   direction: rtl;
}
.arobaze:before { content: "ue.nedreen"; }
.arobaze:after { content: "omit"; }

/* trololo easteragg */
.trollface {
	position: absolute;
	display: block;
	width: 76px;
	height: 62px;
	top: 20px;
	right: 50px;
	background: transparent url(imgs/troll.png) 0 0 no-repeat;
	z-index: -3;
	animation: trololol 80s linear infinite alternate;
}
@keyframes trololol {
	0% {  opacity: 0; transform: translate(0px, 0px);}
	85% { opacity: 1; transform: translate(0px, 0px); }
	87% { transform: translate( 0px, -10px); }
	90% { transform: translate(-40px, -25px); }
	93% { transform: translate(-55px, -40px); }
	97% { transform: translate(-75px, -15px); }
	100% { transform: translate(-90px, -35px); }
}

/* MEDIA QUERIES
-------------------------------------------------------- */

/* default : large screens*/

/* medium-large screens */
@media (max-width: 1280px) {
	#sidebar {
		flex: 0 0 300px;
	}
}

/* medium-small screens */
@media (max-width: 1024px) {
	#top-bar h1 {
		margin-left: 15px;
	}
	#top-icons {
		margin-right: 5px;
	}
	#top-sitename {
		height: 120px;
	}
	#top-sitename div {
		background-size: 240px 120px;
	}
	#search {
		margin-right: 15px;
	}
	#page-menu > ul {
		text-align: center;
	}
	#page-menu li > a {
		padding: 10px 10px;
	}
	#page-main {
		padding: 5px;
	}
	#blog .blog-post,
	#sidebar nav {
		margin: 15px 10px 40px 10px;
	}
	.blog-post-content blockquote {
		padding: 1em;
		margin: 1em;
	}
	.blog-comment {
		margin: 15px 10px 24px;
	}
	.blog-comment .blog-comment-sidebloc {
		flex: 0 0 90px;
	}
	#postcom {
		margin: 30px 10px 0;
	}
	.form-commentaire > .infos label {
		text-align: left;
	}
	.form-commentaire > .infos input {
		width: 100%;
		margin: 10px 0;
	}

}

@media (max-width: 800px) {
	#page-main {
		display: block;
		margin: 10px auto 20px;
	}

	#blog .blog-post, #sidebar nav {
		margin: 10px 5px 25px 5px;
	}
	.blog-post-header > .blog-post-meta,
	.blog-post-header .blog-post-commlink,
	.blog-post-footer,
	.blog-shaar-footer {
		display: block;
	}
	.blog-post-footer > .tags,
	.blog-shaar-footer > .tags {
		display: block;
		margin-top: 10px;
		font-size: .8em;
	}
	.blog-post-footer > .tags a,
	.blog-shaar-footer > .tags a {
		padding: 3px 7px;
	}

	.blog-post-header > h1,
	.blog-shaar-header > h1 {
		font-size: 1.2em;
	}

	.blog-shaar-header > .blog-shaar-meta,
	.blog-shaar-header .blog-shaar-permalink {
		display: block;
	}

	.blog-comment {
		display: block;
		margin: 0 10px;
	}

	.blog-comment .blog-comment-sidebloc {
		display: flex;
		align-items: center;
		position: relative;
		top: 15px;
		justify-content: center;
	}
	.blog-comment .blog-comment-sidebloc .blog-comment-gravatar {
		margin: 5px;
	}
	.blog-comment .blog-comment-sidebloc .blog-comment-datetime {
		max-width: none;
	}

	.blog-comment:not(:last-of-type) .blog-comment-sidebloc::after {
		content: none;
	}
	.blog-comment .blog-comment-header {
		text-align: center;
	}
	.blog-comment .blog-comment-body {
		padding: 15px;
	}

	#sidebar {
		max-width: 500px;
		margin: auto;
	}
	#liste-all-articles {
		padding: 20px;
	}
	.trollface {
		animation: none;
	}
}

@media (max-width: 600px) {
	#top-bar > div {
		display: block;
	}
	#top-bar h1 {
		margin: 0;
		padding-top: 15px;
		text-align: center;
	}
	#search {
		margin: 0;
	}
	#search #q {
		width: 200px;
	}
	#top-icons {
		text-align: center;
		margin: 0;
	}
	#top-sitename {
		height: 100px;
	}
	#top-sitename div {
		background-size: 200px 100px;
	}
	#page-menu li > a {
		font-size: .8em;
		font-weight: normal;
		padding: 15px 5px;
	}
	#comments {
		padding: 0;
	}
	#liste-all-articles {
		margin: 5px;
		padding: 10px;
	}
	#liste-all-articles li {
		display: block;
	}
}
