/** CSS placed here will be applied to all skins */

=== Táblázatok ===
<pre> */
/* let's make a class that deals with tables better 
   Any complaints, please message Ta bu shi da yu */

table.prettytable { 
  border-collapse: collapse; 
  background: #f9f9f9; 
  margin-left: 10px; 
  margin-right: 10px; 
  margin-top: 5px; 
  margin-bottom: 5px; 
  padding: 5px;
  vertical-align: top;
  text-align: left;
} 

table.prettytable td,
table.prettytable th { 
  border: 1px solid #ccc; 
}

table.prettytable th {
  background: #efefef;
  font-weight: bold;
  text-align: center;
}

/* Alternate version of pretty table styling class.  We'll remove the extra when we're done deciding all this. */

table.wikitable {
  margin: 1em 1em 1em 0;
  background: #f9f9f9;
  border: 1px #aaaaaa solid;
  border-collapse: collapse;
}
table.wikitable th, table.wikitable td {
  border: 1px #aaaaaa solid;
  padding: 0.2em;
}
table.wikitable th {
  background: #f2f2f2;
  text-align: center;
}
table.wikitable caption {
  margin-left: inherit;
  margin-right: inherit;
}

/* </pre>