@CHARSET "UTF-8";
/* CSS Document */

#sample-container {
    width: 100%;  /* this will create a container 80% of the browser width */
    background: #ffffff;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: 1px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
}

#sample-header {
    height: auto;
    padding: 0;
    margin: 0 auto;
    border: 1px solid #cccccc;
}

#sample-main-body-wrapper {
    height: auto;
    margin: 0 auto;
    padding: 0;
    border: 1px solid #cccccc;
}

#sample-main-body {
    margin: 0 auto;
    min-height: 400px;
    width: 1000px;
    padding: 0 0 30px 0;
    border: 1px solid #cccccc;
}

#sample-footer {
    border: 1px solid #cccccc;
}