/*
CSS placed here will be applied to all skins 

See also: [[MediaWiki:Monobook.css]], [[MediaWiki:Quartz.css]], [[MediaWiki:Monaco.css]].

==Common.css==
<pre style="height: 20em;overflow: auto;"><nowiki> 
*/

/* Mark redirects in Special:Allpages and Special:Watchlist */
.allpagesredirect:after,
.watchlistredir:after {
	content: " (redirect)"}
.allpagesredirect a,
.watchlistredir a {
	background: url(http://images.wikia.com/dofus/images/5/5c/Allpagesredirect.gif) center left no-repeat; 
	padding-left: 13px;}
.allpagesredirect,
.watchlistredir {
	font-style: italic;}

/*~ Remove Checker Background on transparent images in galleries ~*/
.gallerybox .thumb img {	background: none;}

/*~ Checker Background and hover effect for transparent images on images namespace ~*/
body.ns-6 #file img {background:transparent url(/skins/common/images/Checker-16x16.png) repeat fixed 0 0;}
body.ns-6 #file img:hover,
body.ns--1 .gallerybox img:hover /*~ images on galleries on special namespace ~*/
{background:#333333 none repeat scroll 0 0;}

/*~ Scrollable when exceed, and space fix for template displays ~*/
pre {	overflow: auto;
	padding:0.5em;
}

/*~ Add/delete number colors on Recent Changes ~*/
.mw-plusminus-pos {	color: #1E90FF;} 
.mw-plusminus-neg {	color: #E42217;}
.mw-plusminus-null {	color: #555555;} 

/*~ Cleans Main page heading ~*/
.page-Dofus_Wiki #lastmod,
.page-Dofus_Wiki #siteSub,
.page-Dofus_Wiki #contentSub,
.page-Dofus_Wiki h1.firstHeading { display: none !important; }

/*~ styling for MediaWiki:Edittools ~*/
#edittools,
#editpage-specialchars {
	border:2px solid #F0F0F0;
	background:#F9F9F9;
}

/*~ erg i dont remember whats this is for ~*/
.messagebox {
	border: 1px solid #aaa;
	background-color: #f9f9f9;
	width: 80%;
	margin: 0 auto 1em auto;
	padding: .2em;
}

/* wikitable/prettytable class for skinning normal tables */
#content table.wikitable,
#article table.wikitable {
	margin: 1em 1em 1em 0;
	background: #f9f9f9;
	border: 1px #aaa solid;
	border-collapse: collapse;
}
table.wikitable th,
table.wikitable td {
	border: 1px #aaa solid;
	padding: 0.2em;
}
table.wikitable th {
	background: #f2f2f2;
	text-align: center;
}
table.wikitable caption {
	font-weight: bold;
}

/*~ Something about plain links ~*/
/*Add formatting to make sure that "external references" from [[Template:Ref]] do
  not get URL expansion, not even when printed. The mechanism up to MediaWiki 1.4 was
  that the HTML code contained a SPAN following the anchor A; this SPAN had the class
  "urlexpansion", which was not displayed on screen, but was shown when the medium was
  "print". The rules below ensure (a) that there is no extra padding to the right of
  the anchor (displayed as "[<number>]"), (b) that there is no "external link arrow" for
  the link, and (c) that this SPAN of class "urlexpansion" is never shown.
  ~~~~
*/
.plainlinksneverexpand {
	background: none ! important;
	padding: 0 ! important;
}
 
.plainlinksneverexpand .urlexpansion {
	display: none ! important;
}
/* Make sure that ext links displayed within "plainlinksneverexpand" don't get
   the arrow...
*/
.plainlinksneverexpand a {
	background: none !important;
	padding: 0 !important;
}
/* With MediaWiki 1.5, the mechanism has changed: instead of a SPAN of class "urlexpansion"
   following the anchor A, the anchor itself now has class "external autonumber" and the
   expansion is inserted when printing (see the common printing style sheet at
   http://en.wikipedia.org/skins-1.5/common/commonPrint.css) using the ":after" pseudo-
   element of CSS. We have to switch this off for links due to Template:Ref!
   ~~~~
*/
.plainlinksneverexpand a.external.text:after {
	display: none !important;
}
.plainlinksneverexpand a.external.autonumber:after {
	display: none !important;
}

/*~ Tooltip ~*/
span.Tooltip{
	position:relative; /*this is the key*/
	z-index:24;
	text-decoration:none
}
span.Tooltip:hover{z-index:25;} /*this is text change, when user hovers it*/
span.Tooltip span{display: none}
span.Tooltip:hover span{ /*flying textbox*/
	display:block;
	position:absolute;
	top:7px; left:7px;
	border:1px solid #6699ff;
	background-color: #ccccff;
	opacity: 0.9; filter: ALPHA(Opacity=90);
	text-align: center
}

/* ~ spoiler class ~*/
.spoiler a {
	text-decoration: none;
	color: #f9f9f9;
	background: none;
}

/* default skin for navigation boxes */
table.navbox {
	background-color: #f9f9f9;
	border: 1px solid #aaa;
	clear: both;
	font-size: 100%;
	margin: 1em 0em 0em;
	padding: 2px;
	text-align: center;
	width: 100%;
}
table.navbox th {
	background-color: #ccf;
	padding-left: 1em;
	padding-right: 1em;
}
table.navbox tr:not(:first-child) th {
	background-color: #ddf;
}
@media print {
    .navbox {
	display: none;
    }
}

/* Standard Navigationsleisten, aka box hiding thingy from .de.  Documentation at [[Wikipedia:NavFrame]]. */
div.Boxmerge,
div.NavFrame {
	margin: 0px;
	padding: 4px;
	border: 1px solid #aaa;
	text-align: center;
	border-collapse: collapse;
	font-size: 100%;
}
div.Boxmerge div.NavFrame {
	border-style: none;
	border-style: hidden;
}
div.NavFrame + div.NavFrame {
	border-top-style: none;
	border-top-style: hidden;
}
div.NavPic {
	background-color: #fff;
	margin: 0px;
	padding: 2px;
	float: left;
}
div.NavFrame div.NavHead {
	height: 1.6em;
	font-weight: bold;
	background-color: #ccccff;
	position:relative;
}
div.NavFrame p {
	font-size: 100%;
}
div.NavFrame div.NavContent {
	font-size: 100%;
	text-align: left;
}
div.NavFrame div.NavContent p {
	font-size: 100%;
	text-align: left;
}
div.NavEnd {
	margin: 0px;
	padding: 0px;
	line-height: 1px;
	clear: both;
}
a.NavToggle {
	position:absolute;
	top:0px;
	right:3px;
	font-weight:normal;
	font-size:smaller;
}

/* Users Bot name coloring */
table.diff a[title="User:CizBot"],	ul#pagehistory li a[title="User:CizBot"],ul.special li a[title="User:CizBot"],
table.diff a[title="User:LiriBot"],	ul#pagehistory li a[title="User:LiriBot"],ul.special li a[title="User:LiriBot"]
{ color: Gray;}

/* Users Admins name coloring */
table.diff a[title="User:Cizagna"],	ul#pagehistory li a[title="User:Cizagna"], ul.special li a[title="User:Cizagna"],
table.diff a[title="User:Lirielle"],	ul#pagehistory li a[title="User:Lirielle"], ul.special li a[title="User:Lirielle"],
table.diff a[title="User:GroundZzero"],	ul#pagehistory li a[title="User:GroundZzero"], ul.special li a[title="User:GroundZzero"],
table.diff a[title="User:Galrauch"],	ul#pagehistory li a[title="User:Galrauch"], ul.special li a[title="User:Galrauch"],
table.diff a[title="User:Squirrelladventures"],	ul#pagehistory li a[title="User:Squirrelladventures"], ul.special li a[title="User:Squirrelladventures"]
{ font-weight:bold;color:#009900;}

/*~ SiteNotice improve in space ~*/
#siteNotice {	font-family:"Trebuchet MS";}
#siteNotice td { width:95%; }

/* TabView extension */
.yui-content {	background-color: #EDF5FF; /*border: solid 1px;*/ padding: 0.25em 0.5em;}
.yui-nav {	border-color:#EDF5FF; border-style:solid; border-width:0pt 0pt 5px; margin: 0px !important;}
.yui-skin-sam .yui-navset .yui-nav, .yui-skin-sam .yui-navset .yui-navset-top .yui-nav { border-color:#EDF5FF; border-style:solid; border-width:0pt 0pt 5px;}
.yui-navset .yui-nav .selected {	background-color: #EDF5FF;}
.yui-navset .yui-nav li {		padding-left: 10px; padding-right: 10px;}

/* Forum formatting -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;}

/* remove talk link from forum namespace (monobooks/newskins/quartzskins/monaco) -Splarka */
body.ns-110 #ca-talk, body.ns-110 #this_talk, body.ns-110 #page_tabs li+li  { display: none;}

/*~ H's not appearing behind floating objects ~*/
h1, h2, h3, h4, h5, h6 {	overflow:hidden; }

/* </nowiki> </pre> */