 /* 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; 
 }
 li #credits {  
     white-space: normal; 
 }


/* Mark redirects in Special:Allpages and Special:Watchlist */

 .allpagesredirect {
       font-style: italic;
 }

 .watchlistredir {
       font-style: italic;
 }

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

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

 table.wikitable th, table.wikitable td,
 table.prettytable th, table.prettytable td {
  border: 1px #aaaaaa 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-size: larger;
  font-weight: bold;
 }

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