/* ASPECT RATIO */

.sixteen-nine {
    position: relative;
}
.sixteen-nine:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
}
.sixteen-nine > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*  SECTIONS  */
.section {
    clear: both;
    padding: 0px;
    margin: 0px;
}

/*  COLUMN SETUP  */
.col {
    display: block;
    float: left;
    /*margin: 1% 0 1% 3%;*/
    margin: 0% 0 0% 3%;
}

.col:first-child {
    margin-left: 0;
}

/*  GROUPING  */
.container:before,
.container:after {
    content: "";
    display: table;
}

.container:after {
    clear: both;
}

.container {
    zoom: 1; /* For IE 6/7 */
}

/*  GRID OF TWELVE  */
.span_12_of_12 {
    width: 100%;
}

.span_11_of_12 {
    width: 91.41%;
}

.span_10_of_12 {
    width: 82.83%;
}

.span_9_of_12 {
    width: 74.25%;
}

.span_8_of_12 {
    width: 65.66%;
}

.span_7_of_12 {
    width: 57.08%;
}

.span_6_of_12 {
    width: 48.5%;
}

.span_5_of_12 {
    width: 39.91%;
}

.span_4_of_12 {
    width: 31.33%;
}

.span_3_of_12 {
    width: 22.75%;
}

.span_2_of_12 {
    width: 14.16%;
}

.span_1_of_12 {
    width: 5.583%;
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 600px) {
    .col:not(.force) {
        margin: 4% 0 4% 0;
    }

    .span_1_of_12:not(.force), .span_2_of_12:not(.force), .span_3_of_12:not(.force), .span_4_of_12:not(.force), .span_5_of_12:not(.force), .span_6_of_12:not(.force), .span_7_of_12:not(.force), .span_8_of_12:not(.force), .span_9_of_12:not(.force), .span_10_of_12:not(.force), .span_11_of_12:not(.force), .span_12_of_12:not(.force) {
        width: 100%;
    }

    .offset-12, .offset-11, .offset-10, .offset-9, .offset-8, .offset-7, .offset-6, .offset-5, .offset-4, .offset-3, .offset-12, .offset-1 {
        margin-left: 0px !important;
    }
}

/* OFFSETS */

.col.offset-11 {
    margin-left: 94.41%;
}

.col.offset-10 {
    margin-left: 85.83%;
}

.col.offset-9 {
    margin-left: 77.25%;
}

.col.offset-8 {
    margin-left: 68.66%;
}

.col.offset-7 {
    margin-left: 60.08%;
}

.col.offset-6 {
    margin-left: 51.5%;
}

.col.offset-5 {
    margin-left: 42.91%;
}

.col.offset-4 {
    margin-left: 34.33%;
}

.col.offset-3 {
    margin-left: 25.75%;
}

.col.offset-2 {
    margin-left: 17.16%;
}

.col.offset-1 {
    margin-left: 8.583%;
}