/* CSS Reset by Eric Meyer */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
    outline: 0;
}
body {
    line-height: 1;
    color: black;
    background: white;
}
ol, ul {
    list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
}
blockquote, q {
    quotes: "" "";
}

/* Design */

body {
    font-family: Verdana, serif;
    font-size: 18px;
    background-color: #fff7c2;
}
h1, h2, h3 {
    font-weight: bold;
    margin: 10px 0;
}
h1 {
    font-size: 1.8em;
}
h2 {
    font-size: 1.4em;
}
h3 {
    font-size: 1.2em;
}
img {
    vertical-align: middle;
}
a,
a:focus,
a:active {
    color: #235e8d;
    padding: 0 3px;
    text-decoration: none;
}
a:hover {
    background-color: #235e8d;
    color: white;

    /* CSS3 */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.languages {
    float: right;
    color: white;
    font-size: 0.7em;
    margin: 10px;
}
.languages img {
    width: 30px;
    vertical-align: middle;
}

#header {
    border-bottom: 4px solid #555;
    padding: 7px;
    background-color: #000000;
    color: white;
}
    #header h1 {
        margin-bottom: 20px;
    }
        #header h1 a {
            padding: 10px;
            background-color: #235e8d;
            color: white;

            /* CSS3 */
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
        }
        #header h1 a:hover {
            background-color: white;
            color: #235e8d;
        }
    #header h2 {
        font-size: 1.1em;
        font-style: italic;
        margin-left: 50px;
    }

#content {
    padding: 7px;
    font-size: 0.85em;
}
    #content p {
        padding-bottom: 10px;
    }
    #content ol,
    #content ul {
        list-style-type: disc;
        list-style-position: outside;
        padding-left: 40px;
    }
    #content ol {
        list-style-type: decimal;
    }
    #content li {
        margin: 5px 0;
    }
    #content pre {
        font-family: 'Courier New', Courier, serif;
        border: 1px dashed #ccc;
        margin: 5px;
        padding: 15px;
        background-color: white;
    }
    #content .download {
        text-align: center;
        font-size: 1.5em;
        font-weight: bold;
    }
    #content h3 {
        border-bottom: 3px solid #938106;
    }
    #content h3:first-letter {
        color: #938106;
        font-size: 1.6em;
    }

#footer {
    border-top: 4px solid #555;
    background-color: #000000;
    color: white;
    font-size: 0.8em;
    padding: 10px;
    text-align: center;
}
    #footer a {
        background-color: #235e8d;
        color: white;

        /* CSS3 */
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    #footer a:hover {
        background-color: white;
        color: #235e8d;
    }

