* { margin: 0; padding: 0; }
:root {
  font-size: 11.5pt;
  --sidebar-width: 16.5rem;
  --theme-color: #c11;
  --bg-color: #fff;
  --font-color: #111;
  --link-color: #a00;
  --struct-bg-color: #eee;
  --struct-border-color: #ccc;
  --struct-font-color: #444;
  --info-font-color: #888;
  --hilite-color: #fee;
  --focus-color: #ffa;
  --shadow-color: rgba(0, 0, 0, 0.3);
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #222;
    --font-color: #fff;
    --link-color: #f77;
    --struct-bg-color: #333;
    --struct-border-color: #888;
    --struct-font-color: #eee;
    --info-font-color: #ccc;
    --hilite-color: #211;
    --focus-color: #353;
    --shadow-color: rgba(255, 255, 255, 0.3);
    color-scheme: dark light;
  }
}
body {
  font-family: sans-serif;
  margin: 0 1rem;
  background-color: var(--bg-color);
  color: var(--font-color);
  overflow-y: scroll;
}
#page {
  margin: 0 auto 1rem auto;
  min-width: 250px;
  max-width: 1000px;
  line-height: 150%;
  box-sizing: border-box;
  position: relative;
}
#page ::selection { background-color: var(--focus-color); }
#page #main :target { background-color: var(--focus-color); }
#page #main :target ::selection { background-color: var(--shadow-color); }
#prelude {
  font-size: 0.7rem;
  color: var(--info-font-color);
  text-align: center;
  line-height: 0.7rem;
  padding-top: 0.3rem;
}
#prelude a {
  color: inherit;
  text-decoration: underline dotted;
}
#top h1 {
  font-size: 1.5rem;
  font-weight: lighter;
  line-height: 3rem;
  background-image: url('red-black-flag.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
}
#top h1 a {
  color: inherit;
  text-decoration: none;
}
#main { border-top: 1px solid var(--theme-color); }
#main #content { margin-top: 1rem; }
#main #navlinks, #main .pagination {
  color: var(--info-font-color);
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
  border-top: 5px solid var(--struct-bg-color);
  margin-top: 2rem;
}
#main #navlinks a, #main .pagination a {
  color: inherit;
  text-decoration-color: inherit;
}
.dc-post #main #navlinks a { display: block; }
.dc-post #main #navlinks .prev { text-align: left; }
.dc-post #main #navlinks .next { text-align: right; }
#main .post {
  clear: both;
  padding-top: 2.5rem;
  border-top: 5px solid var(--struct-bg-color);
  margin-top: 3rem;
}
#main .post:first-of-type {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
  margin-bottom: 2rem;
}
#main a {
  color: var(--link-color);
  text-decoration: underline dashed var(--font-color);
  text-decoration-thickness: 1px;
}
#main a:hover { text-decoration-style: solid !important; }
#main a[href^="#"], #main a[href^="/"], #main a[href*="p4bl0.net"] { text-decoration-style: dotted; }
#main a[href*="wikipedia.org"] { color: var(--font-color); }
#main .content-inner ul a { color: var(--font-color); }
#main .content-inner .post-info {
  display: block;
  line-height: 100%;
}
#main h2 {
  clear: both;
  margin: 0.5rem 0;
  font-size: 2rem;
  line-height: 100%;
  font-weight: normal;
  color: var(--theme-color);
}
#main h2 a { color: inherit; }
#main h2 a:not(:hover) { text-decoration: none; }
#main h3, #main h4, #main h5 {
  font-weight: normal;
  line-height: 100%;
  margin: 1em 0 1rem 0;
  text-align: left;
  clear: both;
}
#main h3 { font-size: 1.9rem; }
#main h4 { font-size: 1.6rem; }
#main h5 { font-size: 1.3rem; }
#main .post-tags, #main .post-info, #main .post-info-co {
  font-size: 0.8rem;
  color: var(--info-font-color);
}
#main .post-info a, #main .post-info-co a, #main .post-tags a {
  color: inherit;
  text-decoration-color: inherit;
}
#main .post .post-tags li {
  list-style-type: none;
  display: inline;
}
#main .post-tags::before { content: 'Mots-clés : '; }
#main .post-tags li:not(:last-child)::after { content: ', '; }
#main .post-info-co { text-align: center; }
#main .post-content, #main .content-inner {
  margin: 1rem 0 2rem 0;
  text-align: justify;
  line-height: 180%;
}
#main .post-content p { margin-bottom: 1rem; }
#main .post-content ul, #main .post-content ol, #main .content-inner ul {
  margin-left: 1rem;
  margin-bottom: 1rem;
}
#main .post-content li, #main .content-inner li { margin-bottom: 0.5rem; }
#main .post-content blockquote {
  margin: 1rem 0 1rem 2rem;
  border-left: 0.5rem solid var(--struct-border-color);
  padding: 0.5rem 1rem; 
  font-style: italic;
  color: var(--struct-font-color);
}
#main .post-content blockquote :last-child { margin-bottom: 0; }
#main .post-content details {
  margin: 1rem 0;
  padding: 0 1rem;
  border: 1px dotted var(--struct-border-color);
  border-radius: 0.25rem;
}
#main .post-content details summary {
  margin: 0 -1rem;
  padding-left: 0.5rem;
  color: var(--struct-font-color);
  background-color: var(--struct-bg-color);
  border-radius: 0.25rem;
}
#main .post-content details[open] summary {
  margin-bottom: 1rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#main .post-content sup, #main .post-content sub {
  font-size: 0.75em;
  line-height: 100%;
}
#main .post-content small { font-size: 0.85em; }
#main .post-content iframe { max-width: 100% !important; }
#main .post-content figure {
  background-color: var(--struct-bg-color);
  border: 1px solid var(--struct-border-color);
  text-align: center;
  padding: 1rem 1rem 0.5rem 1rem;
  margin-bottom: 1rem !important;
}
#main .post-content figure figcaption {
  font-size: 0.9rem;
  color: var(--struct-font-color);
  line-height: 100%;
}
#main .post-content figure img { max-width: 100%; }
#main .post-content i { font-family: serif; }
#main .post-content q {
  font-style: italic;
  quotes: '« ' ' »' '“' '”';
}
#main .post-content mark {
  background-color: var(--hilite-color);
  color: var(--theme-color);
}
#main .post-content abbr {
  position: relative;
  text-decoration: underline dotted var(--struct-font-color);
}
#main .post-content a[title] { position: relative; }
#main .post-content abbr:focus::after, #main .post-content a[title]:focus::after { /* for touchscreen device */
  content: attr(title);
  z-index: 1;
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--struct-font-color);
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  background-color: var(--struct-bg-color);
  box-shadow: var(--shadow-color) 2px 3px 5px;
}
#main .post-content .footnotes {
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--struct-font-color);
  background-color: var(--struct-bg-color);
  border-radius: 0.5rem;
}
#main .post-content .footnotes h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
  font-weight: bold;
}
#main .post-content .footnotes ol { margin-bottom: 0; }
#main .post-content .footnotes cite { font-style: normal; }
#sidebar { font-size: 0.9rem; }
#sidebar .widget {
  border: 1px solid var(--theme-color);
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
}
#sidebar .widget h2 {
  font-size: 1rem;
  background-color: inherit;
  color: inherit;
  line-height: unset;
  font-weight: normal;
  padding: 0;
  border-bottom: 1px dotted var(--theme-color);
  margin-bottom: 0.25rem;
}
#sidebar .widget h2::after { float: right; }
#sidebar .widget.UnU h2::after { content: '🗣️'; }
#sidebar .widget.pages h2::after { content: '📑'; }
#sidebar .widget.selected h2::after { content: '✨'; }
#sidebar .widget.tags h2::after { content: '🏷️'; }
#sidebar .widget.lastposts h2::after { content: '📰'; }
#sidebar .widget.archive-widget h2::after { content: '📆'; }
#sidebar .widget.syndicate h2::after { content: '📡'; }
#sidebar .widget.links h2::after { content: '🌐'; }
#sidebar .widget.annonce {
  font-size: 1.2em;
  font-weight: bold;
  border-width: 5px;
  background-color: #fd1;
  text-align: center;
  padding: 0.5rem;
}
#sidebar .widget ul { margin-left: 1rem; }
#sidebar .widget ul ul {
  padding: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#sidebar .widget a {
  color: inherit;
  text-decoration: none;
}
#sidebar .widget a:hover { text-decoration: underline; }
#sidebar .widget.tags ul {
  text-align: center;
  margin-left: 0;
}
#sidebar .widget.tags li {
  list-style-type: none;
  display: inline;
}
#sidebar .widget.tags .tag0 { font-size: 70%; }
#sidebar .widget.tags .tag10 { font-size: 80%; }
#sidebar .widget.tags .tag20 { font-size: 90%; }
#sidebar .widget.tags .tag30 { font-size: 100%; }
#sidebar .widget.tags .tag40 { font-size: 110%; }
#sidebar .widget.tags .tag50 { font-size: 120%; }
#sidebar .widget.tags .tag60 { font-size: 130%; }
#sidebar .widget.tags .tag70 { font-size: 140%; }
#sidebar .widget.tags .tag80 { font-size: 150%; }
#sidebar .widget.tags .tag90 { font-size: 160%; }
#sidebar .widget.tags .tag100 { font-size: 170%; }
#comments {
  clear: both;
  border-top: 5px solid var(--struct-bg-color);
}
#comments:target { background-color: unset !important; }
#comments:target h3 { background-color: var(--focus-color); }
#comments dt {
  color: var(--info-font-color);
  margin-bottom: 0.5rem;
}
#comments dd {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
#comments dd p { margin-bottom: 0.5rem; }
#comments dd ul {
  margin-left: 1rem;
  margin-bottom: 1rem;
}
form fieldset {
  border: none;
  display: table;
  border-collapse: separate;
  border-spacing: 0.5rem;
}
form fieldset .field { display: table-row; }
form fieldset .field label {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
form fieldset .field input, fieldset .field textarea {
  display: table-cell;
  width: 100%;
  font-size: 1rem;
}
form .form-help, form .remember {
  font-size: 0.8rem;
  color: var(--info-font-color);
}
#footer {
  clear: left;
  text-align: center;
  font-size: 0.8rem;
  background-color: var(--struct-bg-color);
  color: var(--info-font-color);
  padding: 0.75rem 0;
  border-top: 1px solid var(--struct-border-color);
}
#footer a { color: inherit; }
#footer span { display: none; }
@media (min-width: 800px) {
  #prelude { visibility: hidden; }
  #top h1 { width: calc(100% - var(--sidebar-width) - 1.5rem); }
  #main {
    width: calc(100% - var(--sidebar-width) - 1.5rem);
    float: left;
  }
  #sidebar {
    float: right;
    position: relative;
    top: -3rem;
    width: var(--sidebar-width);
  }
  #footer { width: calc(100% - var(--sidebar-width) - 1.5rem); }
  #footer span { display: inline; }
}
@media (max-width: 600px) {
  #main .post-content figure, #main .post-content p img {
    float: none !important;
    display: table !important;
    margin: 1rem auto !important;
    max-width: 100% !important;
  }
}