Difference between revisions of "MediaWiki:Common.css"

From Slicer Wiki
Jump to: navigation, search
Line 1: Line 1:
/* Main page fixes */
+
/**
body.page-Main_Page h1.firstHeading {
+
* Minit - A minimalistic MediaWiki skin
  display:none;
+
*
}
+
* @ingroup Skins
#interwiki-completelist {
+
* @package MediaWiki
    font-weight: bold;
+
* @download https://github.com/seongjaelee/Minit
}
+
  */
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 {
+
* Modified from the following sites:
  margin-bottom:20px;
+
* http://meyerweb.com/eric/tools/css/reset/
  display: inline;
+
* v2.0 | 20110126
 +
* License: none (public domain)
 +
  */
 +
html, body, div, span, applet, object, iframe,
 +
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 +
a, abbr, acronym, address, big, cite, code,
 +
del, dfn, em, img, ins, kbd, q, s, samp,
 +
small, strike, strong, tt, var,
 +
u, center,
 +
dl, dt, dd, ol, ul, li,
 +
fieldset, form, label, legend,
 +
table, caption, tbody, tfoot, thead, tr, th, td,
 +
article, aside, canvas, details, embed,
 +
figure, figcaption, footer, header, hgroup,
 +
menu, nav, output, ruby, section, summary,
 +
time, mark, audio, video {
 +
margin: 0;
 +
padding: 0;
 +
border: 0;
 +
font-size: 100%;
 +
font: inherit;
 +
vertical-align: baseline;
 
}
 
}
+
/* HTML5 display-role reset for older browsers */
/* Edit window toolbar */
+
article, aside, details, figcaption, figure,
#toolbar {
+
footer, header, hgroup, menu, nav, section {
    height: 22px;
+
display: block;
    margin-bottom: 6px;
 
 
}
 
}
+
ol, ul {
/* Margins for <ol> and <ul> */
+
list-style: none;
div#content ol, div#content ul,
 
div#mw_content ol, div#mw_content ul {
 
    margin-bottom: 0.5em;
 
 
}
 
}
+
blockquote, q {
/* Make the list of references smaller */
+
quotes: none;
ol.references,
 
div.reflist,
 
div.refbegin {
 
    font-size: 90%;           /* Default font-size */
 
 
}
 
}
div.reflist ol.references {
+
blockquote:before, blockquote:after,
    font-size: 100%;           /* Reset font-size when nested in div.reflist */
+
q:before, q:after {
    list-style-type: inherit; /* Enable custom list style types */
+
content: '';
 +
content: none;
 
}
 
}
+
table {
/* Highlight clicked reference in blue to help navigation */
+
border-collapse: collapse;
ol.references li:target,
+
border-spacing: 0;
sup.reference:target,
 
span.citation:target {
 
    background-color: #DEF;
 
 
}
 
}
+
/* End */
/* Ensure refs in table headers and the like aren't bold or italic */
+
 
sup.reference {
+
/**
    font-weight: normal;
+
* Modified from the following sites:
    font-style: normal;
+
* http://www.blueprintcss.org/
 +
* typography.css, form.css
 +
* v1.0.1 | 20110514
 +
* License: none (public domain)
 +
*/
 +
body, textarea {
 +
  font-size: 13px;
 +
  line-height: 20px;
 +
  color: #000;
 +
  background: #FFF;
 +
  /*font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
 +
  */
 +
  font-family: sans-serif;
 +
  direction: ltr;
 +
  unicode-bidi: embed;
 
}
 
}
+
 
/* Allow hidden ref errors to be shown by user CSS */
+
/* Headings */
span.brokenref {
+
h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
    display: none;
+
 
 +
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;
 
}
 
}
+
 
/* Styling for citations (CSS3). Breaks long urls, etc., rather than overflowing box */
+
/* Text elements */
.citation {
+
p          { margin: 0 0 20px; }
     word-wrap: break-word;
+
/*
 +
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; }
/* Default styling for titles of works, styling for the title of an article
+
caption    { background: #eee; }
   within a periodical, or a contribution within a compilation. */
+
 
cite,
+
/* Misc classes */
.citation cite.article,
+
label      { font-weight: bold; }
.citation cite.contribution {
+
fieldset   { line-height: 20px; padding:19px 1.4em 20px 1.4em; margin: 0 0 20px 0; border: 1px solid #ccc; }
    font-style: inherit;
+
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,
/* Styling for the title of any work within a citation,
+
input.text:focus, input.title:focus,
  or specifically the title of a periodical. */
+
textarea:focus {
.citation cite,
+
  border-color:#666;
.citation cite.periodical {
 
    font-style: italic;
 
 
}
 
}
+
select { background-color:#fff; border-width:1px; border-style:solid; }
/* For linked citation numbers and document IDs, where
+
 
  the number need not be shown on a screen or a handheld,
+
input:not([type]),
  but should be included in the printed version */
+
input[type=text], input[type=password], input[type=submit],
@media screen, handheld {
+
input.text, input.title,
    .citation *.printonly {
+
textarea, select {
        display: none;
+
  margin:0px 0 0px;
    }
 
 
}
 
}
   
+
 
/* Default skin for navigation boxes */
+
input.text,
table.navbox {            /* Navbox container style */
+
input.title  { width: 300px; padding:5px; }
     border: 1px solid #aaa;
+
input.title  { font-size:1.5em; }
    width: 100%;  
+
textarea      { width: 100%; padding:5px; }
    margin: auto;
+
.visualClear { clear: both; }
    clear: both;
+
/* End */
    font-size: 88%;
+
 
    text-align: center;
+
/* Minit Typography */
    padding: 1px;
+
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;
 
}
 
}
table.navbox + table.navbox { /* Single pixel border between adjacent navboxes */
+
 
    margin-top: -1px;         /* (doesn't work for IE6, but that's okay)       */
+
#globalWrapper {
 +
border-top: 0.75em solid #666;
 +
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;
 
}
 
}
.navbox-title,
+
 
.navbox-abovebelow,
+
#firstHeading {
table.navbox th {
+
padding: 10px 22em 9px 3em;
    text-align: center;      /* Title and above/below styles */
+
border-bottom: 1px solid #D0D0D0;
    padding-left: 1em;
 
    padding-right: 1em;
 
 
}
 
}
.navbox-group {             /* Group style */
+
 
    white-space: nowrap;
+
#columnContent {
    /* @noflip */text-align: right;
+
float: left;
    font-weight: bold;
+
width: 45em;
    padding-left: 1em;
+
margin: 0 3em;
    padding-right: 1em;
 
 
}
 
}
.navbox, .navbox-subgroup {
+
 
    background: #fdfdfd;     /* Background color */
+
#contentSub, #contentSub2 {
 +
width: auto;
 +
margin: 0 3em 20px;
 
}
 
}
.navbox-list {
+
 
    border-color: #fdfdfd;  /* Must match background color */
+
#content {
 
}
 
}
.navbox-title,
+
 
table.navbox th {
+
#columnOne {
    background: #ccccff;     /* Level 1 color */
+
float: left;
 +
width: 16em;
 +
margin: 0 3em 0 0;
 
}
 
}
.navbox-abovebelow,
+
 
.navbox-group,
+
#footer {
.navbox-subgroup .navbox-title {
+
border-top: 1px solid #D0D0D0;
    background: #ddddff;     /* Level 2 color */
+
margin: 20px 0 0;
 +
padding: 19px 3em 20px;
 
}
 
}
.navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow {
+
 
    background: #e6e6ff;     /* Level 3 color */
+
#footer ul { margin: 0; padding: 0; }
 +
#footer ul li { display: inline; padding: 0 1em; border-left: 1px solid #D0D0D0; }
 +
#footer ul li:first-child { padding: 0 1em 0 0; border: none; }
 +
 
 +
#toc { padding: 0; margin: 0; border: 0; }
 +
#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;
 
}
 
}
.navbox-even {
+
a.new {
    background: #f7f7f7;     /* Even row striping */
+
color: red;
 
}
 
}
.navbox-odd {
+
a.new:visited {
    background: transparent; /* Odd row striping */
+
color: red;
 
}
 
}
+
 
.collapseButton {         /* 'show'/'hide' buttons created dynamically */
+
input.historysubmit {
    /* @noflip */float: right;         /* by the CollapsibleTables javascript in    */
+
padding: 0 .3em .3em .3em !important;
    font-weight: normal;   /* [[MediaWiki:Common.js]] are styled here  */
+
font-size: 94%;
    /* @noflip */text-align: right;    /* so they can be customised.               */
+
cursor: pointer;
    width: auto;
+
height: 1.7em !important;
 +
margin-left: 1.6em;
 
}
 
}
.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.        */
+
** the main content area
+
*/
.navbar {                 /* Navbox template links */
+
 
    font-size: 88%;        /* Default font-size */
+
#siteSub {
    font-weight: normal;
+
display: none;
 
}
 
}
.navbox .navbar {
+
#jump-to-nav {
    font-size: 100%;       /* Font-size when nested within navbox */
+
display: none;
 
}
 
}
+
 
/* Infobox template style */
+
span.subpages {
.infobox {
+
display: block;
    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%;
+
/* user notification thing */
    font-weight: bold;
+
.usermessage {
 +
background-color: #ffce7b;
 +
border: 1px solid #ffa500;
 +
color: black;
 +
font-weight: bold;
 +
margin: 2em 0 1em;
 +
padding: .5em 1em;
 +
vertical-align: middle;
 
}
 
}
.infobox td,
+
#siteNotice {
.infobox th {
+
position: relative;
    vertical-align: top;
+
text-align: center;
 +
font-size: 95%;
 +
padding: 0 0.9em;
 
}
 
}
.infobox.bordered {
+
#siteNotice p {
    border-collapse: collapse;
+
margin: 0;
 +
padding: 0;
 
}
 
}
.infobox.bordered td,
+
 
.infobox.bordered th {
+
.catlinks {
    border: 1px solid #aaa;
+
border: 1px solid #aaa;
 +
background-color: #f9f9f9;
 +
padding: 5px;
 +
margin-top: 1em;
 +
clear: both;
 
}
 
}
.infobox.bordered .borderless td,
+
/* currently unused, intended to be used by a metadata box
.infobox.bordered .borderless th {
+
in the bottom-right corner of the content area */
    border: 0;
+
.documentDescription {
 +
/* The summary text describing the document */
 +
font-weight: bold;
 +
display: block;
 +
margin: 1em 0;
 +
line-height: 1.5em;
 
}
 
}
+
.documentByLine {
.infobox.sisterproject {
+
text-align: right;
    width: 20em;
+
font-size: 90%;
    font-size: 90%;
+
clear: both;
 +
font-weight: normal;
 +
color: #76797c;
 
}
 
}
+
 
.infobox.standard-talk {
+
/* emulate center */
    border: 1px solid #c0c090;
+
.center {
    background-color: #f8eaba;
+
width: 100%;
 +
text-align: center;
 
}
 
}
.infobox.standard-talk.bordered td,
+
*.center * {
.infobox.standard-talk.bordered th {
+
margin-left: auto;
    border: 1px solid #c0c090;
+
margin-right: auto;
 
}
 
}
+
 
/* styles for bordered infobox with merged rows */
+
/* images */
.infobox.bordered .mergedtoprow td,
+
/* @noflip */div.floatright, table.floatright {
.infobox.bordered .mergedtoprow th {
+
margin: 0 0 .5em .5em;
    border: 0;
+
border: 0;
    border-top: 1px solid #aaa;
+
/*
    border-right: 1px solid #aaa;
+
border: .5em solid white;
}
+
border-width: .5em 0 .8em 1.4em;
+
*/
.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;
 
 
}
 
}
+
div.floatright p { font-style: italic; }
.infobox.geography .mergedrow td,
+
/* @noflip */div.floatleft, table.floatleft {
.infobox.geography .mergedrow th {
+
margin: 0 .5em .5em 0;
    border: 0;
+
border: 0;
    padding: 0 0.6em 0.2em 0.6em;
+
/*
}
+
margin: .3em .5em .5em 0;
+
border: .5em solid white;
.infobox.geography .mergedbottomrow td,
+
border-width: .5em 1.4em .8em 0;
.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;
 
 
}
 
}
+
div.floatleft p { font-style: italic; }
/* Style rules for media list templates */
+
 
div.medialist {
+
/* thumbnails */
    min-height: 50px;
+
div.thumb {
    margin: 1em;
+
margin-bottom: 7px;
    /* @noflip */background-position: top left;
+
width: auto;
    background-repeat: no-repeat;
 
 
}
 
}
div.medialist ul {
+
div.thumbinner {
    list-style-type: none;  
+
border: 1px solid #ccc;
    list-style-image: none;
+
padding: 3px !important;
    margin: 0;
+
background-color: #f9f9f9;
 +
font-size: 94%;
 +
text-align: center;
 +
overflow: hidden;
 
}
 
}
div.medialist ul li {
+
html .thumbimage {
    padding-bottom: 0.5em;
+
border: 1px solid #ccc;
 
}
 
}
div.medialist ul li li {
+
html .thumbcaption {
    font-size: 91%;
+
border: none;
    padding-bottom: 0;
+
text-align: left;
 +
line-height: 15px;
 +
padding: 3px !important;
 +
font-size: 11px;
 
}
 
}
+
div.magnify {
/* Change the external link icon to an Adobe icon for all PDF files
+
float: right;
  in browsers that support these CSS selectors, like Mozilla and Opera */
+
border: none !important;
div#content a[href$=".pdf"].external,
+
background: none !important;
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;
 
 
}
 
}
+
div.magnify a, div.magnify img {
/* Change the external link icon to an Adobe icon anywhere the PDFlink class
+
display: block;
  is used (notably Template:PDFlink). This works in IE, unlike the above. */
+
border: none !important;
div#content span.PDFlink a,
+
background: none !important;
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;
 
 
}
 
}
+
/* @noflip */div.tright {
/* Content in columns with CSS instead of tables [[Template:Columns]] */
+
margin: 1px 0 10px 20px;
div.columns-2 div.column {
 
    /* @noflip */float: left;
 
    width: 50%;
 
    min-width: 300px;
 
 
}
 
}
div.columns-3 div.column {
+
/* @noflip */div.tleft {
    /* @noflip */float: left;
+
margin: 1px 20px 10px 0;
    width: 33.3%;
 
    min-width: 200px;
 
 
}
 
}
div.columns-4 div.column {
+
img.thumbborder {
    /* @noflip */float: left;
+
border: 1px solid #dddddd;
    width: 25%;
 
    min-width: 150px;
 
 
}
 
}
div.columns-5 div.column {
+
 
    /* @noflip */float: left;
+
/*
    width: 20%;
+
** classes for special content elements like town boxes
    min-width: 120px;
+
** 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 {
/* Messagebox templates */
+
border: 1px solid #aaa;
.messagebox {
+
background-color: #f9f9f9;
    border: 1px solid #aaa;
+
padding: 5px;
    background-color: #f9f9f9;
+
font-size: 95%;
    width: 80%;
 
    margin: 0 auto 1em auto;
 
    padding: .2em;
 
 
}
 
}
.messagebox.merge {
+
 
    border: 1px solid #c0b8cc;
+
/*
    background-color: #f0e5ff;
+
** keep the whitespace in front of the ^=, hides rule from konqueror
    text-align: center;
+
** 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;
 
}
 
}
.messagebox.cleanup {
+
#bodyContent a.external[href ^="https://"],
    border: 1px solid #9f9fff;
+
.link-https {
    background-color: #efefff;
+
/* @embed */
    text-align: center;
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeF6tjzsKg0AQhi09mimsFJLCzpNYCGKbK3gAtfUIljaCoKCCZIs8MMV2v+yCg8siWlh8zOtjhjEAEFmeIopDQtTrTJNEZIxhWysiNfULJFJjDzGnba/aBt4+wAuBzD+tg6a8SVkXf4GET96xmDxNzP39IvE/PPDtXIyVpYinv14A5F0laJ8oYFgAAAAASUVORK5CYII=) center right no-repeat;
 +
padding-right: 13px;
 
}
 
}
.messagebox.standard-talk {
+
#bodyContent a.external[href ^="mailto:"],
    border: 1px solid #c0c090;
+
.link-mailto {
    background-color: #f8eaba;
+
/* @embed */
    margin: 4px auto;
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKBAMAAAB/HNKOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADBQTFRF////////iIqF9vb26urpycfDvb275eXj2djV+/v4srKy6efio6GcqKejsa6q8fDtVM9qIQAAAAF0Uk5TAEDm2GYAAABOSURBVHheBcExDkAwGIDRL43NpJOt6a9hMdVilP8gklqsHMJmt4qeyeI03oNSNkCrAIU/7YTWbwp0zz4rTXZHxF/9YA15HTG4+4NFRNofUBMMOBBNZngAAAAASUVORK5CYII=) center right no-repeat;
 +
padding-right: 13px;
 
}
 
}
/* For old WikiProject banners inside banner shells. */
+
#bodyContent a.external[href ^="news://"] {
.mbox-inside .standard-talk,
+
/* @embed */
.messagebox.nested-talk {
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHtJREFUeF6NkEEKgCAQRT2w1wiiUxgk0SKiTe6i9oKeQXDhKSZmYAJRKeHh4j//DIp+6OAPJH6cXJRSZqSUQClViBjUKER8zXAbUhev+6Q7hMA0G1msNtIo5zxhrX3xzlNG4ravYMwBMUZsKsBsXjQIABCTHlsfTXuj8wCN3T2QBjtcwQAAAABJRU5ErkJggg==) center right no-repeat;
    border: 1px solid #c0c090;
+
padding-right: 13px;
    background-color: #f8eaba;
 
    width: 100%;
 
    margin: 2px 0;
 
    padding: 2px;
 
 
}
 
}
.messagebox.small {
+
#bodyContent a.external[href ^="ftp://"],
    width: 238px;
+
.link-ftp {
    font-size: 85%;
+
/* @embed */
    /* @noflip */float: right;
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAQAAAAnOwc2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAExJREFUeF5VyEEKwCAMAMH83o/0LT6kFHqQYqkevG1jIITs3kaQgn+A7A29ujnw5NKrsaPCrTegBBrRMzYeXkbGzsdkZRwsPWMUmEd+CkSgVeVp2OkAAAAASUVORK5CYII=) center right no-repeat;
    clear: both;
+
padding-right: 13px;
    /* @noflip */margin: 0 0 1em 1em;
 
    line-height: 1.25em;  
 
 
}
 
}
.messagebox.small-talk {
+
#bodyContent a.external[href ^="irc://"],
    width: 238px;
+
#bodyContent a.external[href ^="ircs://"],
    font-size: 85%;
+
.link-irc {
    /* @noflip */float: right;
+
/* @embed */
    clear: both;
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUeF590E0KgCAQBWAvH0TXigI3ZccQ/8H91ExqKNrAW8j7kFG27SvMyzQM9s8whuBnENdQSllFKdWFWFC01pQQwhASMMaAtXYIMQScc/0dxSXyIaPq1ZzzF6JOsKBTHOC9hxgjoQLbf2tRgekWKka5AShBSepvauUSAAAAAElFTkSuQmCC) center right no-repeat;
    /* @noflip */margin: 0 0 1em 1em;
+
padding-right: 13px;
    line-height: 1.25em;
 
    background: #F8EABA;
 
 
}
 
}
+
#bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"],
/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
+
#bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"],
th.mbox-text, td.mbox-text {   /* The message body cell(s) */
+
#bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"],
    border: none;  
+
#bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"],
    /* @noflip */padding: 0.25em 0.9em;    /* 0.9em left/right */
+
#bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"],
    width: 100%;               /* Make all mboxes the same width regardless of text length */
+
#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;
 
}
 
}
td.mbox-image {               /* The left image cell */
+
#bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"],
    border: none;  
+
#bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"],
    /* @noflip */padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
+
#bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"],
    text-align: center;  
+
#bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"],
 +
.link-video {
 +
/* @embed */
 +
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAAAAACoWZBhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAP9bkSK1AAAAXElEQVR4Xi2NMQoFMQgFvbpgHUj5LvF6K7sFQXKFsOew2G/xuylmGPn62Wb76U+ayHsTbDnrQMNrHdkZRChyi730KvK1QUWVD47gzoCOMBkXPSZrIuumseW/iKU/eKdG9xXBa10AAAAASUVORK5CYII=) center right no-repeat;
 +
padding-right: 13px;
 
}
 
}
td.mbox-imageright {          /* The right image cell */
+
#bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"],
    border: none;
+
#bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"],
    /* @noflip */padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */
+
#bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"],
    text-align: center;
+
.link-document {
}
+
/* @embed */
td.mbox-empty-cell {           /* An empty narrow cell */
+
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAQAAAAnOwc2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE5JREFUeF5lykEKgDAMBdF/+17Es/QkiosiCBURXIzJooZohmweX6gwmkCeI+Oqc2C1FnvnF2ejlQYU0tLK2NjY6f/l8V12Ti7uhFFgDj19b58EwXuqkAAAAABJRU5ErkJggg==) center right no-repeat;
    border: none;
+
padding-right: 13px;
    padding: 0px;
 
    width: 1px;
 
 
}
 
}
 
   
 
   
/* Article message box styles */
+
/* Interwiki Styling */
table.ambox {
+
#bodyContent a.extiw,
    margin: 0 10%;                  /* 10% = Will not overlap with other elements */
+
#bodyContent a.extiw:active {
    border: 1px solid #aaa;  
+
color: #36b;
    /* @noflip */border-left: 10px solid #1e90ff; /* Default "notice" blue */
+
/* Don't show icons for interwiki links */
    background: #fbfbfb;  
+
background: none;
 +
padding: 0;
 
}
 
}
table.ambox + table.ambox {     /* Single border between stacked boxes. */
+
#bodyContent a.extiw:visited {
    margin-top: -1px;
+
color: #636;
 
}
 
}
.ambox th.mbox-text,
+
#bodyContent a.extiw:active {
.ambox td.mbox-text {           /* The message body cell(s) */
+
color: #b63;
    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 */
+
/*
 +
** Structural Elements
 +
*/
 +
 
 +
/*
 +
** general portlet styles (elements in the quickbar)
 +
*/
 +
.portlet { margin: 0 0 20px; float: none; overflow: hidden; }
 +
.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; }
 +
.portlet li a { display: block; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
 +
.portlet li:hover { background-color: #f1f1f1; }
 +
.portlet li.selected { background-color: #f1f1f1; }
 +
 
 +
/*
 +
** Logo properties
 +
*/
 +
 
 +
#p-logo {
 +
top: 0;
 +
left: 0;
 +
position: absolute; /*needed to use z-index */
 +
z-index: 3;
 +
height: 155px;
 +
width: 12em;
 +
overflow: visible;
 
}
 
}
.ambox td.mbox-imageright {     /* The right image cell */
+
#p-logo h5 {
    /* @noflip */padding: 2px 0.5em 2px 0;   /* 0px left, 0.5em right */
+
display: none;
 
}
 
}
+
#p-logo a,
table.ambox-notice {
+
#p-logo a:hover {
    /* @noflip */border-left: 10px solid #1e90ff;   /* Blue */
+
display: block;
 +
height: 155px;
 +
width: 12.2em;
 +
background-repeat: no-repeat;
 +
background-position: 35% 50% !important;
 +
text-decoration: none;
 
}
 
}
table.ambox-speedy {
+
 
    /* @noflip */border-left: 10px solid #b22222;    /* Red */
+
#p-lang { position: relative; z-index: 3; }
    background: #fee;                   /* 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;
 
}
 
}
table.ambox-delete {
+
#f-poweredbyico, #f-copyrightico {
    /* @noflip */border-left: 10px solid #b22222;   /* Red */
+
margin: 0 8px;
 +
position: relative;
 +
top: -2px; /* Bump it up just a tad */
 
}
 
}
table.ambox-content {
+
#f-poweredbyico {
    /* @noflip */border-left: 10px solid #f28500;   /* Orange */
+
float: right;
 +
height: 1%;
 
}
 
}
table.ambox-style {
+
#f-copyrightico {
    /* @noflip */border-left: 10px solid #f4c430;   /* Yellow */
+
float: left;
 +
height: 1%;
 
}
 
}
table.ambox-move {
+
 
    /* @noflip */border-left: 10px solid #9932cc;   /* Purple */
+
.mw-htmlform-submit {
 +
font-weight: bold;
 +
padding-left: .3em;
 +
padding-right: .3em;
 +
margin-right: 2em;
 
}
 
}
table.ambox-protection {
+
 
    /* @noflip */border-left: 10px solid #bba;       /* Gray-gold */
+
/* js pref toc */
 +
#preftoc {
 +
margin: 0;
 +
padding: 0;
 +
width: 100%;
 +
clear: both;
 
}
 
}
+
#preftoc li {
/* Image message box styles */
+
background-color: #f0f0f0;
table.imbox {
+
color: #000;
    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. */
+
#preftoc li {
    margin: 0 -0.5em;       /* 0.9 - 0.5 = 0.4em left/right.        */
+
margin: 1px -2px 1px 2px;
    display: block;         /* Fix for webkit to force 100% width.  */
+
float: left;
 +
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;
 
}
 
}
.mbox-inside .imbox {      /* For imboxes inside other templates.  */
+
#preftoc li.selected {
    margin: 4px;
+
font-weight: bold;
 +
background-color: #f9f9f9;
 +
border: 1px solid #aaa;
 +
border-bottom: none;
 +
cursor: default;
 +
top: 1px;
 +
padding-top: 2px;
 +
margin-right: -3px;
 
}
 
}
+
#preftoc > li.selected {
table.imbox-notice {
+
top: 2px;
    border: 3px solid #1e90ff;   /* Blue */
 
 
}
 
}
table.imbox-speedy {
+
#preftoc a,
    border: 3px solid #b22222;   /* Red */
+
#preftoc a:active {
    background: #fee;             /* Pink */
+
display: block;
 +
color: #000;
 +
padding: 0 .7em;
 +
position: relative;
 +
text-decoration: none;
 
}
 
}
table.imbox-delete {
+
#preftoc li.selected a {
    border: 3px solid #b22222;   /* Red */
+
cursor: default;
 +
text-decoration: none;
 
}
 
}
table.imbox-content {
+
#preferences {
    border: 3px solid #f28500;   /* Orange */
+
margin: 0;
 +
border: 1px solid #aaa;
 +
clear: both;
 +
padding: 1.5em;
 +
background-color: #F9F9F9;
 
}
 
}
table.imbox-style {
+
.prefsection {
    border: 3px solid #f4c430;   /* Yellow */
+
border: none;
 +
padding: 0;
 +
margin: 0;
 
}
 
}
table.imbox-move {
+
 
    border: 3px solid #9932cc;   /* Purple */
+
.prefsection legend {
 +
font-weight: bold;
 
}
 
}
table.imbox-protection {
+
.prefsection table, .prefsection legend {
    border: 3px solid #bba;       /* Gray-gold */
+
background-color: #F9F9F9;
 
}
 
}
table.imbox-license {
+
.mainLegend {
    border: 3px solid #88a;       /* Dark gray */
+
display: none;
    background: #f7f8ff;          /* Light gray */
 
 
}
 
}
table.imbox-featured {
+
td.htmlform-tip {
    border: 3px solid #cba135;   /* Brown-gold */
+
font-size: x-small;
 +
padding: .2em 2em;
 +
color: #666;
 
}
 
}
+
 
/* Category message box styles */
+
.preferences-login {
table.cmbox {
+
clear: both;
    margin: 3px 10%;
+
margin-bottom: 1.5em;
    border-collapse: collapse;
 
    border: 1px solid #aaa;
 
    background: #DFE8FF;   /* Default "notice" blue */
 
 
}
 
}
+
 
table.cmbox-notice {
+
.prefcache {
    background: #D8E8FF;   /* Blue */
+
font-size: 90%;
 +
margin-top: 2em;
 
}
 
}
table.cmbox-speedy {
+
 
    margin-top: 4px;
+
div#userloginForm form,
    margin-bottom: 4px;
+
div#userlogin form#userlogin2 {
    border: 4px solid #b22222;   /* Red */
+
margin: 0 3em 1em 0;
    background: #FFDBDB;         /* Pink */
+
border: 1px solid #aaa;
 +
clear: both;
 +
padding: 1.5em 2em;
 +
background-color: #f9f9f9;
 +
float: left;
 
}
 
}
table.cmbox-delete {
+
 
    background: #FFDBDB;   /* Red */
+
div#userloginForm table,
 +
div#userlogin form#userlogin2 table {
 +
background-color: #f9f9f9;
 
}
 
}
table.cmbox-content {
+
 
    background: #FFE7CE;   /* Orange */
+
div#userloginForm h2,
 +
div#userlogin form#userlogin2 h2 {
 +
padding-top: 0;
 
}
 
}
table.cmbox-style {
+
 
    background: #FFF9DB;   /* Yellow */
+
div#userlogin .captcha,
 +
div#userloginForm .captcha {
 +
border: 1px solid #bbb;
 +
padding: 1.5em 2em;
 +
background-color: white;
 
}
 
}
table.cmbox-move {
+
 
    background: #E4D8FF;   /* Purple */
+
#loginend, #signupend {
 +
clear: both;
 
}
 
}
table.cmbox-protection {
+
 
    background: #EFEFE1;   /* Gray-gold */
+
#userloginprompt, #languagelinks {
 +
font-size: 85%;
 
}
 
}
+
 
/* Other pages message box styles */
+
#login-sectiontip {
table.ombox {
+
font-size: 85%;
    margin: 4px 10%;  
+
line-height: 1.2;
    border-collapse: collapse;  
+
padding-top: 2em;
    border: 1px solid #aaa;      /* Default "notice" gray */
 
    background: #f9f9f9;
 
 
}
 
}
+
 
table.ombox-notice {
+
#userlogin .loginText, #userlogin .loginPassword {
    border: 1px solid #aaa;       /* Gray */
+
width: 12em;
 
}
 
}
table.ombox-speedy {
+
 
    border: 2px solid #b22222;    /* Red */
+
#userloginlink a, #wpLoginattempt, #wpCreateaccount {
    background: #fee;             /* Pink */
+
font-weight: bold;
 
}
 
}
table.ombox-delete {
+
 
    border: 2px solid #b22222;   /* Red */
+
/*
 +
** IE/Mac fixes, hope to find a validating way to move this
 +
** to a separate stylesheet. This would work but doesn't validate:
 +
** @import("IEMacFixes.css");
 +
*/
 +
/* tabs: border on the a, not the div */
 +
* > html #p-cactions li { border: none; }
 +
* > html #p-cactions li a {
 +
border: 1px solid #aaa;
 +
border-bottom: none;
 
}
 
}
table.ombox-content {
+
* > html #p-cactions li.selected a { border-color: #fabd23; }
    border: 1px solid #f28500;   /* Orange */
+
/* footer icons need a fixed width */
 +
* > html #f-poweredbyico,
 +
* > html #f-copyrightico { width: 88px; }
 +
* > html #bodyContent,
 +
* > html #bodyContent pre {
 +
overflow-x: auto;
 +
width: 100%;
 +
padding-bottom: 25px;
 
}
 
}
table.ombox-style {
+
 
    border: 1px solid #f4c430;   /* Yellow */
+
/* more IE fixes */
 +
/* float/negative margin brokenness */
 +
* html div#footer {margin-top: 0;}
 +
* html div#columnContent {
 +
display: inline;
 +
margin-bottom: 0;
 
}
 
}
table.ombox-move {
+
 
    border: 1px solid #9932cc;   /* Purple */
+
/* Mac IE 5.0 fix; floated content turns invisible */
 +
* > html div#columnContent {
 +
float: none;
 
}
 
}
table.ombox-protection {
+
* > html div#columnOne {
    border: 2px solid #bba;       /* Gray-gold */
+
position: absolute;
 +
left: 0;
 +
top: 0;
 
}
 
}
+
* > html div#footer {
/* Talk page message box styles */
+
margin-left: 13.2em;
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 */
+
.redirectText {
    margin: 2px 0;               /* this declaration overrides other styles (including mbox-small above)  */
+
font-size: 150%;
    width: 100%;                 /* For Safari and Opera */
+
margin: 5px;
 
}
 
}
.mbox-inside .tmbox.mbox-small { /* "small" tmboxes should not be small when  */
+
 
    line-height: 1.5em;          /* also "nested", so reset styles that are  */ 
+
.printfooter {
    font-size: 100%;             /* set in "mbox-small" above.                */
+
display: none;
 
}
 
}
+
 
table.tmbox-speedy {
+
div.patrollink {
    border: 2px solid #b22222;   /* Red */
+
clear: both;
    background: #fee;            /* Pink */
 
 
}
 
}
table.tmbox-delete {
+
 
    border: 2px solid #b22222;   /* Red */
+
.sharedUploadNotice {
 +
font-style: italic;
 
}
 
}
table.tmbox-content {
+
 
    border: 2px solid #f28500;   /* Orange */
+
span.updatedmarker {
 +
color: black;
 +
background-color: #0f0;
 
}
 
}
table.tmbox-style {
+
 
    border: 2px solid #f4c430;   /* Yellow */
+
.editExternally {
 +
border: 1px solid gray;
 +
background-color: #ffffff;
 +
padding: 3px;
 +
margin-top: 0.5em;
 +
float: left;
 +
font-size: small;
 +
text-align: center;
 
}
 
}
table.tmbox-move {
+
.editExternallyHelp {
    border: 2px solid #9932cc;   /* Purple */
+
font-style: italic;
 +
color: gray;
 
}
 
}
table.tmbox-protection,
+
 
table.tmbox-notice {
+
.toggle {
    border: 1px solid #c0c090;   /* Gray-brown */
+
margin-left: 2em;
 +
text-indent: -2em;
 
}
 
}
+
 
/* Disambig and set index box styles */
+
/* @bug 1714 */
table.dmbox {
+
input#wpSave, input#wpDiff {
    clear: both;
+
margin-right: 0.33em;
    margin: 0.9em 1em;
 
    border-top: 1px solid #ccc;
 
    border-bottom: 1px solid #ccc;
 
    background: transparent;
 
 
}
 
}
+
 
/* Footer and header message box styles */
+
#wpSave {
table.fmbox {
+
font-weight: bold;
    clear: both;
 
    margin: 0.2em 0;
 
    width: 100%;
 
    border: 1px solid #aaa;
 
    background: #f9f9f9;     /* Default "system" gray */
 
 
}
 
}
table.fmbox-system {
+
 
    background: #f9f9f9;
+
/* noarticletext */
}
 
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 {
 
div.noarticletext {
    border: none;
+
border: 1px solid #ccc;
    background: transparent;
+
padding: 19px 1em;
    padding: 0;
 
 
}
 
}
+
 
#wpSave {
+
div#searchTargetContainer {
    font-weight: bold;
+
left:       10px;
 +
top:        10px;
 +
width:      90%;
 +
background: white;
 
}
 
}
+
 
/* class hiddenStructure is defunct. See [[Wikipedia:hiddenStructure]] */
+
div#searchTarget {
.hiddenStructure {
+
padding:   3px;
    display: inline ! important;
+
margin:     5px;
     color: #f00;  
+
background: #F0F0F0;
     background-color: #0f0;
+
border:     solid 1px blue;
 
}
 
}
+
 
/* suppress missing interwiki image links where #ifexist cannot
+
div#searchTarget ul li {
  be used due to high number of requests see .hidden-redlink on
+
list-style: none;
  http://meta.wikimedia.org/wiki/MediaWiki:Common.css
 
*/
 
.check-icon a.new {
 
    display: none;
 
    speak: none;
 
 
}
 
}
+
 
/* Removes underlines from certain links */
+
div#searchTarget ul li:before {
.nounderlines a,
+
color: orange;
.IPA a:link, .IPA a:visited {
+
content: "\00BB \0020";
    text-decoration: none !important;
 
 
}
 
}
+
 
/* Standard Navigationsleisten, aka box hiding thingy
+
div#searchTargetHide {
  from .de.  Documentation at [[Wikipedia:NavFrame]]. */
+
float:right;
div.NavFrame {
+
border:solid 1px black;
    margin: 0;
+
background:#DCDCDC;
    padding: 4px;
+
padding:2px;
    border: 1px solid #aaa;
 
    text-align: center;
 
    border-collapse: collapse;
 
    font-size: 95%;
 
 
}
 
}
div.NavFrame + div.NavFrame {
+
 
    border-top-style: none;
+
#powersearch p {
    border-top-style: hidden;
+
margin-top:0px;
 
}
 
}
div.NavPic {
+
 
    background-color: #fff;
+
div.multipageimagenavbox {
    margin: 0;
+
border: solid 1px silver;
    padding: 2px;
+
padding: 4px;
    /* @noflip */float: left;
+
margin: 1em;
 +
background: #f0f0f0;
 
}
 
}
div.NavFrame div.NavHead {
+
 
    height: 1.6em;
+
div.multipageimagenavbox div.thumb {
    font-weight: bold;
+
border: none;
    background-color: #ccf;
+
margin-left: 2em;
    position: relative;
+
margin-right: 2em;
 
}
 
}
div.NavFrame p,
+
 
div.NavFrame div.NavContent,
+
div.multipageimagenavbox hr {
div.NavFrame div.NavContent p {
+
margin: 6px;
    font-size: 100%;
 
 
}
 
}
div.NavEnd {
+
 
    margin: 0;
+
table.multipageimage td {
    padding: 0;
+
text-align: center;
    line-height: 1px;
 
    clear: both;
 
 
}
 
}
a.NavToggle {
+
 
    position: absolute;
+
.templatesUsed { margin-top: 1.5em; }
    top: 0;
+
 
    /* @noflip */right: 3px;
+
.mw-summary-preview {
    font-weight: normal;
+
margin: 0.1em 0;
    font-size: 90%;
 
 
}
 
}
+
 
/* Hatnotes and disambiguation notices */
+
/* Friendlier slave lag warnings */
.rellink,
+
div.mw-lag-warn-normal,
.dablink {
+
div.mw-lag-warn-high {
    font-style: italic;
+
padding: 3px;
    /* @noflip */padding-left: 2em;
+
text-align: center;
    margin-bottom: 0.5em;
+
margin: 3px auto;
 
}
 
}
.rellink i,
+
div.mw-lag-warn-normal {
.dablink i {
+
border: 1px solid #FFCC66;
    font-style: normal;
+
background-color: #FFFFCC;
 
}
 
}
+
div.mw-lag-warn-high {
/* Style for horizontal UL lists */
+
font-weight: bold;
.horizontal ul {
+
border: 2px solid #FF0033;
    padding: 0;
+
background-color: #FFCCCC;
    margin: 0;
 
 
}
 
}
.horizontal li {  
+
 
    /* @noflip */padding: 0 0.6em 0 0.4em;
+
.MediaTransformError {
    display: inline;
+
background-color: #ccc;
    /* @noflip */border-right: 1px solid;
+
padding: 0.1em;
 
}
 
}
.horizontal li:last-child {
+
.MediaTransformError td {
    /* @noflip */border-right: none;
+
text-align: center;
    /* @noflip */padding-right: 0;
+
vertical-align: middle;
 +
font-size: 90%;
 
}
 
}
+
 
/* Allow transcluded pages to display in lists rather than a table.
+
/* God-damned hack for the crappy layout */
  Compatible in Firefox; incompatible in IE6. */
+
.os-suggest {
.listify td    { display: list-item; }
+
font-size: 127%;
.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 {
+
/* Sometimes people don't want personal tools to be lowercase! */
    /* @noflip */margin: 0 0 0 2em;  
+
.no-text-transform {
 +
text-transform: none;
 
}
 
}
+
 
/* Allow limiting of which header levels are shown in a TOC;
+
/* Tooltips are outside of the normal body code, so this helps make the size of the text sensible */
  <div class="toclimit-3">, for instance, will limit to
+
.tipsy {
  showing ==headings== and ===headings=== but no further
+
font-size: 127%;
  (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; }
 

Revision as of 06:37, 20 February 2013

Home < MediaWiki:Common.css
/**
 * Minit - A minimalistic MediaWiki skin
 *
 * @ingroup Skins
 * @package MediaWiki
 * @download https://github.com/seongjaelee/Minit
 */

/**
 * Modified from the following sites:
 * http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0 | 20110126
 * License: none (public domain)
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End */

/**
 * Modified from the following sites:
 * http://www.blueprintcss.org/
 * typography.css, form.css
 * v1.0.1 | 20110514
 * License: none (public domain)
 */
body, textarea {
  font-size: 13px;
  line-height: 20px;
  color: #000;
  background: #FFF;
  /*font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  */
  font-family: sans-serif;
  direction: ltr;
  unicode-bidi: embed;
}

/* Headings */
h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

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

/* Text elements */
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; }
caption     { background: #eee; }

/* 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,
input.text:focus, input.title:focus,
textarea:focus {
  border-color:#666;
}
select { background-color:#fff; border-width:1px; border-style:solid; }

input:not([type]),
input[type=text], input[type=password], input[type=submit],
input.text, input.title,
textarea, select {
  margin:0px 0 0px;
}

input.text,
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
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;
}

#globalWrapper {
	border-top: 0.75em solid #666;
	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 {
	padding: 10px 22em 9px 3em;
	border-bottom: 1px solid #D0D0D0;
}

#columnContent {
	float: left;
	width: 45em;
	margin: 0 3em;
}

#contentSub, #contentSub2 {
	width: auto;
	margin: 0 3em 20px;
}

#content {
}

#columnOne {
	float: left;
	width: 16em;
	margin: 0 3em 0 0;
}

#footer {
	border-top: 1px solid #D0D0D0;
	margin: 20px 0 0;
	padding: 19px 3em 20px;
}

#footer ul { margin: 0; padding: 0; }
#footer ul li { display: inline; padding: 0 1em; border-left: 1px solid #D0D0D0; }
#footer ul li:first-child { padding: 0 1em 0 0; border: none; }

#toc { padding: 0; margin: 0; border: 0; }
#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;
}
a.new:visited {
	color: red;
}

input.historysubmit {
	padding: 0 .3em .3em .3em !important;
	font-size: 94%;
	cursor: pointer;
	height: 1.7em !important;
	margin-left: 1.6em;
}

/*
** the main content area
*/

#siteSub {
	display: none;
}
#jump-to-nav {
	display: none;
}

span.subpages {
	display: block;
}

/* user notification thing */
.usermessage {
	background-color: #ffce7b;
	border: 1px solid #ffa500;
	color: black;
	font-weight: bold;
	margin: 2em 0 1em;
	padding: .5em 1em;
	vertical-align: middle;
}
#siteNotice {
	position: relative;
	text-align: center;
	font-size: 95%;
	padding: 0 0.9em;
}
#siteNotice p {
	margin: 0;
	padding: 0;
}

.catlinks {
	border: 1px solid #aaa;
	background-color: #f9f9f9;
	padding: 5px;
	margin-top: 1em;
	clear: both;
}
/* currently unused, intended to be used by a metadata box
in the bottom-right corner of the content area */
.documentDescription {
	/* The summary text describing the document */
	font-weight: bold;
	display: block;
	margin: 1em 0;
	line-height: 1.5em;
}
.documentByLine {
	text-align: right;
	font-size: 90%;
	clear: both;
	font-weight: normal;
	color: #76797c;
}

/* emulate center */
.center {
	width: 100%;
	text-align: center;
}
*.center * {
	margin-left: auto;
	margin-right: auto;
}

/* images */
/* @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; }
/* @noflip */div.floatleft, table.floatleft {
	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; }

/* thumbnails */
div.thumb {
	margin-bottom: 7px;
	width: auto;
}
div.thumbinner {
	border: 1px solid #ccc;
	padding: 3px !important;
	background-color: #f9f9f9;
	font-size: 94%;
	text-align: center;
	overflow: hidden;
}
html .thumbimage {
	border: 1px solid #ccc;
}
html .thumbcaption {
	border: none;
	text-align: left;
	line-height: 15px;
	padding: 3px !important;
	font-size: 11px;
}
div.magnify {
	float: right;
	border: none !important;
	background: none !important;
}
div.magnify a, div.magnify img {
	display: block;
	border: none !important;
	background: none !important;
}
/* @noflip */div.tright {
	margin: 1px 0 10px 20px;
}
/* @noflip */div.tleft {
	margin: 1px 20px 10px 0;
}
img.thumbborder {
	border: 1px solid #dddddd;
}

/*
** 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;
	background-color: #f9f9f9;
	padding: 5px;
	font-size: 95%;
}

/*
** keep the whitespace in front of the ^=, hides rule from konqueror
** 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://"],
.link-https {
	/* @embed */
	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:"],
.link-mailto {
	/* @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://"] {
	/* @embed */
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHtJREFUeF6NkEEKgCAQRT2w1wiiUxgk0SKiTe6i9oKeQXDhKSZmYAJRKeHh4j//DIp+6OAPJH6cXJRSZqSUQClViBjUKER8zXAbUhev+6Q7hMA0G1msNtIo5zxhrX3xzlNG4ravYMwBMUZsKsBsXjQIABCTHlsfTXuj8wCN3T2QBjtcwQAAAABJRU5ErkJggg==) center right no-repeat;
	padding-right: 13px;
}
#bodyContent a.external[href ^="ftp://"],
.link-ftp {
	/* @embed */
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAQAAAAnOwc2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAExJREFUeF5VyEEKwCAMAMH83o/0LT6kFHqQYqkevG1jIITs3kaQgn+A7A29ujnw5NKrsaPCrTegBBrRMzYeXkbGzsdkZRwsPWMUmEd+CkSgVeVp2OkAAAAASUVORK5CYII=) center right no-repeat;
	padding-right: 13px;
}
#bodyContent a.external[href ^="irc://"],
#bodyContent a.external[href ^="ircs://"],
.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"],
#bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"],
#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"],
#bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"],
#bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"],
.link-video {
	/* @embed */
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAAAAACoWZBhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAP9bkSK1AAAAXElEQVR4Xi2NMQoFMQgFvbpgHUj5LvF6K7sFQXKFsOew2G/xuylmGPn62Wb76U+ayHsTbDnrQMNrHdkZRChyi730KvK1QUWVD47gzoCOMBkXPSZrIuumseW/iKU/eKdG9xXBa10AAAAASUVORK5CYII=) center right no-repeat;
	padding-right: 13px;
}
#bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"],
#bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"],
#bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"],
.link-document {
	/* @embed */
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAQAAAAnOwc2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE5JREFUeF5lykEKgDAMBdF/+17Es/QkiosiCBURXIzJooZohmweX6gwmkCeI+Oqc2C1FnvnF2ejlQYU0tLK2NjY6f/l8V12Ti7uhFFgDj19b58EwXuqkAAAAABJRU5ErkJggg==) center right no-repeat;
	padding-right: 13px;
}
 
/* Interwiki Styling */
#bodyContent a.extiw,
#bodyContent a.extiw:active {
	color: #36b;
	/* Don't show icons for interwiki links */
	background: none;
	padding: 0;
}
#bodyContent a.extiw:visited {
	color: #636;
}
#bodyContent a.extiw:active {
	color: #b63;
}

/*
** Structural Elements
*/

/*
** general portlet styles (elements in the quickbar)
*/
.portlet { margin: 0 0 20px; float: none; overflow: hidden; }
.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; }
.portlet li a { display: block; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.portlet li:hover { background-color: #f1f1f1; }
.portlet li.selected { background-color: #f1f1f1; }

/*
** Logo properties
*/

#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;
}
#p-logo a,
#p-logo a:hover {
	display: block;
	height: 155px;
	width: 12.2em;
	background-repeat: no-repeat;
	background-position: 35% 50% !important;
	text-decoration: none;
}

#p-lang { position: relative; z-index: 3; }

/* 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 {
	margin: 0 8px;
	position: relative;
	top: -2px; /* Bump it up just a tad */
}
#f-poweredbyico {
	float: right;
	height: 1%;
}
#f-copyrightico {
	float: left;
	height: 1%;
}

.mw-htmlform-submit {
	font-weight: bold;
	padding-left: .3em;
	padding-right: .3em;
	margin-right: 2em;
}

/* js pref toc */
#preftoc {
	margin: 0;
	padding: 0;
	width: 100%;
	clear: both;
}
#preftoc li {
	background-color: #f0f0f0;
	color: #000;
}
#preftoc li {
	margin: 1px -2px 1px 2px;
	float: left;
	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;
	background-color: #f9f9f9;
	border: 1px solid #aaa;
	border-bottom: none;
	cursor: default;
	top: 1px;
	padding-top: 2px;
	margin-right: -3px;
}
#preftoc > li.selected {
	top: 2px;
}
#preftoc a,
#preftoc a:active {
	display: block;
	color: #000;
	padding: 0 .7em;
	position: relative;
	text-decoration: none;
}
#preftoc li.selected a {
	cursor: default;
	text-decoration: none;
}
#preferences {
	margin: 0;
	border: 1px solid #aaa;
	clear: both;
	padding: 1.5em;
	background-color: #F9F9F9;
}
.prefsection {
	border: none;
	padding: 0;
	margin: 0;
}

.prefsection legend {
	font-weight: bold;
}
.prefsection table, .prefsection legend {
	background-color: #F9F9F9;
}
.mainLegend {
	display: none;
}
td.htmlform-tip {
	font-size: x-small;
	padding: .2em 2em;
	color: #666;
}

.preferences-login {
	clear: both;
	margin-bottom: 1.5em;
}

.prefcache {
	font-size: 90%;
	margin-top: 2em;
}

div#userloginForm form,
div#userlogin form#userlogin2 {
	margin: 0 3em 1em 0;
	border: 1px solid #aaa;
	clear: both;
	padding: 1.5em 2em;
	background-color: #f9f9f9;
	float: left;
}

div#userloginForm table,
div#userlogin form#userlogin2 table {
	background-color: #f9f9f9;
}

div#userloginForm h2,
div#userlogin form#userlogin2 h2 {
	padding-top: 0;
}

div#userlogin .captcha,
div#userloginForm .captcha {
	border: 1px solid #bbb;
	padding: 1.5em 2em;
	background-color: white;
}

#loginend, #signupend {
	clear: both;
}

#userloginprompt, #languagelinks {
	font-size: 85%;
}

#login-sectiontip {
	font-size: 85%;
	line-height: 1.2;
	padding-top: 2em;
}

#userlogin .loginText, #userlogin .loginPassword {
	width: 12em;
}

#userloginlink a, #wpLoginattempt, #wpCreateaccount {
	font-weight: bold;
}

/*
** IE/Mac fixes, hope to find a validating way to move this
** to a separate stylesheet. This would work but doesn't validate:
** @import("IEMacFixes.css");
*/
/* tabs: border on the a, not the div */
* > html #p-cactions li { border: none; }
* > html #p-cactions li a {
	border: 1px solid #aaa;
	border-bottom: none;
}
* > html #p-cactions li.selected a { border-color: #fabd23; }
/* footer icons need a fixed width */
* > html #f-poweredbyico,
* > html #f-copyrightico { width: 88px; }
* > html #bodyContent,
* > html #bodyContent pre {
	overflow-x: auto;
	width: 100%;
	padding-bottom: 25px;
}

/* more IE fixes */
/* float/negative margin brokenness */
* html div#footer {margin-top: 0;}
* html div#columnContent {
	display: inline;
	margin-bottom: 0;
}

/* Mac IE 5.0 fix; floated content turns invisible */
* > html div#columnContent {
	float: none;
}
* > html div#columnOne {
	position: absolute;
	left: 0;
	top: 0;
}
* > html div#footer {
	margin-left: 13.2em;
}
.redirectText {
	font-size: 150%;
	margin: 5px;
}

.printfooter {
	display: none;
}

div.patrollink {
	clear: both;
}

.sharedUploadNotice {
	font-style: italic;
}

span.updatedmarker {
	color: black;
	background-color: #0f0;
}

.editExternally {
	border: 1px solid gray;
	background-color: #ffffff;
	padding: 3px;
	margin-top: 0.5em;
	float: left;
	font-size: small;
	text-align: center;
}
.editExternallyHelp {
	font-style: italic;
	color: gray;
}

.toggle {
	margin-left: 2em;
	text-indent: -2em;
}

/* @bug 1714 */
input#wpSave, input#wpDiff {
	margin-right: 0.33em;
}

#wpSave {
	font-weight: bold;
}

/* noarticletext */
div.noarticletext {
	border: 1px solid #ccc;
	padding: 19px 1em;
}

div#searchTargetContainer {
	left:       10px;
	top:        10px;
	width:      90%;
	background: white;
}

div#searchTarget {
	padding:    3px;
	margin:     5px;
	background: #F0F0F0;
	border:     solid 1px blue;
}

div#searchTarget ul li {
	list-style: none;
}

div#searchTarget ul li:before {
	color: orange;
	content: "\00BB \0020";
}

div#searchTargetHide {
	float:right;
	border:solid 1px black;
	background:#DCDCDC;
	padding:2px;
}

#powersearch p {
	margin-top:0px;
}

div.multipageimagenavbox {
	border: solid 1px silver;
	padding: 4px;
	margin: 1em;
	background: #f0f0f0;
}

div.multipageimagenavbox div.thumb {
	border: none;
	margin-left: 2em;
	margin-right: 2em;
}

div.multipageimagenavbox hr {
	margin: 6px;
}

table.multipageimage td {
	text-align: center;
}

.templatesUsed { margin-top: 1.5em; }

.mw-summary-preview {
	margin: 0.1em 0;
}

/* Friendlier slave lag warnings */
div.mw-lag-warn-normal,
div.mw-lag-warn-high {
	padding: 3px;
	text-align: center;
	margin: 3px auto;
}
div.mw-lag-warn-normal {
	border: 1px solid #FFCC66;
	background-color: #FFFFCC;
}
div.mw-lag-warn-high {
	font-weight: bold;
	border: 2px solid #FF0033;
	background-color: #FFCCCC;
}

.MediaTransformError {
	background-color: #ccc;
	padding: 0.1em;
}
.MediaTransformError td {
	text-align: center;
	vertical-align: middle;
	font-size: 90%;
}

/* God-damned hack for the crappy layout */
.os-suggest {
	font-size: 127%;
}

/* Sometimes people don't want personal tools to be lowercase! */
.no-text-transform {
	text-transform: none;
}

/* Tooltips are outside of the normal body code, so this helps make the size of the text sensible */
.tipsy {
	font-size: 127%;
}