/*
 * Cascading stylesheet for GNU Emacs org mode
 * Nicolas P. Rougier - September 2020
 * Released under a Creative Commons CC-BY 4.0 licence
 */

@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:300,400,500');
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu&display=swap');

td:lang(ar) {
    color: green;
    font-family: 'Noto Nastaliq Urdu', serif;
}

body:lang(ar) {
    color: green;
    font-family: 'Noto Nastaliq Urdu', serif;
}

p:lang(ar) {
    color: green;
    font-family: 'Noto Nastaliq Urdu', serif;
}

body {
    font-family: "Roboto Mono", monospace;
    font-size: 14px;
    font-weight: 300;
    color:  rgba(51, 51, 51, 1.00);
    line-height: 1.4em;
    font-weight: light;
    counter-reset: section;
    counter-reset: toc-section;
    counter-increment: toc-section;
}

a, a:visited {
    text-decoration: none;
    color: rgba(26,115,232, 1.00);
}
.org-bold {
    font-weight: 400;
}
i, i a {
    color: #999999;
    font-style: normal;
}
.org-italic, .org-org-meta-line {
    color: rgba(48,63,159, 0.75);
    font-style: normal;
}
.org-face-salient {
    font-weight: 400;
}


/* Blinking cursor when strike-through */
.custom { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }


/* --- Side notes --- */
div.side-note::before {
    content: "Note";
    color: rgba(0,0,0,.75);
    font-weight: 400;
}
div.side-note {
    color: rgba(0,0,0,.5);
    float: left;
    font-size: .85em;
    line-height: 1.25em;
    margin-left: -24em;
    width: 20em;
}

/* --- Table of contents --- */
#table-of-contents {
    padding-top: 0em;
    margin-top: 0em;
    text-transform: uppercase;
}
#table-of-contents ul {
    padding: 0;
    font-weight: 400;
    list-style: none;
    /* counter-reset: list 0; */
}
#table-of-contents ul ul {
    padding-left:0em;
    font-weight: 300;
    font-size: 90%;
    line-height: 1.5em;
    margin-top: 0em;
    margin-bottom: 1em;
    padding-left: 2em;
}
#table-of-contents h2:before {
    content: "";
    counter-reset: section;
}
#table-of-contents ul li {
    vertical-align: top;
    display: inline-block;
    width: 32%;
}
#table-of-contents ul li:before {
    display: inline-block;
    /* counter-increment: list; */
    /* content: counters(list, ".") "."; */
    width: 2.0em;
    margin-left: -2.0em;
    text-align: right;
    text-transform: uppercase;
    color:#2255bb;
}
#table-of-contents ul li ul,
#table-of-contents ul li ul li {
    display: block;
    width: 100%;
    padding-left: 0;
    line-height: 1.35em;
}
#table-of-contents ul li ul li:before {
    content: ""
}
#table-of-contents h2 {
    font-size: 1em;
    font-weight: 400;
    padding-top: 5em;
}
#table-of-contents h2:before {
    content: "";
}



blockquote {
    color: #999999;
    padding-top: 0;
    margin-left: 1em;
    padding-left: 1em;
    border-left: 3px solid #cccccc;
}

ul.org-ul {
    padding-left: 0
}
ul.org-ul li  {
    list-style-type: none;
    margin-bottom: .5em;
}

ul.org-ul li p {
    display: inline-block;
    margin-top: 0em;
    margin-bottom: 0em;
}

ul.org-ul li::before {
    display: inline-block;
    content: "â€” ";
    color: #999999;
    width: 1em;
    margin-left: -1em;
}

ol.org-ol {
    padding-left: 0;
    margin-left: 2em;
    list-style: none;
    counter-reset: li;
}
.org-ol li  {
    counter-increment: li;
    margin-bottom: .25em;
}
.org-ol li::before {
    content: counter(li) ". ";
    color: #999999;
    display: inline-block;
    width: 2em;
    margin-left: -2em;
}



#content, #postamble {
    margin: 0 auto;
    max-width: 720px;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
}

#postamble {
/*    border-top: 1px solid #999999; */
    padding-top: 1.5em;
}
#postamble p, #postamble a {
    color: #999999;
    line-height: 1.25em;
    margin: 0;
    text-align: right;
}

h1.title {
    font-size: 1.5em;
    margin-top: 4em;
    margin-bottom: 0em;
    font-weight: 400;
    text-align: left;
}

span.subtitle {
    display: inline-block;
    margin-top: .25em;
    font-size: 74.5%;
    font-weight: 300;
    color: #999999;
}


h3 { padding-top: .5em; }
h1, h2, h3, h4 {
    color: black;
    font-size: 1em;
    font-weight: 400;
    /* font-variant: all-small-caps; */
    text-transform: uppercase;
}
h2 { padding-top: 5em; }
h3 { padding-top: 3em; }

body {
  counter-reset: section;
}
h2 {
  counter-reset: subsection;
}
h2::before {
    color: #cccccc;
    float: left;
    text-align: right;
    font-weight: 300;
    width: 7.5em;
    margin-left: -8.0em;
    counter-increment: section;
    content: "Chapter " counter(section) " ";
}


h3::before {
    color: #cccccc;
    float: left;
    text-align: right;
    font-weight: 300;
    width: 2.5em;
    margin-left: -3.0em;
    counter-increment: subsection;
    content: counter(section) "." counter(subsection) " ";
}



code {
    background-color: #f9f9f9;
    font-family: "Roboto Mono", sans-serif;
    font-weight: 400;
}

pre::before {
    color: #cccccc;
    float: left;
    text-align: right;
    font-weight: 300;
    width: 3.0em;
    margin-left: -4.25em;
    font-variant: small-caps;
    content: "";
}
pre.src-lisp::before { content: "lisp"; }
pre.src-org::before { content: "org"; }

pre {
    color: #00008b;
    background-color: #fbfbfb;
    overflow: auto;
    margin: 0em;
    padding: 0.25em;
    padding-left: 0.5em;
    line-height: 1.35em;
    font-family: "Roboto Mono", sans-serif;
    font-weight: 300;
    border-left: 2px dotted #00008b;
}
pre.src {
    position: relative;
    overflow: visible;
}

/* --- Code folding --- */
details {
    color: rgba(48,63,159, 1.00);
    background: #fbfbfb;
    border: 1px solid rgba(48,63,159, 1.00);
    border-radius: 3px;
    padding:  0.25em;
    margin-bottom: 1.0em;
}
details pre {
    border: 0;
}
details pre.src-lisp::before { content: ""; }
summary {
    outline: 0;
    color: rgba(48,63,159, 1.00);
}
summary::after {
    font-size: 0.85em;
    color: rgba(48,63,159, 0.25);
    display: inline-block;
    float: right;
    content: "Click to fold/unfold";
    padding-right:  0.5em;
}

/* --- Table --- */
table { min-width: 100%; }
table, tbody, td, tr, th, colgroup, thead {
    border: 0;
/*    padding: 0;*/
}
table {
    margin-top: 1em;
}
thead {
    border-bottom: 1px dashed black;
}
th {
    text-align: left;
    font-weight: 400;
    padding: 0;
    margin-bottom: 0.25em;
    padding-bottom: 0.25em;
}
td { padding: 0; }

tr:nth-child(even) {background: #f9f9f9;}
tr:nth-child(odd) {background: #ffffff;}
tbody {
/* border-bottom: 1px solid black; */
}

/* --- Description list --- */
dd {
    margin-top: 0.25em;
    margin-bottom: 0.50em;
}

/* --- Back links in header --- */
div.back a {
    float: right;
    font-weight: 300;
    color: #cccccc;
    font-variant: small-caps;
    margin-top: -2.5em;
}
/* h2 { border-bottom: .5px solid #999999; } */

/* mjx-xypic svg > g { */
/*     stroke: #FFFFFF !important; */
/* } */

/* mjx-xypic-object { */
/*     color: #FFFFFF !important; */
/* } */

/* .MJX-TEX{ */
/*     color: #FFFFF !important; */
/* } */

:not(.menu) > ul { list-style: none; padding-left: 0; }

:not(.menu) > ul { list-style-type: none; }

:not(.menu) > ul > li:before { content: "-"; margin-right: 9px; }

.menu { border-top: var(--border); border-bottom: var(--border); margin-bottom: 25px; }

.menu ul { margin-top: 12px; margin-bottom: 12px; padding-left: 0px; list-style-type: none; text-align: right; }

.menu ul li { display: inline; margin-left: 10px; }

.menu ul li a { text-decoration: none; color: var(--text-color); }

.menu ul li a:hover { text-decoration: none; color: var(--background-color); background-color: var(--base-color); }


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

/* html { */
/*   line-height: 1.15; /\* 1 *\/ */
/*   -webkit-text-size-adjust: 100%; /\* 2 *\/ */
/* } */

/* /\* Sections */
/*    ========================================================================== *\/ */

/* /\** */
/*  * Remove the margin in all browsers. */
/*  *\/ */

/* body { */
/*   margin: 0; */
/* } */

/* /\** */
/*  * Render the `main` element consistently in IE. */
/*  *\/ */

/* main { */
/*   display: block; */
/* } */

/* /\** */
/*  * Correct the font size and margin on `h1` elements within `section` and */
/*  * `article` contexts in Chrome, Firefox, and Safari. */
/*  *\/ */

/* h1 { */
/*   font-size: 2em; */
/*   margin: 0.67em 0; */
/* } */

/* /\* Grouping content */
/*    ========================================================================== *\/ */

/* /\** */
/*  * 1. Add the correct box sizing in Firefox. */
/*  * 2. Show the overflow in Edge and IE. */
/*  *\/ */

/* hr { */
/*   box-sizing: content-box; /\* 1 *\/ */
/*   height: 0; /\* 1 *\/ */
/*   overflow: visible; /\* 2 *\/ */
/* } */

/* /\** */
/*  * 1. Correct the inheritance and scaling of font size in all browsers. */
/*  * 2. Correct the odd `em` font sizing in all browsers. */
/*  *\/ */

/* pre { */
/*   font-family: monospace, monospace; /\* 1 *\/ */
/*   font-size: 1em; /\* 2 *\/ */
/* } */

/* /\* Text-level semantics */
/*    ========================================================================== *\/ */

/* /\** */
/*  * Remove the gray background on active links in IE 10. */
/*  *\/ */

/* a { */
/*   background-color: transparent; */
/* } */

/* /\** */
/*  * 1. Remove the bottom border in Chrome 57- */
/*  * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
/*  *\/ */

/* abbr[title] { */
/*   border-bottom: none; /\* 1 *\/ */
/*   text-decoration: underline; /\* 2 *\/ */
/*   -webkit-text-decoration: underline dotted; */
/*           text-decoration: underline dotted; /\* 2 *\/ */
/* } */

/* /\** */
/*  * Add the correct font weight in Chrome, Edge, and Safari. */
/*  *\/ */

/* b, */
/* strong { */
/*   font-weight: bolder; */
/* } */

/* /\** */
/*  * 1. Correct the inheritance and scaling of font size in all browsers. */
/*  * 2. Correct the odd `em` font sizing in all browsers. */
/*  *\/ */

/* code, */
/* kbd, */
/* samp { */
/*   font-family: monospace, monospace; /\* 1 *\/ */
/*   font-size: 1em; /\* 2 *\/ */
/* } */

/* /\** */
/*  * Add the correct font size in all browsers. */
/*  *\/ */

/* small { */
/*   font-size: 80%; */
/* } */

/* /\** */
/*  * Prevent `sub` and `sup` elements from affecting the line height in */
/*  * all browsers. */
/*  *\/ */

/* sub, */
/* sup { */
/*   font-size: 75%; */
/*   line-height: 0; */
/*   position: relative; */
/*   vertical-align: baseline; */
/* } */

/* sub { */
/*   bottom: -0.25em; */
/* } */

/* sup { */
/*   top: -0.5em; */
/* } */

/* /\* Embedded content */
/*    ========================================================================== *\/ */

/* /\** */
/*  * Remove the border on images inside links in IE 10. */
/*  *\/ */

/* img { */
/*   border-style: none; */
/* } */

/* /\* Forms */
/*    ========================================================================== *\/ */

/* /\** */
/*  * 1. Change the font styles in all browsers. */
/*  * 2. Remove the margin in Firefox and Safari. */
/*  *\/ */

/* button, */
/* input, */
/* optgroup, */
/* select, */
/* textarea { */
/*   font-family: inherit; /\* 1 *\/ */
/*   font-size: 100%; /\* 1 *\/ */
/*   line-height: 1.15; /\* 1 *\/ */
/*   margin: 0; /\* 2 *\/ */
/* } */

/* /\** */
/*  * Show the overflow in IE. */
/*  * 1. Show the overflow in Edge. */
/*  *\/ */

/* button, */
/* input { /\* 1 *\/ */
/*   overflow: visible; */
/* } */

/* /\** */
/*  * Remove the inheritance of text transform in Edge, Firefox, and IE. */
/*  * 1. Remove the inheritance of text transform in Firefox. */
/*  *\/ */

/* button, */
/* select { /\* 1 *\/ */
/*   text-transform: none; */
/* } */

/* /\** */
/*  * Correct the inability to style clickable types in iOS and Safari. */
/*  *\/ */

/* button, */
/* [type="button"], */
/* [type="reset"], */
/* [type="submit"] { */
/*   -webkit-appearance: button; */
/* } */

/* /\** */
/*  * Remove the inner border and padding in Firefox. */
/*  *\/ */

/* button::-moz-focus-inner, */
/* [type="button"]::-moz-focus-inner, */
/* [type="reset"]::-moz-focus-inner, */
/* [type="submit"]::-moz-focus-inner { */
/*   border-style: none; */
/*   padding: 0; */
/* } */

/* /\** */
/*  * Restore the focus styles unset by the previous rule. */
/*  *\/ */

/* button:-moz-focusring, */
/* [type="button"]:-moz-focusring, */
/* [type="reset"]:-moz-focusring, */
/* [type="submit"]:-moz-focusring { */
/*   outline: 1px dotted ButtonText; */
/* } */

/* /\** */
/*  * Correct the padding in Firefox. */
/*  *\/ */

/* fieldset { */
/*   padding: 0.35em 0.75em 0.625em; */
/* } */

/* /\** */
/*  * 1. Correct the text wrapping in Edge and IE. */
/*  * 2. Correct the color inheritance from `fieldset` elements in IE. */
/*  * 3. Remove the padding so developers are not caught out when they zero out */
/*  *    `fieldset` elements in all browsers. */
/*  *\/ */

/* legend { */
/*   box-sizing: border-box; /\* 1 *\/ */
/*   color: inherit; /\* 2 *\/ */
/*   display: table; /\* 1 *\/ */
/*   max-width: 100%; /\* 1 *\/ */
/*   padding: 0; /\* 3 *\/ */
/*   white-space: normal; /\* 1 *\/ */
/* } */

/* /\** */
/*  * Add the correct vertical alignment in Chrome, Firefox, and Opera. */
/*  *\/ */

/* progress { */
/*   vertical-align: baseline; */
/* } */

/* /\** */
/*  * Remove the default vertical scrollbar in IE 10+. */
/*  *\/ */

/* textarea { */
/*   overflow: auto; */
/* } */

/* /\** */
/*  * 1. Add the correct box sizing in IE 10. */
/*  * 2. Remove the padding in IE 10. */
/*  *\/ */

/* [type="checkbox"], */
/* [type="radio"] { */
/*   box-sizing: border-box; /\* 1 *\/ */
/*   padding: 0; /\* 2 *\/ */
/* } */

/* /\** */
/*  * Correct the cursor style of increment and decrement buttons in Chrome. */
/*  *\/ */

/* [type="number"]::-webkit-inner-spin-button, */
/* [type="number"]::-webkit-outer-spin-button { */
/*   height: auto; */
/* } */

/* /\** */
/*  * 1. Correct the odd appearance in Chrome and Safari. */
/*  * 2. Correct the outline style in Safari. */
/*  *\/ */

/* [type="search"] { */
/*   -webkit-appearance: textfield; /\* 1 *\/ */
/*   outline-offset: -2px; /\* 2 *\/ */
/* } */

/* /\** */
/*  * Remove the inner padding in Chrome and Safari on macOS. */
/*  *\/ */

/* [type="search"]::-webkit-search-decoration { */
/*   -webkit-appearance: none; */
/* } */

/* /\** */
/*  * 1. Correct the inability to style clickable types in iOS and Safari. */
/*  * 2. Change font properties to `inherit` in Safari. */
/*  *\/ */

/* ::-webkit-file-upload-button { */
/*   -webkit-appearance: button; /\* 1 *\/ */
/*   font: inherit; /\* 2 *\/ */
/* } */

/* /\* Interactive */
/*    ========================================================================== *\/ */

/* /\* */
/*  * Add the correct display in Edge, IE 10+, and Firefox. */
/*  *\/ */

/* details { */
/*   display: block; */
/* } */

/* /\* */
/*  * Add the correct display in all browsers. */
/*  *\/ */

/* summary { */
/*   display: list-item; */
/* } */

/* /\* Misc */
/*    ========================================================================== *\/ */

/* /\** */
/*  * Add the correct display in IE 10+. */
/*  *\/ */

/* template { */
/*   display: none; */
/* } */

/* /\** */
/*  * Add the correct display in IE 10. */
/*  *\/ */

/* [hidden] { */
/*   display: none; */
/* } */

/* /\** */
/*  * Manually forked from SUIT CSS Base: https://github.com/suitcss/base */
/*  * A thin layer on top of normalize.css that provides a starting point more */
/*  * suitable for web applications. */
/*  *\/ */

/* /\** */
/*  * Removes the default spacing and border for appropriate elements. */
/*  *\/ */

/* blockquote, */
/* dl, */
/* dd, */
/* h1, */
/* h2, */
/* h3, */
/* h4, */
/* h5, */
/* h6, */
/* hr, */
/* figure, */
/* p, */
/* pre { */
/*   margin: 0; */
/* } */

/* button { */
/*   background-color: transparent; */
/*   background-image: none; */
/* } */

/* /\** */
/*  * Work around a Firefox/IE bug where the transparent `button` background */
/*  * results in a loss of the default `button` focus styles. */
/*  *\/ */

/* button:focus { */
/*   outline: 1px dotted; */
/*   outline: 5px auto -webkit-focus-ring-color; */
/* } */

/* fieldset { */
/*   margin: 0; */
/*   padding: 0; */
/* } */

/* ol, */
/* ul { */
/*   list-style: none; */
/*   margin: 0; */
/*   padding: 0; */
/* } */

/* /\** */
/*  * Tailwind custom reset styles */
/*  *\/ */

/* /\** */
/*  * 1. Use the user's configured `sans` font-family (with Tailwind's default */
/*  *    sans-serif font stack as a fallback) as a sane default. */
/*  * 2. Use Tailwind's default "normal" line-height so the user isn't forced */
/*  *    to override it to ensure consistency even when using the default theme. */
/*  *\/ */

/* html { */
/*   font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /\* 1 *\/ */
/*   line-height: 1.5; /\* 2 *\/ */
/* } */

/* /\** */
/*  * 1. Prevent padding and border from affecting element width. */
/*  * */
/*  *    We used to set this in the html element and inherit from */
/*  *    the parent element for everything else. This caused issues */
/*  *    in shadow-dom-enhanced elements like <details> where the content */
/*  *    is wrapped by a div with box-sizing set to `content-box`. */
/*  * */
/*  *    https://github.com/mozdevs/cssremedy/issues/4 */
/*  * */
/*  * */
/*  * 2. Allow adding a border to an element by just adding a border-width. */
/*  * */
/*  *    By default, the way the browser specifies that an element should have no */
/*  *    border is by setting it's border-style to `none` in the user-agent */
/*  *    stylesheet. */
/*  * */
/*  *    In order to easily add borders to elements by just setting the `border-width` */
/*  *    property, we change the default border-style for all elements to `solid`, and */
/*  *    use border-width to hide them instead. This way our `border` utilities only */
/*  *    need to set the `border-width` property instead of the entire `border` */
/*  *    shorthand, making our border utilities much more straightforward to compose. */
/*  * */
/*  *    https://github.com/tailwindcss/tailwindcss/pull/116 */
/*  *\/ */

/* *, */
/* ::before, */
/* ::after { */
/*   box-sizing: border-box; /\* 1 *\/ */
/*   border-width: 0; /\* 2 *\/ */
/*   border-style: solid; /\* 2 *\/ */
/*   border-color: #e2e8f0; /\* 2 *\/ */
/* } */

/* /\* */
/*  * Ensure horizontal rules are visible by default */
/*  *\/ */

/* hr { */
/*   border-top-width: 1px; */
/* } */

/* /\** */
/*  * Undo the `border-style: none` reset that Normalize applies to images so that */
/*  * our `border-{width}` utilities have the expected effect. */
/*  * */
/*  * The Normalize reset is unnecessary for us since we default the border-width */
/*  * to 0 on all elements. */
/*  * */
/*  * https://github.com/tailwindcss/tailwindcss/issues/362 */
/*  *\/ */

/* img { */
/*   border-style: solid; */
/* } */

/* textarea { */
/*   resize: vertical; */
/* } */

/* input::-moz-placeholder, textarea::-moz-placeholder { */
/*   color: #a0aec0; */
/* } */

/* input:-ms-input-placeholder, textarea:-ms-input-placeholder { */
/*   color: #a0aec0; */
/* } */

/* input::placeholder, */
/* textarea::placeholder { */
/*   color: #a0aec0; */
/* } */

/* button, */
/* [role="button"] { */
/*   cursor: pointer; */
/* } */

/* table { */
/*   border-collapse: collapse; */
/* } */

/* h1, */
/* h2, */
/* h3, */
/* h4, */
/* h5, */
/* h6 { */
/*   font-size: inherit; */
/*   font-weight: inherit; */
/* } */

/* /\** */
/*  * Reset links to optimize for opt-in styling instead of */
/*  * opt-out. */
/*  *\/ */

/* a { */
/*   color: inherit; */
/*   text-decoration: inherit; */
/* } */

/* /\** */
/*  * Reset form element properties that are easy to forget to */
/*  * style explicitly so you don't inadvertently introduce */
/*  * styles that deviate from your design system. These styles */
/*  * supplement a partial reset that is already applied by */
/*  * normalize.css. */
/*  *\/ */

/* button, */
/* input, */
/* optgroup, */
/* select, */
/* textarea { */
/*   padding: 0; */
/*   line-height: inherit; */
/*   color: inherit; */
/* } */

/* /\** */
/*  * Use the configured 'mono' font family for elements that */
/*  * are expected to be rendered with a monospace font, falling */
/*  * back to the system monospace stack if there is no configured */
/*  * 'mono' font family. */
/*  *\/ */

/* pre, */
/* code, */
/* kbd, */
/* samp { */
/*   font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; */
/* } */

/* /\** */
/*  * Make replaced elements `display: block` by default as that's */
/*  * the behavior you want almost all of the time. Inspired by */
/*  * CSS Remedy, with `svg` added as well. */
/*  * */
/*  * https://github.com/mozdevs/cssremedy/issues/14 */
/*  *\/ */

/* img, */
/* svg, */
/* video, */
/* canvas, */
/* audio, */
/* iframe, */
/* embed, */
/* object { */
/*   display: block; */
/*   vertical-align: middle; */
/* } */

/* /\** */
/*  * Constrain images and videos to the parent width and preserve */
/*  * their instrinsic aspect ratio. */
/*  * */
/*  * https://github.com/mozdevs/cssremedy/issues/14 */
/*  *\/ */

/* img, */
/* video { */
/*   max-width: 100%; */
/*   height: auto; */
/* } */

/* .container { */
/*   width: 100%; */
/* } */

/* @media (min-width: 640px) { */
/*   .container { */
/*     max-width: 640px; */
/*   } */
/* } */

/* @media (min-width: 768px) { */
/*   .container { */
/*     max-width: 768px; */
/*   } */
/* } */

/* @media (min-width: 1024px) { */
/*   .container { */
/*     max-width: 1024px; */
/*   } */
/* } */

/* @media (min-width: 1280px) { */
/*   .container { */
/*     max-width: 1280px; */
/*   } */
/* } */

/* .flex { */
/*   display: flex; */
/* } */

/* .table { */
/*   display: table; */
/* } */

/* .hidden { */
/*   display: none; */
/* } */

/* .flex-row { */
/*   flex-direction: row; */
/* } */

/* .flex-col { */
/*   flex-direction: column; */
/* } */

/* .items-center { */
/*   align-items: center; */
/* } */

/* .text-lg { */
/*   font-size: 1.125rem; */
/* } */

/* .mr-1 { */
/*   margin-right: 0.25rem; */
/* } */

/* .ml-5 { */
/*   margin-left: 1.25rem; */
/* } */

/* .static { */
/*   position: static; */
/* } */

/* .w-full { */
/*   width: 100%; */
/* } */

/* @-webkit-keyframes spin { */
/*   to { */
/*     transform: rotate(360deg); */
/*   } */
/* } */

/* @keyframes spin { */
/*   to { */
/*     transform: rotate(360deg); */
/*   } */
/* } */

/* @-webkit-keyframes ping { */
/*   75%, 100% { */
/*     transform: scale(2); */
/*     opacity: 0; */
/*   } */
/* } */

/* @keyframes ping { */
/*   75%, 100% { */
/*     transform: scale(2); */
/*     opacity: 0; */
/*   } */
/* } */

/* @-webkit-keyframes pulse { */
/*   50% { */
/*     opacity: .5; */
/*   } */
/* } */

/* @keyframes pulse { */
/*   50% { */
/*     opacity: .5; */
/*   } */
/* } */

/* @-webkit-keyframes bounce { */
/*   0%, 100% { */
/*     transform: translateY(-25%); */
/*     -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); */
/*             animation-timing-function: cubic-bezier(0.8,0,1,1); */
/*   } */

/*   50% { */
/*     transform: none; */
/*     -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); */
/*             animation-timing-function: cubic-bezier(0,0,0.2,1); */
/*   } */
/* } */

/* @keyframes bounce { */
/*   0%, 100% { */
/*     transform: translateY(-25%); */
/*     -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); */
/*             animation-timing-function: cubic-bezier(0.8,0,1,1); */
/*   } */

/*   50% { */
/*     transform: none; */
/*     -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); */
/*             animation-timing-function: cubic-bezier(0,0,0.2,1); */
/*   } */
/* } */

/* :root { */
/*   --bg-opacity: 1; */
/*   --main-color: #444; */
/*   --second-color: rgba(74, 85, 104, var(--text-opacity)); */
/*   --main-bg-color: #fffff8; */
/*   --second-bg-color: rgba(255, 255, 255, var(--bg-opacity)); */
/*   --main-border-color: #ccc; */
/*   --h2-bg-color: rgba(254, 252, 191, var(--bg-opacity)); */
/*   --h3-bg-color: rgba(254, 235, 200, var(--bg-opacity)); */
/*   --h4-bg-color: rgba(237, 242, 247, var(--bg-opacity)); */
/*   --link-color: rgba(74, 85, 104, var(--text-opacity)); */
/*   --quote-bg-color: rgba(255, 245, 247, var(--bg-opacity)); */
/*   --menu-highlight: rgba(254, 235, 200, var(--bg-opacity)); */
/*   --menu-text-decoration-color: #fbd38d; */
/*   --pre-bg-color: aliceblue; */
/*   --inline-code-bg-color: white; */
/* } */

/* @media(prefers-color-scheme:dark) { */
/*   :root { */
/*     --main-color: #fffff8; */
/*     --second-color: #fffff8; */
/*     --main-bg-color: #333; */
/*     --second-bg-color: #444; */
/*     --main-border-color: #666; */
/*     --h2-bg-color: #222; */
/*     --h3-bg-color: #222; */
/*     --h4-bg-color: #222; */
/*     --link-color: lightblue; */
/*     --quote-bg-color: darkslategrey; */
/*     --menu-highlight: black; */
/*     --menu-text-decoration-color: black; */
/*     --pre-bg-color: black; */
/*     --inline-code-bg-color: var(--main-bg-color); */
/*   } */

/*   ul#primary-menu a.active { */
/*     text-decoration:none; */
/*   } */
/* } */

/* /\* resets *\/ */

/* blockquote { */
/*   margin: 0; */
/*   padding: 0; */
/* } */

/* * { */
/*   box-sizing: border-box; */
/* } */

/* html, */
/* body { */
/*   display: flex; */
/*   flex-flow: column; */
/*   padding: 0; */
/*   line-height: 1.2; */
/*   width: 100%; */
/*   height: 100%; */
/* } */

/* body { */
/*   margin: 0 auto; */
/*   line-height:1.6; */
/*   font-size:18px; */
/*   color: var(--main-color); */
/*   background-color: var(--main-bg-color); */
/*   padding:0; */
/*   font-family: Nunito, arial, sans; */
/*   box-sizing: border-box; */
/*   --bg-opacity: 1; */
/*   /\* background-color: rgba(247, 250, 252, var(--bg-opacity)); *\/ */
/* } */

/* @media (min-width: 640px) { */
/*   #preamble, .grid-container { */
/*     margin-left: 2.5rem; */
/*   } */
/* } */

/* #preamble { */
/*   padding-top: 1rem; */
/*   padding-bottom: 1rem; */
/* } */

/* code { */
/*   background: var(--inline-code-bg-color); */
/* } */

/* a:not(h1) { */
/*   color: var(--link-color); */
/*   text-decoration: underline; */
/* } */

/* .outline-2, #table-of-contents, #postamble { */
/*   border-top: 1px solid var(--main-color); */
/* } */

/* blockquote { */
/*   font-style: italic; */
/*   border: 2px dashed var(--main-border-color); */
/*   border-left: 2px solid var(--main-border-color); */
/*   border-left-width: 4px; */
/*   padding: 0.5rem; */
/*   --bg-opacity: 1; */
/*   background-color: var(--quote-bg-color); */
/*   /\* background-color: #edf2f7; *\/ */
/*   /\* background-color: rgba(237, 242, 247, var(--bg-opacity)); *\/ */
/*   margin-bottom: 1rem; */
/* } */

/* .verse { */
/*   font-style: italic; */
/*   border-top: 1px solid var(--main-border-color); */
/*   border-bottom: 1px solid (--main-border-color); */
/*   padding-top: 10px; */
/*   padding-bottom: 20px; */
/*   margin-top: 40px; */
/* } */

/* table { */
/*   border: 1px solid gray; */
/* } */

/* table td, table th { */
/*   padding: 5px; */
/*   border: 1px solid gray; */
/* } */

/* #postamble { */
/*   font-size:smaller; */
/* } */

/* .ds-note, .outline-2, header { */
/*   --bg-opacity: 1; */
/*   background-color: var(--second-bg-color); */
/*   color: var(--second-color); */
/*   --text-opacity: 1; */
/*   padding-left: 1.5rem; */
/*   padding-right: 1.5rem; */
/*   border-radius: 0.25rem; */
/*   border-style: solid; */
/*   border-width: 2px; */
/*   border-top-width: 2px; */
/*   border-bottom-width: 2px; */
/*   border-style: dotted; */
/*   --border-opacity: 1; */
/*   border-color: #a0aec0; */
/*   border-color: rgba(160, 174, 192, var(--border-opacity)); */
/*   width: 100%; */
/*   margin-bottom: 1.5rem; */
/* } */

/* .ds-note, .outline-2 { */
/*   padding-top: 1.5rem; */
/*   padding-bottom: 1.5rem; */
/*   flex-direction: column; */
/*   display: flex; */
/*   line-height: 1.5; */
/*   letter-spacing: -0.025em; */
/*   font-size: 1.125rem; */
/*   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
/* } */

/* .outline-3 { */
/*   margin-top: 1rem; */
/* } */

/* .outline-3 h3 { */
/*   background-color: var(--h3-bg-color); */
/* } */

/* .outline-4 { */
/*   margin-top: 0.75rem; */
/* } */

/* @media (min-width: 640px) { */
/*   .ds-note, .outline-2 { */
/*     flex-direction: column; */
/*     border-width: 2px; */
/*   } */
/* } */

/* @import url("https://rsms.me/inter/inter.css"); */

/* html { */
/*   font-size: 16px; */
/*   font-family: "Inter", sans-serif; */
/* } */

/* @supports (font-variation-settings: normal) { */
/*   html { */
/*     font-family: "Inter var", sans-serif; */
/*   } */
/* } */

/* .page h1 { */
/*   font-weight: 700; */
/* } */

/* h1 { */
/*   font-size: 1.7rem; */
/* } */

/* h2 { */
/*   font-size: 1.5rem; */
/*   background-color: var(--h2-bg-color); */
/*   margin-bottom: 0.5rem; */
/* } */

/* h3 { */
/*   font-size: 1.3rem; */
/* } */

/* h4 { */
/*   font-size: 1.1em; */
/*   background-color: var(--h4-bg-color); */
/* } */

/* p, */
/* li { */
/*   -webkit-letter-spacing: -0.024%; */
/*   -moz-letter-spacing: -0.024%; */
/*   -ms-letter-spacing: -0.024%; */
/*   letter-spacing: -0.024%; */
/* } */

/* header { */
/*   display: flex; */
/*   align-items: center; */
/*   border-style: dotted; */
/*   border-width: 3px; */
/* } */

/* .site-title { */
/*   padding: 0; */
/*   margin: 0; */
/* } */

/* #logo { */
/*   display: inline-block; */
/*   margin: 5px; */
/* } */

/* #logo svg { */
/*   width: 40px; */
/*   height: 40px; */
/* } */

/* .grid-container { */
/*   flex: 1; */
/*   display: flex; */
/*   overflow-x: auto !important; */
/*   white-space: nowrap; */
/*   flex-grow: 1; */
/* } */

/* .ds-grid { */
/*   max-width: 100%; */
/*   flex-grow: 1; */
/* } */

/* .page { */
/*   white-space: normal; */
/*   padding: 10px 10px; */
/*   padding-left: 0; */
/*   margin-right: 10px; */
/*   display: inline-block; */
/*   width: 625px; */
/*   max-width: 100%; */
/*   height: 100% !important; */
/*   max-height: 100%; */
/*   overflow-y: auto; */
/*   vertical-align: top; */
/*   box-sizing: border-box; */
/* } */

/* .page:last-child { */
/*   margin-right: 15px; */
/* } */

/* a { */
/*   text-decoration: none; */
/*   cursor: pointer; */
/*   color: var(--link-color); */
/* } */

/* a:hover { */
/*   opacity: 0.5; */
/* } */

/* code { */
/*   white-space: pre; */
/*   background: var(--inline-code-bg-color); */
/*   border: 1px solid #bbb; */
/*   border-radius: 4px; */
/*   max-width: 100%; */
/*   overflow: auto; */
/*   font-size: 0.8rem; */
/*   padding: 2px; */
/* } */

/* pre { */
/*   padding: 1px 10px; */
/* } */

/* img { */
/*   max-width: 100%; */
/* } */

/* #svg { */
/*   position: absolute; */
/*   top: 0; */
/*   left: 0; */
/*   width: 100%; */
/*   height: 100%; */
/*   pointer-events: none; */
/*   -webkit-user-select: none; */
/*      -moz-user-select: none; */
/*       -ms-user-select: none; */
/*           user-select: none; */
/* } */

/* iframe { */
/*   overflow: hidden; */
/*   overflow-y: hidden; */
/*   border: none; */
/* } */

/* .tippy-box > .tippy-arrow:before { */
/*   transform: scale(2); */
/* } */

/* footer { */
/*   background: #fff; */
/*   align-items: center; */
/*   text-align: center; */
/*   color: var(--main-border-color); */
/*   border-top: 1px var(--main-border-color) solid; */
/*   font-size: 10px; */
/* } */

/* .bl-section { */
/*   padding: 10px; */
/*   margin-bottom: 50px; */
/*   background-color: #fee; */
/* } */

/* .backlinks { */
/*   display: flex; */
/*   align-items: center; */
/*   flex-wrap: wrap; */
/* } */

/* .bl-section h4 { */
/*   color: #aaa; */
/*   margin-top: 0; */
/* } */

/* .backlinks a { */
/*   flex: 100%; */
/*   color: var(--link-color); */
/* } */

/* dt { */
/*   text-decoration: underline; */
/* } */

/* @media only screen and (max-width: 600px) { */
/*   body { */
/*     flex-direction: column; */
/*   } */

/*   header { */
/*     border-right-width: 0; */
/*     border-bottom-width: 1px; */
/*     padding: 10px 30px; */
/*   } */

/*   #logo { */
/*     margin: 0; */
/*   } */

/*   #logo svg { */
/*     width: 30px; */
/*     height: 30px; */
/*   } */

/*   header > * { */
/*     display: inline-block; */
/*     margin-right: 10px; */
/*   } */

/*   .grid-container { */
/*     padding: 0; */
/*   } */

/*   .page { */
/*     padding-bottom: 150px; */
/*   } */
/* } */

/* a[target=_blank]::after { */
/*   content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==); */
/*   margin: 0 3px 0 5px; */
/* } */

/* pre.src { */
/*   overflow-x: scroll; */
/* } */

/* .page ul { */
/*   margin-left: 2rem; */
/*   list-style-type: disc; */
/*   list-style-position: outside; */
/* } */

/* .page ul ul li { */
/*   list-style-type: circle; */
/* } */

/* p { */
/*   padding: 0.5rem; */
/*   letter-spacing: -0.025em; */
/*   font-size: 1.125rem; */
/* } */

/* p code { */
/*   display: inline; */
/* } */

/* #buffer-network { */
/*   height: 400px; */
/* } */

/* ul#primary-menu { */
/*   display: flex */
/* } */

/* ul#primary-menu li { */
/*   padding-right: 0.5rem; */
/* } */

/* ul#primary-menu a { */
/*   font-size: 16px; */
/* } */

/* a[target!="_blank"] { */
/*   text-decoration:underline; */
/*   -webkit-text-decoration-style: solid; */
/*           text-decoration-style: solid; */
/*   -webkit-text-decoration-color: #fbd38d; */
/*           text-decoration-color: #fbd38d; */
/*   text-decoration-thickness: 3px; */
/* } */

/* ul#primary-menu a.active, */
/* ul#primary-menu a.active:hover { */
/*   text-decoration:underline; */
/*   -webkit-text-decoration-style: solid; */
/*           text-decoration-style: solid; */
/*   text-decoration-thickness: 3px; */
/*   -webkit-text-decoration-color: var(--menu-text-decoration-color); */
/*           text-decoration-color: var(--menu-text-decoration-color); */
/*   background-color: var(--menu-highlight); */
/* } */

/* pre.src { */
/*   font-size: small; */
/*   background-color: var(--pre-bg-color); */
/* } */

/* .weeknotes-notes li { */
/*   margin-top: 0.5rem; */
/* } */

/* .weeknotes-graph figure { */
/*   overflow: scroll; */
/* } */

/* .weeknotes-graph .org-svg { */
/*   width: 1000px; */
/* } */

/* dl { */
/*   display: grid; */
/*   grid-template-columns: -webkit-max-content auto; */
/*   grid-template-columns: max-content auto; */
/*   grid-gap: 8px; */
/*   border: 1px dotted gray; */
/*   padding: 0.5rem; */
/* } */

/* dt { */
/*   grid-column-start: 1; */
/*   text-decoration: none; */
/*   font-weight: bold; */
/* } */

/* dd { */
/*   grid-column-start: 2; */
/* } */

/* #webmentions h4 { */
/*   font-size: 1em; */
/*   margin-top: 0.5em; */
/* } */

/* #webmentions ul { */
/*   list-style-type: none; */
/*   list-style-position: outside; */
/*   margin-left: 0; */
/* } */

/* #webmentions li { */
/*   border: 1px dotted aliceblue; */
/*   padding: 5px; */
/* } */

/* #webmentions img { */
/*   max-height: 1.1em; */
/*   display: inline-block; */
/* } */

/* @media (min-width: 640px) { */
/*   .sm\:container { */
/*     width: 100%; */
/*   } */

/*   @media (min-width: 640px) { */
/*     .sm\:container { */
/*       max-width: 640px; */
/*     } */
/*   } */

/*   @media (min-width: 768px) { */
/*     .sm\:container { */
/*       max-width: 768px; */
/*     } */
/*   } */

/*   @media (min-width: 1024px) { */
/*     .sm\:container { */
/*       max-width: 1024px; */
/*     } */
/*   } */

/*   @media (min-width: 1280px) { */
/*     .sm\:container { */
/*       max-width: 1280px; */
/*     } */
/*   } */

/*   .sm\:block { */
/*     display: block; */
/*   } */

/*   .sm\:flex-row { */
/*     flex-direction: row; */
/*   } */

/*   .sm\:items-center { */
/*     align-items: center; */
/*   } */

/*   .sm\:justify-between { */
/*     justify-content: space-between; */
/*   } */

/*   .sm\:ml-0 { */
/*     margin-left: 0; */
/*   } */

/*   .sm\:pl-2 { */
/*     padding-left: 0.5rem; */
/*   } */

/*   .sm\:text-right { */
/*     text-align: right; */
/*   } */

/*   .sm\:w-1\/2 { */
/*     width: 50%; */
/*   } */
/* } */

/* @media (min-width: 768px) { */
/*   .md\:container { */
/*     width: 100%; */
/*   } */

/*   @media (min-width: 640px) { */
/*     .md\:container { */
/*       max-width: 640px; */
/*     } */
/*   } */

/*   @media (min-width: 768px) { */
/*     .md\:container { */
/*       max-width: 768px; */
/*     } */
/*   } */

/*   @media (min-width: 1024px) { */
/*     .md\:container { */
/*       max-width: 1024px; */
/*     } */
/*   } */

/*   @media (min-width: 1280px) { */
/*     .md\:container { */
/*       max-width: 1280px; */
/*     } */
/*   } */
/* } */

/* @media (min-width: 1024px) { */
/*   .lg\:container { */
/*     width: 100%; */
/*   } */

/*   @media (min-width: 640px) { */
/*     .lg\:container { */
/*       max-width: 640px; */
/*     } */
/*   } */

/*   @media (min-width: 768px) { */
/*     .lg\:container { */
/*       max-width: 768px; */
/*     } */
/*   } */

/*   @media (min-width: 1024px) { */
/*     .lg\:container { */
/*       max-width: 1024px; */
/*     } */
/*   } */

/*   @media (min-width: 1280px) { */
/*     .lg\:container { */
/*       max-width: 1280px; */
/*     } */
/*   } */
/* } */

/* @media (min-width: 1280px) { */
/*   .xl\:container { */
/*     width: 100%; */
/*   } */

/*   @media (min-width: 640px) { */
/*     .xl\:container { */
/*       max-width: 640px; */
/*     } */
/*   } */

/*   @media (min-width: 768px) { */
/*     .xl\:container { */
/*       max-width: 768px; */
/*     } */
/*   } */

/*   @media (min-width: 1024px) { */
/*     .xl\:container { */
/*       max-width: 1024px; */
/*     } */
/*   } */

/*   @media (min-width: 1280px) { */
/*     .xl\:container { */
/*       max-width: 1280px; */
/*     } */
/*   } */
/* } */


/* .grid-container { */
/*   flex: 1; */
/*   display: flex; */
/*   overflow-x: auto !important; */
/*   white-space: nowrap; */
/*   flex-grow: 1; */
/* } */

/* .ds-grid { */
/*   max-width: 100%; */
/*   flex-grow: 1; */
/* } */

.page {
  white-space: normal;
  padding: 10px 10px;
  padding-left: 0;
  margin-right: 10px;
  display: inline-block;
  width: 625px;
  max-width: 100%;
  height: 100% !important;
  max-height: 100%;
  overflow-y: auto;
  vertical-align: top;
  box-sizing: border-box;
}

/* .ds-grid { */
/*     overflow-x: visible; */
/* } */


.grid-container {
  flex: 1;
  display: flex;
  overflow-x: auto !important;
  white-space: nowrap;
  flex-grow: 1;
}
