/ docs / header.html
header.html
  1  <!DOCTYPE html>
  2  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3  <head>
  4  <meta charset="utf-8" />
  5  <meta name="generator" content="Docutils 0.20.1: https://docutils.sourceforge.io/" />
  6  <meta name="viewport" content="width=device-width, initial-scale=1" />
  7  <title>header.rst</title>
  8  <style type="text/css">
  9  
 10  /* CSS3_ style sheet for the output of Docutils HTML5 writer.  */
 11  /* Generic responsive design for all screen sizes.                         */
 12  /*                                                                         */
 13  /* :Author: Günter Milde                                                   */
 14  /*                                                                         */
 15  /* :Id: $Id: responsive.css 10170 2025-06-16 12:36:11Z milde $                                                               */
 16  /* :Copyright: © 2021 Günter Milde.                                        */
 17  /* :License: Released under the terms of the `2-Clause BSD license`_,      */
 18  /*    in short:                                                            */
 19  /*                                                                         */
 20  /*    Copying and distribution of this file, with or without modification, */
 21  /*    are permitted in any medium without royalty provided the copyright   */
 22  /*    notice and this notice are preserved.                                */
 23  /*                                                                         */
 24  /*    This file is offered as-is, without any warranty.                    */
 25  /*                                                                         */
 26  /* .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause     */
 27  /* .. _CSS3: https://www.w3.org/Style/CSS/                                 */
 28  
 29  /* Note:                                                                   */
 30  /* This style sheet is provisional:                                        */
 31  /* the API is not settled and may change with any minor Docutils version.  */
 32  
 33  
 34  
 35  /* General Settings */
 36  /* ================ */
 37  
 38  
 39  * { box-sizing: border-box; }
 40  
 41  body {
 42    background-color: #fafaf6;
 43    margin: auto;
 44    --field-indent: 6.6em; /* indent of fields in field lists */
 45    --sidebar-margin-right: 0; /* adapted in media queries below */
 46  }
 47  main {
 48    counter-reset: figure table;
 49  }
 50  body > * {
 51    background-color: white;
 52    line-height: 1.6;
 53    padding: 0.5rem calc(29% - 7.2rem); /* go from 5% to 15% (8.15em/54em) */
 54    margin: auto;
 55    max-width: 100rem;
 56  }
 57  sup, sub { /* avoid additional inter-line space for lines with sup/sub */
 58    line-height: 1;
 59  }
 60  
 61  /* Vertical Space (Parskip) */
 62  p, ol, ul, dl, li,
 63  .topic,
 64  .footnote, .citation,
 65  div > math,
 66  table {
 67    margin-top: 0.5em;
 68    margin-bottom: 0.5em;
 69  }
 70  h1, h2, h3, h4, h5, h6,
 71  dl > dd, details > p:last-child {
 72    margin-bottom: 0.5em;
 73  }
 74  
 75  /* Indented Blocks */
 76  blockquote, figure, .topic {
 77    margin: 1em 2%;
 78    padding-left: 1em;
 79  }
 80  div.line-block div.line-block,
 81  pre, dd, dl.option-list {
 82    margin-left: calc(2% + 1em);
 83  }
 84  
 85  /* Object styling */
 86  /* ============== */
 87  
 88  footer, header {
 89    font-size: small;
 90  }
 91  
 92  /* Frontmatter */
 93  div.dedication {
 94    padding: 0;
 95    margin: 1.4em 0;
 96    font-style: italic;
 97    font-size: large;
 98  }
 99  .dedication p.topic-title {
100    display: none;
101  }
102  
103  blockquote p.attribution {
104    text-align: right;
105  }
106  
107  /* Table of Contents */
108  nav.contents ul {
109    padding-left: 1em;
110  }
111  ul.auto-toc > li > p { /* hanging indent */
112    padding-left: 1em;
113    text-indent: -1em;
114  }
115  main > nav.contents  ul:not(.auto-toc) {
116    list-style-type: square;
117  }
118  main > nav.contents  ul ul:not(.auto-toc) {
119    list-style-type: disc;
120  }
121  main > nav.contents  ul ul ul:not(.auto-toc) {
122    list-style-type: '\2B29\ ';
123  }
124  main > nav.contents  ul ul ul ul:not(.auto-toc) {
125    list-style-type: '\2B1D\ ';
126  }
127  main > nav.contents  ul ul ul ul ul:not(.auto-toc) {
128    list-style-type: '\2B2A\ ';
129  }
130  nav.contents ul > li::marker {
131    color: grey;
132  }
133  
134  /* Transitions */
135  hr {
136    margin: 1em 10%;
137  }
138  
139  /* Lists */
140  
141  dl.field-list.narrow {
142    --field-indent: 2.4em;
143  }
144  
145  ul, ol {
146    padding-left: 1.1em; /* indent by bullet width (Firefox, DejaVu fonts) */
147  }
148  dl.field-list > dd,
149  dl.docinfo > dd {
150    margin-left: var(--field-indent); /* adapted in media queries or HTML */
151  }
152  dl.option-list > dd {
153    margin-left: 20%;
154  }
155  /* run-in: start field-body on same line after long field names */
156  dl.field-list.run-in > dd p {
157    display: block;
158  }
159  /* "description style" like in most dictionaries, encyclopedias etc. */
160  dl.description {
161    display: flow-root;
162  }
163  dl.description > dt {
164    clear: left;
165    float: left;
166    margin: 0;
167    padding: 0;
168    padding-right: 0.3em;
169    font-weight: bold;
170  }
171  dl.description > dd:after {
172    display: table;
173    content: "";
174    clear: left; /* clearfix for empty descriptions */
175  }
176  /* start lists nested in description/field lists on new line */
177  dd > dl:first-child,
178  dd > ul:first-child,
179  dd > ol:first-child {
180    clear: left;
181  }
182  
183  /* disclosures */
184  details { padding-left: 1em; }
185  summary { margin-left: -1em; }
186  
187  /* Footnotes and Citations */
188  .footnote {
189    font-size: small;
190  }
191  
192  /* Images, Figures, and Tables */
193  figcaption,
194  table > caption {
195    /*   font-size: small; */
196    font-style: italic;
197  }
198  figcaption > .legend {
199    font-size: small;
200    font-style: initial;
201  }
202  figure.numbered > figcaption > p:before {
203    counter-increment: figure;
204    content: "Figure " counter(figure) ": ";
205    font-weight: bold;
206    font-style: initial;
207  }
208  
209  table tr {
210    text-align: left;
211    vertical-align: baseline;
212  }
213  table.booktabs { /* "booktabs" style (no vertical lines) */
214    border-top: 2px solid;
215    border-bottom: 2px solid;
216  }
217  table.booktabs * {
218    border: 0;
219  }
220  table.booktabs th {
221    border-bottom: thin solid;
222  }
223  table.numbered > caption:before {
224    counter-increment: table;
225    content: "Table " counter(table) ": ";
226    font-weight: bold;
227    font-style: initial;
228  }
229  
230  /* Admonitions and System Messages */
231  .admonition,
232  div.system-message {
233    border: thin solid silver;
234    margin: 1em 2%;
235    padding: 0.5em 1em;
236  }
237  .caution p.admonition-title,
238  .attention p.admonition-title,
239  .danger p.admonition-title,
240  .warning p.admonition-title,
241  div.error {
242    color: maroon;
243  }
244  div.system-message > p > span.literal {
245    overflow-wrap: break-word;
246  }
247  
248  /* Literal and Code */
249  pre.literal-block, pre.doctest{
250    padding: 0.2em;
251    overflow-x: auto;
252  }
253  .literal-block, .doctest, span.literal {
254    background-color: #f0f5f3;
255  }
256  .system-message span.literal {
257    background-color: inherit;
258  }
259  
260  /* basic highlighting: for a complete scheme, see */
261  /* https://docutils.sourceforge.io/sandbox/stylesheets/ */
262  pre.code .comment, code .comment { color: #5C6576 }
263  pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
264  pre.code .literal.string, code .literal.string { color: #0C5404 }
265  pre.code .name.builtin, code .name.builtin { color: #352B84 }
266  pre.code .deleted, code .deleted { background-color: #DEB0A1}
267  pre.code .inserted, code .inserted { background-color: #A3D289}
268  
269  /* Hyperlink References */
270  a {
271    text-decoration: none; /* for chromium */
272    /* Wrap links at any place, if this is the only way to prevent overflow */
273    overflow-wrap: break-word;
274  }
275  .contents a, a.toc-backref, a.citation-reference {
276    overflow-wrap: inherit;
277  }
278  /* Undecorated Links (see also minimal.css) */
279  /* a.citation-reference, */
280  .citation a.fn-backref {
281    color: inherit;
282  }
283  a:hover {
284    text-decoration: underline;
285  }
286  *:hover > a.toc-backref:after,
287  .topic-title:hover > a:after {
288    content: " \2191"; /* ↑ UPWARDS ARROW */
289    color: grey;
290  }
291  *:hover > a.self-link:after {
292    content: "\1F517"; /* LINK SYMBOL */
293    color: grey;
294    font-size: smaller;
295    margin-left: 0.2em;
296  }
297  /* highlight specific targets of the current URL */
298  section:target > h2, section:target > h3, section:target > h4,
299  section:target > h5, section:target > h6,
300  span:target + h2, span:target + h3, span:target + h4,
301  span:target + h5, span:target + h6,
302  dt:target, span:target, p:target,
303  .contents :target,
304  .contents:target > .topic-title,
305  aside.system-message:target,
306  [role="doc-biblioentry"]:target,
307  [role="doc-biblioref"]:target,
308  [role="note"]:target, /* Docutils 0.18 and 0.19 */
309  [role="doc-footnote"]:target, /* Docutils >= 0.20 */
310  [role="doc-noteref"]:target {
311    background-color: #d2e6ec;
312  }
313  
314  /* Block Alignment */
315  /* Let content flow to the side of aligned images and figures */
316  
317  /* no floats around this elements */
318  footer, header, hr,
319  h1, h2, h3 {
320    clear: both;
321  }
322  
323  img.align-left,
324  svg.align-left,
325  video.align-left,
326  figure.align-left,
327  div.align-left,
328  table.align-left {
329    margin-left: 0;
330    padding-left: 0;
331    margin-right: 0.5em;
332    clear: left;
333    float: left;
334  }
335  img.align-right,
336  svg.align-right,
337  video.align-right,
338  figure.align-right,
339  div.align-right,
340  table.align-right {
341    margin-left: 0.5em;
342    margin-right: 0;
343    clear: right;
344    float: right;
345  }
346  
347  /* Margin Elements */
348  /* see below for screen size dependent rules */
349  .sidebar,
350  .marginal,
351  .admonition.marginal {
352    max-width: 40%;
353    border: none;
354    background-color: #efefea;
355    margin: 0.5em var(--sidebar-margin-right) 0.5em 1em;
356    padding: 0.5em;
357    padding-left: 0.7em;
358    clear: right;
359    float: right;
360    font-size: small;
361  }
362  .sidebar {
363    width: 40%;
364  }
365  
366  /* Adaptive page layout */
367  /* ==================== */
368  
369  @media (max-width: 30em) {
370    /* Smaller margins and no floating elements for small screens */
371    /* (main text less than 40 characters/line) */
372    body > * {
373      padding: 0.5rem 5%;
374      line-height: 1.4
375    }
376    .sidebar,
377    .marginal,
378    .admonition.marginal {
379      width: auto;
380      max-width: 100%;
381      float: none;
382    }
383    dl.option-list,
384    pre {
385      margin-left: 0;
386    }
387    body {
388      --field-indent: 4em;
389    }
390    dl.docinfo {
391      --field-indent: 5%;
392    }
393    pre, pre * {
394    font-size: 0.9em;
395    /* overflow: auto; */
396    }
397  }
398  
399  @media (min-width: 54em) {
400    /* Move ToC to the left */
401    /* Main text width before: 70% ≙ 35em ≙ 75…95 chrs (Dejavu/Times) */
402    /*                  after:      ≳ 30em ≙ 54…70 chrs (Dejavu/Times) */
403    body.with-toc {
404      padding-left: 8%;
405    }
406    body.with-toc > * {
407      margin-left: 0;
408      padding-left: 22rem; /* fallback for webkit */
409      padding-left: min(22%, 22rem);
410      padding-right: 7%;
411    }
412    main > nav.contents { /* global ToC */
413      position: fixed;
414      top: 0;
415      left: 0;
416      width: min(25%, 25em);
417      height: 100vh;
418      margin: 0;
419      background-color: #fafaf6;
420      padding: 1em 2% 0 2%;
421      overflow: auto;
422    }
423    main > nav.contents > * {
424      padding-left: 0;
425      line-height: 1.4;
426    }
427    main > nav.contents a {
428    color: inherit;
429    }
430  }
431  
432  @media (min-width: 70em) {
433    body {
434      --field-indent: 9em;
435    }
436  }
437  
438  @media (min-width: 77em) {
439    /* Move marginalia to 6rem from right border       */
440    /* .sidebar,                                       */
441    /* .marginal,                                      */
442    /* .admonition.marginal {                          */
443    /*   margin-right: calc(6rem - 15%);               */
444    /* }                                               */
445    /* BUG: margin is calculated for break point width */
446    /* workaround: variable + many breakpoints         */
447    body > * {
448      padding-left: 18%;
449      padding-right: 28%; /* fallback for webkit */
450      padding-right: min(28%, 28rem);
451      --sidebar-margin-right: -20rem;
452    }
453    /* limit main text to ~ 50em ≙ 85…100 characters DejaVu rsp. …120 Times */
454    body.with-toc > * {
455      padding-left: min(22%, 22rem);
456      padding-right: calc(78% - 50rem); /* fallback for webkit */
457      padding-right: min(78% - 50rem, 28rem);
458      --sidebar-margin-right: 0;
459    }
460  }
461  
462  @media (min-width: 85em) {
463    body.with-toc > * {
464      --sidebar-margin-right: -9rem;
465    }
466  }
467  
468  @media (min-width: 90em) {
469    /* move marginalia into the margin */
470    body > * {
471      padding-left: min(22%, 22rem);
472      --sidebar-margin-right: -23rem;
473    }
474    body.with-toc > * {
475      --sidebar-margin-right: -14rem;
476    }
477  }
478  
479  @media (min-width: 99em) {
480    /* move marginalia out of main text area */
481    body.with-toc > * {
482      --sidebar-margin-right: -20rem;
483    }
484    body > *, body.with-toc > * { /* for webkit */
485      padding-left: 22rem;
486      padding-right: 28rem;
487    }
488    .admonition.marginal,
489    .marginal {
490      width: 40%; /* make marginal figures, ... "full width" */
491    }
492  }
493  
494  @media (min-width: 104em) {
495    body.with-toc > * {
496      --sidebar-margin-right: -23rem;
497    }
498  }
499  
500  </style>
501  <style type="text/css">
502  
503  /* Minimal style sheet for the HTML output of Docutils.                    */
504  /*                                                                         */
505  /* :Author: Günter Milde, based on html4css1.css by David Goodger          */
506  /* :Id: $Id: minimal.css 10018 2025-03-06 16:19:15Z milde $                                                               */
507  /* :Copyright: © 2015, 2021 Günter Milde.                                  */
508  /* :License: Released under the terms of the `2-Clause BSD license`_,      */
509  /*    in short:                                                            */
510  /*                                                                         */
511  /*    Copying and distribution of this file, with or without modification, */
512  /*    are permitted in any medium without royalty provided the copyright   */
513  /*    notice and this notice are preserved.                                */
514  /*                                                                         */
515  /*    This file is offered as-is, without any warranty.                    */
516  /*                                                                         */
517  /* .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause     */
518  
519  /* This CSS3 stylesheet defines rules for Docutils elements without        */
520  /* HTML equivalent. It is required to make the document semantics visible. */
521  /*                                                                         */
522  /* .. _validates: http://jigsaw.w3.org/css-validator/validator$link        */
523  
524  /* titles */
525  p.topic-title,
526  p.admonition-title,
527  p.system-message-title {
528    font-weight: bold;
529  }
530  p.sidebar-title,
531  p.rubric {
532    font-weight: bold;
533    font-size: larger;
534  }
535  p.rubric {
536    color: maroon;
537  }
538  p.subtitle,
539  p.section-subtitle,
540  p.sidebar-subtitle {
541    font-weight: bold;
542    margin-top: -0.5em;
543  }
544  h1 + p.subtitle {
545    font-size: 1.6em;
546  }
547  a.toc-backref {
548    color: inherit;
549    text-decoration: none;
550  }
551  
552  /* Warnings, Errors */
553  .system-messages h2,
554  .system-message-title,
555  pre.problematic,
556  span.problematic {
557    color: red;
558  }
559  
560  /* Inline Literals */
561  .docutils.literal {
562    font-family: monospace;
563    white-space: pre-wrap;
564  }
565  /* do not wrap at hyphens and similar: */
566  .literal > span.pre { white-space: nowrap; }
567  
568  /* keep line-breaks (\n) visible */
569  .pre-wrap { white-space: pre-wrap; }
570  
571  /* Lists */
572  
573  /* compact and simple lists: no margin between items */
574  .simple  li, .simple  ul, .simple  ol, .simple  > li p,
575  .compact li, .compact ul, .compact ol, .compact > li p,
576  dl.simple  > dd, dl.compact > dd, dl.docinfo > dd {
577    margin-top: 0;
578    margin-bottom: 0;
579  }
580  /* Nested Paragraphs */
581  p:first-child { margin-top: 0; }
582  p:last-child { margin-bottom: 0; }
583  details > p:last-child { margin-bottom: 1em; }
584  
585  /* Table of Contents */
586  .contents ul.auto-toc { /* section numbers present */
587    list-style-type: none;
588  }
589  
590  /* Enumerated Lists */
591  ol.arabic     { list-style: decimal }
592  ol.loweralpha { list-style: lower-alpha }
593  ol.upperalpha { list-style: upper-alpha }
594  ol.lowerroman { list-style: lower-roman }
595  ol.upperroman { list-style: upper-roman }
596  
597  /* Definition Lists and Derivatives */
598  dt .classifier { font-style: italic }
599  dt .classifier:before {
600    font-style: normal;
601    margin: 0.5em;
602    content: ":";
603  }
604  /* Field Lists and similar */
605  /* bold field name, content starts on the same line */
606  dl.field-list,
607  dl.option-list,
608  dl.docinfo {
609    display: flow-root;
610  }
611  dl.field-list > dt,
612  dl.option-list > dt,
613  dl.docinfo > dt {
614    font-weight: bold;
615    clear: left;
616    float: left;
617    margin: 0;
618    padding: 0;
619    padding-right: 0.25em;
620  }
621  /* Offset for field content (corresponds to the --field-name-limit option) */
622  dl.field-list > dd,
623  dl.option-list > dd,
624  dl.docinfo > dd {
625    margin-left:  9em; /* ca. 14 chars in the test examples, fit all Docinfo fields */
626  }
627  /* start nested lists on new line */
628  dd > dl:first-child,
629  dd > ul:first-child,
630  dd > ol:first-child {
631    clear: left;
632  }
633  /* start field-body on a new line after long field names */
634  dl.field-list > dd > *:first-child,
635  dl.option-list > dd > *:first-child
636  {
637    display: inline-block;
638    width: 100%;
639    margin: 0;
640  }
641  
642  /* Bibliographic Fields (docinfo) */
643  dl.docinfo pre.address {
644    font: inherit;
645    margin: 0;
646  }
647  dl.docinfo > dd.authors > p { margin: 0; }
648  
649  /* Option Lists */
650  dl.option-list > dt { font-weight: normal; }
651  span.option { white-space: nowrap; }
652  
653  /* Footnotes and Citations  */
654  
655  .footnote, .citation { margin: 1em 0; } /* default paragraph skip (Firefox) */
656  /* hanging indent */
657  .citation { padding-left: 2em; }
658  .footnote { padding-left: 1.7em; }
659  .footnote.superscript { padding-left: 1.0em; }
660  .citation > .label { margin-left: -2em; }
661  .footnote > .label { margin-left: -1.7em; }
662  .footnote.superscript > .label { margin-left: -1.0em; }
663  
664  .footnote > .label + *,
665  .citation > .label + * {
666    display: inline-block;
667    margin-top: 0;
668    vertical-align: top;
669  }
670  .footnote > .backrefs + *,
671  .citation > .backrefs + * {
672    margin-top: 0;
673  }
674  .footnote > .label + p, .footnote > .backrefs + p,
675  .citation > .label + p, .citation > .backrefs + p {
676    display: inline;
677    vertical-align: inherit;
678  }
679  
680  .backrefs { user-select: none; }
681  .backrefs > a { font-style: italic; }
682  
683  /* superscript footnotes */
684  a[role="doc-noteref"].superscript,
685  .footnote.superscript > .label,
686  .footnote.superscript > .backrefs {
687    vertical-align: super;
688    font-size: smaller;
689    line-height: 1;
690  }
691  a[role="doc-noteref"].superscript > .fn-bracket,
692  .footnote.superscript > .label > .fn-bracket {
693    /* hide brackets in display but leave for copy/paste */
694    display: inline-block;
695    width: 0;
696    overflow: hidden;
697  }
698  [role="doc-noteref"].superscript + [role="doc-noteref"].superscript {
699    padding-left: 0.15em; /* separate consecutive footnote references */
700    /* TODO: unfortunately, "+" also selects with text between the references. */
701  }
702  
703  /* Alignment */
704  .align-left   {
705    text-align: left;
706    margin-right: auto;
707  }
708  .align-center {
709    text-align: center;
710    margin-left: auto;
711    margin-right: auto;
712  }
713  .align-right  {
714    text-align: right;
715    margin-left: auto;
716  }
717  .align-top    { vertical-align: top; }
718  .align-middle { vertical-align: middle; }
719  .align-bottom { vertical-align: bottom; }
720  
721  /* reset inner alignment in figures and tables */
722  figure.align-left, figure.align-right,
723  table.align-left, table.align-center, table.align-right {
724    text-align: inherit;
725  }
726  
727  /* Text Blocks */
728  .topic { margin: 1em 2em; }
729  .sidebar,
730  .admonition,
731  .system-message {
732    margin: 1em 2em;
733    border: thin solid;
734    padding: 0.5em 1em;
735  }
736  div.line-block { display: block; }
737  div.line-block div.line-block, pre { margin-left: 2em; }
738  
739  /* Code line numbers: don't copy with drag-and-drop */
740  pre.code .ln { display: none; }
741  pre.code code:before {
742    content: attr(data-lineno);
743    font-size: small;
744    color: gray;
745  }
746  
747  /* Tables */
748  table {
749    border-collapse: collapse;
750  }
751  td, th {
752    border: thin solid silver;
753    padding: 0 1ex;
754  }
755  .borderless td, .borderless th {
756    border: 0;
757    padding: 0;
758    padding-right: 0.5em /* separate table cells */
759  }
760  
761  table > caption, figcaption {
762    text-align: left;
763    margin-top: 0.2em;
764    margin-bottom: 0.2em;
765  }
766  table.captionbelow {
767    caption-side: bottom;
768  }
769  
770  /* MathML (see "math.css" for --math-output=HTML) */
771  math .boldsymbol { font-weight: bold; }
772  math.boxed, math .boxed {padding: 0.25em; border: thin solid; }
773  /* style table similar to AMS "align" or "aligned" environment: */
774  mtable.cases > mtr > mtd { text-align: left; }
775  mtable.ams-align > mtr > mtd { padding-left: 0; padding-right: 0; }
776  mtable.ams-align > mtr > mtd:nth-child(2n) { text-align: left; }
777  mtable.ams-align > mtr > mtd:nth-child(2n+1) { text-align: right; }
778  mtable.ams-align > mtr > mtd:nth-child(2n+3) { padding-left: 2em; }
779  .mathscr mi, mi.mathscr {
780    font-family: STIX, XITSMathJax_Script, rsfs10,
781                 "Asana Math", Garamond, cursive;
782  }
783  
784  /* Document Header and Footer */
785  header { border-bottom: 1px solid black; }
786  footer { border-top: 1px solid black; }
787  
788  /* Images are block-level by default in Docutils */
789  /* New HTML5 block elements: set display for older browsers */
790  img, svg, header, footer, main, aside, nav, section, figure, video, details {
791    display: block;
792  }
793  svg { width: auto; height: auto; }  /* enable scaling of SVG images */
794  /* inline images */
795  
796  p img, p svg, p video,
797  h1 img, h2 img, h3 img, h4 img, h5 img, h6 img,
798  h1 svg, h2 svg, h3 svg, h4 svg, h5 svg, h6 svg {
799    display: inline;
800  }
801  
802  </style>
803  <style type="text/css">
804  
805  /* italic-field-name.css: */
806  /* Alternative style for Docutils field-lists */
807  
808  /* :Copyright: © 2023 Günter Milde. */
809  /* :License: Released under the terms of the `2-Clause BSD license`_,      */
810  /*    in short:                                                            */
811  /*                                                                         */
812  /*    Copying and distribution of this file, with or without modification, */
813  /*    are permitted in any medium without royalty provided the copyright   */
814  /*    notice and this notice are preserved.                                */
815  /*                                                                         */
816  /*    This file is offered as-is, without any warranty.                    */
817  /*                                                                         */
818  /* .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause     */
819  
820  /* In many contexts, a **bold** field name is too heavy styling. */
821  /* Use *italic* instead:: */
822  
823  dl.field-list > dt {
824    font-weight: normal;
825    font-style: italic;
826  }
827  dl.field-list > dt > .colon {
828    font-style: normal;
829    padding-left: 0.05ex;
830  }
831  
832  </style>
833  </head>
834  <body>
835  <header>
836  <p>[ anon.fail: <a class="reference external" href="/">Homepage</a> | <a class="reference external" href="/news.html">News</a> ] [ Guides: <a class="reference external" href="/guides/tor.html">Tor</a> | <a class="reference external" href="/guides/hidden-service.html">Hidden Service</a> | <a class="reference external" href="/guides/kvm.html">KVM</a> | <a class="reference external" href="/guides/monero.html">Monero</a> | <a class="reference external" href="/guides/simplex-chat.html">SimpleX</a> ] [ Dangers: <a class="reference external" href="/dangers/kyc.html">KYC</a> ]</p>
837  </header>
838  <main>
839  
840  
841  <!-- Minimal menu bar for inclusion in documentation sources
842  in ``docutils/docs/*/`` sub-sub-diretories.
843  
844  Attention: this is not a standalone document. -->
845  </main>
846  </body>
847  </html>