<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body, main {
    min-height: 100%; }

/*************************************************
	Nav Bar
*************************************************/
.navbar {
    overflow: hidden;
    background-color: #fde300;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0px;
}

.navbar-dev {
    overflow: hidden;
    background-color: fuchsia;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0px;
}

/*************************************************
	Font Stuff
*************************************************/

body {
    background-color: #edeef0;
    color: #414141;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0px
}

a {
    text-decoration: none;
    color: #06c;
}

.h1, .h2, .h3 {
    font-weight: normal;
    line-height: 1.4; }

.h1 {
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 30px;
    margin: 35px 0; }
@media only screen and (max-width: 767px) {
    .h1 {
        font-size: 24px; } }

.h2 {
    color: #6c6d6f;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    margin: 0 0 15px 0; }

.h3 {
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-size: 14px;
    margin: 10px 0 15px 0; }

.subhead {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    line-height: 1.3; }

p a:link, ul.list li a:link {color:#06c;}
p a:hover, ul.list li a:hover {text-decoration:underline;}
p a:visited, ul.list li a:visited {color:#06c;}

/*************************************************
	Grid Styling
*************************************************/

/* Uncomment and set these variables to customize the grid. */
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem; }

.row {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -.6rem;
    margin-left: -.6rem; }

.row.reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse; }

.col.reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse; }

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: .6rem;
    padding-left: .6rem; }

.col-xs {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }

.col-xs-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%; }

.col-xs-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%; }

.col-xs-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }

.col-xs-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%; }

.col-xs-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%; }

.col-xs-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }

.col-xs-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%; }

.col-xs-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%; }

.col-xs-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }

.col-xs-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%; }

.col-xs-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%; }

.col-xs-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }

.col-xs-offset-1 {
    margin-left: 8.333%; }

.col-xs-offset-2 {
    margin-left: 16.667%; }

.col-xs-offset-3 {
    margin-left: 25%; }

.col-xs-offset-4 {
    margin-left: 33.333%; }

.col-xs-offset-5 {
    margin-left: 41.667%; }

.col-xs-offset-6 {
    margin-left: 50%; }

.col-xs-offset-7 {
    margin-left: 58.333%; }

.col-xs-offset-8 {
    margin-left: 66.667%; }

.col-xs-offset-9 {
    margin-left: 75%; }

.col-xs-offset-10 {
    margin-left: 83.333%; }

.col-xs-offset-11 {
    margin-left: 91.667%; }

.start-xs {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start; }

.center-xs {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center; }

.end-xs {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end; }

.top-xs {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start; }

.middle-xs {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center; }

.bottom-xs {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end; }

.around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around; }

.between-xs {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between; }

.first-xs {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1; }

.last-xs {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1; }

@media only screen and (max-width: 629px) {
    .header__nav {display:none;}
}
@media only screen and (min-width: 630px) {
    .header__nav {display:block;}
}
@media only screen and (min-width: 48em) {
    .container {
        width: 46rem; }
    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: .6rem;
        padding-left: .6rem; }
    .col-sm {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%; }
    .col-sm-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%; }
    .col-sm-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%; }
    .col-sm-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%; }
    .col-sm-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%; }
    .col-sm-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%; }
    .col-sm-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%; }
    .col-sm-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%; }
    .col-sm-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%; }
    .col-sm-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%; }
    .col-sm-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%; }
    .col-sm-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%; }
    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%; }
    .col-sm-offset-1 {
        margin-left: 8.333%; }
    .col-sm-offset-2 {
        margin-left: 16.667%; }
    .col-sm-offset-3 {
        margin-left: 25%; }
    .col-sm-offset-4 {
        margin-left: 33.333%; }
    .col-sm-offset-5 {
        margin-left: 41.667%; }
    .col-sm-offset-6 {
        margin-left: 50%; }
    .col-sm-offset-7 {
        margin-left: 58.333%; }
    .col-sm-offset-8 {
        margin-left: 66.667%; }
    .col-sm-offset-9 {
        margin-left: 75%; }
    .col-sm-offset-10 {
        margin-left: 83.333%; }
    .col-sm-offset-11 {
        margin-left: 91.667%; }
    .start-sm {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start; }
    .center-sm {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center; }
    .end-sm {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end; }
    .top-sm {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start; }
    .middle-sm {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center; }
    .bottom-sm {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end; }
    .around-sm {
        -ms-flex-pack: distribute;
        justify-content: space-around; }
    .between-sm {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between; }
    .first-sm {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1; }
    .last-sm {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1; } }

@media only screen and (min-width: 64em) {
    .container {
        width: 61rem; }
    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: .6rem;
        padding-left: .6rem; }
    .col-md {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%; }
    .col-md-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%; }
    .col-md-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%; }
    .col-md-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%; }
    .col-md-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%; }
    .col-md-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%; }
    .col-md-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%; }
    .col-md-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%; }
    .col-md-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%; }
    .col-md-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%; }
    .col-md-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%; }
    .col-md-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%; }
    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%; }
    .col-md-offset-1 {
        margin-left: 8.333%; }
    .col-md-offset-2 {
        margin-left: 16.667%; }
    .col-md-offset-3 {
        margin-left: 25%; }
    .col-md-offset-4 {
        margin-left: 33.333%; }
    .col-md-offset-5 {
        margin-left: 41.667%; }
    .col-md-offset-6 {
        margin-left: 50%; }
    .col-md-offset-7 {
        margin-left: 58.333%; }
    .col-md-offset-8 {
        margin-left: 66.667%; }
    .col-md-offset-9 {
        margin-left: 75%; }
    .col-md-offset-10 {
        margin-left: 83.333%; }
    .col-md-offset-11 {
        margin-left: 91.667%; }
    .start-md {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start; }
    .center-md {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center; }
    .end-md {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end; }
    .top-md {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start; }
    .middle-md {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center; }
    .bottom-md {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end; }
    .around-md {
        -ms-flex-pack: distribute;
        justify-content: space-around; }
    .between-md {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between; }
    .first-md {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1; }
    .last-md {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1; } }

@media only screen and (min-width: 80em) {
    .container {
        width: 71rem; }
    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: .6rem;
        padding-left: .6rem; }
    .col-lg {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        /*flex-basis: 0;*/
        max-width: 100%; }
    .col-lg-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%; }
    .col-lg-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%; }
    .col-lg-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%; }
    .col-lg-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%; }
    .col-lg-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%; }
    .col-lg-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%; }
    .col-lg-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%; }
    .col-lg-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%; }
    .col-lg-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%; }
    .col-lg-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%; }
    .col-lg-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%; }
    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%; }
    .col-lg-offset-1 {
        margin-left: 8.333%; }
    .col-lg-offset-2 {
        margin-left: 16.667%; }
    .col-lg-offset-3 {
        margin-left: 25%; }
    .col-lg-offset-4 {
        margin-left: 33.333%; }
    .col-lg-offset-5 {
        margin-left: 41.667%; }
    .col-lg-offset-6 {
        margin-left: 50%; }
    .col-lg-offset-7 {
        margin-left: 58.333%; }
    .col-lg-offset-8 {
        margin-left: 66.667%; }
    .col-lg-offset-9 {
        margin-left: 75%; }
    .col-lg-offset-10 {
        margin-left: 83.333%; }
    .col-lg-offset-11 {
        margin-left: 91.667%; }
    .start-lg {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start; }
    .center-lg {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center; }
    .end-lg {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end; }
    .top-lg {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start; }
    .middle-lg {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center; }
    .bottom-lg {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end; }
    .around-lg {
        -ms-flex-pack: distribute;
        justify-content: space-around; }
    .between-lg {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between; }
    .first-lg {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1; }
    .last-lg {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1; } }




/*************************************************
	MEDIA LIST
*************************************************/
.media__list .box {
    border: #ddd 2px solid;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: center; }
@media only screen and (max-width: 767px) {
    .media__list .box {
        margin-bottom: 20px; } }

@media only screen and (min-width: 667px) and (max-width: 767px) {
    .media__list .col-xs-6 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 25%;
        max-width: 25%; } }

@media only screen and (min-width: 1279px) {
    .media__list .col-lg {
        min-width: 211.84px;
        max-width: 211.84px;
        width: 211.84px; } }

.media__image {
    display: block;
    overflow: hidden; }
@media only screen and (max-width: 320px) {
    .media__image {
        height: inherit; } }
.media__image img {
    max-height: 100%;
    max-width: 100%;
    vertical-align: top;
    width: 100%;
    border-radius: 2px; }

.media__description {
    display: block;
    font-size: 12px;
    padding: 8px 2px; }

a:link .media__description, a:visited .media__description {
    color: #414141; }

.table {
    width: 100%; }
.table--bordered {
    border-bottom: 1px solid #dcdddf;
    border-top: 1px solid #dcdddf; }
.table--bordered tr:first-child {
    border-top: 0;
    border-bottom: 1px solid #dcdddf; }
.table--bordered tr:last-child {
    border-bottom: 0; }
.table--bordered td {
    border-right: 1px solid #dcdddf;
    font-size: 12px;
    line-height: 1.3; }
.table--bordered td:last-child {
    border-right: 0; }
.table--bordered .table__heading {
    text-transform: uppercase; }

tr {
    border-bottom: 1px solid #f1f2f3; }
tr:nth-child(odd) {
    background: #f9f9fb; }
tr:first-child {
    border-top: 1px solid #f1f2f3; }

td {
    color: #414141;
    font-size: 14px;
    line-height: 1.6;
    padding: 16px 10px; }

.table__heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
}

.table__subHeading {
    display: block;
    font-family: 'Roboto Condensed', sans-serif; }
.table__subHeading:nth-child(2) {
    padding-top: 15px; }

.table__list {
    padding-left: 16px;
    margin: 0; }

.table-wrapper .shadow {
    -moz-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
    bottom: 15px;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 10px;
}

.table-wrapper .shadow.right {
    background-color: transparent;
    background-image: -ms-linear-gradient(left, transparent,rgba(0,0,0,0.1));
    background-image: -webkit-linear-gradient(left, transparent,rgba(0,0,0,0.1));
    background-image: -moz-linear-gradient(left, transparent,rgba(0,0,0,0.1));
    background-image: linear-gradient(to right,transparent,rgba(0,0,0,0.1));
    right: 0;
}

.table-wrapper .shadow.left {
    background-color: transparent;
    background-image: -ms-linear-gradient(right, transparent,rgba(0,0,0,0.1));
    background-image: -webkit-linear-gradient(right, transparent,rgba(0,0,0,0.1));
    background-image: -moz-linear-gradient(right, transparent,rgba(0,0,0,0.1));
    background-image: linear-gradient(to left,transparent,rgba(0,0,0,0.1));
    left: 35%;
}

/*************************************************
	MAIN HEADER
*************************************************/
.media-kit__header {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px auto; }
@media only screen and (max-width: 767px) {
    .media-kit__header {
        padding: 0 20px; } }
@media only screen and (max-width: 1023px) and (min-width: 768px) {
    .media-kit__header {
        padding: 0 30px; } }
.media-kit__header h1 {
    margin: 0;
    padding: 0; }

.title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    padding: 0 0 4px 10px; }
@media only screen and (max-width: 767px) {
    .title {
        font-size: 14px;
        padding-bottom: 3px; } }

/*************************************************
	MAIN WRAPPER
*************************************************/
.media-kit__wrapper {
    height: 100%;
    margin: 5px 0 0;
    width: 100%; }


/*************************************************
	LAYOUT
*************************************************/
.media-kit__layout {
    margin: 0 auto;
    overflow: hidden; }
.media-kit__layout--main {
    overflow: visible; }
@media only screen and (max-width: 1023px) and (min-width: 768px) {
    .media-kit__layout--detail {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; } }
.media-kit__layout--container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
.media-kit__layout + .media-kit__layout {
    margin-top: 20px; }
.media-kit__layout {
    margin-bottom: 20px; }

.media-kit__section {
    background-color: #fff;
    display: block;
    padding: 30px;
    position: relative;
    z-index: 2; }

.media-kit__layout--container.media-kit__layout--main {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }

@media only screen and (max-width: 767px) {
    .media-kit__section {
        margin: 0;
        padding: 20px;
        width: 100%; } }
.media-kit__section--span-2, .media-kit__section--span-3 {
    padding: 20px; }
.media-kit__section--span {
    float: left; }
.media-kit__section--span + .media-kit__section--span {
    margin-left: 20px; }
.media-kit__section--span-2 {
    width: 290px; }
.media-kit__section--span-3 {
    width: 540px; }
@media only screen and (max-width: 1023px) {
    .media-kit__section + .media-kit__section {
        margin: -20px 0 0 0;
        width: 100%; }

    .media-kit__layout:nth-last-of-type(2) {
        margin-bottom: 0px; } }

/*************************************************
	Media Queries
*************************************************/
@media only screen and (min-width: 1280px) {
    .media-kit__header,
    .media-kit__layout {
        width: 1100px; }
    .media-kit__section--span-4 {
        width: 790px; }
    .media-kit__layout--main .media-kit__section--hero {
        margin-top: -90px; }
    .carousel .media-kit__hero__wrapper {
        width: 1100px; }
    .carousel .media-kit__hero__content {
        margin: 0 0 165px 0;
        padding-left: 60px; }
    .index .media-kit__section {
        padding: 15px 60px; } }

@media only screen and (max-width: 1279px) and (min-width: 1024px) {
    .media-kit__header,
    .media-kit__layout {
        width: 970px; }
    .media-kit__hero {
        height: 400px; }
    .media-kit__hero--carousel {
        height: auto; }
    .media-kit__layout--main .media-kit__section--hero {
        margin-top: -65px; }
    .media-kit__hero__wrapper {
        height: 100%;
        padding: 0 44px;
        width: 100%; }
    .media-kit__hero__content {
        margin: 0 0 65px 0; }
    .media-kit__section--span-4 {
        width: 660px; }
    .media-kit__section--span-3 {
        width: calc(50% - 10px); }
    .carousel .media-kit__hero__content {
        padding-left: 60px; } }

@media only screen and (max-width: 1023px) {
    .desktop-only {
        display: none; }
    .mobile-only {
        display: block; }
    .media-kit__layout--detail {
        display: block; }
    .media-kit__layout--detail .detail__overview {
        flex: 0;
        float: none;
        width: 100%; }
    .media-kit__layout--detail .detail__overview + .media-kit__section--span-2 {
        flex: 0;
        float: none;
        margin: 20px 0 0 0;
        width: 100%; } }

@media only screen and (max-width: 1023px) and (min-width: 768px) {
    .media-kit__header,
    .media-kit__layout {
        width: 100%; }
    .media-kit__hero {
        height: 380px; }
    .media-kit__hero--carousel {
        height: auto; }
    .media-kit__hero--carousel .media-kit__hero__wrapper {
        bottom: 40px;
        margin: 0;
        padding: 0;
        width: 768px; }
    .media-kit__hero--carousel .media-kit__hero__content {
        margin: 0 0 0 60px; }
    .media-kit__layout--container .media-kit__section {
        padding: 20px 30px; }
    .media-kit__section--span-4 {
        width: 528px; }
    .media-kit__section--span-2 {
        width: 220px; }
    .media-kit__section--span-3 {
        width: calc(50% - 10px); }
}
@media only screen and (max-width: 767px) {
    .desktop-only {
        display: none; }
    .mobile-only {
        display: block; }

    .header {
        font-size: 13px;
        padding: 0 16px; }
    .header__title__img {
        width: 110px; }
    .header__nav {
        display: none; }
    .header__title__text {
        padding: 0 0 0 14px; }
    .nav {
        padding: 0 16px; }
    .nav__list__item {
        padding: 0 0 0 3px;
        position: inherit; }
    .no-touchevents .nav__list__item:hover .nav__dropdown__list,
    .nav__list__item.hover .nav__dropdown__list {
        left: 0;
        top: 84px;
        width: 100%; }
    .nav__list__item__logo {
        margin: 0 15px 0 0; }
    .nav__list__item__logo .nav__list__item__link:before {
        right: -8px; }
    .media-kit__layout {
        display: block; }
    .media-kit__hero {
        height: 205px; }
    .media-kit__hero--carousel {
        height: auto; }
    .media-kit__hero--carousel .media-kit__hero__wrapper {
        bottom: 34px;
        padding: 0;
        top: 0;
        width: auto; }
    .media-kit__hero--carousel .media-kit__hero__content {
        left: 0;
        margin: auto;
        padding: 0;
        right: 0;
        width: 70%; }
    .media-kit__hero__wrapper {
        padding: 0 20px; }
    .media-kit__hero__content {
        max-width: none;
        padding: 15px 0;
        position: relative;
        text-align: center;
        -webkit-transform: none;
        transform: none;
        top: auto;
        width: 100%; }
    .media-kit__hero__content__link {
        margin: 0 auto;
        width: 100%; }
    .media-kit__hero__content__title {
        font-size: 24px; }
    .media-kit__hero__content__text {
        font-size: 14px;
        line-height: 1.4; }
    .media-kit__hero__content__text--desktop {
        display: none; }
    .media-kit__hero__content__text--mobile {
        display: block;
        margin: 6px 0 10px;
        max-height: 90px;
        overflow: hidden; }
    .media-kit__hero__content__link {
        margin: auto;
        padding: 6px 0; }
    .media-kit__section p {
        font-size: 13px;
        line-height: 20px; }

    .intro__list {
        font-size: 13px;
    }
    .media__description {
        display: block;
        font-size: 10px;
        padding: 8px 2px;
    }

    .media-kit__section--span-3 {
        margin-left: 0;
        width: 100%; }
    .media-kit__section--span-3 + .media-kit__section--span-3 {
        margin-left: 0;
        margin-top: 20px; } }


/* guidelines index */
.mediakit-links {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
}
ul.mediakit-links li {
    width: 37%;
    margin:2% 3%;
    margin-left:10%;
}
ul.mediakit-links li p{
    font-size:14px;
}
.mediakit-links img {
    width:75px;
    float:left;
    margin-top:10px;
    position:absolute;
    margin-left:-10%;
}

@media only screen and (max-width: 767px) {
    ul.mediakit-links li {
        width: 100%;
        margin-left: 100px;
        margin-top: 20px;
    }

    .mediakit-links img {
        width: 75px;
        float: left;
        margin-top: 10px;
        position: absolute;
        margin-left: -100px;
    }
}

/*************************************************
	CSS FOR DETAIL PAGE
*************************************************/

.banner img {
    width: 100%;
    vertical-align: top; }

.detail__overview {
    font-size: 14px;
    line-height: 1.6; }
@media only screen and (max-width: 1023px) and (min-width: 768px) {
    .detail__overview {
        -webkit-flex: 1;
        /* Safari 6.1+ */
        -ms-flex: 1;
        /* IE 10 */
        flex: 1; } }

.intro__list {
    padding-left: 17px; }

.quickLinks {
    border-top: 1px solid #e9e9e9;
    padding: 0; }

.quickLinks__listItem {
    border-bottom: 1px dotted #e9e9e9;
    font-size: 14px;
    list-style: none; }
.quickLinks__listItem a {
    color: #06c;
    display: block;
    padding: 10px 0;
    text-decoration: none;
    width: 100%; }
.quickLinks__listItem a:hover {
    text-decoration: underline; }


@media only screen and (max-width: 767px) {
    .media-kit__section--specifications {
        padding-left: 0;
        padding-right: 0; }
    .media-kit__section--specifications h2 {
        padding-left: 20px;
        padding-right: 20px; } }

.bubble {
    color: #000000;
    font-weight: bold;
    display: block;
    height: 24px;
    padding: 5px;
    text-align: center;
    width: 24px; }

.fable__heading,
.fable__description {
    color: #414141;
    font-size: 14px;
    width: 100%;
    line-height: 1.6;
    padding: 16px 10px; }

.fable__row {
    border-bottom: 1px solid #f1f2f3;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
.fable__row:nth-child(odd) {
    background: #f9f9fb; }
.fable__row:first-child {
    border-top: 1px solid #f1f2f3; }
@media only screen and (max-width: 767px) {
    .fable__row {
        -webkit-flex-direction: column;
        flex-direction: column; } }

.fable__heading {
    font-family: 'Roboto Condensed', sans-serif;
    width: 190px; }
@media only screen and (max-width: 767px) {
    .fable__heading {
        padding-bottom: 0;
        width: 100%; } }

@media only screen and (max-width: 767px) {
    .fable__description {
        padding-top: 5px; } }

@media only screen and (max-width: 1279px) {
    .fable__description {
        font-size: 12px; } }

.fable__list {
    padding-left: 16px;
    margin: 0; }

.fable__listItem {
    padding-bottom: 10px; }

*, ::after, ::before {
    background-repeat: no-repeat;
    box-sizing: inherit; }

::after, ::before {
    text-decoration: inherit;
    vertical-align: inherit; }

html {
    box-sizing: border-box;
    font-family: sans-serif;
    line-height: 1.5;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; }

body {
    margin: 0; }

h1 {
    font-size: 2em;
    margin: .67em 0; }

table {
    border-collapse: collapse;
    border-spacing: 0; }

.asterisk {
    font-size: 12px;
    margin: 0px 20px 20px 20px;
    display: inline-block;
}

/*************************************************
	Floating Button
*************************************************/

.label-container{
    position:fixed;
    bottom:48px;
    right:105px;
    display:table;
    visibility: hidden;
    z-index: 1000000;
}

.label-text{
    color:#FFF;
    background:rgba(51,51,51,0.5);
    display:table-cell;
    vertical-align:middle;
    padding:10px;
    border-radius:3px;
}

.label-arrow{
    display:table-cell;
    vertical-align:middle;
    color:#333;
    opacity:0.5;
}

.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#c600d3;
    color:#FFFFFF;
    border-radius:50px;
    text-align:center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000000;
}

.my-float{
    font-size:24px !important;
    margin-top:18px;
}

a.float + div.label-container {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

a.float:hover + div.label-container{
    visibility: visible;
    opacity: 1;
}

/*************************************************
	Footer
*************************************************/
footer {
    text-align: center;
    padding: 1em 0;
}

/*************************************************
	Contact Form
*************************************************/

input {
    padding: .5em;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.17em;
}

input[type=submit] {
    background-color: #fde300;
    border: none;
    color: #000000;
    font-size: 1em;
    padding: 10px 50px;
    font-weight: bold;
}

textarea {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.17em;
}

input:focus, textarea:focus {
    outline: none !important;
    border: 2px solid #fde300;
}

/*************************************************
	Featured Item
*************************************************/

.featured {
    background-color: black;
    border: solid white;
    border-width: 5px;
}

.featured .h2, .featured p, .featured .h3 {
    color: white;
}

.featured .media__description {
    background-color: white;
}

/*************************************************
  Burger CSS
*************************************************/

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

#menuToggle
{
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    padding: .85em;
    z-index: 10;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a
{
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
}

#menuToggle a:hover
{
    color: grey;
}


#menuToggle input
{
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 20;

    -webkit-touch-callout: none;
}

#menuToggle span
{
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: #000000;
    border-radius: 3px;

    z-index: 10;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child
{
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
    transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
    transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
    position: absolute;
    width: 300px;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;

    background: #fde300;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
    padding: 10px 0;
    font-size: 22px;
}

#menuToggle input:checked ~ ul
{
    transform: none;
}

/*************************************************
  Screenshot CSS
*************************************************/

.screenshot__image img {
    max-height: 200px;
    max-width: 100%;
    vertical-align: top;
    width: auto;
    border-radius: 2px; }

/*************************************************
  Events CSS
*************************************************/

.eventHeaderText {
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    padding-bottom: 1em;
    margin: 0px;
}

.media__description_blurb {
    color: black;
    font-size: 1em;
}

/*************************************************
  Targeting Links CSS
*************************************************/

.targetCategories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 30px;
}

.targetCategories_item a {
    font-size: 14px;
    color: #06c;
}

.targetCategories_item a:hover {
    text-decoration: underline;

}

.targetCategories_item {
    flex: 1 0 33%;
    padding: 10px 2px;
}

@media only screen and (max-width: 1023px) {
    .targetCategories {
        flex-direction: column;
        padding: 0;
    }

    .targetCategories_item {
        flex: 1 0 auto;
        padding: 10px;
    }
}</pre></body></html>