﻿img.bg
{
    /* Set rules to fill background */
    min-height: 100%;
    min-width: 1024px; /* Set up proportionate scaling */
    width: 100%;
    height: auto; /* Set up positioning */
    position: fixed;
    top: 0;
    left: 0;
    
}
@media screen and (max-width: 1024px)
{
    img.bg
    {
        left: 50%;
        margin-left: -512px;
    }
}
div#content
{
    /* This is the only important rule */ /* We need our content to show up on top of the background */
    position: relative; /* These have no effect on the functionality */
    width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 0px;
    line-height: 16pt;
    -moz-box-shadow: #000  0px 6px 10px;
    -webkit-box-shadow: #000 0px 6px 10px;
}


