@media print {
	/**
	 * MediaWiki print style sheet
	 * Largely based on work by Gabriel Wicke
	 *
	 * Originally derived from Plone (https://plone.org/) styles
	 * Copyright Alexander Limi
	 */
	
	/**
	 * 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-jump,
	.mw-editsection,
	.mw-editsection-like,
	.mw-hidden-catlinks,
	.mw-indicators,
	.mw-redirectedfrom,
	.patrollink,
	.usermessage,
	/* Various content ids, in alphabetical order */
	#column-one,
	#footer-places,
	#jump-to-nav,
	#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 {
		/* IE 6 & 7 don't understand `inherit` */
		color: #000 !important; /* stylelint-disable-line declaration-no-important */
		text-decoration: none !important; /* stylelint-disable-line declaration-no-important */
		/* Modern browser will apply this, IE 6 & 7 ignore the unknown */
		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 0;
		font-size: 8pt;
		white-space: pre-wrap;
		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;
		position: relative;
	}
	
	/* @noflip */
	table.floatleft,
	div.floatleft,
	div.tleft {
		float: left;
		clear: left;
		position: relative;
	}
	
	/* @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;
	}
	
	div.floatleft p,
	div.floatright p {
		font-style: italic;
	}
	
	.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 `table.wikitable` in shared.css */
	table.wikitable,
	.mw_metadata {
		background: #fff;
		margin: 1em 0;
		border: 1pt solid #aaa;
		border-collapse: collapse;
		font-size: 10pt;
	}
	
	table.wikitable > caption,
	.mw_metadata caption {
		padding: 5px;
		font-size: 10pt;
	}
	
	table.wikitable > tr > th,
	table.wikitable > tr > td,
	table.wikitable > * > tr > th,
	table.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;
	}
	
	table.wikitable > tr > th,
	table.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;
	}}@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(/camp/2019/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(/camp/2019/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;
	}}.mw-headline-anchor {
	display: none;
}@media screen {
	/*!
	 * Icons and colors for external links.
	 */
	
	/* T68091 is blocking is from converting this file to LESS
	 * and using the .background-image-svg mixin. */
	
	/* SVG support using a transparent gradient to guarantee cross-browser
	 * compatibility ( browsers able to understand gradient syntax support also SVG ).
	 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
	
	.mw-parser-output a.external,
	.link-https {
		background: url(/camp/2019/wiki/resources/src/mediawiki.skinning/images/external-ltr.png?bbaf6) center right no-repeat;
		background-image: -webkit-linear-gradient( transparent, transparent ), url("data:image/svg+xml,%3Csvg xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns=%22http://www.w3.org/2000/svg%22 height=%2213%22 width=%2213%22 version=%221.1%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:dc=%22http://purl.org/dc/elements/1.1/%22%3E %3Cg transform=%22translate%28-36.467808%2C-258.39005%29%22%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m41.47%2C259.4%2C7%2C0%2C0%2C7-2-2-3%2C2%2C0-1%2C3-2.25%2C1%2C1%2C0-3.75-3.75%2C0%2C1%2C1-2.25%2C3-1%2C0%2C2-3z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m43.47%2C261.4-5%2C0%2C0%2C8%2C8%2C0%2C0-5-1%2C0%2C0%2C4-6%2C0%2C0-6%2C4%2C0z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m40.55%2C263.9c0-0.6213%2C0.6213-0.6213%2C0.6213-0.6213%2C1.864%2C0.6213%2C3.107%2C1.864%2C3.728%2C3.728%2C0%2C0%2C0%2C0.6213-0.6213%2C0.6213-1.243-1.864-1.864-2.485-3.728-3.728z%22/%3E %3C/g%3E %3C/svg%3E");
		background-image: linear-gradient( transparent, transparent ), url("data:image/svg+xml,%3Csvg xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns=%22http://www.w3.org/2000/svg%22 height=%2213%22 width=%2213%22 version=%221.1%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:dc=%22http://purl.org/dc/elements/1.1/%22%3E %3Cg transform=%22translate%28-36.467808%2C-258.39005%29%22%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m41.47%2C259.4%2C7%2C0%2C0%2C7-2-2-3%2C2%2C0-1%2C3-2.25%2C1%2C1%2C0-3.75-3.75%2C0%2C1%2C1-2.25%2C3-1%2C0%2C2-3z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m43.47%2C261.4-5%2C0%2C0%2C8%2C8%2C0%2C0-5-1%2C0%2C0%2C4-6%2C0%2C0-6%2C4%2C0z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m40.55%2C263.9c0-0.6213%2C0.6213-0.6213%2C0.6213-0.6213%2C1.864%2C0.6213%2C3.107%2C1.864%2C3.728%2C3.728%2C0%2C0%2C0%2C0.6213-0.6213%2C0.6213-1.243-1.864-1.864-2.485-3.728-3.728z%22/%3E %3C/g%3E %3C/svg%3E");
		padding-right: 15px;
	}
	
	.mw-parser-output a.external[ href^='mailto:' ],
	.link-mailto {
		background: url(/camp/2019/wiki/resources/src/mediawiki.skinning/images/mail.png?e8eba) center right no-repeat;
		background-image: linear-gradient( transparent, transparent ), url("data:image/svg+xml,%3Csvg xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns=%22http://www.w3.org/2000/svg%22 height=%2213%22 width=%2213%22 version=%221.1%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:dc=%22http://purl.org/dc/elements/1.1/%22%3E %3Cg transform=%22translate%28-36.47%2C-257.4%29%22%3E %3Cpath style=%22fill:%2315a5ea%3B%22 d=%22m38.31%2C261.4%2C4.66%2C4.349%2C4.66-4.349-0.6213-0.6213-1.243%2C0.6216-2.796%2C2.485-2.796-2.485-1.243-0.6216z%22/%3E %3Cpath style=%22fill:%233366bb%3B%22 d=%22m37.47%2C260.4%2C0%2C8%2C11%2C0%2C0-8zm1%2C1%2C9%2C0%2C0%2C6-9%2C0z%22/%3E %3C/g%3E %3C/svg%3E");
		padding-right: 15px;
	}
	
	.mw-parser-output a.external[ href^='ftp://' ],
	.link-ftp {
		background: url(/camp/2019/wiki/resources/src/mediawiki.skinning/images/ftp-ltr.png?b23f8) center right no-repeat;
		background-image: linear-gradient( transparent, transparent ), url("data:image/svg+xml,%3Csvg xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns=%22http://www.w3.org/2000/svg%22 height=%2213%22 width=%2213%22 version=%221.1%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:dc=%22http://purl.org/dc/elements/1.1/%22%3E %3Cg transform=%22translate%28-136.35715%2C-374.43362%29%22%3E %3Cpath style=%22opacity:1%3Bfill:%233465ba%3B%22 d=%22m137.4%2C376.9%2C0%2C7.5%2C1-0.9872%2C0-6.013%2C2%2C0%2C2%2C1%2C4-0.0002%2C0%2C2%2C1%2C0%2C0-2.5-0.5-0.5002-4.5%2C0.0002-2-1-2.5%2C0z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%2316a4e8%3B%22 d=%22m142.4%2C379.4-1-0.0001-2.5%2C0-0.5%2C0.5-1%2C4.5%2C10-0.0001%2C0-4.5-0.5-0.5zm0%2C1%2C4-0.0001%2C0%2C3-7.75-0.0001%2C0.75-3%2C2%2C0z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%233465ba%3B%22 d=%22m138.4%2C385.4%2C0%2C1%2C8%2C0%2C0-1z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%233465ba%3B%22 d=%22m141.4%2C383.9%2C0%2C2%2C2%2C0%2C0-2c0-0.5-2-0.5-2%2C0z%22/%3E %3C/g%3E %3C/svg%3E");
		padding-right: 15px;
	}
	
	.mw-parser-output a.external[ href^='irc://' ],
	.mw-parser-output a.external[ href^='ircs://' ],
	.link-irc {
		background: url(/camp/2019/wiki/resources/src/mediawiki.skinning/images/chat-ltr.png?c1f6b) center right no-repeat;
		background-image: linear-gradient( transparent, transparent ), url("data:image/svg+xml,%3Csvg xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns=%22http://www.w3.org/2000/svg%22 height=%2213%22 width=%2213%22 version=%221.1%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:dc=%22http://purl.org/dc/elements/1.1/%22%3E %3Cg transform=%22translate%28-36.467808%2C-258.39005%29%22%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m38.09%2C260.4-0.6213%2C0.6213%2C0%2C5.757%2C0.6213%2C0.6213%2C1.689%2C0-0.6213%2C2.728%2C4.311-2.728%2C4.379%2C0%2C0.6213-0.6213%2C0-5.757-0.6213-0.6213zm0.3787%2C1%2C9%2C0%2C0%2C5-4%2C0-2.902%2C1.897%2C0.9021-1.897-3%2C0z%22/%3E %3C/g%3E %3C/svg%3E");
		padding-right: 15px;
	}
	
	.mw-parser-output a.external[ href$='.ogg' ],
	.mw-parser-output a.external[ href$='.OGG' ],
	.mw-parser-output a.external[ href$='.mid' ],
	.mw-parser-output a.external[ href$='.MID' ],
	.mw-parser-output a.external[ href$='.midi' ],
	.mw-parser-output a.external[ href$='.MIDI' ],
	.mw-parser-output a.external[ href$='.mp3' ],
	.mw-parser-output a.external[ href$='.MP3' ],
	.mw-parser-output a.external[ href$='.wav' ],
	.mw-parser-output a.external[ href$='.WAV' ],
	.mw-parser-output a.external[ href$='.wma' ],
	.mw-parser-output a.external[ href$='.WMA' ],
	.link-audio {
		background: url(/camp/2019/wiki/resources/src/mediawiki.skinning/images/audio-ltr.png?d3074) center right no-repeat;
		background-image: linear-gradient( transparent, transparent ), url("data:image/svg+xml,%3Csvg xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns=%22http://www.w3.org/2000/svg%22 height=%2213%22 width=%2213%22 version=%221.1%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:dc=%22http://purl.org/dc/elements/1.1/%22%3E %3Cg transform=%22translate%28-36.467808%2C-258.39005%29%22%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m43.47%2C259.4-3%2C3-3%2C0%2C0%2C4%2C3%2C0%2C3%2C3zm-1%2C2.5%2C0%2C5-1.5-1.5-2.5%2C0%2C0-2%2C2.5%2C0z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m43.9%2C262.5c0-0.6213%2C0.6213-1.243%2C1.243-0.6213%2C0%2C0%2C0.6213%2C0.6213%2C0.6213%2C2.485s-0.6213%2C2.485-0.6213%2C2.485c-0.6213%2C0.6213-1.243%2C0-1.243-0.6213%2C0%2C0%2C0.6213-0.6213%2C0.6213-1.864s-0.6213-1.864-0.6213-1.864z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m45.76%2C261.2c0-0.6213%2C0.6213-1.243%2C1.243-0.6213%2C0%2C0%2C1.243%2C1.243%2C1.243%2C3.728s-1.243%2C3.728-1.243%2C3.728c-0.6213%2C0.6213-1.243%2C0-1.243-0.6213%2C0%2C0%2C1.243-1.243%2C1.243-3.107s-1.243-3.107-1.243-3.107z%22/%3E %3C/g%3E %3C/svg%3E");
		padding-right: 15px;
	}
	
	.mw-parser-output a.external[ href$='.ogm' ],
	.mw-parser-output a.external[ href$='.OGM' ],
	.mw-parser-output a.external[ href$='.avi' ],
	.mw-parser-output a.external[ href$='.AVI' ],
	.mw-parser-output a.external[ href$='.mpeg' ],
	.mw-parser-output a.external[ href$='.MPEG' ],
	.mw-parser-output a.external[ href$='.mpg' ],
	.mw-parser-output a.external[ href$='.MPG' ],
	.link-video {
		background: url(/camp/2019/wiki/resources/src/mediawiki.skinning/images/video.png?4b736) center right no-repeat;
		background-image: linear-gradient( transparent, transparent ), url("data:image/svg+xml,%3Csvg xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns=%22http://www.w3.org/2000/svg%22 height=%2213%22 width=%2213%22 version=%221.1%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:dc=%22http://purl.org/dc/elements/1.1/%22%3E %3Cg transform=%22translate%28-36.4678%2C-258.39%29%22%3E %3Cpath style=%22opacity:1%3Bfill-opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m38.96%2C260.4%2C0%2C0.6213%2C8.098%2C0%2C0-0.6213z%22/%3E %3Cpath style=%22opacity:1%3Bfill-opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m38.96%2C268.4%2C8.098%2C0%2C0-0.6213-8.098%2C0z%22/%3E %3Cpath style=%22opacity:1%3Bfill-opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m38.96%2C262.3%2C0%2C0.6213%2C1.869%2C0%2C0-0.6213zm6.229%2C0%2C0%2C0.6213%2C1.869%2C0%2C0-0.6213z%22/%3E %3Cpath style=%22opacity:1%3Bfill-opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m38.96%2C266%2C0%2C0.6213%2C1.869%2C0%2C0-0.6213zm6.229%2C0%2C0%2C0.6213%2C1.869%2C0%2C0-0.6213z%22/%3E %3Cpath style=%22opacity:1%3Bfill-opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m38.96%2C264.8%2C8.098%2C0%2C0-0.6213-8.098%2C0z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m40.83%2C263.9%2C0%2C1.243%2C4.36%2C0%2C0-1.243z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m40.47%2C260.4%2C0%2C8%2C5%2C0%2C0-8zm1%2C1%2C3%2C0%2C0%2C6-3%2C0z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m38.47%2C259.4%2C1%2C0%2C0%2C10-1%2C0z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m46.47%2C259.4%2C1%2C0%2C0%2C10-1%2C0z%22/%3E %3C/g%3E %3C/svg%3E");
		padding-right: 15px;
	}
	
	.mw-parser-output a.external[ href$='.pdf' ],
	.mw-parser-output a.external[ href$='.PDF' ],
	.mw-parser-output a.external[ href*='.pdf#' ],
	.mw-parser-output a.external[ href*='.PDF#' ],
	.mw-parser-output a.external[ href*='.pdf?' ],
	.mw-parser-output a.external[ href*='.PDF?' ],
	.link-document {
		background: url(/camp/2019/wiki/resources/src/mediawiki.skinning/images/document-ltr.png?de931) center right no-repeat;
		background-image: linear-gradient( transparent, transparent ), url("data:image/svg+xml,%3Csvg xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns=%22http://www.w3.org/2000/svg%22 height=%2213%22 width=%2213%22 version=%221.1%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:dc=%22http://purl.org/dc/elements/1.1/%22%3E %3Cpath style=%22opacity:1%3Bfill:%2315a5ea%3B%22 d=%22m7.5%2C2%2C0%2C3%2C2.5%2C0%2C1-1-2.5%2C0%2C0-3z%22/%3E %3Cpath style=%22opacity:1%3Bfill:%233366bb%3B%22 d=%22m3%2C1%2C0%2C10%2C8%2C0%2C0-7-2.5-3zm1%2C1%2C4%2C0%2C2%2C2.5%2C0%2C5.5-6%2C0z%22/%3E %3C/svg%3E");
		padding-right: 15px;
	}
	
	/* Interwiki styling */
	.mw-parser-output a.extiw,
	.mw-parser-output a.extiw:active {
		color: #36b;
	}
	
	/* External link color */
	.mw-parser-output a.external {
		color: #36b;
	}}@media screen {
	/*! normalize.css v3.0.mwfork.3 | MIT License | git.io/normalize */
	
	/**
	 * Prevent iOS text size adjust after orientation change, without disabling
	 * user zoom.
	 */
	
	html {
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	
	/**
	 * Remove default margin.
	 */
	
	body {
		margin: 0;
	}
	
	/* HTML5 display definitions
		 ========================================================================== */
	
	/**
	 * Correct 'block' display not defined in IE 8/9.
	 */
	
	article,
	aside,
	details,
	figcaption,
	figure,
	footer,
	header,
	hgroup,
	main,
	nav,
	section,
	summary {
		display: block;
	}
	
	/**
	 * 1. Correct 'inline-block' display not defined in IE 8/9.
	 * 2. Normalize vertical alignment of 'progress' in Chrome, Firefox, and Opera.
	 */
	
	audio,
	canvas,
	progress,
	video {
		display: inline-block; /* 1 */
		vertical-align: baseline; /* 2 */
	}
	
	/**
	 * Prevent modern browsers from displaying 'audio' without controls.
	 * Remove excess height in iOS 5 devices.
	 */
	
	audio:not([controls]) {
		display: none;
		height: 0;
	}
	
	/**
	 * Address '[hidden]' styling not present in IE 8/9.
	 * Hide the 'template' element in IE, Safari, and Firefox < 22.
	 */
	
	[hidden],
	template {
		display: none;
	}
	
	/* Links
		 ========================================================================== */
	
	/**
	 * Remove the gray background color from active links in IE 10.
	 */
	
	a {
		background: transparent;
	}
	
	/* Text-level semantics
		 ========================================================================== */
	
	/**
	 * Address styling not present in IE 8/9, Safari 5, and Chrome.
	 */
	
	abbr[title] {
		border-bottom: 1px dotted;
	}
	@supports (text-decoration: underline dotted) {
		abbr[title] {
			border-bottom: none;
			text-decoration: underline dotted;
		}
	}
	
	/**
	 * Address style set to 'bolder' in Firefox 4+, Safari 5, and Chrome.
	 */
	
	b,
	strong {
		font-weight: bold;
	}
	
	/**
	 * Address styling not present in Safari 5 and Chrome.
	 */
	
	dfn {
		font-style: italic;
	}
	
	/**
	 * Address variable 'h1' font-size and margin within 'section' and 'article'
	 * contexts in Firefox 4+, Safari 5, and Chrome.
	 */
	
	h1 {
		font-size: 2em;
		margin: 0.67em 0;
	}
	
	/**
	 * Address styling not present in IE 8/9.
	 */
	
	mark {
		background: #ff0;
		color: #000;
	}
	
	/**
	 * Address inconsistent and variable font size in all browsers.
	 */
	
	small {
		font-size: 80%;
	}
	
	/**
	 * Prevent 'sub' and 'sup' affecting 'line-height' in all browsers.
	 */
	
	sub,
	sup {
		font-size: 75%;
		line-height: 0;
		position: relative;
		vertical-align: baseline;
	}
	
	sup {
		top: -0.5em;
	}
	
	sub {
		bottom: -0.25em;
	}
	
	/* Embedded content
		 ========================================================================== */
	
	/**
	 * Remove border when inside 'a' element in IE 8/9.
	 */
	
	img {
		border: 0;
		vertical-align: middle;
	}
	
	/**
	 * Correct overflow displayed oddly in IE 9.
	 */
	
	svg:not(:root) {
		overflow: hidden;
	}
	
	/* Grouping content
		 ========================================================================== */
	
	/**
	 * Address margin not present in IE 8/9 and Safari 5.
	 */
	
	figure {
		margin: 1em 40px;
	}
	
	/**
	 * Address differences between Firefox and other browsers.
	 */
	
	hr {
		-moz-box-sizing: content-box;
		box-sizing: content-box;
		height: 0;
	}
	
	/**
	 * Address odd 'em'-unit font size rendering in all browsers.
	 * Added tt per https://phabricator.wikimedia.org/T175709
	 */
	
	code,
	tt,
	kbd,
	pre,
	samp {
		font-family: monospace, monospace;
		font-size: 1em;
	}
	
	/* Forms
		 ========================================================================== */
	
	/**
	 * Known limitation: by default, Chrome and Safari on OS X allow very limited
	 * styling of 'select', unless a 'border' property is set.
	 */
	
	/**
	 * 1. Inherit most font properties to avoid cross-browser weirdness
	 * 2. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
	 */
	
	button,
	input,
	optgroup,
	select,
	textarea {
		font-style: inherit;
		font-variant: inherit;
		font-weight: inherit;
		font-stretch: inherit;
		font-size: inherit;
		line-height: inherit; /* 1 */
		margin: 0; /* 2 */
	}
	
	/**
	 * Address 'overflow' set to 'hidden' in IE 8/9/10.
	 */
	
	button {
		overflow: visible;
	}
	
	/**
	 * Address inconsistent 'text-transform' inheritance for 'button' and 'select'.
	 * All other form control elements do not inherit 'text-transform' values.
	 * Correct 'button' style inheritance in Firefox, IE 8+, and Opera
	 * Correct 'select' style inheritance in Firefox.
	 */
	
	button,
	select {
		text-transform: none;
	}
	
	/**
	 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native 'audio'
	 *    and 'video' controls.
	 * 2. Correct inability to style clickable 'input' types in iOS.
	 * 3. Improve usability and consistency of cursor style between image-type
	 *    'input' and others.
	 */
	
	button,
	html input[type="button"], /* 1 */
	input[type="reset"],
	input[type="submit"] {
		-webkit-appearance: button; /* 2 */
		cursor: pointer; /* 3 */
	}
	
	/**
	 * Re-set default cursor for disabled elements.
	 */
	
	button[disabled],
	html input[disabled] {
		cursor: default;
	}
	
	/**
	 * Remove inner padding and border in Firefox 4+.
	 */
	
	button::-moz-focus-inner,
	input::-moz-focus-inner {
		border: 0;
		padding: 0;
	}
	
	/**
	 * Address Firefox 4+ setting 'line-height' on 'input' using '!important' in
	 * the UA stylesheet.
	 */
	
	input {
		line-height: normal;
	}
	
	/**
	 * It's recommended that you don't attempt to style these elements.
	 * Firefox's implementation doesn't respect box-sizing, padding, or width.
	 *
	 * 1. Address box sizing set to 'content-box' in IE 8/9/10.
	 * 2. Remove excess padding in IE 8/9/10.
	 */
	
	input[type="checkbox"],
	input[type="radio"] {
		box-sizing: border-box; /* 1 */
		padding: 0; /* 2 */
	}
	
	/**
	 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
	 * 'font-size' values of the 'input', it causes the cursor style of the
	 * decrement button to change from 'default' to 'text'.
	 */
	
	input[type="number"]::-webkit-inner-spin-button,
	input[type="number"]::-webkit-outer-spin-button {
		height: auto;
	}
	
	/**
	 * 1. Address 'appearance' set to 'searchfield' in Safari 5 and Chrome.
	 * 2. Address 'box-sizing' set to 'border-box' in Safari 5 and Chrome
	 *    (include '-moz' to future-proof).
	 */
	
	input[type="search"] {
		-webkit-appearance: textfield; /* 1 */
		-moz-box-sizing: content-box;
		-webkit-box-sizing: content-box; /* 2 */
		box-sizing: content-box;
	}
	
	/**
	 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
	 * Safari (but not Chrome) clips the cancel button when the search input has
	 * padding (and 'textfield' appearance).
	 */
	
	input[type="search"]::-webkit-search-cancel-button,
	input[type="search"]::-webkit-search-decoration {
		-webkit-appearance: none;
	}
	
	/**
	 * Define consistent border, margin, and padding.
	 */
	
	fieldset {
		border: 1px solid #c0c0c0;
		margin: 0 2px;
		padding: 0.35em 0.625em 0.75em;
	}
	
	/**
	 * 1. Correct 'color' not being inherited in IE 6/7/8/9.
	 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
	 */
	
	legend {
		border: 0; /* 1 */
		padding: 0; /* 2 */
	}
	
	/**
	 * Remove default vertical scrollbar in IE 8/9.
	 */
	
	textarea {
		overflow: auto;
	}
	
	/**
	 * Don't inherit the 'font-weight' (applied by a rule above).
	 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
	 */
	
	optgroup {
		font-weight: bold;
	}
	
	/* Tables
		 ========================================================================== */
	
	/**
	 * Remove most spacing between table cells.
	 */
	
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	
	td,
	th {
		padding: 0;
	}
	
	/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
	/*
	 * PREFERENCES AND FIELDSET STUFF
	 */
	#preftoc {
	  margin: 0 0 1em;
	  padding: 0;
	  list-style: none;
	  clear: both;
	}
	#preftoc li {
	  display: inline;
	  margin-right: 1em;
	}
	#preftoc li.selected a {
	  color: #001133;
	  border-bottom: solid 0.2em #0088dd;
	}
	#preferences {
	  margin: 0;
	  clear: both;
	  min-height: 400px;
	}
	#preferences .prefsection {
	  border: 0;
	  padding: 0;
	  margin: 0;
	  box-shadow: none;
	}
	#preferences .mainLegend {
	  display: none;
	}
	#preferences .preferences-login {
	  clear: both;
	  margin-bottom: 1.5em;
	}
	#preferences .mw-email-not-authenticated .mw-input,
	#preferences .mw-email-none .mw-input {
	  display: block;
	  padding: 0.25em 0.5em;
	}
	#preferences input[type='checkbox'],
	#preferences input[type='radio'] {
	  margin-left: 0;
	}
	.mw-prefs-buttons {
	  margin-top: 1em;
	}
	td.mw-input,
	td.mw-label {
	  vertical-align: middle;
	}
	fieldset {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  line-height: 1.3em;
	  margin: 1em 0;
	  background: #ffffff;
	}
	fieldset legend {
	  padding: 0.5em 1.25em;
	  background: #ffffff;
	  font-weight: bold;
	  color: #006699;
	}
	label {
	  padding-left: 0.5em;
	}
	.mw-input label {
	  padding: 0;
	  margin-right: 1em;
	}
	.mw-label {
	  padding-right: 0.5em;
	}
	.mw-submit {
	  padding-top: 2em;
	}
	.htmlform-tip {
	  font-size: 85%;
	  color: #001133;
	  line-height: 1.2em;
	  padding: 1em 0;
	}
	/*
	 *
	 * FORM STUFF
	 *
	 */
	/* pile of bad hacks to try to catch all the different ones */
	input[name='target'],
	input[name='user'],
	input[name='mime'],
	input[size$='0'],
	input[type='text'],
	input[type='checkbox'],
	input[type='radio'],
	input#wpTemplateSandboxPage,
	input.mw-summary,
	input.mw-input,
	.mw-input input,
	textarea,
	.mw-ui-input-inline,
	.mw-ui-input,
	#searchInput {
	  box-sizing: border-box;
	  padding: 0.25em 0.35em;
	  border: solid 1px #cccccc;
	  margin: 0.5em 0;
	  box-shadow: inset 0 1px 1px 1px rgba(0, 0, 0, 0.05);
	  font-size: 1em;
	  min-height: 30px;
	  font-family: 'Fira Sans', 'Helvetica Neue', 'Nimbus Sans', 'Helvetica', 'Arial', sans-serif;
	}
	select {
	  padding: 0.25em;
	  margin: 0.5em 0;
	}
	input[type='checkbox'],
	input[type='radio'] {
	  margin-left: 1em;
	  min-height: 0;
	}
	input[type='checkbox'] {
	  border-radius: 2px;
	}
	input[type='radio'] {
	  border-radius: 8px;
	}
	.mw-ui-button.mw-ui-progressive,
	.mw-ui-button.mw-ui-progressive:active,
	.mw-ui-button.mw-ui-progressive.mw-ui-checked,
	input[type='submit'],
	input[type='button'],
	button {
	  padding: 0.25em 1em 0.1em 1em;
	  border: solid 1px #cccccc;
	  border-bottom-width: 0.2em;
	  text-shadow: 0 -1px 0 #cccccc;
	  box-sizing: border-box;
	  border-radius: 0.2em;
	  background: #ffffff;
	  color: #001133;
	  min-height: 30px;
	  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	}
	.mw-ui-button.mw-ui-progressive:active,
	.mw-ui-button.mw-ui-progressive:active:active,
	.mw-ui-button.mw-ui-progressive.mw-ui-checked:active,
	input[type='submit']:active,
	input[type='button']:active,
	button:active {
	  background-color: #eeeeee;
	}
	.mw-ui-button.mw-ui-progressive:hover,
	.mw-ui-button.mw-ui-progressive:active:hover,
	.mw-ui-button.mw-ui-progressive.mw-ui-checked:hover,
	input[type='submit']:hover,
	input[type='button']:hover,
	button:hover {
	  background-color: #eeeeee;
	}
	textarea {
	  width: 100%;
	  resize: vertical;
	  box-sizing: border-box;
	  line-height: 1.3em;
	  font-family: 'Consolas', 'Courier', 'Nimbus Mono', 'Liberation Mono', 'Courier New', monospace;
	}
	textarea#wpTextbox1 {
	  border-color: #cccccc;
	}
	div.editOptions {
	  padding: 1.25em 1.75em;
	  padding: 1em;
	  border: solid #cccccc;
	  border-width: 0 1px 0.2em;
	  background: #f3f3f3;
	}
	div.editOptions .mw-summary label {
	  padding-left: 0;
	}
	div.editOptions input#wpSummary {
	  box-sizing: border-box;
	  width: 100%;
	}
	div.editOptions label {
	  margin-right: 1.5em;
	}
	div.editOptions fieldset,
	div.editOptions legend {
	  background: inherit;
	  border: 0;
	  box-shadow: none;
	  padding: 0;
	  margin-top: 2em;
	}
	/* Extension:TemplateSandbox stuff */
	.mw-templatesandbox-page label {
	  padding: 0;
	}
	#wpTemplateSandboxPreview {
	  margin-left: 0.5em;
	}
	/* Recent changes and watchlist options */
	.rcoptions hr,
	#mw-watchlist-options hr {
	  clear: both;
	}
	.rcoptions #namespace,
	#mw-watchlist-options .namespaceselector {
	  margin-right: 2em;
	}
	/* Watchlist */
	#mw-watchlist-options label {
	  padding: 0 1em 0 0;
	}
	#mw-watchlist-options input[type='submit'] {
	  margin: 0 0 0 4em;
	}
	/* Related changes hacks */
	.mw-special-Recentchangeslinked .rcoptions input[type='submit'] {
	  float: right;
	  margin: 0 0 0 4em;
	}
	.mw-special-Recentchangeslinked .rcoptions td.mw-label.mw-target-label {
	  vertical-align: top;
	  padding-top: 0.75em;
	}
	.mw-special-Recentchangeslinked .rcoptions input[name='target'] {
	  float: left;
	}
	.mw-special-Recentchangeslinked #showlinkedto {
	  clear: left;
	  float: left;
	}
	.mw-special-Recentchangeslinked label[for='showlinkedto'] {
	  padding: 0.4em;
	  float: left;
	}
	
	/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
	/* fira-sans-regular - latin */
	@font-face {
	  font-family: 'Fira Sans';
	  font-style: normal;
	  font-weight: 400;
	  src: local('Fira Sans Regular'), local('FiraSans-Regular'), url(/camp/2019/wiki/skins/cccamp/resources/fonts/fira-sans-v10-latin-regular.woff2?78773) format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url(/camp/2019/wiki/skins/cccamp/resources/fonts/fira-sans-v10-latin-regular.woff?baa3b) format('woff');
	  
	  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	}
	/* fira-sans-italic - latin */
	@font-face {
	  font-family: 'Fira Sans';
	  font-style: italic;
	  font-weight: 400;
	  src: local('Fira Sans Italic'), local('FiraSans-Italic'), url(/camp/2019/wiki/skins/cccamp/resources/fonts/fira-sans-v10-latin-italic.woff2?ee9f2) format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url(/camp/2019/wiki/skins/cccamp/resources/fonts/fira-sans-v10-latin-italic.woff?cd019) format('woff');
	  
	  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	}
	/* fira-sans-700 - latin */
	@font-face {
	  font-family: 'Fira Sans';
	  font-style: normal;
	  font-weight: 700;
	  src: local('Fira Sans Bold'), local('FiraSans-Bold'), url(/camp/2019/wiki/skins/cccamp/resources/fonts/fira-sans-v10-latin-700.woff2?2ecb4) format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url(/camp/2019/wiki/skins/cccamp/resources/fonts/fira-sans-v10-latin-700.woff?4d2df) format('woff');
	  
	  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	}
	/* fira-sans-700italic - latin */
	@font-face {
	  font-family: 'Fira Sans';
	  font-style: italic;
	  font-weight: 700;
	  src: local('Fira Sans Bold Italic'), local('FiraSans-BoldItalic'), url(/camp/2019/wiki/skins/cccamp/resources/fonts/fira-sans-v10-latin-700italic.woff2?cfc0c) format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url(/camp/2019/wiki/skins/cccamp/resources/fonts/fira-sans-v10-latin-700italic.woff?fc51c) format('woff');
	  
	  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	}
	/* marvel-regular - latin */
	@font-face {
	  font-family: 'Marvel';
	  font-style: normal;
	  font-weight: 400;
	  src: local('Marvel'), local('Marvel-Regular'), url(/camp/2019/wiki/skins/cccamp/resources/fonts/marvel-v9-latin-regular.woff2?67ee9) format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url(/camp/2019/wiki/skins/cccamp/resources/fonts/marvel-v9-latin-regular.woff?bcf88) format('woff');
	  
	  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	}
	/* Page layout */
	html,
	body {
	  margin: 0;
	  padding: 0;
	}
	body {
	  font-family: 'Fira Sans', 'Helvetica Neue', 'Nimbus Sans', 'Helvetica', 'Arial', sans-serif;
	  color: #001133;
	  background: #777777;
	  font-size: 0.95em;
	  line-height: 1.4;
	}
	#mw-content {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  background: #ffffff;
	  padding: 1em 2em 3em;
	  position: relative;
	}
	#mw-content-container {
	  background: #f3f3f3;
	  word-wrap: break-word;
	}
	#mw-footer-container {
	  border-top: solid 1px #555555;
	  box-shadow: inset 0 7px 2px -4px rgba(0, 0, 0, 0.1);
	  color: #ffffff;
	}
	#mw-footer-container a {
	  color: #ffffff;
	}
	#mw-footer-container ul {
	  margin: 0;
	}
	#p-logo {
	  text-align: center;
	  margin: auto;
	}
	.mw-wiki-logo {
	  display: block;
	  content: '';
	  width: 11em;
	  height: 11em;
	  background-repeat: no-repeat;
	  background-position: 50% 50%;
	  margin: 0.75em auto 0;
	}
	#p-logo-text {
	  width: 15em;
	  text-align: center;
	  line-height: 1;
	}
	#p-logo-text a {
	  padding: 0.2em 1em;
	  color: #001133;
	  font-family: 'Marvel', 'Fira Sans', 'Helvetica Neue', 'Nimbus Sans', 'Helvetica', 'Arial', sans-serif;
	  text-transform: lowercase;
	  font-size: 1.75em;
	  display: block;
	  /* 13+ character names */
	}
	#p-logo-text a.long {
	  font-size: 1.45em;
	  padding: 0.4em 0.4em 0 0;
	  line-height: 0.8;
	}
	/* Search */
	#simpleSearch {
	  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
	  background: #ffffff;
	  position: relative;
	  border: solid 1px #cccccc;
	}
	#searchInput {
	  border: 0;
	  margin: 0;
	  height: 2.1em;
	  padding: 0.4em 4.5em 0.2em 2em;
	  box-shadow: none;
	  background: transparent;
	  width: 100%;
	  min-height: 0;
	}
	#searchButton,
	#mw-searchButton {
	  position: absolute;
	  top: 0;
	  right: 1.5em;
	  width: 2.5em;
	  height: 2.5em;
	  text-indent: -99999px;
	  border: 0;
	  background-color: transparent;
	  background-repeat: no-repeat;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/search-ltr.png?7263c);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3C%21-- Created with Inkscape %28http://www.inkscape.org/%29 --%3E %3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 width=%225.6444445mm%22 height=%225.6444445mm%22 viewBox=%220 0 20 20%22 id=%22svg2%22 version=%221.1%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22search-ltr.svg%22 inkscape:export-filename=%22/media/shintaiden/home/rahah/mediawiki/skins/Timeless/resources/images/search-ltr.png%22 inkscape:export-xdpi=%2290%22 inkscape:export-ydpi=%2290%22%3E %3Cdefs id=%22defs4%22 /%3E %3Csodipodi:namedview id=%22base%22 pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221.0%22 inkscape:pageopacity=%220.0%22 inkscape:pageshadow=%222%22 inkscape:zoom=%2231.678384%22 inkscape:cx=%222.1751537%22 inkscape:cy=%2217.916436%22 inkscape:document-units=%22px%22 inkscape:current-layer=%22layer1%22 showgrid=%22true%22 inkscape:snap-midpoints=%22true%22 inkscape:snap-smooth-nodes=%22true%22 inkscape:object-nodes=%22true%22 inkscape:snap-intersection-paths=%22true%22 inkscape:object-paths=%22true%22 inkscape:snap-object-midpoints=%22true%22 inkscape:snap-center=%22true%22 inkscape:snap-bbox=%22true%22 inkscape:window-width=%223840%22 inkscape:window-height=%222124%22 inkscape:window-x=%221920%22 inkscape:window-y=%220%22 inkscape:window-maximized=%221%22 showguides=%22false%22 fit-margin-top=%220%22 fit-margin-left=%220%22 fit-margin-right=%220%22 fit-margin-bottom=%220%22%3E %3Cinkscape:grid type=%22xygrid%22 id=%22grid4136%22 originx=%22-240%22 originy=%22-2025%22 /%3E %3C/sodipodi:namedview%3E %3Cmetadata id=%22metadata7%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg inkscape:label=%22Layer 1%22 inkscape:groupmode=%22layer%22 id=%22layer1%22 transform=%22translate%28-121%2C-16.362221%29%22%3E %3Cpath style=%22opacity:1%3Bfill:%23888888%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:2%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 d=%22m 129.49943%2C17.362699 c -1.91942%2C0 -3.83826%2C0.730845 -5.30273%2C2.195312 -2.92893%2C2.928936 -2.92893%2C7.678491 0%2C10.607422 2.92893%2C2.928931 7.67653%2C2.928934 10.60547%2C0 2.92894%2C-2.928936 2.92893%2C-7.67849 0%2C-10.607422 -1.46447%2C-1.464465 -3.38332%2C-2.195312 -5.30274%2C-2.195312 z m 0.0664%2C3 a 4.5%2C4.5 0 0 1 3.11523%2C1.316406 4.5%2C4.5 0 0 1 0%2C6.365234 4.5%2C4.5 0 0 1 -6.36328%2C0 4.5%2C4.5 0 0 1 0%2C-6.365234 4.5%2C4.5 0 0 1 3.24805%2C-1.316406 z%22 id=%22path4140%22 inkscape:connector-curvature=%220%22 /%3E %3Crect style=%22opacity:1%3Bfill:%23888888%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:2%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 id=%22rect4171%22 width=%223%22 height=%229.000001%22 x=%2272.490379%22 y=%22114.15007%22 ry=%221.5%22 transform=%22matrix%280.70710856%2C-0.707105%2C0.707105%2C0.70710856%2C0%2C0%29%22 /%3E %3C/g%3E %3C/svg%3E");
	  background-position: 50% 40%;
	  box-shadow: none;
	}
	.suggestions {
	  background: #ffffff;
	  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.05);
	}
	.suggestions .suggestions-special {
	  background-color: #ffffff;
	  border: 1px solid #cccccc;
	  border-bottom-width: 0.2em;
	  padding: 0.75em 2em;
	}
	.suggestions .suggestions-results {
	  background-color: #ffffff;
	  border: 1px solid #cccccc;
	  border-bottom-width: 0.2em;
	}
	.suggestions .suggestions-result {
	  color: #001133;
	  padding: 0.65em 2em 0.35em;
	}
	.suggestions .suggestions-result-current {
	  background-color: #0088dd;
	  color: #ffffff;
	}
	div.suggestions {
	  position: fixed;
	  top: 2.75em !important;
	}
	/* Dropdown stuff */
	.pokey,
	.pokey:after {
	  border-bottom: 10px solid #eeeeee;
	  border-left: 10px solid transparent;
	  border-right: 10px solid transparent;
	  content: '';
	  height: 0;
	  position: absolute;
	  transform: rotate(360deg);
	  width: 0;
	  z-index: 4;
	}
	.pokey {
	  top: 1.85em;
	  right: 1px;
	  display: none;
	}
	.pokey:after {
	  border-bottom-color: #fff;
	  right: -10px;
	  top: 2px;
	}
	.dropdown-toggle {
	  cursor: pointer;
	  margin-bottom: -1em;
	  padding-bottom: 1em;
	}
	.dropdown-toggle:after {
	  display: inline-block;
	  content: '';
	  width: 22px;
	  height: 12px;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/arrow-down-grey.png?fe8a6);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 height=%2216%22 width=%2222%22 version=%221.1%22 id=%22svg5442%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22arrow-down-grey.svg%22%3E %3Cmetadata id=%22metadata5452%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cdefs id=%22defs5450%22 /%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%22687%22 inkscape:window-height=%22480%22 id=%22namedview5448%22 showgrid=%22false%22 inkscape:zoom=%2214.75%22 inkscape:cx=%2211%22 inkscape:cy=%228%22 inkscape:window-x=%22378%22 inkscape:window-y=%22148%22 inkscape:window-maximized=%220%22 inkscape:current-layer=%22svg5442%22 /%3E %3Cpath style=%22fill:%23aaaaaa%3Bfill-opacity:1%22 d=%22m15.5 6l-5 5-5-5z%22 fill=%22%23797979%22 id=%22path5446%22 /%3E %3C/svg%3E");
	  background-position: center center;
	  background-repeat: no-repeat;
	}
	/* Footer */
	#mw-footer {
	  padding-top: 0.5em;
	  padding-bottom: 1em;
	}
	#mw-footer ul,
	#mw-footer li {
	  margin: 1em 0;
	  list-style: none;
	  padding: 0;
	}
	#mw-footer .footer-icons {
	  float: right;
	  margin: 0 0 0 1em;
	}
	#mw-footer .footer-icons li {
	  margin: 0 0 1em 0;
	}
	#mw-footer .footer-places li {
	  display: inline;
	  padding-right: 1em;
	}
	#mw-footer #lastmod {
	  display: block;
	}
	/* Content */
	#mw-content-container {
	  border-bottom: solid 4px #6f8700;
	}
	#mw-page-header-links div,
	#mw-page-header-links ul,
	#mw-page-header-links li {
	  list-style: none;
	  display: inline-block;
	  margin: 0;
	  padding: 0;
	}
	#mw-page-header-links li {
	  margin: 0.25em 0 1em;
	  border-bottom: solid 3px transparent;
	}
	#mw-page-header-links li:hover {
	  border-bottom-color: #cccccc;
	}
	#mw-page-header-links li.selected {
	  border-bottom-color: #0088dd;
	}
	#mw-page-header-links li.selected a {
	  color: #001133;
	}
	#p-namespaces {
	  float: left;
	}
	#p-namespaces li {
	  margin-right: 1em;
	}
	#p-views {
	  float: right;
	}
	#p-views li {
	  margin-left: 1em;
	}
	#ca-watch a {
	  text-indent: -99999px;
	  border: 0;
	  background-color: transparent;
	  background-repeat: no-repeat;
	  display: inline-block;
	  width: 20px;
	  height: 20px;
	  box-sizing: border-box;
	  margin-bottom: -0.5em;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/star.png?ecba8);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 height=%225.64mm%22 width=%225.64mm%22 version=%221.1%22 viewBox=%220 0 20 20%22 id=%22svg2%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22star.svg%22%3E %3Cmetadata id=%22metadata12%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cdefs id=%22defs10%22 /%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%221769%22 inkscape:window-height=%221362%22 id=%22namedview8%22 showgrid=%22false%22 inkscape:zoom=%2211.809299%22 inkscape:cx=%229.9921257%22 inkscape:cy=%229.9921257%22 inkscape:window-x=%223122%22 inkscape:window-y=%22646%22 inkscape:window-maximized=%220%22 inkscape:current-layer=%22svg2%22 /%3E %3Cg transform=%22translate%28-77%2C-52.514565%29%22 id=%22g4%22%3E %3Cpath style=%22fill:none%3Bstroke:%23aaaaaa%3Bstroke-width:2.54999995%3Bstroke-linecap:round%22 transform=%22matrix%280.781%2C0.0353%2C-0.0351%2C0.786%2C21.1%2C10%29%22 d=%22m 92.5%2C69.3 -5.04%2C-2.23 -4.81%2C2.69 0.568%2C-5.48 -4.04%2C-3.74 5.39%2C-1.15 2.31%2C-5 2.76%2C4.77 5.47%2C0.649 -3.68%2C4.1 z%22 id=%22path6%22 inkscape:connector-curvature=%220%22 /%3E %3C/g%3E %3C/svg%3E");
	}
	#ca-unwatch a {
	  text-indent: -99999px;
	  border: 0;
	  background-color: transparent;
	  background-repeat: no-repeat;
	  display: inline-block;
	  width: 20px;
	  height: 20px;
	  box-sizing: border-box;
	  margin-bottom: -0.5em;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/star-filled.png?f02f4);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns=%22http://www.w3.org/2000/svg%22 height=%225.64mm%22 width=%225.64mm%22 version=%221.1%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 viewBox=%220 0 20 20%22%3E %3Cg transform=%22translate%28-77 -51.8%29%22%3E %3Cpath style=%22color-rendering:auto%3Btext-decoration-color:%23000000%3Bcolor:%23000000%3Bshape-rendering:auto%3Bsolid-color:%23000000%3Btext-decoration-line:none%3Bfill:%23aaa%3Bfill-rule:evenodd%3Bmix-blend-mode:normal%3Bblock-progression:tb%3Btext-indent:0%3Bimage-rendering:auto%3Bwhite-space:normal%3Btext-decoration-style:solid%3Bisolation:auto%3Btext-transform:none%22 d=%22m87 53.6-2.63 5.12-5.65 0.954 4.03 4.1-0.846 5.7 5.12-2.59 5.13 2.57-0.289-1.91-0.574-3.79 4.02-4.11-5.65-0.935z%22/%3E %3C/g%3E %3C/svg%3E");
	}
	/* Misc */
	a {
	  text-decoration: none;
	  color: #0088dd;
	}
	a:hover,
	a:visited {
	  color: #006699;
	}
	a.new,
	.new a {
	  color: #dd4444;
	}
	a.new:hover,
	.new a:hover,
	a.new:visited,
	.new a:visited {
	  color: #990000;
	}
	.mw-editsection {
	  font-family: 'Fira Sans', 'Helvetica Neue', 'Nimbus Sans', 'Helvetica', 'Arial', sans-serif;
	}
	.mw-editsection a {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/pencil-grey.png?d6d63);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 version=%221.1%22 id=%22svg4427%22 viewBox=%220 0 20 20%22 height=%2220%22 width=%2220%22%3E %3Cdefs id=%22defs4429%22 /%3E %3Cmetadata id=%22metadata4432%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg transform=%22translate%280%2C-1032.3622%29%22 id=%22layer1%22%3E %3Cpath id=%22path4214%22 d=%22m 12.314125%2C1035.0982 -8.8999096%2C8.8999 4.9497475%2C4.9498 8.8999091%2C-8.9 z m 10e-7%2C2.8284 2.121318%2C2.1214 -6.0714811%2C6.0715 -2.1213206%2C-2.1213 z%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:1px%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-opacity:1%22 /%3E %3Cpath id=%22path4219%22 d=%22m 6.949748%2C1050.3622 -4.949748%2C0 1e-6%2C-4.9499 z%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:%23000000%3Bstroke-width:1px%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-opacity:0%22 /%3E %3C/g%3E %3C/svg%3E");
	  background-repeat: no-repeat;
	  background-position: 0 0;
	  display: inline-block;
	  padding: 0.5em 0 0.25em 1.75em;
	}
	.mw-editsection-bracket {
	  display: none;
	}
	.visual-clear {
	  clear: both;
	}
	.mw-indicators {
	  float: right;
	  margin: 0.25em 0 0 1em;
	}
	.mw-indicator {
	  display: inline-block;
	}
	/* Subtitle area
	 * @see https://phabricator.wikimedia.org/T173951
	 */
	#contentSub {
	  font-size: 84%;
	  color: #666666;
	  /* This forces "redirect page" (on a redirect page) etc. on a new line */
	}
	#contentSub .subpages {
	  display: block;
	}
	/* pre and code styles copypasted from core
	 * /resources/src/mediawiki.skinning/elements.css and modified a bit
	 * @see https://phabricator.wikimedia.org/T177142
	 */
	code {
	  color: #000;
	  background-color: #eeeeee;
	  border: 1px solid #666666;
	  border-radius: 2px;
	  padding: 1px 4px;
	}
	pre,
	.mw-code {
	  color: #000;
	  background-color: #eeeeee;
	  border: 1px solid #666666;
	  padding: 1em;
	  /* Wrap lines in overflow. T2260, T103780 */
	  white-space: pre-wrap;
	}
	#mw-content h1,
	#mw-content h2,
	#mw-content h3,
	#mw-content h4,
	#mw-content h5,
	#mw-content h6,
	#mw-content dt {
	  font-weight: normal;
	  font-family: 'Fira Sans', 'Helvetica Neue', 'Nimbus Sans', 'Helvetica', 'Arial', sans-serif;
	  line-height: 1.25;
	  margin: 1.5em 0 0.5em;
	}
	#mw-content form dt {
	  margin: 0 0.5em 0 0;
	}
	#mw-content h1,
	#mw-content h2 {
	  border-bottom: solid 2px #0076ba;
	  overflow: hidden;
	}
	#mw-content h1.firstHeading {
	  margin: 0.25em 0 0.5em;
	  border-bottom: solid 4px #99ba00;
	}
	#mw-content h1 {
	  font-size: 2em;
	}
	#mw-content h2 {
	  font-size: 1.7em;
	}
	#mw-content h3 {
	  font-size: 1.5em;
	}
	#mw-content h4 {
	  font-size: 1.35em;
	}
	#mw-content h5 {
	  font-size: 1.25em;
	}
	#mw-content h6 {
	  font-size: 1.2em;
	}
	#mw-content dt {
	  margin-top: 1em;
	}
	#mw-content dd {
	  margin-bottom: 1em;
	}
	#mw-content .mw-changeslist-legend dd {
	  margin-bottom: 0;
	}
	hr {
	  border-width: 1px;
	  border-color: #cccccc;
	  border-style: solid none solid none;
	  margin: 0.5em 0;
	}
	pre {
	  overflow: auto;
	  white-space: pre-wrap;
	  font-family: 'Consolas', 'Courier', 'Nimbus Mono', 'Liberation Mono', 'Courier New', monospace;
	}
	p {
	  margin: 0.9em 0 0.8em;
	}
	.center,
	.center * {
	  margin: auto;
	  text-align: center;
	}
	/* Thumbnails */
	/* @noflip */
	.tright {
	  margin: 0 0 0.5em 0.5em;
	  padding: 0 0 1em 1.5em;
	}
	/* @noflip */
	.tleft {
	  margin: 0 0.5em 0.5em 0;
	  padding: 0 1.5em 1em 0;
	}
	.thumbinner {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  padding: 0.75em;
	}
	.thumbcaption {
	  font-size: 95%;
	  padding: 0.5em 1em;
	}
	.thumbinner .thumbimage {
	  border: solid 1px #eeeeee;
	}
	#mw-content li.gallerybox div.thumb {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  padding: 0;
	}
	/* Tables of contents */
	ul#filetoc,
	#toc,
	.toc,
	.mw-warning {
	  display: inline-block;
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  padding: 1.25em 1.75em;
	  margin: 1em 0;
	  min-width: 15em;
	}
	ul#filetoc {
	  display: block;
	  border: 0;
	}
	#toc ul,
	.toc ul {
	  margin: 1em 0 0;
	  list-style: none;
	}
	#mw-content .toc h2 {
	  font-size: 1.2em;
	  font-family: 'Fira Sans', 'Helvetica Neue', 'Nimbus Sans', 'Helvetica', 'Arial', sans-serif;
	  margin: 0;
	  display: inline-block;
	  border-bottom-color: #cccccc;
	}
	.toctoggle {
	  color: #fcfcfc;
	}
	#toc li:last-child {
	  margin-bottom: 0.5em;
	}
	.toclevel-1 {
	  margin-bottom: 0.25em;
	}
	.mw-changeslist-legend,
	#mw-content .mw-search-profile-tabs,
	#mw-content fieldset#mw-searchoptions,
	table.wikitable {
	  border: 0;
	  color: #001133;
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	}
	#mw-content .mw-search-profile-tabs {
	  padding: 0.5em;
	}
	table.wikitable > tr > th,
	table.wikitable > tr > td,
	table.wikitable > * > tr > th,
	table.wikitable > * > tr > td {
	  border: 1px solid #eeeeee;
	  padding: 0.5em;
	}
	table.wikitable > tr > th,
	table.wikitable > * > tr > th {
	  border: 0;
	}
	/* Color bars */
	.color-bar {
	  width: 100%;
	}
	.color-left {
	  height: 0.35em;
	  background: #0076ba;
	  width: 50%;
	  float: left;
	}
	.color-right {
	  display: inline-block;
	  height: 0.35em;
	  background: #99ba00;
	  width: 50%;
	  float: right;
	}
	.color-middle-container {
	  max-width: 100em;
	  margin: 0 auto -0.35em;
	  position: relative;
	}
	.color-middle {
	  height: 0.35em;
	  background: #ffc600;
	  margin-left: 16em;
	  margin-right: 16em;
	}
	/* Portlets */
	.emptyPortlet {
	  display: none;
	}
	#p-lang.emptyPortlet {
	  display: inherit;
	}
	/* Hidden stuff */
	#p-namespaces h3,
	#p-views h3,
	#p-search h3 {
	  position: absolute;
	  top: -9999px;
	  left: 0;
	}
	.tabs-content {
	  width: 100%;
	}}@media screen and (min-width: 851px) {
	/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
	.dropdown,
	.sidebar-inner {
	  display: block !important;
	}
	.ts-inner {
	  max-width: 100em;
	  padding: 0 1em;
	  margin: auto;
	}
	#mw-content-container {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/cat-grey.png?edcfc);
	  background-image: linear-gradient(transparent, transparent), url(/camp/2019/wiki/skins/cccamp/resources/images/cat-grey.svg?a5931);
	  background-repeat: no-repeat;
	  background-position: center 15em;
	}
	/* Header */
	#mw-header-container {
	  /* Stupid IE10+ bug requires defining the height property for this to work
		 * the way it is intended; without doing that this'll break horribly under
		 * IE10 and IE11.
		 * @see https://phabricator.wikimedia.org/T173769
		 */
	  height: 0;
	  position: fixed;
	  z-index: 100;
	  top: 0;
	  width: 100%;
	  background: #ffffff;
	  color: #001133;
	  padding: 0.5em 0 0;
	  min-height: 3.125em;
	  box-sizing: border-box;
	}
	#p-logo-text {
	  width: 15em;
	  float: left;
	}
	#p-search {
	  margin-left: 15em;
	  margin-right: 15em;
	}
	#user-tools {
	  width: 15em;
	  float: right;
	}
	#mw-header-nav-hack,
	#mw-header-hack {
	  position: fixed;
	  z-index: 97;
	  top: 3.125em;
	  box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.075), 0 0 2px rgba(0, 0, 0, 0.2);
	}
	#mw-header-nav-hack {
	  display: none;
	}
	.dropdown {
	  display: none !important;
	}
	#personal {
	  display: inline-block;
	  position: relative;
	  padding-left: 1.5em;
	  line-height: 1;
	}
	#personal .dropdown {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  overflow: auto;
	  padding: 1.5em 1.5em 0;
	  margin: 1em 0;
	  line-height: 1.1;
	  background: #ffffff;
	  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.05);
	  position: absolute;
	  padding: 20px 2em 0;
	  margin: 0;
	  min-width: 9.153em;
	  right: -1em;
	  overflow: visible;
	  z-index: 3;
	  top: 2.95em;
	  right: -2em;
	}
	#personal .dropdown ul,
	#personal .dropdown li {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
	#personal .dropdown h3 {
	  font-weight: normal;
	  font-size: 1em;
	  margin: 0.25em 0 0.75em 0;
	  padding-bottom: 0.15em;
	  border-bottom: solid 2px #cccccc;
	}
	#personal .dropdown ul {
	  margin-bottom: 2em;
	}
	#personal .dropdown li {
	  margin: 0 0 0.35em;
	}
	#personal .pokey {
	  top: 2.05em;
	}
	#personal h2 {
	  margin: 0;
	  padding: 0.7em 0 0 25px;
	  font-family: 'Fira Sans', 'Helvetica Neue', 'Nimbus Sans', 'Helvetica', 'Arial', sans-serif;
	  font-weight: normal;
	  font-size: 1.1em;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/user-grey.png?0ed80);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 height=%225.64mm%22 width=%225.64mm%22 version=%221.1%22 viewBox=%220 0 20 20%22 id=%22svg4136%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22user-grey.svg%22 inkscape:export-filename=%22/media/shintaiden/home/rahah/mediawiki/skins/Timeless/resources/images/user.png%22 inkscape:export-xdpi=%2290%22 inkscape:export-ydpi=%2290%22%3E %3Cmetadata id=%22metadata4148%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cdefs id=%22defs4146%22 /%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%221366%22 inkscape:window-height=%22743%22 id=%22namedview4144%22 showgrid=%22true%22 inkscape:zoom=%2216.868941%22 inkscape:cx=%22-12.733021%22 inkscape:cy=%2212.067589%22 inkscape:window-x=%220%22 inkscape:window-y=%220%22 inkscape:window-maximized=%221%22 inkscape:current-layer=%22svg4136%22 inkscape:snap-bbox=%22true%22 inkscape:object-paths=%22true%22 inkscape:snap-intersection-paths=%22true%22 inkscape:object-nodes=%22true%22 inkscape:snap-smooth-nodes=%22true%22 inkscape:snap-midpoints=%22true%22 inkscape:snap-others=%22false%22%3E %3Cinkscape:grid type=%22xygrid%22 id=%22grid4150%22 /%3E %3C/sodipodi:namedview%3E %3Cpath style=%22fill:%23aaaaaa%3Bfill-opacity:1%22 d=%22M 3.640625 9.453125 C 1.8835375 11.840633 1.6848657 14.447685 2.4140625 16.175781 C 2.9026774 17.354852 3.5929816 18.045174 4.4023438 18.464844 C 5.1937201 18.892507 6.1506693 18.982377 7 18.984375 L 13.324219 18.984375 C 14.244494 18.984375 15.173286 18.777179 15.972656 18.310547 C 16.772026 17.843915 17.431752 17.112579 17.771484 16.023438 C 18.261099 14.474658 18.036595 11.996446 16.292969 9.5683594 C 16.285395 9.5799893 16.271857 9.5865465 16.263672 9.5976562 A 7.5000009 7.5000009 0 0 1 10 12.984375 A 7.5000009 7.5000009 0 0 1 3.640625 9.453125 z %22 transform=%22scale%281.0007881%2C1.0007881%29%22 id=%22path4140%22 /%3E %3Cpath sodipodi:nodetypes=%22sssss%22 inkscape:connector-curvature=%220%22 id=%22path4142%22 d=%22m 10.007881%2C0.99211966 c -2.4852804%2C0 -4.5000004%2C2.01471904 -4.5000004%2C4.50000004 0%2C2.485281 2.01472%2C4.5 4.5000004%2C4.5 2.48528%2C0 4.5%2C-2.014719 4.5%2C-4.5 0%2C-2.485281 -2.01472%2C-4.50000004 -4.5%2C-4.50000004 z%22 style=%22fill:%23aaaaaa%3Bfill-rule:evenodd%3Bfill-opacity:1%22 /%3E %3C/svg%3E");
	  background-position: 0 7px;
	  background-repeat: no-repeat;
	  cursor: pointer;
	  margin-bottom: -1em;
	  padding-bottom: 1em;
	}
	#personal h2:after {
	  display: inline-block;
	  content: '';
	  width: 22px;
	  height: 12px;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/arrow-down-grey.png?fe8a6);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 height=%2216%22 width=%2222%22 version=%221.1%22 id=%22svg5442%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22arrow-down-grey.svg%22%3E %3Cmetadata id=%22metadata5452%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cdefs id=%22defs5450%22 /%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%22687%22 inkscape:window-height=%22480%22 id=%22namedview5448%22 showgrid=%22false%22 inkscape:zoom=%2214.75%22 inkscape:cx=%2211%22 inkscape:cy=%228%22 inkscape:window-x=%22378%22 inkscape:window-y=%22148%22 inkscape:window-maximized=%220%22 inkscape:current-layer=%22svg5442%22 /%3E %3Cpath style=%22fill:%23aaaaaa%3Bfill-opacity:1%22 d=%22m15.5 6l-5 5-5-5z%22 fill=%22%23797979%22 id=%22path5446%22 /%3E %3C/svg%3E");
	  background-position: center center;
	  background-repeat: no-repeat;
	}
	#personal h2 span {
	  display: inline-block;
	  height: 1em;
	  overflow: hidden;
	  word-wrap: break-word;
	}
	#personal:hover .pokey,
	#personal:hover .dropdown {
	  display: block !important;
	}
	#mw-page-header-links #ca-more,
	#mw-page-header-links #ca-languages,
	.sidebar-chunk h2 {
	  display: none;
	}
	/* Content */
	#mw-content-container {
	  margin-top: 3.125em;
	  padding-bottom: 1em;
	}}@media screen and (min-width: 1340px) {
	/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
	#mw-site-navigation {
	  width: 15em;
	  float: left;
	  clear: left;
	  padding-right: 1em;
	  box-sizing: border-box;
	}
	#mw-site-navigation .sidebar-chunk {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  overflow: auto;
	  padding: 1.5em 1.5em 0;
	  margin: 1em 0;
	  line-height: 1.1;
	}
	#mw-site-navigation .sidebar-chunk ul,
	#mw-site-navigation .sidebar-chunk li {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
	#mw-site-navigation .sidebar-chunk h3 {
	  font-weight: normal;
	  font-size: 1em;
	  margin: 0.25em 0 0.75em 0;
	  padding-bottom: 0.15em;
	  border-bottom: solid 2px #cccccc;
	}
	#mw-site-navigation .sidebar-chunk ul {
	  margin-bottom: 2em;
	}
	#mw-site-navigation .sidebar-chunk li {
	  margin: 0 0 0.35em;
	}
	#mw-content {
	  margin-left: 15em;
	  margin-right: 15em;
	  overflow: auto;
	}
	#mw-related-navigation {
	  width: 15em;
	  float: right;
	  clear: right;
	  padding-left: 1em;
	  box-sizing: border-box;
	}
	#mw-related-navigation .sidebar-chunk {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  overflow: auto;
	  padding: 1.5em 1.5em 0;
	  margin: 1em 0;
	  line-height: 1.1;
	}
	#mw-related-navigation .sidebar-chunk ul,
	#mw-related-navigation .sidebar-chunk li {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
	#mw-related-navigation .sidebar-chunk h3 {
	  font-weight: normal;
	  font-size: 1em;
	  margin: 0.25em 0 0.75em 0;
	  padding-bottom: 0.15em;
	  border-bottom: solid 2px #cccccc;
	}
	#mw-related-navigation .sidebar-chunk ul {
	  margin-bottom: 2em;
	}
	#mw-related-navigation .sidebar-chunk li {
	  margin: 0 0 0.35em;
	}
	#catlinks {
	  display: none;
	}}@media screen and (min-width: 1100px) and (max-width: 1339px) {
	/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
	#mw-site-navigation,
	#mw-related-navigation {
	  width: 15em;
	  float: left;
	  clear: left;
	  padding-right: 1em;
	  box-sizing: border-box;
	}
	#mw-site-navigation .sidebar-chunk,
	#mw-related-navigation .sidebar-chunk {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  overflow: auto;
	  padding: 1.5em 1.5em 0;
	  margin: 1em 0;
	  line-height: 1.1;
	}
	#mw-site-navigation .sidebar-chunk ul,
	#mw-related-navigation .sidebar-chunk ul,
	#mw-site-navigation .sidebar-chunk li,
	#mw-related-navigation .sidebar-chunk li {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
	#mw-site-navigation .sidebar-chunk h3,
	#mw-related-navigation .sidebar-chunk h3 {
	  font-weight: normal;
	  font-size: 1em;
	  margin: 0.25em 0 0.75em 0;
	  padding-bottom: 0.15em;
	  border-bottom: solid 2px #cccccc;
	}
	#mw-site-navigation .sidebar-chunk ul,
	#mw-related-navigation .sidebar-chunk ul {
	  margin-bottom: 2em;
	}
	#mw-site-navigation .sidebar-chunk li,
	#mw-related-navigation .sidebar-chunk li {
	  margin: 0 0 0.35em;
	}
	#mw-related-navigation {
	  margin-top: 2em;
	}
	#mw-content {
	  margin-left: 15em;
	  overflow: auto;
	}
	#catlinks {
	  display: none;
	}}@media screen and (min-width: 851px) and (max-width: 1099px) {
	/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
	#mw-content-block {
	  padding: 0;
	}
	#mw-content {
	  border-width: 0 0 1px;
	  clear: both;
	}
	#catlinks-sidebar {
	  display: none;
	}
	#catlinks {
	  margin: 0 2em;
	  padding: 1.5em 0 0.5em;
	}
	#catlinks li {
	  border-left: 0;
	}
	#catlinks div {
	  margin: 0 0 0.35em;
	}
	.sidebar-chunk {
	  display: inline-block;
	  position: relative;
	}
	.sidebar-chunk h2 {
	  display: inline-block;
	}
	.sidebar-inner,
	#p-logo {
	  display: none !important;
	}
	#mw-site-navigation,
	#mw-related-navigation {
	  display: inline-block;
	  position: relative;
	  z-index: 99;
	}
	#mw-site-navigation h2,
	#mw-related-navigation h2 {
	  font-weight: normal;
	  font-family: 'Fira Sans', 'Helvetica Neue', 'Nimbus Sans', 'Helvetica', 'Arial', sans-serif;
	  font-size: 1.25em;
	  padding: 0.5em 0 0.2em;
	  margin: 0;
	  cursor: pointer;
	  margin-bottom: -1em;
	  padding-bottom: 1em;
	}
	#mw-site-navigation h2:after,
	#mw-related-navigation h2:after {
	  display: inline-block;
	  content: '';
	  width: 22px;
	  height: 12px;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/arrow-down-grey.png?fe8a6);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 height=%2216%22 width=%2222%22 version=%221.1%22 id=%22svg5442%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22arrow-down-grey.svg%22%3E %3Cmetadata id=%22metadata5452%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cdefs id=%22defs5450%22 /%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%22687%22 inkscape:window-height=%22480%22 id=%22namedview5448%22 showgrid=%22false%22 inkscape:zoom=%2214.75%22 inkscape:cx=%2211%22 inkscape:cy=%228%22 inkscape:window-x=%22378%22 inkscape:window-y=%22148%22 inkscape:window-maximized=%220%22 inkscape:current-layer=%22svg5442%22 /%3E %3Cpath style=%22fill:%23aaaaaa%3Bfill-opacity:1%22 d=%22m15.5 6l-5 5-5-5z%22 fill=%22%23797979%22 id=%22path5446%22 /%3E %3C/svg%3E");
	  background-position: center center;
	  background-repeat: no-repeat;
	}
	.sidebar-chunk:hover .pokey,
	.sidebar-chunk:hover .sidebar-inner {
	  display: block !important;
	}
	#mw-header-nav-hack {
	  border-top: solid 2px #eeeeee;
	  display: block;
	  position: absolute;
	  z-index: 98;
	  background: #ffffff;
	  width: 100%;
	}
	#mw-header-nav-hack .color-bar {
	  margin-top: 2.5em;
	}
	#mw-site-navigation {
	  float: left;
	  margin-left: 2em;
	}
	#mw-site-navigation .sidebar-chunk {
	  margin: 0 1em 0 0;
	}
	#mw-site-navigation .sidebar-inner {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  overflow: auto;
	  padding: 1.5em 1.5em 0;
	  margin: 1em 0;
	  line-height: 1.1;
	  background: #ffffff;
	  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.05);
	  position: absolute;
	  padding: 20px 2em 0;
	  margin: 0;
	  min-width: 9.153em;
	  top: 2.95em;
	  left: -1em;
	  overflow: visible;
	  z-index: 3;
	}
	#mw-site-navigation .sidebar-inner ul,
	#mw-site-navigation .sidebar-inner li {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
	#mw-site-navigation .sidebar-inner h3 {
	  font-weight: normal;
	  font-size: 1em;
	  margin: 0.25em 0 0.75em 0;
	  padding-bottom: 0.15em;
	  border-bottom: solid 2px #cccccc;
	}
	#mw-site-navigation .sidebar-inner ul {
	  margin-bottom: 2em;
	}
	#mw-site-navigation .sidebar-inner li {
	  margin: 0 0 0.35em;
	}
	#mw-related-navigation {
	  float: right;
	  margin-right: 2em;
	}
	#mw-related-navigation .sidebar-chunk {
	  margin: 0 0 0 1em;
	}
	#mw-related-navigation .sidebar-inner {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  overflow: auto;
	  padding: 1.5em 1.5em 0;
	  margin: 1em 0;
	  line-height: 1.1;
	  background: #ffffff;
	  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.05);
	  position: absolute;
	  padding: 20px 2em 0;
	  margin: 0;
	  min-width: 9.153em;
	  top: 2.95em;
	  right: -1em;
	  overflow: visible;
	  z-index: 3;
	  top: 2.95em !important;
	}
	#mw-related-navigation .sidebar-inner ul,
	#mw-related-navigation .sidebar-inner li {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
	#mw-related-navigation .sidebar-inner h3 {
	  font-weight: normal;
	  font-size: 1em;
	  margin: 0.25em 0 0.75em 0;
	  padding-bottom: 0.15em;
	  border-bottom: solid 2px #cccccc;
	}
	#mw-related-navigation .sidebar-inner ul {
	  margin-bottom: 2em;
	}
	#mw-related-navigation .sidebar-inner li {
	  margin: 0 0 0.35em;
	}
	#mw-header {
	  padding: 0 2em;
	}
	#p-logo-text a {
	  padding-left: 0;
	  text-align: left;
	}
	#mw-footer {
	  padding: 0 2em;
	}
	#personal {
	  float: right;
	}
	#personal h2 span {
	  display: none;
	}
	#personal h2:after {
	  margin-left: -0.65em;
	}
	#personal .dropdown {
	  right: -1em;
	}
	#user-tools {
	  width: 6em;
	}
	#p-search {
	  margin-right: 6em;
	}}@media screen and (max-width: 850px) {
	/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
	/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
	/* Layout */
	#mw-footer {
	  padding: 0 2em;
	}
	.color-middle {
	  margin: auto;
	  width: 34%;
	}
	#catlinks-sidebar {
	  display: none;
	}
	#catlinks {
	  margin: 0 2em;
	  padding: 1.5em 0 0.5em;
	}
	#catlinks li {
	  border-left: 0;
	}
	#catlinks div {
	  margin: 0 0 0.35em;
	}
	#catlinks {
	  padding-bottom: 2em;
	  border-top: solid 3px #cccccc;
	}
	#mw-page-header-links #ca-view,
	#mw-header-nav-hack,
	#page-tools h2,
	#other-languages h2,
	#p-logo {
	  display: none;
	}
	#mw-header-container {
	  background: #ffffff;
	  padding: 3.75em 2em 0.35em;
	}
	#mw-header-hack {
	  position: relative;
	  z-index: 1;
	  box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.075), 0 0 2px rgba(0, 0, 0, 0.2);
	}
	/* Dropdowns */
	.sidebar-inner,
	.dropdown {
	  display: none;
	}
	.sidebar-inner,
	.dropdown {
	  background: #fcfcfc;
	  border: solid #eeeeee;
	  border-width: 1px 1px 0.2em;
	  padding: 1.25em 1.75em;
	  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
	  overflow: auto;
	  padding: 1.5em 1.5em 0;
	  margin: 1em 0;
	  line-height: 1.1;
	  background: #ffffff;
	  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.05);
	  position: absolute;
	  padding: 2em 2.5em 1em;
	  margin: 0;
	  min-width: 9.153em;
	  max-width: 80%;
	  top: 3.25em;
	  right: 0;
	  overflow: visible;
	  z-index: 100;
	}
	.sidebar-inner ul,
	.dropdown ul,
	.sidebar-inner li,
	.dropdown li {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
	.sidebar-inner h3,
	.dropdown h3 {
	  font-weight: normal;
	  font-size: 1em;
	  margin: 0.25em 0 0.75em 0;
	  padding-bottom: 0.15em;
	  border-bottom: solid 2px #cccccc;
	}
	.sidebar-inner ul,
	.dropdown ul {
	  margin-bottom: 2em;
	}
	.sidebar-inner li,
	.dropdown li {
	  margin: 0 0 0.35em;
	}
	.sidebar-inner h3,
	.dropdown h3 {
	  margin: 0.5em 0 1.5em;
	}
	.sidebar-inner ul,
	.dropdown ul {
	  margin: 1em 0 2em;
	}
	.sidebar-inner li,
	.dropdown li {
	  margin: 0 0 0.75em;
	}
	#menus-cover {
	  display: none;
	  position: fixed;
	  top: 0;
	  left: 0;
	  z-index: 99;
	  width: 100%;
	  height: 100%;
	  background: #f3f3f3;
	  opacity: 0.8;
	  overflow: hidden;
	}
	/* Dropdown toggles */
	#user-tools h2,
	.sidebar-chunk h2 {
	  cursor: pointer;
	  margin-bottom: -1em;
	  padding-bottom: 1em;
	  margin: 0;
	  width: 30px;
	  height: 30px;
	  position: absolute;
	  top: 1em;
	  padding-bottom: 0;
	  font-size: 1em;
	  background-repeat: no-repeat;
	  background-position: 50% 50%;
	}
	#user-tools h2:after,
	.sidebar-chunk h2:after {
	  display: inline-block;
	  content: '';
	  width: 22px;
	  height: 12px;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/arrow-down-grey.png?fe8a6);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 height=%2216%22 width=%2222%22 version=%221.1%22 id=%22svg5442%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22arrow-down-grey.svg%22%3E %3Cmetadata id=%22metadata5452%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cdefs id=%22defs5450%22 /%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%22687%22 inkscape:window-height=%22480%22 id=%22namedview5448%22 showgrid=%22false%22 inkscape:zoom=%2214.75%22 inkscape:cx=%2211%22 inkscape:cy=%228%22 inkscape:window-x=%22378%22 inkscape:window-y=%22148%22 inkscape:window-maximized=%220%22 inkscape:current-layer=%22svg5442%22 /%3E %3Cpath style=%22fill:%23aaaaaa%3Bfill-opacity:1%22 d=%22m15.5 6l-5 5-5-5z%22 fill=%22%23797979%22 id=%22path5446%22 /%3E %3C/svg%3E");
	  background-position: center center;
	  background-repeat: no-repeat;
	}
	#user-tools h2 span,
	.sidebar-chunk h2 span {
	  display: inline-block;
	  text-indent: -99999px;
	  border: 0;
	  background-color: transparent;
	  background-repeat: no-repeat;
	}
	#user-tools h2:after,
	.sidebar-chunk h2:after {
	  position: absolute;
	  top: 0.65em;
	  left: 23px;
	}
	#user-tools h2 {
	  right: 2.5em;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/user-large-grey.png?e83c9);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 height=%227.0555558mm%22 width=%227.0555558mm%22 version=%221.1%22 viewBox=%220 0 25.019703 25.019703%22 id=%22svg4136%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22user-large-grey.svg%22 inkscape:export-filename=%22/media/shintaiden/home/rahah/mediawiki/skins/Timeless/resources/images/user-large-grey.png%22 inkscape:export-xdpi=%2290%22 inkscape:export-ydpi=%2290%22%3E %3Cmetadata id=%22metadata4148%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cdefs id=%22defs4146%22 /%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%223840%22 inkscape:window-height=%222124%22 id=%22namedview4144%22 showgrid=%22true%22 inkscape:zoom=%2247.71257%22 inkscape:cx=%2216.028652%22 inkscape:cy=%2212.392574%22 inkscape:window-x=%222880%22 inkscape:window-y=%220%22 inkscape:window-maximized=%221%22 inkscape:current-layer=%22svg4136%22 inkscape:snap-bbox=%22true%22 inkscape:object-paths=%22true%22 inkscape:snap-intersection-paths=%22true%22 inkscape:object-nodes=%22true%22 inkscape:snap-smooth-nodes=%22true%22 inkscape:snap-midpoints=%22true%22 inkscape:snap-others=%22false%22 fit-margin-top=%220%22 fit-margin-left=%220%22 fit-margin-right=%220%22 fit-margin-bottom=%220%22%3E %3Cinkscape:grid type=%22xygrid%22 id=%22grid4150%22 originx=%225.8568145e-15%22 originy=%225.0039421%22 /%3E %3C/sodipodi:namedview%3E %3Cpath style=%22fill:%23aaaaaa%3Bfill-opacity:1%22 d=%22m 4.2392271%2C10.959893 c -2.4207341%2C3.271189 -2.6944436%2C6.84318 -1.6898315%2C9.21089 0.6731632%2C1.615477 1.6241932%2C2.561304 2.739249%2C3.136306 1.0902769%2C0.585953 2.4086624%2C0.709086 3.5787827%2C0.711824 l 8.7128577%2C0 c 1.26786%2C0 2.547452%2C-0.283886 3.648743%2C-0.923231 1.101289%2C-0.639344 2.010191%2C-1.641367 2.478239%2C-3.133628 0.674541%2C-2.122024 0.365242%2C-5.517489 -2.036946%2C-8.844274 -0.01044%2C0.01593 -0.02908%2C0.02492 -0.04036%2C0.04013 a 10.332728%2C10.275949 0 0 1 -8.629445%2C4.640239 10.332728%2C10.275949 0 0 1 -8.7612913%2C-4.83826 z%22 id=%22path4140%22 inkscape:connector-curvature=%220%22 /%3E %3Cpath sodipodi:nodetypes=%22sssss%22 inkscape:connector-curvature=%220%22 id=%22path4142%22 d=%22m 13.010245%2C1.0007896 c -3.0399595%2C0 -5.5043347%2C2.3923634 -5.5043347%2C5.3434923 0%2C2.9511292 2.4643752%2C5.3434911 5.5043347%2C5.3434911 3.039955%2C0 5.504332%2C-2.3923619 5.504332%2C-5.3434911 0%2C-2.9511289 -2.464377%2C-5.3434923 -5.504332%2C-5.3434923 z%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%22 /%3E %3C/svg%3E");
	}
	#site-navigation h2 {
	  left: 2em;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/menu-large-grey.png?0c178);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 height=%227.0555558mm%22 width=%227.0555558mm%22 version=%221.1%22 viewBox=%220 0 25.019703 25.019703%22 id=%22svg4136%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22menu-large-grey.svg%22 inkscape:export-filename=%22/media/shintaiden/home/rahah/mediawiki/skins/Timeless/resources/images/menu-large-grey.png%22 inkscape:export-xdpi=%2290%22 inkscape:export-ydpi=%2290%22%3E %3Cmetadata id=%22metadata4148%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cdefs id=%22defs4146%22 /%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%223840%22 inkscape:window-height=%222124%22 id=%22namedview4144%22 showgrid=%22true%22 inkscape:zoom=%2247.71257%22 inkscape:cx=%2215.632432%22 inkscape:cy=%2214.023582%22 inkscape:window-x=%222880%22 inkscape:window-y=%220%22 inkscape:window-maximized=%221%22 inkscape:current-layer=%22svg4136%22 inkscape:snap-bbox=%22true%22 inkscape:object-paths=%22true%22 inkscape:snap-intersection-paths=%22true%22 inkscape:object-nodes=%22true%22 inkscape:snap-smooth-nodes=%22true%22 inkscape:snap-midpoints=%22true%22 inkscape:snap-others=%22false%22 fit-margin-top=%220%22 fit-margin-left=%220%22 fit-margin-right=%220%22 fit-margin-bottom=%220%22%3E %3Cinkscape:grid type=%22xygrid%22 id=%22grid4150%22 originx=%225.8568145e-15%22 originy=%225.0039422%22 /%3E %3C/sodipodi:namedview%3E %3Crect style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:65%3Bstroke-linecap:square%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 id=%22rect4224%22 width=%2223.018127%22 height=%225.0039406%22 x=%221.0007881%22 y=%2219.014973%22 ry=%221.6480488%22 /%3E %3Crect style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:65%3Bstroke-linecap:square%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 id=%22rect4224-1%22 width=%2223.018127%22 height=%225.0039401%22 x=%221.0007881%22 y=%2210.007879%22 ry=%221.6480488%22 /%3E %3Crect style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:65%3Bstroke-linecap:square%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 id=%22rect4224-9%22 width=%2223.018127%22 height=%225.0039411%22 x=%221.0007881%22 y=%221.0007865%22 ry=%221.6480488%22 /%3E %3C/svg%3E");
	}
	#site-navigation .sidebar-inner {
	  left: 0;
	  right: auto;
	}
	#site-tools h2 {
	  right: 7em;
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/gear-large-grey.png?72df9);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 height=%227.0555558mm%22 width=%227.0555558mm%22 version=%221.1%22 viewBox=%220 0 25.019703 25.019703%22 id=%22svg4136%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22gear-large-grey.svg%22 inkscape:export-filename=%22/media/shintaiden/home/rahah/mediawiki/skins/Timeless/resources/images/gear-large-grey.png%22 inkscape:export-xdpi=%2290%22 inkscape:export-ydpi=%2290%22%3E %3Cmetadata id=%22metadata4148%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cdefs id=%22defs4146%22 /%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%223840%22 inkscape:window-height=%222124%22 id=%22namedview4144%22 showgrid=%22true%22 inkscape:zoom=%2247.71257%22 inkscape:cx=%2218.246442%22 inkscape:cy=%2212.30121%22 inkscape:window-x=%222880%22 inkscape:window-y=%220%22 inkscape:window-maximized=%221%22 inkscape:current-layer=%22svg4136%22 inkscape:snap-bbox=%22true%22 inkscape:object-paths=%22true%22 inkscape:snap-intersection-paths=%22true%22 inkscape:object-nodes=%22true%22 inkscape:snap-smooth-nodes=%22true%22 inkscape:snap-midpoints=%22true%22 inkscape:snap-others=%22false%22 fit-margin-top=%220%22 fit-margin-left=%220%22 fit-margin-right=%220%22 fit-margin-bottom=%220%22%3E %3Cinkscape:grid type=%22xygrid%22 id=%22grid4150%22 originx=%225.8568145e-15%22 originy=%225.0039421%22 /%3E %3C/sodipodi:namedview%3E %3Cpath style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:65%3Bstroke-linecap:square%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 d=%22m 12.098814%2C1.0007875 c -0.910861%2C0 -1.644154%2C0.7332918 -1.644154%2C1.6441519 l 0%2C1.0693409 A 9.0428357%2C9.0428364 0 0 0 7.7315345%2C4.839818 L 6.9881338%2C4.0964173 C 6.6660962%2C3.7743795 6.2459439%2C3.6131265 5.8256675%2C3.6131265 c -0.4202757%2C0 -0.8404296%2C0.161253 -1.1624671%2C0.4832908 L 4.0819672%2C4.6776506 c -0.644076%2C0.6440757 -0.644076%2C1.6808583 0%2C2.3249336 L 4.83179%2C7.7524075 A 9.0428357%2C9.0428364 0 0 0 3.7126751%2C10.454661 l -1.0677352%2C0 c -0.9108601%2C0 -1.6441519%2C0.733291 -1.6441519%2C1.644151 l 0%2C0.822077 c 0%2C0.910859 0.7332918%2C1.644151 1.6441519%2C1.644151 l 1.0693407%2C0 a 9.0428357%2C9.0428364 0 0 0 1.1255378%2C2.723127 l -0.7578512%2C0.75785 c -0.644076%2C0.644077 -0.644076%2C1.682466 0%2C2.326541 l 0.5812332%2C0.581233 c 0.6440758%2C0.644076 1.6808583%2C0.644076 2.3249334%2C0 l 0.7658796%2C-0.765879 a 9.0428357%2C9.0428364 0 0 0 2.7006466%2C1.119114 l 0%2C1.067735 c 0%2C0.91086 0.733293%2C1.644152 1.644154%2C1.644152 l 0.822076%2C0 c 0.910859%2C0 1.644151%2C-0.733292 1.644151%2C-1.644152 l 0%2C-1.06934 A 9.0428357%2C9.0428364 0 0 0 17.2689%2C20.191122 l 0.762668%2C0.762669 c 0.644074%2C0.644076 1.682463%2C0.644076 2.32654%2C0 l 0.581232%2C-0.581233 c 0.644076%2C-0.644075 0.644076%2C-1.682464 0%2C-2.326541 L 20.176672%2C17.28335 a 9.0428357%2C9.0428364 0 0 0 1.130354%2C-2.71831 l 1.067736%2C0 c 0.91086%2C0 1.644151%2C-0.733292 1.644151%2C-1.644151 l 0%2C-0.822077 c 0%2C-0.91086 -0.733291%2C-1.644151 -1.644151%2C-1.644151 l -1.06934%2C0 a 9.0428357%2C9.0428364 0 0 0 -1.1143%2C-2.7038592 L 20.93934%2C7.0025842 c 0.644076%2C-0.6440753 0.644076%2C-1.6808579 0%2C-2.3249336 L 20.358108%2C4.0964173 c -0.644077%2C-0.6440754 -1.682466%2C-0.6440754 -2.32654%2C0 L 17.284956%2C4.8430292 A 9.0428357%2C9.0428364 0 0 0 14.565041%2C3.7126748 l 0%2C-1.0677354 c 0%2C-0.9108601 -0.733292%2C-1.6441519 -1.644151%2C-1.6441519 l -0.822076%2C0 z m 0.529852%2C6.5766077 A 4.8138161%2C4.9324554 0 0 1 17.442307%2C12.50985 4.8138161%2C4.9324554 0 0 1 12.628666%2C17.442305 4.8138161%2C4.9324554 0 0 1 7.8150262%2C12.50985 4.8138161%2C4.9324554 0 0 1 12.628666%2C7.5773952 Z%22 id=%22path4167%22 inkscape:connector-curvature=%220%22 /%3E %3C/svg%3E");
	}
	/* Logo */
	#p-logo-text {
	  position: absolute;
	  top: 0.75em;
	  left: 6em;
	  text-align: left;
	}
	#p-logo-text a {
	  padding-left: 0;
	}
	/* Page actions */
	#p-namespaces li {
	  margin-right: 1.5em;
	}
	#p-pagetools li {
	  margin-left: 1.5em;
	}
	#p-pagetools li#ca-languages {
	  margin-left: 1em;
	}
	#mw-page-header-links a {
	  text-indent: -99999px;
	  border: 0;
	  background-color: transparent;
	  background-repeat: no-repeat;
	  display: inline-block;
	  width: 20px;
	  height: 20px;
	  box-sizing: border-box;
	  margin-bottom: -0.5em;
	}
	#ca-edit a,
	#ca-formedit a {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/pencil-grey.png?d6d63);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 version=%221.1%22 id=%22svg4427%22 viewBox=%220 0 20 20%22 height=%2220%22 width=%2220%22%3E %3Cdefs id=%22defs4429%22 /%3E %3Cmetadata id=%22metadata4432%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg transform=%22translate%280%2C-1032.3622%29%22 id=%22layer1%22%3E %3Cpath id=%22path4214%22 d=%22m 12.314125%2C1035.0982 -8.8999096%2C8.8999 4.9497475%2C4.9498 8.8999091%2C-8.9 z m 10e-7%2C2.8284 2.121318%2C2.1214 -6.0714811%2C6.0715 -2.1213206%2C-2.1213 z%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:1px%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-opacity:1%22 /%3E %3Cpath id=%22path4219%22 d=%22m 6.949748%2C1050.3622 -4.949748%2C0 1e-6%2C-4.9499 z%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:%23000000%3Bstroke-width:1px%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-opacity:0%22 /%3E %3C/g%3E %3C/svg%3E");
	}
	#ca-history a {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/clock-grey.png?9dce9);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3C%21-- Created with Inkscape %28http://www.inkscape.org/%29 --%3E %3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22 id=%22svg4427%22 version=%221.1%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22clock-grey.svg%22 inkscape:export-filename=%22/media/shintaiden/home/rahah/mediawiki/skins/Timeless/resources/images/clock-grey.png%22 inkscape:export-xdpi=%2290%22 inkscape:export-ydpi=%2290%22%3E %3Cdefs id=%22defs4429%22 /%3E %3Csodipodi:namedview id=%22base%22 pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221.0%22 inkscape:pageopacity=%220.0%22 inkscape:pageshadow=%222%22 inkscape:zoom=%2244.8%22 inkscape:cx=%228.6752296%22 inkscape:cy=%229.0058783%22 inkscape:document-units=%22px%22 inkscape:current-layer=%22layer1%22 showgrid=%22true%22 units=%22px%22 inkscape:object-paths=%22true%22 inkscape:snap-intersection-paths=%22true%22 inkscape:snap-bbox=%22true%22 inkscape:object-nodes=%22true%22 inkscape:snap-smooth-nodes=%22true%22 inkscape:snap-midpoints=%22true%22 inkscape:snap-others=%22false%22 inkscape:window-width=%222657%22 inkscape:window-height=%221773%22 inkscape:window-x=%223792%22 inkscape:window-y=%22316%22 inkscape:window-maximized=%220%22%3E %3Cinkscape:grid type=%22xygrid%22 id=%22grid4975%22 /%3E %3C/sodipodi:namedview%3E %3Cmetadata id=%22metadata4432%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg inkscape:label=%22Layer 1%22 inkscape:groupmode=%22layer%22 id=%22layer1%22 transform=%22translate%280%2C-1032.3622%29%22%3E %3Cpath style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:2.24999976%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:0%22 d=%22m 10%2C1034.3622 a 7.9999996%2C7.9999996 0 0 0 -8%2C8 7.9999996%2C7.9999996 0 0 0 8%2C8 7.9999996%2C7.9999996 0 0 0 8%2C-8 7.9999996%2C7.9999996 0 0 0 -8%2C-8 z m 0%2C2 a 6%2C6 0 0 1 6%2C6 6%2C6 0 0 1 -6%2C6 6%2C6 0 0 1 -6%2C-6 6%2C6 0 0 1 6%2C-6 z%22 id=%22path4221%22 inkscape:connector-curvature=%220%22 /%3E %3Cpath style=%22fill:none%3Bfill-rule:evenodd%3Bstroke:%23aaaaaa%3Bstroke-width:2%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 d=%22m 10%2C1038.3622 0%2C4 2%2C0%22 id=%22path4226%22 inkscape:connector-curvature=%220%22 /%3E %3C/g%3E %3C/svg%3E");
	}
	#ca-talk a {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/talk-grey.png?30c9f);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 xmlns:sodipodi=%22http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22 xmlns:inkscape=%22http://www.inkscape.org/namespaces/inkscape%22 version=%221.1%22 id=%22svg4427%22 viewBox=%220 0 20 20%22 height=%2220%22 width=%2220%22 inkscape:version=%220.91 r13725%22 sodipodi:docname=%22talk-grey.svg%22%3E %3Csodipodi:namedview pagecolor=%22%23ffffff%22 bordercolor=%22%23666666%22 borderopacity=%221%22 objecttolerance=%2210%22 gridtolerance=%2210%22 guidetolerance=%2210%22 inkscape:pageopacity=%220%22 inkscape:pageshadow=%222%22 inkscape:window-width=%222150%22 inkscape:window-height=%221562%22 id=%22namedview5287%22 showgrid=%22false%22 inkscape:zoom=%2211.8%22 inkscape:cx=%22-11.610169%22 inkscape:cy=%2210%22 inkscape:window-x=%223055%22 inkscape:window-y=%22508%22 inkscape:window-maximized=%220%22 inkscape:current-layer=%22svg4427%22 /%3E %3Cdefs id=%22defs4429%22 /%3E %3Cmetadata id=%22metadata4432%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg transform=%22translate%280%2C-1031.3622%29%22 id=%22layer1%22%3E %3Cpath id=%22path4178%22 d=%22m 12.09375%2C1042.5471 0.03125%2C0 c 3.199083%2C2e-4 5.792737%2C-1.6403 5.792965%2C-3.6642 -2.24e-4%2C-2.0239 -2.593878%2C-3.6645 -5.792966%2C-3.6642 -3.199087%2C-3e-4 -5.792741%2C1.6403 -5.792968%2C3.6642%22 style=%22opacity:1%3Bfill:none%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:%23aaaaaa%3Bstroke-width:2.25%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 inkscape:connector-curvature=%220%22 /%3E %3Cellipse ry=%223.4255466%22 rx=%225%22 cy=%221043.0621%22 cx=%227.125%22 id=%22path4180%22 style=%22opacity:1%3Bfill:none%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:%23aaaaaa%3Bstroke-width:2.25%3Bstroke-linecap:square%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 /%3E %3Cpath id=%22path4190%22 d=%22m 4.625%2C1046.9366 c 0.586691%2C1.5565 -0.103629%2C2.5375 -1%2C3.4256 3.461888%2C-0.7316 3.441103%2C-2.1345 4%2C-3.4256 z%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:1.06857324px%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-opacity:0%22 inkscape:connector-curvature=%220%22 /%3E %3Cpath id=%22path4190-0%22 d=%22m 15.625%2C1043.0044 c -0.586692%2C1.5566 0.103628%2C2.5375 1%2C3.4256 -3.461889%2C-0.7315 -3.441104%2C-2.1344 -4.000001%2C-3.4256 z%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:1.06857324px%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-opacity:0%22 inkscape:connector-curvature=%220%22 /%3E %3C/g%3E %3C/svg%3E");
	}
	#t-contributions a {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/puzzle-grey.png?d6515);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 version=%221.1%22 id=%22svg4427%22 viewBox=%220 0 20 20%22 height=%2220%22 width=%2220%22%3E %3Cdefs id=%22defs4429%22 /%3E %3Cmetadata id=%22metadata4432%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg transform=%22translate%280%2C-1032.3622%29%22 id=%22layer1%22%3E %3Cpath id=%22rect4251%22 d=%22m 4%2C1037.3622 0%2C3.2715 a 2.0003578%2C2.0003578 0 0 1 1%2C-0.2715 2.0003578%2C2.0003578 0 0 1 2%2C2 2.0003578%2C2.0003578 0 0 1 -2%2C2 2.0003578%2C2.0003578 0 0 1 -1%2C-0.2695 l 0%2C3.2695 10%2C0 0%2C-10 -10%2C0 z%22 style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:2.00157619%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 /%3E %3Ccircle id=%22circle54-1%22 cy=%221042.3622%22 cx=%2215.000719%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%22 r=%222.0003579%22 /%3E %3Ccircle id=%22circle54-1-8%22 cy=%221036.3618%22 cx=%229.0003586%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%22 r=%222.0003579%22 /%3E %3Ccircle id=%22circle54-1-8-5%22 cy=%221048.3622%22 cx=%229%22 style=%22fill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%22 r=%222.0003579%22 /%3E %3C/g%3E %3C/svg%3E");
	}
	#ca-addsection a {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/plus-grey.png?674fb);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 version=%221.1%22 id=%22svg4427%22 viewBox=%220 0 20 20%22 height=%2220%22 width=%2220%22%3E %3Cdefs id=%22defs4429%22 /%3E %3Cmetadata id=%22metadata4432%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg transform=%22translate%280%2C-1032.3622%29%22 id=%22layer1%22%3E %3Crect ry=%220.96330887%22 y=%221036.3622%22 x=%228.7250023%22 height=%2212%22 width=%222.55%22 id=%22rect4326%22 style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:2.50197029%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 /%3E %3Crect transform=%22matrix%280%2C1%2C-1%2C0%2C0%2C0%29%22 ry=%220.96330887%22 y=%22-16%22 x=%221041.0872%22 height=%2212%22 width=%222.55%22 id=%22rect4326-1%22 style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:2.50197029%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 /%3E %3C/g%3E %3C/svg%3E");
	}
	*[id^='ca-nstab-'] a {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/page-grey.png?424cc);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 version=%221.1%22 id=%22svg4427%22 viewBox=%220 0 20 20%22 height=%2220%22 width=%2220%22%3E %3Cdefs id=%22defs4429%22 /%3E %3Cmetadata id=%22metadata4432%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg transform=%22translate%280%2C-1032.3622%29%22 id=%22layer1%22%3E %3Cpath id=%22rect4145%22 d=%22m 3%2C1034.3622 0%2C16 13%2C0 0%2C-10.9902 -5%2C-5.0098 z m 2%2C2 4.99414%2C0 0%2C4 4.00586%2C0 0%2C8 -9%2C0 z%22 style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:3%3Bstroke-linecap:square%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 /%3E %3C/g%3E %3C/svg%3E");
	}
	#ca-more:after,
	#ca-languages:after {
	  margin-left: -0.35em;
	}
	#ca-more span,
	#ca-languages span {
	  text-indent: -99999px;
	  border: 0;
	  background-color: transparent;
	  background-repeat: no-repeat;
	  display: inline-block;
	  width: 20px;
	  height: 20px;
	  box-sizing: border-box;
	  margin-bottom: -0.5em;
	}
	#ca-more span {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/gear-grey.png?74f8d);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 version=%221.1%22 id=%22svg4427%22 viewBox=%220 0 20 20%22 height=%2220%22 width=%2220%22%3E %3Cdefs id=%22defs4429%22 /%3E %3Cmetadata id=%22metadata4432%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg transform=%22translate%280%2C-1032.3622%29%22 id=%22layer1%22%3E %3Cpath id=%22path4167%22 d=%22m 9.713542%2C1034.3622 c -0.633143%2C0 -1.142361%2C0.5092 -1.142361%2C1.1424 l 0%2C0.743 a 6.2857149%2C6.285715 0 0 0 -1.8923615%2C0.783 l -0.5173612%2C-0.5174 c -0.2238496%2C-0.2238 -0.515155%2C-0.335 -0.8072918%2C-0.335 -0.2921348%2C0 -0.5851778%2C0.1112 -0.8090274%2C0.335 l -0.4027775%2C0.4046 c -0.4477002%2C0.4477 -0.4477002%2C1.1686 0%2C1.6163 l 0.5208335%2C0.5208 a 6.2857149%2C6.285715 0 0 0 -0.777778%2C1.8785 l -0.7430554%2C0 C 2.5092187%2C1040.9334 2%2C1041.4426 2%2C1042.0757 l 0%2C0.573 c 0%2C0.6331 0.5092187%2C1.1423 1.1423617%2C1.1423 l 0.7430554%2C0 a 6.2857149%2C6.285715 0 0 0 0.7829859%2C1.8924 l -0.5260414%2C0.5278 c -0.4477002%2C0.4477 -0.4477002%2C1.1686 0%2C1.6163 l 0.4027775%2C0.4045 c 0.4477002%2C0.4477 1.16862%2C0.4477 1.6163192%2C0 l 0.5329869%2C-0.533 a 6.2857149%2C6.285715 0 0 0 1.8767358%2C0.7778 l 0%2C0.743 c 0%2C0.6332 0.509218%2C1.1424 1.142361%2C1.1424 l 0.572917%2C0 c 0.633141%2C0 1.142361%2C-0.5092 1.142361%2C-1.1424 l 0%2C-0.743 a 6.2857149%2C6.285715 0 0 0 1.878472%2C-0.7761 l 0.531251%2C0.5313 c 0.447698%2C0.4477 1.168618%2C0.4477 1.61632%2C0 l 0.404513%2C-0.4045 c 0.447699%2C-0.4477 0.447699%2C-1.1686 0%2C-1.6163 l -0.529514%2C-0.5313 a 6.2857149%2C6.285715 0 0 0 0.784722%2C-1.8889 l 0.743055%2C0 c 0.633143%2C0 1.142362%2C-0.5092 1.142362%2C-1.1423 l 0%2C-0.573 c 0%2C-0.6331 -0.509219%2C-1.1423 -1.142362%2C-1.1423 l -0.743055%2C0 a 6.2857149%2C6.285715 0 0 0 -0.776041%2C-1.8785 l 0.520833%2C-0.5208 c 0.447699%2C-0.4477 0.447699%2C-1.1686 0%2C-1.6163 l -0.404513%2C-0.4046 c -0.447702%2C-0.4477 -1.168622%2C-0.4477 -1.61632%2C0 l -0.519098%2C0.5191 a 6.2857149%2C6.285715 0 0 0 -1.890625%2C-0.7847 l 0%2C-0.743 c 0%2C-0.6332 -0.50922%2C-1.1424 -1.142361%2C-1.1424 l -0.572917%2C0 z m 0.286459%2C4.4444 a 3.5555554%2C3.5555554 0 0 1 3.555555%2C3.5556 3.5555554%2C3.5555554 0 0 1 -3.555555%2C3.5556 3.5555554%2C3.5555554 0 0 1 -3.5555568%2C-3.5556 3.5555554%2C3.5555554 0 0 1 3.5555568%2C-3.5556 z%22 style=%22opacity:1%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bfill-rule:evenodd%3Bstroke:none%3Bstroke-width:65%3Bstroke-linecap:square%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 /%3E %3C/g%3E %3C/svg%3E");
	}
	#ca-languages span {
	  background-image: url(/camp/2019/wiki/skins/cccamp/resources/images/languages-grey.png?bf833);
	  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns:dc=%22http://purl.org/dc/elements/1.1/%22 xmlns:cc=%22http://creativecommons.org/ns%23%22 xmlns:rdf=%22http://www.w3.org/1999/02/22-rdf-syntax-ns%23%22 xmlns:svg=%22http://www.w3.org/2000/svg%22 xmlns=%22http://www.w3.org/2000/svg%22 version=%221.1%22 id=%22svg4427%22 viewBox=%220 0 20 20%22 height=%2220%22 width=%2220%22%3E %3Cdefs id=%22defs4429%22 /%3E %3Cmetadata id=%22metadata4432%22%3E %3Crdf:RDF%3E %3Ccc:Work rdf:about=%22%22%3E %3Cdc:format%3Eimage/svg%2Bxml%3C/dc:format%3E %3Cdc:type rdf:resource=%22http://purl.org/dc/dcmitype/StillImage%22 /%3E %3Cdc:title%3E%3C/dc:title%3E %3C/cc:Work%3E %3C/rdf:RDF%3E %3C/metadata%3E %3Cg transform=%22translate%280%2C-1032.3622%29%22 id=%22layer1%22%3E %3Cpath id=%22text4369%22 d=%22m 5.3507258%2C1034.3219 c -1.4399999%2C3.33 -2.9088281%2C6.5248 -4.42382813%2C9.8398 0.18000003%2C-0.045 0.67484383%2C-0.045 0.83984383%2C-0.045 0.165%2C0 0.4938281%2C-10e-5 0.6738281%2C0.045 0.225%2C-0.885 0.6755469%2C-2.07 1.1855469%2C-3.33 0.57%2C-0.015 1.4541406%2C-0.031 1.9941406%2C-0.031 0.48%2C0 0.9913281%2C0.016 1.4863281%2C0.031 0.705%2C1.89 1.035%2C3.015 1.125%2C3.33 0.255%2C-0.045 0.9598434%2C-0.045 1.2148434%2C-0.045 0.255%2C0 1.1102354%2C-10e-5 1.3652354%2C0.045 -0.75%2C-1.515 -2.8213288%2C-6.5548 -4.1113288%2C-9.8398 l -1.3496094%2C0 z m 0.029297%2C2.3848 0.091797%2C0 c 0.525%2C1.23 0.9583594%2C2.3401 1.3183594%2C3.2851 -0.42%2C0.015 -0.8991407%2C0.014 -1.2441406%2C0.014 -0.435%2C0 -1.0942188%2C0 -1.5742188%2C-0.014 l 1.408203%2C-3.2851 z%22 style=%22font-style:normal%3Bfont-variant:normal%3Bfont-weight:bold%3Bfont-stretch:normal%3Bfont-size:15.01182175px%3Bline-height:125%25%3Bfont-family:%27Linux Biolinum%27%3B-inkscape-font-specification:%27Linux Biolinum Bold%27%3Bletter-spacing:1.00078809px%3Bword-spacing:0px%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bstroke:%23aaaaaa%3Bstroke-width:0.19999999%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 /%3E %3Cpath id=%22text4375%22 d=%22m 11.928851%2C1037.3492 c -0.06348%2C0.011 -0.105794%2C0.046 -0.126953%2C0.1094 -0.08464%2C0.085 -0.08464%2C0.2761 0%2C0.5723 0.126953%2C0.2539 0.126953%2C0.9512 0%2C2.0937 -0.55013%2C0.085 -1.03776%2C0.1491 -1.460937%2C0.1914 l -1.0781254%2C0 c -0.3808598%2C-0.042 -0.5501306%2C0 -0.5078129%2C0.127 0.084635%2C0.1269 0.3164063%2C0.2318 0.6972659%2C0.3164 0.380859%2C0.085 0.7194014%2C0.127 1.0156254%2C0.127 0.338541%2C0 0.761718%2C-0.02 1.269531%2C-0.062 -0.04232%2C0.8886 -0.08464%2C1.7128 -0.126953%2C2.4746 -1.6503914%2C1.1849 -2.6660161%2C2.2226 -3.0468755%2C3.1113 -0.3385417%2C0.8887 -0.3808594%2C1.5859 -0.1269531%2C2.0937 0.2539062%2C0.4655 0.5299478%2C0.7194 0.8261722%2C0.7618 0.338541%2C0.042 0.654947%2C0.022 0.9511724%2C-0.062 0.296223%2C-0.127 0.592447%2C-0.2963 0.888671%2C-0.5079 0.338542%2C-0.2539 0.677084%2C-0.5501 1.015625%2C-0.8886 0.338542%2C0.804 0.634766%2C1.2051 0.888672%2C1.2051 0.253907%2C-0.042 0.423177%2C-0.127 0.507813%2C-0.254 0.08464%2C-0.1692 0.02214%2C-0.3587 -0.189453%2C-0.5703 -0.169271%2C-0.2116 -0.360677%2C-0.5501 -0.572266%2C-1.0156 0.507813%2C-0.7194 0.93099%2C-1.3965 1.269531%2C-2.0312 0.338542%2C-0.6348 0.634766%2C-1.3965 0.888672%2C-2.2852 1.057943%2C-0.042 1.841797%2C0.1471 2.349609%2C0.5703 0.550131%2C0.4232 0.866537%2C0.9955 0.951172%2C1.7149 0.08464%2C0.677 -0.04232%2C1.3541 -0.380859%2C2.0312 -0.338542%2C0.6348 -0.846354%2C1.2051 -1.523437%2C1.7129 -0.719402%2C0.4655 -1.438803%2C0.804 -2.158204%2C1.0156 -0.677083%2C0.2539 -0.993489%2C0.4232 -0.951172%2C0.5078 0%2C0.042 0.358724%2C-0.02 1.078126%2C-0.1894 0.761718%2C-0.127 1.523437%2C-0.403 2.285156%2C-0.8262 0.761719%2C-0.4655 1.333984%2C-0.9935 1.714844%2C-1.5859 0.423177%2C-0.6348 0.677083%2C-1.2494 0.761718%2C-1.8418 0.08464%2C-0.6348 0.04232%2C-1.1849 -0.126953%2C-1.6504 -0.169271%2C-0.5078 -0.465495%2C-0.9089 -0.888672%2C-1.2051 -0.423177%2C-0.3385 -0.888672%2C-0.5501 -1.396484%2C-0.6348 -0.465495%2C-0.1269 -1.015625%2C-0.1914 -1.650391%2C-0.1914 0.08464%2C-0.3808 -0.04232%2C-0.6347 -0.380859%2C-0.7617 -0.338542%2C-0.1269 -0.507813%2C-0.085 -0.507813%2C0.127 0.04232%2C0.1692 0.0625%2C0.403 0.0625%2C0.6992 -0.592448%2C0.1269 -1.205078%2C0.3385 -1.839843%2C0.6348 0.04232%2C-0.7194 0.104817%2C-1.4812 0.189453%2C-2.2852 2.327474%2C-0.6348 3.576823%2C-1.0378 3.746094%2C-1.207 0.16927%2C-0.1693 0.104817%2C-0.3164 -0.191407%2C-0.4434 -0.296224%2C-0.1269 -0.697265%2C-0.064 -1.205078%2C0.1895 -0.507812%2C0.2116 -1.269531%2C0.4453 -2.285156%2C0.6992 0.08464%2C-0.8041 0.211588%2C-1.3119 0.380859%2C-1.5235 0.211589%2C-0.2539 0.211589%2C-0.4655 0%2C-0.6347 -0.253906%2C-0.2116 -0.507812%2C-0.3386 -0.761718%2C-0.3809 -0.105795%2C-0.042 -0.19043%2C-0.057 -0.253907%2C-0.047 z m 2.158203%2C5.6329 c -0.380859%2C1.2695 -0.930989%2C2.3899 -1.65039%2C3.3632 -0.08464%2C-0.7194 -0.126953%2C-1.5859 -0.126953%2C-2.6015 0.592448%2C-0.3809 1.184895%2C-0.6348 1.777343%2C-0.7617 z m -2.412109%2C1.1425 c 0%2C1.3965 0.0625%2C2.3698 0.189453%2C2.92 -0.677083%2C0.7617 -1.184896%2C1.2272 -1.523437%2C1.3964 -0.3808604%2C0.127 -0.7194014%2C0.127 -1.0156254%2C0 -0.2539066%2C-0.1269 -0.338542%2C-0.4655 -0.2539066%2C-1.0156 0.042318%2C-0.5501 0.3183596%2C-1.1224 0.8261716%2C-1.7148 0.5078134%2C-0.5925 1.1002614%2C-1.1205 1.7773444%2C-1.586 z%22 style=%22font-style:normal%3Bfont-variant:normal%3Bfont-weight:normal%3Bfont-stretch:normal%3Bfont-size:16.26280785px%3Bline-height:125%25%3Bfont-family:KaiTi%3B-inkscape-font-specification:KaiTi%3Bletter-spacing:1.00078809px%3Bword-spacing:0px%3Bfill:%23aaaaaa%3Bfill-opacity:1%3Bstroke:%23aaaaaa%3Bstroke-width:0.19999999%3Bstroke-linecap:butt%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1%22 /%3E %3C/g%3E %3C/svg%3E");
	}
	/* Full-width thumbnails */
	div.thumb {
	  float: none;
	}
	.thumb {
	  margin: 1em auto;
	}
	.tright {
	  margin-left: 0;
	  padding-left: 0;
	}
	.tleft {
	  margin-right: 0;
	  padding-right: 0;
	}
	.thumbinner {
	  padding: 1em 1.5em;
	  width: 100% !important;
	  box-sizing: border-box;
	}
	.thumbimage {
	  display: block;
	  margin: 0 auto 0.5em;
	}
	#mw-content {
	  overflow: auto;
	  border: 0;
	}
	#mw-content-block {
	  background: #ffffff;
	}
	/* Keep images from overflowing */
	#mw-content a > img {
	  height: auto !important;
	  max-width: 100% !important;
	}
	/* Table of contents */
	#toc,
	.toc,
	.mw-warning {
	  width: 100%;
	  box-sizing: border-box;
	}
	/* Misc */
	.nomobile {
	  display: none;
	}}@media print {
	/* Styles for print view and printing */
	
	/* Hide some extra stuff from print view */
	.mw-indicators,
	#mw-header,
	#mw-site-navigation,
	#mw-related-navigation,
	#mw-page-header-links,
	#mw-footer,
	#catlinks {
		display: none;
	}
	
	#mw-content-text {
		margin-bottom: 3em;
	}}.mw-wiki-logo { background-image: url(/camp/2019/wiki/skins/camp19-logo.png?8be04); }/* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
/* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
@media screen and (min-width: 1425px) {
  .color-middle-container,
  .ts-inner {
    padding: 0 3em;
  }
  .color-middle {
    margin-left: 15em;
    margin-right: 15em;
  }
}
@media screen and (min-width: (1099px + 1339px) / 2) and (max-width: 1339px) {
  .ts-inner {
    padding: 0 3em;
  }
  .color-middle {
    margin-left: 18em;
    margin-right: 18em;
  }
}