@media screen {
	/**
	 * MediaWiki style sheet for general styles on basic content elements
	 *
	 * Styles for basic elements: links, lists, etc...
	 *
	 * This style sheet is used by the Monobook and Vector skins.
	 */
	
	/* stylelint-disable selector-class-pattern */
	
	/* Links */
	a {
		text-decoration: none;
		color: #0645ad;
		background: none;
	}
	
	a:not( [ href ] ) {
		cursor: pointer; /* Always cursor:pointer even without href */
	}
	
	a:visited {
		color: #0b0080;
	}
	
	a:active {
		color: #faa700;
	}
	
	a:hover,
	a:focus {
		text-decoration: underline;
	}
	
	a:lang( ar ),
	a:lang( kk-arab ),
	a:lang( mzn ),
	a:lang( ps ),
	a:lang( ur ) {
		text-decoration: none;
	}
	
	a.stub {
		color: #723;
	}
	
	a.new,
	#p-personal a.new {
		color: #d33;
	}
	
	/* self links */
	a.mw-selflink {
		color: inherit;
		font-weight: bold;
		text-decoration: inherit;
	}
	
	a.mw-selflink:hover {
		cursor: inherit;
		text-decoration: inherit;
	}
	
	a.mw-selflink:active,
	a.mw-selflink:visited {
		color: inherit;
	}
	
	a.new:visited,
	#p-personal a.new:visited {
		color: #a55858;
	}
	
	/* Interwiki & External links */
	.mw-parser-output a.extiw,
	.mw-parser-output a.external {
		color: #36b;
	}
	
	.mw-parser-output a.extiw:visited,
	.mw-parser-output a.external:visited {
		color: #636; /* See T5112. */
	}
	
	.mw-parser-output a.extiw:active,
	.mw-parser-output a.external:active {
		color: #b63;
	}
	
	.mw-parser-output a.external.free {
		word-wrap: break-word;
	}
	
	/* Inline Elements */
	img {
		border: 0; /* FIXME: Remove after adding 'normalize.less' added to all 'elements.less' calling skins. */
		vertical-align: middle;
	}
	
	hr {
		height: 1px;
		background-color: #a2a9b1;
		border: 0;
		margin: 0.2em 0;
	}
	
	/* Structural Elements */
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		color: #000;
		margin: 0;
		padding-top: 0.5em;
		padding-bottom: 0.17em;
		overflow: hidden;
	}
	
	h1,
	h2 {
		margin-bottom: 0.6em;
		border-bottom: 1px solid #a2a9b1;
	}
	
	h3,
	h4,
	h5 {
		margin-bottom: 0.3em;
	}
	
	h1 {
		font-size: 188%;
		font-weight: normal;
	}
	
	h2 {
		font-size: 150%;
		font-weight: normal;
	}
	
	h3 {
		font-size: 128%;
	}
	
	h4 {
		font-size: 116%;
	}
	
	h5 {
		font-size: 108%;
	}
	
	h6 {
		font-size: 100%;
	}
	
	p {
		margin: 0.4em 0 0.5em 0;
	}
	
	p img {
		margin: 0;
	}
	
	ul {
		margin: 0.3em 0 0 1.6em;
		padding: 0;
	}
	
	ol {
		margin: 0.3em 0 0 3.2em;
		padding: 0;
		list-style-image: none;
	}
	
	li {
		margin-bottom: 0.1em;
	}
	
	dt {
		font-weight: bold;
		margin-bottom: 0.1em;
	}
	
	dl {
		margin-top: 0.2em;
		margin-bottom: 0.5em;
	}
	
	dd {
		margin-left: 1.6em;
		margin-bottom: 0.1em;
	}
	
	/* FIXME: Duplicated ruleset if skins using ResourceLoaderSkinModule
	load the features `normalize` and `elements`. */
	pre,
	code,
	tt,
	kbd,
	samp,
	.mw-code {
		/* Support: Blink, Gecko, Webkit; enable unified font sizes for monospace font. T176636 */
		font-family: monospace, monospace;
	}
	
	code {
		color: #000;
		background-color: #f8f9fa;
		border: 1px solid #eaecf0;
		border-radius: 2px;
		padding: 1px 4px;
	}
	
	pre,
	.mw-code {
		color: #000;
		background-color: #f8f9fa;
		border: 1px solid #eaecf0;
		padding: 1em;
		/* Wrap lines in overflow. T2260, T103780 */
		white-space: pre-wrap;
		/* Create a new block formatting context */
		overflow-x: hidden;
		/* Break really long words when they overflow to the next line */
		word-wrap: break-word;
	}
	
	/* Tables */
	table {
		font-size: 100%;
	}
	
	/* Forms */
	fieldset {
		border: 1px solid #2a4b8d;
		margin: 1em 0 1em 0;
		padding: 0 1em 1em;
	}
	
	legend {
		padding: 0.5em;
		font-size: 95%;
	}
	
	form {
		border: 0;
		margin: 0;
	}
	
	textarea {
		width: 100%;
		padding: 0.1em;
		display: block;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	/* Emulate Center */
	.center {
		width: 100%;
		text-align: center;
	}
	
	*.center * {
		margin-left: auto;
		margin-right: auto;
	}
	
	/* Small for tables and similar */
	.small {
		font-size: 94%;
	}
	
	table.small {
		font-size: 100%;
	}
	
	/**
	 * MediaWiki style sheet for general styles on complex content
	 *
	 * Styles for complex things which are a standard part of page content
	 * (ie: the CSS classing built into the system), like the TOC.
	 */
	
	/* stylelint-disable selector-class-pattern */
	
	/* Table of Contents */
	.toc,
	.mw-warning,
	.toccolours {
		border: 1px solid #a2a9b1;
		background-color: #f8f9fa;
		padding: 5px;
		font-size: 95%;
	}
	
	/**
	 * We want to display the ToC element with intrinsic width in block mode. The fit-content
	 * value for width is however not supported by large groups of browsers.
	 *
	 * We use display:table. Even though it should only contain other table-* display
	 * elements, there are no known problems with using this.
	 */
	.toc {
		display: table;
		padding: 7px;
	}
	
	/* CSS for backwards-compatibility with cached page renders and creative uses in wikitext */
	table.toc {
		border-collapse: collapse;
	}
	
	/* Remove additional paddings inside table-cells that are not present in <div>s */
	table.toc td {
		padding: 0;
	}
	
	.toc h2 {
		display: inline;
		border: 0;
		padding: 0;
		font-size: 100%;
		font-weight: bold;
	}
	
	.toc .toctitle {
		text-align: center;
	}
	
	.toc ul {
		list-style-type: none;
		list-style-image: none;
		margin-left: 0;
		padding: 0;
		text-align: left;
	}
	
	.toc ul ul {
		margin: 0 0 0 2em;
	}
	
	/* Separate columns for tocnumber and toctext */
	.tocnumber,
	.toctext {
		display: table-cell;
		/*
		 * Text decorations are not propagated to the contents of inline blocks and inline tables,
		 * according to <https://www.w3.org/TR/css-text-decor-3/#line-decoration>, and 'display: table-cell'
		 * generates an inline table when used without any parent table-rows and tables.
		 */
		text-decoration: inherit;
	}
	
	/* Space between the columns for tocnumber and toctext */
	.tocnumber {
		color: #202122;
		padding-left: 0;
		padding-right: 0.5em;
	}
	/* @noflip */
	.mw-content-ltr .tocnumber {
		padding-left: 0;
		padding-right: 0.5em;
	}
	
	/* @noflip */
	.mw-content-rtl .tocnumber {
		padding-left: 0.5em;
		padding-right: 0;
	}
	
	/* Warning */
	.mw-warning {
		margin-left: 50px;
		margin-right: 50px;
		text-align: center;
	}
	
	/* Images */
	/* @noflip */
	div.floatright,
	table.floatright {
		margin: 0 0 0.5em 0.5em;
	}
	
	/* @noflip */
	div.floatleft,
	table.floatleft {
		margin: 0 0.5em 0.5em 0;
	}
	
	/* Thumbnails */
	div.thumb {
		margin-bottom: 0.5em;
		width: auto;
		background-color: transparent;
	}
	
	div.thumbinner {
		border: 1px solid #c8ccd1;
		padding: 3px;
		background-color: #f8f9fa;
		font-size: 94%;
		text-align: center;
		/* new block formatting context,
		 * to clear background from floating content */
		overflow: hidden;
	}
	
	html .thumbimage {
		background-color: #fff;
		border: 1px solid #c8ccd1;
	}
	
	html .thumbcaption {
		border: 0;
		line-height: 1.4em;
		padding: 3px;
		font-size: 94%;
		/* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
		text-align: left;
	}
	
	.magnify {
		/* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
		float: right;
		margin-left: 3px;
	}
	
	.magnify a {
		display: block;
		/* Hide the text… */
		text-indent: 15px;
		white-space: nowrap;
		overflow: hidden;
		/* …and replace it with the image */
		width: 15px;
		height: 11px;
		/* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
	
		/* Use same SVG support hack as mediawiki.legacy's shared.css */
		background-image: url(/wiki/resources/src/mediawiki.skinning/images/magnify-clip-ltr.png?4f704);
		background-image: linear-gradient( transparent, transparent ), url(/wiki/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e);
		/* Don't annoy people who copy-paste everything too much */
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	
	img.thumbborder {
		border: 1px solid #eaecf0;
	}
	
	/* Directionality-specific styles for thumbnails - their positioning depends on content language */
	
	/* @noflip */
	.mw-content-ltr .thumbcaption {
		text-align: left;
	}
	
	/* @noflip */
	.mw-content-ltr .magnify {
		float: right;
		margin-left: 3px;
		margin-right: 0;
	}
	
	/* @noflip */
	.mw-content-ltr .magnify a {
		/* Use same SVG support hack as mediawiki.legacy's shared.css */
		background-image: url(/wiki/resources/src/mediawiki.skinning/images/magnify-clip-ltr.png?4f704);
		background-image: linear-gradient( transparent, transparent ), url(/wiki/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e);
	}
	
	/* @noflip */
	.mw-content-rtl .thumbcaption {
		text-align: right;
	}
	
	/* @noflip */
	.mw-content-rtl .magnify {
		float: left;
		margin-left: 0;
		margin-right: 3px;
	}
	
	/* @noflip */
	.mw-content-rtl .magnify a {
		/* Use same SVG support hack as mediawiki.legacy's shared.css */
		background-image: url(/wiki/resources/src/mediawiki.skinning/images/magnify-clip-rtl.png?a9fb3);
		background-image: linear-gradient( transparent, transparent ), url(/wiki/resources/src/mediawiki.skinning/images/magnify-clip-rtl.svg?38fd5);
	}
	
	/* @noflip */
	div.tright {
		margin: 0.5em 0 1.3em 1.4em;
	}
	
	/* @noflip */
	div.tleft {
		margin: 0.5em 1.4em 1.3em 0;
	}
	
	/* Hide elements that are marked as "empty" according to legacy Tidy rules,
	 * except if a client script removes the mw-hide-empty-elt class from the body
	 */
	body.mw-hide-empty-elt .mw-empty-elt {
		display: none;
	}
	
	/**
	 * MediaWiki style sheet for common core styles on interfaces
	 *
	 * Styles for the Monobook/Vector pattern of laying out common interfaces.
	 * These ids/classes are not built into the system,
	 * they are outputted by the actual MonoBook/Vector code by convention.
	 */
	
	/* stylelint-disable selector-class-pattern */
	
	/* Categories */
	.catlinks {
		border: 1px solid #a2a9b1;
		background-color: #f8f9fa;
		padding: 5px;
		margin-top: 1em;
		clear: both;
	}
	
	textarea {
		/* Support: Firefox */
		/* Border rule required to override system appearance on Linux (T136415) */
		border: 1px solid #c8ccd1;
	}
	
	.editOptions {
		background-color: #eaecf0;
		color: #202122;
		border: 1px solid #c8ccd1;
		border-top: 0;
		padding: 1em 1em 1.5em 1em;
		margin-bottom: 2em;
	}
	
	.usermessage {
		background-color: #ffce7b;
		border: 1px solid #ffa500;
		color: #000;
		font-weight: bold;
		margin: 2em 0 1em;
		padding: 0.5em 1em;
		vertical-align: middle;
	}
	
	#siteNotice {
		position: relative;
		text-align: center;
		margin: 0;
	}
	
	#localNotice {
		margin-bottom: 0.9em;
	}
	
	/* Sub-navigation */
	#siteSub {
		display: none;
	}
	
	#contentSub,
	#contentSub2 {
		font-size: 84%;
		line-height: 1.2em;
		margin: 0 0 1.4em 1em;
		color: #54595d;
		width: auto;
	}
	
	span.subpages {
		display: block;
	}
	
	/* Hide links which require JavaScript to work */
	.client-nojs #t-print {
		display: none; /* T167956 */
	}
	
	/**
	 * CSS in this file is used by *all* skins (that have any CSS at all). Be
	 * careful what you put in here, since what looks good in one skin may not in
	 * another, but don't ignore the poor pre-Monobook users either.
	 *
	 * NOTE: The images which are referenced in this file are no longer in use in
	 * essential interface components. They should NOT be embedded, because that
	 * optimizes for the uncommon case at the cost of bloating the size of render-
	 * blocking CSS common to all pages.
	 */
	/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-disable selector-class-pattern */
	/* GENERAL CLASSES FOR DIRECTIONALITY SUPPORT */
	/**
	 * These classes should be used for text depending on the content direction.
	 * Content stuff like editsection, ul/ol and TOC depend on this.
	 */
	.mw-content-ltr {
	  /* @noflip */
	  direction: ltr;
	}
	.mw-content-rtl {
	  /* @noflip */
	  direction: rtl;
	}
	/* Most input fields should be in site direction */
	.sitedir-ltr textarea,
	.sitedir-ltr input {
	  /* @noflip */
	  direction: ltr;
	}
	.sitedir-rtl textarea,
	.sitedir-rtl input {
	  /* @noflip */
	  direction: rtl;
	}
	.mw-userlink {
	  word-wrap: break-word;
	  -webkit-hyphens: auto;
	  -moz-hyphens: auto;
	  -ms-hyphens: auto;
	  hyphens: auto;
	  unicode-bidi: embed;
	}
	/* User-Agent styles for new HTML5 elements */
	mark {
	  background-color: #ff0;
	  color: #000;
	}
	/* Helper for wbr element on IE 8+; in HTML5, but not supported by default as of IE 11. */
	/* Note canonical HTML5 styles recommend "content: \u200B", but this doesn't work as of IE 11. */
	wbr {
	  display: inline-block;
	}
	/* Input types that should follow user direction, like buttons */
	/* TODO: What about buttons in wikipage content ? */
	input[type='submit'],
	input[type='button'],
	input[type='reset'],
	input[type='file'] {
	  direction: ltr;
	}
	/* Override default values */
	textarea[dir='ltr'],
	input[dir='ltr'] {
	  /* @noflip */
	  direction: ltr;
	}
	textarea[dir='rtl'],
	input[dir='rtl'] {
	  /* @noflip */
	  direction: rtl;
	}
	/* Default style for semantic tags */
	abbr[title],
	.explain[title] {
	  border-bottom: 1px dotted;
	  cursor: help;
	}
	@supports ( text-decoration: underline dotted ) {
	  abbr[title],
	  .explain[title] {
	    border-bottom: 0;
	    text-decoration: underline dotted;
	  }
	}
	/* Comment portions of RC entries */
	span.comment {
	  font-style: italic;
	  unicode-bidi: -moz-isolate;
	  unicode-bidi: isolate;
	}
	/* Stop floats from intruding into edit area in previews */
	#editform,
	#toolbar,
	#wpTextbox1 {
	  clear: both;
	}
	/* Prevent editing textarea from jumping when toolbar is loaded */
	#toolbar {
	  height: 22px;
	}
	/* Underline preference */
	.mw-underline-always a {
	  text-decoration: underline;
	}
	.mw-underline-never a {
	  text-decoration: none;
	}
	/**
	 * rev_deleted stuff
	 */
	li span.deleted,
	span.history-deleted {
	  text-decoration: line-through;
	  color: #72777d;
	  font-style: italic;
	}
	/**
	 * Patrol stuff
	 */
	.not-patrolled {
	  background-color: #ffa;
	}
	.unpatrolled {
	  font-weight: bold;
	  color: #d33;
	}
	div.patrollink {
	  font-size: 75%;
	  text-align: right;
	}
	/**
	 * Forms
	 */
	td.mw-label {
	  text-align: right;
	  vertical-align: middle;
	}
	td.mw-input {
	  text-align: left;
	}
	td.mw-submit {
	  text-align: left;
	  white-space: nowrap;
	}
	.mw-input-with-label {
	  white-space: nowrap;
	  display: inline-block;
	}
	/**
	 * Image captions.
	 *
	 * This is only meant to provide the most basic of styles, visual settings shouldn't be added here.
	 */
	/* @noflip */
	.mw-content-ltr .thumbcaption {
	  text-align: left;
	}
	/* @noflip */
	.mw-content-ltr .magnify {
	  float: right;
	}
	/* @noflip */
	.mw-content-rtl .thumbcaption {
	  text-align: right;
	}
	/* @noflip */
	.mw-content-rtl .magnify {
	  float: left;
	}
	/**
	 * Categories
	 */
	#catlinks {
	  /**
		 * Overrides text justification (user preference)
		 * See T33990
		 */
	  text-align: left;
	}
	.catlinks ul {
	  display: inline;
	  margin: 0;
	  padding: 0;
	  list-style: none none;
	}
	.catlinks li {
	  display: inline-block;
	  line-height: 1.25em;
	  border-left: 1px solid #a2a9b1;
	  margin: 0.125em 0;
	  padding: 0 0.5em;
	}
	.catlinks li:first-child {
	  padding-left: 0.25em;
	  border-left: 0;
	}
	/* (T7346) make category redirects italic */
	.catlinks li a.mw-redirect {
	  font-style: italic;
	}
	/**
	 * Hidden categories
	 */
	.mw-hidden-cats-hidden {
	  display: none;
	}
	.catlinks-allhidden {
	  display: none;
	}
	/**
	 * Convenience links to edit delete and protect reasons
	 */
	p.mw-protect-editreasons,
	p.mw-filedelete-editreasons,
	p.mw-delete-editreasons {
	  font-size: 90%;
	  text-align: right;
	}
	/* The auto-generated edit comments */
	.autocomment,
	.autocomment a,
	.autocomment a:visited {
	  color: #72777d;
	}
	/** Generic minor/bot/newpage styling (recent changes) */
	.newpage,
	.minoredit,
	.botedit {
	  font-weight: bold;
	}
	/**
	 * Recreating deleted page warning
	 * Reupload file warning
	 * Page protection warning
	 * incl. log entries for these warnings
	 */
	.mw-warning-with-logexcerpt {
	  clear: both;
	}
	.mw-warning-with-logexcerpt ul li {
	  font-size: 90%;
	}
	/* (show/hide) revision deletion links */
	span.mw-revdelundel-link,
	strong.mw-revdelundel-link {
	  font-size: 90%;
	}
	span.mw-revdelundel-hidden,
	input.mw-revdelundel-hidden {
	  visibility: hidden;
	}
	td.mw-revdel-checkbox,
	th.mw-revdel-checkbox {
	  padding-right: 10px;
	  text-align: center;
	}
	/* red links; see T38276 */
	a.new {
	  color: #ba0000;
	}
	/* Plainlinks - this can be used to switch
	 * off special external link styling */
	.plainlinks a.external {
	  background: none !important;
	  /* stylelint-disable-line declaration-no-important */
	  padding: 0 !important;
	  /* stylelint-disable-line declaration-no-important */
	}
	/* External URLs should always be treated as LTR (T6330) */
	/* @noflip */
	.rtl a.external.free,
	.rtl a.external.autonumber {
	  direction: ltr;
	  unicode-bidi: embed;
	}
	/**
	 * wikitable class for skinning normal tables
	 * keep in sync with commonPrint.css
	 */
	.wikitable {
	  background-color: #f8f9fa;
	  color: #202122;
	  margin: 1em 0;
	  border: 1px solid #a2a9b1;
	  border-collapse: collapse;
	}
	.wikitable > tr > th,
	.wikitable > tr > td,
	.wikitable > * > tr > th,
	.wikitable > * > tr > td {
	  border: 1px solid #a2a9b1;
	  padding: 0.2em 0.4em;
	}
	.wikitable > tr > th,
	.wikitable > * > tr > th {
	  background-color: #eaecf0;
	  text-align: center;
	}
	.wikitable > caption {
	  font-weight: bold;
	}
	/* Error, warning, success and neutral messages */
	.error,
	.warning,
	.success {
	  font-size: larger;
	}
	.error {
	  color: #d33;
	}
	.warning {
	  color: #ac6600;
	}
	.success {
	  color: #14866d;
	}
	/* general info/warning box for SP */
	.mw-infobox {
	  border: 2px solid #fc3;
	  margin: 0.5em;
	  clear: left;
	  overflow: hidden;
	}
	.mw-infobox-left {
	  margin: 7px;
	  float: left;
	  width: 35px;
	}
	.mw-infobox-right {
	  margin: 0.5em 0.5em 0.5em 49px;
	}
	/* Note on preview page */
	.previewnote {
	  margin-bottom: 1em;
	}
	.visualClear {
	  clear: both;
	}
	/**
	 * Data table style
	 *
	 * Table with suddle borders
	 * and row-highlighting.
	 */
	.mw-datatable {
	  border: 1px solid #a2a9b1;
	  border-collapse: collapse;
	}
	.mw-datatable td,
	.mw-datatable th {
	  border: 1px solid #a2a9b1;
	  padding: 0.2em 0.4em;
	}
	.mw-datatable th {
	  background-color: #eaeeff;
	}
	.mw-datatable td {
	  background-color: #fff;
	}
	.mw-datatable tr:hover td {
	  background-color: #eaf3ff;
	}
	.mw-ajax-loader {
	  background-image: url(/wiki/resources/src/mediawiki.skinning/images/ajax-loader.gif?57f34);
	  background-position: center center;
	  background-repeat: no-repeat;
	  padding: 16px;
	  position: relative;
	  top: -16px;
	}
	.mw-small-spinner {
	  padding: 10px !important;
	  /* stylelint-disable-line declaration-no-important */
	  margin-right: 0.6em;
	  background-image: url(/wiki/resources/src/mediawiki.skinning/images/spinner.gif?ca65b);
	  background-position: center center;
	  background-repeat: no-repeat;
	}
	/* Correct directionality when page dir is different from site/user dir */
	.mw-content-ltr ul,
	.mw-content-rtl .mw-content-ltr ul {
	  /* @noflip */
	  margin: 0.3em 0 0 1.6em;
	  padding: 0;
	}
	.mw-content-rtl ul,
	.mw-content-ltr .mw-content-rtl ul {
	  /* @noflip */
	  margin: 0.3em 1.6em 0 0;
	  padding: 0;
	}
	.mw-content-ltr ol,
	.mw-content-rtl .mw-content-ltr ol {
	  /* @noflip */
	  margin: 0.3em 0 0 3.2em;
	  padding: 0;
	}
	.mw-content-rtl ol,
	.mw-content-ltr .mw-content-rtl ol {
	  /* @noflip */
	  margin: 0.3em 3.2em 0 0;
	  padding: 0;
	}
	/* @noflip */
	.mw-content-ltr dd,
	.mw-content-rtl .mw-content-ltr dd {
	  margin-left: 1.6em;
	  margin-right: 0;
	}
	/* @noflip */
	.mw-content-rtl dd,
	.mw-content-ltr .mw-content-rtl dd {
	  margin-right: 1.6em;
	  margin-left: 0;
	}
	/* Language specific height correction for titles. Ref T31405 and T32809 */
	/* Languages like hi or ml require slightly more vertical space to show diacritics properly */
	h1:lang( anp ),
	h1:lang( as ),
	h1:lang( bh ),
	h1:lang( bho ),
	h1:lang( bn ),
	h1:lang( gu ),
	h1:lang( hi ),
	h1:lang( kn ),
	h1:lang( ks ),
	h1:lang( ml ),
	h1:lang( mr ),
	h1:lang( my ),
	h1:lang( mai ),
	h1:lang( ne ),
	h1:lang( new ),
	h1:lang( or ),
	h1:lang( pa ),
	h1:lang( pi ),
	h1:lang( sa ),
	h1:lang( ta ),
	h1:lang( te ) {
	  line-height: 1.6em !important;
	  /* stylelint-disable-line declaration-no-important */
	}
	/* stylelint-disable selector-list-comma-newline-after */
	h2:lang( anp ),
	h3:lang( anp ),
	h4:lang( anp ),
	h5:lang( anp ),
	h6:lang( anp ),
	h2:lang( as ),
	h3:lang( as ),
	h4:lang( as ),
	h5:lang( as ),
	h6:lang( as ),
	h2:lang( bho ),
	h3:lang( bho ),
	h4:lang( bho ),
	h5:lang( bho ),
	h6:lang( bho ),
	h2:lang( bh ),
	h3:lang( bh ),
	h4:lang( bh ),
	h5:lang( bh ),
	h6:lang( bh ),
	h2:lang( bn ),
	h3:lang( bn ),
	h4:lang( bn ),
	h5:lang( bn ),
	h6:lang( bn ),
	h2:lang( gu ),
	h3:lang( gu ),
	h4:lang( gu ),
	h5:lang( gu ),
	h6:lang( gu ),
	h2:lang( hi ),
	h3:lang( hi ),
	h4:lang( hi ),
	h5:lang( hi ),
	h6:lang( hi ),
	h2:lang( kn ),
	h3:lang( kn ),
	h4:lang( kn ),
	h5:lang( kn ),
	h6:lang( kn ),
	h2:lang( ks ),
	h3:lang( ks ),
	h4:lang( ks ),
	h5:lang( ks ),
	h6:lang( ks ),
	h2:lang( ml ),
	h3:lang( ml ),
	h4:lang( ml ),
	h5:lang( ml ),
	h6:lang( ml ),
	h2:lang( mr ),
	h3:lang( mr ),
	h4:lang( mr ),
	h5:lang( mr ),
	h6:lang( mr ),
	h2:lang( my ),
	h3:lang( my ),
	h4:lang( my ),
	h5:lang( my ),
	h6:lang( my ),
	h2:lang( mai ),
	h3:lang( mai ),
	h4:lang( mai ),
	h5:lang( mai ),
	h6:lang( mai ),
	h2:lang( ne ),
	h3:lang( ne ),
	h4:lang( ne ),
	h5:lang( ne ),
	h6:lang( ne ),
	h2:lang( new ),
	h3:lang( new ),
	h4:lang( new ),
	h5:lang( new ),
	h6:lang( new ),
	h2:lang( or ),
	h3:lang( or ),
	h4:lang( or ),
	h5:lang( or ),
	h6:lang( or ),
	h2:lang( pa ),
	h3:lang( pa ),
	h4:lang( pa ),
	h5:lang( pa ),
	h6:lang( pa ),
	h2:lang( pi ),
	h3:lang( pi ),
	h4:lang( pi ),
	h5:lang( pi ),
	h6:lang( pi ),
	h2:lang( sa ),
	h3:lang( sa ),
	h4:lang( sa ),
	h5:lang( sa ),
	h6:lang( sa ),
	h2:lang( ta ),
	h3:lang( ta ),
	h4:lang( ta ),
	h5:lang( ta ),
	h6:lang( ta ),
	h2:lang( te ),
	h3:lang( te ),
	h4:lang( te ),
	h5:lang( te ),
	h6:lang( te ) {
	  line-height: 1.2em;
	}
	/* stylelint-enable selector-list-comma-newline-after */
	/* Localised ordered list numbering for some languages */
	ol:lang( azb ) li,
	ol:lang( bcc ) li,
	ol:lang( bgn ) li,
	ol:lang( bqi ) li,
	ol:lang( fa ) li,
	ol:lang( glk ) li,
	ol:lang( kk-arab ) li,
	ol:lang( lrc ) li,
	ol:lang( luz ) li,
	ol:lang( mzn ) li {
	  list-style-type: persian;
	}
	ol:lang( ckb ) li,
	ol:lang( sdh ) li {
	  list-style-type: arabic-indic;
	}
	ol:lang( hi ) li,
	ol:lang( mai ) li,
	ol:lang( mr ) li,
	ol:lang( ne ) li {
	  list-style-type: devanagari;
	}
	ol:lang( as ) li,
	ol:lang( bn ) li {
	  list-style-type: bengali;
	}
	ol:lang( or ) li {
	  list-style-type: oriya;
	}
	.toc ul {
	  margin: 0.3em 0;
	}
	/* Correct directionality when page dir is different from site/user dir */
	/* @noflip */
	.mw-content-ltr .toc ul,
	.mw-content-rtl .mw-content-ltr .toc ul {
	  text-align: left;
	}
	/* @noflip */
	.mw-content-rtl .toc ul,
	.mw-content-ltr .mw-content-rtl .toc ul {
	  text-align: right;
	}
	/* @noflip */
	.mw-content-ltr .toc ul ul,
	.mw-content-rtl .mw-content-ltr .toc ul ul {
	  margin: 0 0 0 2em;
	}
	/* @noflip */
	.mw-content-rtl .toc ul ul,
	.mw-content-ltr .mw-content-rtl .toc ul ul {
	  margin: 0 2em 0 0;
	}
	.toc .toctitle {
	  direction: ltr;
	}
	#mw-clearyourcache,
	#mw-sitecsspreview,
	#mw-sitejspreview,
	#mw-usercsspreview,
	#mw-userjspreview {
	  direction: ltr;
	  unicode-bidi: embed;
	}
	#mw-revision-info,
	#mw-revision-info-current,
	#mw-revision-nav {
	  direction: ltr;
	}
	/* Images */
	/* @noflip */
	div.tright,
	div.floatright,
	table.floatright {
	  clear: right;
	  float: right;
	}
	/* @noflip */
	div.tleft,
	div.floatleft,
	table.floatleft {
	  float: left;
	  clear: left;
	}
	/* T14205 */
	#mw-credits a {
	  unicode-bidi: embed;
	}
	/* Print footer should be hidden by default in screen. */
	.printfooter {
	  display: none;
	}
	/* For developers */
	.xdebug-error {
	  position: absolute;
	  z-index: 99;
	}
	.mw-editsection {
	  -moz-user-select: none;
	  -webkit-user-select: none;
	  -ms-user-select: none;
	  user-select: none;
	}
	/* Display editsection links smaller and next to headings */
	.mw-editsection,
	.mw-editsection-like {
	  font-size: small;
	  font-weight: normal;
	  margin-left: 1em;
	  vertical-align: baseline;
	  /* Reset line-height; headings tend to have it set to larger values */
	  line-height: 1em;
	}
	/* Correct directionality when page dir is different from site/user dir */
	/* @noflip */
	.mw-content-ltr .mw-editsection,
	.mw-content-rtl .mw-content-ltr .mw-editsection {
	  margin-left: 1em;
	}
	/* @noflip */
	.mw-content-rtl .mw-editsection,
	.mw-content-ltr .mw-content-rtl .mw-editsection {
	  margin-right: 1em;
	}
	/* Prevent citations and subscripts from interfering with the line-height */
	sup,
	sub {
	  line-height: 1;
	}}
/* stylelint-disable-next-line selector-class-pattern */

/* stylelint-disable selector-class-pattern */
.messagebox,
.errorbox,
.warningbox,
.successbox {
  color: #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 16px;
  border: 1px solid;
  padding: 12px 24px;
  word-wrap: break-word;
  /* Standard property is `overflow-wrap` */
  overflow-wrap: break-word;
  overflow: hidden;
}
/* Ensure box inner spacing is not all over the place no matter what element is only child. */
.messagebox :only-child,
.errorbox :only-child,
.warningbox :only-child,
.successbox :only-child {
  margin: 0;
}
.messagebox h2,
.errorbox h2,
.warningbox h2,
.successbox h2 {
  color: inherit;
  display: inline;
  margin: 0 0.5em 0 0;
  border: 0;
  font-size: 1em;
  font-weight: bold;
}
.messagebox {
  background-color: #eaecf0;
  border-color: #a2a9b1;
}
.errorbox {
  background-color: #fee7e6;
  border-color: #d33;
}
.warningbox {
  background-color: #fef6e7;
  border-color: #fc3;
}
.successbox {
  background-color: #d5fdf4;
  border-color: #14866d;
}
@media print {
	/* stylelint-disable-next-line selector-class-pattern */
	
	/**
	 * MediaWiki print style sheet
	 * Largely based on work by Gabriel Wicke
	 *
	 * Originally derived from Plone (https://plone.org/) styles
	 * Copyright Alexander Limi
	 */
	
	/* stylelint-disable selector-class-pattern */
	
	/**
	 * Hide all the elements irrelevant for printing
	 * Skins however can and should override.
	 */
	/* General hide-in-print class, please only use sparely */
	.noprint,
	/* Various content classes, in alphabetical order */
	.catlinks,
	.magnify,
	.mw-cite-backlink,
	.mw-editsection,
	.mw-editsection-like,
	.mw-hidden-catlinks,
	.mw-indicators,
	.mw-redirectedfrom,
	.patrollink,
	.usermessage,
	/* Various content ids, in alphabetical order */
	#column-one,
	#footer-places,
	#mw-navigation,
	#siteNotice,
	/* Deprecated, changed in core */
	#f-poweredbyico,
	#f-copyrightico,
	li#about,
	li#disclaimer,
	li#mobileview,
	li#privacy {
		display: none;
	}
	
	/**
	 * Generic HTML elements
	 */
	body {
		background: #fff;
		color: #000;
		margin: 0;
		padding: 0;
	}
	
	/* Links */
	a {
		background: none !important; /* stylelint-disable-line declaration-no-important */
		padding: 0 !important; /* stylelint-disable-line declaration-no-important */
	}
	
	a,
	a.external,
	a.new,
	a.stub {
		color: inherit !important; /* stylelint-disable-line declaration-block-no-duplicate-properties, declaration-no-important */
		text-decoration: inherit !important; /* stylelint-disable-line declaration-block-no-duplicate-properties, declaration-no-important */
	}
	
	/* Expand URLs for printing */
	.mw-parser-output a.external.text:after,
	.mw-parser-output a.external.autonumber:after {
		content: ' (' attr( href ) ')';
		word-break: break-all;
		word-wrap: break-word;
	}
	
	/* Expand protocol-relative URLs for printing */
	.mw-parser-output a.external.text[ href^='//' ]:after,
	.mw-parser-output a.external.autonumber[ href^='//' ]:after {
		content: ' (https:' attr( href ) ')';
	}
	
	dt {
		font-weight: bold;
	}
	
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-weight: bold;
		/* Pagination */
		page-break-after: avoid;
		page-break-before: avoid;
	}
	
	p {
		margin: 1em 0;
		line-height: 1.2;
		/* Pagination */
		orphans: 3;
		widows: 3;
	}
	
	img,
	figure,
	.wikitable,
	.thumb {
		/* Pagination */
		page-break-inside: avoid;
	}
	
	img {
		border: 0;
		vertical-align: middle;
	}
	
	pre,
	.mw-code {
		background: #fff;
		color: #000;
		border: 1pt dashed #000;
		padding: 1em;
		font-size: 8pt;
		white-space: pre-wrap;
		/* Create a new block formatting context */
		overflow-x: hidden;
		/* Break really long words when they overflow to the next line */
		word-wrap: break-word;
	}
	
	/* Prevent citations and subscripts from interfering with the line-height */
	sup,
	sub {
		line-height: 1;
	}
	
	ul {
		list-style-type: square;
	}
	
	/**
	 * MediaWiki-specific elements
	 */
	#globalWrapper {
		width: 100% !important; /* stylelint-disable-line declaration-no-important */
		min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
	}
	
	.mw-body {
		background: #fff;
		color: #000;
		border: 0 !important; /* stylelint-disable-line declaration-no-important */
		padding: 0 !important; /* stylelint-disable-line declaration-no-important */
		margin: 0 !important; /* stylelint-disable-line declaration-no-important */
		direction: ltr;
	}
	
	#column-content {
		margin: 0 !important; /* stylelint-disable-line declaration-no-important */
	}
	
	#column-content .mw-body {
		padding: 1em;
		margin: 0 !important; /* stylelint-disable-line declaration-no-important */
	}
	
	.toc {
		background-color: #f9f9f9;
		border: 1pt solid #aaa;
		padding: 5px;
		display: table;
	}
	
	/* Separate columns for `.tocnumber` and `.toctext` */
	.tocnumber,
	.toctext {
		display: table-cell;
	}
	
	/* Space between those columns */
	.tocnumber {
		padding-left: 0;
		padding-right: 0.5em;
	}
	
	/* @noflip */
	.mw-content-ltr .tocnumber {
		padding-left: 0;
		padding-right: 0.5em;
	}
	
	/* @noflip */
	.mw-content-rtl .tocnumber {
		padding-left: 0.5em;
		padding-right: 0;
	}
	
	/**
	 * Floating divs (and thumbnails)
	 */
	/* @noflip */
	table.floatright,
	div.floatright,
	div.tright {
		float: right;
		clear: right;
	}
	
	/* @noflip */
	table.floatleft,
	div.floatleft,
	div.tleft {
		float: left;
		clear: left;
	}
	
	/* @noflip */
	div.tleft {
		margin: 0.5em 1.4em 1.3em 0;
	}
	
	/* @noflip */
	div.tright {
		margin: 0.5em 0 1.3em 1.4em;
	}
	
	/* @noflip */
	table.floatright,
	div.floatright {
		margin: 0 0 0.5em 0.5em;
		border: 0;
	}
	
	/* @noflip */
	table.floatleft,
	div.floatleft {
		margin: 0 0.5em 0.5em 0;
		border: 0;
	}
	
	.center {
		text-align: center;
	}
	
	/**
	 * Thumbnails
	 */
	div.thumb {
		background-color: transparent;
		width: auto;
	}
	
	div.thumb a {
		border-bottom: 0;
	}
	
	div.thumbinner {
		background-color: #fff;
		border: 0;
		border-radius: 2px;
		padding: 5px;
		font-size: 10pt;
		color: #666;
		text-align: center;
		/* new block formatting context,
		 * to clear background from floating content */
		overflow: hidden;
		min-width: 100px;
	}
	
	html .thumbcaption {
		text-align: left;
		line-height: 1.4;
		padding: 3px;
	}
	
	img.thumbborder {
		border: 1pt solid #ddd;
	}
	
	/**
	 * Table rendering
	 */
	/* Compare `.wikitable` in shared.css */
	.wikitable,
	.mw_metadata {
		background: #fff;
		margin: 1em 0;
		border: 1pt solid #aaa;
		border-collapse: collapse;
		font-size: 10pt;
	}
	
	.wikitable > caption,
	.mw_metadata caption {
		padding: 5px;
		font-size: 10pt;
	}
	
	.wikitable > tr > th,
	.wikitable > tr > td,
	.wikitable > * > tr > th,
	.wikitable > * > tr > td,
	.mw_metadata th,
	.mw_metadata td {
		/* Important is required to override any inline styles provided by editors */
		background: #fff !important; /* stylelint-disable-line declaration-no-important */
		/* We need to also set color in case editors applied a light text color */
		color: #000 !important; /* stylelint-disable-line declaration-no-important */
		border: 1pt solid #aaa;
		padding: 0.4em 0.6em;
	}
	
	.wikitable > tr > th,
	.wikitable > * > tr > th,
	.mw_metadata th {
		text-align: center;
	}
	
	table.listing,
	table.listing td {
		border: 1pt solid #000;
		border-collapse: collapse;
	}
	
	/**
	 * Categories
	 */
	.catlinks ul {
		display: inline;
		padding: 0;
		list-style: none none;
	}
	
	.catlinks li {
		display: inline-block;
		line-height: 1.15;
		margin: 0.1em 0;
		border-left: 1pt solid #aaa;
		padding: 0 0.4em;
	}
	
	.catlinks li:first-child {
		border-left: 0;
		padding-left: 0.2em;
	}
	
	/**
	 * Footer
	 */
	.printfooter {
		padding: 1em 0;
	}
	
	#footer {
		background: #fff;
		color: #000;
		margin-top: 1em;
		border-top: 1pt solid #aaa;
		padding-top: 5px;
		direction: ltr;
	}}
/* stylelint-disable selector-class-pattern */
body {
	background-color: #f7f7f7;
	margin: 0;
	font-family: sans-serif;
}

#mw-page-base {
	height: 3.5em;
}

#mw-head-base {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
}

#mw-panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 10em;
}

#content {
	background: #fff;
	margin-left: 11em;
	border: 1px solid #aaa;
	padding: 1.25em 1.5em 1.5em 1.5em;
}

.portal {
	margin: 0 0.6em 0 0.7em;
	padding: 0.25em 0;
}

.portal ul {
	list-style: none none;
	margin: 0 0.5em;
	font-size: 0.813em;
	line-height: 1.4;
}

.env-check {
	font-size: 90%;
	margin: 1em 0 1em 2.5em;
}

.config-section {
	margin-top: 2em;
}

.config-block {
	margin-top: 2em;
	display: block;
}

.config-block-label {
	display: block;
	margin-bottom: 0.2em;
}

.config-block-label label,
.config-label {
	font-weight: bold;
	padding-right: 0.5em;
	padding-top: 0.2em;
}

.config-block-elements {
	margin-left: 2em;
}

.config-block-elements li {
	list-style: none;
}

.config-input {
	clear: left;
}

.config-page-wrapper {
	padding: 0.5em;
}

.config-page-list {
	float: right;
	width: 12em;
	border: 1px solid #aaa;
	background: #fff;
	padding: 0.5em;
	/* 3em left margin to leave space between the list and the page-content */
	margin: 0.5em 0.5em 0.5em 3.5em;
}

.config-page {
	padding: 0.5em 0.5em 0.5em 2em;
	margin: 0.5em 0.5em 0.5em 0.5em;
	background: #eee;
}

.config-submit {
	clear: left;
	text-align: center;
	padding: 1em;
}

.config-submit input {
	margin-left: 0.5em;
	margin-right: 0.5em;
}

.config-page-disabled {
	color: #aaa;
}

.config-error-box {
	border: 2px solid #f00;
}

.config-page-current {
	font-weight: bold;
}

.config-message {
	display: list-item;
	line-height: 1.5em;
	list-style-image: url(data:image/gif;base64,R0lGODlhBQANAIAAAGOMnP///yH5BAEAAAEALAAAAAAFAA0AAAIJjI+pu+APo4SpADs=);
	list-style-type: square;
}

.config-input-text {
	width: 20em;
	margin-right: 1em;
}

.config-input-check {
	margin-left: 10em;
}

.config-skins-item {
	/* Clearfix */
	clear: left;
	overflow: hidden;
}

.config-skins-item .config-input-check {
	margin-left: 10em;
	width: 20em;
	float: left;
}

.config-skins-item .config-skins-use-as-default {
	float: left;
}

.error {
	color: #f00;
	background-color: #fff;
	font-weight: bold;
	left: 1em;
	font-size: 100%;
}

.config-settings-block {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}

.btn-install {
	font-weight: bold;
	font-size: 110%;
	padding: 0.2em 0.3em;
}

.success-message {
	font-weight: bold;
	font-size: 110%;
	color: #008000;
}

.config-cc-wrapper {
	clear: left;
	/* If you change this height, also change it in WebInstallerOptions::submitCC() */
	height: 54em;
}

.config-plainlink a {
	background: none !important; /* stylelint-disable-line declaration-no-important */
	padding: 0 !important; /* stylelint-disable-line declaration-no-important */
}

.config-download-link {
	font-size: 1.8em;
	margin-left: 2em;
}

.config-download-link a {
	background: url(/wiki/mw-config/images/download-32.png?4a9ac) no-repeat center left;
	padding-left: 40px; /* 32 px for the image (above), plus some breathing room */
	height: 32px; /* provide enough vertical room for the image */
	display: inline-block; /* allow the height property (above) to work */
	line-height: 32px; /* center the text vertically */
}

#config-live-log {
	overflow: hidden;
	min-width: 20em;
}

/* Hide empty live-log textarea */
#config-live-log textarea:empty {
	display: none;
}

.config-help-field-checkbox {
	display: none;
}

/* tooltip styles */
.config-help-field-hint {
	margin-left: 2px;
	padding: 0 0 0 15px;
	background-image: url(data:image/gif;base64,R0lGODlhCwALALMAAP///01NTZOTk1lZWefn57i4uJSUlPPz82VlZdDQ0HFxcaysrNvb28TExAAAAAAAACH5BAAAAAAALAAAAAALAAsAAAQrUIRJqQQ455nNNBgHJANBDAwgZsVwqIG2IEQYYwXy2lq/Kg3NqqeSVCqCCAA7);
	background-position: left center;
	background-repeat: no-repeat;
	cursor: pointer;
	font-size: 0.8em;
	text-decoration: underline;
	color: #0645ad;
}

.config-help-field-hint:hover {
	background-image: url(data:image/gif;base64,R0lGODlhCwALALMAAAtop+7z+GCWwpW51oStz8rb6yZzrafF3bnR5Nzn8QBcoD91oABQmf///wAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjAgNjEuMTM0Nzc3LCAyMDEwLzAyLzEyLTE3OjMyOjAwICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjAyODAxMTc0MDcyMDY4MTE5NkQ0QUQzRjI0NzRCNUQwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjJBN0FFQTQwQjlGQzExREY5RDlBQTRBODQyMkJCMkFDIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjJBN0FFQTNGQjlGQzExREY5RDlBQTRBODQyMkJCMkFDIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUgTWFjaW50b3NoIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RkM3RjExNzQwNzIwNjgxMTk1RkVBQ0ZBOEQxNTU5MkUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDI4MDExNzQwNzIwNjgxMTk2RDRBRDNGMjQ3NEI1RDAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4B//79/Pv6+fj39vX08/Lx8O/u7ezr6uno5+bl5OPi4eDf3t3c29rZ2NfW1dTT0tHQz87NzMvKycjHxsXEw8LBwL++vby7urm4t7a1tLOysbCvrq2sq6qpqKempaSjoqGgn56dnJuamZiXlpWUk5KRkI+OjYyLiomIh4aFhIOCgYB/fn18e3p5eHd2dXRzcnFwb25tbGtqaWhnZmVkY2JhYF9eXVxbWllYV1ZVVFNSUVBPTk1MS0pJSEdGRURDQkFAPz49PDs6OTg3NjU0MzIxMC8uLSwrKikoJyYlJCMiISAfHh0cGxoZGBcWFRQTEhEQDw4NDAsKCQgHBgUEAwIBAAAh+QQAAAAAACwAAAAACwALAAAEK3CxSalsOOeZxRQY1yBKkihFI2aDEqiMRgBJGGMD8NpavxoHzaqnklQqiwgAOw==);
}

.config-help-field-data {
	display: block;
	overflow: hidden;
	min-width: min-content;
	background-color: #d6f3ff;
	padding: 5px 8px 4px 8px;
	border: 1px solid #5dc9f4;
	margin-left: 20px;
}

.config-help-field-checkbox:not( :checked ) ~ .config-help-field-data {
	display: none;
}

#p-logo {
	width: 10em;
	height: 160px;
	margin: 0 0 0 0.6em;
}

#p-logo a {
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	width: 10em;
	height: 160px;
	text-decoration: none;
	background-image: url(/wiki/mw-config/images/installer-logo.png?62486);
}body {
     background: #f6f6f6 url('data:image/png;base64,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') repeat-x fixed;
     text-align: center;
}
 #mw-page-base {
     height: 0;
     background-position: bottom left;
     background-repeat: none;
     background-image: none;
     background-color: #fff;
}
 #content {
     background: #ffffff;
     border: 1px solid #000000;
     box-shadow: 0 0 20px 0 rgba(0,0,0,0.75);
     text-align: left;
     -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.75);
     -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.75);
}
 h1 {
     background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKkAAAA5CAYAAABNswtsAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjU4NzgxRkE2MkZGMTFFN0ExQjFFQ0Q5RkUzRTgzMUEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjU4NzgxRkI2MkZGMTFFN0ExQjFFQ0Q5RkUzRTgzMUEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCNTg3ODFGODYyRkYxMUU3QTFCMUVDRDlGRTNFODMxQSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCNTg3ODFGOTYyRkYxMUU3QTFCMUVDRDlGRTNFODMxQSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoGPs2YAAB6bSURBVHja7F0JvFZF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') no-repeat right top;
     font: 16px 'Verdana', 'Helvetica', 'Arial', sans-serif;
     font-weight: bold;
     height: 4em;
     width:100%;
     margin: 0;
     padding: 0;
     vertical-align: bottom;
}
 #notMW {
     border: 2px solid red;
     color: red;
     font: 14px 'Verdana', 'Helvetica', 'Arial', sans-serif;
     font-weight: bold;
     margin: 20px auto 0 auto;
     padding: 20px;
     text-align: center;
     width: 700px;
}
 .section {
     margin: 20px 10px 5px 10px;
}
 h2 {
     font: 14px 'Verdana', 'Helvetica', 'Arial', sans-serif;
     font-weight: bold;
     margin: 0;
}
 .section p {
     font: 12px 'Verdana', 'Helvetica', 'Arial', sans-serif;
     line-height: 18px;
     margin: 10px 0 0 25px;
}
 .section .infobox {
     margin: 20px 0 0 50px;
}
 .section .infobox a {
     border: 1px solid #000000;
     color: #000000;
     padding: 3px 6px;
     text-decoration: none;
}
 .section .infobox a:hover {
     box-shadow: 0 0 10px 0 rgba(0,0,0,0.75);
     -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.75);
     -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.75);
}
 .section .ok, .section .warn, .section .fail {
     font-weight: bold;
}
 .section .ok {
     color: blue;
}
 .mw-infobox {
     color: blue;
}
 .section .warn {
     color: #ffa500;
}
 .section .fail {
     color: red;
}
 .hidden, .config-extensions, .config-advanced-settings, .config-skins, .config-upload-settings {
	display:none;
}