@media screen {
	/**
	 * 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.
	 */
	
	/* 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 {
		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;
		list-style-type: none;
		list-style-image: none;
		vertical-align: middle !ie;
	}
	
	.catlinks li {
		display: inline-block;
		line-height: 1.25em;
		border-left: 1px solid #a2a9b1;
		margin: 0.125em 0;
		padding: 0 0.5em;
		zoom: 1;
		display: inline !ie; /* stylelint-disable-line declaration-block-no-duplicate-properties */
	}
	
	.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 {
		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
	 */
	div.mw-warning-with-logexcerpt {
		padding: 3px;
		margin-bottom: 3px;
		border: 2px solid #2a4b8d;
		clear: both;
	}
	
	div.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
	 */
	table.wikitable {
		background-color: #f8f9fa;
		color: #222;
		margin: 1em 0;
		border: 1px solid #a2a9b1;
		border-collapse: collapse;
	}
	
	table.wikitable > tr > th,
	table.wikitable > tr > td,
	table.wikitable > * > tr > th,
	table.wikitable > * > tr > td {
		border: 1px solid #a2a9b1;
		padding: 0.2em 0.4em;
	}
	
	table.wikitable > tr > th,
	table.wikitable > * > tr > th {
		background-color: #eaecf0;
		text-align: center;
	}
	
	table.wikitable > caption {
		font-weight: bold;
	}
	
	/* success and error messages */
	.error,
	.warning,
	.success {
		font-size: larger;
	}
	
	.error {
		color: #d33;
	}
	
	.warning {
		color: #705000;
	}
	
	.success {
		color: #009000;
	}
	
	.errorbox,
	.warningbox,
	.successbox {
		border: 1px solid;
		padding: 0.5em 1em;
		margin-bottom: 1em;
		display: inline-block;
		zoom: 1;
		*display: inline; /* stylelint-disable-line declaration-block-no-duplicate-properties */
	}
	
	.errorbox h2,
	.warningbox h2,
	.successbox h2 {
		font-size: 1em;
		color: inherit;
		font-weight: bold;
		display: inline;
		margin: 0 0.5em 0 0;
		border: 0;
	}
	
	.errorbox {
		color: #d33;
		border-color: #fac5c5;
		background-color: #fae3e3;
	}
	
	.warningbox {
		color: #705000;
		border-color: #fde29b;
		background-color: #fdf1d1;
	}
	
	.successbox {
		color: #008000;
		border-color: #b7fdb5;
		background-color: #e1fddf;
	}
	
	/* general info/warning box for SP */
	.mw-infobox {
		border: 2px solid #ff7f00;
		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 {
		color: #d33;
		margin-bottom: 1em;
	}
	
	.previewnote p {
		text-indent: 3em;
		margin: 0.8em 0;
	}
	
	.visualClear {
		clear: both;
	}
	
	/**
	 * Data table style
	 *
	 * Transparent table with suddle borders
	 * and blue row-highlighting.
	 */
	.mw-datatable {
		border-collapse: collapse;
	}
	
	.mw-datatable,
	.mw-datatable td,
	.mw-datatable th {
		border: 1px solid #a2a9b1;
		padding: 0 0.15em 0 0.15em;
	}
	
	.mw-datatable th {
		background-color: #ddf;
	}
	
	.mw-datatable td {
		background-color: #fff;
	}
	
	.mw-datatable tr:hover td {
		background-color: #eaf3ff;
	}
	
	/* 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;
	}
	
	.mw-ajax-loader {
		background-image: url(/wiki/resources/src/mediawiki.legacy/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.legacy/images/spinner.gif?ca65b);
		background-position: center center;
		background-repeat: no-repeat;
	}
	
	/* 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 ), /* Macrolanguage, used on bh.wikipedia.org, should be removed one day */
	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: -moz-persian;
		list-style-type: persian;
	}
	
	ol:lang( ckb ) li,
	ol:lang( sdh ) li {
		list-style-type: -moz-arabic-indic;
		list-style-type: arabic-indic;
	}
	
	ol:lang( hi ) li,
	ol:lang( mai ) li,
	ol:lang( mr ) li,
	ol:lang( ne ) li {
		list-style-type: -moz-devanagari;
		list-style-type: devanagari;
	}
	
	ol:lang( as ) li,
	ol:lang( bn ) li {
		list-style-type: -moz-bengali;
		list-style-type: bengali;
	}
	
	ol:lang( or ) li {
		list-style-type: -moz-oriya;
		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;
	}
	
	div.floatright,
	table.floatright,
	div.floatleft,
	table.floatleft {
		position: relative;
	}
	
	/* T14205 */
	#mw-credits a {
		unicode-bidi: embed;
	}
	
	/* Accessibility */
	.mw-jump,
	#jump-to-nav {
		overflow: hidden;
		height: 0;
		zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
	}
	
	/* Print footer should be hidden by default in screen. */
	.printfooter {
		display: none;
	}
	
	/* For developers */
	.xdebug-error {
		position: absolute;
		z-index: 99;
	}
	
	.mw-editsection,
	#jump-to-nav {
		-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;
	}}
@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.
	 */
	
	/* 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: #ba0000;
	}
	
	/* 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 Styling */
	.mw-parser-output a.extiw,
	.mw-parser-output a.extiw:active {
		color: #36b;
	}
	
	.mw-parser-output a.extiw:visited {
		color: #636;
	}
	
	.mw-parser-output a.extiw:active {
		color: #b63;
	}
	
	/* External links */
	.mw-parser-output a.external {
		color: #36b;
	}
	
	.mw-parser-output a.external:visited {
		color: #636; /* T5112 */
	}
	
	.mw-parser-output a.external:active {
		color: #b63;
	}
	
	.mw-parser-output a.external.free {
		word-wrap: break-word;
	}
	
	/* Inline Elements */
	img {
		border: 0;
		vertical-align: middle;
	}
	
	hr {
		height: 1px;
		color: #a2a9b1;
		background-color: #a2a9b1;
		border: 0;
		margin: 0.2em 0;
	}
	
	/* Structural Elements */
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		color: #000;
		background: none;
		font-weight: normal;
		margin: 0;
		overflow: hidden;
		padding-top: 0.5em;
		padding-bottom: 0.17em;
		border-bottom: 1px solid #a2a9b1;
	}
	
	h1 {
		font-size: 188%;
	}
	
	h2 {
		font-size: 150%;
	}
	
	h3,
	h4,
	h5,
	h6 {
		border-bottom: 0;
		font-weight: bold;
	}
	
	h3 {
		font-size: 128%;
	}
	
	h4 {
		font-size: 116%;
	}
	
	h5 {
		font-size: 108%;
	}
	
	h6 {
		font-size: 100%;
	}
	
	/* Some space under the headers in the content area */
	h1,
	h2 {
		margin-bottom: 0.6em;
	}
	
	h3,
	h4,
	h5 {
		margin-bottom: 0.3em;
	}
	
	p {
		margin: 0.4em 0 0.5em 0;
	}
	
	p img {
		margin: 0;
	}
	
	ul {
		list-style-type: square;
		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;
	}
	
	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;
	}
	
	/* Tables */
	table {
		font-size: 100%;
	}
	
	/* Forms */
	fieldset {
		border: 1px solid #2a4b8d;
		margin: 1em 0 1em 0;
		padding: 0 1em 1em;
	}
	
	fieldset.nested {
		margin: 0 0 0.5em 0;
		padding: 0 0.5em 0.5em;
	}
	
	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.
	 */
	
	/* 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.
	 *
	 * Because IE < 8 and other older browsers don't support display:table, we fallback to
	 * using inline-block mode, which features at least intrinsic width, but won't clear preceding
	 * inline elements. In practice inline elements surrounding the TOC are uncommon enough that
	 * this is an acceptable sacrifice.
	 */
	.toc {
		display: inline-block;
		display: table;
	
		/* IE7 and earlier */
		zoom: 1;
		*display: inline; /* stylelint-disable declaration-block-no-duplicate-properties */
	
		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 */
	/* Ignored by IE7 and lower */
	.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 {
		padding-left: 0;
		padding-right: 0.5em;
		color: #222;
	}
	/* @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;
	}
	
	div.floatright p {
		font-style: italic;
	}
	
	/* @noflip */
	div.floatleft,
	table.floatleft {
		margin: 0 0.5em 0.5em 0;
	}
	
	div.floatleft p {
		font-style: italic;
	}
	
	/* 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;
	}
	
	div.magnify {
		/* Default styles when there's no .mw-content-ltr or .mw-content-rtl, overridden below */
		float: right;
		margin-left: 3px;
	}
	
	div.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("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 11 15%22 width=%2215%22 height=%2211%22%3E %3Cg id=%22magnify-clip%22 fill=%22%23fff%22 stroke=%22%23000%22%3E %3Cpath id=%22bigbox%22 d=%22M1.509 1.865h10.99v7.919h-10.99z%22/%3E %3Cpath id=%22smallbox%22 d=%22M-1.499 6.868h5.943v4.904h-5.943z%22/%3E %3C/g%3E %3C/svg%3E");
		/* 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 div.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("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 11 15%22 width=%2215%22 height=%2211%22%3E %3Cg id=%22magnify-clip%22 fill=%22%23fff%22 stroke=%22%23000%22%3E %3Cpath id=%22bigbox%22 d=%22M1.509 1.865h10.99v7.919h-10.99z%22/%3E %3Cpath id=%22smallbox%22 d=%22M-1.499 6.868h5.943v4.904h-5.943z%22/%3E %3C/g%3E %3C/svg%3E");
	}
	
	/* @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 div.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("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 11 15%22 width=%2215%22 height=%2211%22%3E %3Cg id=%22magnify-clip%22 fill=%22%23fff%22 stroke=%22%23000%22%3E %3Cpath id=%22bigbox%22 d=%22M9.491 1.865h-10.99v7.919h10.99z%22/%3E %3Cpath id=%22smallbox%22 d=%22M12.499 6.868h-5.943v4.904h5.943z%22/%3E %3C/g%3E %3C/svg%3E");
	}
	
	/* @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.
	 */
	
	/* 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: #222;
		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;
	}
	
	.firstHeading {
		margin-bottom: 0.1em;
		/* These two rules hack around T4013 (fix for more limited T13325).
		 * When T4013 is fixed properly, they should be removed. */
		line-height: 1.2em;
		padding-bottom: 0;
	}
	
	/* Sub-navigation */
	#siteSub {
		display: none;
	}
	
	#jump-to-nav {
		/* Negate #contentSub's margin and replicate it so that the jump to links don't affect the spacing */
		margin-top: -1.4em;
		margin-bottom: 1.4em;
	}
	
	#contentSub,
	#contentSub2 {
		font-size: 84%;
		line-height: 1.2em;
		margin: 0 0 1.4em 1em;
		color: #54595d;
		width: auto;
	}
	
	span.subpages {
		display: block;
	}}
@media screen {
	/* Vector screen styles */
	/**
	 * Minimum available screen width at which a device can be considered a mobile device
	 * Many older feature phones have screens smaller than this value.
	 * Number is prone to change with new information.
	 * @since 1.31
	 */
	/**
	 * Minimum available screen width at which a device can be considered a tablet
	 * The number is currently based on the device width of a Samsung Galaxy S5 mini and is low
	 * enough to cover iPad (768px). Number is prone to change with new information.
	 * @since 1.31
	 */
	/**
	 * Minimum available screen width at which a device can be considered a desktop
	 * Number is prone to change with new information.
	 * @since 1.31
	 */
	/*
	 * Any rules which should not be flipped automatically in right-to-left situations should be
	 * prepended with @noflip in a comment block.
	 *
	 * This stylesheet employs a few CSS trick to accomplish compatibility with a wide range of web
	 * browsers. The most common trick is to use some styles in IE6 only. This is accomplished by using
	 * a rule that makes things work in IE6, and then following it with a rule that begins with
	 * "html > body" or use a child selector ">", which is ignored by IE6 because it does not support
	 * the child selector. You can spot this by looking for the "OVERRIDDEN BY COMPLIANT BROWSERS" and
	 * "IGNORED BY IE6" comments.
	 */
	/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
	/* Framework */
	html {
	  font-size: 100%;
	}
	html,
	body {
	  height: 100%;
	  margin: 0;
	  padding: 0;
	  font-family: sans-serif;
	}
	body {
	  background-color: #f6f6f6;
	}
	/* Content */
	.mw-body,
	.parsoid-body {
	  padding: 1em;
	  background-color: #ffffff;
	  color: #222222;
	  direction: ltr;
	}
	.mw-body {
	  margin-left: 10em;
	  /* Border on top, left, and bottom side */
	  border: 1px solid #a7d7f9;
	  border-right-width: 0;
	  /* Merge the border with tabs' one (in their background image) */
	  margin-top: -1px;
	}
	.mw-body h1,
	.mw-body-content h1,
	.mw-body-content h2 {
	  font-family: 'Linux Libertine', 'Georgia', 'Times', serif;
	  line-height: 1.3;
	  margin-bottom: 0.25em;
	  padding: 0;
	  /* Fallback heading font for scripts which render poorly in @content-heading-font-family. */
	  /* See T73240 */
	}
	.mw-body h1:lang( ja ),
	.mw-body-content h1:lang( ja ),
	.mw-body-content h2:lang( ja ),
	.mw-body h1:lang( he ),
	.mw-body-content h1:lang( he ),
	.mw-body-content h2:lang( he ),
	.mw-body h1:lang( ko ),
	.mw-body-content h1:lang( ko ),
	.mw-body-content h2:lang( ko ) {
	  /* See T65827 */
	  font-family: sans-serif;
	}
	.mw-body h1,
	.mw-body-content h1 {
	  font-size: 1.8em;
	}
	.mw-body .firstHeading {
	  /* Change the default from mediawiki.skinning CSS to let indicators float into heading area */
	  overflow: visible;
	}
	.mw-body .mw-indicators {
	  float: right;
	  line-height: 1.6;
	  font-size: 0.875em;
	  /* Ensure that this is displayed on top of .mw-body-content and clickable */
	  position: relative;
	  z-index: 1;
	}
	.mw-body .mw-indicator {
	  display: inline-block;
	  zoom: 1;
	  *display: inline;
	}
	.mw-body-content {
	  position: relative;
	  line-height: 1.6;
	  font-size: 0.875em;
	  z-index: 0;
	}
	.mw-body-content p {
	  line-height: inherit;
	  margin: 0.5em 0;
	}
	.mw-body-content h1 {
	  margin-top: 1em;
	}
	.mw-body-content h2 {
	  font-size: 1.5em;
	  margin-top: 1em;
	}
	.mw-body-content h3,
	.mw-body-content h4,
	.mw-body-content h5,
	.mw-body-content h6 {
	  line-height: 1.6;
	  margin-top: 0.3em;
	  margin-bottom: 0;
	  padding-bottom: 0;
	}
	.mw-body-content h3 {
	  font-size: 1.2em;
	}
	.mw-body-content h3,
	.mw-body-content h4 {
	  font-weight: bold;
	}
	.mw-body-content h4,
	.mw-body-content h5,
	.mw-body-content h6 {
	  font-size: 100%;
	  /* (reset) */
	}
	.mw-body-content .toc h2 {
	  font-size: 100%;
	  /* (reset) */
	  font-family: sans-serif;
	}
	/* Allow edit sections outside of mw-body-content (T160269) */
	.mw-editsection,
	.mw-editsection-like {
	  font-family: sans-serif;
	}
	/* Hide empty portlets */
	div.emptyPortlet {
	  display: none;
	}
	ul {
	  list-style-type: disc;
	  list-style-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%225%22 height=%2213%22%3E %3Ccircle cx=%222.5%22 cy=%229.5%22 r=%222.5%22 fill=%22%2300528c%22/%3E %3C/svg%3E");
	  /* Fallback to PNG bullet for IE 8 and below using CSS hack */
	  list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANCAIAAADuXjPfAAAABnRSTlMA/wD/AP83WBt9AAAAHklEQVR4AWP4jwrowWcI6oEgEBtIISNCfFT9mOYDACO/lbNIGC/yAAAAAElFTkSuQmCC) \9;
	  /* Fallback to PNG bullet for IE 8 and below using CSS hack */
	  list-style-image: url(/wiki/skins/Vector/images/bullet-icon.png?e31f8) \9!ie;
	}
	pre,
	.mw-code {
	  line-height: 1.3em;
	}
	/* Site Notice (includes notices from CentralNotice extension) */
	#siteNotice {
	  font-size: 0.8em;
	}
	/* Personal */
	#p-personal {
	  position: absolute;
	  top: 0.33em;
	  right: 0.75em;
	  /* Display on top of page tabs - bugs 37158, 48078 */
	  z-index: 100;
	}
	#p-personal h3 {
	  display: none;
	}
	#p-personal ul {
	  list-style-type: none;
	  list-style-image: none;
	  margin: 0;
	  padding-left: 10em;
	  /* Keep from overlapping logo */
	}
	#p-personal li {
	  line-height: 1.125em;
	  float: left;
	  margin-left: 0.75em;
	  margin-top: 0.5em;
	  font-size: 0.75em;
	  white-space: nowrap;
	}
	/* Icon for Usernames */
	#pt-userpage,
	#pt-anonuserpage {
	  background-position: left top;
	  background-repeat: no-repeat;
	  /* SVG support using a transparent gradient to guarantee cross-browser
		 * compatibility (browsers able to understand gradient syntax support also SVG) */
	  background-image: url(/wiki/skins/Vector/images/user-icon.png?13155);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2213.836%22 viewBox=%220 0 12 13.836%22%3E %3Cpath fill=%22%2372777d%22 d=%22M1.938%2C6.656c-1.32%2C1.485-1.47%2C3.15-0.97%2C4.25c0.323%2C0.707%2C0.78%2C1.127%2C1.313%2C1.375 c0.496%2C0.229%2C1.074%2C0.273%2C1.658%2C0.282c0.023%2C0%2C0.04%2C0.03%2C0.062%2C0.03h4.187c0.61%2C0%2C1.225-0.125%2C1.75-0.405 c0.527-0.28%2C0.961-0.718%2C1.188-1.376c0.335-0.964%2C0.175-2.529-1.094-4.03C9.094%2C7.954%2C7.68%2C8.719%2C6.065%2C8.719 c-1.677%2C0-3.182-0.812-4.125-2.063H1.938z%22/%3E %3Cpath fill=%22%2372777d%22 d=%22M6.063%2C0c-1.89%2C0-3.595%2C1.674-3.594%2C3.563C2.467%2C5.45%2C4.173%2C7.155%2C6.06%2C7.155 c1.89%2C0%2C3.564-1.705%2C3.563-3.593C9.625%2C1.673%2C7.95%2C0%2C6.063%2C0L6.063%2C0z%22/%3E %3C/svg%3E");
	  padding-left: 15px !important;
	}
	/* Show "Not logged in" text in gray */
	#pt-anonuserpage {
	  color: #707070;
	}
	/* Search */
	#p-search {
	  float: left;
	  margin-right: 0.5em;
	  margin-left: 0.5em;
	}
	#p-search h3 {
	  display: block;
	  position: absolute !important;
	  /* stylelint-disable-line declaration-no-important */
	  clip: rect(1px, 1px, 1px, 1px);
	  width: 1px;
	  height: 1px;
	  margin: -1px;
	  border: 0;
	  padding: 0;
	  overflow: hidden;
	}
	#p-search form,
	#p-search input {
	  margin: 0.4em 0 0;
	}
	#simpleSearch {
	  background-color: #fff;
	  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAQCAIAAABY/YLgAAAAJUlEQVQIHQXBsQEAAAjDoND/73UWdnerhmHVsDQZJrNWVg3Dqge6bgMe6bejNAAAAABJRU5ErkJggg==);
	  background-image: url(/wiki/skins/Vector/images/search-fade.png?50f7b)!ie;
	  background-position: top left;
	  background-repeat: repeat-x;
	  color: #000;
	  display: block;
	  width: 12.6em;
	  width: 20vw;
	  /* responsive width */
	  min-width: 5em;
	  max-width: 20em;
	  padding-right: 1.4em;
	  height: 1.4em;
	  margin-top: 0.65em;
	  position: relative;
	  min-height: 1px;
	  /* Gotta trigger hasLayout for IE7 */
	  border: 1px solid #a2a9b1;
	  border-radius: 2px;
	  -webkit-transition: border-color 250ms;
	  -moz-transition: border-color 250ms;
	  transition: border-color 250ms;
	}
	#simpleSearch:hover {
	  border-color: #72777d;
	}
	#simpleSearch input {
	  background-color: transparent;
	  color: #000;
	  margin: 0;
	  padding: 0;
	  border: 0;
	}
	#simpleSearch #searchInput {
	  width: 100%;
	  padding: 0.2em 0 0.2em 0.2em;
	  font-size: 13px;
	  direction: ltr;
	  /* stylelint-disable indentation */
	  /* stylelint-enable indentation */
	  -webkit-appearance: textfield;
	}
	#simpleSearch #searchInput:focus {
	  outline: 0;
	}
	#simpleSearch #searchInput::-webkit-input-placeholder {
	  color: #72777d;
	  opacity: 1;
	}
	#simpleSearch #searchInput:-ms-input-placeholder {
	  color: #72777d;
	  opacity: 1;
	}
	#simpleSearch #searchInput::-moz-placeholder {
	  color: #72777d;
	  opacity: 1;
	}
	#simpleSearch #searchInput:-moz-placeholder {
	  color: #72777d;
	  opacity: 1;
	}
	#simpleSearch #searchInput::placeholder {
	  color: #72777d;
	  opacity: 1;
	}
	#simpleSearch #searchInput::-webkit-search-decoration,
	#simpleSearch #searchInput::-webkit-search-cancel-button,
	#simpleSearch #searchInput::-webkit-search-results-button,
	#simpleSearch #searchInput::-webkit-search-results-decoration {
	  -webkit-appearance: textfield;
	}
	#simpleSearch #searchButton,
	#simpleSearch #mw-searchButton {
	  position: absolute;
	  top: 0;
	  right: 0;
	  width: 1.65em;
	  height: 100%;
	  cursor: pointer;
	  /* Hide button text and replace it with the image. */
	  text-indent: -99999px;
	  /* Needed to make IE6 respect the text-indent. */
	  line-height: 1;
	  /* Opera 12 on RTL flips the text in a funny way without this. */
	  /* @noflip */
	  direction: ltr;
	  white-space: nowrap;
	  overflow: hidden;
	}
	#simpleSearch #searchButton {
	  background-image: url(/wiki/skins/Vector/images/search-ltr.png?39f97);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2213%22%3E %3Cg fill=%22none%22 stroke=%22%2354595d%22 stroke-width=%222%22%3E %3Cpath d=%22M11.29 11.71l-4-4%22/%3E %3Ccircle cx=%225%22 cy=%225%22 r=%224%22/%3E %3C/g%3E %3C/svg%3E");
	  background-position: center center;
	  background-repeat: no-repeat;
	}
	#simpleSearch #mw-searchButton {
	  z-index: 1;
	}
	/**
	 * Styling for namespace tabs (page, discussion) and views (read, edit, view history, watch and other actions)
	 */
	/* Navigation Labels */
	div.vectorTabs h3 {
	  display: none;
	}
	/* Namespaces and Views */
	div.vectorTabs {
	  float: left;
	  height: 2.5em;
	  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAuCAIAAABmjeQ9AAAAQ0lEQVR4AWVOhQEAIAzC/X+xAXbXeoDFGA3A9yk1n4juBROcUegfarWjP3ojZvEzxs6j+nygmo+zzsk79nY+tOxdEhlf3UHVgUFrVwAAAABJRU5ErkJggg==);
	  background-image: url(/wiki/skins/Vector/images/tab-break.png?09d4b)!ie;
	  background-position: bottom left;
	  background-repeat: no-repeat;
	  padding-left: 1px;
	}
	div.vectorTabs ul {
	  float: left;
	  height: 100%;
	  list-style-type: none;
	  list-style-image: none;
	  margin: 0;
	  padding: 0;
	  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAuCAIAAABmjeQ9AAAAQ0lEQVR4AWVOhQEAIAzC/X+xAXbXeoDFGA3A9yk1n4juBROcUegfarWjP3ojZvEzxs6j+nygmo+zzsk79nY+tOxdEhlf3UHVgUFrVwAAAABJRU5ErkJggg==);
	  background-image: url(/wiki/skins/Vector/images/tab-break.png?09d4b)!ie;
	  background-position: right bottom;
	  background-repeat: no-repeat;
	  /* IGNORED BY IE6 which doesn't support child selector */
	}
	div.vectorTabs ul li {
	  float: left;
	  line-height: 1.125em;
	  /* For IE6, overridden later to display:block by modern browsers */
	  display: inline-block;
	  height: 100%;
	  margin: 0;
	  padding: 0;
	  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAIAAADITs03AAAAO0lEQVR4AeSKhREAMQzDdN5/5uixuEKDpqgBjl2f78wd2DVj1+26/h///PfteVMN7zoGebcg1/Y/ZQQAlAUtQCujIJMAAAAASUVORK5CYII=);
	  background-image: url(/wiki/skins/Vector/images/tab-normal-fade.png?1cc52)!ie;
	  background-position: bottom left;
	  background-repeat: repeat-x;
	  white-space: nowrap;
	}
	div.vectorTabs ul > li {
	  display: block;
	}
	div.vectorTabs li {
	  /* Ignored by IE6 which doesn't support child selector */
	}
	div.vectorTabs li.new a,
	div.vectorTabs li.new a:visited {
	  color: #a55858;
	}
	div.vectorTabs li.selected {
	  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkAQAAAABvV2fNAAAADElEQVR4AWNoGB4QAInlMgFKeRKBAAAAAElFTkSuQmCC);
	  background-image: url(/wiki/skins/Vector/images/tab-current-fade.png?22887)!ie;
	}
	div.vectorTabs li.selected a,
	div.vectorTabs li.selected a:visited {
	  color: #222;
	  text-decoration: none;
	}
	div.vectorTabs li.icon a {
	  background-position: bottom right;
	  background-repeat: no-repeat;
	}
	div.vectorTabs li a {
	  /* For IE6, overridden later to display:block by modern browsers */
	  display: inline-block;
	  height: 1.9em;
	  padding-left: 0.625em;
	  padding-right: 0.625em;
	  color: #0645ad;
	  cursor: pointer;
	  font-size: 0.8em;
	}
	div.vectorTabs li > a {
	  display: block;
	}
	div.vectorTabs span {
	  display: inline-block;
	  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAuCAIAAABmjeQ9AAAAQ0lEQVR4AWVOhQEAIAzC/X+xAXbXeoDFGA3A9yk1n4juBROcUegfarWjP3ojZvEzxs6j+nygmo+zzsk79nY+tOxdEhlf3UHVgUFrVwAAAABJRU5ErkJggg==);
	  background-image: url(/wiki/skins/Vector/images/tab-break.png?09d4b)!ie;
	  background-position: bottom right;
	  background-repeat: no-repeat;
	  height: 100%;
	  /* Ignored by IE6 which doesn't support child selector */
	}
	div.vectorTabs span a {
	  /* For IE6, overridden later to display:block by modern browsers */
	  display: inline-block;
	  padding-top: 1.25em;
	}
	div.vectorTabs span > a {
	  float: left;
	  display: block;
	}
	/* Variants and Actions */
	div.vectorMenu {
	  direction: ltr;
	  float: left;
	  cursor: pointer;
	  position: relative;
	  line-height: 1.125em;
	}
	div#mw-head div.vectorMenu h3 {
	  float: left;
	  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAuCAIAAABmjeQ9AAAAQ0lEQVR4AWVOhQEAIAzC/X+xAXbXeoDFGA3A9yk1n4juBROcUegfarWjP3ojZvEzxs6j+nygmo+zzsk79nY+tOxdEhlf3UHVgUFrVwAAAABJRU5ErkJggg==);
	  background-image: url(/wiki/skins/Vector/images/tab-break.png?09d4b)!ie;
	  background-repeat: no-repeat;
	  background-position: bottom right;
	  font-size: 1em;
	  height: 2.5em;
	  padding-right: 0.5em;
	  margin-right: -1px;
	}
	div.vectorMenu h3 span {
	  position: relative;
	  display: block;
	  font-size: 0.8em;
	  padding-left: 0.625em;
	  padding-top: 1.25em;
	  padding-right: 16px;
	  font-weight: normal;
	  color: #444;
	}
	div.vectorMenu h3 span:after {
	  content: '';
	  position: absolute;
	  top: 1.25em;
	  right: 0;
	  bottom: 0;
	  left: 0;
	  background-image: url(/wiki/skins/Vector/images/arrow-down.png?42edd);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22 viewBox=%220 0 12 12%22%3E %3Cpath d=%22M11.05 3.996l-.965-1.053-4.035 3.86-3.947-3.86L1.05 3.996l5 5 5-5%22 fill=%22%23222%22/%3E %3C/svg%3E");
	  background-position: 100% 50%;
	  background-repeat: no-repeat;
	  opacity: 0.85;
	}
	div.vectorMenu h3:hover span,
	div.vectorMenu h3:focus span {
	  color: #222222;
	}
	div.vectorMenu h3:hover span:after,
	div.vectorMenu h3:focus span:after {
	  opacity: 1;
	}
	div.vectorMenu .vectorMenuCheckbox:checked + h3 span:after {
	  transform: scaleY(-1);
	}
	div.vectorMenu .vectorMenuCheckbox:focus + h3 {
	  outline: dotted 1px;
	  outline: auto -webkit-focus-ring-color;
	}
	div.vectorMenu div.menu {
	  min-width: 100%;
	  position: absolute;
	  top: 2.5em;
	  left: -1px;
	  background-color: #ffffff;
	  border: 1px solid #a2a9b1;
	  border-top-width: 0;
	  clear: both;
	  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
	  text-align: left;
	  display: none;
	  z-index: 2;
	}
	div.vectorMenu:hover div.menu {
	  display: block;
	}
	div.vectorMenu .vectorMenuCheckbox:checked ~ div.menu {
	  display: block;
	}
	div.vectorMenu ul {
	  list-style-type: none;
	  list-style-image: none;
	  padding: 0;
	  margin: 0;
	  text-align: left;
	}
	/* Fixes old versions of FireFox */
	div.vectorMenu ul,
	x:-moz-any-link {
	  min-width: 5em;
	}
	/* Returns things back to normal in modern versions of FireFox */
	div.vectorMenu ul,
	x:-moz-any-link,
	x:default {
	  min-width: 0;
	}
	div.vectorMenu li {
	  padding: 0;
	  margin: 0;
	  text-align: left;
	  line-height: 1em;
	}
	/* OVERRIDDEN BY COMPLIANT BROWSERS */
	div.vectorMenu li a {
	  display: inline-block;
	  padding: 0.625em;
	  white-space: nowrap;
	  color: #0645ad;
	  cursor: pointer;
	  font-size: 0.8em;
	}
	/* IGNORED BY IE6 */
	div.vectorMenu li > a {
	  display: block;
	}
	div.vectorMenu li.selected a,
	div.vectorMenu li.selected a:visited {
	  color: #222;
	  text-decoration: none;
	}
	.vectorMenuCheckbox {
	  cursor: pointer;
	  position: absolute;
	  top: 0;
	  left: 0;
	  z-index: 1;
	  opacity: 0;
	  width: 100%;
	  height: 100%;
	  margin: 0;
	  padding: 0;
	  display: none;
	}
	:not( :checked ) > .vectorMenuCheckbox {
	  display: block;
	}
	* html div.vectorMenu div.menu {
	  display: block;
	  position: static;
	  border: 0;
	}
	* html div#mw-head div.vectorMenu h3 {
	  display: none;
	}
	* html div.vectorMenu li {
	  float: left;
	  line-height: 1.125em;
	  border-right: 1px solid #a7d7f9;
	}
	* html div.vectorMenu li a {
	  padding-top: 1.25em;
	}
	@-webkit-keyframes rotate {
	  from {
	    -webkit-transform: rotate(0deg);
	    -moz-transform: rotate(0deg);
	    transform: rotate(0deg);
	  }
	  to {
	    -webkit-transform: rotate(360deg);
	    -moz-transform: rotate(360deg);
	    transform: rotate(360deg);
	  }
	}
	@-moz-keyframes rotate {
	  from {
	    -webkit-transform: rotate(0deg);
	    -moz-transform: rotate(0deg);
	    transform: rotate(0deg);
	  }
	  to {
	    -webkit-transform: rotate(360deg);
	    -moz-transform: rotate(360deg);
	    transform: rotate(360deg);
	  }
	}
	@keyframes rotate {
	  from {
	    -webkit-transform: rotate(0deg);
	    -moz-transform: rotate(0deg);
	    transform: rotate(0deg);
	  }
	  to {
	    -webkit-transform: rotate(360deg);
	    -moz-transform: rotate(360deg);
	    transform: rotate(360deg);
	  }
	}
	/* Watch/Unwatch Icon Styling */
	/* Only use icon if the menu item is not collapsed into the "More" dropdown
	 * (in which case it is inside .vectorMenu instead of .vectorTabs). */
	.vectorTabs #ca-unwatch.icon a,
	.vectorTabs #ca-watch.icon a {
	  margin: 0;
	  padding: 0;
	  display: block;
	  width: 28px;
	  /* This hides the text but shows the background image */
	  padding-top: 3.1em;
	  /* Only applied in IE6 */
	  _margin-top: -0.8em;
	  height: 0;
	  overflow: hidden;
	  background-position: 5px 60%;
	  background-repeat: no-repeat;
	}
	.vectorTabs #ca-unwatch.icon a {
	  background-image: url(/wiki/skins/Vector/images/unwatch-icon.png?fccbe);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22%3E %3Cdefs%3E %3ClinearGradient id=%22a%22%3E %3Cstop offset=%220%22 stop-color=%22%23c2edff%22/%3E %3Cstop offset=%22.5%22 stop-color=%22%2368bdff%22/%3E %3Cstop offset=%221%22 stop-color=%22%23fff%22/%3E %3C/linearGradient%3E %3ClinearGradient id=%22b%22 x1=%2213.47%22 x2=%224.596%22 y1=%2214.363%22 y2=%223.397%22 xlink:href=%22%23a%22 gradientUnits=%22userSpaceOnUse%22/%3E %3C/defs%3E %3Cpath fill=%22url%28%23b%29%22 stroke=%22%237cb5d1%22 stroke-width=%22.99992%22 d=%22M8.103 1.146l2.175 4.408 4.864.707-3.52 3.431.831 4.845-4.351-2.287-4.351 2.287.831-4.845-3.52-3.431 4.864-.707z%22/%3E %3C/svg%3E");
	}
	.vectorTabs #ca-watch.icon a {
	  background-image: url(/wiki/skins/Vector/images/watch-icon.png?e1b42);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22%3E %3Cpath fill=%22%23fff%22 stroke=%22%237cb5d1%22 stroke-width=%22.99992%22 d=%22M8.103 1.146l2.175 4.408 4.864.707-3.52 3.431.831 4.845-4.351-2.287-4.351 2.287.831-4.845-3.52-3.431 4.864-.707z%22/%3E %3C/svg%3E");
	}
	.vectorTabs #ca-unwatch.icon a:hover,
	.vectorTabs #ca-unwatch.icon a:focus {
	  background-image: url(/wiki/skins/Vector/images/unwatch-icon-hl.png?c4723);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22%3E %3Cdefs%3E %3ClinearGradient id=%22a%22%3E %3Cstop offset=%220%22 stop-color=%22%23c2edff%22/%3E %3Cstop offset=%22.5%22 stop-color=%22%2368bdff%22/%3E %3Cstop offset=%221%22 stop-color=%22%23fff%22/%3E %3C/linearGradient%3E %3ClinearGradient id=%22b%22 x1=%2213.47%22 x2=%224.596%22 y1=%2214.363%22 y2=%223.397%22 xlink:href=%22%23a%22 gradientUnits=%22userSpaceOnUse%22/%3E %3C/defs%3E %3Cpath fill=%22url%28%23b%29%22 stroke=%22%23c8b250%22 stroke-width=%22.99992%22 d=%22M8.103 1.146l2.175 4.408 4.864.707-3.52 3.431.831 4.845-4.351-2.287-4.351 2.287.831-4.845-3.52-3.431 4.864-.707z%22/%3E %3C/svg%3E");
	}
	.vectorTabs #ca-watch.icon a:hover,
	.vectorTabs #ca-watch.icon a:focus {
	  background-image: url(/wiki/skins/Vector/images/watch-icon-hl.png?f4c7e);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22%3E %3Cpath fill=%22%23fff%22 stroke=%22%23c8b250%22 stroke-width=%22.99992%22 d=%22M8.103 1.146l2.175 4.408 4.864.707-3.52 3.431.831 4.845-4.351-2.287-4.351 2.287.831-4.845-3.52-3.431 4.864-.707z%22/%3E %3C/svg%3E");
	}
	.vectorTabs #ca-unwatch.icon a.loading,
	.vectorTabs #ca-watch.icon a.loading {
	  background-image: url(/wiki/skins/Vector/images/watch-icon-loading.png?5cb92);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22%3E %3Cpath fill=%22%23fff%22 stroke=%22%23c8ccd1%22 stroke-width=%22.99992%22 d=%22M8.103 1.146l2.175 4.408 4.864.707-3.52 3.431.831 4.845-4.351-2.287-4.351 2.287.831-4.845-3.52-3.431 4.864-.707z%22/%3E %3C/svg%3E");
	  -webkit-animation: rotate 700ms infinite linear;
	  -moz-animation: rotate 700ms infinite linear;
	  animation: rotate 700ms infinite linear;
	  /* Suppress the hilarious rotating focus outline on Firefox */
	  outline: 0;
	  cursor: default;
	  pointer-events: none;
	  background-position: 50% 60%;
	  -webkit-transform-origin: 50% 57%;
	  transform-origin: 50% 57%;
	}
	.vectorTabs #ca-unwatch.icon a span,
	.vectorTabs #ca-watch.icon a span {
	  display: none;
	}
	/* Hide, but keep accessible for screen-readers */
	#mw-navigation h2 {
	  position: absolute;
	  top: -9999px;
	}
	/* Head */
	#mw-page-base {
	  height: 5em;
	  background-position: bottom left;
	  background-repeat: repeat-x;
	  /* This image is only a fallback (for IE 6-9), so we do not @embed it. */
	  background-image: url(/wiki/skins/Vector/images/page-fade.png?1d168);
	  background-color: #f6f6f6;
	  background-image: -webkit-linear-gradient(top, #ffffff 50%, #f6f6f6 100%);
	  background-image: -moz-linear-gradient(top, #ffffff 50%, #f6f6f6 100%);
	  background-image: linear-gradient(#ffffff 50%, #f6f6f6 100%);
	  background-color: #ffffff;
	}
	#mw-head-base {
	  margin-top: -5em;
	  margin-left: 10em;
	  height: 5em;
	}
	#mw-head {
	  position: absolute;
	  top: 0;
	  right: 0;
	  width: 100%;
	}
	#mw-head h3 {
	  margin: 0;
	  padding: 0;
	}
	/* Navigation Containers */
	#left-navigation {
	  float: left;
	  margin-left: 10em;
	  margin-top: 2.5em;
	  /* When right nav would overlap left nav, it's placed below it
		   (normal CSS floats behavior). This rule ensures that no empty space
		   is shown between them due to right nav's margin-top. Page layout
		   is still broken, but at least the nav overlaps only the page title
		   instead of half the content. */
	  margin-bottom: -2.5em;
	}
	#right-navigation {
	  float: right;
	  margin-top: 2.5em;
	}
	/* Logo */
	#p-logo {
	  width: 10em;
	  height: 160px;
	}
	#p-logo a {
	  display: block;
	  width: 10em;
	  height: 160px;
	  background-repeat: no-repeat;
	  background-position: center center;
	  text-decoration: none;
	}
	/* Panel */
	#mw-panel {
	  font-size: inherit;
	  position: absolute;
	  top: 0;
	  width: 10em;
	  left: 0;
	  /* First sidebar portlet. Not using :first-of-type for IE<=8 support. */
	}
	#mw-panel .portal {
	  margin: 0 0.6em 0 0.7em;
	  padding: 0.25em 0;
	  direction: ltr;
	  background-position: top left;
	  background-repeat: no-repeat;
	}
	#mw-panel .portal h3 {
	  font-size: 0.75em;
	  color: #444444;
	  font-weight: normal;
	  margin: 0.5em 0 0 0.66666667em;
	  padding: 0.25em 0;
	  cursor: default;
	  border: 0;
	}
	#mw-panel .portal .body {
	  margin-left: 0.5em;
	  padding-top: 0;
	  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAAABCAAAAAAphRnkAAAAJ0lEQVQIW7XFsQEAIAyAMPD/b7uLWz8wS5youFW1UREfiIpH1Q2VBz7fGPS1dOGeAAAAAElFTkSuQmCC);
	  background-image: url(/wiki/skins/Vector/images/portal-break.png?3ea1b)!ie;
	  background-repeat: no-repeat;
	}
	#mw-panel .portal .body ul {
	  list-style: none none;
	  margin: 0;
	  padding: 0.3em 0 0 0;
	}
	#mw-panel .portal .body li {
	  line-height: 1.125em;
	  margin: 0;
	  padding: 0.25em 0;
	  font-size: 0.75em;
	  word-wrap: break-word;
	}
	#mw-panel .portal .body li a {
	  color: #0645ad;
	}
	#mw-panel .portal .body li a:visited {
	  color: #0b0080;
	}
	#mw-panel #p-logo + .portal {
	  background-image: none;
	  margin-top: 1em;
	}
	#mw-panel #p-logo + .portal h3 {
	  display: none;
	}
	#mw-panel #p-logo + .portal .body {
	  background-image: none;
	  margin-left: 0.5em;
	}
	/* Footer */
	#footer {
	  margin-left: 10em;
	  margin-top: 0;
	  padding: 0.75em;
	  direction: ltr;
	}
	#footer ul {
	  list-style-type: none;
	  list-style-image: none;
	  margin: 0;
	  padding: 0;
	}
	#footer ul li {
	  color: #222;
	  margin: 0;
	  padding: 0;
	  padding-top: 0.5em;
	  padding-bottom: 0.5em;
	  font-size: 0.7em;
	}
	#footer #footer-icons {
	  float: right;
	}
	#footer #footer-icons li {
	  float: left;
	  margin-left: 0.5em;
	  line-height: 2em;
	  text-align: right;
	}
	#footer #footer-info li {
	  line-height: 1.4em;
	}
	#footer #footer-places li {
	  float: left;
	  margin-right: 1em;
	  line-height: 2em;
	}
	.mw-parser-output .external {
	  background-position: center right;
	  background-repeat: no-repeat;
	  background-image: url(/wiki/skins/Vector/images/external-link-ltr-icon.png?325de);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2212%22%3E %3Cpath fill=%22%23fff%22 stroke=%22%2336c%22 d=%22M1.5 4.518h5.982V10.5H1.5z%22/%3E %3Cpath fill=%22%2336c%22 d=%22M5.765 1H11v5.39L9.427 7.937l-1.31-1.31L5.393 9.35l-2.69-2.688 2.81-2.808L4.2 2.544z%22/%3E %3Cpath fill=%22%23fff%22 d=%22M9.995 2.004l.022 4.885L8.2 5.07 5.32 7.95 4.09 6.723l2.882-2.88-1.85-1.852z%22/%3E %3C/svg%3E");
	  padding-right: 13px;
	}}
@media screen and (min-width: 982px) {
	/* Vector screen styles for high definition displays */
	/**
	 * Minimum available screen width at which a device can be considered a mobile device
	 * Many older feature phones have screens smaller than this value.
	 * Number is prone to change with new information.
	 * @since 1.31
	 */
	/**
	 * Minimum available screen width at which a device can be considered a tablet
	 * The number is currently based on the device width of a Samsung Galaxy S5 mini and is low
	 * enough to cover iPad (768px). Number is prone to change with new information.
	 * @since 1.31
	 */
	/**
	 * Minimum available screen width at which a device can be considered a desktop
	 * Number is prone to change with new information.
	 * @since 1.31
	 */
	.mw-body {
	  margin-left: 11em;
	  padding: 1.25em 1.5em 1.5em 1.5em;
	}
	#footer {
	  margin-left: 11em;
	  padding: 1.25em;
	}
	#mw-panel {
	  padding-left: 0.5em;
	}
	#p-search {
	  margin-right: 1em;
	}
	#left-navigation {
	  margin-left: 11em;
	}
	#p-personal {
	  right: 1em;
	}
	#mw-head-base {
	  margin-left: 11em;
	}}
/**
 * Minimum available screen width at which a device can be considered a mobile device
 * Many older feature phones have screens smaller than this value.
 * Number is prone to change with new information.
 * @since 1.31
 */
/**
 * Minimum available screen width at which a device can be considered a tablet
 * The number is currently based on the device width of a Samsung Galaxy S5 mini and is low
 * enough to cover iPad (768px). Number is prone to change with new information.
 * @since 1.31
 */
/**
 * Minimum available screen width at which a device can be considered a desktop
 * Number is prone to change with new information.
 * @since 1.31
 */
@media print {
  /* These styles retain the existing typography in screen.less
	In future (when deploying these styles) we may want to refactor skins.vector.styles
	to apply certain styles in print as well as screen mode. */
  .toc,
  body {
    padding: 10px;
    font-family: 'Linux Libertine', 'Georgia', 'Times', serif;
  }
  .printfooter,
  #footer,
  .thumb,
  table,
  ol,
  dl,
  ul,
  h3,
  h4,
  h5,
  h6 {
    font-family: sans-serif;
  }
  img {
    font-family: 'Linux Libertine', 'Georgia', 'Times', serif;
  }
  a {
    border-bottom: 1px solid #aaa;
  }
  .firstHeading {
    font-size: 25pt;
    line-height: 28pt;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  .firstHeading,
  h2 {
    overflow: hidden;
    border-bottom: 2px solid #000000;
  }
  h3,
  h4,
  h5,
  h6 {
    margin: 30px 0 0;
  }
  h2,
  h3,
  h4,
  h5,
  h6 {
    padding: 0;
    position: relative;
  }
  h2 {
    font-size: 18pt;
    line-height: 24pt;
    margin-bottom: 0.25em;
  }
  h3 {
    font-size: 13pt;
    line-height: 20pt;
  }
  h4,
  h5,
  h6 {
    font-size: 10pt;
    line-height: 15pt;
  }
  p {
    font-size: 10pt;
    line-height: 16pt;
    margin-top: 5px;
    text-align: justify;
  }
  p:before {
    content: '';
    display: block;
    overflow: hidden;
    width: 120pt;
  }
  blockquote {
    border-left: 2px solid #000000;
    padding-left: 20px;
  }
  ol,
  ul {
    margin: 10px 0 0 1.6em;
    padding: 0;
  }
  ol li,
  ul li {
    padding: 2px 0;
    font-size: 10pt;
  }
  table ol li,
  table ul li {
    font-size: inherit;
  }
  .toc {
    page-break-before: avoid;
    page-break-after: avoid;
    background: none;
    border: 0;
    display: table;
  }
  .toc a {
    border: 0;
    font-weight: normal;
  }
  .toc > ul > li {
    margin-bottom: 4px;
    font-weight: bold;
  }
  .toc ul {
    margin: 0;
    list-style: none;
  }
  .toc ul ul {
    padding-left: 30px;
  }
  .toc li.toclevel-1 > a {
    font-weight: bold;
    font-size: 10pt;
  }
  .toc .tocnumber {
    display: none;
  }
  .printfooter {
    margin-top: 10px;
    border-top: 3px solid #000000;
    padding-top: 10px;
    font-size: 10pt;
    clear: both;
  }
  #footer {
    margin-top: 12px;
    border-top: 1px solid #eeeeee;
    padding-top: 5px;
  }
  #footer-info {
    margin: 0;
    padding: 0;
  }
  #footer-info li {
    color: #999;
    list-style: none;
    display: block;
    padding-bottom: 10px;
    font-size: 10pt;
  }
  #footer-info li a {
    color: #999 !important;
    /* stylelint-disable-line declaration-no-important */
  }
  #footer-info-lastmod {
    color: #000000;
    font-size: 12pt;
    font-weight: bold;
  }
}
.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;
	zoom: 100%; /* IE hack */
}

.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-image: url(/wiki/mw-config/images/bullet.gif?11907)!ie;
	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;
}

.success-box {
	font-size: 130%;
}

.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;
}

/* tooltip styles */
.config-help-field-hint {
	display: none;
	margin-left: 2px;
	margin-bottom: -8px;
	padding: 0 0 0 15px;
	background-image: url(data:image/gif;base64,R0lGODlhCwALALMAAP///01NTZOTk1lZWefn57i4uJSUlPPz82VlZdDQ0HFxcaysrNvb28TExAAAAAAAACH5BAAAAAAALAAAAAALAAsAAAQrUIRJqQQ455nNNBgHJANBDAwgZsVwqIG2IEQYYwXy2lq/Kg3NqqeSVCqCCAA7);
	background-image: url(/wiki/mw-config/images/help-question.gif?346d8)!ie;
	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==);
	background-image: url(/wiki/mw-config/images/help-question-hover.gif?53eb5)!ie;
}

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