/***************************************************
* Main style sheet
*
* Project:      rw- blog
* URL:          writepermission.com
* Author:       Toon Claes
*
**************************************************/

/**************************
* Variables
*************************/
@import "fonts.css";
:root {
  color-scheme: light dark;
  --main: #FFFFFF;
  --dark: #7F7F6E;
  --block-background: light-dark(#F2F2F2, #2F2F2F);
  --dark-red:      #751816;
  --bright-red:    #B25756;
  --subtle:        #DDDDDD;
  --dimmed:        #666666;
  --blueish:       #2D8BCF;
  --dark-blueish:  #005BAF;
  --redish:        #D45755;
  --h1-color:      darkgreen;
  --h2-color:      green;
  --h3-color:      green;
  --h4-color:      green;
}

/**************************
* General styles
*************************/
body {
  line-height: 1.5em;
  font-family: 'Iosevka Etoile Web';
}
h1, h2, h3, h4, h5, h6 {
  text-align: center;
}
blockquote {
  background: var(--block-background);
  border-left: 3px solid #BEBEA5;
  padding: 0.2em 1em;
}
blockquote p {
  margin: 0.5em 0;
}
h1 a, h1 a:link, h1 a:active, h1 a:visited, h1.redir, h1 {
  color: green;
}
h1 a:hover {
  color: var(--bright-red);
  text-decoration: none;
}
h2, h2 a:link, h2 a:active, h2 a:visited,
h3, h3 a:link, h3 a:active, h3 a:visited,
h4, h4 a:link, h4 a:active, h4 a:visited,
h5, h5 a:link, h5 a:active, h5 a:visited,
h6, h6 a:link, h6 a:active, h6 a:visited {
  font-weight: bold;
  text-decoration: none;
}


h2, h2 a:link, h2 a:active, h2 a:visited {
  color: var(--h2-color);

}
h3, h3 a:link, h3 a:active, h3 a:visited {
  color: var(--h3-color);

}
h4, h4 a:link, h4 a:active, h4 a:visited {
  color: var(--h4-color);

}
h5, h5 a:link, h5 a:active, h5 a:visited {
  color: var(--h5-color);

}
h6, h6 a:link, h6 a:active, h6 a:visited {
  color: var(--h6-color);
}

a, a:link, a:visited {
  text-decoration: underline;
}

a, a:link {
  color: var(--blueish);
}

a:visited {
  color: var(--dark-blueish);
}



a:hover, a:active {
  color: var(--redish);
  text-decoration: underline;
}
pre, code {
  font-family: 'Iosevka Term Slab Web';
}
pre code {
  background: inherit;
  font-size: 1em;
}
pre {
  background-color: var(--block-background);
  border: 1px dashed #BEBEA5;
  line-height: 1.5em;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
code {
  background: var(--block-background) none repeat scroll 0 0;
  padding: 0.2em;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th, td {
  text-align: left;
  vertical-align:top;
}

hr {
  border: none;
}
hr::after,
.sitemap li::after {
  content: "------------";
  color: #DDDDDD;
  display: block;
  text-align: center;
  font-size: 1.4em;
}

figure {
  margin: 0;
}

img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}
.boxed {
  border: 1px dashed #BEBEA5;
}
figcaption {
  text-align: center;
}
main, footer, header section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2ch;
}

h1::before,
h2::before,
h3::before,
h4::before,
h5::before {
  display: inline-block;
  font-weight: normal;
  font-variant-ligatures: none;
}

h1::before {
  margin-left: -2ch;
  width: 2ch;
  content: "∗";
}

h2::before {
  margin-left: -3ch;
  width: 3ch;
  content: "∗∗";
}

h3::before {
  margin-left: -4ch;
  width: 4ch;
  content: "∗∗∗";
}

h4::before {
  margin-left: -5ch;
  width: 5ch;
  content: "∗∗∗∗";
}

h5::before {
  margin-left: -6ch;
  width: 6ch;
  content: "∗∗∗∗∗";
}

h1:hover::before, h1:target::before {
  content: ">";
}

h2:hover::before, h2:target::before {
  content: "∗>";
}

h3:hover::before, h3:target::before {
  content: "∗∗>";

}

h4:hover::before, h4:target::before {
  content: "∗∗∗>";

}

h5:hover::before, h5:target::before {
  content: "∗∗∗∗>";
}

main header h1 {
  margin: 0.7em 0 0.4em;
}

/**************************
* Top header
*************************/
#top {
  width: 100%;
  overflow: hidden;
}
#top section {
  display: flex;
  flex-wrap: wrap;
}
#top h1 {
  font-weight: normal;
  color: var(--bright-red);
  font-size: 5.5em;
  margin: 0.2em 0;
  flex-shrink: 0;
  font-variant-ligatures: none;
}
#top h2 {
  color: #666666;
  font-weight: normal;
  font-size: 1.1em;
  text-transform: none;
}
#top h2::before {
  display: none;
}
#top h1::before,
#top h1::after {
  content: "------------------------------------------------------------------------------------------------------------------------------------------------------";
}
#top h1::before {
  margin-left: -150ch;
  width: 150ch;
}

/**************************
* Preamble
*************************/
#preamble {
  text-align: center;
}

/**************************
* Content
*************************/
#content {
  max-width: 120ch;
  margin: auto;
}

/**************************
* Postamble
*************************/
#postamble {
  text-align: center;
  font-size: 0.95em;
}

#postamble hr::after {
  content: "------------------------------------";
  color: #BBBBBB;
  display: block;
  text-align: center;
  font-size: 1.4em;
}

/**************************
* Banners
*************************/
.alert, .info, .warn {
  border: solid;
  border-radius: 10px;
  margin-bottom: 1em;
}
.alert {
  color: var(--redish);
}
.info {
  color: var(--blueish);
}

.warn {
  color: darkorange;
}

.alert p, .info p, .warn p{
  margin: 0.6em;
}

.alert-heading, .info-heading, .warn-heading {
  font-size: 1.5em;
  font-weight: bold;
  border-bottom: dashed;
}

/**************************
* Sitemap/index
*************************/
ul.sitemap {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap li {
  text-transform: lowercase;
  display: flex;
  flex-direction: column;
}
.sitemap li a {
  font-size: 2em;
  margin: 0.7em 0 0.4em;
  font-weight: bold;
}
.sitemap li a,
.sitemap li a:link,
.sitemap li a:active,
.sitemap li a:visited {
  color: #751816;
}
.sitemap li a:hover {
  color: var(--bright-red);
  text-decoration: none;
}

.sitemap i,
header .subtitle {
  color: #666666;
  clear: left;
  font-style: normal;
  font-size: 1rem;
  margin: 0;
}

/**************************
* Footer
*************************/
footer {
  display: flex;
  margin-bottom: 3em;
  text-transform: lowercase;
}
footer section {
  flex: 1 0;
  margin-right: 0.8em;
  margin-bottom: 0.8em;
  border: 3px dashed #DDDDDD;
  border-radius: 5px;
  box-sizing: border-box;
}
footer section:last-child {
  margin-right: 0;
}
footer h3::before {
  display: none;
}
footer h3 {
  margin: 20px;
}
footer input {
  width: 100%;
}
footer h3 {
  font-style: italic;
  font-size: 1.15em;
}
footer ul {
  color: var(--bright-red);
}
footer a {
  color: #751816 !important;
}
footer a:hover {
  text-decoration: underline;
}
.search-box {
  border: none;
  display: block;
  width: 90%;
  margin: 0 auto 0.8em;
  height: 40px;
}

footer abbr {
  font-size: 1.4em;
  word-spacing: -0.3em;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: bottom;
}

/**************************
 * Smaller screens
 *************************/
@media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
  }
  footer section {
    margin-right: 0;
  }
}

/******************************
 * Org defaults
 ***
 * Source: org-plus-contrib/ox-html.el
 ******************************/
.todo   { font-family: 'Iosevka Term Slab Web'; color: red; }
.done   { font-family: 'Iosevka Term Slab Web'; color: green; }
.priority { font-family: 'Iosevka Term Slab Web'; color: orange; }
.tag    { background-color: #eee; font-family: 'Iosevka Term Slab Web';
          padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
.org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
p.verse { margin-left: 3%; }
pre.src, pre.example {
  padding: 1.2em;
}
pre.src:before {
  display: none;
  position: absolute;
  background-color: white;
  top: -1em;
  right: 1em;
  padding: 3px;
  border: 1px solid black;
}
pre.src:hover:before { display: inline;}

/* http://css-tricks.com/popping-hidden-overflow/ */
.org-src-container {
  position: relative;
  margin-bottom: 1.2em;
}
pre.src, pre.example {
  position: static;
  overflow-x: auto;
  margin: 0;
}

/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-hledger:before { content: 'hledger'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per \"defun org-babel-execute\"
     in ob-*.el */
pre.src-cpp:before  { content: 'C++'; }
pre.src-abc:before  { content: 'ABC'; }
pre.src-coq:before  { content: 'Coq'; }
pre.src-groovy:before  { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
   ob-shell.el: ob-shell is the only babel language using a lambda to put
   the execution function name together. */
pre.src-bash:before  { content: 'bash'; }
pre.src-csh:before  { content: 'csh'; }
pre.src-ash:before  { content: 'ash'; }
pre.src-dash:before  { content: 'dash'; }
pre.src-ksh:before  { content: 'ksh'; }
pre.src-mksh:before  { content: 'mksh'; }
pre.src-posh:before  { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
   (add-to-list 'org-latex-listings-langs '(conf \" \")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }

caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
th.org-right  { text-align: center;  }
th.org-left   { text-align: center;   }
th.org-center { text-align: center; }
td.org-right  { text-align: right;  }
td.org-left   { text-align: left;   }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef  { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.inlinetask {
  padding: 10px;
  border: 2px solid gray;
  margin: 10px;
  background: #ffffcc;
}
#org-div-home-and-up
 { text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
  { font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
  { background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { width: 90%; }

/******************************
 * Syntax highlighting
 ***
 * Source: http://github.com/fniessen/org-html-themes/blob/master/styles/bigblow/css/htmlize.css
 ******************************/
.org-bold { /* bold */ font-weight: bold; }
.org-bold-italic { /* bold-italic */ font-weight: bold; font-style: italic; }
.org-buffer-menu-buffer { /* buffer-menu-buffer */ font-weight: bold; }
.org-builtin { /* font-lock-builtin-face */ color: #7a378b; }
.org-button { /* button */ text-decoration: underline; }
.org-calendar-today { /* calendar-today */ text-decoration: underline; }
.org-change-log-acknowledgement { /* change-log-acknowledgement */ color: #b22222; }
.org-change-log-conditionals { /* change-log-conditionals */ color: #a0522d; }
.org-change-log-date { /* change-log-date */ color: #8b2252; }
.org-change-log-email { /* change-log-email */ color: #a0522d; }
.org-change-log-file { /* change-log-file */ color: #0000ff; }
.org-change-log-function { /* change-log-function */ color: #a0522d; }
.org-change-log-list { /* change-log-list */ color: #a020f0; }
.org-change-log-name { /* change-log-name */ color: #008b8b; }
.org-comint-highlight-input { /* comint-highlight-input */ font-weight: bold; }
.org-comint-highlight-prompt { /* comint-highlight-prompt */ color: #00008b; }
.org-comment { /* font-lock-comment-face */ color: #b22222; }
.org-comment-delimiter { /* font-lock-comment-delimiter-face */ color: #b22222; }
.org-completions-annotations { /* completions-annotations */ font-style: italic; }
.org-completions-common-part { /* completions-common-part */ color: #000000; background-color: #ffffff; }
.org-completions-first-difference { /* completions-first-difference */ font-weight: bold; }
.org-constant { /* font-lock-constant-face */ color: #008b8b; }
.org-diary { /* diary */ color: #ff0000; }
.org-diff-context { /* diff-context */ color: #7f7f7f; }
.org-diff-file-header { /* diff-file-header */ background-color: #b3b3b3; font-weight: bold; }
.org-diff-function { /* diff-function */ background-color: #cccccc; }
.org-diff-header { /* diff-header */ background-color: #cccccc; }
.org-diff-hunk-header { /* diff-hunk-header */ background-color: #cccccc; }
.org-diff-index { /* diff-index */ background-color: #b3b3b3; font-weight: bold; }
.org-diff-nonexistent { /* diff-nonexistent */ background-color: #b3b3b3; font-weight: bold; }
.org-diff-refine-change { /* diff-refine-change */ background-color: #d9d9d9; }
.org-dired-directory { /* dired-directory */ color: #0000ff; }
.org-dired-flagged { /* dired-flagged */ color: #ff0000; font-weight: bold; }
.org-dired-header { /* dired-header */ color: #228b22; }
.org-dired-ignored { /* dired-ignored */ color: #7f7f7f; }
.org-dired-mark { /* dired-mark */ color: #008b8b; }
.org-dired-marked { /* dired-marked */ color: #ff0000; font-weight: bold; }
.org-dired-perm-write { /* dired-perm-write */ color: #b22222; }
.org-dired-symlink { /* dired-symlink */ color: #a020f0; }
.org-dired-warning { /* dired-warning */ color: #ff0000; font-weight: bold; }
.org-doc { /* font-lock-doc-face */ color: #8b2252; }
.org-escape-glyph { /* escape-glyph */ color: #a52a2a; }
.org-file-name-shadow { /* file-name-shadow */ color: #7f7f7f; }
.org-flyspell-duplicate { /* flyspell-duplicate */ color: #cdad00; font-weight: bold; text-decoration: underline; }
.org-flyspell-incorrect { /* flyspell-incorrect */ color: #ff4500; font-weight: bold; text-decoration: underline; }
.org-fringe { /* fringe */ background-color: #f2f2f2; }
.org-function-name { /* font-lock-function-name-face */ color: #0000ff; }
.org-header-line { /* header-line */ color: #333333; background-color: #e5e5e5; }
.org-help-argument-name { /* help-argument-name */ font-style: italic; }
.org-highlight { /* highlight */ background-color: #b4eeb4; }
.org-holiday { /* holiday */ background-color: #ffc0cb; }
.org-isearch { /* isearch */ color: #b0e2ff; background-color: #cd00cd; }
.org-isearch-fail { /* isearch-fail */ background-color: #ffc1c1; }
.org-italic { /* italic */ font-style: italic; }
.org-keyword { /* font-lock-keyword-face */ color: #a020f0; }
.org-lazy-highlight { /* lazy-highlight */ background-color: #afeeee; }
.org-link { /* link */ color: #0000ff; text-decoration: underline; }
.org-link-visited { /* link-visited */ color: #8b008b; text-decoration: underline; }
.org-log-edit-header { /* log-edit-header */ color: #a020f0; }
.org-log-edit-summary { /* log-edit-summary */ color: #0000ff; }
.org-log-edit-unknown-header { /* log-edit-unknown-header */ color: #b22222; }
.org-match { /* match */ background-color: #ffff00; }
.org-next-error { /* next-error */ background-color: #eedc82; }
.org-nobreak-space { /* nobreak-space */ color: #a52a2a; text-decoration: underline; }
.org-org-archived { /* org-archived */ color: #7f7f7f; }
.org-org-block { /* org-block */ color: #7f7f7f; }
.org-org-block-begin-line { /* org-block-begin-line */ color: #b22222; }
.org-org-block-end-line { /* org-block-end-line */ color: #b22222; }
.org-org-checkbox { /* org-checkbox */ font-weight: bold; }
.org-org-checkbox-statistics-done { /* org-checkbox-statistics-done */ color: #228b22; font-weight: bold; }
.org-org-checkbox-statistics-todo { /* org-checkbox-statistics-todo */ color: #ff0000; font-weight: bold; }
.org-org-clock-overlay { /* org-clock-overlay */ background-color: #ffff00; }
.org-org-code { /* org-code */ color: #7f7f7f; }
.org-org-column { /* org-column */ background-color: #e5e5e5; }
.org-org-column-title { /* org-column-title */ background-color: #e5e5e5; font-weight: bold; text-decoration: underline; }
.org-org-date { /* org-date */ color: #a020f0; text-decoration: underline; }
.org-org-document-info { /* org-document-info */ color: #191970; }
.org-org-document-info-keyword { /* org-document-info-keyword */ color: #7f7f7f; }
.org-org-document-title { /* org-document-title */ color: #191970; font-size: 144%; font-weight: bold; }
.org-org-done { /* org-done */ color: #228b22; font-weight: bold; }
.org-org-drawer { /* org-drawer */ color: #0000ff; }
.org-org-ellipsis { /* org-ellipsis */ color: #b8860b; text-decoration: underline; }
.org-org-footnote { /* org-footnote */ color: #a020f0; text-decoration: underline; }
.org-org-formula { /* org-formula */ color: #b22222; }
.org-org-headline-done { /* org-headline-done */ color: #bc8f8f; }
.org-org-hide { /* org-hide */ color: #ffffff; }
.org-org-latex-and-export-specials { /* org-latex-and-export-specials */ color: #8b4513; }
.org-org-level-1 { /* org-level-1 */ color: #0000ff; }
.org-org-level-2 { /* org-level-2 */ color: #a0522d; }
.org-org-level-3 { /* org-level-3 */ color: #a020f0; }
.org-org-level-4 { /* org-level-4 */ color: #b22222; }
.org-org-level-5 { /* org-level-5 */ color: #228b22; }
.org-org-level-6 { /* org-level-6 */ color: #008b8b; }
.org-org-level-7 { /* org-level-7 */ color: #7a378b; }
.org-org-level-8 { /* org-level-8 */ color: #8b2252; }
.org-org-link { /* org-link */ color: #0000ff; text-decoration: underline; }
.org-org-meta-line { /* org-meta-line */ color: #b22222; }
.org-org-mode-line-clock { /* org-mode-line-clock */ color: #000000; background-color: #bfbfbf; }
.org-org-mode-line-clock-overrun { /* org-mode-line-clock-overrun */ color: #000000; background-color: #ff0000; }
.org-org-quote { /* org-quote */ color: #7f7f7f; }
.org-org-scheduled { /* org-scheduled */ color: #006400; }
.org-org-scheduled-previously { /* org-scheduled-previously */ color: #b22222; }
.org-org-scheduled-today { /* org-scheduled-today */ color: #006400; }
.org-org-sexp-date { /* org-sexp-date */ color: #a020f0; }
.org-org-special-keyword { /* org-special-keyword */ color: #a020f0; }
.org-org-table { /* org-table */ color: #0000ff; }
.org-org-tag { /* org-tag */ font-weight: bold; }
.org-org-target { /* org-target */ text-decoration: underline; }
.org-org-time-grid { /* org-time-grid */ color: #b8860b; }
.org-org-todo { /* org-todo */ color: #ff0000; font-weight: bold; }
.org-org-upcoming-deadline { /* org-upcoming-deadline */ color: #b22222; }
.org-org-verbatim { /* org-verbatim */ color: #7f7f7f; }
.org-org-verse { /* org-verse */ color: #7f7f7f; }
.org-org-warning { /* org-warning */ color: #ff0000; font-weight: bold; }
.org-outline-1 { /* outline-1 */ color: #0000ff; }
.org-outline-2 { /* outline-2 */ color: #a0522d; }
.org-outline-3 { /* outline-3 */ color: #a020f0; }
.org-outline-4 { /* outline-4 */ color: #b22222; }
.org-outline-5 { /* outline-5 */ color: #228b22; }
.org-outline-6 { /* outline-6 */ color: #008b8b; }
.org-outline-7 { /* outline-7 */ color: #7a378b; }
.org-outline-8 { /* outline-8 */ color: #8b2252; }
.org-preprocessor { /* font-lock-preprocessor-face */ color: #7a378b; }
.org-query-replace { /* query-replace */ color: #b0e2ff; background-color: #cd00cd; }
.org-regexp-grouping-backslash { /* font-lock-regexp-grouping-backslash */ font-weight: bold; }
.org-regexp-grouping-construct { /* font-lock-regexp-grouping-construct */ font-weight: bold; }
.org-region { /* region */ background-color: #eedc82; }
.org-secondary-selection { /* secondary-selection */ background-color: #ffff00; }
.org-shadow { /* shadow */ color: #7f7f7f; }
.org-show-paren-match { /* show-paren-match */ background-color: #40e0d0; }
.org-show-paren-mismatch { /* show-paren-mismatch */ color: #ffffff; background-color: #a020f0; }
.org-string { /* font-lock-string-face */ color: #8b2252; }
.org-tool-bar { /* tool-bar */ color: #000000; background-color: #bfbfbf; }
.org-tooltip { /* tooltip */ color: #000000; background-color: #ffffe0; }
.org-trailing-whitespace { /* trailing-whitespace */ background-color: #ff0000; }
.org-type { /* font-lock-type-face */ color: #228b22; }
.org-underline { /* underline */ text-decoration: underline; }
.org-variable-name { /* font-lock-variable-name-face */ color: #a0522d; }
.org-warning { /* font-lock-warning-face */ color: #ff0000; font-weight: bold; }
.org-widget-button { /* widget-button */ font-weight: bold; }
.org-widget-button-pressed { /* widget-button-pressed */ color: #ff0000; }
.org-widget-documentation { /* widget-documentation */ color: #006400; }
.org-widget-field { /* widget-field */ background-color: #d9d9d9; }
.org-widget-inactive { /* widget-inactive */ color: #7f7f7f; }
.org-widget-single-line-field { /* widget-single-line-field */ background-color: #d9d9d9; }
