/******************************************************************
 * wikitable.css
 * CSS rules to define the .wikitable CSS class, provided as a
 * backwards-compatibility shim by the WikiDB extension.
 * Only output on MediaWiki versions prior to 1.16.
 * From 1.16 onwards, this class is available via the built-in
 * stylesheets.
 * The style rules below were taken from MediaWiki v1.16.
 ******************************************************************
 */

/* wikitable class for skinning normal tables */
table.wikitable {
    margin: 1em 1em 1em 0;
    background: #f9f9f9;
    border: 1px #aaa solid;
    border-collapse: collapse;
}
.wikitable th, .wikitable td {
    border: 1px #aaa solid;
    padding: 0.2em;
}
.wikitable th {
    background: #f2f2f2;
    text-align: center;
}
.wikitable caption {
    font-weight: bold;
}

/******************************************************************
 * END: wikitable.css
 ******************************************************************
 */