


/* layout stuff */
/* making the content divs centered. */
/* if the screen is wide enough, a margin is appended on the right side so they appear slightly more left. */

/*

@media all and (min-width: 1250px) {

    div#content, div#content_preview_body {
        margin-right: 200px;
    }

    div#body {
        text-align:center;
    }
}

@media all and (max-width: 1250px) {
    div#body {
        text-align: left;
    }
}

*/