Metadoc: Design of this website
A literate Program

Table of Contents

1. Org-Mode

1.1. Publishing Configuration

(require 'package)
(package-initialize)
(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-refresh-contents)
(package-install 'org-plus-contrib)
(package-install 'htmlize)
(package-install 'ox-tufte)
(package-install 'rainbow-delimiters)

(require 'org)
(require 'ox-publish)
(require 'ox-tufte)

;; (add-to-list 'default-frame-alist '(font . "Fantasque Sans Mono" ))
;; (set-face-attribute 'default t :font "Fantasque Sans Mono" )
(setq user-full-name nil)
(setq rainbow-delimiters-mode t)
(add-hook 'emacs-lisp-mode-hook 'rainbow-delimiters-mode)
(setq org-src-fontify-natively t)
(setq org-export-with-smart-quotes t)
(setq org-html-htmlize-output-type 'css)

(setq org-publish-project-alist
      '(("website-pages"
         ;;Dynamic Component: Handle org source files
         :base-directory "./org/"
         :base-extension "org"
         :publishing-directory "./public/"
         :recursive t
         :publishing-function org-html-publish-to-tufte-html
         :headline-levels 4
         :auto-preamble nil)
        ;; :html-preamble (concat "<a href = ./html/test.html>Test</a> / <a href = ./html/meta.html>Meta</a>")

        ;;Static Component: Handle Non-Org Files
        ("website-static"
         :base-directory "./org/"
         :base-extension "css\\|js\\|svg\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf\\|woff\\|woff2\\|ttf\\|otf\\|eot\\|sfd\\|"
         :publishing-directory "./public/"
         :recursive t
         :publishing-function org-publish-attachment)

        ;;Publish/Dummy Component
        ("website":components ("website-pages" "website-static"))))


(org-publish "website" t)

1.2. Setup Files

1.2.1. Directory Level 1

#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./css/tufte.css" />

#+HTML_HEAD: <link rel="icon" type="image/png" href="./img/queen.png">

#+OPTIONS: html-link-use-abs-url:nil html-postamble:nil html-preamble:nil

#+HTML_HEAD: <navigation>
#+HTML_HEAD:   <div class="nav">
#+HTML_HEAD:     <button>☰ Menu</button>
#+HTML_HEAD:     <ul id="links">
#+HTML_HEAD:       <li><a class="navlink" href="./index.html">Home</a></li><li><a class="navlink" href="./writings/index.html">Writings</a></li><li ><a class="navlink" href="./notes/index.html">Notes</a></li><li ><a class="navlink" href="./projects/index.html">Projects</a></li><li ><a class="navlink" href="./misc/index.html">Misc.</a></li>
#+HTML_HEAD: 
#+HTML_HEAD: <!-- <li><a class="navlink" href="./blog/index.html">Blog</a></li> -->
#+HTML_HEAD:     </ul>
#+HTML_HEAD:   </div>
#+HTML_HEAD: </navigation>

# <!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
#      styles, `#sidebar-checkbox` for behavior. -->
# <input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
# <!-- Toggleable sidebar -->
# <div class="sidebar" id="sidebar">
#   <div class="sidebar-item">
#     <p>Navigation</p>
#   </div>

#   <nav class="sidebar-nav">
#     <a class="sidebar-nav-item active" href="./meta.org">Meta</a>
#     <a class="sidebar-nav-item" href="">About</a>
#     <a class="sidebar-nav-item" href="">Download</a>
#     <a class="sidebar-nav-item" href="">Projects</a>
#     <span class="sidebar-nav-item"></span>
#   </nav>
# </div>

1.2.2. Directory Level 2

#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../css/tufte.css" />

#+HTML_HEAD: <link rel="icon" type="image/png" href="../img/queen.png">

#+OPTIONS: html-link-use-abs-url:nil html-postamble:nil html-preamble:nil

#+HTML_HEAD: <navigation>
#+HTML_HEAD:   <div class="nav">
#+HTML_HEAD:     <button>☰ Menu</button>
#+HTML_HEAD:     <ul id="links">
#+HTML_HEAD:       <li><a class="navlink" href="../index.html">Home</a></li><li><a class="navlink" href="../writings/index.html">Writings</a></li><li ><a class="navlink" href="../notes/index.html">Notes</a></li><li ><a class="navlink" href="../projects/index.html">Projects</a></li><li ><a class="navlink" href="../misc/index.html">Misc.</a></li>
#+HTML_HEAD: <!-- <li><a class="navlink" href="../blog/index.html">Blog</a></li> -->
#+HTML_HEAD:     </ul>
#+HTML_HEAD:   </div>
#+HTML_HEAD: </navigation>
#+HTML_HEAD: 

# <!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
#      styles, `#sidebar-checkbox` for behavior. -->
# <input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
# <!-- Toggleable sidebar -->
# <div class="sidebar" id="sidebar">
#   <div class="sidebar-item">
#     <p>Navigation</p>
#   </div>

#   <nav class="sidebar-nav">
#     <a class="sidebar-nav-item active" href="./meta.org">Meta</a>
#     <a class="sidebar-nav-item" href="">About</a>
#     <a class="sidebar-nav-item" href="">Download</a>
#     <a class="sidebar-nav-item" href="">Projects</a>
#     <span class="sidebar-nav-item"></span>
#   </nav>
# </div>

1.2.3. Directory Level 3

#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../css/tufte.css" />

#+HTML_HEAD: <link rel="icon" type="image/png" href="../../img/queen.png">

#+OPTIONS: html-link-use-abs-url:nil html-postamble:nil html-preamble:nil

#+HTML_HEAD: <navigation>
#+HTML_HEAD:   <div class="nav">
#+HTML_HEAD:     <button>☰ Menu</button>
#+HTML_HEAD:     <ul id="links">
#+HTML_HEAD:       <li><a class="navlink" href="../../index.html">Home</a></li><li><a class="navlink" href="../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../misc/index.html">Misc.</a></li>
#+HTML_HEAD: <!-- <li><a class="navlink" href="../../blog/index.html">Blog</a></li> -->
#+HTML_HEAD:     </ul>
#+HTML_HEAD:   </div>
#+HTML_HEAD: </navigation>

# <!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
#      styles, `#sidebar-checkbox` for behavior. -->
# <input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
# <!-- Toggleable sidebar -->
# <div class="sidebar" id="sidebar">
#   <div class="sidebar-item">
#     <p>Navigation</p>
#   </div>

#   <nav class="sidebar-nav">
#     <a class="sidebar-nav-item active" href="./meta.org">Meta</a>
#     <a class="sidebar-nav-item" href="">About</a>
#     <a class="sidebar-nav-item" href="">Download</a>
#     <a class="sidebar-nav-item" href="">Projects</a>
#     <span class="sidebar-nav-item"></span>
#   </nav>
# </div>

1.2.4. Directory Level 4

#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../css/tufte.css" />

#+HTML_HEAD: <link rel="icon" type="image/png" href="../../../img/queen.png">

#+OPTIONS: html-link-use-abs-url:nil html-postamble:nil html-preamble:nil

#+HTML_HEAD: <navigation>
#+HTML_HEAD:   <div class="nav">
#+HTML_HEAD:     <button>☰ Menu</button>
#+HTML_HEAD:     <ul id="links">
#+HTML_HEAD:       <li><a class="navlink" href="../../../index.html">Home</a></li><li><a class="navlink" href="../../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../../misc/index.html">Misc.</a></li>
#+HTML_HEAD: <!-- <li><a class="navlink" href="../../../blog/index.html">Blog</a></li> -->
#+HTML_HEAD:     </ul>
#+HTML_HEAD:   </div>
#+HTML_HEAD: </navigation>

# <!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
#      styles, `#sidebar-checkbox` for behavior. -->
# <input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
# <!-- Toggleable sidebar -->
# <div class="sidebar" id="sidebar">
#   <div class="sidebar-item">
#     <p>Navigation</p>
#   </div>

#   <nav class="sidebar-nav">
#     <a class="sidebar-nav-item active" href="./meta.org">Meta</a>
#     <a class="sidebar-nav-item" href="">About</a>
#     <a class="sidebar-nav-item" href="">Download</a>
#     <a class="sidebar-nav-item" href="">Projects</a>
#     <span class="sidebar-nav-item"></span>
#   </nav>
# </div>

1.2.5. Directory Level 5

#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../css/tufte.css" />

#+HTML_HEAD: <link rel="icon" type="image/png" href="../../../../img/queen.png">

#+OPTIONS: html-link-use-abs-url:nil html-postamble:nil html-preamble:nil

#+HTML_HEAD: <navigation>
#+HTML_HEAD:   <div class="nav">
#+HTML_HEAD:     <button>☰ Menu</button>
#+HTML_HEAD:     <ul id="links">
#+HTML_HEAD:       <li><a class="navlink" href="../../../../index.html">Home</a></li><li><a class="navlink" href="../../../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../../../misc/index.html">Misc.</a></li>
#+HTML_HEAD: <!-- <li><a class="navlink" href="../../../blog/index.html">Blog</a></li> -->
#+HTML_HEAD:     </ul>
#+HTML_HEAD:   </div>
#+HTML_HEAD: </navigation>

# <!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
#      styles, `#sidebar-checkbox` for behavior. -->
# <input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
# <!-- Toggleable sidebar -->
# <div class="sidebar" id="sidebar">
#   <div class="sidebar-item">
#     <p>Navigation</p>
#   </div>

#   <nav class="sidebar-nav">
#     <a class="sidebar-nav-item active" href="./meta.org">Meta</a>
#     <a class="sidebar-nav-item" href="">About</a>
#     <a class="sidebar-nav-item" href="">Download</a>
#     <a class="sidebar-nav-item" href="">Projects</a>
#     <span class="sidebar-nav-item"></span>
#   </nav>
# </div>

1.2.6. Directory Level 6

#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../../css/tufte.css" />

#+HTML_HEAD: <link rel="icon" type="image/png" href="../../../../../img/queen.png">

#+OPTIONS: html-link-use-abs-url:nil html-postamble:nil html-preamble:nil

#+HTML_HEAD: <navigation>
#+HTML_HEAD:   <div class="nav">
#+HTML_HEAD:     <button>☰ Menu</button>
#+HTML_HEAD:     <ul id="links">
#+HTML_HEAD:       <li><a class="navlink" href="../../../../../index.html">Home</a></li><li><a class="navlink" href="../../../../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../../../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../../../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../../../../misc/index.html">Misc.</a></li>
#+HTML_HEAD: <!-- <li><a class="navlink" href="../../../blog/index.html">Blog</a></li> -->
#+HTML_HEAD:     </ul>
#+HTML_HEAD:   </div>
#+HTML_HEAD: </navigation>

# <!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
#      styles, `#sidebar-checkbox` for behavior. -->
# <input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
# <!-- Toggleable sidebar -->
# <div class="sidebar" id="sidebar">
#   <div class="sidebar-item">
#     <p>Navigation</p>
#   </div>

#   <nav class="sidebar-nav">
#     <a class="sidebar-nav-item active" href="./meta.org">Meta</a>
#     <a class="sidebar-nav-item" href="">About</a>
#     <a class="sidebar-nav-item" href="">Download</a>
#     <a class="sidebar-nav-item" href="">Projects</a>
#     <span class="sidebar-nav-item"></span>
#   </nav>
# </div>

1.2.7. Directory Level 7

#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="../../../../../../css/tufte.css" />

#+HTML_HEAD: <link rel="icon" type="image/png" href="../../../../../../img/queen.png">

#+OPTIONS: html-link-use-abs-url:nil html-postamble:nil html-preamble:nil

#+HTML_HEAD: <navigation>
#+HTML_HEAD:   <div class="nav">
#+HTML_HEAD:     <button>☰ Menu</button>
#+HTML_HEAD:     <ul id="links">
#+HTML_HEAD:       <li><a class="navlink" href="../../../../../../index.html">Home</a></li><li><a class="navlink" href="../../../../../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../../../../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../../../../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../../../../../misc/index.html">Misc.</a></li>
#+HTML_HEAD: <!-- <li><a class="navlink" href="../../../blog/index.html">Blog</a></li> -->
#+HTML_HEAD:     </ul>
#+HTML_HEAD:   </div>
#+HTML_HEAD: </navigation>

# <!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
#      styles, `#sidebar-checkbox` for behavior. -->
# <input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
# <!-- Toggleable sidebar -->
# <div class="sidebar" id="sidebar">
#   <div class="sidebar-item">
#     <p>Navigation</p>
#   </div>

#   <nav class="sidebar-nav">
#     <a class="sidebar-nav-item active" href="./meta.org">Meta</a>
#     <a class="sidebar-nav-item" href="">About</a>
#     <a class="sidebar-nav-item" href="">Download</a>
#     <a class="sidebar-nav-item" href="">Projects</a>
#     <span class="sidebar-nav-item"></span>
#   </nav>
# </div>

1.3. Latex Export in HTML as images

1.3.1. Imagemagick

("convert -colorspace Gray -transparent white -density %D -trim -antialias %f -quality 100 %O")

2. Style

2.1. Index

body {
    background-color: #fffff8;
}

#container {
    background-color: #fffff8;
    width: 800px;
    margin-left: 0px;
    margin-right: auto;
}

#header {
    text-align: center;
}


#content {

}

2.2. Fonts

2.2.1. Fantasque Sans Mono

@font-face {
    font-family: "fantasque-sans-mono";
    src: url("fantasque-sans-mono/FantasqueSansMono-Italic.eot"); /* IE 9 Compatibility Mode */
    src: url("fantasque-sans-mono/FantasqueSansMono-Italic.eot?#iefix") format("embedded-opentype"), /* IE < 9 */
    url("fantasque-sans-mono/FantasqueSansMono-Italic.woff2") format("woff2"),
    url("fantasque-sans-mono/FantasqueSansMono-Italic.woff") format("woff"), /* Firefox >= 3.6, any other modern browser */
    url("fantasque-sans-mono/FantasqueSansMono-Italic.ttf") format("truetype"), /* Safari, Android, iOS */
    url("fantasque-sans-mono/FantasqueSansMono-Italic.svg#FantasqueSansMono-Italic") format("svg"); /* Chrome < 4, Legacy iOS */
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "fantasque-sans-mono";
    src: url("fantasque-sans-mono/FantasqueSansMono-Regular.eot"); /* IE 9 Compatibility Mode */
    src: url("fantasque-sans-mono/FantasqueSansMono-Regular.eot?#iefix") format("embedded-opentype"), /* IE < 9 */
    url("fantasque-sans-mono/FantasqueSansMono-Regular.woff2") format("woff2"),
    url("fantasque-sans-mono/FantasqueSansMono-Regular.woff") format("woff"), /* Firefox >= 3.6, any other modern browser */
    url("fantasque-sans-mono/FantasqueSansMono-Regular.ttf") format("truetype"), /* Safari, Android, iOS */
    url("fantasque-sans-mono/FantasqueSansMono-Regular.svg#FantasqueSansMono-Regular") format("svg"); /* Chrome < 4, Legacy iOS */
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "fantasque-sans-mono";
    src: url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.eot"); /* IE 9 Compatibility Mode */
    src: url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.eot?#iefix") format("embedded-opentype"), /* IE < 9 */
    url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.woff2") format("woff2"),
    url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.woff") format("woff"), /* Firefox >= 3.6, any other modern browser */
    url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.ttf") format("truetype"), /* Safari, Android, iOS */
    url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.svg#FantasqueSansMono-BoldItalic") format("svg"); /* Chrome < 4, Legacy iOS */
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "fantasque-sans-mono";
    src: url("fantasque-sans-mono/FantasqueSansMono-Bold.eot"); /* IE 9 Compatibility Mode */
    src: url("fantasque-sans-mono/FantasqueSansMono-Bold.eot?#iefix") format("embedded-opentype"), /* IE < 9 */
    url("fantasque-sans-mono/FantasqueSansMono-Bold.woff2") format("woff2"),
    url("fantasque-sans-mono/FantasqueSansMono-Bold.woff") format("woff"), /* Firefox >= 3.6, any other modern browser */
    url("fantasque-sans-mono/FantasqueSansMono-Bold.ttf") format("truetype"), /* Safari, Android, iOS */
    url("fantasque-sans-mono/FantasqueSansMono-Bold.svg#FantasqueSansMono-Bold") format("svg"); /* Chrome < 4, Legacy iOS */
    font-weight: 700;
    font-style: normal;
}

2.2.2. ET-book

/* Import ET Book styles
   adapted from https://github.com/edwardtufte/et-book/blob/gh-pages/et-book.css */

 @font-face { font-family: "et-book";
              src: url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot");
              src: url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot?#iefix") format("embedded-opentype"), url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff") format("woff"), url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf") format("truetype"), url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg#etbookromanosf") format("svg");
              font-weight: normal;
              font-style: normal; }

 @font-face { font-family: "et-book";
              src: url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot");
              src: url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot?#iefix") format("embedded-opentype"), url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff") format("woff"), url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf") format("truetype"), url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg#etbookromanosf") format("svg");
              font-weight: normal;
              font-style: italic; }

 @font-face { font-family: "et-book";
              src: url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot");
              src: url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot?#iefix") format("embedded-opentype"), url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff") format("woff"), url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf") format("truetype"), url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg#etbookromanosf") format("svg");
              font-weight: bold;
              font-style: normal; }

 @font-face { font-family: "et-book-roman-old-style";
              src: url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot");
              src: url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot?#iefix") format("embedded-opentype"), url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff") format("woff"), url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf") format("truetype"), url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg#etbookromanosf") format("svg");
              font-weight: normal;
              font-style: normal; }

2.2.3. Fira Sans

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Hair.eot');
    src: local('Fira Sans Hair'),
         url('fonts/fira-sans/eot/FiraSans-Hair.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Hair.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Hair.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-HairItalic.eot');
    src: local('Fira Sans Hair Italic'),
         url('fonts/fira-sans/eot/FiraSans-HairItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-HairItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-HairItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-UltraLight.eot');
    src: local('Fira Sans UltraLight'),
         url('fonts/fira-sans/eot/FiraSans-UltraLight.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-UltraLight.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-UltraLightItalic.eot');
    src: local('Fira Sans UltraLight Italic'),
         url('fonts/fira-sans/eot/FiraSans-UltraLightItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-UltraLightItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-UltraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Light.eot');
    src: local('Fira Sans Light'),
         url('fonts/fira-sans/eot/FiraSans-Light.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Light.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-LightItalic.eot');
    src: local('Fira Sans Light Italic'),
         url('fonts/fira-sans/eot/FiraSans-LightItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-LightItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Regular.eot');
    src: local('Fira Sans Regular'),
         url('fonts/fira-sans/eot/FiraSans-Regular.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Regular.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Italic.eot');
    src: local('Fira Sans Regular Italic'),
         url('fonts/fira-sans/eot/FiraSans-Italic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Italic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Medium.eot');
    src: local('Fira Sans Medium'),
         url('fonts/fira-sans/eot/FiraSans-Medium.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Medium.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-MediumItalic.eot');
    src: local('Fira Sans Medium Italic'),
         url('fonts/fira-sans/eot/FiraSans-MediumItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-MediumItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-SemiBold.eot');
    src: local('Fira Sans SemiBold'),
         url('fonts/fira-sans/eot/FiraSans-SemiBold.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-SemiBold.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-SemiBoldItalic.eot');
    src: local('Fira Sans SemiBold Italic'),
         url('fonts/fira-sans/eot/FiraSans-SemiBoldItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-SemiBoldItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Bold.eot');
    src: local('Fira Sans Bold'),
         url('fonts/fira-sans/eot/FiraSans-Bold.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Bold.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-BoldItalic.eot');
    src: local('Fira Sans Bold Italic'),
         url('fonts/fira-sans/eot/FiraSans-BoldItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-BoldItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-ExtraBold.eot');
    src: local('Fira Sans ExtraBold'),
         url('fonts/fira-sans/eot/FiraSans-ExtraBold.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-ExtraBold.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-ExtraBoldItalic.eot');
    src: local('Fira Sans ExtraBold Italic'),
         url('fonts/fira-sans/eot/FiraSans-ExtraBoldItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-ExtraBoldItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Heavy.eot');
    src: local('Fira Sans Heavy'),
         url('fonts/fira-sans/eot/FiraSans-Heavy.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Heavy.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-HeavyItalic.eot');
    src: local('Fira Sans Heavy Italic'),
         url('fonts/fira-sans/eot/FiraSans-HeavyItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-HeavyItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-HeavyItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}


@font-face{
    font-family: 'Fira Mono';
    src: url('fonts/fira-sans/eot/FiraMono-Regular.eot');
    src: local('Fira Mono'),
         url('fonts/fira-sans/eot/FiraMono-Regular.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraMono-Regular.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Mono';
    src: url('fonts/fira-sans/eot/FiraMono-Bold.eot');
    src: local('Fira Mono Bold'),
         url('fonts/fira-sans/eot/FiraMono-Bold.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraMono-Bold.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraMono-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

2.2.4. Murty Fonts

@font-face{
    font-family: "murty-sanskrit";
    src: url('fonts/murty/Murty-Sanskrit-1.01.otf') format('opentype');
    /* font-weight: 100; */
    /* font-style: normal; */
}

2.3. Body


2.4. TOC

                 /* TOC inspired by http://jashkenas.github.com/coffee-script */
     /* Table of Contents */
@media all{
     #table-of-contents {
         z-index: 100;
         font-size: 10pt;
         position: fixed;
         right: 0em;
         top: 0em;
         background: #fffff8;
         -webkit-box-shadow: 0 0 0.5em #777777;
         -moz-box-shadow: 0 0 0.5em #777777;
         -webkit-border-bottom-left-radius: 5px;
         -moz-border-radius-bottomleft: 5px;
         text-align: left;
         /* width: 50% */
         /* ensure doesn't flow off the screen when expanded */
         max-height: 90%;
         max-width: 50%;
         overflow: auto;
         margin-bottom:0.05em;
     }
     #table-of-contents h2 {
         font-size: 14pt;
         max-width: 9em;
         /* width: 50% */
         text-align: center;
         font-weight: normal;
         padding-left: 0.5em;
         padding-right: 0.5em;
         /* padding-top: 0.05em; */
         padding-bottom: 0.5em;
     }

     #table-of-contents #text-table-of-contents {
         display: none;
         text-align: left;
     }
     #table-of-contents:hover #text-table-of-contents {
         display: block;
         padding: 0.5em;
         margin-top: -1.5em;
     }

     #table-of-contents #text-table-of-contents ul {
         /* list-style-position: outside */;
         font-size: 13pt;
         padding-right: 0.5em;
     }
}

2.5. Source Code

The following has been generated using org-html-htmlize-generate-css elisp function.

.code {
    background: #121212;
    color: #d0d0d0;
    font-family: fantasque-sans-mono;
}

/* body { */
/*     color: #d0d0d0; */
/*     background-color: #121212; */
/*     font-family: "Fantasque Sans Mono"; */
/* } */
.org-ahs {
    /* ahs-face */
    background-color: #444155;
}
.org-ahs-definition {
    /* ahs-definition-face */
    color: #ffe4b5;
    background-color: #5f9ea0;
    text-decoration: underline;
}
.org-ahs-edit-mode {
    /* ahs-edit-mode-face */
    color: #ffffff;
    background-color: #cd5b45;
}
.org-ahs-plugin-bod {
    /* ahs-plugin-bod-face */
    color: #000000;
    background-color: #1e90ff;
}
.org-ahs-plugin-defalt {
    /* ahs-plugin-defalt-face */
    color: #000000;
    background-color: #ffa500;
}
.org-ahs-plugin-whole-buffer {
    /* ahs-plugin-whole-buffer-face */
    color: #121212;
    background-color: #86dc2f;
}
.org-ahs-warning {
    /* ahs-warning-face */
    color: #ff0000;
    font-weight: bold;
}
.org-all-the-icons-blue {
    /* all-the-icons-blue */
    color: #6A9FB5;
}
.org-all-the-icons-blue-alt {
    /* all-the-icons-blue-alt */
    color: #2188b6;
}
.org-all-the-icons-cyan {
    /* all-the-icons-cyan */
    color: #75B5AA;
}
.org-all-the-icons-cyan-alt {
    /* all-the-icons-cyan-alt */
    color: #61dafb;
}
.org-all-the-icons-dblue {
    /* all-the-icons-dblue */
    color: #446674;
}
.org-all-the-icons-dcyan {
    /* all-the-icons-dcyan */
    color: #48746D;
}
.org-all-the-icons-dgreen {
    /* all-the-icons-dgreen */
    color: #6D8143;
}
.org-all-the-icons-dmaroon {
    /* all-the-icons-dmaroon */
    color: #72584B;
}
.org-all-the-icons-dorange {
    /* all-the-icons-dorange */
    color: #915B2D;
}
.org-all-the-icons-dpink {
    /* all-the-icons-dpink */
    color: #B18286;
}
.org-all-the-icons-dpurple {
    /* all-the-icons-dpurple */
    color: #694863;
}
.org-all-the-icons-dred {
    /* all-the-icons-dred */
    color: #843031;
}
.org-all-the-icons-dsilver {
    /* all-the-icons-dsilver */
    color: #838484;
}
.org-all-the-icons-dyellow {
    /* all-the-icons-dyellow */
    color: #B48D56;
}
.org-all-the-icons-green {
    /* all-the-icons-green */
    color: #90A959;
}
.org-all-the-icons-lblue {
    /* all-the-icons-lblue */
    color: #8FD7F4;
}
.org-all-the-icons-lcyan {
    /* all-the-icons-lcyan */
    color: #A5FDEC;
}
.org-all-the-icons-lgreen {
    /* all-the-icons-lgreen */
    color: #C6E87A;
}
.org-all-the-icons-lmaroon {
    /* all-the-icons-lmaroon */
    color: #CE7A4E;
}
.org-all-the-icons-lorange {
    /* all-the-icons-lorange */
    color: #FFA500;
}
.org-all-the-icons-lpink {
    /* all-the-icons-lpink */
    color: #FFBDC1;
}
.org-all-the-icons-lpurple {
    /* all-the-icons-lpurple */
    color: #E69DD6;
}
.org-all-the-icons-lred {
    /* all-the-icons-lred */
    color: #EB595A;
}
.org-all-the-icons-lsilver {
    /* all-the-icons-lsilver */
    color: #B9B6AA;
}
.org-all-the-icons-lyellow {
    /* all-the-icons-lyellow */
    color: #FFC16D;
}
.org-all-the-icons-maroon {
    /* all-the-icons-maroon */
    color: #8F5536;
}
.org-all-the-icons-orange {
    /* all-the-icons-orange */
    color: #D4843E;
}
.org-all-the-icons-pink {
    /* all-the-icons-pink */
    color: #F2B4B8;
}
.org-all-the-icons-purple {
    /* all-the-icons-purple */
    color: #AA759F;
}
.org-all-the-icons-purple-alt {
    /* all-the-icons-purple-alt */
    color: #5D54E1;
}
.org-all-the-icons-red {
    /* all-the-icons-red */
    color: #AC4142;
}
.org-all-the-icons-red-alt {
    /* all-the-icons-red-alt */
    color: #ce5643;
}
.org-all-the-icons-silver {
    /* all-the-icons-silver */
    color: #716E68;
}
.org-all-the-icons-yellow {
    /* all-the-icons-yellow */
    color: #FFD446;
}
.org-anzu-match-1 {
    /* anzu-match-1 */
    color: #000000;
    background-color: #32cd32;
}
.org-anzu-match-2 {
    /* anzu-match-2 */
    color: #000000;
    background-color: #ffff00;
}
.org-anzu-match-3 {
    /* anzu-match-3 */
    color: #000000;
    background-color: #7fffd4;
}
.org-anzu-mode-line {
    /* anzu-mode-line */
    color: #b1951d;
    font-weight: bold;
}
.org-anzu-mode-line-no-match {
    /* anzu-mode-line-no-match */
    color: #b1951d;
    font-weight: bold;
}
.org-anzu-replace-highlight {
    /* anzu-replace-highlight */
    color: #121212;
    background-color: #86dc2f;
}
.org-anzu-replace-to {
    /* anzu-replace-to */
    color: #ffff00;
}
.org-apropos-keybinding {
    /* apropos-keybinding */
    text-decoration: underline;
}
.org-apropos-property {
    /* apropos-property */
    color: #4f97d7;
}
.org-apropos-symbol {
    /* apropos-symbol */
    font-weight: bold;
}
.org-bold {
    /* bold */
    font-weight: bold;
}
.org-bold-italic {
    /* bold-italic */
    font-weight: bold;
    font-style: italic;
}
.org-bookmark-menu-bookmark {
    /* bookmark-menu-bookmark */
    font-weight: bold;
}
.org-bookmark-menu-heading {
    /* bookmark-menu-heading */
    color: #ce537a;
    font-weight: bold;
}
.org-border {
}
.org-buffer-menu-buffer {
    /* buffer-menu-buffer */
    font-weight: bold;
}
.org-builtin {
    /* font-lock-builtin-face */
    color: #4f97d7;
}
.org-button {
    /* button */
    color: #606060;
    text-decoration: underline;
}
.org-c-annotation {
    /* c-annotation-face */
    color: #a45bad;
}
.org-calendar-month-header {
    /* calendar-month-header */
    color: #bc6ec5;
    font-weight: bold;
}
.org-calendar-today {
    /* calendar-today */
    text-decoration: underline;
}
.org-calendar-weekday-header {
    /* calendar-weekday-header */
    color: #a45bad;
}
.org-calendar-weekend-header {
    /* calendar-weekend-header */
    color: #606060;
}
.org-change-log-acknowledgment {
    /* change-log-acknowledgment */
    color: #606060;
}
.org-change-log-conditionals {
    /* change-log-conditionals */
    color: #7590db;
}
.org-change-log-date {
    /* change-log-date */
    color: #2d9574;
}
.org-change-log-email {
    /* change-log-email */
    color: #7590db;
}
.org-change-log-file {
    /* change-log-file */
    color: #bc6ec5;
    font-weight: bold;
}
.org-change-log-function {
    /* change-log-function */
    color: #7590db;
}
.org-change-log-list {
    /* change-log-list */
    color: #4f97d7;
    font-weight: bold;
}
.org-change-log-name {
    /* change-log-name */
    color: #a45bad;
}
.org-comint-highlight-input {
    /* comint-highlight-input */
    font-weight: bold;
}
.org-comint-highlight-prompt {
    /* comint-highlight-prompt */
    color: #4f97d7;
    font-weight: bold;
}
.org-comment {
    /* font-lock-comment-face */
    color: #606060;
}
.org-comment-delimiter {
    /* font-lock-comment-delimiter-face */
    color: #606060;
}
.org-company-echo {
}
.org-company-echo-common {
    /* company-echo-common */
    color: #121212;
    background-color: #d0d0d0;
}
.org-company-preview {
    /* company-preview */
    color: #9a9aba;
    background-color: #34323e;
}
.org-company-preview-common {
    /* company-preview-common */
    color: #d0d0d0;
    background-color: #34323e;
}
.org-company-preview-search {
    /* company-preview-search */
    color: #86dc2f;
    background-color: #444155;
}
.org-company-scrollbar-bg {
    /* company-scrollbar-bg */
    background-color: #000000;
}
.org-company-scrollbar-fg {
    /* company-scrollbar-fg */
    background-color: #262626;
}
.org-company-template-field {
    /* company-template-field */
    background-color: #444155;
}
.org-company-tooltip {
    /* company-tooltip */
    color: #9a9aba;
    background-color: #34323e;
}
.org-company-tooltip-annotation {
    /* company-tooltip-annotation */
    color: #ce537a;
}
.org-company-tooltip-annotation-selection {
    /* company-tooltip-annotation-selection */
    color: #ce537a;
}
.org-company-tooltip-common {
    /* company-tooltip-common */
    color: #4f97d7;
    background-color: #34323e;
}
.org-company-tooltip-common-selection {
    /* company-tooltip-common-selection */
    color: #d0d0d0;
}
.org-company-tooltip-mouse {
    /* company-tooltip-mouse */
    color: #d0d0d0;
    background-color: #444155;
}
.org-company-tooltip-search {
    /* company-tooltip-search */
    color: #86dc2f;
    background-color: #444155;
}
.org-company-tooltip-search-selection {
    /* company-tooltip-search-selection */
    color: #d0d0d0;
    background-color: #444155;
}
.org-company-tooltip-selection {
    /* company-tooltip-selection */
    color: #d0d0d0;
    background-color: #5e5079;
}
.org-compilation-column-number {
    /* compilation-column-number */
    color: #3a3a3a;
}
.org-compilation-error {
    /* compilation-error */
    color: #e0211d;
}
.org-compilation-info {
    /* compilation-info */
    color: #86dc2f;
}
.org-compilation-line-number {
    /* compilation-line-number */
    color: #4f97d7;
    font-weight: bold;
}
.org-compilation-mode-line-exit {
    /* compilation-mode-line-exit */
    color: #228b22;
    font-weight: bold;
}
.org-compilation-mode-line-fail {
    /* compilation-mode-line-fail */
    color: #ff0000;
    font-weight: bold;
}
.org-compilation-mode-line-run {
    /* compilation-mode-line-run */
    color: #dc752f;
}
.org-compilation-warning {
    /* compilation-warning */
    color: #dc752f;
}
.org-completions-annotations {
    /* completions-annotations */
    font-style: italic;
}
.org-completions-common-part {
}
.org-completions-first-difference {
    /* completions-first-difference */
    font-weight: bold;
}
.org-constant {
    /* font-lock-constant-face */
    color: #a45bad;
}
.org-counsel-variable-documentation {
    /* counsel-variable-documentation */
    color: #606060;
}
.org-css-property {
    /* css-property */
    color: #4f97d7;
    font-weight: bold;
}
.org-css-selector {
    /* css-selector */
    color: #bc6ec5;
    font-weight: bold;
}
.org-cursor {
    /* cursor */
    background-color: #eead0e;
}
.org-custom-button {
    /* custom-button */
    color: #d0d0d0;
    background-color: #000000;
}
.org-custom-button-mouse {
    /* custom-button-mouse */
    color: #000000;
    background-color: #e5e5e5;
}
.org-custom-button-pressed {
    /* custom-button-pressed */
    color: #000000;
    background-color: #d3d3d3;
}
.org-custom-button-pressed-unraised {
    /* custom-button-pressed-unraised */
    color: #ee82ee;
    text-decoration: underline;
}
.org-custom-button-unraised {
    /* custom-button-unraised */
    text-decoration: underline;
}
.org-custom-changed {
    /* custom-changed */
    color: #ffffff;
    background-color: #0000ff;
}
.org-custom-comment {
    /* custom-comment */
    background-color: #696969;
}
.org-custom-comment-tag {
    /* custom-comment-tag */
    color: #cccccc;
}
.org-custom-documentation {
}
.org-custom-face-tag {
    /* custom-face-tag */
    color: #add8e6;
    font-weight: bold;
}
.org-custom-group-subtitle {
    /* custom-group-subtitle */
    font-weight: bold;
}
.org-custom-group-tag {
    /* custom-group-tag */
    color: #add8e6;
    font-size: 120%;
    font-weight: bold;
}
.org-custom-group-tag-1 {
    /* custom-group-tag-1 */
    color: #ffc0cb;
    font-size: 120%;
    font-weight: bold;
}
.org-custom-invalid {
    /* custom-invalid */
    color: #ffff00;
    background-color: #ff0000;
}
.org-custom-link {
    /* custom-link */
    color: #606060;
    text-decoration: underline;
}
.org-custom-modified {
    /* custom-modified */
    color: #ffffff;
    background-color: #0000ff;
}
.org-custom-rogue {
    /* custom-rogue */
    color: #ffc0cb;
    background-color: #000000;
}
.org-custom-saved {
    /* custom-saved */
    text-decoration: underline;
}
.org-custom-set {
    /* custom-set */
    color: #0000ff;
    background-color: #ffffff;
}
.org-custom-state {
    /* custom-state */
    color: #32cd32;
}
.org-custom-themed {
    /* custom-themed */
    color: #ffffff;
    background-color: #0000ff;
}
.org-custom-variable-button {
    /* custom-variable-button */
    font-weight: bold;
    text-decoration: underline;
}
.org-custom-variable-tag {
    /* custom-variable-tag */
    color: #add8e6;
    font-weight: bold;
}
.org-custom-visibility {
    /* custom-visibility */
    color: #606060;
    font-size: 80%;
    text-decoration: underline;
}
.org-diary {
    /* diary */
    color: #ffff00;
}
.org-diff-added {
    /* diff-added */
    color: #67b11d;
}
.org-diff-changed {
    /* diff-changed */
    color: #4f97d7;
}
.org-diff-context {
    /* diff-context */
    color: #dddddd;
}
.org-diff-file-header {
    /* diff-file-header */
    color: #cbc1d5;
    background-color: #080808;
}
.org-diff-function {
    /* diff-function */
    color: #bc6ec5;
    background-color: #080808;
}
.org-diff-header {
    /* diff-header */
    color: #bc6ec5;
    background-color: #080808;
}
.org-diff-hl-change {
    /* diff-hl-change */
    color: #4f97d7;
    background-color: #2d4252;
}
.org-diff-hl-delete {
    /* diff-hl-delete */
    color: #f2241f;
    background-color: #512e31;
}
.org-diff-hl-insert {
    /* diff-hl-insert */
    color: #67b11d;
    background-color: #29422d;
}
.org-diff-hunk-header {
    /* diff-hunk-header */
    color: #bc6ec5;
    background-color: #080808;
}
.org-diff-index {
    /* diff-index */
    color: #cbc1d5;
    background-color: #080808;
}
.org-diff-indicator-added {
    /* diff-indicator-added */
    color: #67b11d;
}
.org-diff-indicator-changed {
    /* diff-indicator-changed */
    color: #4f97d7;
}
.org-diff-indicator-removed {
    /* diff-indicator-removed */
    color: #f2241f;
}
.org-diff-nonexistent {
    /* diff-nonexistent */
    color: #cbc1d5;
    background-color: #080808;
}
.org-diff-refine-added {
    /* diff-refine-added */
    color: #121212;
    background-color: #67b11d;
}
.org-diff-refine-changed {
    /* diff-refine-changed */
    color: #121212;
    background-color: #4f97d7;
}
.org-diff-refine-removed {
    /* diff-refine-removed */
    color: #121212;
    background-color: #f2241f;
}
.org-diff-removed {
    /* diff-removed */
    color: #f2241f;
}
.org-dired-directory {
    /* dired-directory */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-dired-flagged {
    /* dired-flagged */
    color: #f2241f;
}
.org-dired-header {
    /* dired-header */
    color: #c56ec3;
    font-weight: bold;
}
.org-dired-ignored {
    /* dired-ignored */
    color: #686868;
}
.org-dired-mark {
    /* dired-mark */
    color: #c56ec3;
    font-weight: bold;
}
.org-dired-marked {
    /* dired-marked */
    color: #a31db1;
    font-weight: bold;
}
.org-dired-perm-write {
    /* dired-perm-write */
    color: #d0d0d0;
    text-decoration: underline;
}
.org-dired-symlink {
    /* dired-symlink */
    color: #28def0;
    background-color: #121212;
    font-weight: bold;
}
.org-dired-warning {
    /* dired-warning */
    color: #dc752f;
}
.org-doc {
    /* font-lock-doc-face */
    color: #3a3a3a;
}
.org-eieio-custom-slot-tag {
    /* eieio-custom-slot-tag-face */
    color: #add8e6;
}
.org-eldoc-highlight-function-argument {
    /* eldoc-highlight-function-argument */
    color: #86dc2f;
    font-weight: bold;
}
.org-emmet-preview-input {
    /* emmet-preview-input */
    background-color: #100a14;
}
.org-emmet-preview-output {
    /* emmet-preview-output */
    color: #d0d0d0;
    background-color: #444155;
}
.org-epa-field-body {
    /* epa-field-body */
    color: #40e0d0;
    font-style: italic;
}
.org-epa-field-name {
    /* epa-field-name */
    color: #afeeee;
    font-weight: bold;
}
.org-epa-mark {
    /* epa-mark */
    color: #ffa500;
    font-weight: bold;
}
.org-epa-string {
    /* epa-string */
    color: #ffffe0;
}
.org-epa-validity-disabled {
    /* epa-validity-disabled */
    font-style: italic;
}
.org-epa-validity-high {
    /* epa-validity-high */
    color: #afeeee;
    font-weight: bold;
}
.org-epa-validity-low {
    /* epa-validity-low */
    font-style: italic;
}
.org-epa-validity-medium {
    /* epa-validity-medium */
    color: #afeeee;
    font-style: italic;
}
.org-error {
    /* error */
    color: #e0211d;
}
.org-escape-glyph {
    /* escape-glyph */
    color: #00ffff;
}
.org-eval-sexp-fu-flash {
    /* eval-sexp-fu-flash */
    color: #121212;
    background-color: #86dc2f;
}
.org-eval-sexp-fu-flash-error {
    /* eval-sexp-fu-flash-error */
    color: #121212;
    background-color: #e0211d;
}
.org-evil-ex-commands {
    /* evil-ex-commands */
    font-style: italic;
    text-decoration: underline;
}
.org-evil-ex-info {
    /* evil-ex-info */
    color: #ff0000;
    font-style: italic;
}
.org-evil-ex-lazy-highlight {
    /* evil-ex-lazy-highlight */
    background-color: #29422d;
}
.org-evil-ex-search {
    /* evil-ex-search */
    color: #121212;
    background-color: #86dc2f;
}
.org-evil-ex-substitute-matches {
    /* evil-ex-substitute-matches */
    color: #f2241f;
    background-color: #3c2a2c;
}
.org-evil-ex-substitute-replacement {
    /* evil-ex-substitute-replacement */
    color: #67b11d;
    background-color: #293235;
}
.org-eyebrowse-mode-line-active {
    /* eyebrowse-mode-line-active */
    font-weight: bold;
}
.org-eyebrowse-mode-line-delimiters {
}
.org-eyebrowse-mode-line-inactive {
}
.org-eyebrowse-mode-line-separator {
}
.org-ffap {
    /* ffap */
    color: #d0d0d0;
}
.org-file-name-shadow {
    /* file-name-shadow */
    color: #686868;
}
.org-fixed-pitch {
}
.org-fixed-pitch-serif {
}
.org-flx-highlight {
    /* flx-highlight-face */
    color: #c56ec3;
}
.org-flycheck-error {
    /* flycheck-error */
    text-decoration: underline;
}
.org-flycheck-error-list-checker-name {
    /* flycheck-error-list-checker-name */
    color: #4f97d7;
}
.org-flycheck-error-list-column-number {
    /* flycheck-error-list-column-number */
    color: #a45bad;
}
.org-flycheck-error-list-error {
    /* flycheck-error-list-error */
    color: #e0211d;
}
.org-flycheck-error-list-filename {
    /* flycheck-error-list-filename */
    color: #7590db;
}
.org-flycheck-error-list-highlight {
    /* flycheck-error-list-highlight */
    color: #d0d0d0;
    background-color: #444155;
}
.org-flycheck-error-list-id {
    /* flycheck-error-list-id */
    color: #ce537a;
    font-weight: bold;
}
.org-flycheck-error-list-id-with-explainer {
    /* flycheck-error-list-id-with-explainer */
    color: #ce537a;
    font-weight: bold;
}
.org-flycheck-error-list-info {
    /* flycheck-error-list-info */
    color: #86dc2f;
}
.org-flycheck-error-list-line-number {
    /* flycheck-error-list-line-number */
    color: #a45bad;
}
.org-flycheck-error-list-warning {
    /* flycheck-error-list-warning */
    color: #dc752f;
}
.org-flycheck-fringe-error {
    /* flycheck-fringe-error */
    color: #e0211d;
    font-weight: bold;
}
.org-flycheck-fringe-info {
    /* flycheck-fringe-info */
    color: #4f97d7;
    font-weight: bold;
}
.org-flycheck-fringe-warning {
    /* flycheck-fringe-warning */
    color: #dc752f;
    font-weight: bold;
}
.org-flycheck-info {
    /* flycheck-info */
    text-decoration: underline;
}
.org-flycheck-verify-select-checker {
}
.org-flycheck-warning {
    /* flycheck-warning */
    text-decoration: underline;
}
.org-flyspell-duplicate {
    /* flyspell-duplicate */
    text-decoration: underline;
}
.org-flyspell-incorrect {
    /* flyspell-incorrect */
    text-decoration: underline;
}
.org-fringe {
    /* fringe */
    color: #d0d0d0;
    background-color: #121212;
}
.org-function-name {
    /* font-lock-function-name-face */
    color: #bc6ec5;
    font-weight: bold;
}
.org-git-commit-comment-action {
    /* git-commit-comment-action */
    font-weight: bold;
}
.org-git-commit-comment-branch-local {
    /* git-commit-comment-branch-local */
    color: #7590db;
}
.org-git-commit-comment-branch-remote {
    /* git-commit-comment-branch-remote */
    color: #7590db;
}
.org-git-commit-comment-detached {
    /* git-commit-comment-detached */
    color: #7590db;
}
.org-git-commit-comment-file {
    /* git-commit-comment-file */
    color: #2d9574;
}
.org-git-commit-comment-heading {
    /* git-commit-comment-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-git-commit-keyword {
    /* git-commit-keyword */
    color: #2d9574;
}
.org-git-commit-known-pseudo-header {
    /* git-commit-known-pseudo-header */
    color: #4f97d7;
    font-weight: bold;
}
.org-git-commit-nonempty-second-line {
    /* git-commit-nonempty-second-line */
    color: #dc752f;
    background-color: #121212;
}
.org-git-commit-overlong-summary {
    /* git-commit-overlong-summary */
    color: #dc752f;
    background-color: #121212;
}
.org-git-commit-pseudo-header {
    /* git-commit-pseudo-header */
    color: #2d9574;
}
.org-git-commit-summary {
    /* git-commit-summary */
    color: #ce537a;
    font-weight: bold;
}
.org-git-gutter-frX-added {
    /* git-gutter-fr+-added */
    color: #00ff00;
    font-weight: bold;
}
.org-git-gutter-frX-deleted {
    /* git-gutter-fr+-deleted */
    color: #ff0000;
    font-weight: bold;
}
.org-git-gutter-frX-modified {
    /* git-gutter-fr+-modified */
    color: #ff00ff;
    font-weight: bold;
}
.org-git-gutterX-added {
    /* git-gutter+-added */
    color: #00ff00;
    font-weight: bold;
}
.org-git-gutterX-commit-header {
    /* git-gutter+-commit-header-face */
    color: #606060;
}
.org-git-gutterX-deleted {
    /* git-gutter+-deleted */
    color: #ff0000;
    font-weight: bold;
}
.org-git-gutterX-modified {
    /* git-gutter+-modified */
    color: #ff00ff;
    font-weight: bold;
}
.org-git-gutterX-separator {
    /* git-gutter+-separator */
    color: #00ffff;
    font-weight: bold;
}
.org-git-gutterX-unchanged {
    /* git-gutter+-unchanged */
    background-color: #ffff00;
}
.org-git-gutterXadded {
    /* git-gutter:added */
    color: #00ff00;
    font-weight: bold;
}
.org-git-gutterXdeleted {
    /* git-gutter:deleted */
    color: #ff0000;
    font-weight: bold;
}
.org-git-gutterXmodified {
    /* git-gutter:modified */
    color: #ff00ff;
    font-weight: bold;
}
.org-git-gutterXunchanged {
    /* git-gutter:unchanged */
    background-color: #ffff00;
}
.org-git-rebase-comment-hash {
    /* git-rebase-comment-hash */
    color: #7590db;
    font-weight: bold;
}
.org-git-rebase-comment-heading {
    /* git-rebase-comment-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-git-rebase-description {
}
.org-git-rebase-hash {
    /* git-rebase-hash */
    color: #7590db;
}
.org-git-rebase-killed-action {
    /* git-rebase-killed-action */
    color: #606060;
    text-decoration: line-through;
}
.org-git-rebase-label {
    /* git-rebase-label */
    color: #cccccc;
}
.org-glyphless-char {
    /* glyphless-char */
    font-size: 60%;
}
.org-gnus-group-mail-1 {
    /* gnus-group-mail-1 */
    color: #e1ffe1;
    font-weight: bold;
}
.org-gnus-group-mail-1-empty {
    /* gnus-group-mail-1-empty */
    color: #e1ffe1;
}
.org-gnus-group-mail-2 {
    /* gnus-group-mail-2 */
    color: #c1ffc1;
    font-weight: bold;
}
.org-gnus-group-mail-2-empty {
    /* gnus-group-mail-2-empty */
    color: #c1ffc1;
}
.org-gnus-group-mail-3 {
    /* gnus-group-mail-3 */
    color: #7fffd4;
    font-weight: bold;
}
.org-gnus-group-mail-3-empty {
    /* gnus-group-mail-3-empty */
    color: #7fffd4;
}
.org-gnus-group-mail-low {
    /* gnus-group-mail-low */
    color: #76eec6;
    font-weight: bold;
}
.org-gnus-group-mail-low-empty {
    /* gnus-group-mail-low-empty */
    color: #76eec6;
}
.org-gnus-group-news-1 {
    /* gnus-group-news-1 */
    color: #afeeee;
    font-weight: bold;
}
.org-gnus-group-news-1-empty {
    /* gnus-group-news-1-empty */
    color: #afeeee;
}
.org-gnus-group-news-2 {
    /* gnus-group-news-2 */
    color: #40e0d0;
    font-weight: bold;
}
.org-gnus-group-news-2-empty {
    /* gnus-group-news-2-empty */
    color: #40e0d0;
}
.org-gnus-group-news-3 {
    /* gnus-group-news-3 */
    font-weight: bold;
}
.org-gnus-group-news-3-empty {
}
.org-gnus-group-news-4 {
    /* gnus-group-news-4 */
    font-weight: bold;
}
.org-gnus-group-news-4-empty {
}
.org-gnus-group-news-5 {
    /* gnus-group-news-5 */
    font-weight: bold;
}
.org-gnus-group-news-5-empty {
}
.org-gnus-group-news-6 {
    /* gnus-group-news-6 */
    font-weight: bold;
}
.org-gnus-group-news-6-empty {
}
.org-gnus-group-news-low {
    /* gnus-group-news-low */
    color: #00ced1;
    font-weight: bold;
}
.org-gnus-group-news-low-empty {
    /* gnus-group-news-low-empty */
    color: #00ced1;
}
.org-gnus-splash {
    /* gnus-splash */
    color: #cccccc;
}
.org-gnus-summary-cancelled {
    /* gnus-summary-cancelled */
    color: #121212;
    background-color: #dc752f;
}
.org-gnus-summary-high-ancient {
    /* gnus-summary-high-ancient */
    color: #87ceeb;
    font-weight: bold;
}
.org-gnus-summary-high-read {
    /* gnus-summary-high-read */
    color: #98fb98;
    font-weight: bold;
}
.org-gnus-summary-high-ticked {
    /* gnus-summary-high-ticked */
    color: #ffc0cb;
    font-weight: bold;
}
.org-gnus-summary-high-undownloaded {
    /* gnus-summary-high-undownloaded */
    color: #d3d3d3;
    font-weight: bold;
}
.org-gnus-summary-high-unread {
    /* gnus-summary-high-unread */
    font-weight: bold;
}
.org-gnus-summary-low-ancient {
    /* gnus-summary-low-ancient */
    color: #87ceeb;
    font-style: italic;
}
.org-gnus-summary-low-read {
    /* gnus-summary-low-read */
    color: #98fb98;
    font-style: italic;
}
.org-gnus-summary-low-ticked {
    /* gnus-summary-low-ticked */
    color: #ffc0cb;
    font-style: italic;
}
.org-gnus-summary-low-undownloaded {
    /* gnus-summary-low-undownloaded */
    color: #008b8b;
    font-style: italic;
}
.org-gnus-summary-low-unread {
    /* gnus-summary-low-unread */
    font-style: italic;
}
.org-gnus-summary-normal-ancient {
    /* gnus-summary-normal-ancient */
    color: #87ceeb;
}
.org-gnus-summary-normal-read {
    /* gnus-summary-normal-read */
    color: #98fb98;
}
.org-gnus-summary-normal-ticked {
    /* gnus-summary-normal-ticked */
    color: #ffc0cb;
}
.org-gnus-summary-normal-undownloaded {
    /* gnus-summary-normal-undownloaded */
    color: #008b8b;
}
.org-gnus-summary-normal-unread {
}
.org-gnus-summary-selected {
    /* gnus-summary-selected */
    text-decoration: underline;
}
.org-haskell-constructor {
    /* haskell-constructor-face */
    color: #ce537a;
    font-weight: bold;
}
.org-haskell-debug-muted {
    /* haskell-debug-muted-face */
    color: #999;
}
.org-haskell-debug-newline {
    /* haskell-debug-newline-face */
    background-color: #f0f0f0;
    font-weight: bold;
}
.org-haskell-debug-trace-number {
    /* haskell-debug-trace-number-face */
    background-color: #f5f5f5;
    font-weight: bold;
}
.org-haskell-error {
    /* haskell-error-face */
    text-decoration: underline;
}
.org-haskell-hole {
    /* haskell-hole-face */
    text-decoration: underline;
}
.org-haskell-interactive-face-compile-error {
    /* haskell-interactive-face-compile-error */
    color: #e0211d;
}
.org-haskell-interactive-face-compile-warning {
    /* haskell-interactive-face-compile-warning */
    color: #dc752f;
}
.org-haskell-interactive-face-garbage {
    /* haskell-interactive-face-garbage */
    color: #2d9574;
}
.org-haskell-interactive-face-prompt {
    /* haskell-interactive-face-prompt */
    color: #bc6ec5;
    font-weight: bold;
}
.org-haskell-interactive-face-prompt2 {
    /* haskell-interactive-face-prompt2 */
    color: #4f97d7;
    font-weight: bold;
}
.org-haskell-interactive-face-result {
    /* haskell-interactive-face-result */
    color: #2d9574;
}
.org-haskell-keyword {
    /* haskell-keyword-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-haskell-liquid-haskell-annotation {
    /* haskell-liquid-haskell-annotation-face */
    color: #bc6ec5;
}
.org-haskell-literate-comment {
    /* haskell-literate-comment-face */
    color: #3a3a3a;
}
.org-haskell-operator {
    /* haskell-operator-face */
    color: #7590db;
}
.org-haskell-pragma {
    /* haskell-pragma-face */
    color: #bc6ec5;
}
.org-haskell-type {
    /* haskell-type-face */
    color: #ce537a;
    font-weight: bold;
}
.org-haskell-warning {
    /* haskell-warning-face */
    text-decoration: underline;
}
.org-header-line {
    /* header-line */
    background-color: #0a0814;
}
.org-header-line-highlight {
    /* header-line-highlight */
    color: #d0d0d0;
    background-color: #444155;
}
.org-helm-action {
    /* helm-action */
    text-decoration: underline;
}
.org-helm-bookmark-addressbook {
    /* helm-bookmark-addressbook */
    color: #ff6347;
}
.org-helm-bookmark-directory {
    /* helm-bookmark-directory */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-bookmark-file {
    /* helm-bookmark-file */
    color: #d0d0d0;
}
.org-helm-bookmark-file-not-found {
    /* helm-bookmark-file-not-found */
    color: #6c7b8b;
}
.org-helm-bookmark-gnus {
    /* helm-bookmark-gnus */
    color: #c56ec3;
}
.org-helm-bookmark-info {
    /* helm-bookmark-info */
    color: #c56ec3;
}
.org-helm-bookmark-man {
    /* helm-bookmark-man */
    color: #c56ec3;
}
.org-helm-bookmark-w3m {
    /* helm-bookmark-w3m */
    color: #c56ec3;
}
.org-helm-buffer-archive {
    /* helm-buffer-archive */
    color: #ffd700;
}
.org-helm-buffer-directory {
    /* helm-buffer-directory */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-buffer-file {
    /* helm-buffer-file */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-buffer-modified {
    /* helm-buffer-modified */
    color: #606060;
}
.org-helm-buffer-not-saved {
    /* helm-buffer-not-saved */
    color: #c56ec3;
    background-color: #121212;
}
.org-helm-buffer-process {
    /* helm-buffer-process */
    color: #4f97d7;
    background-color: #121212;
}
.org-helm-buffer-saved-out {
    /* helm-buffer-saved-out */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-buffer-size {
    /* helm-buffer-size */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-candidate-number {
    /* helm-candidate-number */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-candidate-number-suspended {
    /* helm-candidate-number-suspended */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-delete-async-message {
    /* helm-delete-async-message */
    color: #ffff00;
}
.org-helm-etags-file {
    /* helm-etags-file */
    color: #8b814c;
    text-decoration: underline;
}
.org-helm-ff-denied {
    /* helm-ff-denied */
    color: #ff0000;
    background-color: #000000;
}
.org-helm-ff-directory {
    /* helm-ff-directory */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-dirs {
    /* helm-ff-dirs */
    color: #bc6ec5;
    font-weight: bold;
}
.org-helm-ff-dotted-directory {
    /* helm-ff-dotted-directory */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-dotted-symlink-directory {
    /* helm-ff-dotted-symlink-directory */
    color: #28def0;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-executable {
    /* helm-ff-executable */
    color: #86dc2f;
    background-color: #121212;
}
.org-helm-ff-file {
    /* helm-ff-file */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-ff-invalid-symlink {
    /* helm-ff-invalid-symlink */
    color: #f2241f;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-pipe {
    /* helm-ff-pipe */
    color: #ffff00;
    background-color: #000000;
}
.org-helm-ff-prefix {
    /* helm-ff-prefix */
    color: #121212;
    background-color: #4f97d7;
}
.org-helm-ff-socket {
    /* helm-ff-socket */
    color: #ff1493;
}
.org-helm-ff-suid {
    /* helm-ff-suid */
    color: #ffffff;
    background-color: #ff0000;
}
.org-helm-ff-symlink {
    /* helm-ff-symlink */
    color: #28def0;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-truename {
    /* helm-ff-truename */
    color: #2d9574;
}
.org-helm-grep-cmd-line {
    /* helm-grep-cmd-line */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-grep-file {
    /* helm-grep-file */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-grep-finish {
    /* helm-grep-finish */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-grep-lineno {
    /* helm-grep-lineno */
    color: #ce537a;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-grep-match {
    /* helm-grep-match */
    color: #4f97d7;
    background-color: #000000;
}
.org-helm-header {
    /* helm-header */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-header-line-left-margin {
    /* helm-header-line-left-margin */
    color: #4f97d7;
}
.org-helm-helper {
    /* helm-helper */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-history-deleted {
    /* helm-history-deleted */
    color: #f2241f;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-history-remote {
    /* helm-history-remote */
    color: #ff6a6a;
}
.org-helm-lisp-completion-info {
    /* helm-lisp-completion-info */
    color: #ff0000;
}
.org-helm-lisp-show-completion {
    /* helm-lisp-show-completion */
    background-color: #2f4f4f;
}
.org-helm-locate-finish {
    /* helm-locate-finish */
    color: #00ff00;
}
.org-helm-m-x-key {
    /* helm-M-x-key */
    color: #ffa500;
    text-decoration: underline;
}
.org-helm-match {
    /* helm-match */
    color: #4f97d7;
    background-color: #000000;
}
.org-helm-match-item {
    /* helm-match-item */
    color: #4f97d7;
    background-color: #000000;
}
.org-helm-minibuffer-prompt {
    /* helm-minibuffer-prompt */
    color: #4f97d7;
    font-weight: bold;
}
.org-helm-moccur-buffer {
    /* helm-moccur-buffer */
    color: #7590db;
    background-color: #121212;
}
.org-helm-mode-prefix {
    /* helm-mode-prefix */
    color: #000000;
    background-color: #ff0000;
}
.org-helm-non-file-buffer {
    /* helm-non-file-buffer */
    font-style: italic;
}
.org-helm-prefarg {
    /* helm-prefarg */
    color: #00ff00;
}
.org-helm-resume-need-update {
    /* helm-resume-need-update */
    background-color: #ff0000;
}
.org-helm-selection {
    /* helm-selection */
    background-color: #444155;
}
.org-helm-selection-line {
    /* helm-selection-line */
    background-color: #000000;
}
.org-helm-separator {
    /* helm-separator */
    color: #c56ec3;
    background-color: #121212;
}
.org-helm-source-header {
    /* helm-source-header */
    color: #121212;
    background-color: #c56ec3;
    font-weight: bold;
}
.org-helm-visible-mark {
    /* helm-visible-mark */
    color: #4f97d7;
    background-color: #100a14;
}
.org-help-argument-name {
    /* help-argument-name */
    font-style: italic;
}
.org-hi-black-b {
    /* hi-black-b */
    font-weight: bold;
}
.org-hi-black-hb {
    /* hi-black-hb */
    font-size: 167%;
    font-weight: bold;
}
.org-hi-blue {
    /* hi-blue */
    color: #000000;
    background-color: #add8e6;
}
.org-hi-blue-b {
    /* hi-blue-b */
    color: #0000ff;
    font-weight: bold;
}
.org-hi-green {
    /* hi-green */
    color: #67b11d;
    background-color: #293235;
}
.org-hi-green-b {
    /* hi-green-b */
    color: #00ff00;
    font-weight: bold;
}
.org-hi-pink {
    /* hi-pink */
    color: #000000;
    background-color: #ffc0cb;
}
.org-hi-red-b {
    /* hi-red-b */
    color: #ff0000;
    font-weight: bold;
}
.org-hi-yellow {
    /* hi-yellow */
    color: #b1951d;
    background-color: #32322c;
}
.org-highlight {
    /* highlight */
    color: #d0d0d0;
    background-color: #444155;
}
.org-highlight-numbers-number {
    /* highlight-numbers-number */
    color: #a45bad;
}
.org-hl-line {
    /* hl-line */
    background-color: #000000;
}
.org-hl-paren {
}
.org-hl-todo {
    /* hl-todo */
    color: #cc9393;
    font-weight: bold;
}
.org-holiday {
    /* holiday */
    background-color: #8b4513;
}
.org-homoglyph {
    /* homoglyph */
    color: #00ffff;
}
.org-hydra-face-amaranth {
    /* hydra-face-amaranth */
    color: #E52B50;
    font-weight: bold;
}
.org-hydra-face-blue {
    /* hydra-face-blue */
    color: #4f97d7;
}
.org-hydra-face-pink {
    /* hydra-face-pink */
    color: #FF6EB4;
    font-weight: bold;
}
.org-hydra-face-red {
    /* hydra-face-red */
    color: #f2241f;
}
.org-hydra-face-teal {
    /* hydra-face-teal */
    color: #367588;
    font-weight: bold;
}
.org-ibuffer-locked-buffer {
    /* ibuffer-locked-buffer */
    color: #bc8f8f;
}
.org-ido-first-match {
    /* ido-first-match */
    color: #c56ec3;
    font-weight: bold;
}
.org-ido-incomplete-regexp {
    /* ido-incomplete-regexp */
    color: #dc752f;
    background-color: #121212;
}
.org-ido-indicator {
    /* ido-indicator */
    color: #ffff00;
    background-color: #ff0000;
}
.org-ido-only-match {
    /* ido-only-match */
    color: #86dc2f;
    font-weight: bold;
}
.org-ido-subdir {
    /* ido-subdir */
    color: #4f97d7;
}
.org-ido-vertical-first-match {
    /* ido-vertical-first-match-face */
    color: #c56ec3;
    font-weight: bold;
}
.org-ido-vertical-match {
    /* ido-vertical-match-face */
    color: #c56ec3;
}
.org-ido-vertical-only-match {
    /* ido-vertical-only-match-face */
    color: #86dc2f;
    font-weight: bold;
}
.org-ido-virtual {
    /* ido-virtual */
    color: #4f97d7;
}
.org-imenu-list-entry {
}
.org-imenu-list-entry-face-0 {
    /* imenu-list-entry-face-0 */
    color: #ffd700;
}
.org-imenu-list-entry-face-1 {
    /* imenu-list-entry-face-1 */
    color: #90ee90;
}
.org-imenu-list-entry-face-2 {
    /* imenu-list-entry-face-2 */
    color: #add8e6;
}
.org-imenu-list-entry-face-3 {
    /* imenu-list-entry-face-3 */
    color: #f4a460;
}
.org-imenu-list-entry-subalist-face-0 {
    /* imenu-list-entry-subalist-face-0 */
    color: #ffd700;
    font-weight: bold;
    text-decoration: underline;
}
.org-imenu-list-entry-subalist-face-1 {
    /* imenu-list-entry-subalist-face-1 */
    color: #90ee90;
    font-weight: bold;
    text-decoration: underline;
}
.org-imenu-list-entry-subalist-face-2 {
    /* imenu-list-entry-subalist-face-2 */
    color: #add8e6;
    font-weight: bold;
    text-decoration: underline;
}
.org-imenu-list-entry-subalist-face-3 {
    /* imenu-list-entry-subalist-face-3 */
    color: #f4a460;
    font-weight: bold;
    text-decoration: underline;
}
.org-info-header-node {
    /* info-header-node */
    color: #bc6ec5;
    font-weight: bold;
}
.org-info-header-xref {
    /* info-header-xref */
    color: #bc6ec5;
    text-decoration: underline;
}
.org-info-index-match {
    /* info-index-match */
    color: #86dc2f;
    background-color: #444155;
}
.org-info-menu-header {
    /* info-menu-header */
    font-weight: bold;
}
.org-info-menu-star {
    /* info-menu-star */
    color: #ff0000;
}
.org-info-node {
    /* info-node */
    color: #bc6ec5;
    font-weight: bold;
}
.org-info-quoted {
}
.org-info-title-1 {
    /* info-title-1 */
    font-size: 140%;
    font-weight: bold;
}
.org-info-title-2 {
    /* info-title-2 */
    font-size: 130%;
    font-weight: bold;
}
.org-info-title-3 {
    /* info-title-3 */
    font-size: 130%;
}
.org-info-title-4 {
    /* info-title-4 */
    font-size: 120%;
}
.org-info-xref {
    /* info-xref */
    color: #606060;
    text-decoration: underline;
}
.org-internal-border {
}
.org-isearch {
    /* isearch */
    color: #121212;
    background-color: #86dc2f;
}
.org-isearch-fail {
    /* isearch-fail */
    background-color: #8b0000;
}
.org-italic {
    /* italic */
    font-style: italic;
}
.org-keyword {
    /* font-lock-keyword-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-lazy-highlight {
    /* lazy-highlight */
    background-color: #29422d;
}
.org-line-number {
    /* line-number */
    color: #44505c;
    background-color: #000000;
}
.org-line-number-current-line {
    /* line-number-current-line */
    color: #d0d0d0;
    background-color: #000000;
}
.org-link {
    /* link */
    color: #606060;
    text-decoration: underline;
}
.org-link-visited {
    /* link-visited */
    color: #c56ec3;
    text-decoration: underline;
}
.org-log-edit-header {
    /* log-edit-header */
    color: #4f97d7;
    font-weight: bold;
}
.org-log-edit-summary {
    /* log-edit-summary */
    color: #bc6ec5;
    font-weight: bold;
}
.org-log-edit-unknown-header {
    /* log-edit-unknown-header */
    color: #606060;
}
.org-lv-separator {
    /* lv-separator */
    background-color: #4d4d4d;
}
.org-macrostep-compiler-macro {
    /* macrostep-compiler-macro-face */
    font-style: italic;
}
.org-macrostep-expansion-highlight {
    /* macrostep-expansion-highlight-face */
    background-color: #222222;
}
.org-macrostep-gensym-1 {
    /* macrostep-gensym-1 */
    color: #8080c0;
    font-weight: bold;
}
.org-macrostep-gensym-2 {
    /* macrostep-gensym-2 */
    color: #8fbc8f;
    font-weight: bold;
}
.org-macrostep-gensym-3 {
    /* macrostep-gensym-3 */
    color: #daa520;
    font-weight: bold;
}
.org-macrostep-gensym-4 {
    /* macrostep-gensym-4 */
    color: #cd5c5c;
    font-weight: bold;
}
.org-macrostep-gensym-5 {
    /* macrostep-gensym-5 */
    color: #da70d6;
    font-weight: bold;
}
.org-macrostep-macro {
    /* macrostep-macro-face */
    text-decoration: underline;
}
.org-magit-bisect-bad {
    /* magit-bisect-bad */
    color: #8b3a3a;
}
.org-magit-bisect-good {
    /* magit-bisect-good */
    color: #556b2f;
}
.org-magit-bisect-skip {
    /* magit-bisect-skip */
    color: #b8860b;
}
.org-magit-blame-date {
    /* magit-blame-date */
    color: #67b11d;
    background-color: #32322c;
}
.org-magit-blame-dimmed {
    /* magit-blame-dimmed */
    color: #7f7f7f;
}
.org-magit-blame-hash {
    /* magit-blame-hash */
    color: #bc6ec5;
    background-color: #32322c;
}
.org-magit-blame-heading {
    /* magit-blame-heading */
    color: #67b11d;
    background-color: #32322c;
}
.org-magit-blame-highlight {
    /* magit-blame-highlight */
    color: #ffffff;
    background-color: #404040;
}
.org-magit-blame-margin {
    /* magit-blame-margin */
    color: #ffffff;
    background-color: #404040;
}
.org-magit-blame-name {
    /* magit-blame-name */
    color: #b1951d;
    background-color: #32322c;
}
.org-magit-blame-summary {
    /* magit-blame-summary */
    color: #b1951d;
    background-color: #32322c;
}
.org-magit-branch-current {
    /* magit-branch-current */
    color: #4f97d7;
    background-color: #293239;
    font-weight: bold;
}
.org-magit-branch-local {
    /* magit-branch-local */
    color: #4f97d7;
    background-color: #293239;
    font-weight: bold;
}
.org-magit-branch-remote {
    /* magit-branch-remote */
    color: #2d9574;
    background-color: #293235;
    font-weight: bold;
}
.org-magit-branch-remote-head {
    /* magit-branch-remote-head */
    color: #2d9574;
    background-color: #293235;
    font-weight: bold;
}
.org-magit-branch-upstream {
    /* magit-branch-upstream */
    font-style: italic;
}
.org-magit-cherry-equivalent {
    /* magit-cherry-equivalent */
    color: #ff00ff;
}
.org-magit-cherry-unmatched {
    /* magit-cherry-unmatched */
    color: #00ffff;
}
.org-magit-diff-added {
    /* magit-diff-added */
    color: #ddffdd;
    background-color: #335533;
}
.org-magit-diff-added-highlight {
    /* magit-diff-added-highlight */
    color: #cceecc;
    background-color: #336633;
}
.org-magit-diff-base {
    /* magit-diff-base */
    color: #ffffcc;
    background-color: #555522;
}
.org-magit-diff-base-highlight {
    /* magit-diff-base-highlight */
    color: #eeeebb;
    background-color: #666622;
}
.org-magit-diff-conflict-heading {
    /* magit-diff-conflict-heading */
    color: #9a9aba;
    background-color: #34323e;
}
.org-magit-diff-context {
    /* magit-diff-context */
    color: #b3b3b3;
}
.org-magit-diff-context-highlight {
    /* magit-diff-context-highlight */
    color: #d0d0d0;
    background-color: #000000;
}
.org-magit-diff-file-heading {
    /* magit-diff-file-heading */
    font-weight: bold;
}
.org-magit-diff-file-heading-selection {
    /* magit-diff-file-heading-selection */
    color: #cd8162;
    background-color: #000000;
}
.org-magit-diff-hunk-heading {
    /* magit-diff-hunk-heading */
    color: #9a9aba;
    background-color: #34323e;
}
.org-magit-diff-hunk-heading-highlight {
    /* magit-diff-hunk-heading-highlight */
    color: #d0d0d0;
    background-color: #5e5079;
}
.org-magit-diff-hunk-heading-selection {
    /* magit-diff-hunk-heading-selection */
    color: #cd8162;
    background-color: #5e5079;
}
.org-magit-diff-hunk-region {
    /* magit-diff-hunk-region */
    font-weight: bold;
}
.org-magit-diff-lines-boundary {
    /* magit-diff-lines-boundary */
    color: #cccccc;
    background-color: #8b4c39;
}
.org-magit-diff-lines-heading {
    /* magit-diff-lines-heading */
    color: #cccccc;
    background-color: #8b4c39;
}
.org-magit-diff-our {
    /* magit-diff-our */
    color: #ffdddd;
    background-color: #553333;
}
.org-magit-diff-our-highlight {
    /* magit-diff-our-highlight */
    color: #eecccc;
    background-color: #663333;
}
.org-magit-diff-removed {
    /* magit-diff-removed */
    color: #ffdddd;
    background-color: #553333;
}
.org-magit-diff-removed-highlight {
    /* magit-diff-removed-highlight */
    color: #eecccc;
    background-color: #663333;
}
.org-magit-diff-their {
    /* magit-diff-their */
    color: #ddffdd;
    background-color: #335533;
}
.org-magit-diff-their-highlight {
    /* magit-diff-their-highlight */
    color: #cceecc;
    background-color: #336633;
}
.org-magit-diff-whitespace-warning {
    /* magit-diff-whitespace-warning */
    background-color: #606060;
}
.org-magit-diffstat-added {
    /* magit-diffstat-added */
    color: #448844;
}
.org-magit-diffstat-removed {
    /* magit-diffstat-removed */
    color: #aa4444;
}
.org-magit-dimmed {
    /* magit-dimmed */
    color: #7f7f7f;
}
.org-magit-filename {
}
.org-magit-hash {
    /* magit-hash */
    color: #7590db;
}
.org-magit-head {
    /* magit-head */
    color: #4f97d7;
    background-color: #293239;
    font-weight: bold;
}
.org-magit-header-line {
    /* magit-header-line */
    color: #4f97d7;
    font-weight: bold;
}
.org-magit-header-line-key {
    /* magit-header-line-key */
    color: #4f97d7;
}
.org-magit-header-line-log-select {
    /* magit-header-line-log-select */
    font-weight: bold;
}
.org-magit-keyword {
    /* magit-keyword */
    color: #2d9574;
}
.org-magit-keyword-squash {
    /* magit-keyword-squash */
    color: #dc752f;
    background-color: #121212;
}
.org-magit-log-author {
    /* magit-log-author */
    color: #bc6ec5;
}
.org-magit-log-date {
    /* magit-log-date */
    color: #cccccc;
}
.org-magit-log-graph {
    /* magit-log-graph */
    color: #cccccc;
}
.org-magit-mode-line-process {
    /* magit-mode-line-process */
    font-weight: bold;
}
.org-magit-mode-line-process-error {
    /* magit-mode-line-process-error */
    color: #e0211d;
}
.org-magit-popup-argument {
    /* magit-popup-argument */
    color: #dc752f;
    background-color: #121212;
}
.org-magit-popup-disabled-argument {
    /* magit-popup-disabled-argument */
    color: #686868;
}
.org-magit-popup-heading {
    /* magit-popup-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-magit-popup-key {
    /* magit-popup-key */
    color: #4f97d7;
}
.org-magit-popup-option-value {
    /* magit-popup-option-value */
    color: #2d9574;
}
.org-magit-process-ng {
    /* magit-process-ng */
    color: #dc752f;
    font-weight: bold;
}
.org-magit-process-ok {
    /* magit-process-ok */
    color: #bc6ec5;
    font-weight: bold;
}
.org-magit-reflog-amend {
    /* magit-reflog-amend */
    color: #a31db1;
}
.org-magit-reflog-checkout {
    /* magit-reflog-checkout */
    color: #4f97d7;
}
.org-magit-reflog-cherry-pick {
    /* magit-reflog-cherry-pick */
    color: #67b11d;
}
.org-magit-reflog-commit {
    /* magit-reflog-commit */
    color: #67b11d;
}
.org-magit-reflog-merge {
    /* magit-reflog-merge */
    color: #67b11d;
}
.org-magit-reflog-other {
    /* magit-reflog-other */
    color: #28def0;
}
.org-magit-reflog-rebase {
    /* magit-reflog-rebase */
    color: #a31db1;
}
.org-magit-reflog-remote {
    /* magit-reflog-remote */
    color: #28def0;
}
.org-magit-reflog-reset {
    /* magit-reflog-reset */
    color: #f2241f;
}
.org-magit-refname {
    /* magit-refname */
    color: #cccccc;
}
.org-magit-refname-pullreq {
    /* magit-refname-pullreq */
    color: #cccccc;
}
.org-magit-refname-stash {
    /* magit-refname-stash */
    color: #cccccc;
}
.org-magit-refname-wip {
    /* magit-refname-wip */
    color: #cccccc;
}
.org-magit-section-heading {
    /* magit-section-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-magit-section-heading-selection {
    /* magit-section-heading-selection */
    color: #cd8162;
}
.org-magit-section-highlight {
    /* magit-section-highlight */
    background-color: #000000;
}
.org-magit-section-secondary-heading {
    /* magit-section-secondary-heading */
    font-weight: bold;
}
.org-magit-sequence-done {
    /* magit-sequence-done */
    color: #7590db;
}
.org-magit-sequence-drop {
    /* magit-sequence-drop */
    color: #cd5c5c;
}
.org-magit-sequence-exec {
    /* magit-sequence-exec */
    color: #7590db;
}
.org-magit-sequence-head {
    /* magit-sequence-head */
    color: #b0e2ff;
}
.org-magit-sequence-onto {
    /* magit-sequence-onto */
    color: #7590db;
}
.org-magit-sequence-part {
    /* magit-sequence-part */
    color: #eedc82;
}
.org-magit-sequence-pick {
    /* magit-sequence-pick */
    color: #d0d0d0;
    background-color: #121212;
}
.org-magit-sequence-stop {
    /* magit-sequence-stop */
    color: #b4eeb4;
}
.org-magit-signature-bad {
    /* magit-signature-bad */
    color: #ff0000;
    font-weight: bold;
}
.org-magit-signature-error {
    /* magit-signature-error */
    color: #cd2626;
}
.org-magit-signature-expired {
    /* magit-signature-expired */
    color: #ffa500;
}
.org-magit-signature-expired-key {
    /* magit-signature-expired-key */
    color: #ffa500;
}
.org-magit-signature-good {
    /* magit-signature-good */
    color: #00ff00;
}
.org-magit-signature-revoked {
    /* magit-signature-revoked */
    color: #d02090;
}
.org-magit-signature-untrusted {
    /* magit-signature-untrusted */
    color: #00ffff;
}
.org-magit-tag {
    /* magit-tag */
    color: #eedc82;
}
.org-match {
    /* match */
    color: #86dc2f;
    background-color: #444155;
}
.org-menu {
}
.org-message-cited-text {
    /* message-cited-text */
    color: #ffaeb9;
}
.org-message-header-cc {
    /* message-header-cc */
    color: #7fff00;
    font-weight: bold;
}
.org-message-header-name {
    /* message-header-name */
    color: #00ff00;
}
.org-message-header-newsgroups {
    /* message-header-newsgroups */
    color: #ffff00;
    font-weight: bold;
    font-style: italic;
}
.org-message-header-other {
    /* message-header-other */
    color: #ff3e96;
}
.org-message-header-subject {
    /* message-header-subject */
    color: #c0ff3e;
}
.org-message-header-to {
    /* message-header-to */
    color: #caff70;
    font-weight: bold;
}
.org-message-header-xheader {
    /* message-header-xheader */
    color: #00bfff;
}
.org-message-mml {
    /* message-mml */
    color: #00fa9a;
}
.org-message-separator {
    /* message-separator */
    color: #b0e2ff;
}
.org-minibuffer-prompt {
    /* minibuffer-prompt */
    color: #4f97d7;
    font-weight: bold;
}
.org-mm-command-output {
    /* mm-command-output */
    color: #228b22;
}
.org-mode-line {
    /* mode-line */
    color: #d0d0d0;
    background-color: #121212;
}
.org-mode-line-buffer-id {
    /* mode-line-buffer-id */
    color: #bc6ec5;
    font-weight: bold;
}
.org-mode-line-buffer-id-inactive {
    /* mode-line-buffer-id-inactive */
    color: #bc6ec5;
    font-weight: bold;
}
.org-mode-line-emphasis {
    /* mode-line-emphasis */
    font-weight: bold;
}
.org-mode-line-highlight {
}
.org-mode-line-inactive {
    /* mode-line-inactive */
    color: #d0d0d0;
    background-color: #121212;
}
.org-mouse {
}
.org-mouse-drag-and-drop-region {
    /* mouse-drag-and-drop-region */
    background-color: #444155;
}
.org-negation-char {
    /* font-lock-negation-char-face */
    color: #a45bad;
}
.org-next-error {
    /* next-error */
    background-color: #444155;
}
.org-nobreak-hyphen {
    /* nobreak-hyphen */
    color: #00ffff;
}
.org-nobreak-space {
    /* nobreak-space */
    color: #00ffff;
    text-decoration: underline;
}
.org-org-agenda-calendar-event {
    /* org-agenda-calendar-event */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-calendar-sexp {
    /* org-agenda-calendar-sexp */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-clocking {
    /* org-agenda-clocking */
    color: #c56ec3;
    background-color: #444155;
}
.org-org-agenda-column-dateline {
    /* org-agenda-column-dateline */
    background-color: #444155;
}
.org-org-agenda-current-time {
    /* org-agenda-current-time */
    color: #2d9574;
}
.org-org-agenda-date {
    /* org-agenda-date */
    color: #7590db;
}
.org-org-agenda-date-today {
    /* org-agenda-date-today */
    color: #4f97d7;
    font-weight: bold;
}
.org-org-agenda-date-weekend {
    /* org-agenda-date-weekend */
    color: #7590db;
    font-weight: bold;
}
.org-org-agenda-diary {
    /* org-agenda-diary */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-dimmed-todo {
    /* org-agenda-dimmed-todo-face */
    color: #7f7f7f;
}
.org-org-agenda-done {
    /* org-agenda-done */
    color: #86dc2f;
}
.org-org-agenda-filter-category {
    /* org-agenda-filter-category */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-filter-effort {
    /* org-agenda-filter-effort */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-filter-regexp {
    /* org-agenda-filter-regexp */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-filter-tags {
    /* org-agenda-filter-tags */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-restriction-lock {
    /* org-agenda-restriction-lock */
    background-color: #1C1C1C;
}
.org-org-agenda-structure {
    /* org-agenda-structure */
    color: #c56ec3;
    font-weight: bold;
}
.org-org-archived {
    /* org-archived */
    color: #686868;
}
.org-org-block {
    /* org-block */
    color: #cbc1d5;
    background-color: #121212;
}
.org-org-block-begin-line {
    /* org-block-begin-line */
    color: #3a3a3a;
    background-color: #080808;
}
.org-org-block-end-line {
    /* org-block-end-line */
    color: #3a3a3a;
    background-color: #080808;
}
.org-org-checkbox {
    /* org-checkbox */
    font-weight: bold;
}
.org-org-checkbox-statistics-done {
    /* org-checkbox-statistics-done */
    color: #86dc2f;
    background-color: #293235;
    font-weight: bold;
}
.org-org-checkbox-statistics-todo {
    /* org-checkbox-statistics-todo */
    color: #dc752f;
    background-color: #32322c;
    font-weight: bold;
}
.org-org-clock-overlay {
    /* org-clock-overlay */
    color: #c56ec3;
}
.org-org-code {
    /* org-code */
    color: #28def0;
}
.org-org-column {
    /* org-column */
    background-color: #444155;
}
.org-org-column-title {
    /* org-column-title */
    background-color: #444155;
}
.org-org-date {
    /* org-date */
    color: #7590db;
    text-decoration: underline;
}
.org-org-date-selected {
    /* org-date-selected */
    color: #121212;
    background-color: #bc6ec5;
}
.org-org-default {
    /* org-default */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-document-info {
    /* org-document-info */
    color: #afeeee;
}
.org-org-document-info-keyword {
    /* org-document-info-keyword */
    color: #3a3a3a;
}
.org-org-document-title {
    /* org-document-title */
    color: #bc6ec5;
    font-size: 140%;
    font-weight: bold;
    text-decoration: underline;
}
.org-org-done {
    /* org-done */
    color: #86dc2f;
    background-color: #293235;
    font-weight: bold;
}
.org-org-drawer {
    /* org-drawer */
    color: #87cefa;
}
.org-org-ellipsis {
    /* org-ellipsis */
    color: #4f97d7;
}
.org-org-footnote {
    /* org-footnote */
    color: #d0d0d0;
    text-decoration: underline;
}
.org-org-formula {
    /* org-formula */
    color: #ff7f24;
}
.org-org-headline-done {
    /* org-headline-done */
    color: #ffa07a;
}
.org-org-hide {
    /* org-hide */
    color: #121212;
}
.org-org-kbd {
    /* org-kbd */
    color: #d0d0d0;
    background-color: #444155;
}
.org-org-latex-and-related {
    /* org-latex-and-related */
    color: #deb887;
}
.org-org-level-1 {
    /* org-level-1 */
    color: #4f97d7;
    font-size: 130%;
    font-weight: bold;
}
.org-org-level-2 {
    /* org-level-2 */
    color: #2d9574;
    font-size: 120%;
    font-weight: bold;
}
.org-org-level-3 {
    /* org-level-3 */
    color: #67b11d;
    font-size: 110%;
}
.org-org-level-4 {
    /* org-level-4 */
    color: #b1951d;
}
.org-org-level-5 {
    /* org-level-5 */
    color: #4f97d7;
}
.org-org-level-6 {
    /* org-level-6 */
    color: #2d9574;
}
.org-org-level-7 {
    /* org-level-7 */
    color: #67b11d;
}
.org-org-level-8 {
    /* org-level-8 */
    color: #b1951d;
}
.org-org-link {
    /* org-link */
    color: #606060;
    text-decoration: underline;
}
.org-org-list-dt {
    /* org-list-dt */
    font-weight: bold;
}
.org-org-macro {
    /* org-macro */
    color: #deb887;
}
.org-org-meta-line {
    /* org-meta-line */
    color: #3a3a3a;
}
.org-org-mode-line-clock {
    /* org-mode-line-clock */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-mode-line-clock-overrun {
    /* org-mode-line-clock-overrun */
    color: #e0211d;
}
.org-org-priority {
    /* org-priority */
    color: #dc752f;
    font-weight: bold;
}
.org-org-property-value {
}
.org-org-quote {
    /* org-quote */
    color: #cbc1d5;
    background-color: #121212;
    font-style: italic;
}
.org-org-scheduled {
    /* org-scheduled */
    color: #c56ec3;
}
.org-org-scheduled-previously {
    /* org-scheduled-previously */
    color: #d0d0d0;
    font-style: italic;
}
.org-org-scheduled-today {
    /* org-scheduled-today */
    color: #bc6ec5;
}
.org-org-sexp-date {
    /* org-sexp-date */
    color: #d0d0d0;
}
.org-org-special-keyword {
    /* org-special-keyword */
    color: #bc6ec5;
}
.org-org-table {
    /* org-table */
    color: #d0d0d0;
    background-color: #000000;
}
.org-org-tag {
    /* org-tag */
    color: #3a3a3a;
}
.org-org-tag-group {
    /* org-tag-group */
    color: #3a3a3a;
}
.org-org-target {
    /* org-target */
    text-decoration: underline;
}
.org-org-time-grid {
    /* org-time-grid */
    color: #2d9574;
}
.org-org-todo {
    /* org-todo */
    color: #dc752f;
    background-color: #32322c;
    font-weight: bold;
}
.org-org-upcoming-deadline {
    /* org-upcoming-deadline */
    color: #dc752f;
    font-weight: bold;
}
.org-org-upcoming-distant-deadline {
    /* org-upcoming-distant-deadline */
    color: #86dc2f;
    font-weight: bold;
}
.org-org-verbatim {
    /* org-verbatim */
    color: #4f97d7;
}
.org-org-verse {
    /* org-verse */
    color: #cbc1d5;
    background-color: #121212;
    font-style: italic;
}
.org-org-warning {
    /* org-warning */
    color: #e0211d;
    font-weight: bold;
}
.org-outline-1 {
    /* outline-1 */
    color: #4f97d7;
    font-size: 130%;
    font-weight: bold;
}
.org-outline-2 {
    /* outline-2 */
    color: #2d9574;
    font-size: 120%;
    font-weight: bold;
}
.org-outline-3 {
    /* outline-3 */
    color: #67b11d;
    font-size: 110%;
}
.org-outline-4 {
    /* outline-4 */
    color: #b1951d;
}
.org-outline-5 {
    /* outline-5 */
    color: #4f97d7;
}
.org-outline-6 {
    /* outline-6 */
    color: #2d9574;
}
.org-outline-7 {
    /* outline-7 */
    color: #67b11d;
}
.org-outline-8 {
    /* outline-8 */
    color: #b1951d;
}
.org-package-description {
    /* package-description */
    color: #d0d0d0;
    background-color: #121212;
}
.org-package-name {
    /* package-name */
    color: #606060;
    text-decoration: underline;
}
.org-package-status-avail-obso {
    /* package-status-avail-obso */
    color: #e0211d;
}
.org-package-status-available {
    /* package-status-available */
    color: #d0d0d0;
    background-color: #121212;
}
.org-package-status-built-in {
    /* package-status-built-in */
    color: #4f97d7;
}
.org-package-status-dependency {
    /* package-status-dependency */
    color: #606060;
}
.org-package-status-disabled {
    /* package-status-disabled */
    color: #dc752f;
    background-color: #121212;
}
.org-package-status-external {
    /* package-status-external */
    color: #4f97d7;
}
.org-package-status-held {
    /* package-status-held */
    color: #a45bad;
}
.org-package-status-incompat {
    /* package-status-incompat */
    color: #e0211d;
}
.org-package-status-installed {
    /* package-status-installed */
    color: #606060;
}
.org-package-status-unsigned {
    /* package-status-unsigned */
    color: #dc752f;
    background-color: #121212;
}
.org-page-break-lines {
    /* page-break-lines */
    color: #262626;
}
.org-persp-face-lighter-buffer-not-in-persp {
    /* persp-face-lighter-buffer-not-in-persp */
    color: #00F;
    background-color: #F00;
    font-weight: bold;
}
.org-persp-face-lighter-default {
    /* persp-face-lighter-default */
    font-style: italic;
}
.org-persp-face-lighter-nil-persp {
    /* persp-face-lighter-nil-persp */
    font-weight: bold;
    font-style: italic;
}
.org-powerline-active0 {
    /* powerline-active0 */
    color: #d0d0d0;
    background-color: #121212;
}
.org-powerline-active1 {
    /* powerline-active1 */
    color: #d0d0d0;
    background-color: #262626;
}
.org-powerline-active2 {
    /* powerline-active2 */
    color: #d0d0d0;
    background-color: #262626;
}
.org-powerline-inactive0 {
    /* powerline-inactive0 */
    color: #d0d0d0;
    background-color: #121212;
}
.org-powerline-inactive1 {
    /* powerline-inactive1 */
    color: #d0d0d0;
    background-color: #000000;
}
.org-powerline-inactive2 {
    /* powerline-inactive2 */
    color: #d0d0d0;
    background-color: #000000;
}
.org-preprocessor {
    /* font-lock-preprocessor-face */
    color: #bc6ec5;
}
.org-query-replace {
    /* query-replace */
    color: #121212;
    background-color: #86dc2f;
}
.org-rainbow-delimiters-base {
}
.org-rainbow-delimiters-depth-1 {
    /* rainbow-delimiters-depth-1-face */
    color: #4f97d7;
}
.org-rainbow-delimiters-depth-2 {
    /* rainbow-delimiters-depth-2-face */
    color: #bc6ec5;
}
.org-rainbow-delimiters-depth-3 {
    /* rainbow-delimiters-depth-3-face */
    color: #2d9574;
}
.org-rainbow-delimiters-depth-4 {
    /* rainbow-delimiters-depth-4-face */
    color: #67b11d;
}
.org-rainbow-delimiters-depth-5 {
    /* rainbow-delimiters-depth-5-face */
    color: #b1951d;
}
.org-rainbow-delimiters-depth-6 {
    /* rainbow-delimiters-depth-6-face */
    color: #4f97d7;
}
.org-rainbow-delimiters-depth-7 {
    /* rainbow-delimiters-depth-7-face */
    color: #bc6ec5;
}
.org-rainbow-delimiters-depth-8 {
    /* rainbow-delimiters-depth-8-face */
    color: #2d9574;
}
.org-rainbow-delimiters-depth-9 {
    /* rainbow-delimiters-depth-9-face */
    color: #9cb6ad;
}
.org-rainbow-delimiters-mismatched {
    /* rainbow-delimiters-mismatched-face */
    color: #e0211d;
    text-decoration: overline;
}
.org-rainbow-delimiters-unmatched {
    /* rainbow-delimiters-unmatched-face */
    color: #e0211d;
    text-decoration: overline;
}
.org-read-multiple-choice {
    /* read-multiple-choice-face */
    font-weight: bold;
    text-decoration: underline;
}
.org-rectangle-preview {
    /* rectangle-preview */
    background-color: #444155;
}
.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: #444155;
}
.org-rmail-header-name {
    /* rmail-header-name */
    color: #bc6ec5;
    font-weight: bold;
}
.org-rmail-highlight {
    /* rmail-highlight */
    color: #d0d0d0;
    background-color: #444155;
}
.org-scroll-bar {
}
.org-secondary-selection {
    /* secondary-selection */
    background-color: #100a14;
}
.org-sgml-namespace {
    /* sgml-namespace */
    color: #4f97d7;
}
.org-shadow {
    /* shadow */
    color: #686868;
}
.org-show-paren-match {
    /* show-paren-match */
    color: #86dc2f;
    font-weight: bold;
    text-decoration: underline;
}
.org-show-paren-match-expression {
    /* show-paren-match-expression */
    background-color: #29422d;
}
.org-show-paren-mismatch {
    /* show-paren-mismatch */
    color: #e0211d;
    font-weight: bold;
    text-decoration: underline;
}
.org-sldb-catch-tag {
    /* sldb-catch-tag-face */
    color: #d0d0d0;
    background-color: #444155;
}
.org-sldb-condition {
    /* sldb-condition-face */
    color: #dc752f;
    background-color: #121212;
}
.org-sldb-detailed-frame-line {
}
.org-sldb-frame-label {
    /* sldb-frame-label-face */
    color: #686868;
}
.org-sldb-frame-line {
}
.org-sldb-local-name {
    /* sldb-local-name-face */
    color: #7590db;
}
.org-sldb-local-value {
}
.org-sldb-non-restartable-frame-line {
}
.org-sldb-reference {
    /* sldb-reference-face */
    text-decoration: underline;
}
.org-sldb-restart {
}
.org-sldb-restart-number {
    /* sldb-restart-number-face */
    font-weight: bold;
}
.org-sldb-restart-type {
    /* sldb-restart-type-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-sldb-restartable-frame-line {
    /* sldb-restartable-frame-line-face */
    color: #32cd32;
}
.org-sldb-section {
    /* sldb-section-face */
    background-color: #0a0814;
}
.org-sldb-topline {
}
.org-slime-apropos-label {
    /* slime-apropos-label */
    font-style: italic;
}
.org-slime-apropos-symbol {
    /* slime-apropos-symbol */
    font-weight: bold;
}
.org-slime-early-deprecation-warning {
    /* slime-early-deprecation-warning-face */
    text-decoration: line-through;
}
.org-slime-error {
    /* slime-error-face */
    text-decoration: underline;
}
.org-slime-final-deprecation-warning {
    /* slime-final-deprecation-warning-face */
    text-decoration: line-through;
}
.org-slime-highlight {
    /* slime-highlight-face */
    color: #d0d0d0;
    background-color: #444155;
}
.org-slime-inspector-action {
    /* slime-inspector-action-face */
    color: #dc752f;
    background-color: #121212;
}
.org-slime-inspector-label {
    /* slime-inspector-label-face */
    color: #a45bad;
}
.org-slime-inspector-topline {
}
.org-slime-inspector-type {
    /* slime-inspector-type-face */
    color: #ce537a;
    font-weight: bold;
}
.org-slime-inspector-value {
    /* slime-inspector-value-face */
    color: #4f97d7;
}
.org-slime-late-deprecation-warning {
    /* slime-late-deprecation-warning-face */
    text-decoration: line-through;
}
.org-slime-note {
    /* slime-note-face */
    text-decoration: underline;
}
.org-slime-reader-conditional {
    /* slime-reader-conditional-face */
    color: #606060;
}
.org-slime-repl-input {
    /* slime-repl-input-face */
    font-weight: bold;
}
.org-slime-repl-inputed-output {
    /* slime-repl-inputed-output-face */
    color: #c56ec3;
}
.org-slime-repl-output {
    /* slime-repl-output-face */
    color: #2d9574;
}
.org-slime-repl-output-mouseover {
    /* slime-repl-output-mouseover-face */
    color: #c56ec3;
}
.org-slime-repl-prompt {
    /* slime-repl-prompt-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-slime-repl-result {
}
.org-slime-style-warning {
    /* slime-style-warning-face */
    text-decoration: underline;
}
.org-slime-warning {
    /* slime-warning-face */
    text-decoration: underline;
}
.org-sly-action {
    /* sly-action-face */
    color: #dc752f;
}
.org-sly-apropos-label {
    /* sly-apropos-label */
    font-style: italic;
}
.org-sly-apropos-symbol {
    /* sly-apropos-symbol */
    color: #a45bad;
}
.org-sly-db-catch-tag {
}
.org-sly-db-condition {
    /* sly-db-condition-face */
    color: #e0211d;
}
.org-sly-db-frame-label {
    /* sly-db-frame-label-face */
    color: #686868;
}
.org-sly-db-frame-line {
}
.org-sly-db-local-name {
}
.org-sly-db-non-restartable-frame-line {
}
.org-sly-db-restart {
}
.org-sly-db-restart-number {
    /* sly-db-restart-number-face */
    color: #686868;
}
.org-sly-db-restartable-frame-line {
    /* sly-db-restartable-frame-line-face */
    color: #a45bad;
}
.org-sly-db-section {
    /* sly-db-section-face */
    background-color: #0a0814;
}
.org-sly-db-topline {
}
.org-sly-error {
    /* sly-error-face */
    text-decoration: underline;
}
.org-sly-mode-line {
    /* sly-mode-line */
    color: #a45bad;
    font-weight: bold;
}
.org-sly-mrepl-note {
    /* sly-mrepl-note-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-sly-mrepl-output {
    /* sly-mrepl-output-face */
    color: #ff3e96;
}
.org-sly-mrepl-prompt {
    /* sly-mrepl-prompt-face */
    color: #4f97d7;
}
.org-sly-note {
    /* sly-note-face */
    text-decoration: underline;
}
.org-sly-part-button {
    /* sly-part-button-face */
    color: #a45bad;
}
.org-sly-reader-conditional {
    /* sly-reader-conditional-face */
    color: #606060;
}
.org-sly-stickers-armed {
    /* sly-stickers-armed-face */
    color: #000000;
    background-color: #add8e6;
}
.org-sly-stickers-empty {
    /* sly-stickers-empty-face */
    color: #000000;
    background-color: #ffc0cb;
}
.org-sly-stickers-exited-non-locally {
    /* sly-stickers-exited-non-locally-face */
    color: #000000;
    background-color: #ffc0cb;
    text-decoration: line-through;
}
.org-sly-stickers-placed {
    /* sly-stickers-placed-face */
    color: #000000;
    background-color: #d3d3d3;
}
.org-sly-stickers-recordings {
    /* sly-stickers-recordings-face */
    color: #67b11d;
    background-color: #293235;
}
.org-sly-style-warning {
    /* sly-style-warning-face */
    text-decoration: underline;
}
.org-sly-warning {
    /* sly-warning-face */
    text-decoration: underline;
}
.org-smerge-base {
    /* smerge-base */
    background-color: #32322c;
}
.org-smerge-lower {
    /* smerge-lower */
    background-color: #293235;
}
.org-smerge-markers {
    /* smerge-markers */
    color: #9a9aba;
    background-color: #34323e;
}
.org-smerge-refined-added {
    /* smerge-refined-added */
    color: #67b11d;
    background-color: #29422d;
}
.org-smerge-refined-changed {
    /* smerge-refined-changed */
    color: #4f97d7;
    background-color: #2d4252;
}
.org-smerge-refined-removed {
    /* smerge-refined-removed */
    color: #f2241f;
    background-color: #512e31;
}
.org-smerge-upper {
    /* smerge-upper */
    background-color: #3c2a2c;
}
.org-sp-pair-overlay {
    /* sp-pair-overlay-face */
    background-color: #29422d;
}
.org-sp-show-pair-enclosing {
    /* sp-show-pair-enclosing */
    color: #d0d0d0;
    background-color: #444155;
}
.org-sp-show-pair-match {
    /* sp-show-pair-match-face */
    color: #86dc2f;
    font-weight: bold;
    text-decoration: underline;
}
.org-sp-show-pair-match-content {
}
.org-sp-show-pair-mismatch {
    /* sp-show-pair-mismatch-face */
    color: #e0211d;
    font-weight: bold;
    text-decoration: underline;
}
.org-sp-wrap-overlay {
    /* sp-wrap-overlay-face */
    background-color: #29422d;
}
.org-sp-wrap-overlay-closing-pair {
    /* sp-wrap-overlay-closing-pair */
    color: #ff0000;
    background-color: #29422d;
}
.org-sp-wrap-overlay-opening-pair {
    /* sp-wrap-overlay-opening-pair */
    color: #00ff00;
    background-color: #29422d;
}
.org-sp-wrap-tag-overlay {
    /* sp-wrap-tag-overlay-face */
    background-color: #29422d;
}
.org-spaceline-all-the-icons-info {
    /* spaceline-all-the-icons-info-face */
    color: #63B2FF;
}
.org-spaceline-all-the-icons-sunrise {
    /* spaceline-all-the-icons-sunrise-face */
    color: #f6c175;
    background-color: #262626;
}
.org-spaceline-all-the-icons-sunset {
    /* spaceline-all-the-icons-sunset-face */
    color: #fe7714;
    background-color: #262626;
}
.org-spaceline-flycheck-error {
    /* spaceline-flycheck-error */
    color: #e0211d;
}
.org-spaceline-flycheck-info {
    /* spaceline-flycheck-info */
    color: #4f97d7;
}
.org-spaceline-flycheck-warning {
    /* spaceline-flycheck-warning */
    color: #dc752f;
}
.org-spaceline-python-venv {
    /* spaceline-python-venv */
    color: #c56ec3;
}
.org-spacemacs-helm-navigation-ts {
    /* spacemacs-helm-navigation-ts-face */
    color: #000000;
}
.org-spacemacs-ido-navigation-ts {
    /* spacemacs-ido-navigation-ts-face */
    color: #000000;
    font-weight: bold;
}
.org-spacemacs-micro-state-binding {
    /* spacemacs-micro-state-binding-face */
    color: #e0211d;
    font-weight: bold;
}
.org-spacemacs-micro-state-header {
    /* spacemacs-micro-state-header-face */
    color: #000000;
    background-color: #eead0e;
    font-weight: bold;
}
.org-spacemacs-mode-line-new-version-lighter-error {
    /* spacemacs-mode-line-new-version-lighter-error-face */
    color: #e0211d;
}
.org-spacemacs-mode-line-new-version-lighter-success {
    /* spacemacs-mode-line-new-version-lighter-success-face */
    color: #86dc2f;
}
.org-spacemacs-mode-line-new-version-lighter-warning {
    /* spacemacs-mode-line-new-version-lighter-warning-face */
    color: #dc752f;
}
.org-spacemacs-transient-state-title {
    /* spacemacs-transient-state-title-face */
    color: #c56ec3;
    font-weight: bold;
}
.org-string {
    /* font-lock-string-face */
    color: #2d9574;
}
.org-success {
    /* success */
    color: #86dc2f;
}
.org-symbol-overlay-default {
    /* symbol-overlay-default-face */
    color: #d0d0d0;
    background-color: #444155;
}
.org-symbol-overlay-face-1 {
    /* symbol-overlay-face-1 */
    color: #000000;
    background-color: #1e90ff;
}
.org-symbol-overlay-face-2 {
    /* symbol-overlay-face-2 */
    color: #000000;
    background-color: #ff69b4;
}
.org-symbol-overlay-face-3 {
    /* symbol-overlay-face-3 */
    color: #000000;
    background-color: #ffff00;
}
.org-symbol-overlay-face-4 {
    /* symbol-overlay-face-4 */
    color: #000000;
    background-color: #da70d6;
}
.org-symbol-overlay-face-5 {
    /* symbol-overlay-face-5 */
    color: #000000;
    background-color: #ff0000;
}
.org-symbol-overlay-face-6 {
    /* symbol-overlay-face-6 */
    color: #000000;
    background-color: #fa8072;
}
.org-symbol-overlay-face-7 {
    /* symbol-overlay-face-7 */
    color: #000000;
    background-color: #00ff7f;
}
.org-symbol-overlay-face-8 {
    /* symbol-overlay-face-8 */
    color: #000000;
    background-color: #40e0d0;
}
.org-table-cell {
    /* table-cell */
    color: #e5e5e5;
    background-color: #0000ff;
}
.org-tool-bar {
    /* tool-bar */
    color: #000000;
    background-color: #bfbfbf;
}
.org-tooltip {
    /* tooltip */
    color: #d0d0d0;
    background-color: #5e5079;
}
.org-trailing-whitespace {
    /* trailing-whitespace */
    background-color: #606060;
}
.org-transient-active-infix {
    /* transient-active-infix */
    background-color: #100a14;
}
.org-transient-argument {
    /* transient-argument */
    color: #dc752f;
    background-color: #121212;
}
.org-transient-disabled-suffix {
    /* transient-disabled-suffix */
    color: #000000;
    background-color: #ff0000;
    font-weight: bold;
}
.org-transient-enabled-suffix {
    /* transient-enabled-suffix */
    color: #000000;
    background-color: #00ff00;
    font-weight: bold;
}
.org-transient-heading {
    /* transient-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-transient-inactive-argument {
    /* transient-inactive-argument */
    color: #686868;
}
.org-transient-inactive-value {
    /* transient-inactive-value */
    color: #686868;
}
.org-transient-key {
    /* transient-key */
    color: #4f97d7;
}
.org-transient-mismatched-key {
    /* transient-mismatched-key */
    text-decoration: underline;
}
.org-transient-nonstandard-key {
    /* transient-nonstandard-key */
    text-decoration: underline;
}
.org-transient-separator {
    /* transient-separator */
    background-color: #4d4d4d;
}
.org-transient-unreachable {
    /* transient-unreachable */
    color: #686868;
}
.org-transient-unreachable-key {
    /* transient-unreachable-key */
    color: #686868;
}
.org-transient-value {
    /* transient-value */
    color: #2d9574;
}
.org-tty-menu-disabled {
    /* tty-menu-disabled-face */
    color: #d3d3d3;
    background-color: #0000ff;
}
.org-tty-menu-enabled {
    /* tty-menu-enabled-face */
    color: #ffff00;
    background-color: #0000ff;
    font-weight: bold;
}
.org-tty-menu-selected {
    /* tty-menu-selected-face */
    background-color: #ff0000;
}
.org-type {
    /* font-lock-type-face */
    color: #ce537a;
    font-weight: bold;
}
.org-underline {
    /* underline */
    text-decoration: underline;
}
.org-undo-tree-visualizer-active-branch {
    /* undo-tree-visualizer-active-branch-face */
    color: #ffffff;
    font-weight: bold;
}
.org-undo-tree-visualizer-current {
    /* undo-tree-visualizer-current-face */
    color: #4f97d7;
}
.org-undo-tree-visualizer-default {
    /* undo-tree-visualizer-default-face */
    color: #d0d0d0;
}
.org-undo-tree-visualizer-register {
    /* undo-tree-visualizer-register-face */
    color: #c56ec3;
}
.org-undo-tree-visualizer-unmodified {
    /* undo-tree-visualizer-unmodified-face */
    color: #7590db;
}
.org-variable-name {
    /* font-lock-variable-name-face */
    color: #7590db;
}
.org-variable-pitch {
}
.org-vc-conflict-state {
}
.org-vc-edited-state {
}
.org-vc-locally-added-state {
}
.org-vc-locked-state {
}
.org-vc-missing-state {
}
.org-vc-needs-update-state {
}
.org-vc-removed-state {
}
.org-vc-state-base {
}
.org-vc-up-to-date-state {
}
.org-vertical-border {
    /* vertical-border */
    color: #121212;
}
.org-w3m-haddock-heading {
    /* w3m-haddock-heading-face */
    color: #d0d0d0;
    background-color: #444155;
}
.org-warning {
    /* warning */
    color: #dc752f;
}
.org-warning-1 {
    /* font-lock-warning-face */
    color: #dc752f;
    background-color: #121212;
}
.org-which-func {
    /* which-func */
    color: #bc6ec5;
}
.org-which-key-command-description {
    /* which-key-command-description-face */
    color: #d0d0d0;
}
.org-which-key-docstring {
    /* which-key-docstring-face */
    color: #2d9574;
}
.org-which-key-group-description {
    /* which-key-group-description-face */
    color: #4f97d7;
}
.org-which-key-highlighted-command {
    /* which-key-highlighted-command-face */
    color: #d0d0d0;
    text-decoration: underline;
}
.org-which-key-key {
    /* which-key-key-face */
    color: #bc6ec5;
    font-weight: bold;
}
.org-which-key-local-map-description {
    /* which-key-local-map-description-face */
    color: #d0d0d0;
}
.org-which-key-note {
    /* which-key-note-face */
    color: #2d9574;
}
.org-which-key-separator {
    /* which-key-separator-face */
    color: #2d9574;
}
.org-which-key-special-key {
    /* which-key-special-key-face */
    color: #121212;
    background-color: #bc6ec5;
}
.org-widget-button {
    /* widget-button */
    font-weight: bold;
}
.org-widget-button-pressed {
    /* widget-button-pressed */
    color: #ff0000;
}
.org-widget-documentation {
    /* widget-documentation */
    color: #32cd32;
}
.org-widget-field {
    /* widget-field */
    background-color: #696969;
}
.org-widget-inactive {
    /* widget-inactive */
    color: #686868;
}
.org-widget-single-line-field {
    /* widget-single-line-field */
    background-color: #696969;
}
.org-window-divider {
    /* window-divider */
    color: #999999;
}
.org-window-divider-first-pixel {
    /* window-divider-first-pixel */
    color: #cccccc;
}
.org-window-divider-last-pixel {
    /* window-divider-last-pixel */
    color: #666666;
}
.org-winum {
}
.org-yas--field-debug {
}

/* a { */
/*     color: inherit; */
/*     background-color: inherit; */
/*     font: inherit; */
/*     text-decoration: inherit; */
/* } */
/* a:hover { */
/*     text-decoration: underline; */
/* } */

2.6. Example

.example {
    width: 55%;
    font-family: fantasque-sans-mono;
}

2.7. Navbar

2.7.1. Content Level 1

<navigation>
  <div class="nav">
    <button>☰ Menu</button>
    <ul id="links">
      <li><a class="navlink" href="./index.html">Home</a></li><li><a class="navlink" href="./writings/index.html">Writings</a></li><li ><a class="navlink" href="./notes/index.html">Notes</a></li><li ><a class="navlink" href="./projects/index.html">Projects</a></li><li ><a class="navlink" href="./misc/index.html">Misc.</a></li>

<!-- <li><a class="navlink" href="./blog/index.html">Blog</a></li> -->
    </ul>
  </div>
</navigation>

2.7.2. Content Level 2

<navigation>
  <div class="nav">
    <button>☰ Menu</button>
    <ul id="links">
      <li><a class="navlink" href="../index.html">Home</a></li><li><a class="navlink" href="../writings/index.html">Writings</a></li><li ><a class="navlink" href="../notes/index.html">Notes</a></li><li ><a class="navlink" href="../projects/index.html">Projects</a></li><li ><a class="navlink" href="../misc/index.html">Misc.</a></li>
<!-- <li><a class="navlink" href="../blog/index.html">Blog</a></li> -->
    </ul>
  </div>
</navigation>

2.7.3. Content Level 3

<navigation>
  <div class="nav">
    <button>☰ Menu</button>
    <ul id="links">
      <li><a class="navlink" href="../../index.html">Home</a></li><li><a class="navlink" href="../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../misc/index.html">Misc.</a></li>
<!-- <li><a class="navlink" href="../../blog/index.html">Blog</a></li> -->
    </ul>
  </div>
</navigation>

2.7.4. Content Level 4

<navigation>
  <div class="nav">
    <button>☰ Menu</button>
    <ul id="links">
      <li><a class="navlink" href="../../../index.html">Home</a></li><li><a class="navlink" href="../../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../../misc/index.html">Misc.</a></li>
<!-- <li><a class="navlink" href="../../../blog/index.html">Blog</a></li> -->
    </ul>
  </div>
</navigation>

2.7.5. Content Level 5

<navigation>
  <div class="nav">
    <button>☰ Menu</button>
    <ul id="links">
      <li><a class="navlink" href="../../../../index.html">Home</a></li><li><a class="navlink" href="../../../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../../../misc/index.html">Misc.</a></li>
<!-- <li><a class="navlink" href="../../../blog/index.html">Blog</a></li> -->
    </ul>
  </div>
</navigation>

2.7.6. Content Level 6

<navigation>
  <div class="nav">
    <button>☰ Menu</button>
    <ul id="links">
      <li><a class="navlink" href="../../../../../index.html">Home</a></li><li><a class="navlink" href="../../../../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../../../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../../../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../../../../misc/index.html">Misc.</a></li>
<!-- <li><a class="navlink" href="../../../blog/index.html">Blog</a></li> -->
    </ul>
  </div>
</navigation>

2.7.7. Content Level 7

<navigation>
  <div class="nav">
    <button>☰ Menu</button>
    <ul id="links">
      <li><a class="navlink" href="../../../../../../index.html">Home</a></li><li><a class="navlink" href="../../../../../../writings/index.html">Writings</a></li><li ><a class="navlink" href="../../../../../../notes/index.html">Notes</a></li><li ><a class="navlink" href="../../../../../../projects/index.html">Projects</a></li><li ><a class="navlink" href="../../../../../../misc/index.html">Misc.</a></li>
<!-- <li><a class="navlink" href="../../../blog/index.html">Blog</a></li> -->
    </ul>
  </div>
</navigation>

2.7.8. Styling

  /* List */

  @media screen and (min-width: 600px) {
      .nav ul {

          list-style: none;
          background-color: #fffff8;
          text-align: center;
          max-width: 80%;
          padding: 0;
          margin: 0 auto;
          font-weight: 200;
          font-size: 20px;
          /* display: inline-block; */
          height: 55px;
          line-height: 55px;

      }
      button {
          display: none;
      }
      input {
          display: none;
      }

      .navlink {
          text-decoration: none;
          font-family: "Fira Sans", murty-sanskrit Helvetica, sans-serif;
          font-weight: 200;
          font-size: 25px;
          text-align: center;
          /* display:block; */
          /* font: "Fira Sans UltraLight"; */
          /* display: inline-block; */
          /* width: 100px; */
          /* height: 55px; */
          /* line-height: 55px; */
      }
      /* List items */
      .nav li {

          font-family: "Fira Sans", murty-sanskrit, Helvetica, et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif;
          font-size: 1.2em;
          /* font-weight: bold; */
          font-variant: small-caps;
          text-align: center;
          line-height: 40px;
          height: 40px;
          padding: 1%;
          font-weight: 200;
          font-size: 25px;
          /* border-bottom: 1px solid #888; */
          text-decoration: none;
          display: inline-block;
          margin-right: 0 /* -4px */;
      }

      .nav a:link {
          text-decoration: none;
      }
      .nav a:hover {
          text-decoration: none;
          font-weight: 400;
          /* -webkit-box-shadow: 0 0 0.5em #777777; */
          /* -moz-box-shadow: 0 0 0.5em #777777; */
          /* -webkit-border-bottom-left-radius: 2px; */
          /* -moz-border-radius-bottomleft: 2px; */
          /* text-shadow: 0 0 0.9em #777777; */

          /* -webkit-box-shadow: 0 0 0.5em #777777; */
          /* -moz-box-shadow: 0 0 0.5em #777777; */
          /* -webkit-border-bottom-left-radius: 5px; */
          /* -moz-border-radius-bottomleft: 5px; */
          /* transition: .3s background-color; */
      }

      .nav li {
          width: 120px;
          font-family: "Fira Sans", et-book, murty-sanskrit, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif;
          border-bottom: none;
          height: 50px;
          text-decoration: none;
          font-weight: 200;
          line-height: 50px;
          font-size: 1.4em;

      }
  }

  @media screen and (max-width: 600px) {
navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #fffff8;
    align-items: center;
    box-sizing: border-box;
}
navigation .nav {
    /* height: 5vh; */
    /* width: 10vw; */
    /* width: 100%; */
    /* position: fixed; */
    top: 1vh;
    /* padding: 1vw; */
    /* right: 25vw; */
    text-align: center;
}
.nav ul {
    list-style: none;
    background-color: #fffff8;
    text-align: center;
    font-size: 20px;
    padding: 0;
    margin: 0;
}
button {
    font-size: 1.75rem;
    /* font-size: 15px; */
    font-family: "Fira Sans", murty-sanskrit, Helvetica, sans-serif;
    font-variant: small-caps;
    font-weight: 200;
    /* width: 100%; */
    border: 0;
    /* padding:; */
    background:  #fffff8;
    cursor: pointer;
    display: block;
    text-align: center;
}
button:focus {
    outline: 0;
    /* padding: 100%; */
}

#links {
    display: none;
    background-color: #fffff8;
    /* padding: 100% 100%; */
    /* font-size: 30px; */
}

button:focus + #links,
#links:hover {
    display: block;
    position: absolute;
    /* padding: 14px 40px; */
    /* padding: inherit; */
    /* padding-left: 25%; */
    /* padding-right: 25%; */
    font-size: 20px;
    /* right: 5vw; */
}
input {
    display: none;
}
.navlink {
    text-decoration: none;
    font-family: "Fira Sans", murty-sanskrit, Helvetica, sans-serif;
    font-weight: 200;
    /* font-size: 15px; */
    text-align: center;
    /* font: "Fira Sans UltraLight"; */
    display: inline-block;
    /* width: 100px; */
    /* height: 55px; */
    /* line-height: 55px; */
}

/* List items */
.nav li {
    font-family: "Fira Sans", et-book, murty-sanskrit, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif;
    font-size: 1.2em;
    font-variant: small-caps;
    font-weight: 200;
    text-decoration: none;
    line-height: 40px;
    text-align: center;
    margin: 0 auto;
    height: 40px;
}

/* nav a { */
/*     text-decoration: none; */
/*     background-color: #000000; */
/* } */

/* nav a:hover { */
/*     text-decoration: none; */
/*     background-color: #000000; */
/*     /\* -webkit-box-shadow: 0 0 0.5em #777777; *\/ */
/*     /\* -moz-box-shadow: 0 0 0.5em #777777; *\/ */
/*     /\* -webkit-border-bottom-left-radius: 5px; *\/ */
/*     /\* -moz-border-radius-bottomleft: 5px; *\/ */
/*     /\* transition: .3s background-color; *\/ */
/* } */

.nav li {
    width: 120px;
    font-family: "Fira Sans", et-book, murty-sanskrit, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif;
    font-variant: small-caps;
    font-weight: 200;
    text-decoration: none;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;

}

      /* .nav ul { */
      /*     list-style: none; */
      /*     background-color: #fffff8; */
      /*     text-align: left; */
      /*     font-size: 15px; */
      /*     padding: 0; */
      /*     margin: 0; */
      /* } */

      /* .navlink { */
      /*     text-decoration: none; */
      /*     font-family: "Fira Sans", Helvetica, sans-serif; */
      /*     font-weight: 200; */
      /*     font-size: 15px; */
      /*     text-align: center; */
      /*     /\* font: "Fira Sans UltraLight"; *\/ */
      /*     display: inline-block; */
      /*     /\* width: 100px; *\/ */
      /*     /\* height: 55px; *\/ */
      /*     /\* line-height: 55px; *\/ */
      /* } */

      /* /\* List items *\/ */
      /* .nav li { */
      /*     font-family: "Fira Sans", et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif; */
      /*     font-size: 1.2em; */
      /*     font-variant: small-caps; */
      /*     font-weight: 200; */
      /*     text-decoration: none; */
      /*     line-height: 40px; */
      /*     text-align: center; */
      /*     height: 40px; */
      /* } */

      /* /\* nav a { *\/ */
      /* /\*     text-decoration: none; *\/ */
      /* /\*     background-color: #000000; *\/ */
      /* /\* } *\/ */

      /* /\* nav a:hover { *\/ */
      /* /\*     text-decoration: none; *\/ */
      /* /\*     background-color: #000000; *\/ */
      /* /\*     /\\* -webkit-box-shadow: 0 0 0.5em #777777; *\\/ *\/ */
      /* /\*     /\\* -moz-box-shadow: 0 0 0.5em #777777; *\\/ *\/ */
      /* /\*     /\\* -webkit-border-bottom-left-radius: 5px; *\\/ *\/ */
      /* /\*     /\\* -moz-border-radius-bottomleft: 5px; *\\/ *\/ */
      /* /\*     /\\* transition: .3s background-color; *\\/ *\/ */
      /* /\* } *\/ */

      /* .nav li { */
      /*     width: 120px; */
      /*     font-family: "Fira Sans", et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif; */
      /*     font-variant: small-caps; */
      /*     font-weight: 200; */
      /*     text-decoration: none; */
      /*     border-bottom: none; */
      /*     height: 50px; */
      /*     line-height: 50px; */
      /*     font-size: 1.4em; */

      /* } */

  }

2.8. Tabs


.tabs {
  position: relative;
  min-height: 300px; /* This part sucks */
  /* clear: both; */
  margin: 50px 0;
  max-width: 50%;
  text-align: center;
  margin-above: 50px;

}
.tab {
  /* float: left; */
    display: inline-block;
}
.tab label {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: bolder;
    background: #fffff8/* #eee */;
    /* padding: 3px;  */
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;

    /* border: 1px solid #ccc;  */
    margin-left: -1px;
    position: relative;
    left: 1px;
    /* text-decoration: underline; */
}

.tab label:hover {
  background: #fffff8/* #eee */;
  /* padding-left: 20px;  */
  /* padding-right: 20px;  */
  padding-top: 5px;
  /* border: 1px solid #ccc;  */
  margin-left: -1px;
  position: relative;
  left: 1px;
  /* text-decoration: underline; */
  text-shadow: 0 0 0.9em #777777;
}

.tab [type=radio] {
  display: none;
}
.content {
  position: absolute;
  font-size: 1.5rem;
  top: 20%/* 28px */;
  left: 0;
  background: #fffff8;
  right: 0;
  bottom: 0;
  padding: 20px;
  text-align: left;
  /* border: 1px solid #ccc; */
}
[type=radio]:checked ~ label {
  background: #fffff8;
  /* border-bottom: 1px solid #fffff8; */
  text-shadow: 0 0 0.5em #777777;
  text-decoration: none;
  z-index: 2;
}
[type=radio]:checked ~ label ~ .content {
  z-index: 1;
}

2.9. Tufte v1.3

@charset "UTF-8";
@font-face {
    font-family: "fantasque-sans-mono";
    src: url("fantasque-sans-mono/FantasqueSansMono-Italic.eot"); /* IE 9 Compatibility Mode */
    src: url("fantasque-sans-mono/FantasqueSansMono-Italic.eot?#iefix") format("embedded-opentype"), /* IE < 9 */
    url("fantasque-sans-mono/FantasqueSansMono-Italic.woff2") format("woff2"),
    url("fantasque-sans-mono/FantasqueSansMono-Italic.woff") format("woff"), /* Firefox >= 3.6, any other modern browser */
    url("fantasque-sans-mono/FantasqueSansMono-Italic.ttf") format("truetype"), /* Safari, Android, iOS */
    url("fantasque-sans-mono/FantasqueSansMono-Italic.svg#FantasqueSansMono-Italic") format("svg"); /* Chrome < 4, Legacy iOS */
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "fantasque-sans-mono";
    src: url("fantasque-sans-mono/FantasqueSansMono-Regular.eot"); /* IE 9 Compatibility Mode */
    src: url("fantasque-sans-mono/FantasqueSansMono-Regular.eot?#iefix") format("embedded-opentype"), /* IE < 9 */
    url("fantasque-sans-mono/FantasqueSansMono-Regular.woff2") format("woff2"),
    url("fantasque-sans-mono/FantasqueSansMono-Regular.woff") format("woff"), /* Firefox >= 3.6, any other modern browser */
    url("fantasque-sans-mono/FantasqueSansMono-Regular.ttf") format("truetype"), /* Safari, Android, iOS */
    url("fantasque-sans-mono/FantasqueSansMono-Regular.svg#FantasqueSansMono-Regular") format("svg"); /* Chrome < 4, Legacy iOS */
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "fantasque-sans-mono";
    src: url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.eot"); /* IE 9 Compatibility Mode */
    src: url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.eot?#iefix") format("embedded-opentype"), /* IE < 9 */
    url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.woff2") format("woff2"),
    url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.woff") format("woff"), /* Firefox >= 3.6, any other modern browser */
    url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.ttf") format("truetype"), /* Safari, Android, iOS */
    url("fantasque-sans-mono/FantasqueSansMono-BoldItalic.svg#FantasqueSansMono-BoldItalic") format("svg"); /* Chrome < 4, Legacy iOS */
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "fantasque-sans-mono";
    src: url("fantasque-sans-mono/FantasqueSansMono-Bold.eot"); /* IE 9 Compatibility Mode */
    src: url("fantasque-sans-mono/FantasqueSansMono-Bold.eot?#iefix") format("embedded-opentype"), /* IE < 9 */
    url("fantasque-sans-mono/FantasqueSansMono-Bold.woff2") format("woff2"),
    url("fantasque-sans-mono/FantasqueSansMono-Bold.woff") format("woff"), /* Firefox >= 3.6, any other modern browser */
    url("fantasque-sans-mono/FantasqueSansMono-Bold.ttf") format("truetype"), /* Safari, Android, iOS */
    url("fantasque-sans-mono/FantasqueSansMono-Bold.svg#FantasqueSansMono-Bold") format("svg"); /* Chrome < 4, Legacy iOS */
    font-weight: 700;
    font-style: normal;
}
/* Import ET Book styles
   adapted from https://github.com/edwardtufte/et-book/blob/gh-pages/et-book.css */

 @font-face { font-family: "et-book";
              src: url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot");
              src: url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot?#iefix") format("embedded-opentype"), url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff") format("woff"), url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf") format("truetype"), url("et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg#etbookromanosf") format("svg");
              font-weight: normal;
              font-style: normal; }

 @font-face { font-family: "et-book";
              src: url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot");
              src: url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot?#iefix") format("embedded-opentype"), url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff") format("woff"), url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf") format("truetype"), url("et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg#etbookromanosf") format("svg");
              font-weight: normal;
              font-style: italic; }

 @font-face { font-family: "et-book";
              src: url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot");
              src: url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot?#iefix") format("embedded-opentype"), url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff") format("woff"), url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf") format("truetype"), url("et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg#etbookromanosf") format("svg");
              font-weight: bold;
              font-style: normal; }

 @font-face { font-family: "et-book-roman-old-style";
              src: url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot");
              src: url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot?#iefix") format("embedded-opentype"), url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff") format("woff"), url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf") format("truetype"), url("et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg#etbookromanosf") format("svg");
              font-weight: normal;
              font-style: normal; }
@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Hair.eot');
    src: local('Fira Sans Hair'),
         url('fonts/fira-sans/eot/FiraSans-Hair.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Hair.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Hair.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-HairItalic.eot');
    src: local('Fira Sans Hair Italic'),
         url('fonts/fira-sans/eot/FiraSans-HairItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-HairItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-HairItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-UltraLight.eot');
    src: local('Fira Sans UltraLight'),
         url('fonts/fira-sans/eot/FiraSans-UltraLight.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-UltraLight.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-UltraLightItalic.eot');
    src: local('Fira Sans UltraLight Italic'),
         url('fonts/fira-sans/eot/FiraSans-UltraLightItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-UltraLightItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-UltraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Light.eot');
    src: local('Fira Sans Light'),
         url('fonts/fira-sans/eot/FiraSans-Light.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Light.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-LightItalic.eot');
    src: local('Fira Sans Light Italic'),
         url('fonts/fira-sans/eot/FiraSans-LightItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-LightItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Regular.eot');
    src: local('Fira Sans Regular'),
         url('fonts/fira-sans/eot/FiraSans-Regular.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Regular.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Italic.eot');
    src: local('Fira Sans Regular Italic'),
         url('fonts/fira-sans/eot/FiraSans-Italic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Italic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Medium.eot');
    src: local('Fira Sans Medium'),
         url('fonts/fira-sans/eot/FiraSans-Medium.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Medium.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-MediumItalic.eot');
    src: local('Fira Sans Medium Italic'),
         url('fonts/fira-sans/eot/FiraSans-MediumItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-MediumItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-SemiBold.eot');
    src: local('Fira Sans SemiBold'),
         url('fonts/fira-sans/eot/FiraSans-SemiBold.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-SemiBold.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-SemiBoldItalic.eot');
    src: local('Fira Sans SemiBold Italic'),
         url('fonts/fira-sans/eot/FiraSans-SemiBoldItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-SemiBoldItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Bold.eot');
    src: local('Fira Sans Bold'),
         url('fonts/fira-sans/eot/FiraSans-Bold.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Bold.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-BoldItalic.eot');
    src: local('Fira Sans Bold Italic'),
         url('fonts/fira-sans/eot/FiraSans-BoldItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-BoldItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-ExtraBold.eot');
    src: local('Fira Sans ExtraBold'),
         url('fonts/fira-sans/eot/FiraSans-ExtraBold.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-ExtraBold.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-ExtraBoldItalic.eot');
    src: local('Fira Sans ExtraBold Italic'),
         url('fonts/fira-sans/eot/FiraSans-ExtraBoldItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-ExtraBoldItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-Heavy.eot');
    src: local('Fira Sans Heavy'),
         url('fonts/fira-sans/eot/FiraSans-Heavy.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-Heavy.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Sans';
    src: url('fonts/fira-sans/eot/FiraSans-HeavyItalic.eot');
    src: local('Fira Sans Heavy Italic'),
         url('fonts/fira-sans/eot/FiraSans-HeavyItalic.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraSans-HeavyItalic.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraSans-HeavyItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}


@font-face{
    font-family: 'Fira Mono';
    src: url('fonts/fira-sans/eot/FiraMono-Regular.eot');
    src: local('Fira Mono'),
         url('fonts/fira-sans/eot/FiraMono-Regular.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraMono-Regular.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Fira Mono';
    src: url('fonts/fira-sans/eot/FiraMono-Bold.eot');
    src: local('Fira Mono Bold'),
         url('fonts/fira-sans/eot/FiraMono-Bold.eot') format('embedded-opentype'),
         url('fonts/fira-sans/woff/FiraMono-Bold.woff') format('fonts/fira-sans/woff'),
         url('fonts/fira-sans/ttf/FiraMono-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face{
    font-family: "murty-sanskrit";
    src: url('fonts/murty/Murty-Sanskrit-1.01.otf') format('opentype');
    /* font-weight: 100; */
    /* font-style: normal; */
}

/* Tufte CSS styles */
html { font-size: 15px; }

body { width: 87.5%;
       margin-left: auto;
       margin-right: auto;
       padding-left: 12.5%;
       font-family: et-book, murty-sanskrit, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
       background-color: #fffff8;
       color: #111;
       max-width: 1400px;
       counter-reset: sidenote-counter; }

h1 { font-weight: 400;
     margin-top: 4rem;
     margin-bottom: 1.5rem;
     font-size: 3.2rem;
     line-height: 1; }

h2 { font-style: italic;
     font-weight: 400;
     margin-top: 2.1rem;
     margin-bottom: 0;
     font-size: 2.2rem;
     line-height: 1; }

h3 { font-style: italic;
     font-weight: 400;
     font-size: 1.7rem;
     margin-top: 2rem;
     margin-bottom: 0;
     line-height: 1; }

h4 { font-style: italic;
     font-weight: 400;
     font-size: 1.5rem;
     margin-top: 1.9rem;
     margin-bottom: 0;
     line-height: 1; }

h5 { font-style: italic;
     font-weight: 400;
     font-size: 1.3rem;
     margin-top: 1.8rem;
     margin-bottom: 0;
     line-height: 1; }

h6 { font-style: italic;
     font-weight: 400;
     font-size: 1.1rem;
     margin-top: 1.5rem;
     margin-bottom: 0;
     line-height: 1; }


hr { display: block;
     height: 1px;
     width: 55%;
     border: 0;
     border-top: 1px solid #ccc;
     margin: 1em 0;
     padding: 0; }


.nowrap {white-space:nowrap}
.title {font-size: 5rem}
.subtitle { font-style: italic;
             margin-top: 1rem;
             margin-bottom: 1rem;
             font-size: 1.2rem;
             display: block;
             line-height: 1; }


.numeral { font-family: et-book-roman-old-style, murty-sanskrit; }

.danger { color: red; }

article { position: relative;
          padding: 5rem 0rem; }

section { padding-top: 1rem;
          padding-bottom: 1rem; }

p, ol, ul, table { font-size: 1.4rem; }

p { line-height: 2rem;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    padding-right: 0;
    vertical-align: baseline; }

/* Chapter Epigraphs */
div.epigraph { margin: 5em 0; }

div.epigraph > blockquote { margin-top: 3em;
                            margin-bottom: 3em; }


div.epigraph > blockquote, div.epigraph > blockquote > p { font-style: italic; }

div.epigraph > blockquote > footer { font-style: normal; }

div.epigraph > blockquote > footer > cite { font-style: italic; }
/* end chapter epigraphs styles */

blockquote { font-size: 1.4rem; }

blockquote p { width: 55%;
               margin-right: 40px; }

blockquote footer { width: 55%;
                    font-size: 1.1rem;
                    text-align: right; }

section>ol, section>ul { width: 45%;
                         -webkit-padding-start: 5%;
                         -webkit-padding-end: 5%; }

li { padding: 0.5rem 0; }

figure { padding: 0;
         border: 0;
         font-size: 100%;
         font: inherit;
         vertical-align: baseline;
         max-width: 55%;
         -webkit-margin-start: 0;
         -webkit-margin-end: 0;
         margin: 0 0 3em 0; }

div.table {
    font-size: 1.4rem;
}

figcaption { float: right;
             clear: right;
             margin-top: 0;
             margin-bottom: 0;
             font-size: 1.1rem;
             line-height: 1.6;
             vertical-align: baseline;
             position: relative;
             max-width: 40%; }

figure.fullwidth figcaption { margin-right: 24%; }

/* Links: replicate underline that clears descenders */
a:link, a:visited { color: inherit;
                    text-decoration: none;
                  }

a:link { text-decoration: none;
         background: -webkit-linear-gradient(#fffff8, #fffff8), -webkit-linear-gradient(#fffff8, #fffff8), -webkit-linear-gradient(#333, #333);
         background: linear-gradient(#fffff8, #fffff8), linear-gradient(#fffff8, #fffff8), linear-gradient(#333, #333);
         -webkit-background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
         -moz-background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
         background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
         background-repeat: no-repeat, no-repeat, repeat-x;
         text-shadow: 0.03em 0 #fffff8, -0.03em 0 #fffff8, 0 0.03em #fffff8, 0 -0.03em #fffff8, 0.06em 0 #fffff8, -0.06em 0 #fffff8, 0.09em 0 #fffff8, -0.09em 0 #fffff8, 0.12em 0 #fffff8, -0.12em 0 #fffff8, 0.15em 0 #fffff8, -0.15em 0 #fffff8;
         background-position: 0% 93%, 100% 93%, 0% 93%; }

@media screen and (-webkit-min-device-pixel-ratio: 0) { a:link { background-position-y: 87%, 87%, 87%; } }

a:link::selection { text-shadow: 0.03em 0 #b4d5fe, -0.03em 0 #b4d5fe, 0 0.03em #b4d5fe, 0 -0.03em #b4d5fe, 0.06em 0 #b4d5fe, -0.06em 0 #b4d5fe, 0.09em 0 #b4d5fe, -0.09em 0 #b4d5fe, 0.12em 0 #b4d5fe, -0.12em 0 #b4d5fe, 0.15em 0 #b4d5fe, -0.15em 0 #b4d5fe;
                    background: #b4d5fe; }

a:link::-moz-selection { text-shadow: 0.03em 0 #b4d5fe, -0.03em 0 #b4d5fe, 0 0.03em #b4d5fe, 0 -0.03em #b4d5fe, 0.06em 0 #b4d5fe, -0.06em 0 #b4d5fe, 0.09em 0 #b4d5fe, -0.09em 0 #b4d5fe, 0.12em 0 #b4d5fe, -0.12em 0 #b4d5fe, 0.15em 0 #b4d5fe, -0.15em 0 #b4d5fe;
                         background: #b4d5fe; }

/* Sidenotes, margin notes, figures, captions */
img { max-width: 100%; }

.sidenote, .marginnote { float: right;
                         clear: right;
                         margin-right: -60%;
                         width: 50%;
                         margin-top: 0;
                         margin-bottom: 0;
                         font-size: 1.1rem;
                         line-height: 1.3;
                         vertical-align: baseline;
                         position: relative; }

.sidenote-number { counter-increment: sidenote-counter; }

.sidenote-number:after, .sidenote:before { content: counter(sidenote-counter) " ";
                                           font-family: et-book-roman-old-style, murty-sanskrit;
                                           position: relative;
                                           vertical-align: baseline; }

.sidenote-number:after { content: counter(sidenote-counter);
                         font-size: 1rem;
                         top: -0.5rem;
                         left: 0.1rem; }

.sidenote:before { content: counter(sidenote-counter) " ";
                   top: -0.5rem; }

blockquote .sidenote, blockquote .marginnote { margin-right: -82%;
                                               min-width: 59%;
                                               text-align: left; }

p, footer , table { width: 55%; }

div.fullwidth, table.fullwidth { width: 100%; }

div.table-wrapper {
    overflow-x: auto;
    font-family: "Trebuchet MS", "Gill Sans", "Gill Sans MT", murty-sanskrit, sans-serif;
    font-size: 1.4em /* 0.80em */;
}

.sans { font-family: "Gill Sans", "Gill Sans MT", murty-sanskrit, Calibri, sans-serif;
        letter-spacing: .03em; }

code { font-family: fantasque-sans-mono, Consolas, "Liberation Mono", murty-sanskrit, Menlo, Courier, monospace;
       font-size: 1.0rem;
       line-height: 1.42; }

.sans > code { font-size: 1.2rem; }

h1 > code, h2 > code, h3 > code { font-size: 0.80em; }

.marginnote > code, .sidenote > code { font-size: 1rem; }

pre.code { font-size: 0.9rem;
           width: 52.5%;
           margin-left: 2.5%;
           overflow-x: auto; }

/* pre.code.fullwidth { width: 90%; } */

.fullwidth { max-width: 90%;
             clear:both; }

span.newthought { font-variant: small-caps;
                  font-size: 1.2em; }

input.margin-toggle { display: none; }

label.sidenote-number { display: inline; }

label.margin-toggle:not(.sidenote-number) { display: none; }

.iframe-wrapper { position: relative;
                  padding-bottom: 56.25%; /* 16:9 */
                  padding-top: 25px;
                  height: 0; }

.iframe-wrapper iframe { position: absolute;
                         top: 0;
                         left: 0;
                         width: 100%;
                         height: 100%; }

@media (max-width: 760px) { body { width: 84%;
                                   padding-left: 8%;
                                   padding-right: 8%; }
                            p, footer { width: 100%; }
                            pre.code { width: 97%; }
                            section > ol { width: 90%; }
                            section > ul { width: 90%; }
                            figure { max-width: 90%; }
                            figcaption, figure.fullwidth figcaption { margin-right: 0%;
                                                                      max-width: none; }
                            blockquote { margin-left: 1.5em;
                                         margin-right: 0em; }
                            blockquote p, blockquote footer { width: 100%; }
                            label.margin-toggle:not(.sidenote-number) { display: inline; }
                            .sidenote, .marginnote { display: none; }
                            .margin-toggle:checked + .sidenote,
                            .margin-toggle:checked + .marginnote { display: block;
                                                                   float: left;
                                                                   left: 1rem;
                                                                   clear: both;
                                                                   width: 95%;
                                                                   margin: 1rem 2.5%;
                                                                   vertical-align: baseline;
                                                                   position: relative; }
                            label { cursor: pointer; }
                            div.table-wrapper, table { width: 85%; }
                            img { width: 100%; } }

                 /* TOC inspired by http://jashkenas.github.com/coffee-script */
     /* Table of Contents */
@media all{
     #table-of-contents {
         z-index: 100;
         font-size: 10pt;
         position: fixed;
         right: 0em;
         top: 0em;
         background: #fffff8;
         -webkit-box-shadow: 0 0 0.5em #777777;
         -moz-box-shadow: 0 0 0.5em #777777;
         -webkit-border-bottom-left-radius: 5px;
         -moz-border-radius-bottomleft: 5px;
         text-align: left;
         /* width: 50% */
         /* ensure doesn't flow off the screen when expanded */
         max-height: 90%;
         max-width: 50%;
         overflow: auto;
         margin-bottom:0.05em;
     }
     #table-of-contents h2 {
         font-size: 14pt;
         max-width: 9em;
         /* width: 50% */
         text-align: center;
         font-weight: normal;
         padding-left: 0.5em;
         padding-right: 0.5em;
         /* padding-top: 0.05em; */
         padding-bottom: 0.5em;
     }

     #table-of-contents #text-table-of-contents {
         display: none;
         text-align: left;
     }
     #table-of-contents:hover #text-table-of-contents {
         display: block;
         padding: 0.5em;
         margin-top: -1.5em;
     }

     #table-of-contents #text-table-of-contents ul {
         /* list-style-position: outside */;
         font-size: 13pt;
         padding-right: 0.5em;
     }
}
#footnotes {width: 55%;}
.example {
    width: 55%;
    font-family: fantasque-sans-mono;
}
.code {
    background: #121212;
    color: #d0d0d0;
    font-family: fantasque-sans-mono;
}

/* body { */
/*     color: #d0d0d0; */
/*     background-color: #121212; */
/*     font-family: "Fantasque Sans Mono"; */
/* } */
.org-ahs {
    /* ahs-face */
    background-color: #444155;
}
.org-ahs-definition {
    /* ahs-definition-face */
    color: #ffe4b5;
    background-color: #5f9ea0;
    text-decoration: underline;
}
.org-ahs-edit-mode {
    /* ahs-edit-mode-face */
    color: #ffffff;
    background-color: #cd5b45;
}
.org-ahs-plugin-bod {
    /* ahs-plugin-bod-face */
    color: #000000;
    background-color: #1e90ff;
}
.org-ahs-plugin-defalt {
    /* ahs-plugin-defalt-face */
    color: #000000;
    background-color: #ffa500;
}
.org-ahs-plugin-whole-buffer {
    /* ahs-plugin-whole-buffer-face */
    color: #121212;
    background-color: #86dc2f;
}
.org-ahs-warning {
    /* ahs-warning-face */
    color: #ff0000;
    font-weight: bold;
}
.org-all-the-icons-blue {
    /* all-the-icons-blue */
    color: #6A9FB5;
}
.org-all-the-icons-blue-alt {
    /* all-the-icons-blue-alt */
    color: #2188b6;
}
.org-all-the-icons-cyan {
    /* all-the-icons-cyan */
    color: #75B5AA;
}
.org-all-the-icons-cyan-alt {
    /* all-the-icons-cyan-alt */
    color: #61dafb;
}
.org-all-the-icons-dblue {
    /* all-the-icons-dblue */
    color: #446674;
}
.org-all-the-icons-dcyan {
    /* all-the-icons-dcyan */
    color: #48746D;
}
.org-all-the-icons-dgreen {
    /* all-the-icons-dgreen */
    color: #6D8143;
}
.org-all-the-icons-dmaroon {
    /* all-the-icons-dmaroon */
    color: #72584B;
}
.org-all-the-icons-dorange {
    /* all-the-icons-dorange */
    color: #915B2D;
}
.org-all-the-icons-dpink {
    /* all-the-icons-dpink */
    color: #B18286;
}
.org-all-the-icons-dpurple {
    /* all-the-icons-dpurple */
    color: #694863;
}
.org-all-the-icons-dred {
    /* all-the-icons-dred */
    color: #843031;
}
.org-all-the-icons-dsilver {
    /* all-the-icons-dsilver */
    color: #838484;
}
.org-all-the-icons-dyellow {
    /* all-the-icons-dyellow */
    color: #B48D56;
}
.org-all-the-icons-green {
    /* all-the-icons-green */
    color: #90A959;
}
.org-all-the-icons-lblue {
    /* all-the-icons-lblue */
    color: #8FD7F4;
}
.org-all-the-icons-lcyan {
    /* all-the-icons-lcyan */
    color: #A5FDEC;
}
.org-all-the-icons-lgreen {
    /* all-the-icons-lgreen */
    color: #C6E87A;
}
.org-all-the-icons-lmaroon {
    /* all-the-icons-lmaroon */
    color: #CE7A4E;
}
.org-all-the-icons-lorange {
    /* all-the-icons-lorange */
    color: #FFA500;
}
.org-all-the-icons-lpink {
    /* all-the-icons-lpink */
    color: #FFBDC1;
}
.org-all-the-icons-lpurple {
    /* all-the-icons-lpurple */
    color: #E69DD6;
}
.org-all-the-icons-lred {
    /* all-the-icons-lred */
    color: #EB595A;
}
.org-all-the-icons-lsilver {
    /* all-the-icons-lsilver */
    color: #B9B6AA;
}
.org-all-the-icons-lyellow {
    /* all-the-icons-lyellow */
    color: #FFC16D;
}
.org-all-the-icons-maroon {
    /* all-the-icons-maroon */
    color: #8F5536;
}
.org-all-the-icons-orange {
    /* all-the-icons-orange */
    color: #D4843E;
}
.org-all-the-icons-pink {
    /* all-the-icons-pink */
    color: #F2B4B8;
}
.org-all-the-icons-purple {
    /* all-the-icons-purple */
    color: #AA759F;
}
.org-all-the-icons-purple-alt {
    /* all-the-icons-purple-alt */
    color: #5D54E1;
}
.org-all-the-icons-red {
    /* all-the-icons-red */
    color: #AC4142;
}
.org-all-the-icons-red-alt {
    /* all-the-icons-red-alt */
    color: #ce5643;
}
.org-all-the-icons-silver {
    /* all-the-icons-silver */
    color: #716E68;
}
.org-all-the-icons-yellow {
    /* all-the-icons-yellow */
    color: #FFD446;
}
.org-anzu-match-1 {
    /* anzu-match-1 */
    color: #000000;
    background-color: #32cd32;
}
.org-anzu-match-2 {
    /* anzu-match-2 */
    color: #000000;
    background-color: #ffff00;
}
.org-anzu-match-3 {
    /* anzu-match-3 */
    color: #000000;
    background-color: #7fffd4;
}
.org-anzu-mode-line {
    /* anzu-mode-line */
    color: #b1951d;
    font-weight: bold;
}
.org-anzu-mode-line-no-match {
    /* anzu-mode-line-no-match */
    color: #b1951d;
    font-weight: bold;
}
.org-anzu-replace-highlight {
    /* anzu-replace-highlight */
    color: #121212;
    background-color: #86dc2f;
}
.org-anzu-replace-to {
    /* anzu-replace-to */
    color: #ffff00;
}
.org-apropos-keybinding {
    /* apropos-keybinding */
    text-decoration: underline;
}
.org-apropos-property {
    /* apropos-property */
    color: #4f97d7;
}
.org-apropos-symbol {
    /* apropos-symbol */
    font-weight: bold;
}
.org-bold {
    /* bold */
    font-weight: bold;
}
.org-bold-italic {
    /* bold-italic */
    font-weight: bold;
    font-style: italic;
}
.org-bookmark-menu-bookmark {
    /* bookmark-menu-bookmark */
    font-weight: bold;
}
.org-bookmark-menu-heading {
    /* bookmark-menu-heading */
    color: #ce537a;
    font-weight: bold;
}
.org-border {
}
.org-buffer-menu-buffer {
    /* buffer-menu-buffer */
    font-weight: bold;
}
.org-builtin {
    /* font-lock-builtin-face */
    color: #4f97d7;
}
.org-button {
    /* button */
    color: #606060;
    text-decoration: underline;
}
.org-c-annotation {
    /* c-annotation-face */
    color: #a45bad;
}
.org-calendar-month-header {
    /* calendar-month-header */
    color: #bc6ec5;
    font-weight: bold;
}
.org-calendar-today {
    /* calendar-today */
    text-decoration: underline;
}
.org-calendar-weekday-header {
    /* calendar-weekday-header */
    color: #a45bad;
}
.org-calendar-weekend-header {
    /* calendar-weekend-header */
    color: #606060;
}
.org-change-log-acknowledgment {
    /* change-log-acknowledgment */
    color: #606060;
}
.org-change-log-conditionals {
    /* change-log-conditionals */
    color: #7590db;
}
.org-change-log-date {
    /* change-log-date */
    color: #2d9574;
}
.org-change-log-email {
    /* change-log-email */
    color: #7590db;
}
.org-change-log-file {
    /* change-log-file */
    color: #bc6ec5;
    font-weight: bold;
}
.org-change-log-function {
    /* change-log-function */
    color: #7590db;
}
.org-change-log-list {
    /* change-log-list */
    color: #4f97d7;
    font-weight: bold;
}
.org-change-log-name {
    /* change-log-name */
    color: #a45bad;
}
.org-comint-highlight-input {
    /* comint-highlight-input */
    font-weight: bold;
}
.org-comint-highlight-prompt {
    /* comint-highlight-prompt */
    color: #4f97d7;
    font-weight: bold;
}
.org-comment {
    /* font-lock-comment-face */
    color: #606060;
}
.org-comment-delimiter {
    /* font-lock-comment-delimiter-face */
    color: #606060;
}
.org-company-echo {
}
.org-company-echo-common {
    /* company-echo-common */
    color: #121212;
    background-color: #d0d0d0;
}
.org-company-preview {
    /* company-preview */
    color: #9a9aba;
    background-color: #34323e;
}
.org-company-preview-common {
    /* company-preview-common */
    color: #d0d0d0;
    background-color: #34323e;
}
.org-company-preview-search {
    /* company-preview-search */
    color: #86dc2f;
    background-color: #444155;
}
.org-company-scrollbar-bg {
    /* company-scrollbar-bg */
    background-color: #000000;
}
.org-company-scrollbar-fg {
    /* company-scrollbar-fg */
    background-color: #262626;
}
.org-company-template-field {
    /* company-template-field */
    background-color: #444155;
}
.org-company-tooltip {
    /* company-tooltip */
    color: #9a9aba;
    background-color: #34323e;
}
.org-company-tooltip-annotation {
    /* company-tooltip-annotation */
    color: #ce537a;
}
.org-company-tooltip-annotation-selection {
    /* company-tooltip-annotation-selection */
    color: #ce537a;
}
.org-company-tooltip-common {
    /* company-tooltip-common */
    color: #4f97d7;
    background-color: #34323e;
}
.org-company-tooltip-common-selection {
    /* company-tooltip-common-selection */
    color: #d0d0d0;
}
.org-company-tooltip-mouse {
    /* company-tooltip-mouse */
    color: #d0d0d0;
    background-color: #444155;
}
.org-company-tooltip-search {
    /* company-tooltip-search */
    color: #86dc2f;
    background-color: #444155;
}
.org-company-tooltip-search-selection {
    /* company-tooltip-search-selection */
    color: #d0d0d0;
    background-color: #444155;
}
.org-company-tooltip-selection {
    /* company-tooltip-selection */
    color: #d0d0d0;
    background-color: #5e5079;
}
.org-compilation-column-number {
    /* compilation-column-number */
    color: #3a3a3a;
}
.org-compilation-error {
    /* compilation-error */
    color: #e0211d;
}
.org-compilation-info {
    /* compilation-info */
    color: #86dc2f;
}
.org-compilation-line-number {
    /* compilation-line-number */
    color: #4f97d7;
    font-weight: bold;
}
.org-compilation-mode-line-exit {
    /* compilation-mode-line-exit */
    color: #228b22;
    font-weight: bold;
}
.org-compilation-mode-line-fail {
    /* compilation-mode-line-fail */
    color: #ff0000;
    font-weight: bold;
}
.org-compilation-mode-line-run {
    /* compilation-mode-line-run */
    color: #dc752f;
}
.org-compilation-warning {
    /* compilation-warning */
    color: #dc752f;
}
.org-completions-annotations {
    /* completions-annotations */
    font-style: italic;
}
.org-completions-common-part {
}
.org-completions-first-difference {
    /* completions-first-difference */
    font-weight: bold;
}
.org-constant {
    /* font-lock-constant-face */
    color: #a45bad;
}
.org-counsel-variable-documentation {
    /* counsel-variable-documentation */
    color: #606060;
}
.org-css-property {
    /* css-property */
    color: #4f97d7;
    font-weight: bold;
}
.org-css-selector {
    /* css-selector */
    color: #bc6ec5;
    font-weight: bold;
}
.org-cursor {
    /* cursor */
    background-color: #eead0e;
}
.org-custom-button {
    /* custom-button */
    color: #d0d0d0;
    background-color: #000000;
}
.org-custom-button-mouse {
    /* custom-button-mouse */
    color: #000000;
    background-color: #e5e5e5;
}
.org-custom-button-pressed {
    /* custom-button-pressed */
    color: #000000;
    background-color: #d3d3d3;
}
.org-custom-button-pressed-unraised {
    /* custom-button-pressed-unraised */
    color: #ee82ee;
    text-decoration: underline;
}
.org-custom-button-unraised {
    /* custom-button-unraised */
    text-decoration: underline;
}
.org-custom-changed {
    /* custom-changed */
    color: #ffffff;
    background-color: #0000ff;
}
.org-custom-comment {
    /* custom-comment */
    background-color: #696969;
}
.org-custom-comment-tag {
    /* custom-comment-tag */
    color: #cccccc;
}
.org-custom-documentation {
}
.org-custom-face-tag {
    /* custom-face-tag */
    color: #add8e6;
    font-weight: bold;
}
.org-custom-group-subtitle {
    /* custom-group-subtitle */
    font-weight: bold;
}
.org-custom-group-tag {
    /* custom-group-tag */
    color: #add8e6;
    font-size: 120%;
    font-weight: bold;
}
.org-custom-group-tag-1 {
    /* custom-group-tag-1 */
    color: #ffc0cb;
    font-size: 120%;
    font-weight: bold;
}
.org-custom-invalid {
    /* custom-invalid */
    color: #ffff00;
    background-color: #ff0000;
}
.org-custom-link {
    /* custom-link */
    color: #606060;
    text-decoration: underline;
}
.org-custom-modified {
    /* custom-modified */
    color: #ffffff;
    background-color: #0000ff;
}
.org-custom-rogue {
    /* custom-rogue */
    color: #ffc0cb;
    background-color: #000000;
}
.org-custom-saved {
    /* custom-saved */
    text-decoration: underline;
}
.org-custom-set {
    /* custom-set */
    color: #0000ff;
    background-color: #ffffff;
}
.org-custom-state {
    /* custom-state */
    color: #32cd32;
}
.org-custom-themed {
    /* custom-themed */
    color: #ffffff;
    background-color: #0000ff;
}
.org-custom-variable-button {
    /* custom-variable-button */
    font-weight: bold;
    text-decoration: underline;
}
.org-custom-variable-tag {
    /* custom-variable-tag */
    color: #add8e6;
    font-weight: bold;
}
.org-custom-visibility {
    /* custom-visibility */
    color: #606060;
    font-size: 80%;
    text-decoration: underline;
}
.org-diary {
    /* diary */
    color: #ffff00;
}
.org-diff-added {
    /* diff-added */
    color: #67b11d;
}
.org-diff-changed {
    /* diff-changed */
    color: #4f97d7;
}
.org-diff-context {
    /* diff-context */
    color: #dddddd;
}
.org-diff-file-header {
    /* diff-file-header */
    color: #cbc1d5;
    background-color: #080808;
}
.org-diff-function {
    /* diff-function */
    color: #bc6ec5;
    background-color: #080808;
}
.org-diff-header {
    /* diff-header */
    color: #bc6ec5;
    background-color: #080808;
}
.org-diff-hl-change {
    /* diff-hl-change */
    color: #4f97d7;
    background-color: #2d4252;
}
.org-diff-hl-delete {
    /* diff-hl-delete */
    color: #f2241f;
    background-color: #512e31;
}
.org-diff-hl-insert {
    /* diff-hl-insert */
    color: #67b11d;
    background-color: #29422d;
}
.org-diff-hunk-header {
    /* diff-hunk-header */
    color: #bc6ec5;
    background-color: #080808;
}
.org-diff-index {
    /* diff-index */
    color: #cbc1d5;
    background-color: #080808;
}
.org-diff-indicator-added {
    /* diff-indicator-added */
    color: #67b11d;
}
.org-diff-indicator-changed {
    /* diff-indicator-changed */
    color: #4f97d7;
}
.org-diff-indicator-removed {
    /* diff-indicator-removed */
    color: #f2241f;
}
.org-diff-nonexistent {
    /* diff-nonexistent */
    color: #cbc1d5;
    background-color: #080808;
}
.org-diff-refine-added {
    /* diff-refine-added */
    color: #121212;
    background-color: #67b11d;
}
.org-diff-refine-changed {
    /* diff-refine-changed */
    color: #121212;
    background-color: #4f97d7;
}
.org-diff-refine-removed {
    /* diff-refine-removed */
    color: #121212;
    background-color: #f2241f;
}
.org-diff-removed {
    /* diff-removed */
    color: #f2241f;
}
.org-dired-directory {
    /* dired-directory */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-dired-flagged {
    /* dired-flagged */
    color: #f2241f;
}
.org-dired-header {
    /* dired-header */
    color: #c56ec3;
    font-weight: bold;
}
.org-dired-ignored {
    /* dired-ignored */
    color: #686868;
}
.org-dired-mark {
    /* dired-mark */
    color: #c56ec3;
    font-weight: bold;
}
.org-dired-marked {
    /* dired-marked */
    color: #a31db1;
    font-weight: bold;
}
.org-dired-perm-write {
    /* dired-perm-write */
    color: #d0d0d0;
    text-decoration: underline;
}
.org-dired-symlink {
    /* dired-symlink */
    color: #28def0;
    background-color: #121212;
    font-weight: bold;
}
.org-dired-warning {
    /* dired-warning */
    color: #dc752f;
}
.org-doc {
    /* font-lock-doc-face */
    color: #3a3a3a;
}
.org-eieio-custom-slot-tag {
    /* eieio-custom-slot-tag-face */
    color: #add8e6;
}
.org-eldoc-highlight-function-argument {
    /* eldoc-highlight-function-argument */
    color: #86dc2f;
    font-weight: bold;
}
.org-emmet-preview-input {
    /* emmet-preview-input */
    background-color: #100a14;
}
.org-emmet-preview-output {
    /* emmet-preview-output */
    color: #d0d0d0;
    background-color: #444155;
}
.org-epa-field-body {
    /* epa-field-body */
    color: #40e0d0;
    font-style: italic;
}
.org-epa-field-name {
    /* epa-field-name */
    color: #afeeee;
    font-weight: bold;
}
.org-epa-mark {
    /* epa-mark */
    color: #ffa500;
    font-weight: bold;
}
.org-epa-string {
    /* epa-string */
    color: #ffffe0;
}
.org-epa-validity-disabled {
    /* epa-validity-disabled */
    font-style: italic;
}
.org-epa-validity-high {
    /* epa-validity-high */
    color: #afeeee;
    font-weight: bold;
}
.org-epa-validity-low {
    /* epa-validity-low */
    font-style: italic;
}
.org-epa-validity-medium {
    /* epa-validity-medium */
    color: #afeeee;
    font-style: italic;
}
.org-error {
    /* error */
    color: #e0211d;
}
.org-escape-glyph {
    /* escape-glyph */
    color: #00ffff;
}
.org-eval-sexp-fu-flash {
    /* eval-sexp-fu-flash */
    color: #121212;
    background-color: #86dc2f;
}
.org-eval-sexp-fu-flash-error {
    /* eval-sexp-fu-flash-error */
    color: #121212;
    background-color: #e0211d;
}
.org-evil-ex-commands {
    /* evil-ex-commands */
    font-style: italic;
    text-decoration: underline;
}
.org-evil-ex-info {
    /* evil-ex-info */
    color: #ff0000;
    font-style: italic;
}
.org-evil-ex-lazy-highlight {
    /* evil-ex-lazy-highlight */
    background-color: #29422d;
}
.org-evil-ex-search {
    /* evil-ex-search */
    color: #121212;
    background-color: #86dc2f;
}
.org-evil-ex-substitute-matches {
    /* evil-ex-substitute-matches */
    color: #f2241f;
    background-color: #3c2a2c;
}
.org-evil-ex-substitute-replacement {
    /* evil-ex-substitute-replacement */
    color: #67b11d;
    background-color: #293235;
}
.org-eyebrowse-mode-line-active {
    /* eyebrowse-mode-line-active */
    font-weight: bold;
}
.org-eyebrowse-mode-line-delimiters {
}
.org-eyebrowse-mode-line-inactive {
}
.org-eyebrowse-mode-line-separator {
}
.org-ffap {
    /* ffap */
    color: #d0d0d0;
}
.org-file-name-shadow {
    /* file-name-shadow */
    color: #686868;
}
.org-fixed-pitch {
}
.org-fixed-pitch-serif {
}
.org-flx-highlight {
    /* flx-highlight-face */
    color: #c56ec3;
}
.org-flycheck-error {
    /* flycheck-error */
    text-decoration: underline;
}
.org-flycheck-error-list-checker-name {
    /* flycheck-error-list-checker-name */
    color: #4f97d7;
}
.org-flycheck-error-list-column-number {
    /* flycheck-error-list-column-number */
    color: #a45bad;
}
.org-flycheck-error-list-error {
    /* flycheck-error-list-error */
    color: #e0211d;
}
.org-flycheck-error-list-filename {
    /* flycheck-error-list-filename */
    color: #7590db;
}
.org-flycheck-error-list-highlight {
    /* flycheck-error-list-highlight */
    color: #d0d0d0;
    background-color: #444155;
}
.org-flycheck-error-list-id {
    /* flycheck-error-list-id */
    color: #ce537a;
    font-weight: bold;
}
.org-flycheck-error-list-id-with-explainer {
    /* flycheck-error-list-id-with-explainer */
    color: #ce537a;
    font-weight: bold;
}
.org-flycheck-error-list-info {
    /* flycheck-error-list-info */
    color: #86dc2f;
}
.org-flycheck-error-list-line-number {
    /* flycheck-error-list-line-number */
    color: #a45bad;
}
.org-flycheck-error-list-warning {
    /* flycheck-error-list-warning */
    color: #dc752f;
}
.org-flycheck-fringe-error {
    /* flycheck-fringe-error */
    color: #e0211d;
    font-weight: bold;
}
.org-flycheck-fringe-info {
    /* flycheck-fringe-info */
    color: #4f97d7;
    font-weight: bold;
}
.org-flycheck-fringe-warning {
    /* flycheck-fringe-warning */
    color: #dc752f;
    font-weight: bold;
}
.org-flycheck-info {
    /* flycheck-info */
    text-decoration: underline;
}
.org-flycheck-verify-select-checker {
}
.org-flycheck-warning {
    /* flycheck-warning */
    text-decoration: underline;
}
.org-flyspell-duplicate {
    /* flyspell-duplicate */
    text-decoration: underline;
}
.org-flyspell-incorrect {
    /* flyspell-incorrect */
    text-decoration: underline;
}
.org-fringe {
    /* fringe */
    color: #d0d0d0;
    background-color: #121212;
}
.org-function-name {
    /* font-lock-function-name-face */
    color: #bc6ec5;
    font-weight: bold;
}
.org-git-commit-comment-action {
    /* git-commit-comment-action */
    font-weight: bold;
}
.org-git-commit-comment-branch-local {
    /* git-commit-comment-branch-local */
    color: #7590db;
}
.org-git-commit-comment-branch-remote {
    /* git-commit-comment-branch-remote */
    color: #7590db;
}
.org-git-commit-comment-detached {
    /* git-commit-comment-detached */
    color: #7590db;
}
.org-git-commit-comment-file {
    /* git-commit-comment-file */
    color: #2d9574;
}
.org-git-commit-comment-heading {
    /* git-commit-comment-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-git-commit-keyword {
    /* git-commit-keyword */
    color: #2d9574;
}
.org-git-commit-known-pseudo-header {
    /* git-commit-known-pseudo-header */
    color: #4f97d7;
    font-weight: bold;
}
.org-git-commit-nonempty-second-line {
    /* git-commit-nonempty-second-line */
    color: #dc752f;
    background-color: #121212;
}
.org-git-commit-overlong-summary {
    /* git-commit-overlong-summary */
    color: #dc752f;
    background-color: #121212;
}
.org-git-commit-pseudo-header {
    /* git-commit-pseudo-header */
    color: #2d9574;
}
.org-git-commit-summary {
    /* git-commit-summary */
    color: #ce537a;
    font-weight: bold;
}
.org-git-gutter-frX-added {
    /* git-gutter-fr+-added */
    color: #00ff00;
    font-weight: bold;
}
.org-git-gutter-frX-deleted {
    /* git-gutter-fr+-deleted */
    color: #ff0000;
    font-weight: bold;
}
.org-git-gutter-frX-modified {
    /* git-gutter-fr+-modified */
    color: #ff00ff;
    font-weight: bold;
}
.org-git-gutterX-added {
    /* git-gutter+-added */
    color: #00ff00;
    font-weight: bold;
}
.org-git-gutterX-commit-header {
    /* git-gutter+-commit-header-face */
    color: #606060;
}
.org-git-gutterX-deleted {
    /* git-gutter+-deleted */
    color: #ff0000;
    font-weight: bold;
}
.org-git-gutterX-modified {
    /* git-gutter+-modified */
    color: #ff00ff;
    font-weight: bold;
}
.org-git-gutterX-separator {
    /* git-gutter+-separator */
    color: #00ffff;
    font-weight: bold;
}
.org-git-gutterX-unchanged {
    /* git-gutter+-unchanged */
    background-color: #ffff00;
}
.org-git-gutterXadded {
    /* git-gutter:added */
    color: #00ff00;
    font-weight: bold;
}
.org-git-gutterXdeleted {
    /* git-gutter:deleted */
    color: #ff0000;
    font-weight: bold;
}
.org-git-gutterXmodified {
    /* git-gutter:modified */
    color: #ff00ff;
    font-weight: bold;
}
.org-git-gutterXunchanged {
    /* git-gutter:unchanged */
    background-color: #ffff00;
}
.org-git-rebase-comment-hash {
    /* git-rebase-comment-hash */
    color: #7590db;
    font-weight: bold;
}
.org-git-rebase-comment-heading {
    /* git-rebase-comment-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-git-rebase-description {
}
.org-git-rebase-hash {
    /* git-rebase-hash */
    color: #7590db;
}
.org-git-rebase-killed-action {
    /* git-rebase-killed-action */
    color: #606060;
    text-decoration: line-through;
}
.org-git-rebase-label {
    /* git-rebase-label */
    color: #cccccc;
}
.org-glyphless-char {
    /* glyphless-char */
    font-size: 60%;
}
.org-gnus-group-mail-1 {
    /* gnus-group-mail-1 */
    color: #e1ffe1;
    font-weight: bold;
}
.org-gnus-group-mail-1-empty {
    /* gnus-group-mail-1-empty */
    color: #e1ffe1;
}
.org-gnus-group-mail-2 {
    /* gnus-group-mail-2 */
    color: #c1ffc1;
    font-weight: bold;
}
.org-gnus-group-mail-2-empty {
    /* gnus-group-mail-2-empty */
    color: #c1ffc1;
}
.org-gnus-group-mail-3 {
    /* gnus-group-mail-3 */
    color: #7fffd4;
    font-weight: bold;
}
.org-gnus-group-mail-3-empty {
    /* gnus-group-mail-3-empty */
    color: #7fffd4;
}
.org-gnus-group-mail-low {
    /* gnus-group-mail-low */
    color: #76eec6;
    font-weight: bold;
}
.org-gnus-group-mail-low-empty {
    /* gnus-group-mail-low-empty */
    color: #76eec6;
}
.org-gnus-group-news-1 {
    /* gnus-group-news-1 */
    color: #afeeee;
    font-weight: bold;
}
.org-gnus-group-news-1-empty {
    /* gnus-group-news-1-empty */
    color: #afeeee;
}
.org-gnus-group-news-2 {
    /* gnus-group-news-2 */
    color: #40e0d0;
    font-weight: bold;
}
.org-gnus-group-news-2-empty {
    /* gnus-group-news-2-empty */
    color: #40e0d0;
}
.org-gnus-group-news-3 {
    /* gnus-group-news-3 */
    font-weight: bold;
}
.org-gnus-group-news-3-empty {
}
.org-gnus-group-news-4 {
    /* gnus-group-news-4 */
    font-weight: bold;
}
.org-gnus-group-news-4-empty {
}
.org-gnus-group-news-5 {
    /* gnus-group-news-5 */
    font-weight: bold;
}
.org-gnus-group-news-5-empty {
}
.org-gnus-group-news-6 {
    /* gnus-group-news-6 */
    font-weight: bold;
}
.org-gnus-group-news-6-empty {
}
.org-gnus-group-news-low {
    /* gnus-group-news-low */
    color: #00ced1;
    font-weight: bold;
}
.org-gnus-group-news-low-empty {
    /* gnus-group-news-low-empty */
    color: #00ced1;
}
.org-gnus-splash {
    /* gnus-splash */
    color: #cccccc;
}
.org-gnus-summary-cancelled {
    /* gnus-summary-cancelled */
    color: #121212;
    background-color: #dc752f;
}
.org-gnus-summary-high-ancient {
    /* gnus-summary-high-ancient */
    color: #87ceeb;
    font-weight: bold;
}
.org-gnus-summary-high-read {
    /* gnus-summary-high-read */
    color: #98fb98;
    font-weight: bold;
}
.org-gnus-summary-high-ticked {
    /* gnus-summary-high-ticked */
    color: #ffc0cb;
    font-weight: bold;
}
.org-gnus-summary-high-undownloaded {
    /* gnus-summary-high-undownloaded */
    color: #d3d3d3;
    font-weight: bold;
}
.org-gnus-summary-high-unread {
    /* gnus-summary-high-unread */
    font-weight: bold;
}
.org-gnus-summary-low-ancient {
    /* gnus-summary-low-ancient */
    color: #87ceeb;
    font-style: italic;
}
.org-gnus-summary-low-read {
    /* gnus-summary-low-read */
    color: #98fb98;
    font-style: italic;
}
.org-gnus-summary-low-ticked {
    /* gnus-summary-low-ticked */
    color: #ffc0cb;
    font-style: italic;
}
.org-gnus-summary-low-undownloaded {
    /* gnus-summary-low-undownloaded */
    color: #008b8b;
    font-style: italic;
}
.org-gnus-summary-low-unread {
    /* gnus-summary-low-unread */
    font-style: italic;
}
.org-gnus-summary-normal-ancient {
    /* gnus-summary-normal-ancient */
    color: #87ceeb;
}
.org-gnus-summary-normal-read {
    /* gnus-summary-normal-read */
    color: #98fb98;
}
.org-gnus-summary-normal-ticked {
    /* gnus-summary-normal-ticked */
    color: #ffc0cb;
}
.org-gnus-summary-normal-undownloaded {
    /* gnus-summary-normal-undownloaded */
    color: #008b8b;
}
.org-gnus-summary-normal-unread {
}
.org-gnus-summary-selected {
    /* gnus-summary-selected */
    text-decoration: underline;
}
.org-haskell-constructor {
    /* haskell-constructor-face */
    color: #ce537a;
    font-weight: bold;
}
.org-haskell-debug-muted {
    /* haskell-debug-muted-face */
    color: #999;
}
.org-haskell-debug-newline {
    /* haskell-debug-newline-face */
    background-color: #f0f0f0;
    font-weight: bold;
}
.org-haskell-debug-trace-number {
    /* haskell-debug-trace-number-face */
    background-color: #f5f5f5;
    font-weight: bold;
}
.org-haskell-error {
    /* haskell-error-face */
    text-decoration: underline;
}
.org-haskell-hole {
    /* haskell-hole-face */
    text-decoration: underline;
}
.org-haskell-interactive-face-compile-error {
    /* haskell-interactive-face-compile-error */
    color: #e0211d;
}
.org-haskell-interactive-face-compile-warning {
    /* haskell-interactive-face-compile-warning */
    color: #dc752f;
}
.org-haskell-interactive-face-garbage {
    /* haskell-interactive-face-garbage */
    color: #2d9574;
}
.org-haskell-interactive-face-prompt {
    /* haskell-interactive-face-prompt */
    color: #bc6ec5;
    font-weight: bold;
}
.org-haskell-interactive-face-prompt2 {
    /* haskell-interactive-face-prompt2 */
    color: #4f97d7;
    font-weight: bold;
}
.org-haskell-interactive-face-result {
    /* haskell-interactive-face-result */
    color: #2d9574;
}
.org-haskell-keyword {
    /* haskell-keyword-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-haskell-liquid-haskell-annotation {
    /* haskell-liquid-haskell-annotation-face */
    color: #bc6ec5;
}
.org-haskell-literate-comment {
    /* haskell-literate-comment-face */
    color: #3a3a3a;
}
.org-haskell-operator {
    /* haskell-operator-face */
    color: #7590db;
}
.org-haskell-pragma {
    /* haskell-pragma-face */
    color: #bc6ec5;
}
.org-haskell-type {
    /* haskell-type-face */
    color: #ce537a;
    font-weight: bold;
}
.org-haskell-warning {
    /* haskell-warning-face */
    text-decoration: underline;
}
.org-header-line {
    /* header-line */
    background-color: #0a0814;
}
.org-header-line-highlight {
    /* header-line-highlight */
    color: #d0d0d0;
    background-color: #444155;
}
.org-helm-action {
    /* helm-action */
    text-decoration: underline;
}
.org-helm-bookmark-addressbook {
    /* helm-bookmark-addressbook */
    color: #ff6347;
}
.org-helm-bookmark-directory {
    /* helm-bookmark-directory */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-bookmark-file {
    /* helm-bookmark-file */
    color: #d0d0d0;
}
.org-helm-bookmark-file-not-found {
    /* helm-bookmark-file-not-found */
    color: #6c7b8b;
}
.org-helm-bookmark-gnus {
    /* helm-bookmark-gnus */
    color: #c56ec3;
}
.org-helm-bookmark-info {
    /* helm-bookmark-info */
    color: #c56ec3;
}
.org-helm-bookmark-man {
    /* helm-bookmark-man */
    color: #c56ec3;
}
.org-helm-bookmark-w3m {
    /* helm-bookmark-w3m */
    color: #c56ec3;
}
.org-helm-buffer-archive {
    /* helm-buffer-archive */
    color: #ffd700;
}
.org-helm-buffer-directory {
    /* helm-buffer-directory */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-buffer-file {
    /* helm-buffer-file */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-buffer-modified {
    /* helm-buffer-modified */
    color: #606060;
}
.org-helm-buffer-not-saved {
    /* helm-buffer-not-saved */
    color: #c56ec3;
    background-color: #121212;
}
.org-helm-buffer-process {
    /* helm-buffer-process */
    color: #4f97d7;
    background-color: #121212;
}
.org-helm-buffer-saved-out {
    /* helm-buffer-saved-out */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-buffer-size {
    /* helm-buffer-size */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-candidate-number {
    /* helm-candidate-number */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-candidate-number-suspended {
    /* helm-candidate-number-suspended */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-delete-async-message {
    /* helm-delete-async-message */
    color: #ffff00;
}
.org-helm-etags-file {
    /* helm-etags-file */
    color: #8b814c;
    text-decoration: underline;
}
.org-helm-ff-denied {
    /* helm-ff-denied */
    color: #ff0000;
    background-color: #000000;
}
.org-helm-ff-directory {
    /* helm-ff-directory */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-dirs {
    /* helm-ff-dirs */
    color: #bc6ec5;
    font-weight: bold;
}
.org-helm-ff-dotted-directory {
    /* helm-ff-dotted-directory */
    color: #4f97d7;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-dotted-symlink-directory {
    /* helm-ff-dotted-symlink-directory */
    color: #28def0;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-executable {
    /* helm-ff-executable */
    color: #86dc2f;
    background-color: #121212;
}
.org-helm-ff-file {
    /* helm-ff-file */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-ff-invalid-symlink {
    /* helm-ff-invalid-symlink */
    color: #f2241f;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-pipe {
    /* helm-ff-pipe */
    color: #ffff00;
    background-color: #000000;
}
.org-helm-ff-prefix {
    /* helm-ff-prefix */
    color: #121212;
    background-color: #4f97d7;
}
.org-helm-ff-socket {
    /* helm-ff-socket */
    color: #ff1493;
}
.org-helm-ff-suid {
    /* helm-ff-suid */
    color: #ffffff;
    background-color: #ff0000;
}
.org-helm-ff-symlink {
    /* helm-ff-symlink */
    color: #28def0;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-ff-truename {
    /* helm-ff-truename */
    color: #2d9574;
}
.org-helm-grep-cmd-line {
    /* helm-grep-cmd-line */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-grep-file {
    /* helm-grep-file */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-grep-finish {
    /* helm-grep-finish */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-grep-lineno {
    /* helm-grep-lineno */
    color: #ce537a;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-grep-match {
    /* helm-grep-match */
    color: #4f97d7;
    background-color: #000000;
}
.org-helm-header {
    /* helm-header */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-header-line-left-margin {
    /* helm-header-line-left-margin */
    color: #4f97d7;
}
.org-helm-helper {
    /* helm-helper */
    color: #d0d0d0;
    background-color: #121212;
}
.org-helm-history-deleted {
    /* helm-history-deleted */
    color: #f2241f;
    background-color: #121212;
    font-weight: bold;
}
.org-helm-history-remote {
    /* helm-history-remote */
    color: #ff6a6a;
}
.org-helm-lisp-completion-info {
    /* helm-lisp-completion-info */
    color: #ff0000;
}
.org-helm-lisp-show-completion {
    /* helm-lisp-show-completion */
    background-color: #2f4f4f;
}
.org-helm-locate-finish {
    /* helm-locate-finish */
    color: #00ff00;
}
.org-helm-m-x-key {
    /* helm-M-x-key */
    color: #ffa500;
    text-decoration: underline;
}
.org-helm-match {
    /* helm-match */
    color: #4f97d7;
    background-color: #000000;
}
.org-helm-match-item {
    /* helm-match-item */
    color: #4f97d7;
    background-color: #000000;
}
.org-helm-minibuffer-prompt {
    /* helm-minibuffer-prompt */
    color: #4f97d7;
    font-weight: bold;
}
.org-helm-moccur-buffer {
    /* helm-moccur-buffer */
    color: #7590db;
    background-color: #121212;
}
.org-helm-mode-prefix {
    /* helm-mode-prefix */
    color: #000000;
    background-color: #ff0000;
}
.org-helm-non-file-buffer {
    /* helm-non-file-buffer */
    font-style: italic;
}
.org-helm-prefarg {
    /* helm-prefarg */
    color: #00ff00;
}
.org-helm-resume-need-update {
    /* helm-resume-need-update */
    background-color: #ff0000;
}
.org-helm-selection {
    /* helm-selection */
    background-color: #444155;
}
.org-helm-selection-line {
    /* helm-selection-line */
    background-color: #000000;
}
.org-helm-separator {
    /* helm-separator */
    color: #c56ec3;
    background-color: #121212;
}
.org-helm-source-header {
    /* helm-source-header */
    color: #121212;
    background-color: #c56ec3;
    font-weight: bold;
}
.org-helm-visible-mark {
    /* helm-visible-mark */
    color: #4f97d7;
    background-color: #100a14;
}
.org-help-argument-name {
    /* help-argument-name */
    font-style: italic;
}
.org-hi-black-b {
    /* hi-black-b */
    font-weight: bold;
}
.org-hi-black-hb {
    /* hi-black-hb */
    font-size: 167%;
    font-weight: bold;
}
.org-hi-blue {
    /* hi-blue */
    color: #000000;
    background-color: #add8e6;
}
.org-hi-blue-b {
    /* hi-blue-b */
    color: #0000ff;
    font-weight: bold;
}
.org-hi-green {
    /* hi-green */
    color: #67b11d;
    background-color: #293235;
}
.org-hi-green-b {
    /* hi-green-b */
    color: #00ff00;
    font-weight: bold;
}
.org-hi-pink {
    /* hi-pink */
    color: #000000;
    background-color: #ffc0cb;
}
.org-hi-red-b {
    /* hi-red-b */
    color: #ff0000;
    font-weight: bold;
}
.org-hi-yellow {
    /* hi-yellow */
    color: #b1951d;
    background-color: #32322c;
}
.org-highlight {
    /* highlight */
    color: #d0d0d0;
    background-color: #444155;
}
.org-highlight-numbers-number {
    /* highlight-numbers-number */
    color: #a45bad;
}
.org-hl-line {
    /* hl-line */
    background-color: #000000;
}
.org-hl-paren {
}
.org-hl-todo {
    /* hl-todo */
    color: #cc9393;
    font-weight: bold;
}
.org-holiday {
    /* holiday */
    background-color: #8b4513;
}
.org-homoglyph {
    /* homoglyph */
    color: #00ffff;
}
.org-hydra-face-amaranth {
    /* hydra-face-amaranth */
    color: #E52B50;
    font-weight: bold;
}
.org-hydra-face-blue {
    /* hydra-face-blue */
    color: #4f97d7;
}
.org-hydra-face-pink {
    /* hydra-face-pink */
    color: #FF6EB4;
    font-weight: bold;
}
.org-hydra-face-red {
    /* hydra-face-red */
    color: #f2241f;
}
.org-hydra-face-teal {
    /* hydra-face-teal */
    color: #367588;
    font-weight: bold;
}
.org-ibuffer-locked-buffer {
    /* ibuffer-locked-buffer */
    color: #bc8f8f;
}
.org-ido-first-match {
    /* ido-first-match */
    color: #c56ec3;
    font-weight: bold;
}
.org-ido-incomplete-regexp {
    /* ido-incomplete-regexp */
    color: #dc752f;
    background-color: #121212;
}
.org-ido-indicator {
    /* ido-indicator */
    color: #ffff00;
    background-color: #ff0000;
}
.org-ido-only-match {
    /* ido-only-match */
    color: #86dc2f;
    font-weight: bold;
}
.org-ido-subdir {
    /* ido-subdir */
    color: #4f97d7;
}
.org-ido-vertical-first-match {
    /* ido-vertical-first-match-face */
    color: #c56ec3;
    font-weight: bold;
}
.org-ido-vertical-match {
    /* ido-vertical-match-face */
    color: #c56ec3;
}
.org-ido-vertical-only-match {
    /* ido-vertical-only-match-face */
    color: #86dc2f;
    font-weight: bold;
}
.org-ido-virtual {
    /* ido-virtual */
    color: #4f97d7;
}
.org-imenu-list-entry {
}
.org-imenu-list-entry-face-0 {
    /* imenu-list-entry-face-0 */
    color: #ffd700;
}
.org-imenu-list-entry-face-1 {
    /* imenu-list-entry-face-1 */
    color: #90ee90;
}
.org-imenu-list-entry-face-2 {
    /* imenu-list-entry-face-2 */
    color: #add8e6;
}
.org-imenu-list-entry-face-3 {
    /* imenu-list-entry-face-3 */
    color: #f4a460;
}
.org-imenu-list-entry-subalist-face-0 {
    /* imenu-list-entry-subalist-face-0 */
    color: #ffd700;
    font-weight: bold;
    text-decoration: underline;
}
.org-imenu-list-entry-subalist-face-1 {
    /* imenu-list-entry-subalist-face-1 */
    color: #90ee90;
    font-weight: bold;
    text-decoration: underline;
}
.org-imenu-list-entry-subalist-face-2 {
    /* imenu-list-entry-subalist-face-2 */
    color: #add8e6;
    font-weight: bold;
    text-decoration: underline;
}
.org-imenu-list-entry-subalist-face-3 {
    /* imenu-list-entry-subalist-face-3 */
    color: #f4a460;
    font-weight: bold;
    text-decoration: underline;
}
.org-info-header-node {
    /* info-header-node */
    color: #bc6ec5;
    font-weight: bold;
}
.org-info-header-xref {
    /* info-header-xref */
    color: #bc6ec5;
    text-decoration: underline;
}
.org-info-index-match {
    /* info-index-match */
    color: #86dc2f;
    background-color: #444155;
}
.org-info-menu-header {
    /* info-menu-header */
    font-weight: bold;
}
.org-info-menu-star {
    /* info-menu-star */
    color: #ff0000;
}
.org-info-node {
    /* info-node */
    color: #bc6ec5;
    font-weight: bold;
}
.org-info-quoted {
}
.org-info-title-1 {
    /* info-title-1 */
    font-size: 140%;
    font-weight: bold;
}
.org-info-title-2 {
    /* info-title-2 */
    font-size: 130%;
    font-weight: bold;
}
.org-info-title-3 {
    /* info-title-3 */
    font-size: 130%;
}
.org-info-title-4 {
    /* info-title-4 */
    font-size: 120%;
}
.org-info-xref {
    /* info-xref */
    color: #606060;
    text-decoration: underline;
}
.org-internal-border {
}
.org-isearch {
    /* isearch */
    color: #121212;
    background-color: #86dc2f;
}
.org-isearch-fail {
    /* isearch-fail */
    background-color: #8b0000;
}
.org-italic {
    /* italic */
    font-style: italic;
}
.org-keyword {
    /* font-lock-keyword-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-lazy-highlight {
    /* lazy-highlight */
    background-color: #29422d;
}
.org-line-number {
    /* line-number */
    color: #44505c;
    background-color: #000000;
}
.org-line-number-current-line {
    /* line-number-current-line */
    color: #d0d0d0;
    background-color: #000000;
}
.org-link {
    /* link */
    color: #606060;
    text-decoration: underline;
}
.org-link-visited {
    /* link-visited */
    color: #c56ec3;
    text-decoration: underline;
}
.org-log-edit-header {
    /* log-edit-header */
    color: #4f97d7;
    font-weight: bold;
}
.org-log-edit-summary {
    /* log-edit-summary */
    color: #bc6ec5;
    font-weight: bold;
}
.org-log-edit-unknown-header {
    /* log-edit-unknown-header */
    color: #606060;
}
.org-lv-separator {
    /* lv-separator */
    background-color: #4d4d4d;
}
.org-macrostep-compiler-macro {
    /* macrostep-compiler-macro-face */
    font-style: italic;
}
.org-macrostep-expansion-highlight {
    /* macrostep-expansion-highlight-face */
    background-color: #222222;
}
.org-macrostep-gensym-1 {
    /* macrostep-gensym-1 */
    color: #8080c0;
    font-weight: bold;
}
.org-macrostep-gensym-2 {
    /* macrostep-gensym-2 */
    color: #8fbc8f;
    font-weight: bold;
}
.org-macrostep-gensym-3 {
    /* macrostep-gensym-3 */
    color: #daa520;
    font-weight: bold;
}
.org-macrostep-gensym-4 {
    /* macrostep-gensym-4 */
    color: #cd5c5c;
    font-weight: bold;
}
.org-macrostep-gensym-5 {
    /* macrostep-gensym-5 */
    color: #da70d6;
    font-weight: bold;
}
.org-macrostep-macro {
    /* macrostep-macro-face */
    text-decoration: underline;
}
.org-magit-bisect-bad {
    /* magit-bisect-bad */
    color: #8b3a3a;
}
.org-magit-bisect-good {
    /* magit-bisect-good */
    color: #556b2f;
}
.org-magit-bisect-skip {
    /* magit-bisect-skip */
    color: #b8860b;
}
.org-magit-blame-date {
    /* magit-blame-date */
    color: #67b11d;
    background-color: #32322c;
}
.org-magit-blame-dimmed {
    /* magit-blame-dimmed */
    color: #7f7f7f;
}
.org-magit-blame-hash {
    /* magit-blame-hash */
    color: #bc6ec5;
    background-color: #32322c;
}
.org-magit-blame-heading {
    /* magit-blame-heading */
    color: #67b11d;
    background-color: #32322c;
}
.org-magit-blame-highlight {
    /* magit-blame-highlight */
    color: #ffffff;
    background-color: #404040;
}
.org-magit-blame-margin {
    /* magit-blame-margin */
    color: #ffffff;
    background-color: #404040;
}
.org-magit-blame-name {
    /* magit-blame-name */
    color: #b1951d;
    background-color: #32322c;
}
.org-magit-blame-summary {
    /* magit-blame-summary */
    color: #b1951d;
    background-color: #32322c;
}
.org-magit-branch-current {
    /* magit-branch-current */
    color: #4f97d7;
    background-color: #293239;
    font-weight: bold;
}
.org-magit-branch-local {
    /* magit-branch-local */
    color: #4f97d7;
    background-color: #293239;
    font-weight: bold;
}
.org-magit-branch-remote {
    /* magit-branch-remote */
    color: #2d9574;
    background-color: #293235;
    font-weight: bold;
}
.org-magit-branch-remote-head {
    /* magit-branch-remote-head */
    color: #2d9574;
    background-color: #293235;
    font-weight: bold;
}
.org-magit-branch-upstream {
    /* magit-branch-upstream */
    font-style: italic;
}
.org-magit-cherry-equivalent {
    /* magit-cherry-equivalent */
    color: #ff00ff;
}
.org-magit-cherry-unmatched {
    /* magit-cherry-unmatched */
    color: #00ffff;
}
.org-magit-diff-added {
    /* magit-diff-added */
    color: #ddffdd;
    background-color: #335533;
}
.org-magit-diff-added-highlight {
    /* magit-diff-added-highlight */
    color: #cceecc;
    background-color: #336633;
}
.org-magit-diff-base {
    /* magit-diff-base */
    color: #ffffcc;
    background-color: #555522;
}
.org-magit-diff-base-highlight {
    /* magit-diff-base-highlight */
    color: #eeeebb;
    background-color: #666622;
}
.org-magit-diff-conflict-heading {
    /* magit-diff-conflict-heading */
    color: #9a9aba;
    background-color: #34323e;
}
.org-magit-diff-context {
    /* magit-diff-context */
    color: #b3b3b3;
}
.org-magit-diff-context-highlight {
    /* magit-diff-context-highlight */
    color: #d0d0d0;
    background-color: #000000;
}
.org-magit-diff-file-heading {
    /* magit-diff-file-heading */
    font-weight: bold;
}
.org-magit-diff-file-heading-selection {
    /* magit-diff-file-heading-selection */
    color: #cd8162;
    background-color: #000000;
}
.org-magit-diff-hunk-heading {
    /* magit-diff-hunk-heading */
    color: #9a9aba;
    background-color: #34323e;
}
.org-magit-diff-hunk-heading-highlight {
    /* magit-diff-hunk-heading-highlight */
    color: #d0d0d0;
    background-color: #5e5079;
}
.org-magit-diff-hunk-heading-selection {
    /* magit-diff-hunk-heading-selection */
    color: #cd8162;
    background-color: #5e5079;
}
.org-magit-diff-hunk-region {
    /* magit-diff-hunk-region */
    font-weight: bold;
}
.org-magit-diff-lines-boundary {
    /* magit-diff-lines-boundary */
    color: #cccccc;
    background-color: #8b4c39;
}
.org-magit-diff-lines-heading {
    /* magit-diff-lines-heading */
    color: #cccccc;
    background-color: #8b4c39;
}
.org-magit-diff-our {
    /* magit-diff-our */
    color: #ffdddd;
    background-color: #553333;
}
.org-magit-diff-our-highlight {
    /* magit-diff-our-highlight */
    color: #eecccc;
    background-color: #663333;
}
.org-magit-diff-removed {
    /* magit-diff-removed */
    color: #ffdddd;
    background-color: #553333;
}
.org-magit-diff-removed-highlight {
    /* magit-diff-removed-highlight */
    color: #eecccc;
    background-color: #663333;
}
.org-magit-diff-their {
    /* magit-diff-their */
    color: #ddffdd;
    background-color: #335533;
}
.org-magit-diff-their-highlight {
    /* magit-diff-their-highlight */
    color: #cceecc;
    background-color: #336633;
}
.org-magit-diff-whitespace-warning {
    /* magit-diff-whitespace-warning */
    background-color: #606060;
}
.org-magit-diffstat-added {
    /* magit-diffstat-added */
    color: #448844;
}
.org-magit-diffstat-removed {
    /* magit-diffstat-removed */
    color: #aa4444;
}
.org-magit-dimmed {
    /* magit-dimmed */
    color: #7f7f7f;
}
.org-magit-filename {
}
.org-magit-hash {
    /* magit-hash */
    color: #7590db;
}
.org-magit-head {
    /* magit-head */
    color: #4f97d7;
    background-color: #293239;
    font-weight: bold;
}
.org-magit-header-line {
    /* magit-header-line */
    color: #4f97d7;
    font-weight: bold;
}
.org-magit-header-line-key {
    /* magit-header-line-key */
    color: #4f97d7;
}
.org-magit-header-line-log-select {
    /* magit-header-line-log-select */
    font-weight: bold;
}
.org-magit-keyword {
    /* magit-keyword */
    color: #2d9574;
}
.org-magit-keyword-squash {
    /* magit-keyword-squash */
    color: #dc752f;
    background-color: #121212;
}
.org-magit-log-author {
    /* magit-log-author */
    color: #bc6ec5;
}
.org-magit-log-date {
    /* magit-log-date */
    color: #cccccc;
}
.org-magit-log-graph {
    /* magit-log-graph */
    color: #cccccc;
}
.org-magit-mode-line-process {
    /* magit-mode-line-process */
    font-weight: bold;
}
.org-magit-mode-line-process-error {
    /* magit-mode-line-process-error */
    color: #e0211d;
}
.org-magit-popup-argument {
    /* magit-popup-argument */
    color: #dc752f;
    background-color: #121212;
}
.org-magit-popup-disabled-argument {
    /* magit-popup-disabled-argument */
    color: #686868;
}
.org-magit-popup-heading {
    /* magit-popup-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-magit-popup-key {
    /* magit-popup-key */
    color: #4f97d7;
}
.org-magit-popup-option-value {
    /* magit-popup-option-value */
    color: #2d9574;
}
.org-magit-process-ng {
    /* magit-process-ng */
    color: #dc752f;
    font-weight: bold;
}
.org-magit-process-ok {
    /* magit-process-ok */
    color: #bc6ec5;
    font-weight: bold;
}
.org-magit-reflog-amend {
    /* magit-reflog-amend */
    color: #a31db1;
}
.org-magit-reflog-checkout {
    /* magit-reflog-checkout */
    color: #4f97d7;
}
.org-magit-reflog-cherry-pick {
    /* magit-reflog-cherry-pick */
    color: #67b11d;
}
.org-magit-reflog-commit {
    /* magit-reflog-commit */
    color: #67b11d;
}
.org-magit-reflog-merge {
    /* magit-reflog-merge */
    color: #67b11d;
}
.org-magit-reflog-other {
    /* magit-reflog-other */
    color: #28def0;
}
.org-magit-reflog-rebase {
    /* magit-reflog-rebase */
    color: #a31db1;
}
.org-magit-reflog-remote {
    /* magit-reflog-remote */
    color: #28def0;
}
.org-magit-reflog-reset {
    /* magit-reflog-reset */
    color: #f2241f;
}
.org-magit-refname {
    /* magit-refname */
    color: #cccccc;
}
.org-magit-refname-pullreq {
    /* magit-refname-pullreq */
    color: #cccccc;
}
.org-magit-refname-stash {
    /* magit-refname-stash */
    color: #cccccc;
}
.org-magit-refname-wip {
    /* magit-refname-wip */
    color: #cccccc;
}
.org-magit-section-heading {
    /* magit-section-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-magit-section-heading-selection {
    /* magit-section-heading-selection */
    color: #cd8162;
}
.org-magit-section-highlight {
    /* magit-section-highlight */
    background-color: #000000;
}
.org-magit-section-secondary-heading {
    /* magit-section-secondary-heading */
    font-weight: bold;
}
.org-magit-sequence-done {
    /* magit-sequence-done */
    color: #7590db;
}
.org-magit-sequence-drop {
    /* magit-sequence-drop */
    color: #cd5c5c;
}
.org-magit-sequence-exec {
    /* magit-sequence-exec */
    color: #7590db;
}
.org-magit-sequence-head {
    /* magit-sequence-head */
    color: #b0e2ff;
}
.org-magit-sequence-onto {
    /* magit-sequence-onto */
    color: #7590db;
}
.org-magit-sequence-part {
    /* magit-sequence-part */
    color: #eedc82;
}
.org-magit-sequence-pick {
    /* magit-sequence-pick */
    color: #d0d0d0;
    background-color: #121212;
}
.org-magit-sequence-stop {
    /* magit-sequence-stop */
    color: #b4eeb4;
}
.org-magit-signature-bad {
    /* magit-signature-bad */
    color: #ff0000;
    font-weight: bold;
}
.org-magit-signature-error {
    /* magit-signature-error */
    color: #cd2626;
}
.org-magit-signature-expired {
    /* magit-signature-expired */
    color: #ffa500;
}
.org-magit-signature-expired-key {
    /* magit-signature-expired-key */
    color: #ffa500;
}
.org-magit-signature-good {
    /* magit-signature-good */
    color: #00ff00;
}
.org-magit-signature-revoked {
    /* magit-signature-revoked */
    color: #d02090;
}
.org-magit-signature-untrusted {
    /* magit-signature-untrusted */
    color: #00ffff;
}
.org-magit-tag {
    /* magit-tag */
    color: #eedc82;
}
.org-match {
    /* match */
    color: #86dc2f;
    background-color: #444155;
}
.org-menu {
}
.org-message-cited-text {
    /* message-cited-text */
    color: #ffaeb9;
}
.org-message-header-cc {
    /* message-header-cc */
    color: #7fff00;
    font-weight: bold;
}
.org-message-header-name {
    /* message-header-name */
    color: #00ff00;
}
.org-message-header-newsgroups {
    /* message-header-newsgroups */
    color: #ffff00;
    font-weight: bold;
    font-style: italic;
}
.org-message-header-other {
    /* message-header-other */
    color: #ff3e96;
}
.org-message-header-subject {
    /* message-header-subject */
    color: #c0ff3e;
}
.org-message-header-to {
    /* message-header-to */
    color: #caff70;
    font-weight: bold;
}
.org-message-header-xheader {
    /* message-header-xheader */
    color: #00bfff;
}
.org-message-mml {
    /* message-mml */
    color: #00fa9a;
}
.org-message-separator {
    /* message-separator */
    color: #b0e2ff;
}
.org-minibuffer-prompt {
    /* minibuffer-prompt */
    color: #4f97d7;
    font-weight: bold;
}
.org-mm-command-output {
    /* mm-command-output */
    color: #228b22;
}
.org-mode-line {
    /* mode-line */
    color: #d0d0d0;
    background-color: #121212;
}
.org-mode-line-buffer-id {
    /* mode-line-buffer-id */
    color: #bc6ec5;
    font-weight: bold;
}
.org-mode-line-buffer-id-inactive {
    /* mode-line-buffer-id-inactive */
    color: #bc6ec5;
    font-weight: bold;
}
.org-mode-line-emphasis {
    /* mode-line-emphasis */
    font-weight: bold;
}
.org-mode-line-highlight {
}
.org-mode-line-inactive {
    /* mode-line-inactive */
    color: #d0d0d0;
    background-color: #121212;
}
.org-mouse {
}
.org-mouse-drag-and-drop-region {
    /* mouse-drag-and-drop-region */
    background-color: #444155;
}
.org-negation-char {
    /* font-lock-negation-char-face */
    color: #a45bad;
}
.org-next-error {
    /* next-error */
    background-color: #444155;
}
.org-nobreak-hyphen {
    /* nobreak-hyphen */
    color: #00ffff;
}
.org-nobreak-space {
    /* nobreak-space */
    color: #00ffff;
    text-decoration: underline;
}
.org-org-agenda-calendar-event {
    /* org-agenda-calendar-event */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-calendar-sexp {
    /* org-agenda-calendar-sexp */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-clocking {
    /* org-agenda-clocking */
    color: #c56ec3;
    background-color: #444155;
}
.org-org-agenda-column-dateline {
    /* org-agenda-column-dateline */
    background-color: #444155;
}
.org-org-agenda-current-time {
    /* org-agenda-current-time */
    color: #2d9574;
}
.org-org-agenda-date {
    /* org-agenda-date */
    color: #7590db;
}
.org-org-agenda-date-today {
    /* org-agenda-date-today */
    color: #4f97d7;
    font-weight: bold;
}
.org-org-agenda-date-weekend {
    /* org-agenda-date-weekend */
    color: #7590db;
    font-weight: bold;
}
.org-org-agenda-diary {
    /* org-agenda-diary */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-dimmed-todo {
    /* org-agenda-dimmed-todo-face */
    color: #7f7f7f;
}
.org-org-agenda-done {
    /* org-agenda-done */
    color: #86dc2f;
}
.org-org-agenda-filter-category {
    /* org-agenda-filter-category */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-filter-effort {
    /* org-agenda-filter-effort */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-filter-regexp {
    /* org-agenda-filter-regexp */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-filter-tags {
    /* org-agenda-filter-tags */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-agenda-restriction-lock {
    /* org-agenda-restriction-lock */
    background-color: #1C1C1C;
}
.org-org-agenda-structure {
    /* org-agenda-structure */
    color: #c56ec3;
    font-weight: bold;
}
.org-org-archived {
    /* org-archived */
    color: #686868;
}
.org-org-block {
    /* org-block */
    color: #cbc1d5;
    background-color: #121212;
}
.org-org-block-begin-line {
    /* org-block-begin-line */
    color: #3a3a3a;
    background-color: #080808;
}
.org-org-block-end-line {
    /* org-block-end-line */
    color: #3a3a3a;
    background-color: #080808;
}
.org-org-checkbox {
    /* org-checkbox */
    font-weight: bold;
}
.org-org-checkbox-statistics-done {
    /* org-checkbox-statistics-done */
    color: #86dc2f;
    background-color: #293235;
    font-weight: bold;
}
.org-org-checkbox-statistics-todo {
    /* org-checkbox-statistics-todo */
    color: #dc752f;
    background-color: #32322c;
    font-weight: bold;
}
.org-org-clock-overlay {
    /* org-clock-overlay */
    color: #c56ec3;
}
.org-org-code {
    /* org-code */
    color: #28def0;
}
.org-org-column {
    /* org-column */
    background-color: #444155;
}
.org-org-column-title {
    /* org-column-title */
    background-color: #444155;
}
.org-org-date {
    /* org-date */
    color: #7590db;
    text-decoration: underline;
}
.org-org-date-selected {
    /* org-date-selected */
    color: #121212;
    background-color: #bc6ec5;
}
.org-org-default {
    /* org-default */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-document-info {
    /* org-document-info */
    color: #afeeee;
}
.org-org-document-info-keyword {
    /* org-document-info-keyword */
    color: #3a3a3a;
}
.org-org-document-title {
    /* org-document-title */
    color: #bc6ec5;
    font-size: 140%;
    font-weight: bold;
    text-decoration: underline;
}
.org-org-done {
    /* org-done */
    color: #86dc2f;
    background-color: #293235;
    font-weight: bold;
}
.org-org-drawer {
    /* org-drawer */
    color: #87cefa;
}
.org-org-ellipsis {
    /* org-ellipsis */
    color: #4f97d7;
}
.org-org-footnote {
    /* org-footnote */
    color: #d0d0d0;
    text-decoration: underline;
}
.org-org-formula {
    /* org-formula */
    color: #ff7f24;
}
.org-org-headline-done {
    /* org-headline-done */
    color: #ffa07a;
}
.org-org-hide {
    /* org-hide */
    color: #121212;
}
.org-org-kbd {
    /* org-kbd */
    color: #d0d0d0;
    background-color: #444155;
}
.org-org-latex-and-related {
    /* org-latex-and-related */
    color: #deb887;
}
.org-org-level-1 {
    /* org-level-1 */
    color: #4f97d7;
    font-size: 130%;
    font-weight: bold;
}
.org-org-level-2 {
    /* org-level-2 */
    color: #2d9574;
    font-size: 120%;
    font-weight: bold;
}
.org-org-level-3 {
    /* org-level-3 */
    color: #67b11d;
    font-size: 110%;
}
.org-org-level-4 {
    /* org-level-4 */
    color: #b1951d;
}
.org-org-level-5 {
    /* org-level-5 */
    color: #4f97d7;
}
.org-org-level-6 {
    /* org-level-6 */
    color: #2d9574;
}
.org-org-level-7 {
    /* org-level-7 */
    color: #67b11d;
}
.org-org-level-8 {
    /* org-level-8 */
    color: #b1951d;
}
.org-org-link {
    /* org-link */
    color: #606060;
    text-decoration: underline;
}
.org-org-list-dt {
    /* org-list-dt */
    font-weight: bold;
}
.org-org-macro {
    /* org-macro */
    color: #deb887;
}
.org-org-meta-line {
    /* org-meta-line */
    color: #3a3a3a;
}
.org-org-mode-line-clock {
    /* org-mode-line-clock */
    color: #d0d0d0;
    background-color: #121212;
}
.org-org-mode-line-clock-overrun {
    /* org-mode-line-clock-overrun */
    color: #e0211d;
}
.org-org-priority {
    /* org-priority */
    color: #dc752f;
    font-weight: bold;
}
.org-org-property-value {
}
.org-org-quote {
    /* org-quote */
    color: #cbc1d5;
    background-color: #121212;
    font-style: italic;
}
.org-org-scheduled {
    /* org-scheduled */
    color: #c56ec3;
}
.org-org-scheduled-previously {
    /* org-scheduled-previously */
    color: #d0d0d0;
    font-style: italic;
}
.org-org-scheduled-today {
    /* org-scheduled-today */
    color: #bc6ec5;
}
.org-org-sexp-date {
    /* org-sexp-date */
    color: #d0d0d0;
}
.org-org-special-keyword {
    /* org-special-keyword */
    color: #bc6ec5;
}
.org-org-table {
    /* org-table */
    color: #d0d0d0;
    background-color: #000000;
}
.org-org-tag {
    /* org-tag */
    color: #3a3a3a;
}
.org-org-tag-group {
    /* org-tag-group */
    color: #3a3a3a;
}
.org-org-target {
    /* org-target */
    text-decoration: underline;
}
.org-org-time-grid {
    /* org-time-grid */
    color: #2d9574;
}
.org-org-todo {
    /* org-todo */
    color: #dc752f;
    background-color: #32322c;
    font-weight: bold;
}
.org-org-upcoming-deadline {
    /* org-upcoming-deadline */
    color: #dc752f;
    font-weight: bold;
}
.org-org-upcoming-distant-deadline {
    /* org-upcoming-distant-deadline */
    color: #86dc2f;
    font-weight: bold;
}
.org-org-verbatim {
    /* org-verbatim */
    color: #4f97d7;
}
.org-org-verse {
    /* org-verse */
    color: #cbc1d5;
    background-color: #121212;
    font-style: italic;
}
.org-org-warning {
    /* org-warning */
    color: #e0211d;
    font-weight: bold;
}
.org-outline-1 {
    /* outline-1 */
    color: #4f97d7;
    font-size: 130%;
    font-weight: bold;
}
.org-outline-2 {
    /* outline-2 */
    color: #2d9574;
    font-size: 120%;
    font-weight: bold;
}
.org-outline-3 {
    /* outline-3 */
    color: #67b11d;
    font-size: 110%;
}
.org-outline-4 {
    /* outline-4 */
    color: #b1951d;
}
.org-outline-5 {
    /* outline-5 */
    color: #4f97d7;
}
.org-outline-6 {
    /* outline-6 */
    color: #2d9574;
}
.org-outline-7 {
    /* outline-7 */
    color: #67b11d;
}
.org-outline-8 {
    /* outline-8 */
    color: #b1951d;
}
.org-package-description {
    /* package-description */
    color: #d0d0d0;
    background-color: #121212;
}
.org-package-name {
    /* package-name */
    color: #606060;
    text-decoration: underline;
}
.org-package-status-avail-obso {
    /* package-status-avail-obso */
    color: #e0211d;
}
.org-package-status-available {
    /* package-status-available */
    color: #d0d0d0;
    background-color: #121212;
}
.org-package-status-built-in {
    /* package-status-built-in */
    color: #4f97d7;
}
.org-package-status-dependency {
    /* package-status-dependency */
    color: #606060;
}
.org-package-status-disabled {
    /* package-status-disabled */
    color: #dc752f;
    background-color: #121212;
}
.org-package-status-external {
    /* package-status-external */
    color: #4f97d7;
}
.org-package-status-held {
    /* package-status-held */
    color: #a45bad;
}
.org-package-status-incompat {
    /* package-status-incompat */
    color: #e0211d;
}
.org-package-status-installed {
    /* package-status-installed */
    color: #606060;
}
.org-package-status-unsigned {
    /* package-status-unsigned */
    color: #dc752f;
    background-color: #121212;
}
.org-page-break-lines {
    /* page-break-lines */
    color: #262626;
}
.org-persp-face-lighter-buffer-not-in-persp {
    /* persp-face-lighter-buffer-not-in-persp */
    color: #00F;
    background-color: #F00;
    font-weight: bold;
}
.org-persp-face-lighter-default {
    /* persp-face-lighter-default */
    font-style: italic;
}
.org-persp-face-lighter-nil-persp {
    /* persp-face-lighter-nil-persp */
    font-weight: bold;
    font-style: italic;
}
.org-powerline-active0 {
    /* powerline-active0 */
    color: #d0d0d0;
    background-color: #121212;
}
.org-powerline-active1 {
    /* powerline-active1 */
    color: #d0d0d0;
    background-color: #262626;
}
.org-powerline-active2 {
    /* powerline-active2 */
    color: #d0d0d0;
    background-color: #262626;
}
.org-powerline-inactive0 {
    /* powerline-inactive0 */
    color: #d0d0d0;
    background-color: #121212;
}
.org-powerline-inactive1 {
    /* powerline-inactive1 */
    color: #d0d0d0;
    background-color: #000000;
}
.org-powerline-inactive2 {
    /* powerline-inactive2 */
    color: #d0d0d0;
    background-color: #000000;
}
.org-preprocessor {
    /* font-lock-preprocessor-face */
    color: #bc6ec5;
}
.org-query-replace {
    /* query-replace */
    color: #121212;
    background-color: #86dc2f;
}
.org-rainbow-delimiters-base {
}
.org-rainbow-delimiters-depth-1 {
    /* rainbow-delimiters-depth-1-face */
    color: #4f97d7;
}
.org-rainbow-delimiters-depth-2 {
    /* rainbow-delimiters-depth-2-face */
    color: #bc6ec5;
}
.org-rainbow-delimiters-depth-3 {
    /* rainbow-delimiters-depth-3-face */
    color: #2d9574;
}
.org-rainbow-delimiters-depth-4 {
    /* rainbow-delimiters-depth-4-face */
    color: #67b11d;
}
.org-rainbow-delimiters-depth-5 {
    /* rainbow-delimiters-depth-5-face */
    color: #b1951d;
}
.org-rainbow-delimiters-depth-6 {
    /* rainbow-delimiters-depth-6-face */
    color: #4f97d7;
}
.org-rainbow-delimiters-depth-7 {
    /* rainbow-delimiters-depth-7-face */
    color: #bc6ec5;
}
.org-rainbow-delimiters-depth-8 {
    /* rainbow-delimiters-depth-8-face */
    color: #2d9574;
}
.org-rainbow-delimiters-depth-9 {
    /* rainbow-delimiters-depth-9-face */
    color: #9cb6ad;
}
.org-rainbow-delimiters-mismatched {
    /* rainbow-delimiters-mismatched-face */
    color: #e0211d;
    text-decoration: overline;
}
.org-rainbow-delimiters-unmatched {
    /* rainbow-delimiters-unmatched-face */
    color: #e0211d;
    text-decoration: overline;
}
.org-read-multiple-choice {
    /* read-multiple-choice-face */
    font-weight: bold;
    text-decoration: underline;
}
.org-rectangle-preview {
    /* rectangle-preview */
    background-color: #444155;
}
.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: #444155;
}
.org-rmail-header-name {
    /* rmail-header-name */
    color: #bc6ec5;
    font-weight: bold;
}
.org-rmail-highlight {
    /* rmail-highlight */
    color: #d0d0d0;
    background-color: #444155;
}
.org-scroll-bar {
}
.org-secondary-selection {
    /* secondary-selection */
    background-color: #100a14;
}
.org-sgml-namespace {
    /* sgml-namespace */
    color: #4f97d7;
}
.org-shadow {
    /* shadow */
    color: #686868;
}
.org-show-paren-match {
    /* show-paren-match */
    color: #86dc2f;
    font-weight: bold;
    text-decoration: underline;
}
.org-show-paren-match-expression {
    /* show-paren-match-expression */
    background-color: #29422d;
}
.org-show-paren-mismatch {
    /* show-paren-mismatch */
    color: #e0211d;
    font-weight: bold;
    text-decoration: underline;
}
.org-sldb-catch-tag {
    /* sldb-catch-tag-face */
    color: #d0d0d0;
    background-color: #444155;
}
.org-sldb-condition {
    /* sldb-condition-face */
    color: #dc752f;
    background-color: #121212;
}
.org-sldb-detailed-frame-line {
}
.org-sldb-frame-label {
    /* sldb-frame-label-face */
    color: #686868;
}
.org-sldb-frame-line {
}
.org-sldb-local-name {
    /* sldb-local-name-face */
    color: #7590db;
}
.org-sldb-local-value {
}
.org-sldb-non-restartable-frame-line {
}
.org-sldb-reference {
    /* sldb-reference-face */
    text-decoration: underline;
}
.org-sldb-restart {
}
.org-sldb-restart-number {
    /* sldb-restart-number-face */
    font-weight: bold;
}
.org-sldb-restart-type {
    /* sldb-restart-type-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-sldb-restartable-frame-line {
    /* sldb-restartable-frame-line-face */
    color: #32cd32;
}
.org-sldb-section {
    /* sldb-section-face */
    background-color: #0a0814;
}
.org-sldb-topline {
}
.org-slime-apropos-label {
    /* slime-apropos-label */
    font-style: italic;
}
.org-slime-apropos-symbol {
    /* slime-apropos-symbol */
    font-weight: bold;
}
.org-slime-early-deprecation-warning {
    /* slime-early-deprecation-warning-face */
    text-decoration: line-through;
}
.org-slime-error {
    /* slime-error-face */
    text-decoration: underline;
}
.org-slime-final-deprecation-warning {
    /* slime-final-deprecation-warning-face */
    text-decoration: line-through;
}
.org-slime-highlight {
    /* slime-highlight-face */
    color: #d0d0d0;
    background-color: #444155;
}
.org-slime-inspector-action {
    /* slime-inspector-action-face */
    color: #dc752f;
    background-color: #121212;
}
.org-slime-inspector-label {
    /* slime-inspector-label-face */
    color: #a45bad;
}
.org-slime-inspector-topline {
}
.org-slime-inspector-type {
    /* slime-inspector-type-face */
    color: #ce537a;
    font-weight: bold;
}
.org-slime-inspector-value {
    /* slime-inspector-value-face */
    color: #4f97d7;
}
.org-slime-late-deprecation-warning {
    /* slime-late-deprecation-warning-face */
    text-decoration: line-through;
}
.org-slime-note {
    /* slime-note-face */
    text-decoration: underline;
}
.org-slime-reader-conditional {
    /* slime-reader-conditional-face */
    color: #606060;
}
.org-slime-repl-input {
    /* slime-repl-input-face */
    font-weight: bold;
}
.org-slime-repl-inputed-output {
    /* slime-repl-inputed-output-face */
    color: #c56ec3;
}
.org-slime-repl-output {
    /* slime-repl-output-face */
    color: #2d9574;
}
.org-slime-repl-output-mouseover {
    /* slime-repl-output-mouseover-face */
    color: #c56ec3;
}
.org-slime-repl-prompt {
    /* slime-repl-prompt-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-slime-repl-result {
}
.org-slime-style-warning {
    /* slime-style-warning-face */
    text-decoration: underline;
}
.org-slime-warning {
    /* slime-warning-face */
    text-decoration: underline;
}
.org-sly-action {
    /* sly-action-face */
    color: #dc752f;
}
.org-sly-apropos-label {
    /* sly-apropos-label */
    font-style: italic;
}
.org-sly-apropos-symbol {
    /* sly-apropos-symbol */
    color: #a45bad;
}
.org-sly-db-catch-tag {
}
.org-sly-db-condition {
    /* sly-db-condition-face */
    color: #e0211d;
}
.org-sly-db-frame-label {
    /* sly-db-frame-label-face */
    color: #686868;
}
.org-sly-db-frame-line {
}
.org-sly-db-local-name {
}
.org-sly-db-non-restartable-frame-line {
}
.org-sly-db-restart {
}
.org-sly-db-restart-number {
    /* sly-db-restart-number-face */
    color: #686868;
}
.org-sly-db-restartable-frame-line {
    /* sly-db-restartable-frame-line-face */
    color: #a45bad;
}
.org-sly-db-section {
    /* sly-db-section-face */
    background-color: #0a0814;
}
.org-sly-db-topline {
}
.org-sly-error {
    /* sly-error-face */
    text-decoration: underline;
}
.org-sly-mode-line {
    /* sly-mode-line */
    color: #a45bad;
    font-weight: bold;
}
.org-sly-mrepl-note {
    /* sly-mrepl-note-face */
    color: #4f97d7;
    font-weight: bold;
}
.org-sly-mrepl-output {
    /* sly-mrepl-output-face */
    color: #ff3e96;
}
.org-sly-mrepl-prompt {
    /* sly-mrepl-prompt-face */
    color: #4f97d7;
}
.org-sly-note {
    /* sly-note-face */
    text-decoration: underline;
}
.org-sly-part-button {
    /* sly-part-button-face */
    color: #a45bad;
}
.org-sly-reader-conditional {
    /* sly-reader-conditional-face */
    color: #606060;
}
.org-sly-stickers-armed {
    /* sly-stickers-armed-face */
    color: #000000;
    background-color: #add8e6;
}
.org-sly-stickers-empty {
    /* sly-stickers-empty-face */
    color: #000000;
    background-color: #ffc0cb;
}
.org-sly-stickers-exited-non-locally {
    /* sly-stickers-exited-non-locally-face */
    color: #000000;
    background-color: #ffc0cb;
    text-decoration: line-through;
}
.org-sly-stickers-placed {
    /* sly-stickers-placed-face */
    color: #000000;
    background-color: #d3d3d3;
}
.org-sly-stickers-recordings {
    /* sly-stickers-recordings-face */
    color: #67b11d;
    background-color: #293235;
}
.org-sly-style-warning {
    /* sly-style-warning-face */
    text-decoration: underline;
}
.org-sly-warning {
    /* sly-warning-face */
    text-decoration: underline;
}
.org-smerge-base {
    /* smerge-base */
    background-color: #32322c;
}
.org-smerge-lower {
    /* smerge-lower */
    background-color: #293235;
}
.org-smerge-markers {
    /* smerge-markers */
    color: #9a9aba;
    background-color: #34323e;
}
.org-smerge-refined-added {
    /* smerge-refined-added */
    color: #67b11d;
    background-color: #29422d;
}
.org-smerge-refined-changed {
    /* smerge-refined-changed */
    color: #4f97d7;
    background-color: #2d4252;
}
.org-smerge-refined-removed {
    /* smerge-refined-removed */
    color: #f2241f;
    background-color: #512e31;
}
.org-smerge-upper {
    /* smerge-upper */
    background-color: #3c2a2c;
}
.org-sp-pair-overlay {
    /* sp-pair-overlay-face */
    background-color: #29422d;
}
.org-sp-show-pair-enclosing {
    /* sp-show-pair-enclosing */
    color: #d0d0d0;
    background-color: #444155;
}
.org-sp-show-pair-match {
    /* sp-show-pair-match-face */
    color: #86dc2f;
    font-weight: bold;
    text-decoration: underline;
}
.org-sp-show-pair-match-content {
}
.org-sp-show-pair-mismatch {
    /* sp-show-pair-mismatch-face */
    color: #e0211d;
    font-weight: bold;
    text-decoration: underline;
}
.org-sp-wrap-overlay {
    /* sp-wrap-overlay-face */
    background-color: #29422d;
}
.org-sp-wrap-overlay-closing-pair {
    /* sp-wrap-overlay-closing-pair */
    color: #ff0000;
    background-color: #29422d;
}
.org-sp-wrap-overlay-opening-pair {
    /* sp-wrap-overlay-opening-pair */
    color: #00ff00;
    background-color: #29422d;
}
.org-sp-wrap-tag-overlay {
    /* sp-wrap-tag-overlay-face */
    background-color: #29422d;
}
.org-spaceline-all-the-icons-info {
    /* spaceline-all-the-icons-info-face */
    color: #63B2FF;
}
.org-spaceline-all-the-icons-sunrise {
    /* spaceline-all-the-icons-sunrise-face */
    color: #f6c175;
    background-color: #262626;
}
.org-spaceline-all-the-icons-sunset {
    /* spaceline-all-the-icons-sunset-face */
    color: #fe7714;
    background-color: #262626;
}
.org-spaceline-flycheck-error {
    /* spaceline-flycheck-error */
    color: #e0211d;
}
.org-spaceline-flycheck-info {
    /* spaceline-flycheck-info */
    color: #4f97d7;
}
.org-spaceline-flycheck-warning {
    /* spaceline-flycheck-warning */
    color: #dc752f;
}
.org-spaceline-python-venv {
    /* spaceline-python-venv */
    color: #c56ec3;
}
.org-spacemacs-helm-navigation-ts {
    /* spacemacs-helm-navigation-ts-face */
    color: #000000;
}
.org-spacemacs-ido-navigation-ts {
    /* spacemacs-ido-navigation-ts-face */
    color: #000000;
    font-weight: bold;
}
.org-spacemacs-micro-state-binding {
    /* spacemacs-micro-state-binding-face */
    color: #e0211d;
    font-weight: bold;
}
.org-spacemacs-micro-state-header {
    /* spacemacs-micro-state-header-face */
    color: #000000;
    background-color: #eead0e;
    font-weight: bold;
}
.org-spacemacs-mode-line-new-version-lighter-error {
    /* spacemacs-mode-line-new-version-lighter-error-face */
    color: #e0211d;
}
.org-spacemacs-mode-line-new-version-lighter-success {
    /* spacemacs-mode-line-new-version-lighter-success-face */
    color: #86dc2f;
}
.org-spacemacs-mode-line-new-version-lighter-warning {
    /* spacemacs-mode-line-new-version-lighter-warning-face */
    color: #dc752f;
}
.org-spacemacs-transient-state-title {
    /* spacemacs-transient-state-title-face */
    color: #c56ec3;
    font-weight: bold;
}
.org-string {
    /* font-lock-string-face */
    color: #2d9574;
}
.org-success {
    /* success */
    color: #86dc2f;
}
.org-symbol-overlay-default {
    /* symbol-overlay-default-face */
    color: #d0d0d0;
    background-color: #444155;
}
.org-symbol-overlay-face-1 {
    /* symbol-overlay-face-1 */
    color: #000000;
    background-color: #1e90ff;
}
.org-symbol-overlay-face-2 {
    /* symbol-overlay-face-2 */
    color: #000000;
    background-color: #ff69b4;
}
.org-symbol-overlay-face-3 {
    /* symbol-overlay-face-3 */
    color: #000000;
    background-color: #ffff00;
}
.org-symbol-overlay-face-4 {
    /* symbol-overlay-face-4 */
    color: #000000;
    background-color: #da70d6;
}
.org-symbol-overlay-face-5 {
    /* symbol-overlay-face-5 */
    color: #000000;
    background-color: #ff0000;
}
.org-symbol-overlay-face-6 {
    /* symbol-overlay-face-6 */
    color: #000000;
    background-color: #fa8072;
}
.org-symbol-overlay-face-7 {
    /* symbol-overlay-face-7 */
    color: #000000;
    background-color: #00ff7f;
}
.org-symbol-overlay-face-8 {
    /* symbol-overlay-face-8 */
    color: #000000;
    background-color: #40e0d0;
}
.org-table-cell {
    /* table-cell */
    color: #e5e5e5;
    background-color: #0000ff;
}
.org-tool-bar {
    /* tool-bar */
    color: #000000;
    background-color: #bfbfbf;
}
.org-tooltip {
    /* tooltip */
    color: #d0d0d0;
    background-color: #5e5079;
}
.org-trailing-whitespace {
    /* trailing-whitespace */
    background-color: #606060;
}
.org-transient-active-infix {
    /* transient-active-infix */
    background-color: #100a14;
}
.org-transient-argument {
    /* transient-argument */
    color: #dc752f;
    background-color: #121212;
}
.org-transient-disabled-suffix {
    /* transient-disabled-suffix */
    color: #000000;
    background-color: #ff0000;
    font-weight: bold;
}
.org-transient-enabled-suffix {
    /* transient-enabled-suffix */
    color: #000000;
    background-color: #00ff00;
    font-weight: bold;
}
.org-transient-heading {
    /* transient-heading */
    color: #4f97d7;
    font-weight: bold;
}
.org-transient-inactive-argument {
    /* transient-inactive-argument */
    color: #686868;
}
.org-transient-inactive-value {
    /* transient-inactive-value */
    color: #686868;
}
.org-transient-key {
    /* transient-key */
    color: #4f97d7;
}
.org-transient-mismatched-key {
    /* transient-mismatched-key */
    text-decoration: underline;
}
.org-transient-nonstandard-key {
    /* transient-nonstandard-key */
    text-decoration: underline;
}
.org-transient-separator {
    /* transient-separator */
    background-color: #4d4d4d;
}
.org-transient-unreachable {
    /* transient-unreachable */
    color: #686868;
}
.org-transient-unreachable-key {
    /* transient-unreachable-key */
    color: #686868;
}
.org-transient-value {
    /* transient-value */
    color: #2d9574;
}
.org-tty-menu-disabled {
    /* tty-menu-disabled-face */
    color: #d3d3d3;
    background-color: #0000ff;
}
.org-tty-menu-enabled {
    /* tty-menu-enabled-face */
    color: #ffff00;
    background-color: #0000ff;
    font-weight: bold;
}
.org-tty-menu-selected {
    /* tty-menu-selected-face */
    background-color: #ff0000;
}
.org-type {
    /* font-lock-type-face */
    color: #ce537a;
    font-weight: bold;
}
.org-underline {
    /* underline */
    text-decoration: underline;
}
.org-undo-tree-visualizer-active-branch {
    /* undo-tree-visualizer-active-branch-face */
    color: #ffffff;
    font-weight: bold;
}
.org-undo-tree-visualizer-current {
    /* undo-tree-visualizer-current-face */
    color: #4f97d7;
}
.org-undo-tree-visualizer-default {
    /* undo-tree-visualizer-default-face */
    color: #d0d0d0;
}
.org-undo-tree-visualizer-register {
    /* undo-tree-visualizer-register-face */
    color: #c56ec3;
}
.org-undo-tree-visualizer-unmodified {
    /* undo-tree-visualizer-unmodified-face */
    color: #7590db;
}
.org-variable-name {
    /* font-lock-variable-name-face */
    color: #7590db;
}
.org-variable-pitch {
}
.org-vc-conflict-state {
}
.org-vc-edited-state {
}
.org-vc-locally-added-state {
}
.org-vc-locked-state {
}
.org-vc-missing-state {
}
.org-vc-needs-update-state {
}
.org-vc-removed-state {
}
.org-vc-state-base {
}
.org-vc-up-to-date-state {
}
.org-vertical-border {
    /* vertical-border */
    color: #121212;
}
.org-w3m-haddock-heading {
    /* w3m-haddock-heading-face */
    color: #d0d0d0;
    background-color: #444155;
}
.org-warning {
    /* warning */
    color: #dc752f;
}
.org-warning-1 {
    /* font-lock-warning-face */
    color: #dc752f;
    background-color: #121212;
}
.org-which-func {
    /* which-func */
    color: #bc6ec5;
}
.org-which-key-command-description {
    /* which-key-command-description-face */
    color: #d0d0d0;
}
.org-which-key-docstring {
    /* which-key-docstring-face */
    color: #2d9574;
}
.org-which-key-group-description {
    /* which-key-group-description-face */
    color: #4f97d7;
}
.org-which-key-highlighted-command {
    /* which-key-highlighted-command-face */
    color: #d0d0d0;
    text-decoration: underline;
}
.org-which-key-key {
    /* which-key-key-face */
    color: #bc6ec5;
    font-weight: bold;
}
.org-which-key-local-map-description {
    /* which-key-local-map-description-face */
    color: #d0d0d0;
}
.org-which-key-note {
    /* which-key-note-face */
    color: #2d9574;
}
.org-which-key-separator {
    /* which-key-separator-face */
    color: #2d9574;
}
.org-which-key-special-key {
    /* which-key-special-key-face */
    color: #121212;
    background-color: #bc6ec5;
}
.org-widget-button {
    /* widget-button */
    font-weight: bold;
}
.org-widget-button-pressed {
    /* widget-button-pressed */
    color: #ff0000;
}
.org-widget-documentation {
    /* widget-documentation */
    color: #32cd32;
}
.org-widget-field {
    /* widget-field */
    background-color: #696969;
}
.org-widget-inactive {
    /* widget-inactive */
    color: #686868;
}
.org-widget-single-line-field {
    /* widget-single-line-field */
    background-color: #696969;
}
.org-window-divider {
    /* window-divider */
    color: #999999;
}
.org-window-divider-first-pixel {
    /* window-divider-first-pixel */
    color: #cccccc;
}
.org-window-divider-last-pixel {
    /* window-divider-last-pixel */
    color: #666666;
}
.org-winum {
}
.org-yas--field-debug {
}

/* a { */
/*     color: inherit; */
/*     background-color: inherit; */
/*     font: inherit; */
/*     text-decoration: inherit; */
/* } */
/* a:hover { */
/*     text-decoration: underline; */
/* } */
  /* List */

  @media screen and (min-width: 600px) {
      .nav ul {

          list-style: none;
          background-color: #fffff8;
          text-align: center;
          max-width: 80%;
          padding: 0;
          margin: 0 auto;
          font-weight: 200;
          font-size: 20px;
          /* display: inline-block; */
          height: 55px;
          line-height: 55px;

      }
      button {
          display: none;
      }
      input {
          display: none;
      }

      .navlink {
          text-decoration: none;
          font-family: "Fira Sans", murty-sanskrit Helvetica, sans-serif;
          font-weight: 200;
          font-size: 25px;
          text-align: center;
          /* display:block; */
          /* font: "Fira Sans UltraLight"; */
          /* display: inline-block; */
          /* width: 100px; */
          /* height: 55px; */
          /* line-height: 55px; */
      }
      /* List items */
      .nav li {

          font-family: "Fira Sans", murty-sanskrit, Helvetica, et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif;
          font-size: 1.2em;
          /* font-weight: bold; */
          font-variant: small-caps;
          text-align: center;
          line-height: 40px;
          height: 40px;
          padding: 1%;
          font-weight: 200;
          font-size: 25px;
          /* border-bottom: 1px solid #888; */
          text-decoration: none;
          display: inline-block;
          margin-right: 0 /* -4px */;
      }

      .nav a:link {
          text-decoration: none;
      }
      .nav a:hover {
          text-decoration: none;
          font-weight: 400;
          /* -webkit-box-shadow: 0 0 0.5em #777777; */
          /* -moz-box-shadow: 0 0 0.5em #777777; */
          /* -webkit-border-bottom-left-radius: 2px; */
          /* -moz-border-radius-bottomleft: 2px; */
          /* text-shadow: 0 0 0.9em #777777; */

          /* -webkit-box-shadow: 0 0 0.5em #777777; */
          /* -moz-box-shadow: 0 0 0.5em #777777; */
          /* -webkit-border-bottom-left-radius: 5px; */
          /* -moz-border-radius-bottomleft: 5px; */
          /* transition: .3s background-color; */
      }

      .nav li {
          width: 120px;
          font-family: "Fira Sans", et-book, murty-sanskrit, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif;
          border-bottom: none;
          height: 50px;
          text-decoration: none;
          font-weight: 200;
          line-height: 50px;
          font-size: 1.4em;

      }
  }

  @media screen and (max-width: 600px) {
navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #fffff8;
    align-items: center;
    box-sizing: border-box;
}
navigation .nav {
    /* height: 5vh; */
    /* width: 10vw; */
    /* width: 100%; */
    /* position: fixed; */
    top: 1vh;
    /* padding: 1vw; */
    /* right: 25vw; */
    text-align: center;
}
.nav ul {
    list-style: none;
    background-color: #fffff8;
    text-align: center;
    font-size: 20px;
    padding: 0;
    margin: 0;
}
button {
    font-size: 1.75rem;
    /* font-size: 15px; */
    font-family: "Fira Sans", murty-sanskrit, Helvetica, sans-serif;
    font-variant: small-caps;
    font-weight: 200;
    /* width: 100%; */
    border: 0;
    /* padding:; */
    background:  #fffff8;
    cursor: pointer;
    display: block;
    text-align: center;
}
button:focus {
    outline: 0;
    /* padding: 100%; */
}

#links {
    display: none;
    background-color: #fffff8;
    /* padding: 100% 100%; */
    /* font-size: 30px; */
}

button:focus + #links,
#links:hover {
    display: block;
    position: absolute;
    /* padding: 14px 40px; */
    /* padding: inherit; */
    /* padding-left: 25%; */
    /* padding-right: 25%; */
    font-size: 20px;
    /* right: 5vw; */
}
input {
    display: none;
}
.navlink {
    text-decoration: none;
    font-family: "Fira Sans", murty-sanskrit, Helvetica, sans-serif;
    font-weight: 200;
    /* font-size: 15px; */
    text-align: center;
    /* font: "Fira Sans UltraLight"; */
    display: inline-block;
    /* width: 100px; */
    /* height: 55px; */
    /* line-height: 55px; */
}

/* List items */
.nav li {
    font-family: "Fira Sans", et-book, murty-sanskrit, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif;
    font-size: 1.2em;
    font-variant: small-caps;
    font-weight: 200;
    text-decoration: none;
    line-height: 40px;
    text-align: center;
    margin: 0 auto;
    height: 40px;
}

/* nav a { */
/*     text-decoration: none; */
/*     background-color: #000000; */
/* } */

/* nav a:hover { */
/*     text-decoration: none; */
/*     background-color: #000000; */
/*     /\* -webkit-box-shadow: 0 0 0.5em #777777; *\/ */
/*     /\* -moz-box-shadow: 0 0 0.5em #777777; *\/ */
/*     /\* -webkit-border-bottom-left-radius: 5px; *\/ */
/*     /\* -moz-border-radius-bottomleft: 5px; *\/ */
/*     /\* transition: .3s background-color; *\/ */
/* } */

.nav li {
    width: 120px;
    font-family: "Fira Sans", et-book, murty-sanskrit, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif;
    font-variant: small-caps;
    font-weight: 200;
    text-decoration: none;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;

}

      /* .nav ul { */
      /*     list-style: none; */
      /*     background-color: #fffff8; */
      /*     text-align: left; */
      /*     font-size: 15px; */
      /*     padding: 0; */
      /*     margin: 0; */
      /* } */

      /* .navlink { */
      /*     text-decoration: none; */
      /*     font-family: "Fira Sans", Helvetica, sans-serif; */
      /*     font-weight: 200; */
      /*     font-size: 15px; */
      /*     text-align: center; */
      /*     /\* font: "Fira Sans UltraLight"; *\/ */
      /*     display: inline-block; */
      /*     /\* width: 100px; *\/ */
      /*     /\* height: 55px; *\/ */
      /*     /\* line-height: 55px; *\/ */
      /* } */

      /* /\* List items *\/ */
      /* .nav li { */
      /*     font-family: "Fira Sans", et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif; */
      /*     font-size: 1.2em; */
      /*     font-variant: small-caps; */
      /*     font-weight: 200; */
      /*     text-decoration: none; */
      /*     line-height: 40px; */
      /*     text-align: center; */
      /*     height: 40px; */
      /* } */

      /* /\* nav a { *\/ */
      /* /\*     text-decoration: none; *\/ */
      /* /\*     background-color: #000000; *\/ */
      /* /\* } *\/ */

      /* /\* nav a:hover { *\/ */
      /* /\*     text-decoration: none; *\/ */
      /* /\*     background-color: #000000; *\/ */
      /* /\*     /\\* -webkit-box-shadow: 0 0 0.5em #777777; *\\/ *\/ */
      /* /\*     /\\* -moz-box-shadow: 0 0 0.5em #777777; *\\/ *\/ */
      /* /\*     /\\* -webkit-border-bottom-left-radius: 5px; *\\/ *\/ */
      /* /\*     /\\* -moz-border-radius-bottomleft: 5px; *\\/ *\/ */
      /* /\*     /\\* transition: .3s background-color; *\\/ *\/ */
      /* /\* } *\/ */

      /* .nav li { */
      /*     width: 120px; */
      /*     font-family: "Fira Sans", et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, sans-serif; */
      /*     font-variant: small-caps; */
      /*     font-weight: 200; */
      /*     text-decoration: none; */
      /*     border-bottom: none; */
      /*     height: 50px; */
      /*     line-height: 50px; */
      /*     font-size: 1.4em; */

      /* } */

  }
::-webkit-scrollbar {
         /* scroll-bar */
         width: 0px;
         background: transparent;
     }


.tabs {
  position: relative;
  min-height: 300px; /* This part sucks */
  /* clear: both; */
  margin: 50px 0;
  max-width: 50%;
  text-align: center;
  margin-above: 50px;

}
.tab {
  /* float: left; */
    display: inline-block;
}
.tab label {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: bolder;
    background: #fffff8/* #eee */;
    /* padding: 3px;  */
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;

    /* border: 1px solid #ccc;  */
    margin-left: -1px;
    position: relative;
    left: 1px;
    /* text-decoration: underline; */
}

.tab label:hover {
  background: #fffff8/* #eee */;
  /* padding-left: 20px;  */
  /* padding-right: 20px;  */
  padding-top: 5px;
  /* border: 1px solid #ccc;  */
  margin-left: -1px;
  position: relative;
  left: 1px;
  /* text-decoration: underline; */
  text-shadow: 0 0 0.9em #777777;
}

.tab [type=radio] {
  display: none;
}
.content {
  position: absolute;
  font-size: 1.5rem;
  top: 20%/* 28px */;
  left: 0;
  background: #fffff8;
  right: 0;
  bottom: 0;
  padding: 20px;
  text-align: left;
  /* border: 1px solid #ccc; */
}
[type=radio]:checked ~ label {
  background: #fffff8;
  /* border-bottom: 1px solid #fffff8; */
  text-shadow: 0 0 0.5em #777777;
  text-decoration: none;
  z-index: 2;
}
[type=radio]:checked ~ label ~ .content {
  z-index: 1;
}
/*    /*
/*  * Sidebar
/*  *
/*  * The sidebar is the drawer, the item we are toggling with our handy hamburger
/*  * button in the corner of the page.
/*  *
/*  * This particular sidebar implementation was inspired by Chris Coyier's
/*  * "Offcanvas Menu with CSS Target" article, and the checkbox variation from the
/*  * comments by a reader. It modifies both implementations to continue using the
/*  * checkbox (no change in URL means no polluted browser history), but this uses
/*  * `position` for the menu to avoid some potential content reflow issues.
/*  *
/*  * Source: http://css-tricks.com/off-canvas-menu-with-css-target/#comment-207504
/*  */
/* 
/* /* Style and "hide" the sidebar */
/* .sidebar {
/*   position: fixed;
/*   top: 0;
/*   bottom: 0;
/*   left: -14rem;
/*   width: 14rem;
/*   visibility: hidden;
/*   overflow-y: auto;
/*   font-family: "PT Sans", Helvetica, Arial, sans-serif;
/*   font-size: .875rem; /* 15px */
/*   color: rgba(255,255,255,.6);
/*   background-color: #202020;
/*   -webkit-transition: all .3s ease-in-out;
/*           transition: all .3s ease-in-out;
/* }
/* @media (min-width: 30em) {
/*   .sidebar {
/*     font-size: .75rem; /* 14px */
/*   }
/* }
/* 
/* /* Sidebar content */
/* .sidebar a {
/*   font-weight: normal;
/*   color: #fff;
/* }
/* .sidebar-item {
/*   padding: 1rem;
/* }
/* .sidebar-item p:last-child {
/*   margin-bottom: 0;
/* }
/* 
/* /* Sidebar nav */
/* .sidebar-nav {
/*   border-bottom: 1px solid rgba(255,255,255,.1);
/* }
/* .sidebar-nav-item {
/*   display: block;
/*   padding: .5rem 1rem;
/*   border-top: 1px solid rgba(255,255,255,.1);
/* }
/* .sidebar-nav-item.active,
/* a.sidebar-nav-item:hover,
/* a.sidebar-nav-item:focus {
/*   text-decoration: none;
/*   background-color: rgba(255,255,255,.1);
/*   border-color: transparent;
/* }
/* 
/* @media (min-width: 48em) {
/*   .sidebar-item {
/*     padding: 1.5rem;
/*   }
/*   .sidebar-nav-item {
/*     padding-left:  1.5rem;
/*     padding-right: 1.5rem;
/*   }
/* }
/* 
/* /* Hide the sidebar checkbox that we toggle with `.sidebar-toggle` */
/* .sidebar-checkbox {
/*   position: absolute;
/*   opacity: 0;
/*   -webkit-user-select: none;
/*      -moz-user-select: none;
/*           user-select: none;
/* }
/* 
/* /* Style the `label` that we use to target the `.sidebar-checkbox` */
/* .sidebar-toggle {
/*   position: absolute;
/*   top:  .8rem;
/*   left: 1rem;
/*   display: block;
/*   padding: .25rem .75rem;
/*   color: #505050;
/*   background-color: #fff;
/*   border-radius: .25rem;
/*   cursor: pointer;
/* }
/* 
/* .sidebar-toggle:before {
/*   display: inline-block;
/*   width: 1rem;
/*   height: .75rem;
/*   content: "";
/*   background-image: -webkit-linear-gradient(to bottom, #555, #555 20%, #fff 20%, #fff 40%, #555 40%, #555 60%, #fff 60%, #fff 80%, #555 80%, #555 100%);
/*   background-image:    -moz-linear-gradient(to bottom, #555, #555 20%, #fff 20%, #fff 40%, #555 40%, #555 60%, #fff 60%, #fff 80%, #555 80%, #555 100%);
/*   background-image:     -ms-linear-gradient(to bottom, #555, #555 20%, #fff 20%, #fff 40%, #555 40%, #555 60%, #fff 60%, #fff 80%, #555 80%, #555 100%);
/*   background-image:         linear-gradient(to bottom, #555, #555 20%, #fff 20%, #fff 40%, #555 40%, #555 60%, #fff 60%, #fff 80%, #555 80%, #555 100%);
/* }
/* 
/* .sidebar-toggle:active,
/* #sidebar-checkbox:focus ~ .sidebar-toggle,
/* #sidebar-checkbox:checked ~ .sidebar-toggle {
/*   color: #fff;
/*   background-color: #555;
/* }
/* 
/* .sidebar-toggle:active:before,
/* #sidebar-checkbox:focus ~ .sidebar-toggle:before,
/* #sidebar-checkbox:checked ~ .sidebar-toggle:before {
/*   background-image: -webkit-linear-gradient(to bottom, #fff, #fff 20%, #555 20%, #555 40%, #fff 40%, #fff 60%, #555 60%, #555 80%, #fff 80%, #fff 100%);
/*   background-image:    -moz-linear-gradient(to bottom, #fff, #fff 20%, #555 20%, #555 40%, #fff 40%, #fff 60%, #555 60%, #555 80%, #fff 80%, #fff 100%);
/*   background-image:     -ms-linear-gradient(to bottom, #fff, #fff 20%, #555 20%, #555 40%, #fff 40%, #fff 60%, #555 60%, #555 80%, #fff 80%, #fff 100%);
/*   background-image:         linear-gradient(to bottom, #fff, #fff 20%, #555 20%, #555 40%, #fff 40%, #fff 60%, #555 60%, #555 80%, #fff 80%, #fff 100%);
/* }
/* 
/* @media (min-width: 30.1em) {
/*   .sidebar-toggle {
/*     position: fixed;
/*   }
/* }
/* 
/* @media print {
/*   .sidebar-toggle {
/*     display: none;
/*   }
/* }
/* 
/* /* Slide effect
/*  *
/*  * Handle the sliding effects of the sidebar and content in one spot, seperate
/*  * from the default styles.
/*  *
/*  * As an a heads up, we don't use `transform: translate3d()` here because when
/*  * mixed with `position: fixed;` for the sidebar toggle, it creates a new
/*  * containing block. Put simply, the fixed sidebar toggle behaves like
/*  * `position: absolute;` when transformed.
/*  *
/*  * Read more about it at http://meyerweb.com/eric/thoughts/2011/09/12/.
/*  */
/* 
/* .wrap,
/* .sidebar,
/* .sidebar-toggle {
/*   -webkit-backface-visibility: hidden;
/*       -ms-backface-visibility: hidden;
/*           backface-visibility: hidden;
/* }
/* .wrap,
/* .sidebar-toggle {
/*   -webkit-transition: -webkit-transform .3s ease-in-out;
/*           transition: transform .3s ease-in-out;
/* }
/* 
/* #sidebar-checkbox:checked + .sidebar {
/*   z-index: 10;
/*   visibility: visible;
/* }
/* #sidebar-checkbox:checked ~ .sidebar,
/* #sidebar-checkbox:checked ~ .wrap,
/* #sidebar-checkbox:checked ~ .sidebar-toggle {
/*   -webkit-transform: translateX(14rem);
/*       -ms-transform: translateX(14rem);
/*           transform: translateX(14rem);
/* }
/*  */

Author: Pranav Vats

Email: pranavats at disroot dot org

Created: 2021-07-27 Tue 11:29

Validate