@charset "UTF-8";
body {
    font: 1em Verdana, Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #000;
    text-align: center; /* Centers the container */
    margin: 0;
    padding: 124px;
	background-image:url(../images/background.jpg);
	background-repeat:no-repeat;
	background-position:top;
}

#wrapper {
    width: 998px; /* 780px is just wide enough to fill and 800px screen */
    margin: 0 auto; /* It's important to set the margin to auto if you want the layout to center */
    background: #fff;
    text-align: left;
    border: 2px solid #000000;
}

/*#header, #column1, #column2, #column3, #column4 ,#footer{
    padding: 10px;  /* This sets a 10px padding on all of our content boxes 
	
}*/

#header {
    background: #999;
    margin: 0;
    padding: 0px;
}

#section1 {
    float: left; /* Sets this section to the left */
    background: #fff;
    width: 527px;
}

    #column1 {
        float: left; /* Sets this column to the left inside its section */
        background: #000000;
        width: 319px;
    }

    #column2 {
        float: right; /* Sets this column to the right inside its section*/
        background: #000000;
        width: 208px;
    }

#section2 {
    float: right; /*Sets this sectionto the right */
    background: #fff;
    width: 471px;
}

    #column3 {
        float: left; /* Sets this column to the left inside its section */
        background: #000000;
        width: 205px;
    }

    #column4 {
        float: right; /* Sets this column to the right inside its section*/
        background: #000000;
        width: 266px;
    }

#footer {
    background: #999;
    clear: both;
}

