Difference between revisions of "MediaWiki:Common.css"

From Animation Luzern Wiki
m (1 Version importiert)
 
(73 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* Reset italic styling set by user agent */
 
cite, dfn {
 
font-style: inherit;
 
}
 
 
/* Straight quote marks for <q> */
 
q {
 
quotes: '"' '"' "'" "'";
 
}
 
 
/* Avoid collision of blockquote with floating elements by swapping margin and padding */
 
blockquote {
 
overflow: hidden;
 
margin: 1em 0;
 
padding: 0 40px;
 
}
 
 
/* Prevent the 'double bold' bug in Firefox when using DirectWrite */
 
strong.selflink {
 
font-weight: 700;
 
}
 
 
/* Consistent size for <small>, <sub> and <sup> */
 
small {
 
font-size: 85%;
 
}
 
.mw-body-content sub,
 
.mw-body-content sup,
 
span.reference /* for Parsoid */ {
 
font-size: 80%;
 
}
 
 
/* Same spacing for indented and unidented paragraphs on talk pages */
 
.ns-talk .mw-body-content dd {
 
margin-top: 0.4em;
 
margin-bottom: 0.4em;
 
}
 
 
/* Main page fixes */
 
#interwiki-completelist {
 
font-weight: bold;
 
}
 
 
/* Reduce page jumps by hiding collapsed/dismissed content */
 
.client-js .mw-special-Watchlist #watchlist-message,
 
.client-js .collapsible.collapsed > tbody > tr:not(:first-child) {
 
display: none;
 
}
 
 
/* Tone down 'Changed since last visit' colors */
 
span.updatedmarker {
 
background-color: transparent;
 
color: #006400;
 
}
 
 
/* Edit window toolbar */
 
#toolbar {
 
height: 22px;
 
margin-bottom: 6px;
 
}
 
 
/* Hide charinsert base for those not using the gadget */
 
#editpage-specialchars {
 
display: none;
 
}
 
 
/* Highlight linked elements (such as clicked references) in blue */
 
body.action-info .mw-body-content :target,
 
.citation:target {
 
background-color: #DEF;  /* Fallback */
 
background-color: rgba(0, 127, 255, 0.133);
 
}
 
 
/* Styling for citations. Breaks long urls, etc., rather than overflowing box */
 
.citation {
 
word-wrap: break-word;
 
}
 
 
/* For linked citation numbers and document IDs, where the number need not be shown
 
  on a screen or a handheld, but should be included in the printed version */
 
@media screen, handheld {
 
.citation .printonly {
 
display: none;
 
}
 
}
 
 
/* Make the list of references smaller */
 
ol.references,
 
div.reflist,
 
div.refbegin {
 
font-size: 90%;            /* Default font-size */
 
margin-bottom: 0.5em;
 
}
 
div.refbegin-100 {
 
font-size: 100%;          /* Option for normal fontsize in {{refbegin}} */
 
}
 
div.reflist ol.references {
 
font-size: 100%;          /* Reset font-size when nested in div.reflist */
 
margin-bottom: 0;          /* Avoid double margin when nested in div.reflist */
 
list-style-type: inherit;  /* Enable custom list style types */
 
}
 
 
/* Ensure refs in table headers and the like aren't bold or italic */
 
sup.reference {
 
font-weight: normal;
 
font-style: normal;
 
}
 
 
/* Allow hidden ref errors to be shown by user CSS */
 
span.brokenref {
 
display: none;
 
}
 
 
/* Hanging indentation for Template:Refbegin */
 
.refbegin-hanging-indents > ul {
 
list-style-type: none;
 
margin-left: 0;
 
}
 
.refbegin-hanging-indents > ul > li,
 
.refbegin-hanging-indents > dl > dd {
 
margin-left: 0;
 
padding-left: 3.2em;
 
text-indent: -3.2em;
 
list-style: none;
 
}
 
 
/* Reset top margin for lists embedded in columns */
 
div.columns {
 
margin-top: 0.3em;
 
}
 
div.columns dl,
 
div.columns ol,
 
div.columns ul {
 
margin-top: 0;
 
}
 
 
/* Avoid elements from breaking between columns */
 
.nocolbreak,
 
div.columns li,
 
div.columns dd dd {
 
-webkit-column-break-inside: avoid;
 
page-break-inside: avoid;
 
break-inside: avoid-column;
 
}
 
 
/* Style for [[Template:Flowlist]] that Lets lists flow around floating objecs */
 
.flowlist ul {
 
overflow-x: hidden;
 
margin-left: 0;
 
padding-left: 1.6em;
 
}
 
.flowlist ol {
 
overflow-x: hidden;
 
margin-left: 0;
 
padding-left: 3.2em;
 
}
 
.flowlist dl {
 
overflow-x: hidden;
 
}
 
 
/* Style for horizontal lists (separator following item).
 
  @source mediawiki.org/wiki/Snippets/Horizontal_lists
 
  @revision 8 (2016-05-21)
 
  @author [[User:Edokter]]
 
*/
 
.hlist dl,
 
.hlist ol,
 
.hlist ul {
 
margin: 0;
 
padding: 0;
 
}
 
/* Display list items inline */
 
.hlist dd,
 
.hlist dt,
 
.hlist li {
 
margin: 0;
 
display: inline;
 
}
 
/* Display nested lists inline */
 
.hlist.inline,
 
.hlist.inline dl,
 
.hlist.inline ol,
 
.hlist.inline ul,
 
.hlist dl dl, .hlist dl ol, .hlist dl ul,
 
.hlist ol dl, .hlist ol ol, .hlist ol ul,
 
.hlist ul dl, .hlist ul ol, .hlist ul ul {
 
display: inline;
 
}
 
/* Hide empty list items */
 
.hlist .mw-empty-li {
 
display: none;
 
}
 
/* Generate interpuncts */
 
.hlist dt:after {
 
content: ": ";
 
}
 
.hlist dd:after,
 
.hlist li:after {
 
content: " · ";
 
font-weight: bold;
 
}
 
.hlist dd:last-child:after,
 
.hlist dt:last-child:after,
 
.hlist li:last-child:after {
 
content: none;
 
}
 
/* Add parentheses around nested lists */
 
.hlist dd dd:first-child:before, .hlist dd dt:first-child:before, .hlist dd li:first-child:before,
 
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
 
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
 
content: " (";
 
font-weight: normal;
 
}
 
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
 
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
 
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
 
content: ")";
 
font-weight: normal;
 
}
 
/* Put ordinals in front of ordered list items */
 
.hlist ol {
 
counter-reset: listitem;
 
}
 
.hlist ol > li {
 
counter-increment: listitem;
 
}
 
.hlist ol > li:before {
 
content: " " counter(listitem) "\a0";
 
}
 
.hlist dd ol > li:first-child:before,
 
.hlist dt ol > li:first-child:before,
 
.hlist li ol > li:first-child:before {
 
content: " (" counter(listitem) "\a0";
 
}
 
 
 
/* Unbulleted lists */
 
/* Unbulleted lists */
.plainlist ol,
+
.mw-body .plainlinks ol,
.plainlist ul {
+
.mw-body .plainlinks ul {
 
line-height: inherit;
 
line-height: inherit;
list-style: none none;
+
list-style: none;
 
margin: 0;
 
margin: 0;
 
}
 
}
.plainlist ol li,
+
.mw-body .plainlinks ol li,
.plainlist ul li {
+
.mw-body .plainlinks ul li {
 
margin-bottom: 0;
 
margin-bottom: 0;
 
}
 
}
  
/* Default style for navigation boxes */
+
.infoboxnavbar.mini li {
.navbox {                     /* Navbox container style */
+
    word-spacing: -0.125em;
box-sizing: border-box;
+
    float: right;
border: 1px solid #a2a9b1;
+
    margin: 0px 2px;
width: 100%;
 
clear: both;
 
font-size: 88%;
 
text-align: center;
 
padding: 1px;
 
margin: 1em auto 0;       /* Prevent preceding content from clinging to navboxes */
 
}
 
.navbox .navbox {
 
margin-top: 0;           /* No top margin for nested navboxes */
 
}
 
.navbox + .navbox {
 
margin-top: -1px;        /* Single pixel border between adjacent navboxes */
 
}
 
.navbox-inner,
 
.navbox-subgroup {
 
width: 100%;
 
 
}
 
}
.navbox-group,
+
.infoboxnavbar.mini li abbr[title] {
.navbox-title,
 
.navbox-abovebelow {
 
padding: 0.25em 1em;      /* Title, group and above/below styles */
 
line-height: 1.5em;
 
text-align: center;
 
}
 
th.navbox-group {            /* Group style */
 
white-space: nowrap;
 
/* @noflip */
 
text-align: right;
 
}
 
.navbox,
 
.navbox-subgroup {
 
background: #fdfdfd;      /* Background color */
 
}
 
.navbox-list {
 
line-height: 1.5em;
 
border-color: #fdfdfd;    /* Must match background color */
 
}
 
/* cell spacing for navbox cells */
 
tr + tr > .navbox-abovebelow,
 
tr + tr > .navbox-group,
 
tr + tr > .navbox-image,
 
tr + tr > .navbox-list {    /* Borders above 2nd, 3rd, etc. rows */
 
border-top: 2px solid #fdfdfd; /* Must match background color */
 
}
 
.navbox th,
 
.navbox-title {
 
background: #ccccff;      /* Level 1 color */
 
}
 
.navbox-abovebelow,
 
th.navbox-group,
 
.navbox-subgroup .navbox-title {
 
background: #ddddff;      /* Level 2 color */
 
}
 
.navbox-subgroup .navbox-group,
 
.navbox-subgroup .navbox-abovebelow {
 
background: #e6e6ff;      /* Level 3 color */
 
}
 
.navbox-even {
 
background: #f7f7f7;      /* Even row striping */
 
}
 
.navbox-odd {
 
background: transparent;  /* Odd row striping */
 
}
 
.navbox .hlist td dl,
 
.navbox .hlist td ol,
 
.navbox .hlist td ul,
 
.navbox td.hlist dl,
 
.navbox td.hlist ol,
 
.navbox td.hlist ul {
 
padding: 0.125em 0;      /* Adjust hlist padding in navboxes */
 
}
 
 
 
/* Default styling for Navbar template */
 
.navbar {
 
display: inline;
 
font-size: 88%;
 
font-weight: normal;
 
}
 
.navbar ul {
 
display: inline;
 
white-space: nowrap;
 
}
 
.mw-body-content .navbar ul {
 
line-height: inherit;
 
}
 
.navbar li {
 
word-spacing: -0.125em;
 
}
 
.navbar.mini li abbr[title] {
 
 
font-variant: small-caps;
 
font-variant: small-caps;
 
border-bottom: none;
 
border-bottom: none;
 
text-decoration: none;
 
text-decoration: none;
 
cursor: inherit;
 
cursor: inherit;
}
 
/* Navbar styling when nested in infobox and navbox */
 
.infobox .navbar {
 
font-size: 100%;
 
}
 
.navbox .navbar {
 
display: block;
 
font-size: 100%;
 
}
 
.navbox-title .navbar {
 
/* @noflip */
 
float: left;
 
/* @noflip */
 
text-align: left;
 
/* @noflip */
 
margin-right: 0.5em;
 
}
 
 
/* 'show'/'hide' buttons created dynamically by the CollapsibleTables javascript
 
  in [[MediaWiki:Common.js]] are styled here so they can be customised. */
 
.collapseButton {
 
/* @noflip */
 
float: right;
 
font-weight: normal;
 
/* @noflip */
 
margin-left: 0.5em;
 
/* @noflip */
 
text-align: right;
 
width: auto;
 
}
 
 
/* Styling for JQuery makeCollapsible, matching that of collapseButton */
 
.mw-parser-output .mw-collapsible-toggle {
 
font-weight: normal;
 
/* @noflip */
 
text-align: right;
 
padding-right: 0.2em;
 
padding-left: 0.2em;
 
}
 
.mw-collapsible-leftside-toggle .mw-collapsible-toggle {
 
/* @noflip */
 
float: left;
 
/* @noflip */
 
text-align: left;
 
 
}
 
}
  
Line 416: Line 50:
 
/* @noflip */
 
/* @noflip */
 
text-align: left;
 
text-align: left;
 +
        padding: 2px 5px;
 
}
 
}
 
.infobox.bordered {
 
.infobox.bordered {
Line 497: Line 132:
 
}
 
}
  
/* Normal font styling for table row headers with scope="row" tag */
+
/* Bootstrap modification */
.wikitable.plainrowheaders th[scope=row] {
+
@font-face {
font-weight: normal;
+
  font-family: octicons-link;
/* @noflip */
+
  src: url(data:font/woff;charset=utf-8;base64,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) format('woff');
text-align: left;
 
 
}
 
}
  
/* Lists in data cells are always left-aligned */
+
.mw-body {
.wikitable td ul,
+
  -ms-text-size-adjust: 100%;
.wikitable td ol,
+
  -webkit-text-size-adjust: 100%;
.wikitable td dl {
+
  line-height: 1.5;
/* @noflip */
+
  color: #24292e;
text-align: left;
+
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
 +
  font-size: 16px;
 +
  line-height: 1.5;
 +
  word-wrap: break-word;
 
}
 
}
/* ...unless they also use the hlist class */
+
 
.toc.hlist ul,
+
.mw-body .pl-c {
#toc.hlist ul,
+
  color: #6a737d;
.wikitable.hlist td ul,
 
.wikitable.hlist td ol,
 
.wikitable.hlist td dl {
 
text-align: inherit;
 
 
}
 
}
  
/* Icons for medialist templates [[Template:Listen]],
+
.mw-body .pl-c1,
  [[Template:Multi-listen_start]], [[Template:Video]],
+
.mw-body .pl-s .pl-v {
  [[Template:Multi-video_start]] */
+
  color: #005cc5;
div.listenlist {
 
background: url("//upload.wikimedia.org/wikipedia/commons/4/47/Sound-icon.svg") no-repeat scroll 0 0 transparent;
 
background-size: 30px;
 
padding-left: 40px;
 
 
}
 
}
  
/* Fix for hieroglyphs specificality issue in infoboxes ([[Phabricator:43869]]) */
+
.mw-body .pl-e,
table.mw-hiero-table td {
+
.mw-body .pl-en {
vertical-align: middle;
+
  color: #6f42c1;
 
}
 
}
  
/* Style rules for media list templates */
+
.mw-body .pl-smi,
div.medialist {
+
.mw-body .pl-s .pl-s1 {
min-height: 50px;
+
  color: #24292e;
margin: 1em;
 
/* @noflip */
 
background-position: top left;
 
background-repeat: no-repeat;
 
 
}
 
}
div.medialist ul {
+
 
list-style-type: none;
+
.mw-body .pl-ent {
list-style-image: none;
+
  color: #22863a;
margin: 0;
 
 
}
 
}
div.medialist ul li {
+
 
padding-bottom: 0.5em;
+
.mw-body .pl-k {
 +
  color: #d73a49;
 
}
 
}
div.medialist ul li li {
+
 
font-size: 91%;
+
.mw-body .pl-s,
padding-bottom: 0;
+
.mw-body .pl-pds,
 +
.mw-body .pl-s .pl-pse .pl-s1,
 +
.mw-body .pl-sr,
 +
.mw-body .pl-sr .pl-cce,
 +
.mw-body .pl-sr .pl-sre,
 +
.mw-body .pl-sr .pl-sra {
 +
  color: #032f62;
 
}
 
}
  
/* Change the external link icon to an Adobe icon for all PDF files
+
.mw-body .pl-v,
  in browsers that support these CSS selectors, like Mozilla and Opera */
+
.mw-body .pl-smw {
div#content a[href$=".pdf"].external,
+
  color: #e36209;
div#content a[href*=".pdf?"].external,
 
div#content a[href*=".pdf#"].external,
 
div#content a[href$=".PDF"].external,
 
div#content a[href*=".PDF?"].external,
 
div#content a[href*=".PDF#"].external,
 
div#mw_content a[href$=".pdf"].external,
 
div#mw_content a[href*=".pdf?"].external,
 
div#mw_content a[href*=".pdf#"].external,
 
div#mw_content a[href$=".PDF"].external,
 
div#mw_content a[href*=".PDF?"].external,
 
div#mw_content a[href*=".PDF#"].external {
 
background: url("//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif") no-repeat right;
 
/* @noflip */
 
padding-right: 18px;
 
 
}
 
}
  
/* Content in columns with CSS instead of tables ([[Template:Columns]]) */
+
.mw-body .pl-bu {
div.columns-2 div.column {
+
  color: #b31d28;
/* @noflip */
 
float: left;
 
width: 50%;
 
min-width: 300px;
 
 
}
 
}
div.columns-3 div.column {
+
 
/* @noflip */
+
.mw-body .pl-ii {
float: left;
+
  color: #fafbfc;
width: 33.3%;
+
  background-color: #b31d28;
min-width: 200px;
 
 
}
 
}
div.columns-4 div.column {
+
 
/* @noflip */
+
.mw-body .pl-c2 {
float: left;
+
  color: #fafbfc;
width: 25%;
+
  background-color: #d73a49;
min-width: 150px;
 
 
}
 
}
div.columns-5 div.column {
+
 
/* @noflip */
+
.mw-body .pl-c2::before {
float: left;
+
  content: "^M";
width: 20%;
 
min-width: 120px;
 
 
}
 
}
  
/* Messagebox templates */
+
.mw-body .pl-sr .pl-cce {
.messagebox {
+
  font-weight: bold;
border: 1px solid #a2a9b1;
+
  color: #22863a;
background-color: #f8f9fa;
 
width: 80%;
 
margin: 0 auto 1em auto;
 
padding: .2em;
 
 
}
 
}
.messagebox.merge {
+
 
border: 1px solid #c0b8cc;
+
.mw-body .pl-ml {
background-color: #f0e5ff;
+
  color: #735c0f;
text-align: center;
 
 
}
 
}
.messagebox.cleanup {
+
 
border: 1px solid #9f9fff;
+
.mw-body .pl-mh,
background-color: #efefff;
+
.mw-body .pl-mh .pl-en,
text-align: center;
+
.mw-body .pl-ms {
 +
  font-weight: bold;
 +
  color: #005cc5;
 
}
 
}
.messagebox.standard-talk {
+
 
border: 1px solid #c0c090;
+
.mw-body .pl-mi {
background-color: #f8eaba;
+
  font-style: italic;
margin: 4px auto;
+
  color: #24292e;
 
}
 
}
/* For old WikiProject banners inside banner shells. */
+
 
.mbox-inside .standard-talk,
+
.mw-body .pl-mb {
.messagebox.nested-talk {
+
  font-weight: bold;
border: 1px solid #c0c090;
+
  color: #24292e;
background-color: #f8eaba;
 
width: 100%;
 
margin: 2px 0;
 
padding: 2px;
 
 
}
 
}
.messagebox.small {
+
 
width: 238px;
+
.mw-body .pl-md {
font-size: 85%;
+
  color: #b31d28;
/* @noflip */
+
  background-color: #ffeef0;
float: right;
 
clear: both;
 
/* @noflip */
 
margin: 0 0 1em 1em;
 
line-height: 1.25em;
 
 
}
 
}
.messagebox.small-talk {
+
 
width: 238px;
+
.mw-body .pl-mi1 {
font-size: 85%;
+
  color: #22863a;
/* @noflip */
+
  background-color: #f0fff4;
float: right;
 
clear: both;
 
/* @noflip */
 
margin: 0 0 1em 1em;
 
line-height: 1.25em;
 
background: #F8EABA;
 
 
}
 
}
  
/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
+
.mw-body .pl-mc {
th.mbox-text, td.mbox-text /* The message body cell(s) */
+
   color: #e36209;
border: none;
+
  background-color: #ffebda;
/* @noflip */
 
padding: 0.25em 0.9em;    /* 0.9em left/right */
 
width: 100%;               /* Make all mboxes the same width regardless of text length */
 
 
}
 
}
td.mbox-image {               /* The left image cell */
+
 
border: none;
+
.mw-body .pl-mi2 {
/* @noflip */
+
  color: #f6f8fa;
padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
+
  background-color: #005cc5;
text-align: center;
 
 
}
 
}
td.mbox-imageright {           /* The right image cell */
+
 
border: none;
+
.mw-body .pl-mdr {
/* @noflip */
+
  font-weight: bold;
padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */
+
  color: #6f42c1;
text-align: center;
 
 
}
 
}
td.mbox-empty-cell {           /* An empty narrow cell */
+
 
border: none;
+
.mw-body .pl-ba {
padding: 0;
+
  color: #586069;
width: 1px;
 
 
}
 
}
  
/* Article message box styles */
+
.mw-body .pl-sg {
table.ambox {
+
  color: #959da5;
margin: 0 10%;                  /* 10% = Will not overlap with other elements */
 
border: 1px solid #a2a9b1;
 
/* @noflip */
 
border-left: 10px solid #36c;  /* Default "notice" blue */
 
background: #fbfbfb;
 
 
}
 
}
table.ambox + table.ambox {     /* Single border between stacked boxes. */
+
 
margin-top: -1px;
+
.mw-body .pl-corl {
 +
  text-decoration: underline;
 +
  color: #032f62;
 
}
 
}
.ambox th.mbox-text,
+
 
.ambox td.mbox-text {            /* The message body cell(s) */
+
.mw-body .octicon {
padding: 0.25em 0.5em;       /* 0.5em left/right */
+
  display: inline-block;
 +
  vertical-align: text-top;
 +
  fill: currentColor;
 
}
 
}
.ambox td.mbox-image {           /* The left image cell */
+
 
/* @noflip */
+
.mw-body a {
padding: 2px 0 2px 0.5em;   /* 0.5em left, 0px right */
+
  background-color: transparent;
 
}
 
}
.ambox td.mbox-imageright {     /* The right image cell */
+
 
/* @noflip */
+
.mw-body a:active,
padding: 2px 0.5em 2px 0;   /* 0px left, 0.5em right */
+
.mw-body a:hover {
 +
  outline-width: 0;
 
}
 
}
  
table.ambox-notice {
+
.mw-body strong {
/* @noflip */
+
  font-weight: inherit;
border-left: 10px solid #36c;   /* Blue */
 
 
}
 
}
table.ambox-speedy {
+
 
/* @noflip */
+
.mw-body strong {
border-left: 10px solid #b32424;    /* Red */
+
  font-weight: bolder;
background: #fee7e6;                   /* Pink */
 
 
}
 
}
table.ambox-delete {
+
 
/* @noflip */
+
.mw-body h1 {
border-left: 10px solid #b32424;   /* Red */
+
  font-size: 2em;
 +
  margin: 0.67em 0;
 
}
 
}
table.ambox-content {
+
 
/* @noflip */
+
.mw-body img {
border-left: 10px solid #f28500;   /* Orange */
+
  border-style: none;
 
}
 
}
table.ambox-style {
+
 
/* @noflip */
+
.mw-body code,
border-left: 10px solid #fc3;   /* Yellow */
+
.mw-body kbd,
 +
.mw-body pre {
 +
  font-family: monospace, monospace;
 +
  font-size: 1em;
 
}
 
}
table.ambox-move {
+
 
/* @noflip */
+
.mw-body hr {
border-left: 10px solid #9932cc;   /* Purple */
+
  box-sizing: content-box;
 +
  height: 0;
 +
  overflow: visible;
 
}
 
}
table.ambox-protection {
+
 
/* @noflip */
+
.mw-body input {
border-left: 10px solid #a2a9b1;       /* Gray-gold */
+
  font: inherit;
 +
  margin: 0;
 
}
 
}
  
/* Image message box styles */
+
.mw-body input {
table.imbox {
+
  overflow: visible;
margin: 4px 10%;
 
border-collapse: collapse;
 
border: 3px solid #36c;    /* Default "notice" blue */
 
background: #fbfbfb;
 
 
}
 
}
.imbox .mbox-text .imbox { /* For imboxes inside imbox-text cells. */
+
 
margin: 0 -0.5em;       /* 0.9 - 0.5 = 0.4em left/right.        */
+
.mw-body [type="checkbox"] {
display: block;        /* Fix for webkit to force 100% width.  */
+
  box-sizing: border-box;
}
+
  padding: 0;
.mbox-inside .imbox {      /* For imboxes inside other templates.  */
 
margin: 4px;
 
 
}
 
}
  
table.imbox-notice {
+
/*
border: 3px solid #36c;   /* Blue */
+
.mw-body * {
 +
  box-sizing: border-box;
 
}
 
}
table.imbox-speedy {
+
*/
border: 3px solid #b32424;   /* Red */
+
.mw-body input {
background: #fee7e6;             /* Pink */
+
  font-family: inherit;
 +
  font-size: inherit;
 +
  line-height: inherit;
 
}
 
}
table.imbox-delete {
+
 
border: 3px solid #b32424;   /* Red */
+
.mw-body a {
 +
  /*color: #0645ad;*/
 +
  color: #005ea5;
 +
  text-decoration: underline dotted;
 
}
 
}
table.imbox-content {
+
 
border: 3px solid #f28500;   /* Orange */
+
.mw-body a:visited {
 +
  /* color: #0b0080; */
 +
  color: #4c2c92;
 
}
 
}
table.imbox-style {
+
 
border: 3px solid #fc3;   /* Yellow */
+
.mw-body a:hover {
 +
  /* text-decoration: underline; */
 +
  color: #2b8cc4;
 
}
 
}
table.imbox-move {
+
 
border: 3px solid #9932cc;   /* Purple */
+
.mw-body a:focus {
 +
  color: #0b0c0c;
 
}
 
}
table.imbox-protection {
+
 
border: 3px solid #a2a9b1;       /* Gray-gold */
+
.mw-body a.new {
 +
  color: #ba0000;
 
}
 
}
table.imbox-license {
+
 
border: 3px solid #88a;      /* Dark gray */
+
.mw-body strong {
background: #f7f8ff;         /* Light gray */
+
  font-weight: 500;
 
}
 
}
table.imbox-featured {
+
 
border: 3px solid #cba135;   /* Brown-gold */
+
.mw-body hr {
 +
  height: 0;
 +
  margin: 15px 0;
 +
  overflow: hidden;
 +
  background: transparent;
 +
  border: 0;
 +
  border-bottom: 1px solid #dfe2e5;
 
}
 
}
  
/* Category message box styles */
+
.mw-body hr::before {
table.cmbox {
+
  display: table;
margin: 3px 10%;
+
  content: "";
border-collapse: collapse;
 
border: 1px solid #a2a9b1;
 
background: #DFE8FF;    /* Default "notice" blue */
 
 
}
 
}
  
table.cmbox-notice {
+
.mw-body hr::after {
background: #D8E8FF;   /* Blue */
+
  display: table;
 +
  clear: both;
 +
  content: "";
 
}
 
}
table.cmbox-speedy {
+
 
margin-top: 4px;
+
.mw-body table {
margin-bottom: 4px;
+
  border-spacing: 0;
border: 4px solid #b32424;    /* Red */
+
  border-collapse: collapse;
background: #FFDBDB;         /* Pink */
 
 
}
 
}
table.cmbox-delete {
+
 
background: #FFDBDB;   /* Red */
+
.mw-body td,
 +
.mw-body th {
 +
  padding: 0;
 
}
 
}
table.cmbox-content {
+
 
background: #FFE7CE;   /* Orange */
+
.mw-body h1,
 +
.mw-body h2,
 +
.mw-body h3,
 +
.mw-body h4,
 +
.mw-body h5,
 +
.mw-body h6 {
 +
  margin-top: 0;
 +
  margin-bottom: 0;
 +
  line-height: 1.25;
 
}
 
}
table.cmbox-style {
+
 
background: #FFF9DB;   /* Yellow */
+
.mw-body h1 {
 +
  font-size: 32px;
 +
  font-weight: 300;
 +
  letter-spacing: 1px;
 
}
 
}
table.cmbox-move {
+
 
background: #E4D8FF;   /* Purple */
+
.mw-body h2 {
 +
  font-size: 24px;
 +
  font-weight: 500;
 
}
 
}
table.cmbox-protection {
+
 
background: #EFEFE1;   /* Gray-gold */
+
.mw-body h3 {
 +
  font-size: 20px;
 +
  font-weight: 500;
 
}
 
}
  
/* Other pages message box styles */
+
.mw-body h4 {
table.ombox {
+
  font-size: 16px;
margin: 4px 10%;
+
  font-weight: 500;
border-collapse: collapse;
 
border: 1px solid #a2a9b1;      /* Default "notice" gray */
 
background: #f8f9fa;
 
 
}
 
}
  
table.ombox-notice {
+
.mw-body h5 {
border: 1px solid #a2a9b1;       /* Gray */
+
  font-size: 14px;
 +
  font-weight: 500;
 
}
 
}
table.ombox-speedy {
+
 
border: 2px solid #b32424;   /* Red */
+
.mw-body h6 {
background: #fee7e6;             /* Pink */
+
  font-size: 12px;
 +
  font-weight: 500;
 
}
 
}
table.ombox-delete {
+
 
border: 2px solid #b32424;   /* Red */
+
.mw-body span.mw-editsection{
 +
letter-spacing: 0px;
 
}
 
}
table.ombox-content {
+
 
border: 1px solid #f28500;   /* Orange */
+
.mw-body p {
 +
  margin-top: 0;
 +
  margin-bottom: 10px;
 
}
 
}
table.ombox-style {
+
 
border: 1px solid #fc3;   /* Yellow */
+
.mw-body blockquote {
 +
  margin: 0;
 
}
 
}
table.ombox-move {
+
 
border: 1px solid #9932cc;   /* Purple */
+
.mw-body ul,
 +
.mw-body ol {
 +
  padding-left: 0;
 +
  margin-top: 0;
 +
  margin-bottom: 0;
 
}
 
}
table.ombox-protection {
+
 
border: 2px solid #a2a9b1;       /* Gray-gold */
+
.mw-body ol ol,
 +
.mw-body ul ol {
 +
  list-style-type: lower-roman;
 
}
 
}
  
/* Talk page message box styles */
+
.mw-body ul ul ol,
table.tmbox {
+
.mw-body ul ol ol,
margin: 4px 10%;
+
.mw-body ol ul ol,
border-collapse: collapse;
+
.mw-body ol ol ol {
border: 1px solid #c0c090;    /* Default "notice" gray-brown */
+
  list-style-type: lower-alpha;
background: #f8eaba;
 
 
}
 
}
.mediawiki .mbox-inside .tmbox { /* For tmboxes inside other templates. The "mediawiki" class ensures that */
+
 
margin: 2px 0;               /* this declaration overrides other styles (including mbox-small above)  */
+
.mw-body dd {
width: 100%;                /* For Safari and Opera */
+
  margin-left: 0;
 
}
 
}
.mbox-inside .tmbox.mbox-small { /* "small" tmboxes should not be small when  */
+
 
line-height: 1.5em;          /* also "nested", so reset styles that are   */
+
.mw-body code {
font-size: 100%;             /* set in "mbox-small" above.                */
+
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
 +
   font-size: 12px;
 
}
 
}
  
table.tmbox-speedy {
+
.mw-body pre {
border: 2px solid #b32424;   /* Red */
+
  margin-top: 0;
background: #fee7e6;             /* Pink */
+
  margin-bottom: 0;
 +
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
 +
  font-size: 12px;
 
}
 
}
table.tmbox-delete {
+
 
border: 2px solid #b32424;   /* Red */
+
.mw-body .octicon {
 +
  vertical-align: text-bottom;
 
}
 
}
table.tmbox-content {
+
 
border: 2px solid #f28500;   /* Orange */
+
.mw-body .pl-0 {
 +
  padding-left: 0 !important;
 
}
 
}
table.tmbox-style {
+
 
border: 2px solid #fc3;   /* Yellow */
+
.mw-body .pl-1 {
 +
  padding-left: 4px !important;
 
}
 
}
table.tmbox-move {
+
 
border: 2px solid #9932cc;   /* Purple */
+
.mw-body .pl-2 {
 +
  padding-left: 8px !important;
 
}
 
}
table.tmbox-protection,
+
 
table.tmbox-notice {
+
.mw-body .pl-3 {
border: 1px solid #c0c090;   /* Gray-brown */
+
  padding-left: 16px !important;
 
}
 
}
  
/* Disambig and set index box styles */
+
.mw-body .pl-4 {
table.dmbox {
+
  padding-left: 24px !important;
clear: both;
 
margin: 0.9em 1em;
 
border-top: 1px solid #ccc;
 
border-bottom: 1px solid #ccc;
 
background: transparent;
 
 
}
 
}
  
/* Footer and header message box styles */
+
.mw-body .pl-5 {
table.fmbox {
+
  padding-left: 32px !important;
clear: both;
 
margin: 0.2em 0;
 
width: 100%;
 
border: 1px solid #a2a9b1;
 
background: #f8f9fa;     /* Default "system" gray */
 
 
}
 
}
table.fmbox-system {
+
 
background: #f8f9fa;
+
.mw-body .pl-6 {
 +
  padding-left: 40px !important;
 
}
 
}
table.fmbox-warning {
+
 
border: 1px solid #bb7070; /* Dark pink */
+
.mw-body::before {
background: #ffdbdb;       /* Pink */
+
  display: table;
 +
  content: "";
 
}
 
}
table.fmbox-editnotice {
+
 
background: transparent;
+
.mw-body::after {
 +
  display: table;
 +
  clear: both;
 +
  content: "";
 
}
 
}
/* Div based "warning" style fmbox messages. */
+
 
div.mw-warning-with-logexcerpt,
+
.mw-body>*:first-child {
div.mw-lag-warn-high,
+
  margin-top: 0 !important;
div.mw-cascadeprotectedwarning,
 
div#mw-protect-cascadeon,
 
div.titleblacklist-warning,
 
div.locked-warning {
 
clear: both;
 
margin: 0.2em 0;
 
border: 1px solid #bb7070;
 
background: #ffdbdb;
 
padding: 0.25em 0.9em;
 
 
}
 
}
/* Div based "system" style fmbox messages.
+
 
  Used in [[MediaWiki:Readonly lag]]. */
+
.mw-body>*:last-child {
div.mw-lag-warn-normal,
+
  margin-bottom: 0 !important;
div.fmbox-system {
 
clear: both;
 
margin: 0.2em 0;
 
border: 1px solid #a2a9b1;
 
background: #f8f9fa;
 
padding: 0.25em 0.9em;
 
 
}
 
}
  
/* These mbox-small classes must be placed after all other
+
.mw-body a:not([href]) {
  ambox/tmbox/ombox etc classes. "html body.mediawiki" is so
+
   color: inherit;
  they override "table.ambox + table.ambox" above. */
+
  text-decoration: none;
html body.mediawiki .mbox-small {   /* For the "small=yes" option. */
 
/* @noflip */
 
clear: right;
 
/* @noflip */
 
float: right;
 
/* @noflip */
 
margin: 4px 0 4px 1em;
 
box-sizing: border-box;
 
width: 238px;
 
font-size: 88%;
 
line-height: 1.25em;
 
 
}
 
}
html body.mediawiki .mbox-small-left /* For the "small=left" option. */
+
 
/* @noflip */
+
.mw-body .anchor {
margin: 4px 1em 4px 0;
+
   float: left;
box-sizing: border-box;
+
  padding-right: 4px;
overflow: hidden;
+
  margin-left: -20px;
width: 238px;
+
  line-height: 1;
border-collapse: collapse;
 
font-size: 88%;
 
line-height: 1.25em;
 
 
}
 
}
  
/* Style for compact ambox */
+
.mw-body .anchor:focus {
/* Hide the images */
+
  outline: none;
.compact-ambox table .mbox-image,
 
.compact-ambox table .mbox-imageright,
 
.compact-ambox table .mbox-empty-cell {
 
display: none;
 
 
}
 
}
/* Remove borders, backgrounds, padding, etc. */
+
 
.compact-ambox table.ambox {
+
.mw-body p,
border: none;
+
.mw-body blockquote,
border-collapse: collapse;
+
.mw-body ul,
background: transparent;
+
.mw-body ol,
margin: 0 0 0 1.6em !important;
+
.mw-body dl,
padding: 0 !important;
+
.mw-body table,
width: auto;
+
.mw-body pre {
display: block;
+
  margin-top: 0;
 +
  margin-bottom: 16px;
 
}
 
}
body.mediawiki .compact-ambox table.mbox-small-left {
+
 
font-size: 100%;
+
.mw-body hr {
width: auto;
+
  height: 0.25em;
margin: 0;
+
  padding: 0;
 +
  margin: 24px 0;
 +
  background-color: #e1e4e8;
 +
  border: 0;
 
}
 
}
/* Style the text cell as a list item and remove its padding */
+
 
.compact-ambox table .mbox-text {
+
.mw-body blockquote {
padding: 0 !important;
+
  padding: 0 1em;
margin: 0 !important;
+
  color: #6a737d;
 +
  border-left: 0.25em solid #dfe2e5;
 
}
 
}
.compact-ambox table .mbox-text-span {
+
 
display: list-item;
+
.mw-body blockquote>:first-child {
line-height: 1.5em;
+
  margin-top: 0;
list-style-type: square;
 
list-style-image: url(/w/skins/MonoBook/bullet.gif);
 
 
}
 
}
.skin-vector .compact-ambox table .mbox-text-span {
+
 
list-style-type: disc;
+
.mw-body blockquote>:last-child {
list-style-image: url(/w/skins/Vector/images/bullet-icon.svg);
+
  margin-bottom: 0;
list-style-image: url(/w/skins/Vector/images/bullet-icon.png)\9;
 
 
}
 
}
/* Allow for hiding text in compact form */
+
 
.compact-ambox .hide-when-compact {
+
.mw-body kbd {
display: none;
+
  display: inline-block;
 +
  padding: 3px 5px;
 +
  font-size: 11px;
 +
  line-height: 10px;
 +
  color: #444d56;
 +
  vertical-align: middle;
 +
  background-color: #fafbfc;
 +
  border: solid 1px #c6cbd1;
 +
  border-bottom-color: #959da5;
 +
  border-radius: 3px;
 +
  box-shadow: inset 0 -1px 0 #959da5;
 
}
 
}
  
/* Remove default styles for [[MediaWiki:Noarticletext]]. */
+
.mw-body h1 {
div.noarticletext {
+
  margin-top: 24px;
border: none;
+
  margin-bottom: 16px;
background: transparent;
 
padding: 0;
 
 
}
 
}
  
/* Hide (formatting) elements from screen, but not from screenreaders */
+
.mw-body h2,
.visualhide {
+
.mw-body h3,
position: absolute;
+
.mw-body h4,
left: -10000px;
+
.mw-body h5,
top: auto;
+
.mw-body h6 {
width: 1px;
+
  margin-top: 24px;
height: 1px;
+
  margin-bottom: 16px;
overflow: hidden;
 
 
}
 
}
  
/* suppress missing interwiki image links where #ifexist cannot
+
.mw-body h1 .octicon-link,
  be used due to high number of requests see .hidden-redlink on
+
.mw-body h2 .octicon-link,
  [[m:MediaWiki:Common.css]] */
+
.mw-body h3 .octicon-link,
.check-icon a.new {
+
.mw-body h4 .octicon-link,
display: none;
+
.mw-body h5 .octicon-link,
speak: none;
+
.mw-body h6 .octicon-link {
 +
  color: #1b1f23;
 +
  vertical-align: middle;
 +
  visibility: hidden;
 
}
 
}
  
/* Removes underlines from certain links */
+
.mw-body h1:hover .anchor,
.nounderlines a,
+
.mw-body h2:hover .anchor,
.IPA a:link, .IPA a:visited {
+
.mw-body h3:hover .anchor,
text-decoration: none !important;
+
.mw-body h4:hover .anchor,
 +
.mw-body h5:hover .anchor,
 +
.mw-body h6:hover .anchor {
 +
  text-decoration: none;
 
}
 
}
  
/* Standard Navigationsleisten, aka box hiding thingy
+
.mw-body h1:hover .anchor .octicon-link,
  from .de. Documentation at [[Wikipedia:NavFrame]]. */
+
.mw-body h2:hover .anchor .octicon-link,
div.NavFrame {
+
.mw-body h3:hover .anchor .octicon-link,
margin: 0;
+
.mw-body h4:hover .anchor .octicon-link,
padding: 4px;
+
.mw-body h5:hover .anchor .octicon-link,
border: 1px solid #a2a9b1;
+
.mw-body h6:hover .anchor .octicon-link {
text-align: center;
+
  visibility: visible;
border-collapse: collapse;
 
font-size: 95%;
 
 
}
 
}
div.NavFrame + div.NavFrame {
+
 
border-top-style: none;
+
.mw-body h1 {
border-top-style: hidden;
+
  padding-bottom: 0.3em;
 +
  font-size: 2.5em;
 +
  border-bottom: 0px solid #eaecef;
 
}
 
}
div.NavPic {
+
 
background-color: #fff;
+
.mw-body h2 {
margin: 0;
+
  padding-bottom: 0.3em;
padding: 2px;
+
  font-size: 1.5em;
/* @noflip */
+
  border-bottom: 1px solid #eaecef;
float: left;
 
 
}
 
}
div.NavFrame div.NavHead {
+
 
line-height: 1.6em;
+
.mw-body h3 {
font-weight: bold;
+
  font-size: 1.25em;
background-color: #ccf;
 
position: relative;
 
 
}
 
}
div.NavFrame p,
+
 
div.NavFrame div.NavContent,
+
.mw-body h4 {
div.NavFrame div.NavContent p {
+
  font-size: 1em;
font-size: 100%;
 
 
}
 
}
div.NavEnd {
+
 
margin: 0;
+
.mw-body h5 {
padding: 0;
+
  font-size: 0.875em;
line-height: 1px;
 
clear: both;
 
 
}
 
}
a.NavToggle {
+
 
position: absolute;
+
.mw-body h6 {
top: 0;
+
  font-size: 0.85em;
/* @noflip */
+
  color: #6a737d;
right: 3px;
 
font-weight: normal;
 
font-size: 90%;
 
 
}
 
}
  
/* Hatnotes and disambiguation notices */
+
.mw-body ul {
.hatnote {
+
  padding-left: 0;
font-style: italic;
+
  list-style: disc;
 +
  margin-left: 1.5em;
 
}
 
}
.hatnote i {
+
 
font-style: normal;
+
.mw-body ol {
 +
  padding-left: 0;
 +
  list-style: decimal;
 +
  margin-left: 1.5em;
 
}
 
}
div.hatnote {
+
 
/* @noflip */
+
.mw-body ul ul,
padding-left: 1.6em;
+
.mw-body ul ol,
margin-bottom: 0.5em;
+
.mw-body ol ol,
 +
.mw-body ol ul {
 +
  margin-top: 0;
 +
  margin-bottom: 0;
 
}
 
}
div.hatnote + div.hatnote {
+
 
margin-top: -0.5em;
+
.mw-body li {
 +
  word-wrap: break-all;
 
}
 
}
  
/* Allow transcluded pages to display in lists rather than a table. */
+
.mw-body li>p {
.listify td    { display: list-item; }
+
  margin-top: 16px;
.listify tr    { display: block; }
+
}
.listify table { display: block; }
 
  
/* Geographical coordinates defaults. See [[Template:Coord/link]]
+
.mw-body li+li {
  for how these are used. The classes "geo", "longitude", and
+
  margin-top: 0.25em;
  "latitude" are used by the [[Geo microformat]]. */
+
}
.geo-default, .geo-dms, .geo-dec  { display: inline; }
 
.geo-nondefault, .geo-multi-punct { display: none; }
 
.longitude, .latitude            { white-space: nowrap; }
 
  
/* Temporary(!) fix for horizontal TOC in Blink (Chrone/Opera) */
+
.mw-body dl {
.hlist .tocnumber,
+
  padding: 0;
.hlist .toctext {
 
display: inline;
 
 
}
 
}
/* When <div class="nonumtoc"> is used on the table of contents,
+
 
  the ToC will display without numbers */
+
.mw-body dl dt {
.nonumtoc .tocnumber {
+
  padding: 0;
display: none;
+
  margin-top: 16px;
 +
  font-size: 1em;
 +
  font-style: italic;
 +
  font-weight: 500;
 
}
 
}
.nonumtoc #toc ul,
+
 
.nonumtoc .toc ul {
+
.mw-body dl dd {
line-height: 1.5em;
+
  padding: 0 16px;
list-style: none none;
+
  margin-bottom: 16px;
margin: .3em 0 0;
 
padding: 0;
 
 
}
 
}
.hlist.nonumtoc #toc ul ul,
+
 
.hlist.nonumtoc .toc ul ul {
+
.mw-body table {
/* @noflip */
+
  display: block;
margin: 0;
+
  width: 100%;
 +
  overflow: auto;
 
}
 
}
  
/* Allow limiting of which header levels are shown in a TOC;
+
.mw-body table th {
  <div class="toclimit-3">, for instance, will limit to
+
  font-weight: 600;
  showing ==headings== and ===headings=== but no further
 
  (as long as there are no =headings= on the page, which
 
  there shouldn't be according to the MoS). */
 
.toclimit-2 .toclevel-1 ul,
 
.toclimit-3 .toclevel-2 ul,
 
.toclimit-4 .toclevel-3 ul,
 
.toclimit-5 .toclevel-4 ul,
 
.toclimit-6 .toclevel-5 ul,
 
.toclimit-7 .toclevel-6 ul {
 
display: none;
 
 
}
 
}
  
/* Styling for Template:Quote */
+
.mw-body table th,
blockquote.templatequote div.templatequotecite {
+
.mw-body table td {
line-height: 1.5em;
+
  padding: 6px 13px;
/* @noflip */
+
  border: 1px solid #dfe2e5;
text-align: left;
 
/* @noflip */
 
padding-left: 1.6em;
 
margin-top: 0;
 
 
}
 
}
  
/* User block messages */
+
.mw-body table tr {
div.user-block {
+
  background-color: #fff;
padding: 5px;
+
  border-top: 1px solid #c6cbd1;
margin-bottom: 0.5em;
 
border: 1px solid #A9A9A9;
 
background-color: #FFEFD5;
 
 
}
 
}
  
/* Prevent line breaks in silly places:
+
.mw-body table tr:nth-child(2n) {
  1) Where desired
+
  background-color: #f6f8fa;
  2) Links when we don't want them to
 
  3) Bold "links" to the page itself */
 
.nowrap,
 
.nowraplinks a,
 
.nowraplinks .selflink {
 
white-space: nowrap;
 
 
}
 
}
.nowrap pre {
+
 
white-space: pre;
+
.mw-body img {
 +
  max-width: 100%;
 +
  box-sizing: content-box;
 +
  background-color: #fff;
 
}
 
}
/* But allow wrapping where desired: */
+
 
.wrap,
+
.mw-body img[align=right] {
.wraplinks a {
+
  padding-left: 20px;
white-space: normal;
 
 
}
 
}
  
/* For template documentation */
+
.mw-body img[align=left] {
.template-documentation {
+
  padding-right: 20px;
clear: both;
 
margin: 1em 0 0 0;
 
border: 1px solid #a2a9b1;
 
background-color: #ecfcf4;
 
padding: 1em;
 
 
}
 
}
  
/* Increase the height of the image upload box */
+
.mw-body code {
#wpUploadDescription {
+
  padding: 0.2em 0.4em;
height: 13em;
+
  margin: 0;
 +
  font-size: 85%;
 +
  background-color: rgba(27,31,35,0.05);
 +
  border-radius: 3px;
 
}
 
}
  
/* Minimum thumb width */
+
.mw-body pre {
.thumbinner {
+
  word-wrap: normal;
min-width: 100px;
 
 
}
 
}
  
/* Prevent floating boxes from overlapping any category listings,
+
.mw-body pre>code {
  file histories, edit previews, and edit [Show changes] views. */
+
  padding: 0;
#mw-subcategories, #mw-pages, #mw-category-media,
+
  margin: 0;
#filehistory, #wikiPreview, #wikiDiff {
+
  font-size: 100%;
clear: both;
+
  word-break: normal;
 +
  white-space: pre;
 +
  background: transparent;
 +
  border: 0;
 
}
 
}
  
/* Selectively hide headers in WikiProject banners */
+
.mw-body .highlight {
.wpb .wpb-header            { display: none; }
+
  margin-bottom: 16px;
.wpbs-inner .wpb .wpb-header { display: block; }    /* for IE */
+
}
.wpbs-inner .wpb .wpb-header { display: table-row; } /* for real browsers */
 
.wpbs-inner .wpb-outside    { display: none; }     /* hide things that should only display outside shells */
 
  
/* Styling for Abuse Filter tags */
+
.mw-body .highlight pre {
.mw-tag-markers {
+
  margin-bottom: 0;
font-style:italic;
+
  word-break: normal;
font-size:90%;
 
 
}
 
}
  
/* Hide stuff meant for accounts with special permissions. Made visible again in
+
.mw-body .highlight pre,
  [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-patroller.css]],
+
.mw-body pre {
  [[MediaWiki:Group-templateeditor.css]], [[MediaWiki:Group-extendedmover.css]] and [[Mediawiki:Group-autoconfirmed.css]]. */
+
  padding: 16px;
.sysop-show,
+
  overflow: auto;
.templateeditor-show,
+
  font-size: 85%;
.extendedmover-show,
+
  line-height: 1.45;
.patroller-show,
+
  background-color: #f6f8fa;
.autoconfirmed-show,
+
  border-radius: 3px;
.user-show {
 
display: none;
 
 
}
 
}
  
/**
+
.mw-body pre code {
* Hide the redlink generated by {{Editnotice}},
+
  display: inline;
* this overrides the ".sysop-show { display: none; }" above that applies
+
  max-width: auto;
* to the same link as well. See [[phab:T45013]]
+
  padding: 0;
*
+
  margin: 0;
* Hide the images in editnotices to keep them readable in VE view.
+
  overflow: visible;
* Long term, editnotices should become a core feature so that they can be designed responsive.
+
  line-height: inherit;
*/
+
  word-wrap: normal;
.ve-ui-mwNoticesPopupTool-item .editnotice-redlink,
+
  background-color: transparent;
.ve-ui-mwNoticesPopupTool-item .mbox-image,
+
  border: 0;
.ve-ui-mwNoticesPopupTool-item .mbox-imageright {
 
display: none !important;
 
 
}
 
}
  
/* Remove bullets when there are multiple edit page warnings */
+
.mw-body .full-commit .btn-outline:not(:disabled):hover {
ul.permissions-errors > li {
+
  color: #005cc5;
list-style: none none;
+
  border-color: #005cc5;
 
}
 
}
ul.permissions-errors {
+
 
margin: 0;
+
.mw-body kbd {
 +
  display: inline-block;
 +
  padding: 3px 5px;
 +
  font: 11px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
 +
  line-height: 10px;
 +
  color: #444d56;
 +
  vertical-align: middle;
 +
  background-color: #fafbfc;
 +
  border: solid 1px #d1d5da;
 +
  border-bottom-color: #c6cbd1;
 +
  border-radius: 3px;
 +
  box-shadow: inset 0 -1px 0 #c6cbd1;
 
}
 
}
  
/* Pie chart: transparent borders */
+
.mw-body :checked+.radio-label {
.transborder {
+
  position: relative;
border: solid transparent;
+
  z-index: 1;
 +
  border-color: #0366d6;
 
}
 
}
  
/* Generic class for Times-based serif, texhtml class for inline math */
+
.mw-body .task-list-item {
.times-serif,
+
  list-style-type: none;
span.texhtml {
 
font-family: "Nimbus Roman No9 L", "Times New Roman", Times, serif;
 
font-size: 118%;
 
line-height: 1;
 
 
}
 
}
span.texhtml {
+
 
white-space: nowrap;
+
.mw-body .task-list-item+.task-list-item {
 +
  margin-top: 3px;
 
}
 
}
span.texhtml span.texhtml {
+
 
font-size: 100%;
+
.mw-body .task-list-item input {
 +
  margin: 0 0.2em 0.25em -1.6em;
 +
  vertical-align: middle;
 
}
 
}
span.mwe-math-mathml-inline {
+
 
font-size: 118%;
+
.mw-body hr {
 +
  border-bottom-color: #eee;
 
}
 
}
  
/* Force tabular and lining display for digits and texhtml */
+
#toc, .toc, .mw-warning, .toccolours {
.digits,
+
    border: 1px solid #a2a9b1;
.texhtml {
+
    background-color: #f8f9fa;
-moz-font-feature-settings: "lnum", "tnum", "kern" 0;
+
    padding: 5px;
-webkit-font-feature-settings: "lnum", "tnum", "kern" 0;
+
    font-size: 95%;
font-feature-settings: "lnum", "tnum", "kern" 0;
+
    width: 100%;
font-variant-numeric: lining-nums tabular-nums;
+
    margin-bottom: 2em;
font-kerning: none;
 
 
}
 
}
  
/* Make <math display="block"> be left aligned with one space indent for compatibility with style conventions */
+
#toc #toctitle, .toc #toctitle, #toc .toctitle, .toc .toctitle {
.mwe-math-fallback-image-display,
+
    text-align: center;
.mwe-math-mathml-display {
 
margin-left: 1.6em !important;
 
margin-top: 0.6em;
 
margin-bottom: 0.6em;
 
 
}
 
}
.mwe-math-mathml-display math {
+
 
display: inline;
+
.mw-body .external {
 +
    background-position: center right;
 +
    background-repeat: no-repeat;
 +
    background-image: url(/skins/Vector/images/external-link-ltr-icon.png?325de);
 +
    padding-right: 13px;
 
}
 
}
  
/* Fix styling of transcluded prefindex tables */
+
.search-types ul {
table#mw-prefixindex-list-table,
+
    list-style: none;
table#mw-prefixindex-nav-table {
+
    margin-top: 0;
width: 98%;
 
 
}
 
}
  
/* For portals, added 2011-12-07 -bv
+
.search-types ul li{
  On wide screens, show these as two columns
+
    margin-top: 0;
  On narrow and mobile screens, let them collapse into a single column */
 
.portal-column-left {
 
float: left;
 
width: 50%;
 
 
}
 
}
.portal-column-right {
+
 
float: right;
+
div.tright {
width: 49%;
+
    clear: both;
 +
    float: none;
 
}
 
}
.portal-column-left-wide {
+
 
float: left;
+
div.thumbinner {
width: 60%;
+
/*width: auto !important;*/
 +
width: auto;
 
}
 
}
.portal-column-right-narrow {
+
 
float: right;
+
div.embedvideo {
width: 39%;
+
width: 100% !important;
 
}
 
}
.portal-column-left-extra-wide {
+
 
float: left;
+
div.embedvideo iframe{
width: 70%;
+
width: 100% !important;
 
}
 
}
.portal-column-right-extra-narrow {
+
 
float: right;
+
.ve-ui-toolbar-floating > .oo-ui-toolbar-bar {
width: 29%;
+
    top: 51px;
 
}
 
}
@media only screen and (max-width: 800px) {
+
 
/* Decouple the columns on narrow screens */
+
.oo-ui-toolGroup {
.portal-column-left,
+
    height: 3.125em;
.portal-column-right,
 
.portal-column-left-wide,
 
.portal-column-right-narrow,
 
.portal-column-left-extra-wide,
 
.portal-column-right-extra-narrow {
 
float: inherit;
 
width: inherit;
 
}
 
 
}
 
}
  
/* Formerly for announcements, now used intermittently */
+
.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool > .oo-ui-tool-link {
#bodyContent .letterhead {
+
    height: 3.125em;
background-image:url('//upload.wikimedia.org/wikipedia/commons/e/e0/Tan-page-corner.png');
 
background-repeat:no-repeat;
 
padding: 2em;
 
background-color: #faf9f2;
 
 
}
 
}
  
/* Tree style lists */
+
.oo-ui-popupToolGroup-handle {
.treeview ul {
+
    height: 3.125em;
padding: 0;
 
margin: 0;
 
}
 
.treeview li {
 
padding: 0;
 
margin: 0;
 
list-style-type: none;
 
list-style-image: none;
 
}
 
.treeview li li {
 
background: url("//upload.wikimedia.org/wikipedia/commons/f/f2/Treeview-grey-line.png") no-repeat 0 -2981px;
 
/* @noflip */
 
padding-left: 20px;
 
text-indent: 0.3em;
 
}
 
.treeview li li.lastline {
 
background-position: 0 -5971px
 
}
 
.treeview li.emptyline > ul {
 
/* @noflip */
 
margin-left: -1px;
 
}
 
.treeview li.emptyline > ul > li:first-child {
 
background-position: 0 9px
 
 
}
 
}
  
/* hidden sortkey for tablesorter */
+
.fullImageLink img {
td .sortkey,
+
    display: block;
th .sortkey {
+
    max-width: 100%;
display: none;
+
    height: auto;
speak: none;
 
 
}
 
}
  
/* Make it possible to hide checkboxes in <inputbox> */
+
.navbar,
.inputbox-hidecheckboxes form .inputbox-element,
+
.nav > li,
.inputbox-hidecheckboxes .mw-ui-checkbox {
+
.nav > li > a {
display: none !important;
+
    position: static;
 
}
 
}
  
/* Work-around for [[Phabricator:25965]] (Kaltura advertisement) */
+
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
.k-player .k-attribution {
+
    position: static;
visibility: hidden;
 
 
}
 
}
  
/* Move 'play' button of video player to bottom left corner */
+
.wikiEditor-ui #msupload-dropzone {
.PopUpMediaTransform a .play-btn-large {
+
  height: 36px;
margin: 0;
 
top: auto;
 
right: auto;
 
bottom: 0;
 
left: 0;
 
 
}
 
}
  
/* Hide FlaggedRevs notice UI when there are no pending changes */
+
.thumbinner, .image img, .res-img img {
.flaggedrevs_draft_synced,
+
max-width: 100%;
.flaggedrevs_stable_synced {
+
height:auto;
display: none;
 
 
}
 
}
  
/* Gallery styles background changes are restricted to screen view. In printing we should avoid applying backgrounds. */
+
@media (min-width: 768px) {
@media screen {
+
    #toc, .toc, .mw-warning, .toccolours {
/* The backgrounds for galleries. */
+
        width: 50%;
#content .gallerybox div.thumb {
+
    }
/* Light gray padding */
 
background-color: #f8f9fa;
 
}
 
 
 
/* Put a chequered background behind images, only visible if they have transparency.
+
div.tright {
  '.filehistory a img' and '#file img:hover' are handled by MediaWiki core (as of 1.19) */
+
    clear: right;
.gallerybox .thumb img {
+
    float: right;
background: #fff url(//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png) repeat;
 
}
 
/* But not on articles, user pages, portals or with opt-out. */
 
.ns-0 .gallerybox .thumb img,
 
.ns-2 .gallerybox .thumb img,
 
.ns-100 .gallerybox .thumb img,
 
.nochecker .gallerybox .thumb img {
 
background: #fff;
 
 
}
 
}
 
 
/* T178626 */
+
div.thumbinner {
#contentSub:empty,
+
/*width: 100% !important;*/
#contentSub2:empty {
+
width: auto;
display: block !important;
 
 
}
 
}
 
 
#contentSub:empty ~ #jump-to-nav,
 
#contentSub2:empty ~ #jump-to-nav {
 
margin-top: -1.4em !important;
 
margin-bottom: 1.4em !important;
 
}
 
 
 
 
}
 
}

Latest revision as of 09:17, 21 May 2019

/* Unbulleted lists */
.mw-body .plainlinks ol,
.mw-body .plainlinks ul {
	line-height: inherit;
	list-style: none;
	margin: 0;
}
.mw-body .plainlinks ol li,
.mw-body .plainlinks ul li {
	margin-bottom: 0;
}

.infoboxnavbar.mini li {
    word-spacing: -0.125em;
    float: right;
    margin: 0px 2px;
}
.infoboxnavbar.mini li abbr[title] {
	font-variant: small-caps;
	border-bottom: none;
	text-decoration: none;
	cursor: inherit;
}

/* Infobox template style */
.infobox {
	border: 1px solid #a2a9b1;
	border-spacing: 3px;
	background-color: #f8f9fa;
	color: black;
	/* @noflip */
	margin: 0.5em 0 0.5em 1em;
	padding: 0.2em;
	/* @noflip */
	float: right;
	/* @noflip */
	clear: right;
	font-size: 88%;
	line-height: 1.5em;
}
.infobox caption {
	font-size: 125%;
	font-weight: bold;
	padding: 0.2em;
	text-align: center;
}
.infobox td,
.infobox th {
	vertical-align: top;
	/* @noflip */
	text-align: left;
        padding: 2px 5px;
}
.infobox.bordered {
	border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
	border: 1px solid #a2a9b1;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
	border: 0;
}

.infobox.sisterproject {
	width: 20em;
	font-size: 90%;
}

.infobox.standard-talk {
	border: 1px solid #c0c090;
	background-color: #f8eaba;
}
.infobox.standard-talk.bordered td,
.infobox.standard-talk.bordered th {
	border: 1px solid #c0c090;
}

/* styles for bordered infobox with merged rows */
.infobox.bordered .mergedtoprow td,
.infobox.bordered .mergedtoprow th {
	border: 0;
	border-top: 1px solid #a2a9b1;
	/* @noflip */
	border-right: 1px solid #a2a9b1;
}

.infobox.bordered .mergedrow td,
.infobox.bordered .mergedrow th {
	border: 0;
	/* @noflip */
	border-right: 1px solid #a2a9b1;
}

/* Styles for geography infoboxes, eg countries,
   country subdivisions, cities, etc.            */
.infobox.geography {
	border-collapse: collapse;
	line-height: 1.2em;
	font-size: 90%;
}

.infobox.geography  td,
.infobox.geography  th {
	border-top: 1px solid #a2a9b1;
	padding: 0.4em 0.6em 0.4em 0.6em;
}
.infobox.geography .mergedtoprow td,
.infobox.geography .mergedtoprow th {
	border-top: 1px solid #a2a9b1;
	padding: 0.4em 0.6em 0.2em 0.6em;
}

.infobox.geography .mergedrow td,
.infobox.geography .mergedrow th {
	border: 0;
	padding: 0 0.6em 0.2em 0.6em;
}

.infobox.geography .mergedbottomrow td,
.infobox.geography .mergedbottomrow th {
	border-top: 0;
	border-bottom: 1px solid #a2a9b1;
	padding: 0 0.6em 0.4em 0.6em;
}

.infobox.geography .maptable td,
.infobox.geography .maptable th {
	border: 0;
	padding: 0;
}

/* Bootstrap modification */
@font-face {
  font-family: octicons-link;
  src: url(data:font/woff;charset=utf-8;base64,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) format('woff');
}

.mw-body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  color: #24292e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
}

.mw-body .pl-c {
  color: #6a737d;
}

.mw-body .pl-c1,
.mw-body .pl-s .pl-v {
  color: #005cc5;
}

.mw-body .pl-e,
.mw-body .pl-en {
  color: #6f42c1;
}

.mw-body .pl-smi,
.mw-body .pl-s .pl-s1 {
  color: #24292e;
}

.mw-body .pl-ent {
  color: #22863a;
}

.mw-body .pl-k {
  color: #d73a49;
}

.mw-body .pl-s,
.mw-body .pl-pds,
.mw-body .pl-s .pl-pse .pl-s1,
.mw-body .pl-sr,
.mw-body .pl-sr .pl-cce,
.mw-body .pl-sr .pl-sre,
.mw-body .pl-sr .pl-sra {
  color: #032f62;
}

.mw-body .pl-v,
.mw-body .pl-smw {
  color: #e36209;
}

.mw-body .pl-bu {
  color: #b31d28;
}

.mw-body .pl-ii {
  color: #fafbfc;
  background-color: #b31d28;
}

.mw-body .pl-c2 {
  color: #fafbfc;
  background-color: #d73a49;
}

.mw-body .pl-c2::before {
  content: "^M";
}

.mw-body .pl-sr .pl-cce {
  font-weight: bold;
  color: #22863a;
}

.mw-body .pl-ml {
  color: #735c0f;
}

.mw-body .pl-mh,
.mw-body .pl-mh .pl-en,
.mw-body .pl-ms {
  font-weight: bold;
  color: #005cc5;
}

.mw-body .pl-mi {
  font-style: italic;
  color: #24292e;
}

.mw-body .pl-mb {
  font-weight: bold;
  color: #24292e;
}

.mw-body .pl-md {
  color: #b31d28;
  background-color: #ffeef0;
}

.mw-body .pl-mi1 {
  color: #22863a;
  background-color: #f0fff4;
}

.mw-body .pl-mc {
  color: #e36209;
  background-color: #ffebda;
}

.mw-body .pl-mi2 {
  color: #f6f8fa;
  background-color: #005cc5;
}

.mw-body .pl-mdr {
  font-weight: bold;
  color: #6f42c1;
}

.mw-body .pl-ba {
  color: #586069;
}

.mw-body .pl-sg {
  color: #959da5;
}

.mw-body .pl-corl {
  text-decoration: underline;
  color: #032f62;
}

.mw-body .octicon {
  display: inline-block;
  vertical-align: text-top;
  fill: currentColor;
}

.mw-body a {
  background-color: transparent;
}

.mw-body a:active,
.mw-body a:hover {
  outline-width: 0;
}

.mw-body strong {
  font-weight: inherit;
}

.mw-body strong {
  font-weight: bolder;
}

.mw-body h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

.mw-body img {
  border-style: none;
}

.mw-body code,
.mw-body kbd,
.mw-body pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

.mw-body hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

.mw-body input {
  font: inherit;
  margin: 0;
}

.mw-body input {
  overflow: visible;
}

.mw-body [type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

/*
.mw-body * {
  box-sizing: border-box;
}
*/
.mw-body input {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.mw-body a {
  /*color: #0645ad;*/
  color: #005ea5;
  text-decoration: underline dotted;
}

.mw-body a:visited {
  /* color: #0b0080; */
  color: #4c2c92;
}

.mw-body a:hover {
  /* text-decoration: underline; */
  color: #2b8cc4;
}

.mw-body a:focus {
  color: #0b0c0c;
}

.mw-body a.new {
  color: #ba0000;
}

.mw-body strong {
  font-weight: 500;
}

.mw-body hr {
  height: 0;
  margin: 15px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dfe2e5;
}

.mw-body hr::before {
  display: table;
  content: "";
}

.mw-body hr::after {
  display: table;
  clear: both;
  content: "";
}

.mw-body table {
  border-spacing: 0;
  border-collapse: collapse;
}

.mw-body td,
.mw-body th {
  padding: 0;
}

.mw-body h1,
.mw-body h2,
.mw-body h3,
.mw-body h4,
.mw-body h5,
.mw-body h6 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.25;
}

.mw-body h1 {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 1px;
}

.mw-body h2 {
  font-size: 24px;
  font-weight: 500;
}

.mw-body h3 {
  font-size: 20px;
  font-weight: 500;
}

.mw-body h4 {
  font-size: 16px;
  font-weight: 500;
}

.mw-body h5 {
  font-size: 14px;
  font-weight: 500;
}

.mw-body h6 {
  font-size: 12px;
  font-weight: 500;
}

.mw-body span.mw-editsection{
	letter-spacing: 0px;
}

.mw-body p {
  margin-top: 0;
  margin-bottom: 10px;
}

.mw-body blockquote {
  margin: 0;
}

.mw-body ul,
.mw-body ol {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.mw-body ol ol,
.mw-body ul ol {
  list-style-type: lower-roman;
}

.mw-body ul ul ol,
.mw-body ul ol ol,
.mw-body ol ul ol,
.mw-body ol ol ol {
  list-style-type: lower-alpha;
}

.mw-body dd {
  margin-left: 0;
}

.mw-body code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
}

.mw-body pre {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
}

.mw-body .octicon {
  vertical-align: text-bottom;
}

.mw-body .pl-0 {
  padding-left: 0 !important;
}

.mw-body .pl-1 {
  padding-left: 4px !important;
}

.mw-body .pl-2 {
  padding-left: 8px !important;
}

.mw-body .pl-3 {
  padding-left: 16px !important;
}

.mw-body .pl-4 {
  padding-left: 24px !important;
}

.mw-body .pl-5 {
  padding-left: 32px !important;
}

.mw-body .pl-6 {
  padding-left: 40px !important;
}

.mw-body::before {
  display: table;
  content: "";
}

.mw-body::after {
  display: table;
  clear: both;
  content: "";
}

.mw-body>*:first-child {
  margin-top: 0 !important;
}

.mw-body>*:last-child {
  margin-bottom: 0 !important;
}

.mw-body a:not([href]) {
  color: inherit;
  text-decoration: none;
}

.mw-body .anchor {
  float: left;
  padding-right: 4px;
  margin-left: -20px;
  line-height: 1;
}

.mw-body .anchor:focus {
  outline: none;
}

.mw-body p,
.mw-body blockquote,
.mw-body ul,
.mw-body ol,
.mw-body dl,
.mw-body table,
.mw-body pre {
  margin-top: 0;
  margin-bottom: 16px;
}

.mw-body hr {
  height: 0.25em;
  padding: 0;
  margin: 24px 0;
  background-color: #e1e4e8;
  border: 0;
}

.mw-body blockquote {
  padding: 0 1em;
  color: #6a737d;
  border-left: 0.25em solid #dfe2e5;
}

.mw-body blockquote>:first-child {
  margin-top: 0;
}

.mw-body blockquote>:last-child {
  margin-bottom: 0;
}

.mw-body kbd {
  display: inline-block;
  padding: 3px 5px;
  font-size: 11px;
  line-height: 10px;
  color: #444d56;
  vertical-align: middle;
  background-color: #fafbfc;
  border: solid 1px #c6cbd1;
  border-bottom-color: #959da5;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #959da5;
}

.mw-body h1 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.mw-body h2,
.mw-body h3,
.mw-body h4,
.mw-body h5,
.mw-body h6 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.mw-body h1 .octicon-link,
.mw-body h2 .octicon-link,
.mw-body h3 .octicon-link,
.mw-body h4 .octicon-link,
.mw-body h5 .octicon-link,
.mw-body h6 .octicon-link {
  color: #1b1f23;
  vertical-align: middle;
  visibility: hidden;
}

.mw-body h1:hover .anchor,
.mw-body h2:hover .anchor,
.mw-body h3:hover .anchor,
.mw-body h4:hover .anchor,
.mw-body h5:hover .anchor,
.mw-body h6:hover .anchor {
  text-decoration: none;
}

.mw-body h1:hover .anchor .octicon-link,
.mw-body h2:hover .anchor .octicon-link,
.mw-body h3:hover .anchor .octicon-link,
.mw-body h4:hover .anchor .octicon-link,
.mw-body h5:hover .anchor .octicon-link,
.mw-body h6:hover .anchor .octicon-link {
  visibility: visible;
}

.mw-body h1 {
  padding-bottom: 0.3em;
  font-size: 2.5em;
  border-bottom: 0px solid #eaecef;
}

.mw-body h2 {
  padding-bottom: 0.3em;
  font-size: 1.5em;
  border-bottom: 1px solid #eaecef;
}

.mw-body h3 {
  font-size: 1.25em;
}

.mw-body h4 {
  font-size: 1em;
}

.mw-body h5 {
  font-size: 0.875em;
}

.mw-body h6 {
  font-size: 0.85em;
  color: #6a737d;
}

.mw-body ul {
  padding-left: 0;
  list-style: disc;
  margin-left: 1.5em;
}

.mw-body ol {
  padding-left: 0;
  list-style: decimal;
  margin-left: 1.5em;
}

.mw-body ul ul,
.mw-body ul ol,
.mw-body ol ol,
.mw-body ol ul {
  margin-top: 0;
  margin-bottom: 0;
}

.mw-body li {
  word-wrap: break-all;
}

.mw-body li>p {
  margin-top: 16px;
}

.mw-body li+li {
  margin-top: 0.25em;
}

.mw-body dl {
  padding: 0;
}

.mw-body dl dt {
  padding: 0;
  margin-top: 16px;
  font-size: 1em;
  font-style: italic;
  font-weight: 500;
}

.mw-body dl dd {
  padding: 0 16px;
  margin-bottom: 16px;
}

.mw-body table {
  display: block;
  width: 100%;
  overflow: auto;
}

.mw-body table th {
  font-weight: 600;
}

.mw-body table th,
.mw-body table td {
  padding: 6px 13px;
  border: 1px solid #dfe2e5;
}

.mw-body table tr {
  background-color: #fff;
  border-top: 1px solid #c6cbd1;
}

.mw-body table tr:nth-child(2n) {
  background-color: #f6f8fa;
}

.mw-body img {
  max-width: 100%;
  box-sizing: content-box;
  background-color: #fff;
}

.mw-body img[align=right] {
  padding-left: 20px;
}

.mw-body img[align=left] {
  padding-right: 20px;
}

.mw-body code {
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  background-color: rgba(27,31,35,0.05);
  border-radius: 3px;
}

.mw-body pre {
  word-wrap: normal;
}

.mw-body pre>code {
  padding: 0;
  margin: 0;
  font-size: 100%;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}

.mw-body .highlight {
  margin-bottom: 16px;
}

.mw-body .highlight pre {
  margin-bottom: 0;
  word-break: normal;
}

.mw-body .highlight pre,
.mw-body pre {
  padding: 16px;
  overflow: auto;
  font-size: 85%;
  line-height: 1.45;
  background-color: #f6f8fa;
  border-radius: 3px;
}

.mw-body pre code {
  display: inline;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}

.mw-body .full-commit .btn-outline:not(:disabled):hover {
  color: #005cc5;
  border-color: #005cc5;
}

.mw-body kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  line-height: 10px;
  color: #444d56;
  vertical-align: middle;
  background-color: #fafbfc;
  border: solid 1px #d1d5da;
  border-bottom-color: #c6cbd1;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #c6cbd1;
}

.mw-body :checked+.radio-label {
  position: relative;
  z-index: 1;
  border-color: #0366d6;
}

.mw-body .task-list-item {
  list-style-type: none;
}

.mw-body .task-list-item+.task-list-item {
  margin-top: 3px;
}

.mw-body .task-list-item input {
  margin: 0 0.2em 0.25em -1.6em;
  vertical-align: middle;
}

.mw-body hr {
  border-bottom-color: #eee;
}

#toc, .toc, .mw-warning, .toccolours {
    border: 1px solid #a2a9b1;
    background-color: #f8f9fa;
    padding: 5px;
    font-size: 95%;
    width: 100%;
    margin-bottom: 2em;
}

#toc #toctitle, .toc #toctitle, #toc .toctitle, .toc .toctitle {
    text-align: center;
}

.mw-body .external {
    background-position: center right;
    background-repeat: no-repeat;
    background-image: url(/skins/Vector/images/external-link-ltr-icon.png?325de);
    padding-right: 13px;
}

.search-types ul {
    list-style: none;
    margin-top: 0;
}

.search-types ul li{
    margin-top: 0;
}

div.tright {
    clear: both;
    float: none;
}

div.thumbinner {
	/*width: auto !important;*/
	width: auto;
}

div.embedvideo {
	width: 100% !important;
}

div.embedvideo iframe{
	width: 100% !important;
}

.ve-ui-toolbar-floating > .oo-ui-toolbar-bar {
    top: 51px;
}

.oo-ui-toolGroup {
    height: 3.125em;
}

.oo-ui-barToolGroup > .oo-ui-toolGroup-tools > .oo-ui-tool > .oo-ui-tool-link {
    height: 3.125em;
}

.oo-ui-popupToolGroup-handle {
    height: 3.125em;	
}

.fullImageLink img {
    display: block;
    max-width: 100%;
    height: auto;
}

.navbar,
.nav > li,
.nav > li > a {
    position: static;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: static;
}

.wikiEditor-ui #msupload-dropzone {
   height: 36px;
}

.thumbinner, .image img, .res-img img {
	max-width: 100%;
	height:auto;
}

@media (min-width: 768px) {
    #toc, .toc, .mw-warning, .toccolours {
        width: 50%;
    }
	
	div.tright {
    	clear: right;
    	float: right;
	}
	
	div.thumbinner {
		/*width: 100% !important;*/
		width: auto;
	}
	
}