/**
 *  @source http://webdesign.about.com/od/css3/f/blfaqbgsize.htm 
 *  @target Enhance the display of the background image
 */
html, body
{
    height: 100%;
    margin: 0;
    padding: 0;
}

img#background
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div#content
{
    position: relative;
    z-index: 1;
}

div#page
{
    background-color: white;
    border: 1px solid black;
    margin: 0 auto;
    width: 950px;
}

div#menu
{
    background-color: #050;
    height: 23px;
}

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

div#menu ul li
{
    float: left;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    height: 23px;
}

div#menu ul li:hover
{
    background-color: gold;
}

div#menu ul li a
{
    display:block;
    color: gold;
    font-size: 18px;
    text-decoration: none;
    margin: 0;
}

div#menu ul li a:hover
{
    color: #050;
}

.clearfix
{
    clear: both;
}

p#logo
{
    text-align: center;
}

p#footer
{
    display: block;
    font-family: serif;
    font-size: 11px;
    text-align: center;
    line-height: 13px;
}

p#footer a
{
    color: black;
    font-size: 13px;
    text-decoration: none;
}

p#footer a:hover
{
    font-weight: bold;
    text-decoration: underline;
}

li#current_menu,
li#current_menu:hover
{
    background-color: gold;
}

li#current_menu span
{
    display:block;
    color: #050;
    font-size: 18px;
    text-decoration: none;
    margin: 0;
}

.center
{
    text-align: center;
}