
    /* CSS style based on Matthew James Taylor */
    /* Do not edit unless you know what you're doing :) */

    #layout-header, #layout-main, #layout-mask, #layout-mid, #layout-left, #layout-right, #layout-footer
    {
        width:100%;
    }

    #layout-header
    {
        clear:both;
        float:left;
    }

    #layout-main
    {
        clear:both;
        float:left;
    }

    #layout-body
    {
        clear:both;
    }

    #layout-mask
    {
        position:relative;	/* IE7 overflow hidden bug */
        clear:both;
        overflow:hidden;
    }

    #layout-mid, #layout-left, #layout-right
    {
        float:left;
        position:relative;
    }

    html #layout-col-b
    {
        position:Static;
    }

    #layout-col-a, #layout-col-b, #layout-col-c
    {
        float:left;
        position:relative;
        padding:0 0 0 0;	/* don't change horz. padding - instead, adjust width (further below). Ok to use vert. padding. */
        overflow:hidden;
    }

    #layout-mid
    {
        right:0%;			/* sets the width of the right column */
    }

    #layout-left
    {
        right:709px;			/* sets the width of the middle column */
    }

    #layout-col-a
    {
        width: 700px;			/* width of center column content (column width minus padding on either side) */
        left:100%;			/* 100% plus left padding of center column */
        padding: 0 0 0 8px;
    }

    #layout-col-b
    {
        width: 248px;			/* Width of left column content (column width minus padding on either side) */
        left: 26px;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
    }

    #layout-col-c
    {
        width:0%;			/* Width of right column content (column width minus padding on either side) */
        left:100%;			/* Please make note of the brackets here:
                            (100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
    }

    #layout-footer
    {
        clear:both;
        float:left;
    }
