Difference between revisions of "MediaWiki:Common.css"

From Slicer Wiki
Jump to: navigation, search
Line 1: Line 1:
/**
+
/* Main page fixes */
* Minit - A minimalistic MediaWiki skin
+
body.page-Main_Page h1.firstHeading {
*
+
  display:none;
* @ingroup Skins
+
}
* @package MediaWiki
+
#interwiki-completelist {
* @download https://github.com/seongjaelee/Minit
+
    font-weight: bold;
  */
+
}
 +
body.page-Main_Page #ca-delete {
 +
    display: none !important;
 +
}
 +
   
 +
body.page-Main_Page #mp-topbanner {
 +
  clear: both;
 +
}
  
/**
+
/* Append a bottom-margin to the BrettCrumb  */
  * Modified from the following sites:
+
div#bodyContent small:first-of-type {
  * http://meyerweb.com/eric/tools/css/reset/  
+
  margin-bottom:20px;
  * v2.0 | 20110126
+
  display: inline;
  * License: none (public domain)
+
}
  */
+
   
html, body, div, span, applet, object, iframe,
+
/* Edit window toolbar */
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+
#toolbar {
a, abbr, acronym, address, big, cite, code,
+
    height: 22px;
del, dfn, em, img, ins, kbd, q, s, samp,
+
    margin-bottom: 6px;
small, strike, strong, tt, var,
+
}
u, center,
+
   
dl, dt, dd, ol, ul, li,
+
/* Margins for <ol> and <ul> */
fieldset, form, label, legend,
+
div#content ol, div#content ul,
table, caption, tbody, tfoot, thead, tr, th, td,
+
div#mw_content ol, div#mw_content ul {
article, aside, canvas, details, embed,
+
    margin-bottom: 0.5em;
figure, figcaption, footer, header, hgroup,
+
}
menu, nav, output, ruby, section, summary,
+
time, mark, audio, video {
+
/* Make the list of references smaller */
margin: 0;
+
ol.references,
padding: 0;
+
div.reflist,
border: 0;
+
div.refbegin {
font-size: 100%;
+
    font-size: 90%;            /* Default font-size */
font: inherit;
+
}
vertical-align: baseline;
+
div.reflist ol.references {
 +
    font-size: 100%;          /* Reset font-size when nested in div.reflist */
 +
    list-style-type: inherit;  /* Enable custom list style types */
 +
}
 +
   
 +
/* Highlight clicked reference in blue to help navigation */
 +
ol.references li:target,
 +
sup.reference:target,
 +
span.citation:target {
 +
    background-color: #DEF;
 +
}
 +
   
 +
/* 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;
 +
}
 +
 +
/* Styling for citations (CSS3). Breaks long urls, etc., rather than overflowing box */
 +
.citation {
 +
    word-wrap: break-word;
 +
}
 +
 +
/* Default styling for titles of works, styling for the title of an article
 +
  within a periodical, or a contribution within a compilation. */
 +
cite,
 +
.citation cite.article,
 +
.citation cite.contribution {
 +
    font-style: inherit;
 +
}
 +
 +
/* Styling for the title of any work within a citation,
 +
  or specifically the title of a periodical. */
 +
.citation cite,
 +
.citation cite.periodical {
 +
    font-style: italic;
 +
}
 +
 +
/* 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;
 +
    }
 +
}
 +
 +
/* Default skin for navigation boxes */
 +
table.navbox {            /* Navbox container style */
 +
    border: 1px solid #aaa;
 +
    width: 100%;
 +
    margin: auto;
 +
    clear: both;
 +
    font-size: 88%;
 +
    text-align: center;
 +
    padding: 1px;
 +
}
 +
table.navbox + table.navbox {  /* Single pixel border between adjacent navboxes */
 +
    margin-top: -1px;          /* (doesn't work for IE6, but that's okay)      */
 +
}
 +
.navbox-title,
 +
.navbox-abovebelow,
 +
table.navbox th {
 +
    text-align: center;      /* Title and above/below styles */
 +
    padding-left: 1em;
 +
    padding-right: 1em;
 +
}
 +
.navbox-group {             /* Group style */
 +
    white-space: nowrap;
 +
    /* @noflip */text-align: right;
 +
    font-weight: bold;
 +
    padding-left: 1em;
 +
    padding-right: 1em;
 +
}
 +
.navbox, .navbox-subgroup {
 +
    background: #fdfdfd;     /* Background color */
 +
}
 +
.navbox-list {
 +
    border-color: #fdfdfd;   /* Must match background color */
 +
}
 +
.navbox-title,
 +
table.navbox th {
 +
    background: #ccccff;     /* Level 1 color */
 
}
 
}
/* HTML5 display-role reset for older browsers */
+
.navbox-abovebelow,
article, aside, details, figcaption, figure,  
+
.navbox-group,
footer, header, hgroup, menu, nav, section {
+
.navbox-subgroup .navbox-title {
display: block;
+
    background: #ddddff;     /* Level 2 color */
 
}
 
}
ol, ul {
+
.navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow {
list-style: none;
+
    background: #e6e6ff;     /* Level 3 color */
 
}
 
}
blockquote, q {
+
.navbox-even {
quotes: none;
+
    background: #f7f7f7;     /* Even row striping */
 
}
 
}
blockquote:before, blockquote:after,
+
.navbox-odd {
q:before, q:after {
+
    background: transparent; /* Odd row striping */
content: '';
 
content: none;
 
 
}
 
}
table {
+
border-collapse: collapse;
+
.collapseButton {         /* 'show'/'hide' buttons created dynamically */
border-spacing: 0;
+
    /* @noflip */float: right;          /* by the CollapsibleTables javascript in    */
 +
    font-weight: normal;   /* [[MediaWiki:Common.js]] are styled here  */
 +
    /* @noflip */text-align: right;    /* so they can be customised.                */
 +
    width: auto;
 
}
 
}
/* End */
+
.navbox .collapseButton {  /* In navboxes, the show/hide button balances */
 
+
    width: 6em;            /* the vde links from [[Template:Navbar]],    */
/**
+
}                          /* so they need to be the same width.        */
* Modified from the following sites:
+
   
  * http://www.blueprintcss.org/
+
.navbar {                  /* Navbox template links */
* typography.css, form.css
+
    font-size: 88%;        /* Default font-size */
  * v1.0.1 | 20110514
+
    font-weight: normal;
* License: none (public domain)
+
}
*/
+
.navbox .navbar {
body, textarea {
+
    font-size: 100%;      /* Font-size when nested within navbox */
  font-size: 13px;
+
}
  line-height: 20px;
+
   
  color: #000;
+
/* Infobox template style */
  background: #FFF;
+
.infobox {
  /*font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
+
    border: 1px solid #aaa;
  */
+
    background-color: #f9f9f9;
  font-family: sans-serif;
+
    color: black;
  direction: ltr;
+
    margin: 0.5em 0 0.5em 1em;
  unicode-bidi: embed;
+
    padding: 0.2em;
 +
    /* @noflip */float: right;
 +
    /* @noflip */clear: right;
 +
    text-align: left;
 +
    font-size: 88%;
 +
    line-height: 1.5em;
 +
}
 +
.infobox caption {
 +
    font-size: 125%;
 +
    font-weight: bold;
 
}
 
}
 
+
.infobox td,
/* Headings */
+
.infobox th {
h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
+
    vertical-align: top;
 
 
h1 { font-size: 38px; line-height: 40px; margin-bottom: 20px; } /* 60px */
 
h2 { font-size: 26px; line-height: 40px; margin-bottom: 20px; } /* 60px */
 
h3 { font-size: 20px; line-height: 20px; margin-bottom: 20px; } /* 40px */
 
h4 { font-size: 16px; line-height: 20px; margin-bottom: 20px; } /* 40px */
 
h5 { font-size: 13px; line-height: 20px; font-weight: bold; margin-bottom: 20px; } /* 40px */
 
h6 { font-size: 13px; line-height: 20px; font-weight: bold; } /* 20px */
 
 
 
h1 img, h2 img, h3 img,
 
h4 img, h5 img, h6 img {
 
  margin: 0;
 
 
}
 
}
 
+
.infobox.bordered {
/* Text elements */
+
     border-collapse: collapse;
p          { margin: 0 0 20px; }
 
/*
 
These can be used to pull an image at the start of a paragraph, so
 
that the text flows around it (usage: <p><img class="left">Text</p>)
 
*/
 
.left  { float: left !important; }
 
p .left { margin: 20px 20px 20px 0; padding: 0; }
 
.right { float: right !important; }
 
p .right { margin: 20px 20px 20px; padding: 0; }
 
 
 
blockquote  { margin: 20px; color: #666; font-style: italic; }
 
strong,dfn { font-weight: bold; }
 
em,dfn      { font-style: italic; }
 
sup, sub    { line-height: 0; }
 
 
 
abbr,
 
acronym     { border-bottom: 1px dotted #666; }
 
address    { margin: 0 0 20px; font-style: italic; }
 
del        { color:#666; }
 
 
 
pre        { margin: 20px 0; white-space: pre-wrap; }
 
pre,code,tt { font: 11px 'andale mono', 'lucida console', monospace; line-height: 20px; }
 
 
 
/* Lists */
 
li ul,
 
li ol      { margin: 0; }
 
ul, ol      { margin: 0 20px 20px 0; padding-left: 20px; }
 
 
 
ul          { list-style-type: disc; }
 
ol          { list-style-type: decimal; }
 
 
 
dl          { margin: 0 0 20px 0; }
 
dl dt      { font-weight: bold; }
 
dd          { margin-left: 20px;}
 
 
 
/* Tables */
 
/*
 
Because of the need for padding on TH and TD, the vertical rhythm
 
on table cells has to be 27px, instead of the standard 18px or 36px
 
of other elements.
 
*/
 
table      { margin-bottom: 20px; width:100%; }
 
th          { font-weight: bold; }
 
thead th    { background: #c3d9ff; }
 
th,td      { padding: 0px 10px 0px 5px; border: 0;}
 
caption    { }
 
/*
 
You can zebra-stripe your tables in outdated browsers by adding
 
the class "even" to every other table row.
 
*/
 
tbody tr:nth-child(even) td,
 
tbody tr.even td  {
 
background: #e5ecf9;  
 
 
}
 
}
tfoot      { font-style: italic; }
+
.infobox.bordered td,
caption    { background: #eee; }
+
.infobox.bordered th {
 
+
    border: 1px solid #aaa;
/* Misc classes */
 
label      { font-weight: bold; }
 
fieldset    { line-height: 20px; padding:19px 1.4em 20px 1.4em; margin: 0 0 20px 0; border: 1px solid #ccc; }
 
legend      { }
 
 
 
input:not([type]),
 
input[type=text], input[type=password],
 
input.text, input.title,
 
textarea {
 
  border:1px solid #bbb;
 
 
}
 
}
input[type=text]:focus, input[type=password]:focus,
+
.infobox.bordered .borderless td,
input.text:focus, input.title:focus,
+
.infobox.bordered .borderless th {
textarea:focus {
+
    border: 0;
  border-color:#666;
 
 
}
 
}
select { background-color:#fff; border-width:1px; border-style:solid; }
+
 
+
.infobox.sisterproject {
input:not([type]),
+
    width: 20em;
input[type=text], input[type=password], input[type=submit],
+
    font-size: 90%;
input.text, input.title,
 
textarea, select {
 
  margin:0px 0 0px;
 
 
}
 
}
 
+
input.text,
+
.infobox.standard-talk {
input.title  { width: 300px; padding:5px; }
+
     border: 1px solid #c0c090;
input.title  { font-size:1.5em; }
+
    background-color: #f8eaba;
textarea      { width: 100%; padding:5px; }
 
.visualClear  { clear: both; }
 
/* End */
 
 
 
/* Minit Typography */
 
a:focus,
 
a:hover     { text-decoration: underline; }
 
a:visited  { color: #21759b; }
 
a:active    { color: #faa700; }
 
a          { color: #21759b; text-decoration: none; }
 
img        { vertical-align: middle; }
 
hr          { height: 1px; color: #ddd; background-color: #ddd; border: 0; margin: 0 0 19px; }
 
fieldset.nested { margin: 0 0 0.5em 0; padding: 0 0.5em 0.5em; }
 
select      { vertical-align: top; }
 
/* End Minit Typography */
 
 
 
/* Minit Layout */
 
body {
 
background-color: #333;
 
 
}
 
}
 
+
.infobox.standard-talk.bordered td,
#globalWrapper {
+
.infobox.standard-talk.bordered th {
border-top: 0.75em solid #666;
+
    border: 1px solid #c0c090;
margin: 1.5em auto 0;
 
padding: 20px 0 0;
 
width: 70em;
 
background-color: white;
 
/*background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAUCAYAAAC07qxWAAAAIklEQVQoU2P8DwQMRADGUYX4Qmk0ePCmoSERPO3nXhOVFQBJsk8I3KucbwAAAABJRU5ErkJggg==);
 
background-repeat: repeat;
 
*/
 
-webkit-box-shadow: inset rgba(0, 0, 0, 0.5) 0 3px 8px;
 
 
}
 
}
 
+
#firstHeading {
+
/* styles for bordered infobox with merged rows */
padding: 10px 22em 9px 3em;
+
.infobox.bordered .mergedtoprow td,
border-bottom: 1px solid #D0D0D0;
+
.infobox.bordered .mergedtoprow th {
 +
    border: 0;
 +
    border-top: 1px solid #aaa;
 +
    border-right: 1px solid #aaa;
 
}
 
}
 
+
#columnContent {
+
.infobox.bordered .mergedrow td,
float: left;
+
.infobox.bordered .mergedrow th {
width: 45em;
+
    border: 0;
margin: 0 3em;
+
    border-right: 1px solid #aaa;
 
}
 
}
 
+
#contentSub, #contentSub2 {
+
/* Styles for geography infoboxes, eg countries,
width: auto;
+
  country subdivisions, cities, etc.            */
margin: 0 3em 20px;
+
.infobox.geography {
 +
    /* @noflip */text-align: left;
 +
    border-collapse: collapse;
 +
    line-height: 1.2em;  
 +
    font-size: 90%;
 
}
 
}
 
+
#content {
+
.infobox.geography  td,
 +
.infobox.geography  th {
 +
    border-top: 1px solid #aaa;
 +
    padding: 0.4em 0.6em 0.4em 0.6em;
 
}
 
}
 
+
.infobox.geography .mergedtoprow td,
#columnOne {
+
.infobox.geography .mergedtoprow th {
float: left;
+
    border-top: 1px solid #aaa;
width: 16em;
+
    padding: 0.4em 0.6em 0.2em 0.6em;
margin: 0 3em 0 0;
 
 
}
 
}
 
+
#footer {
+
.infobox.geography .mergedrow td,
border-top: 1px solid #D0D0D0;
+
.infobox.geography .mergedrow th {
margin: 20px 0 0;
+
    border: 0;
padding: 19px 3em 20px;
+
    padding: 0 0.6em 0.2em 0.6em;
 
}
 
}
 
+
#footer ul { margin: 0; padding: 0; }
+
.infobox.geography .mergedbottomrow td,
#footer ul li { display: inline; padding: 0 1em; border-left: 1px solid #D0D0D0; }
+
.infobox.geography .mergedbottomrow th {
#footer ul li:first-child { padding: 0 1em 0 0; border: none; }
+
    border-top: 0;
 
+
    border-bottom: 1px solid #aaa;
#toc { padding: 0; margin: 0; border: 0; }
+
    padding: 0 0.6em 0.4em 0.6em;
#toc td { padding: 0; border: 0; }
 
#toc ul { margin: 0 1.5em 20px 0; padding-left: 1.5em; }
 
#toc ul ul { margin: 0 !important; }
 
#toc h2 { display: inline-block; }
 
#toc .toctoggle { display: inline; }
 
 
 
.editsection { font-size: 12px; font-weight: normal; }
 
 
 
/* override */
 
#pagehistory li { border: 0; }
 
#pagehistory li.selected { border: 0; }
 
#editform #editpage-copywarn { display: none; }
 
 
 
.mw-specialpages-table { margin: 0; }
 
.mw-content-ltr ol,
 
.mw-content-ltr ul { margin: 0 0 20px 1.5em; }
 
.mw-content-ltr li ol,
 
.mw-content-ltr li ul { margin-bottom: 0; }
 
 
 
ul#filetoc { padding: 4px; margin-bottom: 10px; font-size: 100%; }
 
#catlinks, .catlinks { margin-top: 24px; margin-bottom: 24px; }
 
 
 
/* search bar */
 
#p-search { position: absolute; top: 74px;}
 
#p-search h2 { display: none; }
 
#searchBody input[type="search"] { width: 110px; }
 
#searchBody input[type="submit"] { margin-left: 0; margin-right: 0; }
 
 
 
/* End Minit Layout */
 
 
 
/**
 
* Modified css from the following:
 
*
 
* MediaWiki 'monobook' style sheet for CSS2-capable browsers.
 
* Copyright Gabriel Wicke - http://wikidev.net/
 
* License: GPL (http://www.gnu.org/copyleft/gpl.html)
 
*/
 
a.stub {
 
color: #772233;
 
 
}
 
}
a.new {
+
color: red;
+
.infobox.geography .maptable td,
 +
.infobox.geography .maptable th {
 +
    border: 0;
 +
    padding: 0;
 
}
 
}
a.new:visited {
+
color: red;
+
/* Normal font styling for table row headers with scope="row" tag */
 +
.wikitable.plainrowheaders th[scope=row] {
 +
    font-weight: normal;
 +
    /* @noflip */text-align: left;
 
}
 
}
 
+
input.historysubmit {
+
/* lists in data cells are always left-aligned */
padding: 0 .3em .3em .3em !important;
+
.wikitable td ul,
font-size: 94%;
+
.wikitable td ol,
cursor: pointer;
+
.wikitable td dl {
height: 1.7em !important;
+
    /* @noflip */text-align: left;
margin-left: 1.6em;
 
 
}
 
}
 
+
/*
+
/* Icons for medialist templates [[Template:Listen]],
** the main content area
+
  [[Template:Multi-listen_start]], [[Template:Video]],
 +
  [[Template:Multi-video_start]]
 
*/
 
*/
 
+
div.listenlist {
#siteSub {
+
    background: url("//upload.wikimedia.org/wikipedia/commons/3/3f/Gnome_speakernotes_30px.png");
display: none;
+
    /* @noflip */padding-left: 40px;
 +
}
 +
 +
/* Style rules for media list templates */
 +
div.medialist {
 +
    min-height: 50px;
 +
    margin: 1em;
 +
    /* @noflip */background-position: top left;
 +
    background-repeat: no-repeat;
 +
}
 +
div.medialist ul {
 +
    list-style-type: none;
 +
    list-style-image: none;
 +
    margin: 0;
 +
}
 +
div.medialist ul li {
 +
    padding-bottom: 0.5em;
 +
}
 +
div.medialist ul li li {
 +
    font-size: 91%;
 +
    padding-bottom: 0;
 +
}
 +
 +
/* Change the external link icon to an Adobe icon for all PDF files
 +
  in browsers that support these CSS selectors, like Mozilla and Opera */
 +
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#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;
 +
}
 +
 +
/* Change the external link icon to an Adobe icon anywhere the PDFlink class
 +
  is used (notably Template:PDFlink). This works in IE, unlike the above. */
 +
div#content span.PDFlink a,
 +
div#mw_content span.PDFlink a {
 +
    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]] */
 +
div.columns-2 div.column {
 +
    /* @noflip */float: left;
 +
    width: 50%;
 +
    min-width: 300px;
 +
}
 +
div.columns-3 div.column {
 +
    /* @noflip */float: left;
 +
    width: 33.3%;
 +
    min-width: 200px;
 +
}
 +
div.columns-4 div.column {
 +
    /* @noflip */float: left;
 +
    width: 25%;
 +
    min-width: 150px;
 +
}
 +
div.columns-5 div.column {
 +
    /* @noflip */float: left;
 +
    width: 20%;
 +
    min-width: 120px;
 +
}
 +
 +
/* Messagebox templates */
 +
.messagebox {
 +
    border: 1px solid #aaa;
 +
    background-color: #f9f9f9;
 +
    width: 80%;
 +
    margin: 0 auto 1em auto;
 +
    padding: .2em;
 +
}
 +
.messagebox.merge {
 +
    border: 1px solid #c0b8cc;
 +
    background-color: #f0e5ff;
 +
    text-align: center;
 +
}
 +
.messagebox.cleanup {
 +
    border: 1px solid #9f9fff;
 +
    background-color: #efefff;
 +
    text-align: center;
 +
}
 +
.messagebox.standard-talk {
 +
    border: 1px solid #c0c090;
 +
    background-color: #f8eaba;
 +
    margin: 4px auto;
 +
}
 +
/* For old WikiProject banners inside banner shells. */
 +
.mbox-inside .standard-talk,
 +
.messagebox.nested-talk {
 +
    border: 1px solid #c0c090;
 +
    background-color: #f8eaba;
 +
    width: 100%;
 +
    margin: 2px 0;
 +
    padding: 2px;
 +
}
 +
.messagebox.small {
 +
    width: 238px;
 +
    font-size: 85%;
 +
    /* @noflip */float: right;
 +
    clear: both;
 +
    /* @noflip */margin: 0 0 1em 1em;
 +
    line-height: 1.25em;
 +
}
 +
.messagebox.small-talk {
 +
    width: 238px;
 +
    font-size: 85%;
 +
    /* @noflip */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 */
 +
th.mbox-text, td.mbox-text {  /* The message body cell(s) */
 +
    border: none;
 +
    /* @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;  
 +
    /* @noflip */padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
 +
    text-align: center;
 +
}
 +
td.mbox-imageright {          /* The right image cell */
 +
    border: none;
 +
    /* @noflip */padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */
 +
    text-align: center;
 +
}
 +
td.mbox-empty-cell {          /* An empty narrow cell */
 +
    border: none;
 +
    padding: 0px;
 +
    width: 1px;
 +
}
 +
 +
/* Article message box styles */
 +
table.ambox {
 +
    margin: 0 10%;                  /* 10% = Will not overlap with other elements */
 +
    border: 1px solid #aaa;
 +
    /* @noflip */border-left: 10px solid #1e90ff;  /* Default "notice" blue */
 +
    background: #fbfbfb;
 +
}
 +
table.ambox + table.ambox {      /* Single border between stacked boxes. */
 +
    margin-top: -1px;
 +
}
 +
.ambox th.mbox-text,
 +
.ambox td.mbox-text {            /* The message body cell(s) */
 +
    padding: 0.25em 0.5em;      /* 0.5em left/right */
 +
}
 +
.ambox td.mbox-image {          /* The left image cell */
 +
    /* @noflip */padding: 2px 0 2px 0.5em;    /* 0.5em left, 0px right */
 +
}
 +
.ambox td.mbox-imageright {      /* The right image cell */
 +
    /* @noflip */padding: 2px 0.5em 2px 0;    /* 0px left, 0.5em right */
 +
}
 +
 +
table.ambox-notice {
 +
    /* @noflip */border-left: 10px solid #1e90ff;    /* Blue */
 +
}
 +
table.ambox-speedy {
 +
    /* @noflip */border-left: 10px solid #b22222;    /* Red */
 +
    background: #fee;                  /* Pink */
 +
}
 +
table.ambox-delete {
 +
    /* @noflip */border-left: 10px solid #b22222;    /* Red */
 +
}
 +
table.ambox-content {
 +
    /* @noflip */border-left: 10px solid #f28500;    /* Orange */
 +
}
 +
table.ambox-style {
 +
    /* @noflip */border-left: 10px solid #f4c430;    /* Yellow */
 
}
 
}
#jump-to-nav {
+
table.ambox-move {
display: none;
+
    /* @noflip */border-left: 10px solid #9932cc;   /* Purple */
 
}
 
}
 
+
table.ambox-protection {
span.subpages {
+
    /* @noflip */border-left: 10px solid #bba;       /* Gray-gold */
display: block;
 
 
}
 
}
 
+
/* user notification thing */
+
/* Image message box styles */
.usermessage {
+
table.imbox {
background-color: #ffce7b;
+
    margin: 4px 10%;  
border: 1px solid #ffa500;
+
    border-collapse: collapse;  
color: black;
+
    border: 3px solid #1e90ff;   /* Default "notice" blue */
font-weight: bold;
+
    background: #fbfbfb;
margin: 2em 0 1em;
 
padding: .5em 1em;
 
vertical-align: middle;
 
 
}
 
}
#siteNotice {
+
.imbox .mbox-text .imbox { /* For imboxes inside imbox-text cells. */
position: relative;
+
    margin: 0 -0.5em;       /* 0.9 - 0.5 = 0.4em left/right.        */
text-align: center;
+
    display: block;         /* Fix for webkit to force 100% width.  */
font-size: 95%;
 
padding: 0 0.9em;
 
 
}
 
}
#siteNotice p {
+
.mbox-inside .imbox {       /* For imboxes inside other templates.  */
margin: 0;
+
    margin: 4px;
padding: 0;
 
 
}
 
}
 
+
.catlinks {
+
table.imbox-notice {
border: 1px solid #aaa;
+
    border: 3px solid #1e90ff;   /* Blue */
background-color: #f9f9f9;
 
padding: 5px;
 
margin-top: 1em;
 
clear: both;
 
 
}
 
}
/* currently unused, intended to be used by a metadata box
+
table.imbox-speedy {
in the bottom-right corner of the content area */
+
    border: 3px solid #b22222;    /* Red */
.documentDescription {
+
    background: #fee;             /* Pink */
/* The summary text describing the document */
 
font-weight: bold;
 
display: block;
 
margin: 1em 0;
 
line-height: 1.5em;
 
 
}
 
}
.documentByLine {
+
table.imbox-delete {
text-align: right;
+
    border: 3px solid #b22222;   /* Red */
font-size: 90%;
 
clear: both;
 
font-weight: normal;
 
color: #76797c;
 
 
}
 
}
 
+
table.imbox-content {
/* emulate center */
+
    border: 3px solid #f28500;    /* Orange */
.center {
 
width: 100%;
 
text-align: center;
 
 
}
 
}
*.center * {
+
table.imbox-style {
margin-left: auto;
+
    border: 3px solid #f4c430;   /* Yellow */
margin-right: auto;
 
 
}
 
}
 
+
table.imbox-move {
/* images */
+
    border: 3px solid #9932cc;   /* Purple */
/* @noflip */div.floatright, table.floatright {
 
margin: 0 0 .5em .5em;
 
border: 0;
 
/*
 
border: .5em solid white;
 
border-width: .5em 0 .8em 1.4em;
 
*/
 
 
}
 
}
div.floatright p { font-style: italic; }
+
table.imbox-protection {
/* @noflip */div.floatleft, table.floatleft {
+
    border: 3px solid #bba;       /* Gray-gold */
margin: 0 .5em .5em 0;
 
border: 0;
 
/*
 
margin: .3em .5em .5em 0;
 
border: .5em solid white;
 
border-width: .5em 1.4em .8em 0;
 
*/
 
 
}
 
}
div.floatleft p { font-style: italic; }
+
table.imbox-license {
 
+
    border: 3px solid #88a;       /* Dark gray */
/* thumbnails */
+
    background: #f7f8ff;         /* Light gray */
div.thumb {
 
margin-bottom: 7px;
 
width: auto;
 
 
}
 
}
div.thumbinner {
+
table.imbox-featured {
border: 1px solid #ccc;
+
    border: 3px solid #cba135;   /* Brown-gold */
padding: 3px !important;
 
background-color: #f9f9f9;
 
font-size: 94%;
 
text-align: center;
 
overflow: hidden;
 
 
}
 
}
html .thumbimage {
+
border: 1px solid #ccc;
+
/* Category message box styles */
 +
table.cmbox {
 +
    margin: 3px 10%;
 +
    border-collapse: collapse;
 +
    border: 1px solid #aaa;
 +
    background: #DFE8FF;   /* Default "notice" blue */
 
}
 
}
html .thumbcaption {
+
border: none;
+
table.cmbox-notice {
text-align: left;
+
    background: #D8E8FF;   /* Blue */
line-height: 15px;
 
padding: 3px !important;
 
font-size: 11px;
 
 
}
 
}
div.magnify {
+
table.cmbox-speedy {
float: right;
+
    margin-top: 4px;
border: none !important;
+
    margin-bottom: 4px;
background: none !important;
+
    border: 4px solid #b22222;   /* Red */
 +
    background: #FFDBDB;         /* Pink */
 
}
 
}
div.magnify a, div.magnify img {
+
table.cmbox-delete {
display: block;
+
    background: #FFDBDB;   /* Red */
border: none !important;
 
background: none !important;
 
 
}
 
}
/* @noflip */div.tright {
+
table.cmbox-content {
margin: 1px 0 10px 20px;
+
    background: #FFE7CE;   /* Orange */
 
}
 
}
/* @noflip */div.tleft {
+
table.cmbox-style {
margin: 1px 20px 10px 0;
+
    background: #FFF9DB;   /* Yellow */
 
}
 
}
img.thumbborder {
+
table.cmbox-move {
border: 1px solid #dddddd;
+
    background: #E4D8FF;   /* Purple */
 
}
 
}
 
+
table.cmbox-protection {
/*
+
    background: #EFEFE1;   /* Gray-gold */
** classes for special content elements like town boxes
 
** intended. referenced directly from the wiki src
 
*/
 
 
 
/*
 
** User styles
 
*/
 
/* table standards */
 
table.rimage {
 
float: right;
 
position: relative;
 
margin-left: 1em;
 
margin-bottom: 1em;
 
text-align: center;
 
 
}
 
}
.toccolours {
+
border: 1px solid #aaa;
+
/* Other pages message box styles */
background-color: #f9f9f9;
+
table.ombox {
padding: 5px;
+
    margin: 4px 10%;
font-size: 95%;
+
    border-collapse: collapse;
 +
    border: 1px solid #aaa;       /* Default "notice" gray */
 +
    background: #f9f9f9;
 
}
 
}
 
+
/*
+
table.ombox-notice {
** keep the whitespace in front of the ^=, hides rule from konqueror
+
    border: 1px solid #aaa;       /* Gray */
** this is css3, the validator doesn't like it when validating as css2
 
*/
 
h2 span, h1 span, h3 span { line-height: 1; }
 
 
 
#bodyContent a.external,
 
#bodyContent a.external[href ^="gopher://"] {
 
/* @embed */
 
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeF59z4EJADEIQ1F36k7u5E7ZKXeUQPACJ3wK7UNokVxVk9kHnQH7bY9hbDyDhNXgjpRLqFlo4M2GgfyJHhjq8V4agfrgPQX3JtJQGbofmCHgA/nAKks+JAjFAAAAAElFTkSuQmCC) center right no-repeat;
 
background-color: white;
 
padding-right: 13px;
 
 
}
 
}
#bodyContent a.external[href ^="https://"],
+
table.ombox-speedy {
.link-https {
+
    border: 2px solid #b22222;    /* Red */
/* @embed */
+
    background: #fee;             /* Pink */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeF6tjzsKg0AQhi09mimsFJLCzpNYCGKbK3gAtfUIljaCoKCCZIs8MMV2v+yCg8siWlh8zOtjhjEAEFmeIopDQtTrTJNEZIxhWysiNfULJFJjDzGnba/aBt4+wAuBzD+tg6a8SVkXf4GET96xmDxNzP39IvE/PPDtXIyVpYinv14A5F0laJ8oYFgAAAAASUVORK5CYII=) center right no-repeat;
 
padding-right: 13px;
 
 
}
 
}
#bodyContent a.external[href ^="mailto:"],
+
table.ombox-delete {
.link-mailto {
+
    border: 2px solid #b22222;    /* Red */
/* @embed */
 
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKBAMAAAB/HNKOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRF////////iIqF9vb26urpycfDvb275eXj2djV+/v4srKy6efio6GcqKejsa6q8fDtVM9qIQAAAAF0Uk5TAEDm2GYAAABOSURBVHheBcExDkAwGIDRL43NpJOt6a9hMdVilP8gklqsHMJmt4qeyeI03oNSNkCrAIU/7YTWbwp0zz4rTXZHxF/9YA15HTG4+4NFRNofUBMMOBBNZngAAAAASUVORK5CYII=) center right no-repeat;
 
padding-right: 13px;
 
 
}
 
}
#bodyContent a.external[href ^="news://"] {
+
table.ombox-content {
/* @embed */
+
    border: 1px solid #f28500;    /* Orange */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHtJREFUeF6NkEEKgCAQRT2w1wiiUxgk0SKiTe6i9oKeQXDhKSZmYAJRKeHh4j//DIp+6OAPJH6cXJRSZqSUQClViBjUKER8zXAbUhev+6Q7hMA0G1msNtIo5zxhrX3xzlNG4ravYMwBMUZsKsBsXjQIABCTHlsfTXuj8wCN3T2QBjtcwQAAAABJRU5ErkJggg==) center right no-repeat;
 
padding-right: 13px;
 
 
}
 
}
#bodyContent a.external[href ^="ftp://"],
+
table.ombox-style {
.link-ftp {
+
    border: 1px solid #f4c430;    /* Yellow */
/* @embed */
 
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAQAAAAnOwc2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAExJREFUeF5VyEEKwCAMAMH83o/0LT6kFHqQYqkevG1jIITs3kaQgn+A7A29ujnw5NKrsaPCrTegBBrRMzYeXkbGzsdkZRwsPWMUmEd+CkSgVeVp2OkAAAAASUVORK5CYII=) center right no-repeat;
 
padding-right: 13px;
 
 
}
 
}
#bodyContent a.external[href ^="irc://"],
+
table.ombox-move {
#bodyContent a.external[href ^="ircs://"],
+
    border: 1px solid #9932cc;    /* Purple */
.link-irc {
 
/* @embed */
 
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUeF590E0KgCAQBWAvH0TXigI3ZccQ/8H91ExqKNrAW8j7kFG27SvMyzQM9s8whuBnENdQSllFKdWFWFC01pQQwhASMMaAtXYIMQScc/0dxSXyIaPq1ZzzF6JOsKBTHOC9hxgjoQLbf2tRgekWKka5AShBSepvauUSAAAAAElFTkSuQmCC) center right no-repeat;
 
padding-right: 13px;
 
 
}
 
}
#bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"],
+
table.ombox-protection {
#bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"],
+
    border: 2px solid #bba;      /* Gray-gold */
#bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"],
 
#bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"],
 
#bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"],
 
#bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"],
 
.link-audio {
 
/* @embed */
 
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKBAMAAAB/HNKOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRF////dX8qyNF7eYMzwsxrsr9G8PHrm6Jrt7uakJVmn6OB1duat8NQi5YzhI4ykZR07gQraQAAAAF0Uk5TAEDm2GYAAABJSURBVHheNcSxDUBQFIbR727glxvKl3dHsIHCGESrNIIR7KE1hQ1MoDSCiMhJDixSDWVEhuZbei/sf/Jqbdn28+jxYe4u7CaND+p5C05J6bE1AAAAAElFTkSuQmCC) center right no-repeat;
 
padding-right: 13px;
 
 
}
 
}
#bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"],
+
#bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"],
+
/* Talk page message box styles */
#bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"],
+
table.tmbox {
#bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"],
+
    margin: 4px 10%;
.link-video {
+
    border-collapse: collapse;
/* @embed */
+
    border: 1px solid #c0c090;    /* Default "notice" gray-brown */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAAAAACoWZBhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAP9bkSK1AAAAXElEQVR4Xi2NMQoFMQgFvbpgHUj5LvF6K7sFQXKFsOew2G/xuylmGPn62Wb76U+ayHsTbDnrQMNrHdkZRChyi730KvK1QUWVD47gzoCOMBkXPSZrIuumseW/iKU/eKdG9xXBa10AAAAASUVORK5CYII=) center right no-repeat;
+
    background: #f8eaba;
padding-right: 13px;
 
 
}
 
}
#bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"],
+
.mediawiki .mbox-inside .tmbox { /* For tmboxes inside other templates. The "mediawiki" class ensures that */
#bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"],
+
    margin: 2px 0;              /* this declaration overrides other styles (including mbox-small above)  */
#bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"],
+
    width: 100%;                /* For Safari and Opera */
.link-document {
+
}
/* @embed */
+
.mbox-inside .tmbox.mbox-small { /* "small" tmboxes should not be small when  */
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAQAAAAnOwc2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE5JREFUeF5lykEKgDAMBdF/+17Es/QkiosiCBURXIzJooZohmweX6gwmkCeI+Oqc2C1FnvnF2ejlQYU0tLK2NjY6f/l8V12Ti7uhFFgDj19b58EwXuqkAAAAABJRU5ErkJggg==) center right no-repeat;
+
    line-height: 1.5em;          /* also "nested", so reset styles that are  */  
padding-right: 13px;
+
    font-size: 100%;             /* set in "mbox-small" above.                */
 
}
 
}
 
   
 
   
/* Interwiki Styling */
+
table.tmbox-speedy {
#bodyContent a.extiw,
+
    border: 2px solid #b22222;   /* Red */
#bodyContent a.extiw:active {
+
    background: #fee;             /* Pink */
color: #36b;
 
/* Don't show icons for interwiki links */
 
background: none;
 
padding: 0;
 
 
}
 
}
#bodyContent a.extiw:visited {
+
table.tmbox-delete {
color: #636;
+
    border: 2px solid #b22222;   /* Red */
 
}
 
}
#bodyContent a.extiw:active {
+
table.tmbox-content {
color: #b63;
+
    border: 2px solid #f28500;   /* Orange */
 
}
 
}
 
+
table.tmbox-style {
/*
+
    border: 2px solid #f4c430;    /* Yellow */
** Structural Elements
+
}
*/
+
table.tmbox-move {
 
+
    border: 2px solid #9932cc;    /* Purple */
/*
+
}
** general portlet styles (elements in the quickbar)
+
table.tmbox-protection,
*/
+
table.tmbox-notice {
.portlet { margin: 0 0 20px; float: none; overflow: hidden; }
+
    border: 1px solid #c0c090;   /* Gray-brown */
.portlet h2 { white-space: nowrap; text-transform: capitalize; }
+
}
.portlet ul { text-transform: capitalize; padding: 0; margin: 0; }
+
.portlet li { list-style-type: none; padding: 0; margin: 0; }
+
/* Disambig and set index box styles */
.portlet li a { display: block; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
+
table.dmbox {
.portlet li:hover { background-color: #f1f1f1; }
+
    clear: both;  
.portlet li.selected { background-color: #f1f1f1; }
+
    margin: 0.9em 1em;  
 
+
    border-top: 1px solid #ccc;  
/*
+
    border-bottom: 1px solid #ccc;  
** Logo properties
+
    background: transparent;
*/
 
 
 
#p-logo {
 
top: 0;
 
left: 0;
 
position: absolute; /*needed to use z-index */
 
z-index: 3;
 
height: 155px;
 
width: 12em;
 
overflow: visible;
 
 
}
 
}
#p-logo h5 {
+
display: none;
+
/* Footer and header message box styles */
 +
table.fmbox {
 +
    clear: both;
 +
    margin: 0.2em 0;
 +
    width: 100%;
 +
    border: 1px solid #aaa;
 +
    background: #f9f9f9;     /* Default "system" gray */
 
}
 
}
#p-logo a,
+
table.fmbox-system {
#p-logo a:hover {
+
    background: #f9f9f9;
display: block;
 
height: 155px;
 
width: 12.2em;
 
background-repeat: no-repeat;
 
background-position: 35% 50% !important;
 
text-decoration: none;
 
 
}
 
}
 
+
table.fmbox-warning {
#p-lang { position: relative; z-index: 3; }
+
    border: 1px solid #bb7070; /* Dark pink */
 
+
    background: #ffdbdb;       /* Pink */
/* TODO: #t-iscite is only used by the Cite extension, come up with some
 
  * system which allows extensions to add to this file on the fly
 
*/
 
#t-ispermalink, #t-iscite {
 
color: #999;
 
 
}
 
}
#f-poweredbyico, #f-copyrightico {
+
table.fmbox-editnotice {
margin: 0 8px;
+
    background: transparent;
position: relative;
 
top: -2px; /* Bump it up just a tad */
 
 
}
 
}
#f-poweredbyico {
+
/* Div based "warning" style fmbox messages. */
float: right;
+
div.mw-warning-with-logexcerpt,
height: 1%;
+
div.mw-lag-warn-high,
 +
div.mw-cascadeprotectedwarning,
 +
div#mw-protect-cascadeon {
 +
    clear: both;
 +
    margin: 0.2em 0;
 +
    border: 1px solid #bb7070;
 +
    background: #ffdbdb;
 +
    padding: 0.25em 0.9em;
 
}
 
}
#f-copyrightico {
+
/* Div based "system" style fmbox messages.
float: left;
+
  Used in [[MediaWiki:Readonly lag]]. */
height: 1%;
+
div.mw-lag-warn-normal,
 +
div.fmbox-system {
 +
    clear: both;
 +
    margin: 0.2em 0;
 +
    border: 1px solid #aaa;
 +
    background: #f9f9f9;
 +
    padding: 0.25em 0.9em;
 
}
 
}
 
+
.mw-htmlform-submit {
+
/* These mbox-small classes must be placed after all other
font-weight: bold;
+
  ambox/tmbox/ombox etc classes. "body.mediawiki" is so
padding-left: .3em;
+
  they override "table.ambox + table.ambox" above. */
padding-right: .3em;
+
body.mediawiki table.mbox-small {   /* For the "small=yes" option. */
margin-right: 2em;
+
    /* @noflip */clear: right;
 +
    /* @noflip */float: right;
 +
    /* @noflip */margin: 4px 0 4px 1em;
 +
    width: 238px;
 +
    font-size: 88%;
 +
    line-height: 1.25em;
 
}
 
}
 
+
body.mediawiki table.mbox-small-left {  /* For the "small=left" option. */
/* js pref toc */
+
    /* @noflip */margin: 4px 1em 4px 0;
#preftoc {
+
    width: 238px;
margin: 0;
+
    border-collapse: collapse;
padding: 0;
+
    font-size: 88%;
width: 100%;
+
    line-height: 1.25em;
clear: both;
 
 
}
 
}
#preftoc li {
+
background-color: #f0f0f0;
+
color: #000;
+
/* Remove default styles for [[MediaWiki:Noarticletext]]. */
 +
div.noarticletext {
 +
    border: none;
 +
    background: transparent;
 +
    padding: 0;
 
}
 
}
#preftoc li {
+
margin: 1px -2px 1px 2px;
+
#wpSave {
float: left;
+
    font-weight: bold;
padding: 2px 0 3px 0;
 
border: 1px solid #fff;
 
border-right-color: #716f64;
 
border-bottom: 0;
 
position: relative;
 
white-space: nowrap;
 
list-style-type: none;
 
list-style-image: none;
 
z-index: 3;
 
 
}
 
}
#preftoc li.selected {
+
font-weight: bold;
+
/* class hiddenStructure is defunct. See [[Wikipedia:hiddenStructure]] */
background-color: #f9f9f9;
+
.hiddenStructure {
border: 1px solid #aaa;
+
    display: inline ! important;
border-bottom: none;
+
    color: #f00;  
cursor: default;
+
    background-color: #0f0;
top: 1px;
 
padding-top: 2px;
 
margin-right: -3px;
 
 
}
 
}
#preftoc > li.selected {
+
top: 2px;
+
/* suppress missing interwiki image links where #ifexist cannot
 +
  be used due to high number of requests see .hidden-redlink on
 +
  http://meta.wikimedia.org/wiki/MediaWiki:Common.css
 +
*/
 +
.check-icon a.new {
 +
    display: none;
 +
    speak: none;
 +
}
 +
 +
/* Removes underlines from certain links */
 +
.nounderlines a,
 +
.IPA a:link, .IPA a:visited {  
 +
    text-decoration: none !important;
 
}
 
}
#preftoc a,
+
#preftoc a:active {
+
/* Standard Navigationsleisten, aka box hiding thingy
display: block;
+
  from .de.  Documentation at [[Wikipedia:NavFrame]]. */
color: #000;
+
div.NavFrame {
padding: 0 .7em;
+
    margin: 0;
position: relative;
+
    padding: 4px;
text-decoration: none;
+
    border: 1px solid #aaa;
 +
    text-align: center;
 +
    border-collapse: collapse;
 +
    font-size: 95%;
 
}
 
}
#preftoc li.selected a {
+
div.NavFrame + div.NavFrame {
cursor: default;
+
    border-top-style: none;
text-decoration: none;
+
    border-top-style: hidden;
 
}
 
}
#preferences {
+
div.NavPic {
margin: 0;
+
    background-color: #fff;
border: 1px solid #aaa;
+
    margin: 0;
clear: both;
+
    padding: 2px;
padding: 1.5em;
+
    /* @noflip */float: left;
background-color: #F9F9F9;
 
 
}
 
}
.prefsection {
+
div.NavFrame div.NavHead {
border: none;
+
    height: 1.6em;
padding: 0;
+
    font-weight: bold;
margin: 0;
+
    background-color: #ccf;
 +
    position: relative;
 
}
 
}
 
+
div.NavFrame p,
.prefsection legend {
+
div.NavFrame div.NavContent,
font-weight: bold;
+
div.NavFrame div.NavContent p {
 +
    font-size: 100%;
 
}
 
}
.prefsection table, .prefsection legend {
+
div.NavEnd {
background-color: #F9F9F9;
+
    margin: 0;
 +
    padding: 0;
 +
    line-height: 1px;
 +
    clear: both;
 
}
 
}
.mainLegend {
+
a.NavToggle {
display: none;
+
    position: absolute;
 +
    top: 0;
 +
    /* @noflip */right: 3px;
 +
    font-weight: normal;
 +
    font-size: 90%;
 
}
 
}
td.htmlform-tip {
+
font-size: x-small;
+
/* Hatnotes and disambiguation notices */
padding: .2em 2em;
+
.rellink,
color: #666;
+
.dablink {
 +
    font-style: italic;
 +
    /* @noflip */padding-left: 2em;
 +
    margin-bottom: 0.5em;
 
}
 
}
 
+
.rellink i,
.preferences-login {
+
.dablink i {
clear: both;
+
    font-style: normal;
margin-bottom: 1.5em;
 
 
}
 
}
 
+
.prefcache {
+
/* Style for horizontal UL lists */
font-size: 90%;
+
.horizontal ul {
margin-top: 2em;
+
    padding: 0;
 +
    margin: 0;
 
}
 
}
 
+
.horizontal li {  
div#userloginForm form,
+
    /* @noflip */padding: 0 0.6em 0 0.4em;
div#userlogin form#userlogin2 {
+
    display: inline;
margin: 0 3em 1em 0;
+
    /* @noflip */border-right: 1px solid;
border: 1px solid #aaa;
 
clear: both;
 
padding: 1.5em 2em;
 
background-color: #f9f9f9;
 
float: left;
 
 
}
 
}
 
+
.horizontal li:last-child {
div#userloginForm table,
+
    /* @noflip */border-right: none;
div#userlogin form#userlogin2 table {
+
    /* @noflip */padding-right: 0;
background-color: #f9f9f9;
 
 
}
 
}
 
+
div#userloginForm h2,
+
/* Allow transcluded pages to display in lists rather than a table.
div#userlogin form#userlogin2 h2 {
+
  Compatible in Firefox; incompatible in IE6. */
padding-top: 0;
+
.listify td    { display: list-item; }
 +
.listify tr    { display: block; }
 +
.listify table { display: block; }
 +
 +
/* Geographical coordinates defaults. See [[Template:Coord/link]]
 +
  for how these are used. The classes "geo", "longitude", and
 +
  "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; }
 +
 +
/* When <div class="nonumtoc"> is used on the table of contents,
 +
  the ToC will display without numbers */
 +
.nonumtoc .tocnumber { display: none; }
 +
.nonumtoc #toc ul,
 +
.nonumtoc .toc ul {
 +
    line-height: 1.5em;
 +
    list-style: none;
 +
    margin: .3em 0 0;
 +
    padding: 0;
 
}
 
}
 
+
.nonumtoc #toc ul ul,  
div#userlogin .captcha,
+
.nonumtoc .toc ul ul {  
div#userloginForm .captcha {
+
    /* @noflip */margin: 0 0 0 2em;  
border: 1px solid #bbb;
 
padding: 1.5em 2em;
 
background-color: white;
 
 
}
 
}
 
+
#loginend, #signupend {
+
/* Allow limiting of which header levels are shown in a TOC;
clear: both;
+
  <div class="toclimit-3">, for instance, will limit to
 +
  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;
 
}
 
}
 
+
#userloginprompt, #languagelinks {
+
/* Styling for Template:Quote */
font-size: 85%;
+
blockquote.templatequote {  
 +
    margin-top: 0;  
 
}
 
}
 
+
blockquote.templatequote div.templatequotecite {
#login-sectiontip {
+
    line-height: 1em;
font-size: 85%;
+
    /* @noflip */text-align: left;
line-height: 1.2;
+
    /* @noflip */padding-left: 2em;
padding-top: 2em;
+
    margin-top: 0;
 
}
 
}
 
+
blockquote.templatequote div.templatequotecite cite {
#userlogin .loginText, #userlogin .loginPassword {
+
    font-size: 85%;
width: 12em;
 
 
}
 
}
 
+
#userloginlink a, #wpLoginattempt, #wpCreateaccount {
+
/* User block messages */
font-weight: bold;
+
div.user-block {
 +
    padding: 5px;
 +
    margin-bottom: 0.5em;
 +
    border: 1px solid #A9A9A9;
 +
    background-color: #FFEFD5;
 
}
 
}
 
+
/*
+
/* Prevent line breaks in silly places:
** IE/Mac fixes, hope to find a validating way to move this
+
  1) Links when we don't want them to
** to a separate stylesheet. This would work but doesn't validate:
+
  2) Bold "links" to the page itself
** @import("IEMacFixes.css");
+
  2) HTML formulae
 +
  3) Ref tags with group names <ref group="Note"> --> "[Note 1]"
 
*/
 
*/
/* tabs: border on the a, not the div */
+
.nowraplinks a,
* > html #p-cactions li { border: none; }
+
.nowraplinks .selflink,
* > html #p-cactions li a {
+
span.texhtml,
border: 1px solid #aaa;
+
sup.reference a {  
border-bottom: none;
+
    white-space: nowrap;
 
}
 
}
* > html #p-cactions li.selected a { border-color: #fabd23; }
+
/* footer icons need a fixed width */
+
/* For template documentation */
* > html #f-poweredbyico,
+
.template-documentation {
* > html #f-copyrightico { width: 88px; }
+
    clear: both;
* > html #bodyContent,
+
    margin: 1em 0 0 0;
* > html #bodyContent pre {
+
    border: 1px solid #aaa;
overflow-x: auto;
+
    background-color: #ecfcf4;  
width: 100%;
+
    padding: 1em;
padding-bottom: 25px;
 
 
}
 
}
 
+
/* more IE fixes */
+
/* Inline divs in ImageMaps (code borrowed from de.wiki) */
/* float/negative margin brokenness */
+
.imagemap-inline div {
* html div#footer {margin-top: 0;}
+
    display: inline;
* html div#columnContent {
+
}
display: inline;
+
margin-bottom: 0;
+
/* Increase the height of the image upload box */
 +
#wpUploadDescription {
 +
    height: 13em;
 
}
 
}
 
+
/* Mac IE 5.0 fix; floated content turns invisible */
+
/* Reduce line-height for <sup> and <sub> */
* > html div#columnContent {
+
sup, sub {
float: none;
+
    line-height: 1em;
 
}
 
}
* > html div#columnOne {
+
position: absolute;
+
/* Minimum thumb width */
left: 0;
+
.thumbinner {
top: 0;
+
    min-width: 100px;
 
}
 
}
* > html div#footer {
+
margin-left: 13.2em;
+
/* Makes the background of a framed image white instead of gray. */
 +
/* Only visible with transparent images. */
 +
div.thumb img.thumbimage {
 +
    background-color: #fff;
 
}
 
}
.redirectText {
+
font-size: 150%;
+
/* The backgrounds for galleries. */
margin: 5px;
+
div#content .gallerybox div.thumb {
 +
    background-color: #F9F9F9;   /* Light gray padding */
 
}
 
}
 
+
/* Put a chequered background behind images, only visible if they have transparency */
.printfooter {
+
.gallerybox .thumb img,
display: none;
+
.filehistory a img,
 +
#file img {
 +
    background: white url("//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png") repeat;
 
}
 
}
 
+
/* But not on articles, user pages, portals or with opt-out. */
div.patrollink {
+
.ns-0 .gallerybox .thumb img,
clear: both;
+
.ns-2 .gallerybox .thumb img,
 +
.ns-100 .gallerybox .thumb img,
 +
.nochecker .gallerybox .thumb img {
 +
    background: white;
 
}
 
}
 
+
.sharedUploadNotice {
+
/* Prevent floating boxes from overlapping any category listings,
font-style: italic;
+
  file histories, edit previews, and edit [Show changes] views */
 +
#mw-subcategories, #mw-pages, #mw-category-media,
 +
#filehistory, #wikiPreview, #wikiDiff {
 +
    clear: both;
 
}
 
}
 
+
span.updatedmarker {
+
/* Selectively hide headers in WikiProject banners */
color: black;
+
.wpb .wpb-header            { display: none; }
background-color: #0f0;
+
.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-tag-markers {
 +
    font-family:sans-serif;
 +
    font-style:italic;
 +
    font-size:90%;
 
}
 
}
 
+
.editExternally {
+
/* Fix so <syntaxhighlight> tags and .css and .js pages get normal text size.
border: 1px solid gray;
+
  [[Bugzilla:26204]] */
background-color: #ffffff;
+
div.mw-geshi div,
padding: 3px;
+
div.mw-geshi div pre,
margin-top: 0.5em;
+
span.mw-geshi,
float: left;
+
pre.source-css,
font-size: small;
+
pre.source-javascript {
text-align: center;
+
    font-family: monospace, "Courier New" !important;
 
}
 
}
.editExternallyHelp {
+
font-style: italic;
+
/* Remove bullets when there are multiple edit page warnings */
color: gray;
+
ul.permissions-errors > li {
 +
    list-style: none;
 
}
 
}
 
+
ul.permissions-errors {
.toggle {
+
    margin: 0;
margin-left: 2em;
 
text-indent: -2em;
 
 
}
 
}
 
+
/* @bug 1714 */
+
/* No linewrap on the labels of the login/signup page */
input#wpSave, input#wpDiff {
+
body.page-Special_UserLogin .mw-label label,
margin-right: 0.33em;
+
body.page-Special_UserLogin_signup .mw-label label { white-space : nowrap; }
 +
 +
/* Disable the automatic text-size adjust of WebKit on iPhones etc.
 +
  It scales some text, and not the other. Use none, or fixed percentage instead.
 +
  Use media selector, because defining a value, overwrites platform defaults. */
 +
@media only screen and (max-device-width: 480px) {
 +
    body {
 +
        -webkit-text-size-adjust: none;
 +
    }
 
}
 
}
 
+
#wpSave {
+
/* Pie chart test: Transparent borders */
font-weight: bold;
+
.transborder {
 +
    border: solid transparent;
 
}
 
}
 
+
* html .transborder {  /* IE6 */
/* noarticletext */
+
    border: solid #000001;
div.noarticletext {
+
    filter: chroma(color=#000001);
border: 1px solid #ccc;
 
padding: 19px 1em;
 
 
}
 
}
 
+
div#searchTargetContainer {
+
/* Style for horizontal lists (separator following item) */
left:      10px;
+
ol.hlist, ul.hlist,
top:        10px;
+
.hlist ol, .hlist ul {
width:      90%;
+
    margin: 0 !important;
background: white;
 
 
}
 
}
 
+
.hlist li {  
div#searchTarget {
+
    /* @noflip */padding: 0em 0.6em 0em 0em;
padding:   3px;
+
    display: inline;
margin:     5px;
+
    background: url("//upload.wikimedia.org/wikipedia/commons/d/da/Middot.png") no-repeat right;
background: #F0F0F0;
 
border:    solid 1px blue;
 
 
}
 
}
 
+
.hlist li:last-child {
div#searchTarget ul li {
+
    /* @noflip */padding-right: 0em;
list-style: none;
+
    background: none;
 
}
 
}
 
+
div#searchTarget ul li:before {
+
/* Reduce excess space between category links.
color: orange;
+
  Remove this when bug 31547 is resolved/deployed */
content: "\00BB \0020";
+
#catlinks li {
 +
    line-height: 1em;
 +
    margin: 0.25em 0;
 +
    padding: 0 0.5em;
 
}
 
}
 
+
#catlinks li:first-child {
div#searchTargetHide {
+
    padding-left: 0.25em;
float:right;
 
border:solid 1px black;
 
background:#DCDCDC;
 
padding:2px;
 
 
}
 
}
 
+
#powersearch p {
+
/* BREADCRUMB CODE FOR THE ACCOUNT CREATION PROCESS */
margin-top:0px;
+
 +
.breadcrumb {
 +
        list-style: none;
 +
        overflow: hidden;
 +
        font: 14px Helvetica, Arial, Sans-Serif;
 
}
 
}
 
+
.breadcrumb li {
div.multipageimagenavbox {
+
        float: left;
border: solid 1px silver;
+
        margin-bottom: 0;
padding: 4px;
 
margin: 1em;
 
background: #f0f0f0;
 
 
}
 
}
 
+
.breadcrumb li a {
div.multipageimagenavbox div.thumb {
+
        color: white;
border: none;
+
        text-decoration: none;
margin-left: 2em;
+
        padding: 10px 0 10px 45px;
margin-right: 2em;
+
        position: relative;
 +
        display: block;
 +
        float: left;
 
}
 
}
 
+
div.multipageimagenavbox hr {
+
.breadcrumb li a:after,
margin: 6px;
+
.breadcrumb li a:before {
 +
        content: " ";
 +
        display: block;
 +
        width: 0;
 +
        height: 0;
 +
        border-top: 50px solid transparent;          /* Go big on the size, and let overflow hide */
 +
        border-bottom: 50px solid transparent;
 +
        position: absolute;
 +
        top: 50%;
 +
        margin-top: -50px;
 +
        left: 100%;
 +
        z-index: 2;
 +
}
 +
.breadcrumb li a:before {
 +
        border-left: 31px solid white;
 +
        margin-left: 1px;
 +
        z-index: 1;
 
}
 
}
 
+
table.multipageimage td {
+
.breadcrumb li:first-child a {
text-align: center;
+
        padding-left: 20px;
 
}
 
}
 
+
.templatesUsed { margin-top: 1.5em; }
+
.currentcrumb a {
 
+
        background: #069;
.mw-summary-preview {
 
margin: 0.1em 0;
 
 
}
 
}
 
+
/* Friendlier slave lag warnings */
+
.currentcrumb a:after {
div.mw-lag-warn-normal,
+
        border-left: 30px solid #069;
div.mw-lag-warn-high {
 
padding: 3px;
 
text-align: center;
 
margin: 3px auto;
 
 
}
 
}
div.mw-lag-warn-normal {
+
border: 1px solid #FFCC66;
+
.currentcrumb a:hover, .prevcrumb a:hover, .nextcrumb a:hover {
background-color: #FFFFCC;
+
        background: #002d44;
 
}
 
}
div.mw-lag-warn-high {
+
font-weight: bold;
+
.currentcrumb a:hover:after, .prevcrumb a:hover:after, .nextcrumb a:hover:after { border-left-color: #002d44 !important; }
border: 2px solid #FF0033;
+
background-color: #FFCCCC;
+
.prevcrumb a {
 +
        background: #396;
 
}
 
}
 
+
.MediaTransformError {
+
.prevcrumb a:after {
background-color: #ccc;
+
        border-left: 30px solid #396;
padding: 0.1em;
 
 
}
 
}
.MediaTransformError td {
+
text-align: center;
+
.nextcrumb a {
vertical-align: middle;
+
        background: #999;
font-size: 90%;
 
 
}
 
}
 
+
/* God-damned hack for the crappy layout */
+
.nextcrumb a:after {
.os-suggest {
+
        border-left: 30px solid #999;
font-size: 127%;
 
 
}
 
}
 
+
/* Sometimes people don't want personal tools to be lowercase! */
+
/* Makes it possible for the boxes in the Account Creation Process to overlap */
.no-text-transform {
+
#userlogin {
text-transform: none;
+
margin:0;
 +
width:90% !important;
 +
max-width:100% !important;
 +
padding:1.5em;
 +
padding-top:0.75em !important;
 +
border:0;
 +
-moz-box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.35);
 +
-webkit-box-shadow:  inset 0 0px 10px rgba(0, 0, 0, 0.35);
 +
box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.35);
 +
-moz-border-radius: 7px;
 +
-webkit-border-radius: 7px;
 +
border-radius: 7px;
 +
background:white;
 +
background: #fff;
 +
background: -moz-linear-gradient(bottom, #fff 90%, #F5F5F5 100%);
 +
background: -webkit-gradient(linear, left bottom, left top, color-stop(90%,#fff), color-stop(100%,#F5F5F5));
 +
background: -webkit-linear-gradient(bottom, #fff 90%,#F5F5F5 100%);
 +
background: -o-linear-gradient(bottom, #fff 90%,#F5F5F5 100%);
 +
background: -ms-linear-gradient(bottom, #fff 90%,#F5F5F5 100%);
 +
background: linear-gradient(bottom, #fff 90%,#fff 100%);
 +
}
 +
 +
/* Hides the longer title for the listed pages */
 +
 +
body.page-MediaWiki:Customusertemplate-ACP1-Fancycaptcha-createaccount #firstHeading,
 +
body.page-MediaWiki:Customusertemplate-ACP1-Welcomecreation #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Welcomecreation #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_History_Copyediting #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Which_skills_do_you_have_to_offer #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Geography_Copyediting #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Technology_Organizing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Technology_Searching_the_web #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Technology_Research_Writing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Technology_Copyediting #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Biology_Organizing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Biology_Searching_the_web #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Biology_Research_Writing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Biology_Copyediting #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_History_Organizing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_History_Searching_the_web #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_History_Research_Writing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Arts_Organizing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Arts_Searching_the_web #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Arts_Research_Writing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Arts_Copyediting #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Mathematics_Organizing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Mathematics_Searching_the_web #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Mathematics_Research_Writing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Mathematics_Copyediting #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Geography_Organizing #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Geography_Searching_the_web #firstHeading,
 +
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Geography_Research_Writing #firstHeading {
 +
display: none !important;
 
}
 
}
  
/* Tooltips are outside of the normal body code, so this helps make the size of the text sensible */
+
.versionlist a, .versionlist .selflink { color: #B0ADAB; margin-right: 20px;}
.tipsy {
+
.versionlist a { text-decoration: none; }
font-size: 127%;
+
.versionlist a:hover { color: #333399; }
}
 

Revision as of 06:38, 20 February 2013

Home < MediaWiki:Common.css
/* Main page fixes */
body.page-Main_Page h1.firstHeading { 
  display:none; 
}
#interwiki-completelist {
    font-weight: bold;
}
body.page-Main_Page #ca-delete {
    display: none !important;
}
 
body.page-Main_Page #mp-topbanner {
   clear: both;
}

/* Append a bottom-margin to the BrettCrumb  */
div#bodyContent small:first-of-type {
   margin-bottom:20px;
   display: inline;
}
 
/* Edit window toolbar */
#toolbar {
    height: 22px;
    margin-bottom: 6px;
}
 
/* Margins for <ol> and <ul> */
div#content ol, div#content ul,
div#mw_content ol, div#mw_content ul {
    margin-bottom: 0.5em;
}
 
/* Make the list of references smaller */
ol.references,
div.reflist,
div.refbegin {
    font-size: 90%;            /* Default font-size */
}
div.reflist ol.references {
    font-size: 100%;           /* Reset font-size when nested in div.reflist */
    list-style-type: inherit;  /* Enable custom list style types */
}
 
/* Highlight clicked reference in blue to help navigation */
ol.references li:target,
sup.reference:target,
span.citation:target { 
    background-color: #DEF;
}
 
/* 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;
}
 
/* Styling for citations (CSS3). Breaks long urls, etc., rather than overflowing box */
.citation {
    word-wrap: break-word;
}
 
/* Default styling for titles of works, styling for the title of an article
   within a periodical, or a contribution within a compilation. */
cite,
.citation cite.article,
.citation cite.contribution {
    font-style: inherit;
}
 
/* Styling for the title of any work within a citation,
   or specifically the title of a periodical. */
.citation cite,
.citation cite.periodical {
    font-style: italic;
}
 
/* 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;
    }
}
 
/* Default skin for navigation boxes */
table.navbox {            /* Navbox container style */
    border: 1px solid #aaa;
    width: 100%; 
    margin: auto;
    clear: both;
    font-size: 88%;
    text-align: center;
    padding: 1px;
}
table.navbox + table.navbox {  /* Single pixel border between adjacent navboxes */
    margin-top: -1px;          /* (doesn't work for IE6, but that's okay)       */
}
.navbox-title,
.navbox-abovebelow,
table.navbox th {
    text-align: center;      /* Title and above/below styles */
    padding-left: 1em;
    padding-right: 1em;
}
.navbox-group {              /* Group style */
    white-space: nowrap;
    /* @noflip */text-align: right;
    font-weight: bold;
    padding-left: 1em;
    padding-right: 1em;
}
.navbox, .navbox-subgroup {
    background: #fdfdfd;     /* Background color */
}
.navbox-list {
    border-color: #fdfdfd;   /* Must match background color */
}
.navbox-title,
table.navbox th {
    background: #ccccff;     /* Level 1 color */
}
.navbox-abovebelow,
.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 */
}
 
.collapseButton {          /* 'show'/'hide' buttons created dynamically */
    /* @noflip */float: right;          /* by the CollapsibleTables javascript in    */
    font-weight: normal;   /* [[MediaWiki:Common.js]] are styled here   */
    /* @noflip */text-align: right;     /* so they can be customised.                */
    width: auto;
}
.navbox .collapseButton {  /* In navboxes, the show/hide button balances */
    width: 6em;            /* the vde links from [[Template:Navbar]],    */
}                          /* so they need to be the same width.         */
 
.navbar {                  /* Navbox template links */
    font-size: 88%;        /* Default font-size */
    font-weight: normal;
}
.navbox .navbar {
    font-size: 100%;       /* Font-size when nested within navbox */
}
 
/* Infobox template style */
.infobox {
    border: 1px solid #aaa;
    background-color: #f9f9f9;
    color: black;
    margin: 0.5em 0 0.5em 1em;
    padding: 0.2em;
    /* @noflip */float: right;
    /* @noflip */clear: right;
    text-align: left;
    font-size: 88%;
    line-height: 1.5em;
}
.infobox caption {
    font-size: 125%;
    font-weight: bold;
}
.infobox td,
.infobox th {
    vertical-align: top;
}
.infobox.bordered {
    border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
    border: 1px solid #aaa;
}
.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 #aaa;
    border-right: 1px solid #aaa;
}
 
.infobox.bordered .mergedrow td,
.infobox.bordered .mergedrow th {
    border: 0;
    border-right: 1px solid #aaa;
}
 
/* Styles for geography infoboxes, eg countries,
   country subdivisions, cities, etc.            */
.infobox.geography {
    /* @noflip */text-align: left;
    border-collapse: collapse;
    line-height: 1.2em; 
    font-size: 90%;
}
 
.infobox.geography  td,
.infobox.geography  th {
    border-top: 1px solid #aaa;
    padding: 0.4em 0.6em 0.4em 0.6em;
}
.infobox.geography .mergedtoprow td,
.infobox.geography .mergedtoprow th {
    border-top: 1px solid #aaa;
    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 #aaa;
    padding: 0 0.6em 0.4em 0.6em;
}
 
.infobox.geography .maptable td,
.infobox.geography .maptable th {
    border: 0;
    padding: 0;
}
 
/* Normal font styling for table row headers with scope="row" tag */
.wikitable.plainrowheaders th[scope=row] {
    font-weight: normal;
    /* @noflip */text-align: left;
}
 
/* lists in data cells are always left-aligned */
.wikitable td ul,
.wikitable td ol,
.wikitable td dl {
    /* @noflip */text-align: left;
}
 
/* Icons for medialist templates [[Template:Listen]],
   [[Template:Multi-listen_start]], [[Template:Video]],
   [[Template:Multi-video_start]]
*/
div.listenlist {
    background: url("//upload.wikimedia.org/wikipedia/commons/3/3f/Gnome_speakernotes_30px.png");
    /* @noflip */padding-left: 40px;
}
 
/* Style rules for media list templates */
div.medialist {
    min-height: 50px;
    margin: 1em;
    /* @noflip */background-position: top left;
    background-repeat: no-repeat;
}
div.medialist ul {
    list-style-type: none; 
    list-style-image: none;
    margin: 0;
}
div.medialist ul li {
    padding-bottom: 0.5em;
}
div.medialist ul li li {
    font-size: 91%;
    padding-bottom: 0;
}
 
/* Change the external link icon to an Adobe icon for all PDF files
   in browsers that support these CSS selectors, like Mozilla and Opera */
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#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;
}
 
/* Change the external link icon to an Adobe icon anywhere the PDFlink class
   is used (notably Template:PDFlink). This works in IE, unlike the above. */
div#content span.PDFlink a,
div#mw_content span.PDFlink a {
    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]] */
div.columns-2 div.column {
    /* @noflip */float: left;
    width: 50%;
    min-width: 300px;
}
div.columns-3 div.column {
    /* @noflip */float: left;
    width: 33.3%;
    min-width: 200px;
}
div.columns-4 div.column {
    /* @noflip */float: left;
    width: 25%;
    min-width: 150px;
}
div.columns-5 div.column {
    /* @noflip */float: left;
    width: 20%;
    min-width: 120px;
}
 
/* Messagebox templates */
.messagebox {
    border: 1px solid #aaa;
    background-color: #f9f9f9;
    width: 80%;
    margin: 0 auto 1em auto;
    padding: .2em;
}
.messagebox.merge {
    border: 1px solid #c0b8cc;
    background-color: #f0e5ff;
    text-align: center;
}
.messagebox.cleanup {
    border: 1px solid #9f9fff;
    background-color: #efefff;
    text-align: center;
}
.messagebox.standard-talk {
    border: 1px solid #c0c090;
    background-color: #f8eaba;
    margin: 4px auto;
}
/* For old WikiProject banners inside banner shells. */
.mbox-inside .standard-talk,
.messagebox.nested-talk {
    border: 1px solid #c0c090;
    background-color: #f8eaba;
    width: 100%;
    margin: 2px 0;
    padding: 2px;
}
.messagebox.small {
    width: 238px;
    font-size: 85%;
    /* @noflip */float: right;
    clear: both;
    /* @noflip */margin: 0 0 1em 1em;
    line-height: 1.25em; 
}
.messagebox.small-talk {
    width: 238px;
    font-size: 85%;
    /* @noflip */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 */
th.mbox-text, td.mbox-text {   /* The message body cell(s) */
    border: none; 
    /* @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; 
    /* @noflip */padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
    text-align: center; 
}
td.mbox-imageright {           /* The right image cell */
    border: none;
    /* @noflip */padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */
    text-align: center; 
}
td.mbox-empty-cell {           /* An empty narrow cell */
    border: none;
    padding: 0px;
    width: 1px;
}
 
/* Article message box styles */
table.ambox {
    margin: 0 10%;                  /* 10% = Will not overlap with other elements */
    border: 1px solid #aaa; 
    /* @noflip */border-left: 10px solid #1e90ff;  /* Default "notice" blue */
    background: #fbfbfb; 
}
table.ambox + table.ambox {      /* Single border between stacked boxes. */
    margin-top: -1px;
}
.ambox th.mbox-text, 
.ambox td.mbox-text {            /* The message body cell(s) */
    padding: 0.25em 0.5em;       /* 0.5em left/right */
}
.ambox td.mbox-image {           /* The left image cell */
    /* @noflip */padding: 2px 0 2px 0.5em;    /* 0.5em left, 0px right */
}
.ambox td.mbox-imageright {      /* The right image cell */
    /* @noflip */padding: 2px 0.5em 2px 0;    /* 0px left, 0.5em right */
}
 
table.ambox-notice {
    /* @noflip */border-left: 10px solid #1e90ff;    /* Blue */
}
table.ambox-speedy {
    /* @noflip */border-left: 10px solid #b22222;    /* Red */
    background: #fee;                   /* Pink */
}
table.ambox-delete {
    /* @noflip */border-left: 10px solid #b22222;    /* Red */
}
table.ambox-content {
    /* @noflip */border-left: 10px solid #f28500;    /* Orange */
}
table.ambox-style {
    /* @noflip */border-left: 10px solid #f4c430;    /* Yellow */
}
table.ambox-move {
    /* @noflip */border-left: 10px solid #9932cc;    /* Purple */
}
table.ambox-protection {
    /* @noflip */border-left: 10px solid #bba;       /* Gray-gold */
}
 
/* Image message box styles */
table.imbox {
    margin: 4px 10%; 
    border-collapse: collapse; 
    border: 3px solid #1e90ff;    /* 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.        */
    display: block;         /* Fix for webkit to force 100% width.  */
}
.mbox-inside .imbox {       /* For imboxes inside other templates.  */
    margin: 4px;
}
 
table.imbox-notice {
    border: 3px solid #1e90ff;    /* Blue */
}
table.imbox-speedy {
    border: 3px solid #b22222;    /* Red */
    background: #fee;             /* Pink */
}
table.imbox-delete {
    border: 3px solid #b22222;    /* Red */
}
table.imbox-content {
    border: 3px solid #f28500;    /* Orange */
}
table.imbox-style {
    border: 3px solid #f4c430;    /* Yellow */
}
table.imbox-move {
    border: 3px solid #9932cc;    /* Purple */
}
table.imbox-protection {
    border: 3px solid #bba;       /* Gray-gold */
}
table.imbox-license {
    border: 3px solid #88a;       /* Dark gray */
    background: #f7f8ff;          /* Light gray */
}
table.imbox-featured {
    border: 3px solid #cba135;    /* Brown-gold */
}
 
/* Category message box styles */
table.cmbox {
    margin: 3px 10%;
    border-collapse: collapse;
    border: 1px solid #aaa; 
    background: #DFE8FF;    /* Default "notice" blue */
}
 
table.cmbox-notice {
    background: #D8E8FF;    /* Blue */
}
table.cmbox-speedy {
    margin-top: 4px;
    margin-bottom: 4px;
    border: 4px solid #b22222;    /* Red */
    background: #FFDBDB;          /* Pink */
}
table.cmbox-delete {
    background: #FFDBDB;    /* Red */
}
table.cmbox-content {
    background: #FFE7CE;    /* Orange */
}
table.cmbox-style {
    background: #FFF9DB;    /* Yellow */
}
table.cmbox-move {
    background: #E4D8FF;    /* Purple */
}
table.cmbox-protection {
    background: #EFEFE1;    /* Gray-gold */
}
 
/* Other pages message box styles */
table.ombox {
    margin: 4px 10%; 
    border-collapse: collapse; 
    border: 1px solid #aaa;       /* Default "notice" gray */
    background: #f9f9f9;
}
 
table.ombox-notice {
    border: 1px solid #aaa;       /* Gray */
}
table.ombox-speedy {
    border: 2px solid #b22222;    /* Red */
    background: #fee;             /* Pink */
}
table.ombox-delete {
    border: 2px solid #b22222;    /* Red */
}
table.ombox-content {
    border: 1px solid #f28500;    /* Orange */
}
table.ombox-style {
    border: 1px solid #f4c430;    /* Yellow */
}
table.ombox-move {
    border: 1px solid #9932cc;    /* Purple */
}
table.ombox-protection {
    border: 2px solid #bba;       /* Gray-gold */
}
 
/* Talk page message box styles */
table.tmbox {
    margin: 4px 10%;
    border-collapse: collapse;
    border: 1px solid #c0c090;    /* Default "notice" gray-brown */
    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)   */
    width: 100%;                 /* For Safari and Opera */
}
.mbox-inside .tmbox.mbox-small { /* "small" tmboxes should not be small when  */
    line-height: 1.5em;          /* also "nested", so reset styles that are   */   
    font-size: 100%;             /* set in "mbox-small" above.                */
}
 
table.tmbox-speedy {
    border: 2px solid #b22222;    /* Red */
    background: #fee;             /* Pink */
}
table.tmbox-delete {
    border: 2px solid #b22222;    /* Red */
}
table.tmbox-content {
    border: 2px solid #f28500;    /* Orange */
}
table.tmbox-style {
    border: 2px solid #f4c430;    /* Yellow */
}
table.tmbox-move {
    border: 2px solid #9932cc;    /* Purple */
}
table.tmbox-protection,
table.tmbox-notice {
    border: 1px solid #c0c090;    /* Gray-brown */
}
 
/* Disambig and set index box styles */
table.dmbox {
    clear: both; 
    margin: 0.9em 1em; 
    border-top: 1px solid #ccc; 
    border-bottom: 1px solid #ccc; 
    background: transparent;
}
 
/* Footer and header message box styles */
table.fmbox {
    clear: both;
    margin: 0.2em 0;
    width: 100%;
    border: 1px solid #aaa;
    background: #f9f9f9;     /* Default "system" gray */
}
table.fmbox-system {
    background: #f9f9f9;
}
table.fmbox-warning {
    border: 1px solid #bb7070;  /* Dark pink */
    background: #ffdbdb;        /* Pink */
}
table.fmbox-editnotice {
    background: transparent;
}
/* Div based "warning" style fmbox messages. */
div.mw-warning-with-logexcerpt,
div.mw-lag-warn-high,
div.mw-cascadeprotectedwarning,
div#mw-protect-cascadeon {
    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]]. */
div.mw-lag-warn-normal,
div.fmbox-system {
    clear: both;
    margin: 0.2em 0;
    border: 1px solid #aaa;
    background: #f9f9f9;
    padding: 0.25em 0.9em;
}
 
/* These mbox-small classes must be placed after all other 
   ambox/tmbox/ombox etc classes. "body.mediawiki" is so 
   they override "table.ambox + table.ambox" above. */
body.mediawiki table.mbox-small {   /* For the "small=yes" option. */
    /* @noflip */clear: right;
    /* @noflip */float: right;
    /* @noflip */margin: 4px 0 4px 1em;
    width: 238px;
    font-size: 88%;
    line-height: 1.25em;
}
body.mediawiki table.mbox-small-left {   /* For the "small=left" option. */
    /* @noflip */margin: 4px 1em 4px 0;
    width: 238px;
    border-collapse: collapse;
    font-size: 88%;
    line-height: 1.25em;
}
 
 
/* Remove default styles for [[MediaWiki:Noarticletext]]. */
div.noarticletext {
    border: none;
    background: transparent;
    padding: 0;
}
 
#wpSave {
    font-weight: bold;
}
 
/* class hiddenStructure is defunct. See [[Wikipedia:hiddenStructure]] */
.hiddenStructure {
    display: inline ! important;
    color: #f00; 
    background-color: #0f0;
}
 
/* suppress missing interwiki image links where #ifexist cannot
   be used due to high number of requests see .hidden-redlink on 
   http://meta.wikimedia.org/wiki/MediaWiki:Common.css
*/
.check-icon a.new {
    display: none; 
    speak: none;
}
 
/* Removes underlines from certain links */
.nounderlines a,
.IPA a:link, .IPA a:visited { 
    text-decoration: none !important;
}
 
/* Standard Navigationsleisten, aka box hiding thingy
   from .de.  Documentation at [[Wikipedia:NavFrame]]. */
div.NavFrame {
    margin: 0;
    padding: 4px;
    border: 1px solid #aaa;
    text-align: center;
    border-collapse: collapse;
    font-size: 95%;
}
div.NavFrame + div.NavFrame {
    border-top-style: none;
    border-top-style: hidden;
}
div.NavPic {
    background-color: #fff;
    margin: 0;
    padding: 2px;
    /* @noflip */float: left;
}
div.NavFrame div.NavHead {
    height: 1.6em;
    font-weight: bold;
    background-color: #ccf;
    position: relative;
}
div.NavFrame p,
div.NavFrame div.NavContent,
div.NavFrame div.NavContent p {
    font-size: 100%;
}
div.NavEnd {
    margin: 0;
    padding: 0;
    line-height: 1px;
    clear: both;
}
a.NavToggle {
    position: absolute;
    top: 0;
    /* @noflip */right: 3px;
    font-weight: normal;
    font-size: 90%;
}
 
/* Hatnotes and disambiguation notices */
.rellink,
.dablink {
    font-style: italic;
    /* @noflip */padding-left: 2em;
    margin-bottom: 0.5em;
}
.rellink i,
.dablink i {
    font-style: normal;
}
 
/* Style for horizontal UL lists */
.horizontal ul {
    padding: 0;
    margin: 0;
}
.horizontal li { 
    /* @noflip */padding: 0 0.6em 0 0.4em;
    display: inline;
    /* @noflip */border-right: 1px solid;
}
.horizontal li:last-child {
    /* @noflip */border-right: none;
    /* @noflip */padding-right: 0;
}
 
/* Allow transcluded pages to display in lists rather than a table.
   Compatible in Firefox; incompatible in IE6. */
.listify td    { display: list-item; }
.listify tr    { display: block; }
.listify table { display: block; }
 
/* Geographical coordinates defaults. See [[Template:Coord/link]]
   for how these are used. The classes "geo", "longitude", and
   "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; }
 
/* When <div class="nonumtoc"> is used on the table of contents,
   the ToC will display without numbers */
.nonumtoc .tocnumber { display: none; }
.nonumtoc #toc ul,
.nonumtoc .toc ul {
    line-height: 1.5em;
    list-style: none;
    margin: .3em 0 0;
    padding: 0;
}
.nonumtoc #toc ul ul, 
.nonumtoc .toc ul ul { 
    /* @noflip */margin: 0 0 0 2em; 
}
 
/* Allow limiting of which header levels are shown in a TOC;
   <div class="toclimit-3">, for instance, will limit to
   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 */
blockquote.templatequote { 
     margin-top: 0; 
}
blockquote.templatequote div.templatequotecite { 
    line-height: 1em;
    /* @noflip */text-align: left;
    /* @noflip */padding-left: 2em;
    margin-top: 0;
}
blockquote.templatequote div.templatequotecite cite {
    font-size: 85%;
}
 
/* User block messages */
div.user-block {
    padding: 5px;
    margin-bottom: 0.5em;
    border: 1px solid #A9A9A9;
    background-color: #FFEFD5;
}
 
/* Prevent line breaks in silly places: 
   1) Links when we don't want them to
   2) Bold "links" to the page itself
   2) HTML formulae
   3) Ref tags with group names <ref group="Note"> --> "[Note 1]"
*/
.nowraplinks a,
.nowraplinks .selflink,
span.texhtml,
sup.reference a { 
    white-space: nowrap;
}
 
/* For template documentation */
.template-documentation {
    clear: both;
    margin: 1em 0 0 0;
    border: 1px solid #aaa; 
    background-color: #ecfcf4; 
    padding: 1em;
}
 
/* Inline divs in ImageMaps (code borrowed from de.wiki) */
.imagemap-inline div {
    display: inline;
}
 
/* Increase the height of the image upload box */
#wpUploadDescription {
    height: 13em;
}
 
/* Reduce line-height for <sup> and <sub> */
sup, sub {
    line-height: 1em;
}
 
/* Minimum thumb width */
.thumbinner {
    min-width: 100px;
}
 
/* Makes the background of a framed image white instead of gray. */
/* Only visible with transparent images. */
div.thumb img.thumbimage {
    background-color: #fff;
}
 
/* The backgrounds for galleries. */
div#content .gallerybox div.thumb {
    background-color: #F9F9F9;   /* Light gray padding */
}
/* Put a chequered background behind images, only visible if they have transparency */
.gallerybox .thumb img,
.filehistory a img,
#file img {
    background: white 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: white;
}
 
/* Prevent floating boxes from overlapping any category listings,
   file histories, edit previews, and edit [Show changes] views */
#mw-subcategories, #mw-pages, #mw-category-media, 
#filehistory, #wikiPreview, #wikiDiff {
    clear: both;
}
 
/* Selectively hide headers in WikiProject banners */
.wpb .wpb-header             { display: none; }
.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-tag-markers {
    font-family:sans-serif;
    font-style:italic;
    font-size:90%;
}
 
/* Fix so <syntaxhighlight> tags and .css and .js pages get normal text size.
   [[Bugzilla:26204]] */
div.mw-geshi div,
div.mw-geshi div pre,
span.mw-geshi,
pre.source-css,
pre.source-javascript {
    font-family: monospace, "Courier New" !important;
}
 
/* Remove bullets when there are multiple edit page warnings */
ul.permissions-errors > li {
    list-style: none;
}
ul.permissions-errors {
    margin: 0;
}
 
/* No linewrap on the labels of the login/signup page */
body.page-Special_UserLogin .mw-label label,
body.page-Special_UserLogin_signup .mw-label label { white-space : nowrap; }
 
/* Disable the automatic text-size adjust of WebKit on iPhones etc.
   It scales some text, and not the other. Use none, or fixed percentage instead.
   Use media selector, because defining a value, overwrites platform defaults. */
@media only screen and (max-device-width: 480px) {
    body {
        -webkit-text-size-adjust: none;
    }
}
 
/* Pie chart test: Transparent borders */
.transborder {
    border: solid transparent;
}
* html .transborder {  /* IE6 */
    border: solid #000001;
    filter: chroma(color=#000001);
}
 
/* Style for horizontal lists (separator following item) */
ol.hlist, ul.hlist,
.hlist ol, .hlist ul {
    margin: 0 !important;
}
.hlist li { 
    /* @noflip */padding: 0em 0.6em 0em 0em;
    display: inline;
    background: url("//upload.wikimedia.org/wikipedia/commons/d/da/Middot.png") no-repeat right;
}
.hlist li:last-child {
    /* @noflip */padding-right: 0em;
    background: none;
}
 
/* Reduce excess space between category links.
   Remove this when bug 31547 is resolved/deployed */
#catlinks li {
    line-height: 1em;
    margin: 0.25em 0;
    padding: 0 0.5em;
}
#catlinks li:first-child {
    padding-left: 0.25em;
}
 
/* BREADCRUMB CODE FOR THE ACCOUNT CREATION PROCESS */
 
.breadcrumb {
        list-style: none;
        overflow: hidden;
        font: 14px Helvetica, Arial, Sans-Serif;
}
.breadcrumb li {
        float: left;
        margin-bottom: 0;
}
.breadcrumb li a {
        color: white;
        text-decoration: none;
        padding: 10px 0 10px 45px;
        position: relative;
        display: block;
        float: left;
}
 
.breadcrumb li a:after,
.breadcrumb li a:before {
        content: " ";
        display: block;
        width: 0;
        height: 0;
        border-top: 50px solid transparent;           /* Go big on the size, and let overflow hide */
        border-bottom: 50px solid transparent;
        position: absolute;
        top: 50%;
        margin-top: -50px;
        left: 100%;
        z-index: 2;
} 
.breadcrumb li a:before {
        border-left: 31px solid white;
        margin-left: 1px;
        z-index: 1;
}
 
.breadcrumb li:first-child a {
        padding-left: 20px;
}
 
.currentcrumb a {
        background: #069;
}
 
.currentcrumb a:after {
        border-left: 30px solid #069;
}
 
.currentcrumb a:hover, .prevcrumb a:hover, .nextcrumb a:hover {
        background: #002d44;
}
 
.currentcrumb a:hover:after, .prevcrumb a:hover:after, .nextcrumb a:hover:after { border-left-color: #002d44 !important; }
 
.prevcrumb a {
        background: #396;
}
 
.prevcrumb a:after {
        border-left: 30px solid #396;
}
 
.nextcrumb a {
        background: #999;
}
 
.nextcrumb a:after {
        border-left: 30px solid #999;
}
 
/* Makes it possible for the boxes in the Account Creation Process to overlap */
#userlogin {
margin:0;
width:90% !important;
max-width:100% !important;
padding:1.5em;
padding-top:0.75em !important;
border:0;
-moz-box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.35);
-webkit-box-shadow:  inset 0 0px 10px rgba(0, 0, 0, 0.35);
box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.35);
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-radius: 7px;
background:white;
background: #fff;
background: -moz-linear-gradient(bottom, #fff 90%, #F5F5F5 100%);
background: -webkit-gradient(linear, left bottom, left top, color-stop(90%,#fff), color-stop(100%,#F5F5F5));
background: -webkit-linear-gradient(bottom, #fff 90%,#F5F5F5 100%);
background: -o-linear-gradient(bottom, #fff 90%,#F5F5F5 100%);
background: -ms-linear-gradient(bottom, #fff 90%,#F5F5F5 100%);
background: linear-gradient(bottom, #fff 90%,#fff 100%);
 }
 
/* Hides the longer title for the listed pages */
 
body.page-MediaWiki:Customusertemplate-ACP1-Fancycaptcha-createaccount #firstHeading,
body.page-MediaWiki:Customusertemplate-ACP1-Welcomecreation #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Welcomecreation #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_History_Copyediting #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Which_skills_do_you_have_to_offer #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Geography_Copyediting #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Technology_Organizing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Technology_Searching_the_web #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Technology_Research_Writing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Technology_Copyediting #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Biology_Organizing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Biology_Searching_the_web #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Biology_Research_Writing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Biology_Copyediting #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_History_Organizing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_History_Searching_the_web #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_History_Research_Writing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Arts_Organizing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Arts_Searching_the_web #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Arts_Research_Writing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Arts_Copyediting #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Mathematics_Organizing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Mathematics_Searching_the_web #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Mathematics_Research_Writing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Mathematics_Copyediting #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Geography_Organizing #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Geography_Searching_the_web #firstHeading,
body.page-MediaWiki_Customusertemplate-ACP2-Be_a_part_of_Wikipedia_Geography_Research_Writing #firstHeading {
display: none !important;
}

.versionlist a, .versionlist .selflink { color: #B0ADAB; margin-right: 20px;}
.versionlist a { text-decoration: none; }
.versionlist a:hover { color: #333399; }