/* It is amazing how difficult it was to create this style sheet. */

body
{
    background: #ffffff;
/* Colors are in RRGGBB format. */
    color: #ffffff;
/* Text color */
}

#page_wrapper
{
    background: #ffffff;
    color: #000000;

    margin: 5px 12px auto 12px;
/* Attributes are named clockwise: top right bottom left. */
    min-width: 650px;
}

#page_header
{
    background: #ffffff;
    color: #ffffaa;
    border: 1px none #000000;
/* Border attributes are as follows: width style color. */

    margin: 0 0 3px 0;
    padding: 3px 5px 0px 5px;

    text-align: center;
}

 #page_header a img
{
    
    border: 0px none #000000;
}

#site_nav
{
    background: #700000;
    color: #ffffff;
    border: 1px solid #000000; 
    
    margin: 0 0 0 0;
    padding: 0px 2px 0px 2px;

    text-align: center;
}

#site_nav ul
{
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style-type: none;
}

#site_nav ul li
{
    display: inline;
    margin: 0 3px 0 3px;
    padding: 3px 3px 3px 3px;
}

#site_nav ul li a
{
    color: #ffffff;
    text-decoration: none
}

#site_nav ul li a:hover
{
    background: #ffffff;
    color: #700000;
}

#content
{
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;

    margin: 3px 0 auto 215px;
    padding: 2px 2px 2px 2px;
}

#content h1
{
    font-size: 150%
}

#content h2
{
    font-size: 120%
}

#left_column
{
    background: #ffffff;
    color: #700000;
    border: 1px solid #000000;

    float: left;
    clear: left;
/* Forbids any floats from being on its left side. */
    margin: 3px 3px 3px 0;
    padding: 2px;
    width: 200px;
}

#left_column h1
{
    background: #ffffff;
    color: #700000;
    border: 1px none #000000; 

    text-align: center;
    text-decoration: underline;
    font-weight: bolder;
}

#left_column h2
{
    background: #ffffff;
    color: #700000;
    border: 1px solid #000000; 

    text-align: center;
    font-size: medium;
    font-weight: bold;
}

#left_column p
{
    color: #000000;
}

#left_column ul
{
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    list-style-type: none;
}

#left_column ul li
{
    margin: 0 3px 0 3px;
    padding: 3px 3px 3px 3px;
}

#left_column ul li a
{
    text-decoration: none;    
    color: #700000;
    display: block;
}

#left_column ul li a:hover
{
    background: #700000;
    color: #ffffff;
}   

#footer
{
    background: #700000;
    color: #ffffff;
    border: 1px solid #000000; 

    clear: both;
    margin: 2px 0 0 0;
    padding: 2px;

    text-align: center;
}

#footer p
{
     margin: 0 0 0 0;
}
    
    
