/* Copied from ox-html. */

/*
Copyright (C) 2011-2025 Free Software Foundation, Inc.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.
*/

#content { max-width: 60em; margin: auto; }
.title  { text-align: center;
          margin-bottom: .2em; }
.subtitle { text-align: center;
            font-size: medium;
            font-weight: bold;
            margin-top:0; }
.todo   { font-family: monospace; color: red; }
.done   { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag    { background-color: #eee; font-family: monospace;
          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; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    background-color: #f2f2f2;
    padding: 8pt;
    font-family: monospace;
    overflow: auto;
    margin: 1.2em;
}
pre.src {
    position: relative;
    overflow: auto;
}
pre.src:before {
    display: none;
    position: absolute;
    top: -8px;
    right: 12px;
    padding: 3px;
    color: #555;
    background-color: #f2f2f299;
}
pre.src:hover:before { display: inline; margin-top: 14px;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-authinfo::before { content: 'Authinfo'; }
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'; }

table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top;  }
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; }
.equation-container {
    display: table;
    text-align: center;
    width: 100%;
}
.equation {
    vertical-align: middle;
}
.equation-label {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}
.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 { }
body {
    color: #000000;
    background-color: #ffffff;
}
.org-ansi-color-black {
    /* ansi-color-black */
    color: #000000;
    background-color: #000000;
}
.org-ansi-color-blue {
    /* ansi-color-blue */
    color: #0031a9;
    background-color: #0031a9;
}
.org-ansi-color-bold {
    /* ansi-color-bold */
    font-weight: bold;
}
.org-ansi-color-bright-black {
    /* ansi-color-bright-black */
    color: #595959;
    background-color: #595959;
}
.org-ansi-color-bright-blue {
    /* ansi-color-bright-blue */
    color: #3548cf;
    background-color: #3548cf;
}
.org-ansi-color-bright-cyan {
    /* ansi-color-bright-cyan */
    color: #005f5f;
    background-color: #005f5f;
}
.org-ansi-color-bright-green {
    /* ansi-color-bright-green */
    color: #00663f;
    background-color: #00663f;
}
.org-ansi-color-bright-magenta {
    /* ansi-color-bright-magenta */
    color: #531ab6;
    background-color: #531ab6;
}
.org-ansi-color-bright-red {
    /* ansi-color-bright-red */
    color: #b21100;
    background-color: #b21100;
}
.org-ansi-color-bright-white {
    /* ansi-color-bright-white */
    color: #ffffff;
    background-color: #ffffff;
}
.org-ansi-color-bright-yellow {
    /* ansi-color-bright-yellow */
    color: #973300;
    background-color: #973300;
}
.org-ansi-color-cyan {
    /* ansi-color-cyan */
    color: #005e8b;
    background-color: #005e8b;
}
.org-ansi-color-faint {
}
.org-ansi-color-fast-blink {
}
.org-ansi-color-green {
    /* ansi-color-green */
    color: #006800;
    background-color: #006800;
}
.org-ansi-color-inverse {
}
.org-ansi-color-italic {
    /* ansi-color-italic */
    font-style: italic;
}
.org-ansi-color-magenta {
    /* ansi-color-magenta */
    color: #721045;
    background-color: #721045;
}
.org-ansi-color-red {
    /* ansi-color-red */
    color: #a60000;
    background-color: #a60000;
}
.org-ansi-color-slow-blink {
}
.org-ansi-color-underline {
    /* ansi-color-underline */
    text-decoration: underline;
}
.org-ansi-color-white {
    /* ansi-color-white */
    color: #a6a6a6;
    background-color: #a6a6a6;
}
.org-ansi-color-yellow {
    /* ansi-color-yellow */
    color: #695500;
    background-color: #695500;
}
.org-blink-matching-paren-offscreen {
    /* blink-matching-paren-offscreen */
    background-color: #5fcfff;
}
.org-bold {
    /* bold */
    font-weight: bold;
}
.org-border {
}
.org-bracket {
    /* font-lock-bracket-face */
    color: #000000;
}
.org-buffer-menu-buffer {
    /* buffer-menu-buffer */
    font-weight: bold;
}
.org-builtin {
    /* font-lock-builtin-face */
    color: #721045;
}
.org-button {
    /* button */
    color: #005e8b;
    text-decoration: underline;
}
.org-comint-highlight-input {
    /* comint-highlight-input */
    font-weight: bold;
}
.org-comint-highlight-prompt {
    /* comint-highlight-prompt */
    color: #005f5f;
}
.org-comment {
    /* font-lock-comment-face */
    color: #702000;
}
.org-comment-delimiter {
    /* font-lock-comment-delimiter-face */
    color: #702000;
}
.org-constant {
    /* font-lock-constant-face */
    color: #00663f;
}
.org-cursor {
    /* cursor */
    background-color: #d00000;
}
.org-default {
    /* default */
    color: #000000;
    background-color: #ffffff;
}
.org-delimiter {
    /* font-lock-delimiter-face */
    color: #000000;
}
.org-diary {
    /* diary */
    color: #005f5f;
}
.org-doc {
    /* font-lock-doc-face */
    color: #193668;
}
.org-doc-markup {
    /* font-lock-doc-markup-face */
    color: #7c318f;
}
.org-error {
    /* error */
    color: #b21100;
    font-weight: bold;
}
.org-escape {
    /* font-lock-escape-face */
    color: #721045;
}
.org-escape-glyph {
    /* escape-glyph */
    color: #b21100;
}
.org-file-name-shadow {
    /* file-name-shadow */
    color: #595959;
}
.org-fill-column-indicator {
    /* fill-column-indicator */
    color: #c4c4c4;
    background-color: #c4c4c4;
}
.org-fringe {
    /* fringe */
    color: #000000;
    background-color: #f2f2f2;
}
.org-function-call {
    /* font-lock-function-call-face */
    color: #3f578f;
}
.org-function-name {
    /* font-lock-function-name-face */
    color: #3f578f;
}
.org-glyphless-char {
    /* glyphless-char */
    font-size: 60%;
}
.org-header-line {
    /* header-line */
    background-color: #f2f2f2;
}
.org-header-line-active {
    /* header-line-active */
    background-color: #f2f2f2;
}
.org-header-line-highlight {
    /* header-line-highlight */
    color: #000000;
    background-color: #ffafbc;
}
.org-header-line-inactive {
    /* header-line-inactive */
    background-color: #f2f2f2;
}
.org-highlight {
    /* highlight */
    color: #000000;
    background-color: #ffafbc;
}
.org-homoglyph {
    /* homoglyph */
    color: #721045;
}
.org-internal-border {
}
.org-italic {
    /* italic */
    font-style: italic;
}
.org-keyword {
    /* font-lock-keyword-face */
    color: #a0132f;
}
.org-lazy-highlight {
    /* lazy-highlight */
    color: #000000;
    background-color: #a4d5f9;
}
.org-line-number {
    /* line-number */
    color: #595959;
    background-color: #f2f2f2;
}
.org-line-number-major-tick {
    /* line-number-major-tick */
    color: #b21100;
    background-color: #f2f2f2;
}
.org-line-number-minor-tick {
    /* line-number-minor-tick */
    color: #193668;
    background-color: #f2f2f2;
}
.org-link {
    /* link */
    color: #005e8b;
    text-decoration: underline;
}
.org-link-visited {
    /* link-visited */
    color: #721045;
    text-decoration: underline;
}
.org-match {
    /* match */
    color: #000000;
    background-color: #ffddff;
}
.org-menu {
    /* menu */
    color: #000000;
    background-color: #f2f2f2;
}
.org-misc-punctuation {
    /* font-lock-misc-punctuation-face */
    color: #000000;
}
.org-modus-themes-bold {
}
.org-modus-themes-button {
    /* modus-themes-button */
    color: #000000;
    background-color: #c4c4c4;
}
.org-modus-themes-fg-blue {
    /* modus-themes-fg-blue */
    color: #0031a9;
}
.org-modus-themes-fg-blue-cooler {
    /* modus-themes-fg-blue-cooler */
    color: #0000b0;
}
.org-modus-themes-fg-blue-faint {
    /* modus-themes-fg-blue-faint */
    color: #003497;
}
.org-modus-themes-fg-blue-intense {
    /* modus-themes-fg-blue-intense */
    color: #0000ff;
}
.org-modus-themes-fg-blue-warmer {
    /* modus-themes-fg-blue-warmer */
    color: #3548cf;
}
.org-modus-themes-fg-cyan {
    /* modus-themes-fg-cyan */
    color: #005e8b;
}
.org-modus-themes-fg-cyan-cooler {
    /* modus-themes-fg-cyan-cooler */
    color: #005f5f;
}
.org-modus-themes-fg-cyan-faint {
    /* modus-themes-fg-cyan-faint */
    color: #004f5f;
}
.org-modus-themes-fg-cyan-intense {
    /* modus-themes-fg-cyan-intense */
    color: #008899;
}
.org-modus-themes-fg-cyan-warmer {
    /* modus-themes-fg-cyan-warmer */
    color: #3f578f;
}
.org-modus-themes-fg-green {
    /* modus-themes-fg-green */
    color: #006800;
}
.org-modus-themes-fg-green-cooler {
    /* modus-themes-fg-green-cooler */
    color: #00663f;
}
.org-modus-themes-fg-green-faint {
    /* modus-themes-fg-green-faint */
    color: #2a5045;
}
.org-modus-themes-fg-green-intense {
    /* modus-themes-fg-green-intense */
    color: #008900;
}
.org-modus-themes-fg-green-warmer {
    /* modus-themes-fg-green-warmer */
    color: #316500;
}
.org-modus-themes-fg-magenta {
    /* modus-themes-fg-magenta */
    color: #721045;
}
.org-modus-themes-fg-magenta-cooler {
    /* modus-themes-fg-magenta-cooler */
    color: #531ab6;
}
.org-modus-themes-fg-magenta-faint {
    /* modus-themes-fg-magenta-faint */
    color: #7c318f;
}
.org-modus-themes-fg-magenta-intense {
    /* modus-themes-fg-magenta-intense */
    color: #cd22bd;
}
.org-modus-themes-fg-magenta-warmer {
    /* modus-themes-fg-magenta-warmer */
    color: #8f0075;
}
.org-modus-themes-fg-red {
    /* modus-themes-fg-red */
    color: #a60000;
}
.org-modus-themes-fg-red-cooler {
    /* modus-themes-fg-red-cooler */
    color: #a0132f;
}
.org-modus-themes-fg-red-faint {
    /* modus-themes-fg-red-faint */
    color: #702000;
}
.org-modus-themes-fg-red-intense {
    /* modus-themes-fg-red-intense */
    color: #d00000;
}
.org-modus-themes-fg-red-warmer {
    /* modus-themes-fg-red-warmer */
    color: #b21100;
}
.org-modus-themes-fg-yellow {
    /* modus-themes-fg-yellow */
    color: #695500;
}
.org-modus-themes-fg-yellow-cooler {
    /* modus-themes-fg-yellow-cooler */
    color: #77492f;
}
.org-modus-themes-fg-yellow-faint {
    /* modus-themes-fg-yellow-faint */
    color: #624416;
}
.org-modus-themes-fg-yellow-intense {
    /* modus-themes-fg-yellow-intense */
    color: #808000;
}
.org-modus-themes-fg-yellow-warmer {
    /* modus-themes-fg-yellow-warmer */
    color: #973300;
}
.org-modus-themes-heading-0 {
    /* modus-themes-heading-0 */
    color: #005f5f;
    font-weight: bold;
}
.org-modus-themes-heading-1 {
    /* modus-themes-heading-1 */
    color: #000000;
    font-weight: bold;
}
.org-modus-themes-heading-2 {
    /* modus-themes-heading-2 */
    color: #702000;
    font-weight: bold;
}
.org-modus-themes-heading-3 {
    /* modus-themes-heading-3 */
    color: #004f5f;
    font-weight: bold;
}
.org-modus-themes-heading-4 {
    /* modus-themes-heading-4 */
    color: #721045;
    font-weight: bold;
}
.org-modus-themes-heading-5 {
    /* modus-themes-heading-5 */
    color: #2a5045;
    font-weight: bold;
}
.org-modus-themes-heading-6 {
    /* modus-themes-heading-6 */
    color: #7c318f;
    font-weight: bold;
}
.org-modus-themes-heading-7 {
    /* modus-themes-heading-7 */
    color: #3f578f;
    font-weight: bold;
}
.org-modus-themes-heading-8 {
    /* modus-themes-heading-8 */
    color: #595959;
    font-weight: bold;
}
.org-modus-themes-intense-blue {
    /* modus-themes-intense-blue */
    color: #000000;
    background-color: #bfc9ff;
}
.org-modus-themes-intense-cyan {
    /* modus-themes-intense-cyan */
    color: #000000;
    background-color: #a4d5f9;
}
.org-modus-themes-intense-green {
    /* modus-themes-intense-green */
    color: #000000;
    background-color: #8adf80;
}
.org-modus-themes-intense-magenta {
    /* modus-themes-intense-magenta */
    color: #000000;
    background-color: #dfa0f0;
}
.org-modus-themes-intense-red {
    /* modus-themes-intense-red */
    color: #000000;
    background-color: #ff8f88;
}
.org-modus-themes-intense-yellow {
    /* modus-themes-intense-yellow */
    color: #000000;
    background-color: #f3d000;
}
.org-modus-themes-lang-error {
    /* modus-themes-lang-error */
    text-decoration: underline;
}
.org-modus-themes-lang-note {
    /* modus-themes-lang-note */
    text-decoration: underline;
}
.org-modus-themes-lang-warning {
    /* modus-themes-lang-warning */
    text-decoration: underline;
}
.org-modus-themes-mark-alt {
    /* modus-themes-mark-alt */
    color: #721045;
    background-color: #ffddff;
    font-weight: bold;
}
.org-modus-themes-mark-del {
    /* modus-themes-mark-del */
    color: #a60000;
    background-color: #ffcfbf;
    font-weight: bold;
}
.org-modus-themes-mark-sel {
    /* modus-themes-mark-sel */
    color: #005e8b;
    background-color: #bfefff;
    font-weight: bold;
}
.org-modus-themes-nuanced-blue {
    /* modus-themes-nuanced-blue */
    background-color: #ecedff;
}
.org-modus-themes-nuanced-cyan {
    /* modus-themes-nuanced-cyan */
    background-color: #e0f2fa;
}
.org-modus-themes-nuanced-green {
    /* modus-themes-nuanced-green */
    background-color: #e0f6e0;
}
.org-modus-themes-nuanced-magenta {
    /* modus-themes-nuanced-magenta */
    background-color: #f8e6f5;
}
.org-modus-themes-nuanced-red {
    /* modus-themes-nuanced-red */
    background-color: #ffe8e8;
}
.org-modus-themes-nuanced-yellow {
    /* modus-themes-nuanced-yellow */
    background-color: #f8f0d0;
}
.org-modus-themes-prominent-error {
    /* modus-themes-prominent-error */
    color: #000000;
    background-color: #ff8f88;
}
.org-modus-themes-prominent-note {
    /* modus-themes-prominent-note */
    color: #000000;
    background-color: #a4d5f9;
}
.org-modus-themes-prominent-warning {
    /* modus-themes-prominent-warning */
    color: #000000;
    background-color: #dfa0f0;
}
.org-modus-themes-prompt {
    /* modus-themes-prompt */
    color: #005f5f;
}
.org-modus-themes-prose-code {
    /* modus-themes-prose-code */
    color: #005e8b;
}
.org-modus-themes-prose-macro {
    /* modus-themes-prose-macro */
    color: #b21100;
}
.org-modus-themes-prose-verbatim {
    /* modus-themes-prose-verbatim */
    color: #8f0075;
}
.org-modus-themes-reset-soft {
    /* modus-themes-reset-soft */
    color: #000000;
    background-color: #ffffff;
}
.org-modus-themes-search-current {
    /* modus-themes-search-current */
    color: #000000;
    background-color: #ff8f88;
}
.org-modus-themes-search-lazy {
    /* modus-themes-search-lazy */
    color: #000000;
    background-color: #a4d5f9;
}
.org-modus-themes-search-replace {
    /* modus-themes-search-replace */
    color: #000000;
    background-color: #dfa0f0;
}
.org-modus-themes-search-rx-group-0 {
    /* modus-themes-search-rx-group-0 */
    color: #000000;
    background-color: #bfc9ff;
}
.org-modus-themes-search-rx-group-1 {
    /* modus-themes-search-rx-group-1 */
    color: #000000;
    background-color: #dfa0f0;
}
.org-modus-themes-search-rx-group-2 {
    /* modus-themes-search-rx-group-2 */
    color: #000000;
    background-color: #bfefff;
}
.org-modus-themes-search-rx-group-3 {
    /* modus-themes-search-rx-group-3 */
    color: #000000;
    background-color: #ffcfbf;
}
.org-modus-themes-slant {
}
.org-modus-themes-subtle-blue {
    /* modus-themes-subtle-blue */
    color: #000000;
    background-color: #ccdfff;
}
.org-modus-themes-subtle-cyan {
    /* modus-themes-subtle-cyan */
    color: #000000;
    background-color: #bfefff;
}
.org-modus-themes-subtle-green {
    /* modus-themes-subtle-green */
    color: #000000;
    background-color: #b3fabf;
}
.org-modus-themes-subtle-magenta {
    /* modus-themes-subtle-magenta */
    color: #000000;
    background-color: #ffddff;
}
.org-modus-themes-subtle-red {
    /* modus-themes-subtle-red */
    color: #000000;
    background-color: #ffcfbf;
}
.org-modus-themes-subtle-yellow {
    /* modus-themes-subtle-yellow */
    color: #000000;
    background-color: #fff576;
}
.org-modus-themes-ui-variable-pitch {
}
.org-mouse {
}
.org-mouse-drag-and-drop-region {
    /* mouse-drag-and-drop-region */
    color: #000000;
    background-color: #bdbdbd;
}
.org-negation-char {
    /* font-lock-negation-char-face */
    color: #b21100;
    font-weight: bold;
}
.org-next-error {
    /* next-error */
    color: #000000;
    background-color: #ff8f88;
}
.org-next-error-message {
    /* next-error-message */
    color: #000000;
    background-color: #ffafbc;
}
.org-nobreak-hyphen {
    /* nobreak-hyphen */
    color: #b21100;
}
.org-nobreak-space {
    /* nobreak-space */
    color: #b21100;
    text-decoration: underline;
}
.org-number {
    /* font-lock-number-face */
    color: #000000;
}
.org-operator {
    /* font-lock-operator-face */
    color: #000000;
}
.org-org-archived {
    /* org-archived */
    color: #000000;
    background-color: #e0e0e0;
}
.org-org-block {
    /* org-block */
    background-color: #f2f2f2;
}
.org-org-block-begin-line {
    /* org-block-begin-line */
    color: #595959;
    background-color: #f2f2f2;
}
.org-org-block-end-line {
    /* org-block-end-line */
    color: #595959;
    background-color: #f2f2f2;
}
.org-org-checkbox {
    /* org-checkbox */
    color: #721045;
}
.org-org-checkbox-statistics-done {
    /* org-checkbox-statistics-done */
    color: #005e8b;
}
.org-org-checkbox-statistics-todo {
    /* org-checkbox-statistics-todo */
    color: #a60000;
}
.org-org-cite {
    /* org-cite */
    color: #005e8b;
    text-decoration: underline;
}
.org-org-cite-key {
    /* org-cite-key */
    color: #005e8b;
    text-decoration: underline;
}
.org-org-clock-overlay {
    /* org-clock-overlay */
    color: #000000;
    background-color: #9fdfff;
}
.org-org-code {
    /* org-code */
    color: #005e8b;
}
.org-org-column {
    /* org-column */
    color: #000000;
    background-color: #f2f2f2;
}
.org-org-date {
    /* org-date */
    color: #005f5f;
}
.org-org-date-selected {
    /* org-date-selected */
    color: #005f5f;
}
.org-org-default {
    /* org-default */
    color: #000000;
    background-color: #ffffff;
}
.org-org-dispatcher-highlight {
    /* org-dispatcher-highlight */
    color: #000000;
    background-color: #9fdfff;
}
.org-org-document-info {
    /* org-document-info */
    color: #193668;
}
.org-org-document-info-keyword {
    /* org-document-info-keyword */
    color: #595959;
}
.org-org-document-title {
    /* org-document-title */
    color: #005f5f;
    font-weight: bold;
}
.org-org-done {
    /* org-done */
    color: #005e8b;
}
.org-org-drawer {
    /* org-drawer */
    color: #595959;
}
.org-org-ellipsis {
}
.org-org-footnote {
    /* org-footnote */
    color: #005e8b;
    text-decoration: underline;
}
.org-org-formula {
    /* org-formula */
    color: #a0132f;
}
.org-org-headline-done {
    /* org-headline-done */
    color: #005e8b;
}
.org-org-headline-todo {
    /* org-headline-todo */
    color: #a60000;
}
.org-org-hide {
    /* org-hide */
    color: #ffffff;
}
.org-org-imminent-deadline {
    /* org-imminent-deadline */
    color: #a60000;
    font-weight: bold;
}
.org-org-inline-src-block {
    /* org-inline-src-block */
    background-color: #f2f2f2;
}
.org-org-latex-and-related {
    /* org-latex-and-related */
    color: #3548cf;
}
.org-org-level-1 {
    /* org-level-1 */
    color: #000000;
    font-weight: bold;
}
.org-org-level-2 {
    /* org-level-2 */
    color: #702000;
    font-weight: bold;
}
.org-org-level-3 {
    /* org-level-3 */
    color: #004f5f;
    font-weight: bold;
}
.org-org-level-4 {
    /* org-level-4 */
    color: #721045;
    font-weight: bold;
}
.org-org-level-5 {
    /* org-level-5 */
    color: #2a5045;
    font-weight: bold;
}
.org-org-level-6 {
    /* org-level-6 */
    color: #7c318f;
    font-weight: bold;
}
.org-org-level-7 {
    /* org-level-7 */
    color: #3f578f;
    font-weight: bold;
}
.org-org-level-8 {
    /* org-level-8 */
    color: #595959;
    font-weight: bold;
}
.org-org-link {
    /* org-link */
    color: #005e8b;
    text-decoration: underline;
}
.org-org-list-dt {
    /* org-list-dt */
    font-weight: bold;
}
.org-org-macro {
    /* org-macro */
    color: #b21100;
}
.org-org-meta-line {
    /* org-meta-line */
    color: #595959;
}
.org-org-mode-line-clock {
}
.org-org-mode-line-clock-overrun {
    /* org-mode-line-clock-overrun */
    color: #8f0000;
    font-weight: bold;
}
.org-org-priority {
    /* org-priority */
    color: #7c318f;
}
.org-org-property-value {
    /* org-property-value */
    color: #193668;
}
.org-org-quote {
    /* org-quote */
    background-color: #f2f2f2;
}
.org-org-scheduled {
    /* org-scheduled */
    color: #7c318f;
}
.org-org-scheduled-today {
    /* org-scheduled-today */
    color: #721045;
}
.org-org-sexp-date {
    /* org-sexp-date */
    color: #005f5f;
}
.org-org-special-keyword {
    /* org-special-keyword */
    color: #595959;
}
.org-org-table {
    /* org-table */
    color: #193668;
}
.org-org-table-row {
    /* org-table-row */
    color: #193668;
}
.org-org-tag {
    /* org-tag */
    color: #7c318f;
}
.org-org-target {
    /* org-target */
    text-decoration: underline;
}
.org-org-time-grid {
    /* org-time-grid */
    color: #595959;
}
.org-org-todo {
    /* org-todo */
    color: #a60000;
}
.org-org-upcoming-deadline {
    /* org-upcoming-deadline */
    color: #702000;
}
.org-org-upcoming-distant-deadline {
    /* org-upcoming-distant-deadline */
    color: #000000;
}
.org-org-verbatim {
    /* org-verbatim */
    color: #8f0075;
}
.org-org-verse {
    /* org-verse */
    background-color: #f2f2f2;
}
.org-org-warning {
    /* org-warning */
    color: #721045;
    font-weight: bold;
}
.org-outline-1 {
    /* outline-1 */
    color: #000000;
    font-weight: bold;
}
.org-outline-2 {
    /* outline-2 */
    color: #702000;
    font-weight: bold;
}
.org-outline-3 {
    /* outline-3 */
    color: #004f5f;
    font-weight: bold;
}
.org-outline-4 {
    /* outline-4 */
    color: #721045;
    font-weight: bold;
}
.org-outline-5 {
    /* outline-5 */
    color: #2a5045;
    font-weight: bold;
}
.org-outline-6 {
    /* outline-6 */
    color: #7c318f;
    font-weight: bold;
}
.org-outline-7 {
    /* outline-7 */
    color: #3f578f;
    font-weight: bold;
}
.org-outline-8 {
    /* outline-8 */
    color: #595959;
    font-weight: bold;
}
.org-preprocessor {
    /* font-lock-preprocessor-face */
    color: #b21100;
}
.org-property-name {
    /* font-lock-property-name-face */
    color: #005f5f;
}
.org-property-use {
    /* font-lock-property-use-face */
    color: #005f5f;
}
.org-punctuation {
    /* font-lock-punctuation-face */
    color: #000000;
}
.org-regexp {
    /* font-lock-regexp-face */
    color: #005e8b;
}
.org-regexp-grouping-backslash {
    /* font-lock-regexp-grouping-backslash */
    color: #721045;
}
.org-regexp-grouping-construct {
    /* font-lock-regexp-grouping-construct */
    color: #a60000;
}
.org-region {
    /* region */
    color: #000000;
    background-color: #bdbdbd;
}
.org-scroll-bar {
    /* scroll-bar */
    color: #9f9f9f;
    background-color: #f2f2f2;
}
.org-secondary-selection {
    /* secondary-selection */
    color: #000000;
    background-color: #9fdfff;
}
.org-separator-line {
    /* separator-line */
    text-decoration: underline;
}
.org-sh-escaped-newline {
    /* sh-escaped-newline */
    color: #005e8b;
}
.org-sh-heredoc {
    /* sh-heredoc */
    color: #005e8b;
}
.org-sh-quoted-exec {
    /* sh-quoted-exec */
    color: #721045;
}
.org-shadow {
    /* shadow */
    color: #595959;
}
.org-show-paren-match {
    /* show-paren-match */
    color: #000000;
    background-color: #5fcfff;
}
.org-show-paren-match-expression {
    /* show-paren-match-expression */
    background-color: #efd3f5;
}
.org-show-paren-mismatch {
    /* show-paren-mismatch */
    color: #000000;
    background-color: #ff8f88;
}
.org-string {
    /* font-lock-string-face */
    color: #005e8b;
}
.org-success {
    /* success */
    color: #005e8b;
    font-weight: bold;
}
.org-table-cell {
    /* table-cell */
    background-color: #f2f2f2;
}
.org-tabulated-list-fake-header {
    /* tabulated-list-fake-header */
    font-weight: bold;
    text-decoration: underline;
    text-decoration: overline;
}
.org-tool-bar {
    /* tool-bar */
    color: #000000;
    background-color: #f2f2f2;
}
.org-tooltip {
    /* tooltip */
    color: #000000;
    background-color: #c4c4c4;
}
.org-trailing-whitespace {
    /* trailing-whitespace */
    background-color: #ff8f88;
}
.org-type {
    /* font-lock-type-face */
    color: #3548cf;
}
.org-underline {
    /* underline */
    text-decoration: underline;
}
.org-variable-name {
    /* font-lock-variable-name-face */
    color: #005f5f;
}
.org-variable-pitch {
}
.org-variable-pitch-text {
    /* variable-pitch-text */
    font-size: 110%;
}
.org-variable-use {
    /* font-lock-variable-use-face */
    color: #005f5f;
}
.org-vc-conflict-state {
    /* vc-conflict-state */
    color: #b21100;
    font-weight: bold;
}
.org-vc-edited-state {
    /* vc-edited-state */
    font-style: italic;
}
.org-vc-ignored-state {
}
.org-vc-locally-added-state {
    /* vc-locally-added-state */
    font-style: italic;
}
.org-vc-locked-state {
    /* vc-locked-state */
    color: #005e8b;
    font-weight: bold;
}
.org-vc-missing-state {
    /* vc-missing-state */
    color: #b21100;
    font-weight: bold;
}
.org-vc-needs-update-state {
    /* vc-needs-update-state */
    color: #b21100;
    font-weight: bold;
}
.org-vc-removed-state {
    /* vc-removed-state */
    color: #b21100;
    font-weight: bold;
}
.org-vc-state-base {
}
.org-vc-up-to-date-state {
}
.org-vertical-border {
    /* vertical-border */
    color: #9f9f9f;
}
.org-warning {
    /* warning */
    color: #721045;
    font-weight: bold;
}
.org-warning-1 {
    /* font-lock-warning-face */
    color: #721045;
}
a {
    color: inherit;
    background-color: inherit;
    font: inherit;
    text-decoration: inherit;
}
a:hover {
    text-decoration: underline;
}
body {
    margin: auto;
    max-width: 60em;
    background-color: #ccc;
}
blockquote {
    border-radius: 0.4em;
    border-left: solid #555;
    padding-left: 0.5em;
}
