body 
{
    background-color: #FFF; /* Background color */
    color: #000;            /* Foreground color used for text */
    font-family: Helvetica; 
    font-size: 14px;
    margin: 0;              /* Amount of negative space around the outside of the body */
    padding: 0;             /* Amount of negative space around the inside of the body */
}

a
{
    color: #000;            /* Foreground color used for text */
}

#Header_Pic
{
    text-align: center;
    margin-top: 10px;
}

#Header_Pic img
{
    width: 300px;
}

#navigation ul 
{
    list-style: none;
    margin: 10px;
    padding: 0;
}

#navigation ul li a 
{
    display: block;
    background-color: #FFF;
    border: 2px solid #DDD;
    margin-bottom: 5px;
    padding: 12px 10px;
    text-align: left;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
}

#navigation ul li a.active 
{
    color: #88C4FF;
}

#content
{
    margin: 10px;
}

#footer
{
    font-size: 12px;
    color: #CCC;
    margin: 10px;
    padding-top: 15px;
    text-align: center;
    border-top: solid 1px #000;
}

#footer a
{
    color: #CCC;
}