/* --------------------------------------------------------------
 
 typography.css
 * Sets up some sensible default typography.
 
 Based on work by:
 * Nathan Borror     [playgroundblues.com]
 * Jeff Croft        [jeffcroft.com]
 * Christian Metts   [mintchaos.com]
 * Wilson Miner      [wilsonminer.com]
 * Richard Rutter    [clagnut.com]
 
 Read more about using a baseline here:
 * alistapart.com/articles/settingtypeontheweb
 
 -------------------------------------------------------------- */
/* This is where you set your desired font size. The line-heights
 and vertical margins are automatically calculated from this.
 The percentage is of 16px (0.75 * 16px = 12px). */

body {
    font-size: 75%;
    color: #222;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
}
/* Headings
 -------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h1 {
    font-size: 2em;
    line-height: 1;
    margin-bottom: 0.6em;
}

h2 {
    font-size: 1.6em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.4em;
    line-height: 1;
    margin-bottom: 0.4em;
}

h4 {
    font-size: 1.2em;
    line-height: 1.25;
    margin-bottom: 0.3em;
}

h5 {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 0.2em;
}

h6 {
    font-size: 1em;
    font-weight: bold;
}
/* Text elements
 -------------------------------------------------------------- */
.maincontent p {
    margin: 0 0 1em;
}

ul, ol {
    margin: 0.1em 3em 0.1em 3em;
}

ol {
    list-style-type: decimal;
}

dl {
    margin: 0 0 1.5em 0;
}

dl dt {
    font-weight: bold;
}

dd {
    margin-left: 1.5em;
}

abbr, acronym {
    border-bottom: 1px dotted #666;
}

address {
    margin-top: 1.5em;
    font-style: italic;
}

del {
    color: #666;
}

blockquote {
    margin: 1.5em;
    color: #666;
    font-style: italic;
}

strong {
    font-weight: bold;
}

em, dfn {
    font-style: italic;
}

dfn {
    font-weight: bold;
}

pre, code {
    margin: 1.5em 0;
    white-space: pre;
}

pre, code, tt {
    font: 1em 'andale mono', 'monotype.com', 'lucida console', monospace;
    line-height: 1.5;
}

tt {
    display: block;
    margin: 1.5em 0;
    line-height: 1.5;
}
/* Tables
 -------------------------------------------------------------- */
.maincontent {
    overflow: hidden;
}

.maincontent table {
    margin: 1px auto 1.4em auto;
    border-collapse: collapse;
    width: 99%;
}

.maincontent th {
    font-weight: bold;
}

.maincontent th, .maincontent td {
    padding: 4px;
}

.maincontent tfoot {
    font-style: italic;
}
/* Use this if you use span-x classes on th/td. */
table .last {
    padding-right: 0;
}

sup {
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
}

sub {
    vertical-align: baseline;
    position: relative;
    bottom: -0.4em;
}

caption {
    font-size: 1.1em;
    font-weight: bold;
}
