/***** CSS placed here will be applied to all skins on the entire site. *****/

/* See also: [[MediaWiki:Monobook.css]], [[MediaWiki:Quartz.css]], [[MediaWiki:Monaco.css]] */
/* Transparent background for logo */
.logoContainer { background-color: transparent!important; }

/* Mark redirects in Special:Allpages and Special:Watchlist */
.allpagesredirect { font-style: italic; }
.watchlistredir { font-style: italic; }

/* Infobox template style */
.infobox {
   border: 1px solid #aaaaaa;
   background-color: #f9f9f9;
   color: black;
   margin-bottom: 0.5em;
   margin-left: 1em;
   padding: 0.2em;
   float: right;
   clear: right;
}
.infobox td,
.infobox th {
   vertical-align: top;
}
.infobox caption {
   font-size: larger;
   margin-left: inherit;
}
.infobox.bordered {
   border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
   border: 1px solid #aaaaaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
   border: 0;
}

/* Forum formatting (by -Algorithm & -Splaka) */
.forumheader {
     border: 1px solid #aaa;
     background-color: #f9f9f9; margin-top: 1em; padding: 12px;
}
.forumlist td.forum_edited a {
     color: black; text-decoration: none
}
.forumlist td.forum_title a {
     padding-left: 20px;
}
.forumlist td.forum_title a.forum_new {
     font-weight: bold; background: url(/images/4/4e/Forum_new.gif)
     center left no-repeat; padding-left: 20px;
}
.forumlist td.forum_title a.forum_new:visited {
     font-weight: normal; background: none; padding-left: 20px;
}
.forumlist th.forum_title {
     padding-left: 20px;
}

/* Recent changes byte indicators */
.mw-plusminus-pos { color: #006500; }
.mw-plusminus-neg { color: #8B0000; }

/* make the list of references look smaller */
ol.references {
   font-size: 100%;
}

.references-small { font-size: 90%;}

/* VALIDATOR NOTICE: the following is correct, but the W3C validator doesn't accept it */
/* -moz-* is a vendor-specific extension (CSS 2.1 4.1.2.1) */
/* column-count is from the CSS3 module "CSS Multi-column Layout" */
/* Please ignore any validator errors caused by these two lines */
.references-2column {
  font-size: 90%;
  -moz-column-count:2;
  column-count:2;
}

.same-bg { background: none }

/* Highlight clicked reference in blue to help navigation */

ol.references > li:target {
 background-color: #DEF;
}

sup.reference:target { 
  background-color: #DEF;
}

/* wikitable/prettytable class for skinning normal tables */

table.wikitable,
table.prettytable {
  margin: 1em 1em 1em 0;
  background: #f9f9f9;
  border: 1px #aaa solid;
  border-collapse: collapse;
}

table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
  border: 1px #aaa solid;
  padding: 0.2em;
}

table.wikitable th,
table.prettytable th {
  background: #f2f2f2;
  text-align: center;
}

table.wikitable caption,
table.prettytable caption {
  margin-left: inherit;
  margin-right: inherit;
  font-weight: bold;
}

/* Put a checker background at the image description page only visible if the image has transparent background */

#file img {background: url("http://upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png") repeat;}

/* Removes underlines from links */
.nounderlinelinks a { 
  text-decoration: none;
}

/* 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 { 
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-2 {display:none;}
.toclimit-3 .toclevel-3 {display:none;}
.toclimit-4 .toclevel-4 {display:none;}
.toclimit-5 .toclevel-5 {display:none;}
.toclimit-6 .toclevel-6 {display:none;}
.toclimit-7 .toclevel-7 {display:none;}

/* For positioning icons at top-right*/

div.topicon {
  position:absolute; 
  z-index:100; 
  top:10px;
  display: block !important;
}

/* M icon in category box */

#catlinks { 
    background-image: url(/images/4/4f/Cat_M.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}

/* Hides the section edit link when the heading is enclosed in <span class="hideedit">==Heading==</span> */
/* By [[w:User:Skizzerz]] */
.hideedit .sectionedit { display:none !important }

/* SigExpand + */
.sighidden { display: none }
.sigexpand:hover .sighidden { display: inline !important }
.sigexpand:hover .sigshown { display: none !important }

/* Optional styles for Folding MultiWiki Tabs */
/** Folding wiki tabs: folder-like tab style **/
/** These make the links look like folder tabs, sort of like the monobook p-caction tabs. **/
/** enable by adding the class "foldertabs" to the folding tab classes **/
/** so it would be like <div class="foldtabSet foldertabs"> **/
.foldertabs .foldtabSet {
  position: relative;
}
.foldertabs .foldtabBox {
  padding:.5em;
  background-color:#ffffff;
  overflow:auto;
  border:1px solid #0000aa;
  position: relative;
  z-index: 1;
}
.foldertabs .foldtabHead a { 
  border:1px solid #0000aa; 
  padding:.13em 1em;
  background-color:#e0e0ff;
  -moz-border-radius-topleft:.35em;
  -moz-border-radius-topright:.35em;
  text-decoration:none;
  color:#0000aa;
  font-size:150%;
  position: relative;
  z-index: 0;
}
.foldertabs .foldtabHead a.selected { 
  border-width:2px;
  border-bottom:none;
  background-color:#ffffff;
  z-index: 2;
}
.foldertabs .foldtabHead p { padding:0;margin:0; }

/** Folding wiki tabs: inset box style **/
/** These make the links and content look more like inset/outset boxes (sort of like in Special:Preferences) **/
/** enable by adding the class "insettabs" to the folding tab classes **/
/** so it would be like <div class="foldtabSet insettabs"> **/
.insettabs .foldtabSet {
}
.insettabs .foldtabBox {
  padding:.5em;
  background-color:#fffff2;
  border:2px inset grey;
}
.insettabs .foldtabHead {
  padding-bottom:10px;
}
.insettabs .foldtabHead a { 
  border:2px outset grey;
  padding:8px;
  text-decoration:none;
  background-color:#f2f2f2;
}
.insettabs .foldtabHead a.selected { 
  border:2px inset grey;
  background-color:#f2f2f2;
  font-weight:bold;
}
.insettabs .foldtabHead p { padding:0;margin:0; }

/* Card <gallery> coloring. */
.card-galleries {
	border-collapse: collapse;
	border: 1px solid #CCCCCC;
	margin: 0px auto;
}
.card-galleries th {
	background: #800000;
	color: #FFFF00;
	border: 1px solid #999999;
	margin: 0px;
	padding: 3px;
}
.card-galleries td {
	margin: 0px;
	padding: 0px;
}
.card-galleries table.gallery {
	width: 100%;
	margin: 0px;
	border: 0px;
}
.card-galleries table.gallery td {
	background: transparent;
}
.card-galleries table.gallery .gallerybox {
	background: #F9F9F9;
	border: 1px solid #CCCCCC;
	margin: 0px auto;
}
.card-galleries table.gallery .gallerybox .thumb {
	background: transparent;
	border: 0px;
	margin: 0px auto;
	padding: 10px 0px 0px !important;
}

.card-galleries table.gallery .gallerytext pre {
	border: 0px;
	background: transparent;
	white-space: normal;
	text-align: center;
	font: smaller sans-serif;
	padding: 0px;
}

/*
* For the card template when a page doesn't exist
* Adds a (create) link, hidden by default
* Put .t-card-create { display: inline !important; }
* In your user /skinname.css subpage to show it
*/
.t-card-create { display: none; }

/*
* Spoiler template stylings
*/
.spoiler_box {
	background-color:#fcddaa;
	border:1px solid #000000;
	vertical-align: top;
	margin-bottom: 1em;
	padding-bottom: 1em;
}

.spoiler_box .NavFrame {
	background-color:#FFEFDF;
	border:1px dotted #000000;
	width:98%;
	margin:auto;
	clear:both
}

.spoiler_box .NavHead {
	position: relative;
	font-weight: bolder;
	font-size: larger
}

/**
* Decklist stylings by [[User:Skizzerz]]
*/
table.decklist { 
  padding: 0;
  margin: 0;
}
table.decklist th {
  background: url(http://images.wikia.com/mtg/images/f/f6/Magic_galvtile2.jpg) repeat;
  text-align: left;
  margin: 0;
  padding: 5px;
  border-bottom: 1px solid black;
}
table.decklist th .title {
  font-weight: bold;
  font-size: 18pt;
}
table.decklist th .subtitle {
  font-weight: normal;
  font-size: 12pt;
}
table.decklist td {
  vertical-align: top;
  text-align: left;
  padding: 5px;
  margin: 0;
}
table.decklist td.deck {
  background: url(http://images.wikia.com/mtg/images/5/5f/Magic_galvtile.jpg) repeat;
}
table.decklist td .smaller {
  font-size: smaller;
}
table.decklist td.sideboard {
  background: url(http://images.wikia.com/mtg/images/7/75/Magic_statback.jpg) repeat;
}
table.decklist td.border-corner {
  height: 10px;
  width: 10px;
  padding: 0;
}
table.decklist td.border-side {
  width: 10px;
  padding: 0;
}
table.decklist td.border-top {
  height: 10px;
  padding: 0;
}
table.decklist td.topleft {
  background: url(http://images.wikia.com/mtg/images/4/46/Deck_topleft.jpg) no-repeat;
}
table.decklist td.topright {
  background: url(http://images.wikia.com/mtg/images/e/e0/Deck_topright.jpg) no-repeat;
}
table.decklist td.bottomleft {
  background: url(http://images.wikia.com/mtg/images/1/1d/Deck_bottomleft.jpg) no-repeat;
}
table.decklist td.bottomright {
  background: url(http://images.wikia.com/mtg/images/0/00/Deck_bottomright.jpg) no-repeat;
}
table.decklist td.top {
  background: url(http://images.wikia.com/mtg/images/9/9c/Deck_top.jpg) repeat-x;
}
table.decklist td.bottom {
  background: url(http://images.wikia.com/mtg/images/c/ca/Deck_bottom.jpg) repeat-x;
}
table.decklist td.left {
  background: url(http://images.wikia.com/mtg/images/a/aa/Deck_left.jpg) repeat-y;
}
table.decklist td.right {
  background: url(http://images.wikia.com/mtg/images/e/ee/Deck_right.jpg) repeat-y;
}
table.decklist hr {
  border-bottom: 1px solid grey;
  width: 50%;
}
table.decklist ul {
  list-style-image: none;
  list-style-type: none;
}

#user_masthead_head small { display: none !important; }
#user_masthead_scorecard { display: none !important; }