/*  pmwiki-core.css
**  Copyright 2009-2024 Petko Yotov www.pmwiki.org/petko
**  Copyright 2004-2009 Patrick R. Michaud pmichaud@pobox.com
**  Copyright 2006 Hagan Fox
**  
**  This file is part of PmWiki; you can redistribute it and/or modify
**  it under the terms of the GNU General Public License as published
**  by the Free Software Foundation; either version 2 of the License, or
**  (at your option) any later version.  See pmwiki.php for full details.
**  
**  These styles are intended to replace inline core styles pushed to 
**  $HTMLStylesFmt, a path towards a better Content-Security-Policy.
**  Likely to be reused by different skins. They also use CSS variables 
**  where possible to make it easier for skins to redefine them,
**  and dark theme colors.
**/


/* colors: light + dark themes */
:root {
  --pmc-text: #000;
  --pmc-bg: #fff;
  --pmc-bg1: #f8f8f8;
  
  --pmc-gray: #808080;
  --pmc-gray1: #eee;
  --pmc-gray2: #ccc;
  
  --pmc-yellow: #ff0;
  --pmc-yellow1: #ffc;
  --pmc-yellow2: #ff9;
  
  --pmc-green: #080;
  --pmc-green1: #cfc;
  --pmc-green2: #9f9;
  
  --pmc-blue: #00f;
  --pmc-blue1: #ccf;
  --pmc-shadow: rgba(0,0,0,0.25);
}

@media screen {
  html.pmDarkTheme { 
    color-scheme: dark;
    --pmc-text: #ddd;
    --pmc-bg: #121212;
    --pmc-bg1: #242424;
    
    --pmc-gray: #b5b5b5;
    --pmc-gray1: #333;
    --pmc-gray2: #787878;
    
    --pmc-yellow: #394000;
    --pmc-yellow1: #282b00;
    --pmc-yellow2: #573900;
    
    --pmc-green: #6ad355;
    --pmc-green1: #204e25;
    --pmc-green2: #034008;
    
    --pmc-blue: #eba4ff;
    --pmc-blue1: #6e709d;
    --pmc-shadow: rgba(255, 255, 255, 0.75);
  }
}

:root {
  /* spacing */
  --pm-indent-size: 40px;
  --pm-lineheight: 1.33em;
  --pm-vspace-mtop: var(--pm-lineheight);
  --pm-framepadding: 4px;
  
  /* sizes */
  --pm-smaller: 0.8em;
  --pm-diff-smaller: 0.66em;
  
  /* links */
  --pm-createlink-bbottom: 1px dotted var(--pmc-gray);
  
  /* tables, borders */
  --pm-markuptable-border: 2px dotted var(--pmc-blue1);
  --pm-markuptable-separator: 1px solid var(--pmc-blue1);
  --pm-markuptable-padding: 10px;
  --pm-frameborder: 1px solid var(--pmc-gray2);
  --pm-frameradius: 0;

  --pm-recipecheck-color: var(--pmc-text);
  --pm-recipecheck-ok: var(--pmc-green1);
  --pm-recipecheck-check: var(--pmc-yellow1);


  --pm-faq-indent: 2em;
  --pm-faq-qmargin: 1em 0 0.75em 0;
  --pm-faqtoc-qmargin: 0.5em 0 0.5em 20px;
  --pm-toc-fsize: var(--pm-smaller);
  --pm-toc-maxheight: 40vh;
  --pm-toc-indent: 1em;
  
  --pm-timeborder: 1px dotted inherit;
  --pm-boxshadow: 2px 2px 6px -4px var(--pmc-shadow);
}

/* pmwiki.php */
ul, ol, pre, dl, p { 
  margin-top:0px; 
  margin-bottom:0px;
}
code.escaped { 
  white-space: pre; 
  text-indent: 0;
}
.vspace { 
  margin-top: var(--pm-vspace-mtop); 
}
.indent { 
  margin-left: var(--pm-indent-size); 
}
.outdent { 
  margin-left: var(--pm-indent-size); 
  text-indent: calc( -1 * var(--pm-indent-size) ); 
}

a.createlinktext { 
  text-decoration: none; 
  border-bottom: var(--pm-createlink-bbottom);
}

a.createlink { 
  text-decoration: none; 
  position: relative; 
  top: -0.5em;
  font-weight: bold; 
  font-size: smaller; 
  border-bottom: none;
}
img { 
  border:0px;
}

details.inclpages {
  display: inline-block;
}

/* simuledit.php + %note% is in the documentation */
.editconflict, .note { 
  color: var(--pmc-green); 
  font-style: italic; 
}
.editconflict { 
  margin: var(--pm-vspace-mtop) 0;
}

/* vardoc.php */
a.varlink { 
  text-decoration: none;
}

/* urlapprove.php */
.apprlink { 
  font-size: var(--pm-smaller);
}

/* stdmarkup.php */
time[title] {
  border-bottom: var(--pm-timeborder);
}

div.faq p, div.faq pre {
  margin-left: var(--pm-faq-indent);
}
div.faq p.question {
  margin: var(--pm-faq-qmargin);
  font-weight: bold;
}

div.faqtoc div.faq * {
  display: none;
}
div.faqtoc div.faq p.question {
  display: block;
  font-weight: normal;
  margin: var(--pm-faqtoc-qmargin);
  line-height: normal;
}
div.faqtoc div.faq p.question * {
  display: inline;
}

.clearboth { 
  clear: both; 
}

summary {
  cursor: pointer;
  width: fit-content;
}


/* tables */
table.markup {
  border: var(--pm-markuptable-border);
  width: 90%;
}
td.markup1, td.markup2 {
  padding-left: var(--pm-markuptable-padding);
  padding-right: var(--pm-markuptable-padding);
}
td.markup1 pre {
  white-space: pre-wrap;
}
table.vert td.markup1 {
  border-bottom: var(--pm-markuptable-separator);
}
table.horiz td.markup1 {
  width: 23em;
  border-right: var(--pm-markuptable-separator);
}
table.markup caption {
  text-align: left;
}

table.sortable th { 
  cursor: pointer;
}
table.sortable th::after {
  color: transparent;
  content: "\00A0\025B8";
}
table.sortable th:hover::after {
  color: inherit;
}
table.sortable th.dir-u::after {
  color: inherit;
  content: "\00A0\025BE";
}
table.sortable th.dir-d::after {
  color: inherit;
  content: "\00A0\025B4";
}

/* In HTML5 only styles are valid for alignment */
table.center { margin-left: auto; margin-right: auto; }
table.right  { margin-left: auto; }
table.left   { margin-right: auto; }
td.left,   th.left   { text-align: left;}
td.center, th.center { text-align: center;}
td.right,  th.right  { text-align: right;}
td.top,    th.top    { vertical-align: top;}
td.bottom, th.bottom { vertical-align: bottom;}
td.middle, th.middle { vertical-align: middle;}

table.simpletable {
  border-collapse: collapse;
}
table.simpletable tbody:first-child tr:nth-child(odd),
table.simpletable thead + tbody tr:nth-child(even) {
  background-color: var(--pmc-gray1);
}
table.simpletable th {
  background-color: var(--pmc-gray2);
}
table.simpletable th, table.simpletable td {
  border: 1px solid var(--pmc-gray);
}

.noPmTOC, .PmTOCdiv:empty {
  display: none;
}
.PmTOCdiv {
  display: inline-block;
  font-size: var(--pm-smaller);
  margin-bottom: var(--pm-lineheight);
}
.PmTOCdiv summary {
  font-weight: bold;
}
.PmTOCtable {
  max-height: var(--pm-toc-maxheight);
  overflow: auto;
}
.PmTOCdiv a {
  text-decoration: none;
  display: block;
}
.pmtoc-indent1 {
  margin-left: var(--pm-toc-indent);
}
.pmtoc-indent2 {
  margin-left: calc( 2 * var(--pm-toc-indent));
}
.pmtoc-indent3 {
  margin-left: calc( 3 * var(--pm-toc-indent));
}
.pmtoc-indent4 {
  margin-left: calc( 4 * var(--pm-toc-indent));
}
.pmtoc-indent5 {
  margin-left: calc( 5 * var(--pm-toc-indent));
}
.pmtoc-indent6 {
  margin-left: calc( 6 * var(--pm-toc-indent));
}
.pmtoc-indent7 {
  margin-left: calc( 7 * var(--pm-toc-indent));
}
.back-arrow {
  text-decoration: none;
  font-weight: normal;
  font-size: 1rem;
  vertical-align: top;
}
.back-arrow:after {
  content: "^";
}


/* xlpage-utf-8.php */
.rtl, .rtl * {
  direction: rtl; 
  unicode-bidi: bidi-override;
}
.ltr, .ltr * {
  direction: ltr; 
  unicode-bidi: bidi-override;
}
.rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
  margin-left: 0; 
  margin-right: var(--pm-indent-size);
}

/* diag.php */
table.recipecheck { 
  border: var(--pm-frameborder);
  padding: 4px;
}
table.recipecheck tr.ok {
  color: var(--pm-recipecheck-color);
  background-color: var(--pm-recipecheck-ok);
}
table.recipecheck tr.check {
  color: var(--pm-recipecheck-color);
  background-color: var(--pm-recipecheck-check);
}


/* pagerev.php */
.diffbox {
  border-left: 1px solid var(--pm-nnn);
  margin-top: var(--pm-lineheight);
}
.diffauthor, .diffchangesum {
  font-weight: bold;
}
.difftime {
  font-size: var(--pm-diff-smaller);
  background-color: var(--pm-gray3);
}
.difftype {
  clear: both;
  font-size: var(--pm-diff-smaller);
  font-weight: bold;
}
.diffadd {
  border-left: 5px solid var(--pmc-green2);
  padding-left: 5px;
}
.diffdel {
  border-left: 5px solid var(--pmc-yellow2);
  padding-left: 5px;
}
.diffrestore {
  clear: both;
  font-size: 66%;
  margin: 1.5em 0px;
}
.diffmarkup {
  font-family: monospace;
  white-space: pre-wrap;
}
.diffmarkup del {
  background: var(--pmc-yellow2);
  text-decoration: none;
}
.diffmarkup ins {
  background: var(--pmc-green2);
  text-decoration: none;
}
.rcplus {
  cursor:pointer; 
  opacity: 0.3;
}
.rcplus:hover {
  opacity: 1;
}
.rcreload {
  opacity: 0.3;
  font-size: 0.9rem;
  cursor: pointer;
}
.rcnew {
  background-color: var(--pmc-yellow1);
}


/* utils.php */
.pmcopycode {
  cursor: pointer;
  display: block;
  border-radius: 0.2em;
  opacity: 0.2;
  position: relative;
  z-index: 2;
}
.pmcopycode::before {
  content: "+";
  display: block;
  width: 0.8em;
  height: 0.8em;
  line-height: 0.8em;
  text-align: center;
}
.pmcopycode.copied::before {
  content: "\2714"; /*check*/
}
.pmcopycode.copied {
  background-color: var(--pmc-green2);
}
pre:hover .pmcopycode {
  opacity: 1;
}

var.labelvalue[data-value]:before {
  content: attr(data-value);
  margin: 0 .5em;
}


/* wikistyles.php */
.frame {
  border: var(--pm-frameborder);
  border-radius: var(--pm-frameradius);
  padding: var(--pm-framepadding);
  background-color: var(--pmc-bg1);
}
.lfloat {
  float: left;
  margin-right: 0.5em;
}
.rfloat {
  float: right;
  margin-left: 0.5em;
}




/* Cookbook:DarkColorScheme */


@media screen {
  html.pmDarkTheme img:not([data-darksrc]), html.pmDarkTheme video:not([data-darksrc]) {
    filter: brightness(.8) saturate(.8) contrast(1.1);
  }
  html.pmDarkTheme .onlyLightTheme,
  html:not(.pmDarkTheme) .onlyDarkTheme {
    display: none;
  }
}
@media print {
  .onlyDarkTheme {
    display: none;
  }
}

.pmToggleDarkTheme {
  cursor: pointer;
  padding: 0 .2em;
}

.pmToggleDarkTheme:before {
  content: "\25ea";
  opacity: 67%;
  font-size: 6mm;
}

.pmToggleDarkTheme:hover:before {
  opacity: 100%;
}

.darkThemeLabel {
  box-shadow: var(--pm-boxshadow);
}

.darkThemeLabel mark {
  padding: .2em .5em;
  color: inherit;
  background-color: inherit;
  filter: invert(.8);
  font-weight: bold;
}

html:not(.pmDarkToggleEnabled) .pmToggleDarkTheme:empty {
  display:none;
}

/***********************************************************************
**  skin.css
**  Copyright 2016-2024 Petko Yotov www.pmwiki.org/petko
**  
**  Partially based on pmwiki.css:
**  Copyright 2004-2006 Patrick R. Michaud pmichaud@pobox.com
**  Copyright 2006 Hagan Fox
**  
**  This file is part of PmWiki; you can redistribute it and/or modify
**  it under the terms of the GNU General Public License as published
**  by the Free Software Foundation; either version 2 of the License, or
**  (at your option) any later version.  See pmwiki.php for full details.
**  
**  This skin was implemented with a mobile-first approach.
**  It should work reasonably well with browsers released since 2009.
**  This CSS uses relative "Reference pixel" dimensions.
***********************************************************************/

:root {
  --pm-color: #000;
  --pm-bgcolor: #f7f7f7;
  --pm-overlay-bgcolor: rgba(0, 0, 0, .2);
  --pm-frame-bgcolor: #f9f9f9;
  --pm-wikibody-bgcolor: #fff;
  --pm-dropdown-bgcolor: #fff; /*#wikileft, #wikihead-searchform, #wikicmds*/
  --pm-bordercolor: #ccc;
  --pm-markuptable-bordercolor: #ccf;
  --pm-scrolltable-bordercolor: #f00;
  --pm-sidehead-linkcolor: #505050;
  --pm-sidebar-linkcolor: #000;
  --pm-sidebar-linkhover: #00f;
  --pm-note-color: #080;
  --pm-diffbox-bordercolor: #999;
  --pm-difftime-bgcolor: #ddd;
  --pm-diffadd-bgcolor: #9f9;
  --pm-diffdel-bgcolor: #ff9;
  --pm-simpletable-bordercolor: #888;
  --pm-simpletable-th-bgcolor: #ccc;
  --pm-simpletable-zebra-bgcolor: #eee;
  --pm-dropdown-shadowcolor: rgba(0,0,0,0.75);
  --pm-indent-size: 15px;
}

html, body, #bodywrap {
  padding: 0;
  margin: 0;
  font-family: 'Arial', 'Helvetica', Sans-serif;
  font-size:15px;
  line-height: 25px;
  background-color: var(--pm-bgcolor);
  color: var(--pm-color);
  min-height: 100%;
  position: relative;
}

#wikibody {
  position: relative;
  background-color: var(--pm-wikibody-bgcolor);
  padding: 3px;
  margin: 0;
}

#wikileft, #wikihead-searchform, #wikicmds {
  background-color: var(--pm-dropdown-bgcolor);
  opacity: 0.1;
  display: none;
  position: absolute;
  border: 1px solid var(--pm-bordercolor);
  max-width: 90%;
  max-width: 90vw;
  height: auto;
  overflow: auto;
  top: 8px;  
  box-shadow: 2px 2px 8px 0px var(--pm-dropdown-shadowcolor);
}

#wikihead {
  border-bottom:1px solid var(--pm-bordercolor);
  padding: 0;
  margin: 0;
  line-height: 13px;
  min-height: 33px;
}

#wikihead-searchform {
  text-align: center;
  padding: 10px;
  z-index: 5;
  right: 30px;
  width: 16em;
  max-width: 80%;
  line-height: 167%;
}
#wikihead-searchquery {
  max-width: 12em;
}
#wikimid {
  margin: 0; 
  padding: 0;
  max-width: 100%;
}

#wikileft { 
  left: 30px;
  padding: 6px;
  z-index: 4;
}

#wikicmds { 
  padding:0px;
  z-index: 6;
  white-space:nowrap; 
  right: 30px;
}

#wikitext {
  margin-top: 12px;
}

#wikifoot {
  border-top: 1px solid var(--pm-bordercolor);
  padding: 3px;
  font-size: 13.5px;
}

#wikifoot.nosidebar {
  padding-left:3px;
}

#wikihead-search-toggle, #wikileft-toggle, #wikicmds-toggle {
  display: none;
}

#wikihead-search-toggle-label { background-image: url(skins/pmwiki-responsive/xsearch.svg); }
#wikileft-toggle-label        { background-image: url(skins/pmwiki-responsive/xmenu.svg); }
#wikicmds-toggle-label        { background-image: url(skins/pmwiki-responsive/xwrench.svg); }

#wikihead-search-toggle-label, #wikileft-toggle-label, #wikicmds-toggle-label {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  background-size: cover;
  background-repeat: no-repeat;
  float:right;
  margin: 6px 6px 0 6px;
  z-index: 3;
}

#wikileft-toggle-label {
  float: left;
}
#wikicmds-toggle-label {
  margin: 3px;
}

#wikihead-search-toggle:checked + label,
#wikileft-toggle:checked + label, 
#wikicmds-toggle:checked ~ #wikimid #wikicmds-toggle-label {
  background-image: url(skins/pmwiki-responsive/xclose.svg);
}

#wikileft-toggle:checked ~ * #wikileft,
#wikihead-search-toggle:checked ~ * #wikihead-searchform,
#wikicmds-toggle:checked ~ * #wikicmds {   
  display: block;
  opacity: 1;
  animation: fadein 1s;
}

#wikioverlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0; 
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--pm-overlay-bgcolor);
  z-index: 2;
  display: none;
}
#wikileft-toggle:checked ~ #wikioverlay,
#wikihead-search-toggle:checked ~ #wikioverlay,
#wikicmds-toggle:checked ~ #wikioverlay {   
  display: block;
}



/* These are for the sidebar. */
#wikileft .vspace { margin-top:20px; }
#wikileft ul { list-style:none; padding:0px; margin:0px; }
#wikileft li { margin:8px 0px; padding-left: 6px; }
.sidehead {
  margin:0px; padding:4px 2px 2px 2px;
  font-weight:bold; font-style:normal; 
}
.sidehead a 
  { color:var(--pm-sidehead-linkcolor); font-weight:bold; font-style:normal; }
#wikileft a { text-decoration:none; color:var(--pm-sidebar-linkcolor); padding: 8px 0; }
#wikileft a:hover { text-decoration:underline; color:var(--pm-sidebar-linkhover); }

#wikicmds ul { list-style:none; margin:0px; padding:0px; }
#wikicmds li { padding: 8px; border-top:1px solid var(--pm-bordercolor);}
#wikicmds li:first-child {border-top:none;}
#wikicmds li a { text-decoration:none; color:var(--pm-sidebar-linkcolor); border: none; }
#wikicmds li a.createlink { display:none; }
#wikicmds li a:hover { text-decoration:underline; color:var(--pm-sidebar-linkhover); }


/* These primarily adjust the size and spacing of heading elements,
** most browsers have atrocious defaults for these. */
h1, h2, h3, h4, h5, h6 { margin-top:15px; margin-bottom:9px; }
h1, h2, h3, h6 { font-weight:normal; }
h4, h5 { font-weight:bold; }
h1 code, h2 code, h3 code, h4 code { font-size:15px; }
h1 { font-size:27px; }
h2 { font-size:22px; }
h3 { font-size:18px; }
h4 { font-size:16px; }
h5 { font-size:15px; }
h6 { font-size:15px; }

.pagegroup { line-height:30px; }
.pagetitle { line-height:24px; margin:0px; font-size:24px; font-weight:normal; }
.wikiaction { margin-top:4px; margin-bottom:4px; }

/* These control the fixed-width text elements of the page */
pre, code { font-size: .93333em; } /*14px didn't scale down in smaller text*/
pre, code, .diffmarkup { font-family:'Lucida Console','Andale Mono','Courier New',Courier,monospace; }
pre { line-height: 18px; }
pre code, code code, pre pre { font-size:100%; }
pre, code.escaped { max-width: 100%; overflow: auto; }

/* Wide tables can scroll */
div.scrollable { max-width: 100%; overflow: auto; border: 1px dotted var(--pm-scrolltable-bordercolor);}

#wikiedit form { margin:0px; width:100%; max-width:100%; }
#wikiedit textarea { width:99.5%; max-width:99.5%; max-height: 60vh; }
#wikiedit input { max-width:99.5%; }
.wikimessage { margin-top:4px; margin-bottom:4px; font-style:italic; }

input, img, iframe {
  max-width: 100%;
}
dd {
  margin-left: 15px;
}
ul, ol {
  margin: 0;
}

details > summary:hover {
  color: var(--pm-sidebar-linkhover);
}

select, textarea, input {
  font-size: 16px; /*disable zoom-in on some phones*/
}


/* pmwiki.php */
code.escaped { 
  display: inline-block;
  vertical-align: bottom;
}


a.createlink { text-decoration:none; position:relative; top:-7px;
  font-weight:bold; font-size:smaller; border-bottom:none; }
img { border:0px; }

/* Prevent white space below vertically stacked images */
div.imgonly img, div.imgcaption img:first-child { vertical-align: bottom; }

/* wikistyles.php */
.frame { border:1px solid var(--pm-bordercolor); padding:4px; background-color:var(--pm-frame-bgcolor); }
.lfloat { float:left; margin-right:7px; }
.rfloat { float:right; margin-left:7px; }
.clearboth { clear: both; }

/* stdmarkup.php */
table.markup { border:2px dotted var(--pm-markuptable-bordercolor); width:100%; }
/* td.markup1, td.markup2 { padding-left:0px; padding-right:0px; } */
table.horiz td.markup1, table.vert td.markup1 { 
  border-bottom:1px solid var(--pm-markuptable-bordercolor); border-right: none; width: auto; }
table.horiz td.markup1, table.horiz td.markup2 {
  /* horizontal markup tables to vertical */
  display: block; }
table.markup caption { text-align:left; }
div.faq p, div.faq pre { margin-left:15px; }
div.faq p.question { margin: 0; font-weight:bold; }
div.faqtoc div.faq * { display:none; }
div.faqtoc div.faq p.question 
  { display:block; font-weight:normal; margin:7px 0 7px 15px; line-height:normal; }
div.faqtoc div.faq p.question * { display:inline; }    

/* simuledit.php */
.editconflict { color:var(--pm-note-color); 
  font-style:italic; margin-top:20px; margin-bottom:20px; }

/* pagerev.php */
.diffbox { border-left:1px solid var(--pm-diffbox-bordercolor); margin-top:20px; font-size:12px;  }
.diffauthor { font-weight:bold; }
.diffchangesum { font-weight:bold; }
.difftime { background-color:var(--pm-difftime-bgcolor); }
.difftype { font-weight:bold; }
.diffadd { border-left:5px solid var(--pm-diffadd-bgcolor); padding-left:5px; }
.diffdel { border-left:5px solid var(--pm-diffdel-bgcolor); padding-left:5px; }
.diffrestore { margin:20px 0px; }
.diffmarkup { font-size:14px; white-space: pre-wrap; } 
.diffmarkup del { background:var(--pm-diffdel-bgcolor); text-decoration: none; }
.diffmarkup ins { background:var(--pm-diffadd-bgcolor); text-decoration: none; }


/* urlapprove.php */
.apprlink { font-size:smaller; }

/* vardoc.php */
a.varlink { text-decoration:none; }

#wikiedit-minoredit {
  white-space: nowrap;
}







*[data-pmtoggle], .pmtoggleall {
  cursor: pointer;
  font-weight: bold;
}
*[data-pmtoggle]::before {
  content: "\025BE\00A0";
  float: left;
}
*[data-pmtoggle="closed"]::before {
  content: "\025B8\00A0";
}

*[data-pmtoggle] + * {
  margin-left: .8em;
}
*[data-pmtoggle="closed"] + * {
  display: none;
}

@media screen and (min-width:50em) {
  html, body, #bodywrap {
    line-height: 20px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--pm-bgcolor);
  }

  #wikileft, #wikihead-searchform, #wikicmds {
    background-color:  var(--pm-bgcolor);
    opacity: 1;
    display: block;
    position: relative;
    border: none;
    max-width: none;
    height: auto;
    max-height: none;
    overflow: auto;
    top: 0px;
    box-shadow: none;
  }
  #wikicmds-toggle-label,  #wikileft-toggle-label,  #wikihead-search-toggle-label {
    display: none;
  }
  #wikihead-searchform {
    background-color: transparent;
    float: right;
    padding: 4px;
    right: 6px;
    top: 6px;
    width: auto;
    max-width: none;
    line-height: inherit;
    overflow: hidden;
  }
  #wikilogo {
    display: inline-block;
    margin-top: 4px;
    padding: 6px;
  }
  #wikihead, #wikihead input {
    font-size: 85%;
  }
  
  #wikihead-recent-changes-link, #wikihead-searchlink{
    display: inline;
  }
  
  #wikimid {
    display: table;
    table-layout:fixed;
    width: 100%;
  }
  #wikisidebar, #wikibody {
    display: table-cell;
  }
  
  #wikisidebar {
    position: relative;
    border-right:1px solid var(--pm-bordercolor); 
    width:167px;
    vertical-align: top;
    padding: 0; margin: 0;
    overflow: auto;
  }
  #wikileft {
    padding:6px; 
    left: 0;
    margin: 0 1px 0 0;
    background: transparent;
    font-size: 13px;
    line-height: 17px;
  }
  #wikileft a { padding: 0px; }
  #wikileft li {margin:0px; }
  
  #wikibody {
    padding-left: 10px;
    vertical-align: top;
  }
  
  #wikicmds {
    right: 0px;
    background-color: transparent;
    float:right;
    white-space:nowrap; 
    font-size:13px; 
  }
  #wikicmds li { display:inline; margin:0px 5px; padding: 0; border: none; }
  
  #wikifoot {
    padding-left:178px;
  }
  
  #wikifoot.nosidebar {
    padding-left:10px;
  }
  .vspace { margin-top: 20px; }
  .indent { margin-left:40px; }
  .outdent { margin-left:40px; text-indent:-40px; }
  
  .rtl .indent, .rtl.indent, .rtl .outdent, .rtl.outdent {
    margin-left:0; margin-right: 40px;
  }
    
  dd { margin-left: 40px; }

  table.horiz td.markup1, table.horiz td.markup2 {
    display: table-cell; }
    
  td.markup1, td.markup2 { padding-left:10px; padding-right:10px; }
  table.vert td.markup1 { border-bottom:1px solid var(--pm-markuptable-bordercolor); }
  table.horiz td.markup1 { width:23em; border-right:1px solid var(--pm-markuptable-bordercolor); border-bottom:none; }
  td.markup1 pre { white-space: pre-wrap; }
  
  div.faq p, div.faq pre { margin-left:40px; }
  div.faq p.question { margin:15px 0 12px 0; }
  div.faqtoc div.faq p.question 
    { margin:8px 0 8px 20px; }
    
  
  select, textarea, input {
    font-size: 14px;
  }
  
  #wikileft-toggle:checked ~ #wikioverlay,
  #wikihead-search-toggle:checked ~ #wikioverlay,
  #wikicmds-toggle:checked ~ #wikioverlay {   
    display: none;
  }

}

/* These affect the printed appearance of the web view (not the separate
** print view) of pages.  The sidebar and action links aren't printed. */
@media print {
  body { width:auto; margin:0px; padding:8px; }
  #wikicmds-toggle-label, #wikileft-toggle-label, #wikihead-search-toggle-label,
  #wikihead, #wikileft, #wikicmds, .footnav { display:none; }
  #wikifoot { padding:2px; }
  *[data-pmtoggle="closed"] + * { display: inherit; }
  *[data-pmtoggle="closed"]::before { content: "\025BE\00A0"; }
  
  :root {
    --pm-bgcolor: #fff;
  }
}

/* Fade-in animation */
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media screen {
  html.pmDarkTheme {
    --pm-color: #ddd;
    --pm-bgcolor: #1a1a1a;
    --pm-overlay-bgcolor: rgba(255, 255, 255, .1);
    --pm-frame-bgcolor: #1a1a1a;
    
    --pm-wikibody-bgcolor: #121212;
    --pm-dropdown-bgcolor: #121212; /*#wikileft, #wikihead-searchform, #wikicmds*/
    --pm-bordercolor: #3c3c3c;
    --pm-markuptable-bordercolor: #30355e;
    --pm-scrolltable-bordercolor: #ff0f04;
    --pm-sidehead-linkcolor: #b0b0b0;
    --pm-sidebar-linkcolor: #ddd;
    --pm-sidebar-linkhover: #c281ff;
    --pm-note-color: #32a124;
    --pm-diffbox-bordercolor: #6a6a6a;
    --pm-difftime-bgcolor: #2c2c2c;
    --pm-diffadd-bgcolor: #002f00;
    --pm-diffdel-bgcolor: #4e1200;
    --pm-rcplus-hover-color: #000;
    --pm-simpletable-bordercolor: #7a7a7a;
    --pm-simpletable-th-bgcolor: #3c3c3c;
    --pm-simpletable-zebra-bgcolor: #1c1c1c;
    --pm-dropdown-shadowcolor: rgba(255, 255, 255, 0.75);
    color-scheme: dark;
  }
}



