
/* start https://rationalwiki.org/w/load.php?debug=true&lang=en&modules=mediawiki.toc.styles&only=styles&skin=vector&version=&* */


/* This style is loaded on all media. */

/* Hide the content of the TOC when the checkbox is checked. */
/* stylelint-disable-next-line selector-class-pattern */
.toctogglecheckbox:checked ~ ul {
	display: none;
}@media screen {
	/* This style adds a toggle button with internationalized message for the TOC. */
	/* stylelint-disable selector-class-pattern */
	/* When the browser supports :checked then overwrite the style="display:none" and make the */
	/* checkbox invisible on another way to allow to focus the checkbox with keyboard. */
	:not( :checked ) > .toctogglecheckbox {
	  display: inline !important;
	  /* stylelint-disable-line declaration-no-important */
	  position: absolute;
	  opacity: 0;
	  z-index: -1;
	}
	.toctogglespan {
	  font-size: 94%;
	}
	/* IE8 does not support :checked and therefor it does not support the hiding at all. */
	/* The selector ":not( :checked ) >" prevents that the useless brackets are shown on IE8. */
	:not( :checked ) > .toctogglespan:before {
	  content: ' [';
	}
	:not( :checked ) > .toctogglespan:after {
	  content: ']';
	}
	/* Make the label look like a link. */
	.toctogglelabel {
	  cursor: pointer;
	  color: #0645ad;
	}
	.toctogglelabel:hover {
	  text-decoration: underline;
	}
	/* Show a focus ring around the label when focusing the invisible checkbox. */
	/* This simulates that the label is in focus. */
	.toctogglecheckbox:focus + .toctitle .toctogglelabel {
	  text-decoration: underline;
	  outline: dotted 1px;
	  /* Firefox style for focus */
	  outline: auto -webkit-focus-ring-color;
	  /* Webkit style for focus */
	}
	/* Change the text of the button based on the state of the checkbox. */
	.toctogglecheckbox:checked + .toctitle .toctogglelabel:after {
	  content: 'show';
	}
	.toctogglecheckbox:not( :checked ) + .toctitle .toctogglelabel:after {
	  content: 'hide';
	}}@media print {
	/* Hide the complete TOC on print when the TOC is hidden. */
	/* stylelint-disable-next-line selector-class-pattern */
	.toctogglecheckbox:checked + .toctitle {
		display: none;
	}}



/* end   https://rationalwiki.org/w/load.php?debug=true&lang=en&modules=mediawiki.toc.styles&only=styles&skin=vector&version=&* */
