/*
Simple stylesheet for my web pages.
Anders Logg <logg@simula.no>

First created: 2008-06-16
Last changed: 2010-02-15
*/

/* Basic stuff, background, fonts, headers */
body
{
    background: #f9f9f0;
    margin: 5px 2px;
    color: #333;
    text-align: left;
}

a:link, a:visited
{
    color: #f09636;
    text-decoration: none;
}

a:hover, a:active
{
    border-bottom: #963 1px solid;
}

h1, h2, h3, h4, h5, h6
{
    font-family: Verdana, Arial, Serif;
    margin: 10px 0px;
}

h1
{
    font-family: Georgia, Verdana, Arial, Serif;
    font-size: 200%;
}

h2
{
    font-size: 120%;
}

/* Environments */

#header
{
    margin: 0 auto;
    width: 90%;
    position: relative;
    text-align: left;
}

#contents
{
    border: #ccc 1px solid;
    background: #fff;
    margin: 0 auto;
    padding: 0 5px;
    width: 90%;
    position: relative;
    text-align: left;
    font-family: Verdana, Arial, Serif;
}

#footer
{
    margin: 0 auto;
    width: 90%;
    position: relative;
    text-align: left;
}

#floatleft
{
    float: left;
    margin: 20px;
    position: relative;
}

#newline
{
    clear: left;
}

/* Table layout, copied from Harish */
table.results
{
    background-color:#fafafa;
    border:solid 1px #bbb;
    margin:.3em auto;
    padding:.4em 1em;
    -moz-border-radius:0.6em;
    -webkit-border-radius:0.6em;
}

table.results td
{
    padding-left:.8em;
    padding-right:.8em;
    padding-bottom:0.25em;
    padding-top:0.25em;
}

