.clear, .clearfix {
    clear: both;
}

    .clear:after, .clearfix:after {
        content: " ";
        display: block;
        height: 0;
        font-size: 0;
        clear: both;
        visibility: hidden;
    }

.padded {
    padding: 10px;
}

.half-padded {
    padding: 5px;
}

.double-padded {
    padding: 20px;
}

.triple-padded {
    padding: 30px;
}

.pad-top {
    padding-top: 10px;
}

.half-pad-top {
    padding-top: 5px;
}

.double-pad-top {
    padding-top: 20px;
}

.triple-pad-top {
    padding-top: 30px;
}

.pad-right {
    padding-right: 10px;
}

.half-pad-right {
    padding-right: 5px;
}

.double-pad-right {
    padding-right: 20px;
}

.triple-pad-right {
    padding-right: 30px;
}

.pad-bottom {
    padding-bottom: 10px;
}

.half-pad-bottom {
    padding-bottom: 5px;
}

.double-pad-bottom {
    padding-bottom: 20px;
}

.triple-pad-bottom {
    padding-bottom: 30px;
}

.pad-left {
    padding-left: 10px;
}

.half-pad-left {
    padding-left: 5px;
}

.double-pad-left {
    padding-left: 20px;
}

.triple-pad-left {
    padding-left: 30px;
}

.gapped {
    margin: 10px;
}

.half-gapped {
    margin: 5px;
}

.double-gapped {
    margin: 20px;
}

.triple-gapped {
    margin: 30px;
}

.gap-top {
    margin-top: 10px;
}

.half-gap-top {
    margin-top: 5px;
}

.double-gap-top {
    margin-top: 20px;
}

.triple-gap-top {
    margin-top: 30px;
}

.gap-right {
    margin-right: 10px;
}

.half-gap-right {
    margin-right: 5px;
}

.double-gap-right {
    margin-right: 20px;
}

.triple-gap-right {
    margin-right: 30px;
}

.gap-bottom {
    margin-bottom: 10px;
}

.half-gap-bottom {
    margin-bottom: 5px;
}

.double-gap-bottom {
    margin-bottom: 20px;
}

.triple-gap-bottom {
    margin-bottom: 30px;
}

.gap-left {
    margin-left: 10px;
}

.half-gap-left {
    margin-left: 5px;
}

.double-gap-left {
    margin-left: 20px;
}

.triple-gap-left {
    margin-left: 30px;
}

.offset {
    margin: -10px;
}

.half-offset {
    margin: -5px;
}

.double-offset {
    margin: -20px;
}

.triple-offset {
    margin: -30px;
}

.offset-top {
    margin-top: -10px;
}

.half-offset-top {
    margin-top: -5px;
}

.double-offset-top {
    margin-top: -20px;
}

.triple-offset-top {
    margin-top: -30px;
}

.offset-right {
    margin-right: -10px;
}

.half-offset-right {
    margin-right: -5px;
}

.double-offset-right {
    margin-right: -20px;
}

.triple-offset-right {
    margin-right: -30px;
}

.offset-bottom {
    margin-bottom: -10px;
}

.half-offset-bottom {
    margin-bottom: -5px;
}

.double-offset-bottom {
    margin-bottom: -20px;
}

.triple-offset-bottom {
    margin-bottom: -30px;
}

.offset-left {
    margin-left: -10px;
}

.half-offset-left {
    margin-left: -5px;
}

.double-offset-left {
    margin-left: -20px;
}

.triple-offset-left {
    margin-left: -30px;
}

.stick, .fixed {
    position: fixed;
}

    .stick.top, .fixed.top {
        position: fixed;
        top: 0;
    }

    .stick.right, .fixed.right {
        position: fixed;
        right: 0;
    }

    .stick.bottom, .fixed.bottom {
        position: fixed;
        bottom: 0;
    }

    .stick.left, .fixed.left {
        position: fixed;
        left: 0;
    }

    .stick.middle, .fixed.middle {
        position: fixed;
        top: 50%;
    }

    .stick.center, .fixed.center {
        position: fixed;
        left: 50%;
    }

.absolute {
    position: absolute;
}

    .absolute.top {
        position: absolute;
        top: 0;
    }

    .absolute.right {
        position: absolute;
        right: 0;
    }

    .absolute.bottom {
        position: absolute;
        bottom: 0;
    }

    .absolute.left {
        position: absolute;
        left: 0;
    }

    .absolute.middle {
        position: absolute;
        top: 50%;
    }

    .absolute.center {
        position: absolute;
        left: 50%;
    }

.relative {
    position: relative;
}

.static {
    position: static;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
    width: auto;
}

.block {
    display: block;
}

.hidden {
    display: none !important;
}

.small {
    font-size: 0.8em;
}

.medium {
    font-size: 1em;
}

.large {
    font-size: 1.5em;
}

.unstyled, .zero {
    margin: 0;
    padding: 0;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.pull-none {
    float: none;
}

.bordered {
    border: 1px solid #ddd;
}

.border-top {
    border-top: 1px solid #ddd;
}

.border-right {
    border-right: 1px solid #ddd;
}

.border-bottom {
    border-bottom: 1px solid #ddd;
}

.border-left {
    border-left: 1px solid #ddd;
}

.align-top {
    display: table-cell;
    vertical-align: top;
}

.align-right {
    text-align: right;
}

.align-bottom {
    display: table-cell;
    vertical-align: bottom;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.justify {
    text-align: justify;
}

.unstyled {
    list-style: none;
}

.truncate {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.center {
    display: block;
    margin: 0 auto;
}

.square {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.round {
    -webkit-border-radius: 9999em;
    -moz-border-radius: 9999em;
    -ms-border-radius: 9999em;
    -o-border-radius: 9999em;
    border-radius: 9999em;
}

.rotate-90 {
    display: inline-block;
    width: auto;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate-90-ctr {
    display: inline-block;
    width: auto;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.rotate-180 {
    display: inline-block;
    width: auto;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rotate-180-ctr {
    display: inline-block;
    width: auto;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.rotate-270 {
    display: inline-block;
    width: auto;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.rotate-270-ctr {
    display: inline-block;
    width: auto;
    -webkit-transform: rotate(-270deg);
    -moz-transform: rotate(-270deg);
    -ms-transform: rotate(-270deg);
    -o-transform: rotate(-270deg);
    transform: rotate(-270deg);
}

.rotate-360 {
    display: inline-block;
    width: auto;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.rotate-360-ctr {
    display: inline-block;
    width: auto;
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.transition {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.no-transition {
    transition: none !important;
}

.cbp-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cbp-row {
    clear: both;
    width: 100%;
}

    .cbp-row:after {
        content: " ";
        display: block;
        height: 0;
        font-size: 0;
        clear: both;
        visibility: hidden;
    }

.column, .whole, .wholes, .whole.one, .wholes.one, .half, .halves, .half.one, .halves.one, .half.two, .halves.two, .third, .thirds, .third.one, .thirds.one, .third.two, .thirds.two, .third.three, .thirds.three, .fourth, .fourths, .fourth.one, .fourths.one, .fourth.two, .fourths.two, .fourth.three, .fourths.three, .fourth.four, .fourths.four, .fifth, .fifths, .fifth.one, .fifths.one, .fifth.two, .fifths.two, .fifth.three, .fifths.three, .fifth.four, .fifths.four, .fifth.five, .fifths.five, .sixth, .sixths, .sixth.one, .sixths.one, .sixth.two, .sixths.two, .sixth.three, .sixths.three, .sixth.four, .sixths.four, .sixth.five, .sixths.five, .sixth.six, .sixths.six, .seventh, .sevenths, .seventh.one, .sevenths.one, .seventh.two, .sevenths.two, .seventh.three, .sevenths.three, .seventh.four, .sevenths.four, .seventh.five, .sevenths.five, .seventh.six, .sevenths.six, .seventh.seven, .sevenths.seven, .eighth, .eighths, .eighth.one, .eighths.one, .eighth.two, .eighths.two, .eighth.three, .eighths.three, .eighth.four, .eighths.four, .eighth.five, .eighths.five, .eighth.six, .eighths.six, .eighth.seven, .eighths.seven, .eighth.eight, .eighths.eight, .ninth, .ninths, .ninth.one, .ninths.one, .ninth.two, .ninths.two, .ninth.three, .ninths.three, .ninth.four, .ninths.four, .ninth.five, .ninths.five, .ninth.six, .ninths.six, .ninth.seven, .ninths.seven, .ninth.eight, .ninths.eight, .ninth.nine, .ninths.nine, .tenth, .tenths, .tenth.one, .tenths.one, .tenth.two, .tenths.two, .tenth.three, .tenths.three, .tenth.four, .tenths.four, .tenth.five, .tenths.five, .tenth.six, .tenths.six, .tenth.seven, .tenths.seven, .tenth.eight, .tenths.eight, .tenth.nine, .tenths.nine, .tenth.ten, .tenths.ten, .eleventh, .elevenths, .eleventh.one, .elevenths.one, .eleventh.two, .elevenths.two, .eleventh.three, .elevenths.three, .eleventh.four, .elevenths.four, .eleventh.five, .elevenths.five, .eleventh.six, .elevenths.six, .eleventh.seven, .elevenths.seven, .eleventh.eight, .elevenths.eight, .eleventh.nine, .elevenths.nine, .eleventh.ten, .elevenths.ten, .eleventh.eleven, .elevenths.eleven, .twelfth, .twelfths, .twelfth.one, .twelfths.one, .twelfth.two, .twelfths.two, .twelfth.three, .twelfths.three, .twelfth.four, .twelfths.four, .twelfth.five, .twelfths.five, .twelfth.six, .twelfths.six, .twelfth.seven, .twelfths.seven, .twelfth.eight, .twelfths.eight, .twelfth.nine, .twelfths.nine, .twelfth.ten, .twelfths.ten, .twelfth.eleven, .twelfths.eleven, .twelfth.twelve, .twelfths.twelve {
    float: left;
    position: relative;
    min-height: 1px;
}

.centered {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.whole, .wholes {
    width: 100%;
}

    .whole.one, .wholes.one {
        width: 100%;
    }

.half, .halves {
    width: 50%;
}

    .half.one, .halves.one {
        width: 50%;
    }

    .half.two, .halves.two {
        width: 100%;
    }

    .half.right-one, .halves.right-one {
        left: 50%;
    }

    .half.left-one, .halves.left-one {
        right: 50%;
    }

    .half.skip-one, .halves.skip-one {
        margin-left: 50%;
    }

.third, .thirds {
    width: 33.33333%;
}

    .third.one, .thirds.one {
        width: 33.33333%;
    }

    .third.two, .thirds.two {
        width: 66.66667%;
    }

    .third.three, .thirds.three {
        width: 100%;
    }

    .third.right-one, .thirds.right-one {
        left: 33.33333%;
    }

    .third.left-one, .thirds.left-one {
        right: 33.33333%;
    }

    .third.skip-one, .thirds.skip-one {
        margin-left: 33.33333%;
    }

    .third.right-two, .thirds.right-two {
        left: 66.66667%;
    }

    .third.left-two, .thirds.left-two {
        right: 66.66667%;
    }

    .third.skip-two, .thirds.skip-two {
        margin-left: 66.66667%;
    }

.fourth, .fourths {
    width: 25%;
}

    .fourth.one, .fourths.one {
        width: 25%;
    }

    .fourth.two, .fourths.two {
        width: 50%;
    }

    .fourth.three, .fourths.three {
        width: 75%;
    }

    .fourth.four, .fourths.four {
        width: 100%;
    }

    .fourth.right-one, .fourths.right-one {
        left: 25%;
    }

    .fourth.left-one, .fourths.left-one {
        right: 25%;
    }

    .fourth.skip-one, .fourths.skip-one {
        margin-left: 25%;
    }

    .fourth.right-two, .fourths.right-two {
        left: 50%;
    }

    .fourth.left-two, .fourths.left-two {
        right: 50%;
    }

    .fourth.skip-two, .fourths.skip-two {
        margin-left: 50%;
    }

    .fourth.right-three, .fourths.right-three {
        left: 75%;
    }

    .fourth.left-three, .fourths.left-three {
        right: 75%;
    }

    .fourth.skip-three, .fourths.skip-three {
        margin-left: 75%;
    }

.fifth, .fifths {
    width: 20%;
}

    .fifth.one, .fifths.one {
        width: 20%;
    }

    .fifth.two, .fifths.two {
        width: 40%;
    }

    .fifth.three, .fifths.three {
        width: 60%;
    }

    .fifth.four, .fifths.four {
        width: 80%;
    }

    .fifth.five, .fifths.five {
        width: 100%;
    }

    .fifth.right-one, .fifths.right-one {
        left: 20%;
    }

    .fifth.left-one, .fifths.left-one {
        right: 20%;
    }

    .fifth.skip-one, .fifths.skip-one {
        margin-left: 20%;
    }

    .fifth.right-two, .fifths.right-two {
        left: 40%;
    }

    .fifth.left-two, .fifths.left-two {
        right: 40%;
    }

    .fifth.skip-two, .fifths.skip-two {
        margin-left: 40%;
    }

    .fifth.right-three, .fifths.right-three {
        left: 60%;
    }

    .fifth.left-three, .fifths.left-three {
        right: 60%;
    }

    .fifth.skip-three, .fifths.skip-three {
        margin-left: 60%;
    }

    .fifth.right-four, .fifths.right-four {
        left: 80%;
    }

    .fifth.left-four, .fifths.left-four {
        right: 80%;
    }

    .fifth.skip-four, .fifths.skip-four {
        margin-left: 80%;
    }

.sixth, .sixths {
    width: 16.66667%;
}

    .sixth.one, .sixths.one {
        width: 16.66667%;
    }

    .sixth.two, .sixths.two {
        width: 33.33333%;
    }

    .sixth.three, .sixths.three {
        width: 50%;
    }

    .sixth.four, .sixths.four {
        width: 66.66667%;
    }

    .sixth.five, .sixths.five {
        width: 83.33333%;
    }

    .sixth.six, .sixths.six {
        width: 100%;
    }

    .sixth.right-one, .sixths.right-one {
        left: 16.66667%;
    }

    .sixth.left-one, .sixths.left-one {
        right: 16.66667%;
    }

    .sixth.skip-one, .sixths.skip-one {
        margin-left: 16.66667%;
    }

    .sixth.right-two, .sixths.right-two {
        left: 33.33333%;
    }

    .sixth.left-two, .sixths.left-two {
        right: 33.33333%;
    }

    .sixth.skip-two, .sixths.skip-two {
        margin-left: 33.33333%;
    }

    .sixth.right-three, .sixths.right-three {
        left: 50%;
    }

    .sixth.left-three, .sixths.left-three {
        right: 50%;
    }

    .sixth.skip-three, .sixths.skip-three {
        margin-left: 50%;
    }

    .sixth.right-four, .sixths.right-four {
        left: 66.66667%;
    }

    .sixth.left-four, .sixths.left-four {
        right: 66.66667%;
    }

    .sixth.skip-four, .sixths.skip-four {
        margin-left: 66.66667%;
    }

    .sixth.right-five, .sixths.right-five {
        left: 83.33333%;
    }

    .sixth.left-five, .sixths.left-five {
        right: 83.33333%;
    }

    .sixth.skip-five, .sixths.skip-five {
        margin-left: 83.33333%;
    }

.seventh, .sevenths {
    width: 14.28571%;
}

    .seventh.one, .sevenths.one {
        width: 14.28571%;
    }

    .seventh.two, .sevenths.two {
        width: 28.57143%;
    }

    .seventh.three, .sevenths.three {
        width: 42.85714%;
    }

    .seventh.four, .sevenths.four {
        width: 57.14286%;
    }

    .seventh.five, .sevenths.five {
        width: 71.42857%;
    }

    .seventh.six, .sevenths.six {
        width: 85.71429%;
    }

    .seventh.seven, .sevenths.seven {
        width: 100%;
    }

    .seventh.right-one, .sevenths.right-one {
        left: 14.28571%;
    }

    .seventh.left-one, .sevenths.left-one {
        right: 14.28571%;
    }

    .seventh.skip-one, .sevenths.skip-one {
        margin-left: 14.28571%;
    }

    .seventh.right-two, .sevenths.right-two {
        left: 28.57143%;
    }

    .seventh.left-two, .sevenths.left-two {
        right: 28.57143%;
    }

    .seventh.skip-two, .sevenths.skip-two {
        margin-left: 28.57143%;
    }

    .seventh.right-three, .sevenths.right-three {
        left: 42.85714%;
    }

    .seventh.left-three, .sevenths.left-three {
        right: 42.85714%;
    }

    .seventh.skip-three, .sevenths.skip-three {
        margin-left: 42.85714%;
    }

    .seventh.right-four, .sevenths.right-four {
        left: 57.14286%;
    }

    .seventh.left-four, .sevenths.left-four {
        right: 57.14286%;
    }

    .seventh.skip-four, .sevenths.skip-four {
        margin-left: 57.14286%;
    }

    .seventh.right-five, .sevenths.right-five {
        left: 71.42857%;
    }

    .seventh.left-five, .sevenths.left-five {
        right: 71.42857%;
    }

    .seventh.skip-five, .sevenths.skip-five {
        margin-left: 71.42857%;
    }

    .seventh.right-six, .sevenths.right-six {
        left: 85.71429%;
    }

    .seventh.left-six, .sevenths.left-six {
        right: 85.71429%;
    }

    .seventh.skip-six, .sevenths.skip-six {
        margin-left: 85.71429%;
    }

.eighth, .eighths {
    width: 12.5%;
}

    .eighth.one, .eighths.one {
        width: 12.5%;
    }

    .eighth.two, .eighths.two {
        width: 25%;
    }

    .eighth.three, .eighths.three {
        width: 37.5%;
    }

    .eighth.four, .eighths.four {
        width: 50%;
    }

    .eighth.five, .eighths.five {
        width: 62.5%;
    }

    .eighth.six, .eighths.six {
        width: 75%;
    }

    .eighth.seven, .eighths.seven {
        width: 87.5%;
    }

    .eighth.eight, .eighths.eight {
        width: 100%;
    }

    .eighth.right-one, .eighths.right-one {
        left: 12.5%;
    }

    .eighth.left-one, .eighths.left-one {
        right: 12.5%;
    }

    .eighth.skip-one, .eighths.skip-one {
        margin-left: 12.5%;
    }

    .eighth.right-two, .eighths.right-two {
        left: 25%;
    }

    .eighth.left-two, .eighths.left-two {
        right: 25%;
    }

    .eighth.skip-two, .eighths.skip-two {
        margin-left: 25%;
    }

    .eighth.right-three, .eighths.right-three {
        left: 37.5%;
    }

    .eighth.left-three, .eighths.left-three {
        right: 37.5%;
    }

    .eighth.skip-three, .eighths.skip-three {
        margin-left: 37.5%;
    }

    .eighth.right-four, .eighths.right-four {
        left: 50%;
    }

    .eighth.left-four, .eighths.left-four {
        right: 50%;
    }

    .eighth.skip-four, .eighths.skip-four {
        margin-left: 50%;
    }

    .eighth.right-five, .eighths.right-five {
        left: 62.5%;
    }

    .eighth.left-five, .eighths.left-five {
        right: 62.5%;
    }

    .eighth.skip-five, .eighths.skip-five {
        margin-left: 62.5%;
    }

    .eighth.right-six, .eighths.right-six {
        left: 75%;
    }

    .eighth.left-six, .eighths.left-six {
        right: 75%;
    }

    .eighth.skip-six, .eighths.skip-six {
        margin-left: 75%;
    }

    .eighth.right-seven, .eighths.right-seven {
        left: 87.5%;
    }

    .eighth.left-seven, .eighths.left-seven {
        right: 87.5%;
    }

    .eighth.skip-seven, .eighths.skip-seven {
        margin-left: 87.5%;
    }

.ninth, .ninths {
    width: 11.11111%;
}

    .ninth.one, .ninths.one {
        width: 11.11111%;
    }

    .ninth.two, .ninths.two {
        width: 22.22222%;
    }

    .ninth.three, .ninths.three {
        width: 33.33333%;
    }

    .ninth.four, .ninths.four {
        width: 44.44444%;
    }

    .ninth.five, .ninths.five {
        width: 55.55556%;
    }

    .ninth.six, .ninths.six {
        width: 66.66667%;
    }

    .ninth.seven, .ninths.seven {
        width: 77.77778%;
    }

    .ninth.eight, .ninths.eight {
        width: 88.88889%;
    }

    .ninth.nine, .ninths.nine {
        width: 100%;
    }

    .ninth.right-one, .ninths.right-one {
        left: 11.11111%;
    }

    .ninth.left-one, .ninths.left-one {
        right: 11.11111%;
    }

    .ninth.skip-one, .ninths.skip-one {
        margin-left: 11.11111%;
    }

    .ninth.right-two, .ninths.right-two {
        left: 22.22222%;
    }

    .ninth.left-two, .ninths.left-two {
        right: 22.22222%;
    }

    .ninth.skip-two, .ninths.skip-two {
        margin-left: 22.22222%;
    }

    .ninth.right-three, .ninths.right-three {
        left: 33.33333%;
    }

    .ninth.left-three, .ninths.left-three {
        right: 33.33333%;
    }

    .ninth.skip-three, .ninths.skip-three {
        margin-left: 33.33333%;
    }

    .ninth.right-four, .ninths.right-four {
        left: 44.44444%;
    }

    .ninth.left-four, .ninths.left-four {
        right: 44.44444%;
    }

    .ninth.skip-four, .ninths.skip-four {
        margin-left: 44.44444%;
    }

    .ninth.right-five, .ninths.right-five {
        left: 55.55556%;
    }

    .ninth.left-five, .ninths.left-five {
        right: 55.55556%;
    }

    .ninth.skip-five, .ninths.skip-five {
        margin-left: 55.55556%;
    }

    .ninth.right-six, .ninths.right-six {
        left: 66.66667%;
    }

    .ninth.left-six, .ninths.left-six {
        right: 66.66667%;
    }

    .ninth.skip-six, .ninths.skip-six {
        margin-left: 66.66667%;
    }

    .ninth.right-seven, .ninths.right-seven {
        left: 77.77778%;
    }

    .ninth.left-seven, .ninths.left-seven {
        right: 77.77778%;
    }

    .ninth.skip-seven, .ninths.skip-seven {
        margin-left: 77.77778%;
    }

    .ninth.right-eight, .ninths.right-eight {
        left: 88.88889%;
    }

    .ninth.left-eight, .ninths.left-eight {
        right: 88.88889%;
    }

    .ninth.skip-eight, .ninths.skip-eight {
        margin-left: 88.88889%;
    }

.tenth, .tenths {
    width: 10%;
}

    .tenth.one, .tenths.one {
        width: 10%;
    }

    .tenth.two, .tenths.two {
        width: 20%;
    }

    .tenth.three, .tenths.three {
        width: 30%;
    }

    .tenth.four, .tenths.four {
        width: 40%;
    }

    .tenth.five, .tenths.five {
        width: 50%;
    }

    .tenth.six, .tenths.six {
        width: 60%;
    }

    .tenth.seven, .tenths.seven {
        width: 70%;
    }

    .tenth.eight, .tenths.eight {
        width: 80%;
    }

    .tenth.nine, .tenths.nine {
        width: 90%;
    }

    .tenth.ten, .tenths.ten {
        width: 100%;
    }

    .tenth.right-one, .tenths.right-one {
        left: 10%;
    }

    .tenth.left-one, .tenths.left-one {
        right: 10%;
    }

    .tenth.skip-one, .tenths.skip-one {
        margin-left: 10%;
    }

    .tenth.right-two, .tenths.right-two {
        left: 20%;
    }

    .tenth.left-two, .tenths.left-two {
        right: 20%;
    }

    .tenth.skip-two, .tenths.skip-two {
        margin-left: 20%;
    }

    .tenth.right-three, .tenths.right-three {
        left: 30%;
    }

    .tenth.left-three, .tenths.left-three {
        right: 30%;
    }

    .tenth.skip-three, .tenths.skip-three {
        margin-left: 30%;
    }

    .tenth.right-four, .tenths.right-four {
        left: 40%;
    }

    .tenth.left-four, .tenths.left-four {
        right: 40%;
    }

    .tenth.skip-four, .tenths.skip-four {
        margin-left: 40%;
    }

    .tenth.right-five, .tenths.right-five {
        left: 50%;
    }

    .tenth.left-five, .tenths.left-five {
        right: 50%;
    }

    .tenth.skip-five, .tenths.skip-five {
        margin-left: 50%;
    }

    .tenth.right-six, .tenths.right-six {
        left: 60%;
    }

    .tenth.left-six, .tenths.left-six {
        right: 60%;
    }

    .tenth.skip-six, .tenths.skip-six {
        margin-left: 60%;
    }

    .tenth.right-seven, .tenths.right-seven {
        left: 70%;
    }

    .tenth.left-seven, .tenths.left-seven {
        right: 70%;
    }

    .tenth.skip-seven, .tenths.skip-seven {
        margin-left: 70%;
    }

    .tenth.right-eight, .tenths.right-eight {
        left: 80%;
    }

    .tenth.left-eight, .tenths.left-eight {
        right: 80%;
    }

    .tenth.skip-eight, .tenths.skip-eight {
        margin-left: 80%;
    }

    .tenth.right-nine, .tenths.right-nine {
        left: 90%;
    }

    .tenth.left-nine, .tenths.left-nine {
        right: 90%;
    }

    .tenth.skip-nine, .tenths.skip-nine {
        margin-left: 90%;
    }

.eleventh, .elevenths {
    width: 9.09091%;
}

    .eleventh.one, .elevenths.one {
        width: 9.09091%;
    }

    .eleventh.two, .elevenths.two {
        width: 18.18182%;
    }

    .eleventh.three, .elevenths.three {
        width: 27.27273%;
    }

    .eleventh.four, .elevenths.four {
        width: 36.36364%;
    }

    .eleventh.five, .elevenths.five {
        width: 45.45455%;
    }

    .eleventh.six, .elevenths.six {
        width: 54.54545%;
    }

    .eleventh.seven, .elevenths.seven {
        width: 63.63636%;
    }

    .eleventh.eight, .elevenths.eight {
        width: 72.72727%;
    }

    .eleventh.nine, .elevenths.nine {
        width: 81.81818%;
    }

    .eleventh.ten, .elevenths.ten {
        width: 90.90909%;
    }

    .eleventh.eleven, .elevenths.eleven {
        width: 100%;
    }

    .eleventh.right-one, .elevenths.right-one {
        left: 9.09091%;
    }

    .eleventh.left-one, .elevenths.left-one {
        right: 9.09091%;
    }

    .eleventh.skip-one, .elevenths.skip-one {
        margin-left: 9.09091%;
    }

    .eleventh.right-two, .elevenths.right-two {
        left: 18.18182%;
    }

    .eleventh.left-two, .elevenths.left-two {
        right: 18.18182%;
    }

    .eleventh.skip-two, .elevenths.skip-two {
        margin-left: 18.18182%;
    }

    .eleventh.right-three, .elevenths.right-three {
        left: 27.27273%;
    }

    .eleventh.left-three, .elevenths.left-three {
        right: 27.27273%;
    }

    .eleventh.skip-three, .elevenths.skip-three {
        margin-left: 27.27273%;
    }

    .eleventh.right-four, .elevenths.right-four {
        left: 36.36364%;
    }

    .eleventh.left-four, .elevenths.left-four {
        right: 36.36364%;
    }

    .eleventh.skip-four, .elevenths.skip-four {
        margin-left: 36.36364%;
    }

    .eleventh.right-five, .elevenths.right-five {
        left: 45.45455%;
    }

    .eleventh.left-five, .elevenths.left-five {
        right: 45.45455%;
    }

    .eleventh.skip-five, .elevenths.skip-five {
        margin-left: 45.45455%;
    }

    .eleventh.right-six, .elevenths.right-six {
        left: 54.54545%;
    }

    .eleventh.left-six, .elevenths.left-six {
        right: 54.54545%;
    }

    .eleventh.skip-six, .elevenths.skip-six {
        margin-left: 54.54545%;
    }

    .eleventh.right-seven, .elevenths.right-seven {
        left: 63.63636%;
    }

    .eleventh.left-seven, .elevenths.left-seven {
        right: 63.63636%;
    }

    .eleventh.skip-seven, .elevenths.skip-seven {
        margin-left: 63.63636%;
    }

    .eleventh.right-eight, .elevenths.right-eight {
        left: 72.72727%;
    }

    .eleventh.left-eight, .elevenths.left-eight {
        right: 72.72727%;
    }

    .eleventh.skip-eight, .elevenths.skip-eight {
        margin-left: 72.72727%;
    }

    .eleventh.right-nine, .elevenths.right-nine {
        left: 81.81818%;
    }

    .eleventh.left-nine, .elevenths.left-nine {
        right: 81.81818%;
    }

    .eleventh.skip-nine, .elevenths.skip-nine {
        margin-left: 81.81818%;
    }

    .eleventh.right-ten, .elevenths.right-ten {
        left: 90.90909%;
    }

    .eleventh.left-ten, .elevenths.left-ten {
        right: 90.90909%;
    }

    .eleventh.skip-ten, .elevenths.skip-ten {
        margin-left: 90.90909%;
    }

.twelfth, .twelfths {
    width: 8.33333%;
}

    .twelfth.one, .twelfths.one {
        width: 8.33333%;
    }

    .twelfth.two, .twelfths.two {
        width: 16.66667%;
    }

    .twelfth.three, .twelfths.three {
        width: 25%;
    }

    .twelfth.four, .twelfths.four {
        width: 33.33333%;
    }

    .twelfth.five, .twelfths.five {
        width: 41.66667%;
    }

    .twelfth.six, .twelfths.six {
        width: 50%;
    }

    .twelfth.seven, .twelfths.seven {
        width: 58.33333%;
    }

    .twelfth.eight, .twelfths.eight {
        width: 66.66667%;
    }

    .twelfth.nine, .twelfths.nine {
        width: 75%;
    }

    .twelfth.ten, .twelfths.ten {
        width: 83.33333%;
    }

    .twelfth.eleven, .twelfths.eleven {
        width: 91.66667%;
    }

    .twelfth.twelve, .twelfths.twelve {
        width: 100%;
    }

    .twelfth.right-one, .twelfths.right-one {
        left: 8.33333%;
    }

    .twelfth.left-one, .twelfths.left-one {
        right: 8.33333%;
    }

    .twelfth.skip-one, .twelfths.skip-one {
        margin-left: 8.33333%;
    }

    .twelfth.right-two, .twelfths.right-two {
        left: 16.66667%;
    }

    .twelfth.left-two, .twelfths.left-two {
        right: 16.66667%;
    }

    .twelfth.skip-two, .twelfths.skip-two {
        margin-left: 16.66667%;
    }

    .twelfth.right-three, .twelfths.right-three {
        left: 25%;
    }

    .twelfth.left-three, .twelfths.left-three {
        right: 25%;
    }

    .twelfth.skip-three, .twelfths.skip-three {
        margin-left: 25%;
    }

    .twelfth.right-four, .twelfths.right-four {
        left: 33.33333%;
    }

    .twelfth.left-four, .twelfths.left-four {
        right: 33.33333%;
    }

    .twelfth.skip-four, .twelfths.skip-four {
        margin-left: 33.33333%;
    }

    .twelfth.right-five, .twelfths.right-five {
        left: 41.66667%;
    }

    .twelfth.left-five, .twelfths.left-five {
        right: 41.66667%;
    }

    .twelfth.skip-five, .twelfths.skip-five {
        margin-left: 41.66667%;
    }

    .twelfth.right-six, .twelfths.right-six {
        left: 50%;
    }

    .twelfth.left-six, .twelfths.left-six {
        right: 50%;
    }

    .twelfth.skip-six, .twelfths.skip-six {
        margin-left: 50%;
    }

    .twelfth.right-seven, .twelfths.right-seven {
        left: 58.33333%;
    }

    .twelfth.left-seven, .twelfths.left-seven {
        right: 58.33333%;
    }

    .twelfth.skip-seven, .twelfths.skip-seven {
        margin-left: 58.33333%;
    }

    .twelfth.right-eight, .twelfths.right-eight {
        left: 66.66667%;
    }

    .twelfth.left-eight, .twelfths.left-eight {
        right: 66.66667%;
    }

    .twelfth.skip-eight, .twelfths.skip-eight {
        margin-left: 66.66667%;
    }

    .twelfth.right-nine, .twelfths.right-nine {
        left: 75%;
    }

    .twelfth.left-nine, .twelfths.left-nine {
        right: 75%;
    }

    .twelfth.skip-nine, .twelfths.skip-nine {
        margin-left: 75%;
    }

    .twelfth.right-ten, .twelfths.right-ten {
        left: 83.33333%;
    }

    .twelfth.left-ten, .twelfths.left-ten {
        right: 83.33333%;
    }

    .twelfth.skip-ten, .twelfths.skip-ten {
        margin-left: 83.33333%;
    }

    .twelfth.right-eleven, .twelfths.right-eleven {
        left: 91.66667%;
    }

    .twelfth.left-eleven, .twelfths.left-eleven {
        right: 91.66667%;
    }

    .twelfth.skip-eleven, .twelfths.skip-eleven {
        margin-left: 91.66667%;
    }

.one-up, .one-up-desktop {
    width: 100% !important;
    clear: none !important;
    float: left !important;
    left: 0 !important;
    right: 0 !important;
}

.two-up, .two-up-desktop {
    width: 50% !important;
    clear: none !important;
    float: left !important;
    left: 0 !important;
    right: 0 !important;
}

.three-up, .three-up-desktop {
    width: 33.33333% !important;
    clear: none !important;
    float: left !important;
    left: 0 !important;
    right: 0 !important;
}

.four-up, .four-up-desktop {
    width: 25% !important;
    clear: none !important;
    float: left !important;
    left: 0 !important;
    right: 0 !important;
}

.five-up, .five-up-desktop {
    width: 20% !important;
    clear: none !important;
    float: left !important;
    left: 0 !important;
    right: 0 !important;
}

.one-up:nth-child(1n+1), .one-up-desktop:nth-child(1n+1) {
    clear: both !important;
}

.two-up:nth-child(2n+1), .two-up-desktop:nth-child(2n+1) {
    clear: both !important;
}

.three-up:nth-child(3n+1), .three-up-desktop:nth-child(3n+1) {
    clear: both !important;
}

.four-up:nth-child(4n+1), .four-up-desktop:nth-child(4n+1) {
    clear: both !important;
}

.five-up:nth-child(5n+1), .five-up-desktop:nth-child(5n+1) {
    clear: both !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .one-up-ipad {
        width: 100% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

    .two-up-ipad {
        width: 50% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

    .three-up-ipad {
        width: 33.33333% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

    .four-up-ipad {
        width: 25% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

    .five-up-ipad {
        width: 20% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (min-width: 768px) and (min-width: 481px) {
    .one-up-ipad:nth-child(1n+1) {
        clear: both !important;
    }

    .two-up-ipad:nth-child(2n+1) {
        clear: both !important;
    }

    .three-up-ipad:nth-child(3n+1) {
        clear: both !important;
    }

    .four-up-ipad:nth-child(4n+1) {
        clear: both !important;
    }

    .five-up-ipad:nth-child(5n+1) {
        clear: both !important;
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    .one-up-small-tablet {
        width: 100% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

    .two-up-small-tablet {
        width: 50% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

    .three-up-small-tablet {
        width: 33.33333% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

    .four-up-small-tablet {
        width: 25% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

    .five-up-small-tablet {
        width: 20% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    .one-up-small-tablet:nth-child(1n+1) {
        clear: both !important;
    }

    .two-up-small-tablet:nth-child(2n+1) {
        clear: both !important;
    }

    .three-up-small-tablet:nth-child(3n+1) {
        clear: both !important;
    }

    .four-up-small-tablet:nth-child(4n+1) {
        clear: both !important;
    }

    .five-up-small-tablet:nth-child(5n+1) {
        clear: both !important;
    }
}

@media (max-width: 480px) {
    .one-up-mobile {
        width: 100% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

        .one-up-mobile:nth-child(2) {
            clear: both !important;
        }

    .two-up-mobile {
        width: 50% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

        .two-up-mobile:nth-child(3) {
            clear: both !important;
        }

    .three-up-mobile {
        width: 33.33333% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

        .three-up-mobile:nth-child(4) {
            clear: both !important;
        }

    .four-up-mobile {
        width: 25% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

        .four-up-mobile:nth-child(5) {
            clear: both !important;
        }

    .five-up-mobile {
        width: 20% !important;
        clear: none !important;
        float: left !important;
        left: 0 !important;
        right: 0 !important;
    }

        .five-up-mobile:nth-child(6) {
            clear: both !important;
        }
}

@media (max-width: 480px) {
    .one-up-mobile:nth-child(1n+1) {
        clear: both !important;
    }

    .two-up-mobile:nth-child(2n+1) {
        clear: both !important;
    }

    .three-up-mobile:nth-child(3n+1) {
        clear: both !important;
    }

    .four-up-mobile:nth-child(4n+1) {
        clear: both !important;
    }

    .five-up-mobile:nth-child(5n+1) {
        clear: both !important;
    }
}

font-weight:normal;font-style:normal
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

[class^="icon-"].pull-left, [class*=" icon-"].pull-left {
    margin-right: .3em;
}

[class^="icon-"].pull-right, [class*=" icon-"].pull-right {
    margin-left: .3em;
}

.icon-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: -35%;
}

    .icon-stack [class^="icon-"], .icon-stack [class*=" icon-"] {
        display: block;
        text-align: center;
        position: absolute;
        width: 100%;
        height: 100%;
        font-size: 1em;
        line-height: inherit;
        *line-height: 2em;
    }

    .icon-stack .icon-stack-base {
        font-size: 2em;
        *line-height: 1em;
    }

.icon-spin {
    display: inline-block;
    animation: spin 2s infinite linear;
}

a .icon-stack, a .icon-spin {
    display: inline-block;
    text-decoration: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

.icon-rotate-90:before {
    transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.icon-rotate-180:before {
    transform: rotate(180deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

.icon-rotate-270:before {
    transform: rotate(270deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.icon-flip-horizontal:before {
    transform: scale(-1, 1);
}

.icon-flip-vertical:before {
    transform: scale(1, -1);
}

a .icon-rotate-90:before, a .icon-rotate-180:before, a .icon-rotate-270:before, a .icon-flip-horizontal:before, a .icon-flip-vertical:before {
    display: inline-block;
}

.desktop-only {
    display: block;
}

.ipad-only {
    display: none !important;
}

.small-tablet-only {
    display: none !important;
}

.mobile-only {
    display: none !important;
}

@media (min-width: 1025px) {
    .desktop-only {
        display: block !important;
    }

    .ipad-only {
        display: none !important;
    }

    .small-tablet-only {
        display: none !important;
    }

    .mobile-only {
        display: none !important;
    }

    .hide-on-desktop {
        display: none !important;
    }

    .no-border-desktop {
        border: 0;
    }

    .small-desktop {
        font-size: 0.8em;
    }

    .medium-desktop {
        font-size: 1em;
    }

    .large-desktop {
        font-size: 1.5em;
    }

    .zero-desktop.padded, .zero-desktop.half-padded, .zero-desktop.double-padded, .zero-desktop.triple-padded {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-desktop.pad-top, .zero-desktop.half-pad-top, .zero-desktop.double-pad-top, .zero-desktop.triple-pad-top {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-desktop.pad-right, .zero-desktop.half-pad-right, .zero-desktop.double-pad-right, .zero-desktop.triple-pad-right {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-desktop.pad-bottom, .zero-desktop.half-pad-bottom, .zero-desktop.double-pad-bottom, .zero-desktop.triple-pad-bottom {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-desktop.pad-left, .zero-desktop.half-pad-left, .zero-desktop.double-pad-left, .zero-desktop.triple-pad-left {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-desktop.gapped, .zero-desktop.half-gapped, .zero-desktop.double-gapped, .zero-desktop.triple-gapped {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-desktop.gap-top, .zero-desktop.half-gap-top, .zero-desktop.double-gap-top, .zero-desktop.triple-gap-top {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-desktop.gap-right, .zero-desktop.half-gap-right, .zero-desktop.double-gap-right, .zero-desktop.triple-gap-right {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-desktop.gap-bottom, .zero-desktop.half-gap-bottom, .zero-desktop.double-gap-bottom, .zero-desktop.triple-gap-bottom {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-desktop.gap-left, .zero-desktop.half-gap-left, .zero-desktop.double-gap-left, .zero-desktop.triple-gap-left {
        padding: 0 !important;
        margin: 0 !important;
    }

    .padded-desktop {
        padding: 10px;
    }

    .pad-top-desktop {
        padding-top: 10px;
    }

    .pad-right-desktop {
        padding-right: 10px;
    }

    .pad-bottom-desktop {
        padding-bottom: 10px;
    }

    .pad-left-desktop {
        padding-left: 10px;
    }

    .no-padding-desktop.padded, .no-padding-desktop.half-padded, .no-padding-desktop.double-padded, .no-padding-desktop.triple-padded, .no-padded-desktop.padded, .no-padded-desktop.half-padded, .no-padded-desktop.double-padded, .no-padded-desktop.triple-padded, .no-pad-desktop.padded, .no-pad-desktop.half-padded, .no-pad-desktop.double-padded, .no-pad-desktop.triple-padded {
        padding: 0 !important;
    }

    .no-padding-desktop.pad-top, .no-padding-desktop.half-pad-top, .no-padding-desktop.double-pad-top, .no-padding-desktop.triple-pad-top, .no-padded-desktop.pad-top, .no-padded-desktop.half-pad-top, .no-padded-desktop.double-pad-top, .no-padded-desktop.triple-pad-top, .no-pad-desktop.pad-top, .no-pad-desktop.half-pad-top, .no-pad-desktop.double-pad-top, .no-pad-desktop.triple-pad-top {
        padding: 0 !important;
    }

    .no-padding-desktop.pad-right, .no-padding-desktop.half-pad-right, .no-padding-desktop.double-pad-right, .no-padding-desktop.triple-pad-right, .no-padded-desktop.pad-right, .no-padded-desktop.half-pad-right, .no-padded-desktop.double-pad-right, .no-padded-desktop.triple-pad-right, .no-pad-desktop.pad-right, .no-pad-desktop.half-pad-right, .no-pad-desktop.double-pad-right, .no-pad-desktop.triple-pad-right {
        padding: 0 !important;
    }

    .no-padding-desktop.pad-bottom, .no-padding-desktop.half-pad-bottom, .no-padding-desktop.double-pad-bottom, .no-padding-desktop.triple-pad-bottom, .no-padded-desktop.pad-bottom, .no-padded-desktop.half-pad-bottom, .no-padded-desktop.double-pad-bottom, .no-padded-desktop.triple-pad-bottom, .no-pad-desktop.pad-bottom, .no-pad-desktop.half-pad-bottom, .no-pad-desktop.double-pad-bottom, .no-pad-desktop.triple-pad-bottom {
        padding: 0 !important;
    }

    .no-padding-desktop.pad-left, .no-padding-desktop.half-pad-left, .no-padding-desktop.double-pad-left, .no-padding-desktop.triple-pad-left, .no-padded-desktop.pad-left, .no-padded-desktop.half-pad-left, .no-padded-desktop.double-pad-left, .no-padded-desktop.triple-pad-left, .no-pad-desktop.pad-left, .no-pad-desktop.half-pad-left, .no-pad-desktop.double-pad-left, .no-pad-desktop.triple-pad-left {
        padding: 0 !important;
    }

    .no-pad-top-desktop {
        padding-top: 0px;
    }

    .no-pad-right-desktop {
        padding-right: 0px;
    }

    .no-pad-bottom-desktop {
        padding-bottom: 0px;
    }

    .no-pad-left-desktop {
        padding-left: 0px;
    }

    .gapped-desktop {
        margin: 10px;
    }

    .gap-top-desktop {
        margin-top: 10px;
    }

    .gap-right-desktop {
        margin-right: 10px;
    }

    .gap-bottom-desktop {
        margin-bottom: 10px;
    }

    .gap-left-desktop {
        margin-left: 10px;
    }

    .no-margin-desktop.gapped, .no-margin-desktop.half-gapped, .no-margin-desktop.double-gapped, .no-margin-desktop.triple-gapped, .no-gapped-desktop.gapped, .no-gapped-desktop.half-gapped, .no-gapped-desktop.double-gapped, .no-gapped-desktop.triple-gapped, .no-gap-desktop.gapped, .no-gap-desktop.half-gapped, .no-gap-desktop.double-gapped, .no-gap-desktop.triple-gapped {
        margin: 0 !important;
    }

    .no-margin-desktop.gap-top, .no-margin-desktop.half-gap-top, .no-margin-desktop.double-gap-top, .no-margin-desktop.triple-gap-top, .no-gapped-desktop.gap-top, .no-gapped-desktop.half-gap-top, .no-gapped-desktop.double-gap-top, .no-gapped-desktop.triple-gap-top, .no-gap-desktop.gap-top, .no-gap-desktop.half-gap-top, .no-gap-desktop.double-gap-top, .no-gap-desktop.triple-gap-top {
        margin: 0 !important;
    }

    .no-margin-desktop.gap-right, .no-margin-desktop.half-gap-right, .no-margin-desktop.double-gap-right, .no-margin-desktop.triple-gap-right, .no-gapped-desktop.gap-right, .no-gapped-desktop.half-gap-right, .no-gapped-desktop.double-gap-right, .no-gapped-desktop.triple-gap-right, .no-gap-desktop.gap-right, .no-gap-desktop.half-gap-right, .no-gap-desktop.double-gap-right, .no-gap-desktop.triple-gap-right {
        margin: 0 !important;
    }

    .no-margin-desktop.gap-bottom, .no-margin-desktop.half-gap-bottom, .no-margin-desktop.double-gap-bottom, .no-margin-desktop.triple-gap-bottom, .no-gapped-desktop.gap-bottom, .no-gapped-desktop.half-gap-bottom, .no-gapped-desktop.double-gap-bottom, .no-gapped-desktop.triple-gap-bottom, .no-gap-desktop.gap-bottom, .no-gap-desktop.half-gap-bottom, .no-gap-desktop.double-gap-bottom, .no-gap-desktop.triple-gap-bottom {
        margin: 0 !important;
    }

    .no-margin-desktop.gap-left, .no-margin-desktop.half-gap-left, .no-margin-desktop.double-gap-left, .no-margin-desktop.triple-gap-left, .no-gapped-desktop.gap-left, .no-gapped-desktop.half-gap-left, .no-gapped-desktop.double-gap-left, .no-gapped-desktop.triple-gap-left, .no-gap-desktop.gap-left, .no-gap-desktop.half-gap-left, .no-gap-desktop.double-gap-left, .no-gap-desktop.triple-gap-left {
        margin: 0 !important;
    }

    .no-gap-top-desktop {
        margin-top: 0px;
    }

    .no-gap-right-desktop {
        margin-right: 0px;
    }

    .no-gap-bottom-desktop {
        margin-bottom: 0px;
    }

    .no-gap-left-desktop {
        margin-left: 0px;
    }

    .offset-desktop {
        margin: -10px;
    }

    .offset-top-desktop {
        margin-top: -10px;
    }

    .offset-right-desktop {
        margin-right: -10px;
    }

    .offset-bottom-desktop {
        margin-bottom: -10px;
    }

    .offset-left-desktop {
        margin-left: -10px;
    }

    .no-offset-top-desktop {
        margin-top: 0px;
    }

    .no-offset-right-desktop {
        margin-right: 0px;
    }

    .no-offset-bottom-desktop {
        margin-bottom: 0px;
    }

    .no-offset-left-desktop {
        margin-left: 0px;
    }

    .half-padded-desktop {
        padding: 5px;
    }

    .double-padded-desktop {
        padding: 20px;
    }

    .triple-padded-desktop {
        padding: 30px;
    }

    .half-pad-top-desktop {
        padding-top: 5px;
    }

    .double-pad-top-desktop {
        padding-top: 20px;
    }

    .triple-pad-top-desktop {
        padding-top: 30px;
    }

    .half-pad-right-desktop {
        padding-right: 5px;
    }

    .double-pad-right-desktop {
        padding-right: 20px;
    }

    .triple-pad-right-desktop {
        padding-right: 30px;
    }

    .half-pad-bottom-desktop {
        padding-bottom: 5px;
    }

    .double-pad-bottom-desktop {
        padding-bottom: 20px;
    }

    .triple-pad-bottom-desktop {
        padding-bottom: 30px;
    }

    .half-pad-left-desktop {
        padding-left: 5px;
    }

    .double-pad-left-desktop {
        padding-left: 20px;
    }

    .triple-pad-left-desktop {
        padding-left: 30px;
    }

    .half-gapped-desktop {
        margin: 5px;
    }

    .double-gapped-desktop {
        margin: 20px;
    }

    .triple-gapped-desktop {
        margin: 30px;
    }

    .half-gap-top-desktop {
        margin-top: 5px;
    }

    .double-gap-top-desktop {
        margin-top: 20px;
    }

    .triple-gap-top-desktop {
        margin-top: 30px;
    }

    .half-gap-right-desktop {
        margin-right: 5px;
    }

    .double-gap-right-desktop {
        margin-right: 20px;
    }

    .triple-gap-right-desktop {
        margin-right: 30px;
    }

    .half-gap-bottom-desktop {
        margin-bottom: 5px;
    }

    .double-gap-bottom-desktop {
        margin-bottom: 20px;
    }

    .triple-gap-bottom-desktop {
        margin-bottom: 30px;
    }

    .half-gap-left-desktop {
        margin-left: 5px;
    }

    .double-gap-left-desktop {
        margin-left: 20px;
    }

    .triple-gap-left-desktop {
        margin-left: 30px;
    }

    .half-offset-desktop {
        margin: -5px;
    }

    .double-offset-desktop {
        margin: -20px;
    }

    .triple-offset-desktop {
        margin: -30px;
    }

    .half-offset-top-desktop {
        margin-top: -5px;
    }

    .double-offset-top-desktop {
        margin-top: -20px;
    }

    .triple-offset-top-desktop {
        margin-top: -30px;
    }

    .half-offset-right-desktop {
        margin-right: -5px;
    }

    .double-offset-right-desktop {
        margin-right: -20px;
    }

    .triple-offset-right-desktop {
        margin-right: -30px;
    }

    .half-offset-bottom-desktop {
        margin-bottom: -5px;
    }

    .double-offset-bottom-desktop {
        margin-bottom: -20px;
    }

    .triple-offset-bottom-desktop {
        margin-bottom: -30px;
    }

    .half-offset-left-desktop {
        margin-left: -5px;
    }

    .double-offset-left-desktop {
        margin-left: -20px;
    }

    .triple-offset-left-desktop {
        margin-left: -30px;
    }

    .fixed-desktop {
        position: fixed;
    }

    .fixed-top-desktop {
        position: fixed;
        top: 0;
    }

    .fixed-right-desktop {
        position: fixed;
        right: 0;
    }

    .fixed-bottom-desktop {
        position: fixed;
        bottom: 0;
    }

    .fixed-left-desktop {
        position: fixed;
        left: 0;
    }

    .fixed-middle-desktop {
        position: fixed;
        top: 50%;
    }

    .fixed-center-desktop {
        position: fixed;
        left: 50%;
    }

    .absolute-desktop {
        position: absolute;
    }

    .absolute-top-desktop {
        position: absolute;
        top: 0;
    }

    .absolute-right-desktop {
        position: absolute;
        right: 0;
    }

    .absolute-bottom-desktop {
        position: absolute;
        bottom: 0;
    }

    .absolute-left-desktop {
        position: absolute;
        left: 0;
    }

    .absolute-middle-desktop {
        position: absolute;
        top: 50%;
    }

    .absolute-center-desktop {
        position: absolute;
        left: 50%;
    }

    .static-desktop {
        position: static;
    }

    .inline-desktop {
        display: inline;
    }

    .block-desktop {
        display: block;
    }

    .clear-desktop {
        clear: both;
    }

        .clear-desktop:after {
            content: " ";
            display: block;
            height: 0;
            font-size: 0;
            clear: both;
            visibility: hidden;
        }

    .center-desktop {
        display: block;
        margin: 0 auto;
    }

    .pull-right-desktop {
        float: right;
    }

    .pull-left-desktop {
        float: left;
    }

    .pull-none-desktop {
        float: none;
    }

    .bordered-desktop {
        border: 1px solid #ddd;
    }

    .border-top-desktop {
        border-top: 1px solid #ddd;
    }

    .border-right-desktop {
        border-right: 1px solid #ddd;
    }

    .border-bottom-desktop {
        border-bottom: 1px solid #ddd;
    }

    .border-left-desktop {
        border-left: 1px solid #ddd;
    }

    .align-top-desktop {
        display: table-cell;
        vertical-align: top;
    }

    .align-right-desktop {
        text-align: right;
    }

    .align-bottom-desktop {
        display: table-cell;
        vertical-align: bottom;
    }

    .align-left-desktop {
        text-align: left;
    }

    .align-center-desktop {
        text-align: center;
    }

    .justify-desktop {
        text-align: justify;
    }

    .truncate-desktop {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .rotate-90-desktop {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .rotate-90-ctr-desktop {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .rotate-180-desktop {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .rotate-180-ctr-desktop {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .rotate-270-desktop {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .rotate-270-ctr-desktop {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-270deg);
        -moz-transform: rotate(-270deg);
        -ms-transform: rotate(-270deg);
        -o-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }

    .rotate-360-desktop {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    .rotate-360-ctr-desktop {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    .one-column-desktop, .one-columns-desktop {
        column-count: 1;
    }

    .two-column-desktop, .two-columns-desktop {
        column-count: 2;
    }

    .three-column-desktop, .three-columns-desktop {
        column-count: 3;
    }

    .four-column-desktop, .four-columns-desktop {
        column-count: 4;
    }

    .five-column-desktop, .five-columns-desktop {
        column-count: 5;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }

    .ipad-only {
        display: block !important;
    }

    .small-tablet-only {
        display: none !important;
    }

    .mobile-only {
        display: none !important;
    }

    .hide-on-ipad {
        display: none !important;
    }

    .no-border-ipad {
        border: 0;
    }

    .small-ipad {
        font-size: 0.8em;
    }

    .medium-ipad {
        font-size: 1em;
    }

    .large-ipad {
        font-size: 1.5em;
    }

    .zero-ipad.padded, .zero-ipad.half-padded, .zero-ipad.double-padded, .zero-ipad.triple-padded {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-ipad.pad-top, .zero-ipad.half-pad-top, .zero-ipad.double-pad-top, .zero-ipad.triple-pad-top {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-ipad.pad-right, .zero-ipad.half-pad-right, .zero-ipad.double-pad-right, .zero-ipad.triple-pad-right {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-ipad.pad-bottom, .zero-ipad.half-pad-bottom, .zero-ipad.double-pad-bottom, .zero-ipad.triple-pad-bottom {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-ipad.pad-left, .zero-ipad.half-pad-left, .zero-ipad.double-pad-left, .zero-ipad.triple-pad-left {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-ipad.gapped, .zero-ipad.half-gapped, .zero-ipad.double-gapped, .zero-ipad.triple-gapped {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-ipad.gap-top, .zero-ipad.half-gap-top, .zero-ipad.double-gap-top, .zero-ipad.triple-gap-top {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-ipad.gap-right, .zero-ipad.half-gap-right, .zero-ipad.double-gap-right, .zero-ipad.triple-gap-right {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-ipad.gap-bottom, .zero-ipad.half-gap-bottom, .zero-ipad.double-gap-bottom, .zero-ipad.triple-gap-bottom {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-ipad.gap-left, .zero-ipad.half-gap-left, .zero-ipad.double-gap-left, .zero-ipad.triple-gap-left {
        padding: 0 !important;
        margin: 0 !important;
    }

    .padded-ipad {
        padding: 10px;
    }

    .pad-top-ipad {
        padding-top: 10px;
    }

    .pad-right-ipad {
        padding-right: 10px;
    }

    .pad-bottom-ipad {
        padding-bottom: 10px;
    }

    .pad-left-ipad {
        padding-left: 10px;
    }

    .no-padding-ipad.padded, .no-padding-ipad.half-padded, .no-padding-ipad.double-padded, .no-padding-ipad.triple-padded, .no-padded-ipad.padded, .no-padded-ipad.half-padded, .no-padded-ipad.double-padded, .no-padded-ipad.triple-padded, .no-pad-ipad.padded, .no-pad-ipad.half-padded, .no-pad-ipad.double-padded, .no-pad-ipad.triple-padded {
        padding: 0 !important;
    }

    .no-padding-ipad.pad-top, .no-padding-ipad.half-pad-top, .no-padding-ipad.double-pad-top, .no-padding-ipad.triple-pad-top, .no-padded-ipad.pad-top, .no-padded-ipad.half-pad-top, .no-padded-ipad.double-pad-top, .no-padded-ipad.triple-pad-top, .no-pad-ipad.pad-top, .no-pad-ipad.half-pad-top, .no-pad-ipad.double-pad-top, .no-pad-ipad.triple-pad-top {
        padding: 0 !important;
    }

    .no-padding-ipad.pad-right, .no-padding-ipad.half-pad-right, .no-padding-ipad.double-pad-right, .no-padding-ipad.triple-pad-right, .no-padded-ipad.pad-right, .no-padded-ipad.half-pad-right, .no-padded-ipad.double-pad-right, .no-padded-ipad.triple-pad-right, .no-pad-ipad.pad-right, .no-pad-ipad.half-pad-right, .no-pad-ipad.double-pad-right, .no-pad-ipad.triple-pad-right {
        padding: 0 !important;
    }

    .no-padding-ipad.pad-bottom, .no-padding-ipad.half-pad-bottom, .no-padding-ipad.double-pad-bottom, .no-padding-ipad.triple-pad-bottom, .no-padded-ipad.pad-bottom, .no-padded-ipad.half-pad-bottom, .no-padded-ipad.double-pad-bottom, .no-padded-ipad.triple-pad-bottom, .no-pad-ipad.pad-bottom, .no-pad-ipad.half-pad-bottom, .no-pad-ipad.double-pad-bottom, .no-pad-ipad.triple-pad-bottom {
        padding: 0 !important;
    }

    .no-padding-ipad.pad-left, .no-padding-ipad.half-pad-left, .no-padding-ipad.double-pad-left, .no-padding-ipad.triple-pad-left, .no-padded-ipad.pad-left, .no-padded-ipad.half-pad-left, .no-padded-ipad.double-pad-left, .no-padded-ipad.triple-pad-left, .no-pad-ipad.pad-left, .no-pad-ipad.half-pad-left, .no-pad-ipad.double-pad-left, .no-pad-ipad.triple-pad-left {
        padding: 0 !important;
    }

    .no-pad-top-ipad {
        padding-top: 0px;
    }

    .no-pad-right-ipad {
        padding-right: 0px;
    }

    .no-pad-bottom-ipad {
        padding-bottom: 0px;
    }

    .no-pad-left-ipad {
        padding-left: 0px;
    }

    .gapped-ipad {
        margin: 10px;
    }

    .gap-top-ipad {
        margin-top: 10px;
    }

    .gap-right-ipad {
        margin-right: 10px;
    }

    .gap-bottom-ipad {
        margin-bottom: 10px;
    }

    .gap-left-ipad {
        margin-left: 10px;
    }

    .no-margin-ipad.gapped, .no-margin-ipad.half-gapped, .no-margin-ipad.double-gapped, .no-margin-ipad.triple-gapped, .no-gapped-ipad.gapped, .no-gapped-ipad.half-gapped, .no-gapped-ipad.double-gapped, .no-gapped-ipad.triple-gapped, .no-gap-ipad.gapped, .no-gap-ipad.half-gapped, .no-gap-ipad.double-gapped, .no-gap-ipad.triple-gapped {
        margin: 0 !important;
    }

    .no-margin-ipad.gap-top, .no-margin-ipad.half-gap-top, .no-margin-ipad.double-gap-top, .no-margin-ipad.triple-gap-top, .no-gapped-ipad.gap-top, .no-gapped-ipad.half-gap-top, .no-gapped-ipad.double-gap-top, .no-gapped-ipad.triple-gap-top, .no-gap-ipad.gap-top, .no-gap-ipad.half-gap-top, .no-gap-ipad.double-gap-top, .no-gap-ipad.triple-gap-top {
        margin: 0 !important;
    }

    .no-margin-ipad.gap-right, .no-margin-ipad.half-gap-right, .no-margin-ipad.double-gap-right, .no-margin-ipad.triple-gap-right, .no-gapped-ipad.gap-right, .no-gapped-ipad.half-gap-right, .no-gapped-ipad.double-gap-right, .no-gapped-ipad.triple-gap-right, .no-gap-ipad.gap-right, .no-gap-ipad.half-gap-right, .no-gap-ipad.double-gap-right, .no-gap-ipad.triple-gap-right {
        margin: 0 !important;
    }

    .no-margin-ipad.gap-bottom, .no-margin-ipad.half-gap-bottom, .no-margin-ipad.double-gap-bottom, .no-margin-ipad.triple-gap-bottom, .no-gapped-ipad.gap-bottom, .no-gapped-ipad.half-gap-bottom, .no-gapped-ipad.double-gap-bottom, .no-gapped-ipad.triple-gap-bottom, .no-gap-ipad.gap-bottom, .no-gap-ipad.half-gap-bottom, .no-gap-ipad.double-gap-bottom, .no-gap-ipad.triple-gap-bottom {
        margin: 0 !important;
    }

    .no-margin-ipad.gap-left, .no-margin-ipad.half-gap-left, .no-margin-ipad.double-gap-left, .no-margin-ipad.triple-gap-left, .no-gapped-ipad.gap-left, .no-gapped-ipad.half-gap-left, .no-gapped-ipad.double-gap-left, .no-gapped-ipad.triple-gap-left, .no-gap-ipad.gap-left, .no-gap-ipad.half-gap-left, .no-gap-ipad.double-gap-left, .no-gap-ipad.triple-gap-left {
        margin: 0 !important;
    }

    .no-gap-top-ipad {
        margin-top: 0px;
    }

    .no-gap-right-ipad {
        margin-right: 0px;
    }

    .no-gap-bottom-ipad {
        margin-bottom: 0px;
    }

    .no-gap-left-ipad {
        margin-left: 0px;
    }

    .offset-ipad {
        margin: -10px;
    }

    .offset-top-ipad {
        margin-top: -10px;
    }

    .offset-right-ipad {
        margin-right: -10px;
    }

    .offset-bottom-ipad {
        margin-bottom: -10px;
    }

    .offset-left-ipad {
        margin-left: -10px;
    }

    .no-offset-top-ipad {
        margin-top: 0px;
    }

    .no-offset-right-ipad {
        margin-right: 0px;
    }

    .no-offset-bottom-ipad {
        margin-bottom: 0px;
    }

    .no-offset-left-ipad {
        margin-left: 0px;
    }

    .half-padded-ipad {
        padding: 5px;
    }

    .double-padded-ipad {
        padding: 20px;
    }

    .triple-padded-ipad {
        padding: 30px;
    }

    .half-pad-top-ipad {
        padding-top: 5px;
    }

    .double-pad-top-ipad {
        padding-top: 20px;
    }

    .triple-pad-top-ipad {
        padding-top: 30px;
    }

    .half-pad-right-ipad {
        padding-right: 5px;
    }

    .double-pad-right-ipad {
        padding-right: 20px;
    }

    .triple-pad-right-ipad {
        padding-right: 30px;
    }

    .half-pad-bottom-ipad {
        padding-bottom: 5px;
    }

    .double-pad-bottom-ipad {
        padding-bottom: 20px;
    }

    .triple-pad-bottom-ipad {
        padding-bottom: 30px;
    }

    .half-pad-left-ipad {
        padding-left: 5px;
    }

    .double-pad-left-ipad {
        padding-left: 20px;
    }

    .triple-pad-left-ipad {
        padding-left: 30px;
    }

    .half-gapped-ipad {
        margin: 5px;
    }

    .double-gapped-ipad {
        margin: 20px;
    }

    .triple-gapped-ipad {
        margin: 30px;
    }

    .half-gap-top-ipad {
        margin-top: 5px;
    }

    .double-gap-top-ipad {
        margin-top: 20px;
    }

    .triple-gap-top-ipad {
        margin-top: 30px;
    }

    .half-gap-right-ipad {
        margin-right: 5px;
    }

    .double-gap-right-ipad {
        margin-right: 20px;
    }

    .triple-gap-right-ipad {
        margin-right: 30px;
    }

    .half-gap-bottom-ipad {
        margin-bottom: 5px;
    }

    .double-gap-bottom-ipad {
        margin-bottom: 20px;
    }

    .triple-gap-bottom-ipad {
        margin-bottom: 30px;
    }

    .half-gap-left-ipad {
        margin-left: 5px;
    }

    .double-gap-left-ipad {
        margin-left: 20px;
    }

    .triple-gap-left-ipad {
        margin-left: 30px;
    }

    .half-offset-ipad {
        margin: -5px;
    }

    .double-offset-ipad {
        margin: -20px;
    }

    .triple-offset-ipad {
        margin: -30px;
    }

    .half-offset-top-ipad {
        margin-top: -5px;
    }

    .double-offset-top-ipad {
        margin-top: -20px;
    }

    .triple-offset-top-ipad {
        margin-top: -30px;
    }

    .half-offset-right-ipad {
        margin-right: -5px;
    }

    .double-offset-right-ipad {
        margin-right: -20px;
    }

    .triple-offset-right-ipad {
        margin-right: -30px;
    }

    .half-offset-bottom-ipad {
        margin-bottom: -5px;
    }

    .double-offset-bottom-ipad {
        margin-bottom: -20px;
    }

    .triple-offset-bottom-ipad {
        margin-bottom: -30px;
    }

    .half-offset-left-ipad {
        margin-left: -5px;
    }

    .double-offset-left-ipad {
        margin-left: -20px;
    }

    .triple-offset-left-ipad {
        margin-left: -30px;
    }

    .fixed-ipad {
        position: fixed;
    }

    .fixed-top-ipad {
        position: fixed;
        top: 0;
    }

    .fixed-right-ipad {
        position: fixed;
        right: 0;
    }

    .fixed-bottom-ipad {
        position: fixed;
        bottom: 0;
    }

    .fixed-left-ipad {
        position: fixed;
        left: 0;
    }

    .fixed-middle-ipad {
        position: fixed;
        top: 50%;
    }

    .fixed-center-ipad {
        position: fixed;
        left: 50%;
    }

    .absolute-ipad {
        position: absolute;
    }

    .absolute-top-ipad {
        position: absolute;
        top: 0;
    }

    .absolute-right-ipad {
        position: absolute;
        right: 0;
    }

    .absolute-bottom-ipad {
        position: absolute;
        bottom: 0;
    }

    .absolute-left-ipad {
        position: absolute;
        left: 0;
    }

    .absolute-middle-ipad {
        position: absolute;
        top: 50%;
    }

    .absolute-center-ipad {
        position: absolute;
        left: 50%;
    }

    .static-ipad {
        position: static;
    }

    .inline-ipad {
        display: inline;
    }

    .block-ipad {
        display: block;
    }

    .clear-ipad {
        clear: both;
    }

        .clear-ipad:after {
            content: " ";
            display: block;
            height: 0;
            font-size: 0;
            clear: both;
            visibility: hidden;
        }

    .center-ipad {
        display: block;
        margin: 0 auto;
    }

    .pull-right-ipad {
        float: right;
    }

    .pull-left-ipad {
        float: left;
    }

    .pull-none-ipad {
        float: none;
    }

    .bordered-ipad {
        border: 1px solid #ddd;
    }

    .border-top-ipad {
        border-top: 1px solid #ddd;
    }

    .border-right-ipad {
        border-right: 1px solid #ddd;
    }

    .border-bottom-ipad {
        border-bottom: 1px solid #ddd;
    }

    .border-left-ipad {
        border-left: 1px solid #ddd;
    }

    .align-top-ipad {
        display: table-cell;
        vertical-align: top;
    }

    .align-right-ipad {
        text-align: right;
    }

    .align-bottom-ipad {
        display: table-cell;
        vertical-align: bottom;
    }

    .align-left-ipad {
        text-align: left;
    }

    .align-center-ipad {
        text-align: center;
    }

    .justify-ipad {
        text-align: justify;
    }

    .truncate-ipad {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .rotate-90-ipad {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .rotate-90-ctr-ipad {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .rotate-180-ipad {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .rotate-180-ctr-ipad {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .rotate-270-ipad {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .rotate-270-ctr-ipad {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-270deg);
        -moz-transform: rotate(-270deg);
        -ms-transform: rotate(-270deg);
        -o-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }

    .rotate-360-ipad {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    .rotate-360-ipad {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    .one-column-ipad, .one-columns-ipad {
        column-count: 1;
    }

    .two-column-ipad, .two-columns-ipad {
        column-count: 2;
    }

    .three-column-ipad, .three-columns-ipad {
        column-count: 3;
    }

    .four-column-ipad, .four-columns-ipad {
        column-count: 4;
    }

    .five-column-ipad, .five-columns-ipad {
        column-count: 5;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile):before {
        float: left;
        display: inline-block;
        content: attr(title);
        padding: 0.25em 0.5em;
        font-weight: bold;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile) button.hamburger {
        display: inline-block;
    }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) button.hamburger:before {
            font-family: FontAwesome;
            font-weight: normal;
            font-style: normal;
            text-decoration: inherit;
            -webkit-font-smoothing: antialiased;
            *margin-right: .3em;
            content: "\f03a";
        }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) button.hamburger[aria-expanded="true"]:before {
            content: "\f151";
        }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile) > ul {
        display: none;
    }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) > ul > li > a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile) > ul > li > button {
            border-top-width: 1px;
        }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) > ul[aria-expanded="true"] {
            display: block;
        }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li {
        float: none;
        display: block;
    }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li ul {
            position: static;
        }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li li a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li li button {
            text-indent: 10px;
        }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li li li a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li li li button {
            text-indent: 20px;
        }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li[role="menu"] ul {
            border: 0;
        }

            .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li[role="menu"] ul > li:first-child > a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li[role="menu"] ul > li:first-child > button {
                border-top-width: 1px;
            }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li[role="menu"] > a:after, .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li[role="menu"] > button:after {
            float: none;
            content: "\f0d7";
        }

        .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li[role="menu"][aria-pressed="true"] > a:after, .nav:not(.nocollapse):not(.small-tablet):not(.mobile) li[role="menu"][aria-pressed="true"] > button:after {
            content: "\f0d8";
        }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile) a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile) button:not(.hamburger) {
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).green li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).green li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).green a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).green li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).green li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).green button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).blue li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).blue li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).blue a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).blue li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).blue li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).blue button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).purple li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).purple li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).purple a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).purple li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).purple li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).purple button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).yellow li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).yellow li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).yellow a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).yellow li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).yellow li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).yellow button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).orange li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).orange li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).orange a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).orange li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).orange li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).orange button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).red li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).red li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).red a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).red li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).red li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).red button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).pink li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).pink li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).pink a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).pink li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).pink li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).pink button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).turquoise li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).turquoise li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).turquoise a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).turquoise li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).turquoise li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).turquoise button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).asphalt li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).asphalt li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).asphalt a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).asphalt li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).asphalt li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).asphalt button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).charcoal li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).charcoal li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).charcoal a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).charcoal li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).charcoal li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).charcoal button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).white li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).white li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).white a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).white li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).white li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).white button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.small-tablet):not(.mobile).black li ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).black li[role="menu"] ul a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).black a, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).black li ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).black li[role="menu"] ul button, .nav:not(.nocollapse):not(.small-tablet):not(.mobile).black button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }
}

@media (max-width: 767px) {
    .half:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .halves:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .third:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .thirds:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet) {
        width: 100% !important;
        float: none;
        clear: both;
    }

    .half.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .halves.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .third.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .thirds.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .third.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .thirds.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.right-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.right-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.right-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.right-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet) {
        left: 0;
    }

    .half.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .halves.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .third.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .thirds.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .third.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .thirds.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.left-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.left-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.left-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.left-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet) {
        right: 0;
    }

    .half.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .halves.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .third.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .thirds.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .third.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .thirds.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fourths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .fifths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sixths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .seventh.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .sevenths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighth.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eighths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninth.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .ninths.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenth.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .tenths.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .eleventh.skip-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .elevenths.skip-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfth.skip-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet), .twelfths.skip-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile):not(.small-tablet):not(.one-up-small-tablet):not(.two-up-small-tablet):not(.three-up-small-tablet):not(.four-up-small-tablet):not(.five-up-small-tablet) {
        margin-left: 0;
    }

    .desktop-only {
        display: none !important;
    }

    .ipad-only {
        display: none !important;
    }

    .small-tablet-only {
        display: block !important;
    }

    .mobile-only {
        display: none !important;
    }

    .hide-on-small-tablet {
        display: none !important;
    }

    .no-border-small-tablet {
        border: 0;
    }

    .small-small-tablet {
        font-size: 0.8em;
    }

    .medium-small-tablet {
        font-size: 1em;
    }

    .large-small-tablet {
        font-size: 1.5em;
    }

    .zero-small-tablet.padded, .zero-small-tablet.half-padded, .zero-small-tablet.double-padded, .zero-small-tablet.triple-padded {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-small-tablet.pad-top, .zero-small-tablet.half-pad-top, .zero-small-tablet.double-pad-top, .zero-small-tablet.triple-pad-top {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-small-tablet.pad-right, .zero-small-tablet.half-pad-right, .zero-small-tablet.double-pad-right, .zero-small-tablet.triple-pad-right {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-small-tablet.pad-bottom, .zero-small-tablet.half-pad-bottom, .zero-small-tablet.double-pad-bottom, .zero-small-tablet.triple-pad-bottom {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-small-tablet.pad-left, .zero-small-tablet.half-pad-left, .zero-small-tablet.double-pad-left, .zero-small-tablet.triple-pad-left {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-small-tablet.gapped, .zero-small-tablet.half-gapped, .zero-small-tablet.double-gapped, .zero-small-tablet.triple-gapped {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-small-tablet.gap-top, .zero-small-tablet.half-gap-top, .zero-small-tablet.double-gap-top, .zero-small-tablet.triple-gap-top {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-small-tablet.gap-right, .zero-small-tablet.half-gap-right, .zero-small-tablet.double-gap-right, .zero-small-tablet.triple-gap-right {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-small-tablet.gap-bottom, .zero-small-tablet.half-gap-bottom, .zero-small-tablet.double-gap-bottom, .zero-small-tablet.triple-gap-bottom {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-small-tablet.gap-left, .zero-small-tablet.half-gap-left, .zero-small-tablet.double-gap-left, .zero-small-tablet.triple-gap-left {
        padding: 0 !important;
        margin: 0 !important;
    }

    .padded-small-tablet {
        padding: 10px;
    }

    .pad-top-small-tablet {
        padding-top: 10px;
    }

    .pad-right-small-tablet {
        padding-right: 10px;
    }

    .pad-bottom-small-tablet {
        padding-bottom: 10px;
    }

    .pad-left-small-tablet {
        padding-left: 10px;
    }

    .no-padding-small-tablet.padded, .no-padding-small-tablet.half-padded, .no-padding-small-tablet.double-padded, .no-padding-small-tablet.triple-padded, .no-padded-small-tablet.padded, .no-padded-small-tablet.half-padded, .no-padded-small-tablet.double-padded, .no-padded-small-tablet.triple-padded, .no-pad-small-tablet.padded, .no-pad-small-tablet.half-padded, .no-pad-small-tablet.double-padded, .no-pad-small-tablet.triple-padded {
        padding: 0 !important;
    }

    .no-padding-small-tablet.pad-top, .no-padding-small-tablet.half-pad-top, .no-padding-small-tablet.double-pad-top, .no-padding-small-tablet.triple-pad-top, .no-padded-small-tablet.pad-top, .no-padded-small-tablet.half-pad-top, .no-padded-small-tablet.double-pad-top, .no-padded-small-tablet.triple-pad-top, .no-pad-small-tablet.pad-top, .no-pad-small-tablet.half-pad-top, .no-pad-small-tablet.double-pad-top, .no-pad-small-tablet.triple-pad-top {
        padding: 0 !important;
    }

    .no-padding-small-tablet.pad-right, .no-padding-small-tablet.half-pad-right, .no-padding-small-tablet.double-pad-right, .no-padding-small-tablet.triple-pad-right, .no-padded-small-tablet.pad-right, .no-padded-small-tablet.half-pad-right, .no-padded-small-tablet.double-pad-right, .no-padded-small-tablet.triple-pad-right, .no-pad-small-tablet.pad-right, .no-pad-small-tablet.half-pad-right, .no-pad-small-tablet.double-pad-right, .no-pad-small-tablet.triple-pad-right {
        padding: 0 !important;
    }

    .no-padding-small-tablet.pad-bottom, .no-padding-small-tablet.half-pad-bottom, .no-padding-small-tablet.double-pad-bottom, .no-padding-small-tablet.triple-pad-bottom, .no-padded-small-tablet.pad-bottom, .no-padded-small-tablet.half-pad-bottom, .no-padded-small-tablet.double-pad-bottom, .no-padded-small-tablet.triple-pad-bottom, .no-pad-small-tablet.pad-bottom, .no-pad-small-tablet.half-pad-bottom, .no-pad-small-tablet.double-pad-bottom, .no-pad-small-tablet.triple-pad-bottom {
        padding: 0 !important;
    }

    .no-padding-small-tablet.pad-left, .no-padding-small-tablet.half-pad-left, .no-padding-small-tablet.double-pad-left, .no-padding-small-tablet.triple-pad-left, .no-padded-small-tablet.pad-left, .no-padded-small-tablet.half-pad-left, .no-padded-small-tablet.double-pad-left, .no-padded-small-tablet.triple-pad-left, .no-pad-small-tablet.pad-left, .no-pad-small-tablet.half-pad-left, .no-pad-small-tablet.double-pad-left, .no-pad-small-tablet.triple-pad-left {
        padding: 0 !important;
    }

    .no-pad-top-small-tablet {
        padding-top: 0px;
    }

    .no-pad-right-small-tablet {
        padding-right: 0px;
    }

    .no-pad-bottom-small-tablet {
        padding-bottom: 0px;
    }

    .no-pad-left-small-tablet {
        padding-left: 0px;
    }

    .gapped-small-tablet {
        margin: 10px;
    }

    .gap-top-small-tablet {
        margin-top: 10px;
    }

    .gap-right-small-tablet {
        margin-right: 10px;
    }

    .gap-bottom-small-tablet {
        margin-bottom: 10px;
    }

    .gap-left-small-tablet {
        margin-left: 10px;
    }

    .no-margin-small-tablet.gapped, .no-margin-small-tablet.half-gapped, .no-margin-small-tablet.double-gapped, .no-margin-small-tablet.triple-gapped, .no-gapped-small-tablet.gapped, .no-gapped-small-tablet.half-gapped, .no-gapped-small-tablet.double-gapped, .no-gapped-small-tablet.triple-gapped, .no-gap-small-tablet.gapped, .no-gap-small-tablet.half-gapped, .no-gap-small-tablet.double-gapped, .no-gap-small-tablet.triple-gapped {
        margin: 0 !important;
    }

    .no-margin-small-tablet.gap-top, .no-margin-small-tablet.half-gap-top, .no-margin-small-tablet.double-gap-top, .no-margin-small-tablet.triple-gap-top, .no-gapped-small-tablet.gap-top, .no-gapped-small-tablet.half-gap-top, .no-gapped-small-tablet.double-gap-top, .no-gapped-small-tablet.triple-gap-top, .no-gap-small-tablet.gap-top, .no-gap-small-tablet.half-gap-top, .no-gap-small-tablet.double-gap-top, .no-gap-small-tablet.triple-gap-top {
        margin: 0 !important;
    }

    .no-margin-small-tablet.gap-right, .no-margin-small-tablet.half-gap-right, .no-margin-small-tablet.double-gap-right, .no-margin-small-tablet.triple-gap-right, .no-gapped-small-tablet.gap-right, .no-gapped-small-tablet.half-gap-right, .no-gapped-small-tablet.double-gap-right, .no-gapped-small-tablet.triple-gap-right, .no-gap-small-tablet.gap-right, .no-gap-small-tablet.half-gap-right, .no-gap-small-tablet.double-gap-right, .no-gap-small-tablet.triple-gap-right {
        margin: 0 !important;
    }

    .no-margin-small-tablet.gap-bottom, .no-margin-small-tablet.half-gap-bottom, .no-margin-small-tablet.double-gap-bottom, .no-margin-small-tablet.triple-gap-bottom, .no-gapped-small-tablet.gap-bottom, .no-gapped-small-tablet.half-gap-bottom, .no-gapped-small-tablet.double-gap-bottom, .no-gapped-small-tablet.triple-gap-bottom, .no-gap-small-tablet.gap-bottom, .no-gap-small-tablet.half-gap-bottom, .no-gap-small-tablet.double-gap-bottom, .no-gap-small-tablet.triple-gap-bottom {
        margin: 0 !important;
    }

    .no-margin-small-tablet.gap-left, .no-margin-small-tablet.half-gap-left, .no-margin-small-tablet.double-gap-left, .no-margin-small-tablet.triple-gap-left, .no-gapped-small-tablet.gap-left, .no-gapped-small-tablet.half-gap-left, .no-gapped-small-tablet.double-gap-left, .no-gapped-small-tablet.triple-gap-left, .no-gap-small-tablet.gap-left, .no-gap-small-tablet.half-gap-left, .no-gap-small-tablet.double-gap-left, .no-gap-small-tablet.triple-gap-left {
        margin: 0 !important;
    }

    .no-gap-top-small-tablet {
        margin-top: 0px;
    }

    .no-gap-right-small-tablet {
        margin-right: 0px;
    }

    .no-gap-bottom-small-tablet {
        margin-bottom: 0px;
    }

    .no-gap-left-small-tablet {
        margin-left: 0px;
    }

    .offset-small-tablet {
        margin: -10px;
    }

    .offset-top-small-tablet {
        margin-top: -10px;
    }

    .offset-right-small-tablet {
        margin-right: -10px;
    }

    .offset-bottom-small-tablet {
        margin-bottom: -10px;
    }

    .offset-left-small-tablet {
        margin-left: -10px;
    }

    .no-offset-top-small-tablet {
        margin-top: 0px;
    }

    .no-offset-right-small-tablet {
        margin-right: 0px;
    }

    .no-offset-bottom-small-tablet {
        margin-bottom: 0px;
    }

    .no-offset-left-small-tablet {
        margin-left: 0px;
    }

    .half-padded-small-tablet {
        padding: 5px;
    }

    .double-padded-small-tablet {
        padding: 20px;
    }

    .triple-padded-small-tablet {
        padding: 30px;
    }

    .half-pad-top-small-tablet {
        padding-top: 5px;
    }

    .double-pad-top-small-tablet {
        padding-top: 20px;
    }

    .triple-pad-top-small-tablet {
        padding-top: 30px;
    }

    .half-pad-right-small-tablet {
        padding-right: 5px;
    }

    .double-pad-right-small-tablet {
        padding-right: 20px;
    }

    .triple-pad-right-small-tablet {
        padding-right: 30px;
    }

    .half-pad-bottom-small-tablet {
        padding-bottom: 5px;
    }

    .double-pad-bottom-small-tablet {
        padding-bottom: 20px;
    }

    .triple-pad-bottom-small-tablet {
        padding-bottom: 30px;
    }

    .half-pad-left-small-tablet {
        padding-left: 5px;
    }

    .double-pad-left-small-tablet {
        padding-left: 20px;
    }

    .triple-pad-left-small-tablet {
        padding-left: 30px;
    }

    .half-gapped-small-tablet {
        margin: 5px;
    }

    .double-gapped-small-tablet {
        margin: 20px;
    }

    .triple-gapped-small-tablet {
        margin: 30px;
    }

    .half-gap-top-small-tablet {
        margin-top: 5px;
    }

    .double-gap-top-small-tablet {
        margin-top: 20px;
    }

    .triple-gap-top-small-tablet {
        margin-top: 30px;
    }

    .half-gap-right-small-tablet {
        margin-right: 5px;
    }

    .double-gap-right-small-tablet {
        margin-right: 20px;
    }

    .triple-gap-right-small-tablet {
        margin-right: 30px;
    }

    .half-gap-bottom-small-tablet {
        margin-bottom: 5px;
    }

    .double-gap-bottom-small-tablet {
        margin-bottom: 20px;
    }

    .triple-gap-bottom-small-tablet {
        margin-bottom: 30px;
    }

    .half-gap-left-small-tablet {
        margin-left: 5px;
    }

    .double-gap-left-small-tablet {
        margin-left: 20px;
    }

    .triple-gap-left-small-tablet {
        margin-left: 30px;
    }

    .half-offset-small-tablet {
        margin: -5px;
    }

    .double-offset-small-tablet {
        margin: -20px;
    }

    .triple-offset-small-tablet {
        margin: -30px;
    }

    .half-offset-top-small-tablet {
        margin-top: -5px;
    }

    .double-offset-top-small-tablet {
        margin-top: -20px;
    }

    .triple-offset-top-small-tablet {
        margin-top: -30px;
    }

    .half-offset-right-small-tablet {
        margin-right: -5px;
    }

    .double-offset-right-small-tablet {
        margin-right: -20px;
    }

    .triple-offset-right-small-tablet {
        margin-right: -30px;
    }

    .half-offset-bottom-small-tablet {
        margin-bottom: -5px;
    }

    .double-offset-bottom-small-tablet {
        margin-bottom: -20px;
    }

    .triple-offset-bottom-small-tablet {
        margin-bottom: -30px;
    }

    .half-offset-left-small-tablet {
        margin-left: -5px;
    }

    .double-offset-left-small-tablet {
        margin-left: -20px;
    }

    .triple-offset-left-small-tablet {
        margin-left: -30px;
    }

    .fixed-small-tablet {
        position: fixed;
    }

    .fixed-top-small-tablet {
        position: fixed;
        top: 0;
    }

    .fixed-right-small-tablet {
        position: fixed;
        right: 0;
    }

    .fixed-bottom-small-tablet {
        position: fixed;
        bottom: 0;
    }

    .fixed-left-small-tablet {
        position: fixed;
        left: 0;
    }

    .fixed-middle-small-tablet {
        position: fixed;
        top: 50%;
    }

    .fixed-center-small-tablet {
        position: fixed;
        left: 50%;
    }

    .absolute-small-tablet {
        position: absolute;
    }

    .absolute-top-small-tablet {
        position: absolute;
        top: 0;
    }

    .absolute-right-small-tablet {
        position: absolute;
        right: 0;
    }

    .absolute-bottom-small-tablet {
        position: absolute;
        bottom: 0;
    }

    .absolute-left-small-tablet {
        position: absolute;
        left: 0;
    }

    .absolute-middle-small-tablet {
        position: absolute;
        top: 50%;
    }

    .absolute-center-small-tablet {
        position: absolute;
        left: 50%;
    }

    .static-small-tablet {
        position: static;
    }

    .inline-small-tablet {
        display: inline;
    }

    .block-small-tablet {
        display: block;
    }

    .clear-small-tablet {
        clear: both;
    }

        .clear-small-tablet:after {
            content: " ";
            display: block;
            height: 0;
            font-size: 0;
            clear: both;
            visibility: hidden;
        }

    .center-small-tablet {
        display: block;
        margin: 0 auto;
    }

    .pull-right-small-tablet {
        float: right;
    }

    .pull-left-small-tablet {
        float: left;
    }

    .pull-none-small-tablet {
        float: none;
    }

    .bordered-small-tablet {
        border: 1px solid #ddd;
    }

    .border-top-small-tablet {
        border-top: 1px solid #ddd;
    }

    .border-right-small-tablet {
        border-right: 1px solid #ddd;
    }

    .border-bottom-small-tablet {
        border-bottom: 1px solid #ddd;
    }

    .border-left-small-tablet {
        border-left: 1px solid #ddd;
    }

    .align-top-small-tablet {
        display: table-cell;
        vertical-align: top;
    }

    .align-right-small-tablet {
        text-align: right;
    }

    .align-bottom-small-tablet {
        display: table-cell;
        vertical-align: bottom;
    }

    .align-left-small-tablet {
        text-align: left;
    }

    .align-center-small-tablet {
        text-align: center;
    }

    .justify-small-tablet {
        text-align: justify;
    }

    .truncate-small-tablet {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .rotate-90-small-tablet {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .rotate-90-ctr-small-tablet {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .rotate-180-small-tablet {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .rotate-180-ctr-small-tablet {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .rotate-270-small-tablet {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .rotate-270-ctr-small-tablet {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-270deg);
        -moz-transform: rotate(-270deg);
        -ms-transform: rotate(-270deg);
        -o-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }

    .rotate-360-small-tablet {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    .rotate-360-ctr-small-tablet {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    .one-column-small-tablet, .one-columns-small-tablet {
        column-count: 1;
    }

    .two-column-small-tablet, .two-columns-small-tablet {
        column-count: 2;
    }

    .three-column-small-tablet, .three-columns-small-tablet {
        column-count: 3;
    }

    .four-column-small-tablet, .four-columns-small-tablet {
        column-count: 4;
    }

    .five-column-small-tablet, .five-columns-small-tablet {
        column-count: 5;
    }

    .nav:not(.nocollapse):not(.mobile):before {
        float: left;
        display: inline-block;
        content: attr(title);
        padding: 0.25em 0.5em;
        font-weight: bold;
    }

    .nav:not(.nocollapse):not(.mobile) button.hamburger {
        display: inline-block;
    }

        .nav:not(.nocollapse):not(.mobile) button.hamburger:before {
            font-family: FontAwesome;
            font-weight: normal;
            font-style: normal;
            text-decoration: inherit;
            -webkit-font-smoothing: antialiased;
            *margin-right: .3em;
            content: "\f03a";
        }

        .nav:not(.nocollapse):not(.mobile) button.hamburger[aria-expanded="true"]:before {
            content: "\f151";
        }

    .nav:not(.nocollapse):not(.mobile) > ul {
        display: none;
    }

        .nav:not(.nocollapse):not(.mobile) > ul > li > a, .nav:not(.nocollapse):not(.mobile) > ul > li > button {
            border-top-width: 1px;
        }

        .nav:not(.nocollapse):not(.mobile) > ul[aria-expanded="true"] {
            display: block;
        }

    .nav:not(.nocollapse):not(.mobile) li {
        float: none;
        display: block;
    }

        .nav:not(.nocollapse):not(.mobile) li ul {
            position: static;
        }

        .nav:not(.nocollapse):not(.mobile) li li a, .nav:not(.nocollapse):not(.mobile) li li button {
            text-indent: 10px;
        }

        .nav:not(.nocollapse):not(.mobile) li li li a, .nav:not(.nocollapse):not(.mobile) li li li button {
            text-indent: 20px;
        }

        .nav:not(.nocollapse):not(.mobile) li[role="menu"] ul {
            border: 0;
        }

            .nav:not(.nocollapse):not(.mobile) li[role="menu"] ul > li:first-child > a, .nav:not(.nocollapse):not(.mobile) li[role="menu"] ul > li:first-child > button {
                border-top-width: 1px;
            }

        .nav:not(.nocollapse):not(.mobile) li[role="menu"] > a:after, .nav:not(.nocollapse):not(.mobile) li[role="menu"] > button:after {
            float: none;
            content: "\f0d7";
        }

        .nav:not(.nocollapse):not(.mobile) li[role="menu"][aria-pressed="true"] > a:after, .nav:not(.nocollapse):not(.mobile) li[role="menu"][aria-pressed="true"] > button:after {
            content: "\f0d8";
        }

    .nav:not(.nocollapse):not(.mobile) a, .nav:not(.nocollapse):not(.mobile) button:not(.hamburger) {
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav:not(.nocollapse):not(.mobile).green li ul a, .nav:not(.nocollapse):not(.mobile).green li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).green a, .nav:not(.nocollapse):not(.mobile).green li ul button, .nav:not(.nocollapse):not(.mobile).green li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).green button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).blue li ul a, .nav:not(.nocollapse):not(.mobile).blue li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).blue a, .nav:not(.nocollapse):not(.mobile).blue li ul button, .nav:not(.nocollapse):not(.mobile).blue li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).blue button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).purple li ul a, .nav:not(.nocollapse):not(.mobile).purple li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).purple a, .nav:not(.nocollapse):not(.mobile).purple li ul button, .nav:not(.nocollapse):not(.mobile).purple li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).purple button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).yellow li ul a, .nav:not(.nocollapse):not(.mobile).yellow li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).yellow a, .nav:not(.nocollapse):not(.mobile).yellow li ul button, .nav:not(.nocollapse):not(.mobile).yellow li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).yellow button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).orange li ul a, .nav:not(.nocollapse):not(.mobile).orange li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).orange a, .nav:not(.nocollapse):not(.mobile).orange li ul button, .nav:not(.nocollapse):not(.mobile).orange li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).orange button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).red li ul a, .nav:not(.nocollapse):not(.mobile).red li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).red a, .nav:not(.nocollapse):not(.mobile).red li ul button, .nav:not(.nocollapse):not(.mobile).red li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).red button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).pink li ul a, .nav:not(.nocollapse):not(.mobile).pink li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).pink a, .nav:not(.nocollapse):not(.mobile).pink li ul button, .nav:not(.nocollapse):not(.mobile).pink li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).pink button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).turquoise li ul a, .nav:not(.nocollapse):not(.mobile).turquoise li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).turquoise a, .nav:not(.nocollapse):not(.mobile).turquoise li ul button, .nav:not(.nocollapse):not(.mobile).turquoise li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).turquoise button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).asphalt li ul a, .nav:not(.nocollapse):not(.mobile).asphalt li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).asphalt a, .nav:not(.nocollapse):not(.mobile).asphalt li ul button, .nav:not(.nocollapse):not(.mobile).asphalt li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).asphalt button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).charcoal li ul a, .nav:not(.nocollapse):not(.mobile).charcoal li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).charcoal a, .nav:not(.nocollapse):not(.mobile).charcoal li ul button, .nav:not(.nocollapse):not(.mobile).charcoal li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).charcoal button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).white li ul a, .nav:not(.nocollapse):not(.mobile).white li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).white a, .nav:not(.nocollapse):not(.mobile).white li ul button, .nav:not(.nocollapse):not(.mobile).white li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).white button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse):not(.mobile).black li ul a, .nav:not(.nocollapse):not(.mobile).black li[role="menu"] ul a, .nav:not(.nocollapse):not(.mobile).black a, .nav:not(.nocollapse):not(.mobile).black li ul button, .nav:not(.nocollapse):not(.mobile).black li[role="menu"] ul button, .nav:not(.nocollapse):not(.mobile).black button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .half:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .halves:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .third:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .thirds:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile) {
        width: 100% !important;
        float: none;
        clear: both;
    }

    .half.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .halves.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .third.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .thirds.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .third.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .thirds.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.right-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.right-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.right-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.right-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile) {
        left: 0;
    }

    .half.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .halves.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .third.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .thirds.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .third.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .thirds.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.left-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.left-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.left-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.left-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile) {
        right: 0;
    }

    .half.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .halves.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .third.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .thirds.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .third.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .thirds.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fourths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .fifths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sixths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .seventh.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .sevenths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighth.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eighths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninth.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .ninths.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenth.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .tenths.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .eleventh.skip-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .elevenths.skip-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-one:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-two:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-three:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-four:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-five:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-six:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-seven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-eight:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-nine:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-ten:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfth.skip-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile), .twelfths.skip-eleven:not(.mobile):not(.one-up-mobile):not(.two-up-mobile):not(.three-up-mobile):not(.four-up-mobile):not(.five-up-mobile) {
        margin-left: 0;
    }

    .desktop-only {
        display: none !important;
    }

    .ipad-only {
        display: none !important;
    }

    .small-tablet-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .hide-on-small-tablet {
        display: block !important;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .no-border-mobile {
        border: 0;
    }

    .small-mobile {
        font-size: 0.8em;
    }

    .medium-mobile {
        font-size: 1em;
    }

    .large-mobile {
        font-size: 1.5em;
    }

    .zero-mobile.padded, .zero-mobile.half-padded, .zero-mobile.double-padded, .zero-mobile.triple-padded {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-mobile.pad-top, .zero-mobile.half-pad-top, .zero-mobile.double-pad-top, .zero-mobile.triple-pad-top {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-mobile.pad-right, .zero-mobile.half-pad-right, .zero-mobile.double-pad-right, .zero-mobile.triple-pad-right {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-mobile.pad-bottom, .zero-mobile.half-pad-bottom, .zero-mobile.double-pad-bottom, .zero-mobile.triple-pad-bottom {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-mobile.pad-left, .zero-mobile.half-pad-left, .zero-mobile.double-pad-left, .zero-mobile.triple-pad-left {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-mobile.gapped, .zero-mobile.half-gapped, .zero-mobile.double-gapped, .zero-mobile.triple-gapped {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-mobile.gap-top, .zero-mobile.half-gap-top, .zero-mobile.double-gap-top, .zero-mobile.triple-gap-top {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-mobile.gap-right, .zero-mobile.half-gap-right, .zero-mobile.double-gap-right, .zero-mobile.triple-gap-right {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-mobile.gap-bottom, .zero-mobile.half-gap-bottom, .zero-mobile.double-gap-bottom, .zero-mobile.triple-gap-bottom {
        padding: 0 !important;
        margin: 0 !important;
    }

    .zero-mobile.gap-left, .zero-mobile.half-gap-left, .zero-mobile.double-gap-left, .zero-mobile.triple-gap-left {
        padding: 0 !important;
        margin: 0 !important;
    }

    .padded-mobile {
        padding: 10px;
    }

    .pad-top-mobile {
        padding-top: 10px;
    }

    .pad-right-mobile {
        padding-right: 10px;
    }

    .pad-bottom-mobile {
        padding-bottom: 10px;
    }

    .pad-left-mobile {
        padding-left: 10px;
    }

    .no-padding-mobile.padded, .no-padding-mobile.half-padded, .no-padding-mobile.double-padded, .no-padding-mobile.triple-padded, .no-padded-mobile.padded, .no-padded-mobile.half-padded, .no-padded-mobile.double-padded, .no-padded-mobile.triple-padded, .no-pad-mobile.padded, .no-pad-mobile.half-padded, .no-pad-mobile.double-padded, .no-pad-mobile.triple-padded {
        padding: 0 !important;
    }

    .no-padding-mobile.pad-top, .no-padding-mobile.half-pad-top, .no-padding-mobile.double-pad-top, .no-padding-mobile.triple-pad-top, .no-padded-mobile.pad-top, .no-padded-mobile.half-pad-top, .no-padded-mobile.double-pad-top, .no-padded-mobile.triple-pad-top, .no-pad-mobile.pad-top, .no-pad-mobile.half-pad-top, .no-pad-mobile.double-pad-top, .no-pad-mobile.triple-pad-top {
        padding: 0 !important;
    }

    .no-padding-mobile.pad-right, .no-padding-mobile.half-pad-right, .no-padding-mobile.double-pad-right, .no-padding-mobile.triple-pad-right, .no-padded-mobile.pad-right, .no-padded-mobile.half-pad-right, .no-padded-mobile.double-pad-right, .no-padded-mobile.triple-pad-right, .no-pad-mobile.pad-right, .no-pad-mobile.half-pad-right, .no-pad-mobile.double-pad-right, .no-pad-mobile.triple-pad-right {
        padding: 0 !important;
    }

    .no-padding-mobile.pad-bottom, .no-padding-mobile.half-pad-bottom, .no-padding-mobile.double-pad-bottom, .no-padding-mobile.triple-pad-bottom, .no-padded-mobile.pad-bottom, .no-padded-mobile.half-pad-bottom, .no-padded-mobile.double-pad-bottom, .no-padded-mobile.triple-pad-bottom, .no-pad-mobile.pad-bottom, .no-pad-mobile.half-pad-bottom, .no-pad-mobile.double-pad-bottom, .no-pad-mobile.triple-pad-bottom {
        padding: 0 !important;
    }

    .no-padding-mobile.pad-left, .no-padding-mobile.half-pad-left, .no-padding-mobile.double-pad-left, .no-padding-mobile.triple-pad-left, .no-padded-mobile.pad-left, .no-padded-mobile.half-pad-left, .no-padded-mobile.double-pad-left, .no-padded-mobile.triple-pad-left, .no-pad-mobile.pad-left, .no-pad-mobile.half-pad-left, .no-pad-mobile.double-pad-left, .no-pad-mobile.triple-pad-left {
        padding: 0 !important;
    }

    .no-pad-top-mobile {
        padding-top: 0px;
    }

    .no-pad-right-mobile {
        padding-right: 0px;
    }

    .no-pad-bottom-mobile {
        padding-bottom: 0px;
    }

    .no-pad-left-mobile {
        padding-left: 0px;
    }

    .gapped-mobile {
        margin: 10px;
    }

    .gap-top-mobile {
        margin-top: 10px;
    }

    .gap-right-mobile {
        margin-right: 10px;
    }

    .gap-bottom-mobile {
        margin-bottom: 10px;
    }

    .gap-left-mobile {
        margin-left: 10px;
    }

    .no-margin-mobile.gapped, .no-margin-mobile.half-gapped, .no-margin-mobile.double-gapped, .no-margin-mobile.triple-gapped, .no-gapped-mobile.gapped, .no-gapped-mobile.half-gapped, .no-gapped-mobile.double-gapped, .no-gapped-mobile.triple-gapped, .no-gap-mobile.gapped, .no-gap-mobile.half-gapped, .no-gap-mobile.double-gapped, .no-gap-mobile.triple-gapped {
        margin: 0 !important;
    }

    .no-margin-mobile.gap-top, .no-margin-mobile.half-gap-top, .no-margin-mobile.double-gap-top, .no-margin-mobile.triple-gap-top, .no-gapped-mobile.gap-top, .no-gapped-mobile.half-gap-top, .no-gapped-mobile.double-gap-top, .no-gapped-mobile.triple-gap-top, .no-gap-mobile.gap-top, .no-gap-mobile.half-gap-top, .no-gap-mobile.double-gap-top, .no-gap-mobile.triple-gap-top {
        margin: 0 !important;
    }

    .no-margin-mobile.gap-right, .no-margin-mobile.half-gap-right, .no-margin-mobile.double-gap-right, .no-margin-mobile.triple-gap-right, .no-gapped-mobile.gap-right, .no-gapped-mobile.half-gap-right, .no-gapped-mobile.double-gap-right, .no-gapped-mobile.triple-gap-right, .no-gap-mobile.gap-right, .no-gap-mobile.half-gap-right, .no-gap-mobile.double-gap-right, .no-gap-mobile.triple-gap-right {
        margin: 0 !important;
    }

    .no-margin-mobile.gap-bottom, .no-margin-mobile.half-gap-bottom, .no-margin-mobile.double-gap-bottom, .no-margin-mobile.triple-gap-bottom, .no-gapped-mobile.gap-bottom, .no-gapped-mobile.half-gap-bottom, .no-gapped-mobile.double-gap-bottom, .no-gapped-mobile.triple-gap-bottom, .no-gap-mobile.gap-bottom, .no-gap-mobile.half-gap-bottom, .no-gap-mobile.double-gap-bottom, .no-gap-mobile.triple-gap-bottom {
        margin: 0 !important;
    }

    .no-margin-mobile.gap-left, .no-margin-mobile.half-gap-left, .no-margin-mobile.double-gap-left, .no-margin-mobile.triple-gap-left, .no-gapped-mobile.gap-left, .no-gapped-mobile.half-gap-left, .no-gapped-mobile.double-gap-left, .no-gapped-mobile.triple-gap-left, .no-gap-mobile.gap-left, .no-gap-mobile.half-gap-left, .no-gap-mobile.double-gap-left, .no-gap-mobile.triple-gap-left {
        margin: 0 !important;
    }

    .no-gap-top-mobile {
        margin-top: 0px;
    }

    .no-gap-right-mobile {
        margin-right: 0px;
    }

    .no-gap-bottom-mobile {
        margin-bottom: 0px;
    }

    .no-gap-left-mobile {
        margin-left: 0px;
    }

    .offset-mobile {
        margin: -10px;
    }

    .offset-top-mobile {
        margin-top: -10px;
    }

    .offset-right-mobile {
        margin-right: -10px;
    }

    .offset-bottom-mobile {
        margin-bottom: -10px;
    }

    .offset-left-mobile {
        margin-left: -10px;
    }

    .no-offset-top-mobile {
        margin-top: 0px;
    }

    .no-offset-right-mobile {
        margin-right: 0px;
    }

    .no-offset-bottom-mobile {
        margin-bottom: 0px;
    }

    .no-offset-left-mobile {
        margin-left: 0px;
    }

    .half-padded-mobile {
        padding: 5px;
    }

    .double-padded-mobile {
        padding: 20px;
    }

    .triple-padded-mobile {
        padding: 30px;
    }

    .half-pad-top-mobile {
        padding-top: 5px;
    }

    .double-pad-top-mobile {
        padding-top: 20px;
    }

    .triple-pad-top-mobile {
        padding-top: 30px;
    }

    .half-pad-right-mobile {
        padding-right: 5px;
    }

    .double-pad-right-mobile {
        padding-right: 20px;
    }

    .triple-pad-right-mobile {
        padding-right: 30px;
    }

    .half-pad-bottom-mobile {
        padding-bottom: 5px;
    }

    .double-pad-bottom-mobile {
        padding-bottom: 20px;
    }

    .triple-pad-bottom-mobile {
        padding-bottom: 30px;
    }

    .half-pad-left-mobile {
        padding-left: 5px;
    }

    .double-pad-left-mobile {
        padding-left: 20px;
    }

    .triple-pad-left-mobile {
        padding-left: 30px;
    }

    .half-gapped-mobile {
        margin: 5px;
    }

    .double-gapped-mobile {
        margin: 20px;
    }

    .triple-gapped-mobile {
        margin: 30px;
    }

    .half-gap-top-mobile {
        margin-top: 5px;
    }

    .double-gap-top-mobile {
        margin-top: 20px;
    }

    .triple-gap-top-mobile {
        margin-top: 30px;
    }

    .half-gap-right-mobile {
        margin-right: 5px;
    }

    .double-gap-right-mobile {
        margin-right: 20px;
    }

    .triple-gap-right-mobile {
        margin-right: 30px;
    }

    .half-gap-bottom-mobile {
        margin-bottom: 5px;
    }

    .double-gap-bottom-mobile {
        margin-bottom: 20px;
    }

    .triple-gap-bottom-mobile {
        margin-bottom: 30px;
    }

    .half-gap-left-mobile {
        margin-left: 5px;
    }

    .double-gap-left-mobile {
        margin-left: 20px;
    }

    .triple-gap-left-mobile {
        margin-left: 30px;
    }

    .half-offset-mobile {
        margin: -5px;
    }

    .double-offset-mobile {
        margin: -20px;
    }

    .triple-offset-mobile {
        margin: -30px;
    }

    .half-offset-top-mobile {
        margin-top: -5px;
    }

    .double-offset-top-mobile {
        margin-top: -20px;
    }

    .triple-offset-top-mobile {
        margin-top: -30px;
    }

    .half-offset-right-mobile {
        margin-right: -5px;
    }

    .double-offset-right-mobile {
        margin-right: -20px;
    }

    .triple-offset-right-mobile {
        margin-right: -30px;
    }

    .half-offset-bottom-mobile {
        margin-bottom: -5px;
    }

    .double-offset-bottom-mobile {
        margin-bottom: -20px;
    }

    .triple-offset-bottom-mobile {
        margin-bottom: -30px;
    }

    .half-offset-left-mobile {
        margin-left: -5px;
    }

    .double-offset-left-mobile {
        margin-left: -20px;
    }

    .triple-offset-left-mobile {
        margin-left: -30px;
    }

    .fixed-mobile {
        position: fixed;
    }

    .fixed-top-mobile {
        position: fixed;
        top: 0;
    }

    .fixed-right-mobile {
        position: fixed;
        right: 0;
    }

    .fixed-bottom-mobile {
        position: fixed;
        bottom: 0;
    }

    .fixed-left-mobile {
        position: fixed;
        left: 0;
    }

    .fixed-middle-mobile {
        position: fixed;
        top: 50%;
    }

    .fixed-center-mobile {
        position: fixed;
        left: 50%;
    }

    .absolute-mobile {
        position: absolute;
    }

    .absolute-top-mobile {
        position: absolute;
        top: 0;
    }

    .absolute-right-mobile {
        position: absolute;
        right: 0;
    }

    .absolute-bottom-mobile {
        position: absolute;
        bottom: 0;
    }

    .absolute-left-mobile {
        position: absolute;
        left: 0;
    }

    .absolute-middle-mobile {
        position: absolute;
        top: 50%;
    }

    .absolute-center-mobile {
        position: absolute;
        left: 50%;
    }

    .static-mobile {
        position: static;
    }

    .inline-mobile {
        display: inline;
    }

    .block-mobile {
        display: block;
    }

    .clear-mobile {
        clear: both;
    }

        .clear-mobile:after {
            content: " ";
            display: block;
            height: 0;
            font-size: 0;
            clear: both;
            visibility: hidden;
        }

    .center-mobile {
        display: block;
        margin: 0 auto;
    }

    .pull-right-mobile {
        float: right;
    }

    .pull-left-mobile {
        float: left;
    }

    .pull-none-mobile {
        float: none;
    }

    .bordered-mobile {
        border: 1px solid #ddd;
    }

    .border-top-mobile {
        border-top: 1px solid #ddd;
    }

    .border-right-mobile {
        border-right: 1px solid #ddd;
    }

    .border-bottom-mobile {
        border-bottom: 1px solid #ddd;
    }

    .border-left-mobile {
        border-left: 1px solid #ddd;
    }

    .align-top-mobile {
        display: table-cell;
        vertical-align: top;
    }

    .align-right-mobile {
        text-align: right;
    }

    .align-bottom-mobile {
        display: table-cell;
        vertical-align: bottom;
    }

    .align-left-mobile {
        text-align: left;
    }

    .align-center-mobile {
        text-align: center;
    }

    .justify-mobile {
        text-align: justify;
    }

    .truncate-mobile {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .rotate-90-mobile {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .rotate-90-ctr-mobile {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .rotate-180-mobile {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .rotate-180-ctr-mobile {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .rotate-270-mobile {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        -o-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .rotate-270-ctr-mobile {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-270deg);
        -moz-transform: rotate(-270deg);
        -ms-transform: rotate(-270deg);
        -o-transform: rotate(-270deg);
        transform: rotate(-270deg);
    }

    .rotate-360-mobile {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    .rotate-360-mobile {
        display: inline-block;
        width: auto;
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    .one-column-mobile, .one-columns-mobile {
        column-count: 1;
    }

    .two-column-mobile, .two-columns-mobile {
        column-count: 2;
    }

    .three-column-mobile, .three-columns-mobile {
        column-count: 3;
    }

    .four-column-mobile, .four-columns-mobile {
        column-count: 4;
    }

    .five-column-mobile, .five-columns-mobile {
        column-count: 5;
    }

    .nav:not(.nocollapse):before {
        float: left;
        display: inline-block;
        content: attr(title);
        padding: 0.25em 0.5em;
        font-weight: bold;
    }

    .nav:not(.nocollapse) button.hamburger {
        display: inline-block;
    }

        .nav:not(.nocollapse) button.hamburger:before {
            font-family: FontAwesome;
            font-weight: normal;
            font-style: normal;
            text-decoration: inherit;
            -webkit-font-smoothing: antialiased;
            *margin-right: .3em;
            content: "\f03a";
        }

        .nav:not(.nocollapse) button.hamburger[aria-expanded="true"]:before {
            content: "\f151";
        }

    .nav:not(.nocollapse) > ul {
        display: none;
    }

        .nav:not(.nocollapse) > ul > li > a, .nav:not(.nocollapse) > ul > li > button {
            border-top-width: 1px;
        }

        .nav:not(.nocollapse) > ul[aria-expanded="true"] {
            display: block;
        }

    .nav:not(.nocollapse) li {
        float: none;
        display: block;
    }

        .nav:not(.nocollapse) li ul {
            position: static;
        }

        .nav:not(.nocollapse) li li a, .nav:not(.nocollapse) li li button {
            text-indent: 10px;
        }

        .nav:not(.nocollapse) li li li a, .nav:not(.nocollapse) li li li button {
            text-indent: 20px;
        }

        .nav:not(.nocollapse) li[role="menu"] ul {
            border: 0;
        }

            .nav:not(.nocollapse) li[role="menu"] ul > li:first-child > a, .nav:not(.nocollapse) li[role="menu"] ul > li:first-child > button {
                border-top-width: 1px;
            }

        .nav:not(.nocollapse) li[role="menu"] > a:after, .nav:not(.nocollapse) li[role="menu"] > button:after {
            float: none;
            content: "\f0d7";
        }

        .nav:not(.nocollapse) li[role="menu"][aria-pressed="true"] > a:after, .nav:not(.nocollapse) li[role="menu"][aria-pressed="true"] > button:after {
            content: "\f0d8";
        }

    .nav:not(.nocollapse) a, .nav:not(.nocollapse) button:not(.hamburger) {
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav:not(.nocollapse).green li ul a, .nav:not(.nocollapse).green li[role="menu"] ul a, .nav:not(.nocollapse).green a, .nav:not(.nocollapse).green li ul button, .nav:not(.nocollapse).green li[role="menu"] ul button, .nav:not(.nocollapse).green button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).blue li ul a, .nav:not(.nocollapse).blue li[role="menu"] ul a, .nav:not(.nocollapse).blue a, .nav:not(.nocollapse).blue li ul button, .nav:not(.nocollapse).blue li[role="menu"] ul button, .nav:not(.nocollapse).blue button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).purple li ul a, .nav:not(.nocollapse).purple li[role="menu"] ul a, .nav:not(.nocollapse).purple a, .nav:not(.nocollapse).purple li ul button, .nav:not(.nocollapse).purple li[role="menu"] ul button, .nav:not(.nocollapse).purple button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).yellow li ul a, .nav:not(.nocollapse).yellow li[role="menu"] ul a, .nav:not(.nocollapse).yellow a, .nav:not(.nocollapse).yellow li ul button, .nav:not(.nocollapse).yellow li[role="menu"] ul button, .nav:not(.nocollapse).yellow button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).orange li ul a, .nav:not(.nocollapse).orange li[role="menu"] ul a, .nav:not(.nocollapse).orange a, .nav:not(.nocollapse).orange li ul button, .nav:not(.nocollapse).orange li[role="menu"] ul button, .nav:not(.nocollapse).orange button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).red li ul a, .nav:not(.nocollapse).red li[role="menu"] ul a, .nav:not(.nocollapse).red a, .nav:not(.nocollapse).red li ul button, .nav:not(.nocollapse).red li[role="menu"] ul button, .nav:not(.nocollapse).red button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).pink li ul a, .nav:not(.nocollapse).pink li[role="menu"] ul a, .nav:not(.nocollapse).pink a, .nav:not(.nocollapse).pink li ul button, .nav:not(.nocollapse).pink li[role="menu"] ul button, .nav:not(.nocollapse).pink button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).turquoise li ul a, .nav:not(.nocollapse).turquoise li[role="menu"] ul a, .nav:not(.nocollapse).turquoise a, .nav:not(.nocollapse).turquoise li ul button, .nav:not(.nocollapse).turquoise li[role="menu"] ul button, .nav:not(.nocollapse).turquoise button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).asphalt li ul a, .nav:not(.nocollapse).asphalt li[role="menu"] ul a, .nav:not(.nocollapse).asphalt a, .nav:not(.nocollapse).asphalt li ul button, .nav:not(.nocollapse).asphalt li[role="menu"] ul button, .nav:not(.nocollapse).asphalt button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).charcoal li ul a, .nav:not(.nocollapse).charcoal li[role="menu"] ul a, .nav:not(.nocollapse).charcoal a, .nav:not(.nocollapse).charcoal li ul button, .nav:not(.nocollapse).charcoal li[role="menu"] ul button, .nav:not(.nocollapse).charcoal button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).white li ul a, .nav:not(.nocollapse).white li[role="menu"] ul a, .nav:not(.nocollapse).white a, .nav:not(.nocollapse).white li ul button, .nav:not(.nocollapse).white li[role="menu"] ul button, .nav:not(.nocollapse).white button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }

    .nav:not(.nocollapse).black li ul a, .nav:not(.nocollapse).black li[role="menu"] ul a, .nav:not(.nocollapse).black a, .nav:not(.nocollapse).black li ul button, .nav:not(.nocollapse).black li[role="menu"] ul button, .nav:not(.nocollapse).black button {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
    }
}
