/*
    Document   : site.css
    Created on : Apr 12, 2010, 8:33:09 PM
    Author     : Adam
    Description:
        Primary stylesheet for the site.
*/

body {
    margin: auto;
    text-align: center;
}
body p {
    margin: 1px;
    font-size: .80em;
}
#box1 {
    padding: 10px;
    background-color: darkred;
    border: none;
    margin: auto;
    width:750px;
    margin-top: 4px;
    display: table;

    -moz-border-radius:8px;
    -webkit-border-radius:8px;

    -moz-box-shadow:15px 15px 40px 1px #000;
    -webkit-box-shadow:15px 15px 40px #000;
}
#box2 {
    background-color: lightgray;
    border: 1px solid white;
    width: 750px;
    height: 540px;
    max-height: 540px;
    margin: auto;

    text-align: center;

    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    display: table-cell;
}

.navbar {
    border: none;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 5px;
}

.navbar a {
    border: 1px solid white;
    color: black;
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: 5px;
}

.navbar a:hover {
    background-color: darkgray;
}

.navbar a:active {
    background-color: gray;
}

.content {
    padding: none;
    padding-right: 10%;
    padding-left: 10%;
    height: 457px;
    display: block;
    overflow: auto;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.content p {
    font-size: 1.0em;
    font-weight: normal;
    font-variant: normal;
    text-align: justify;
}

.content h1 {
    font-size:3.0em;
    font-weight:bold;
    font-variant:normal;
    text-align:center;
}

.content h2 {
    font-size: 2.0em;
    font-weight: bold;
    text-align: left;
}

.content h3 {
    font-size: 1.5em;
    font-weight: normal;
    text-align: left;
    font-style: italic;
    text-indent: 4em;
}

#table {display:inline-table;}
#row {display:table-row;}
#cell {display:table-cell;}
#tHeader
{
    display: table-caption;
    font-size: 3.0em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}
#clear {clear:both; display:block;}

img.thumb
{
    width: 300px;
    height: 225px;
    border: none;
}