/*==================================
 ------------ RESET CSS -----------
==================================*/
html, body, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    box-sizing: border-box;
    overflow-x: hidden;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html {
    font-size: 10px;
}

nav ol, nav ul:not(.list), .list--reset ol, .list--reset ul:not(.list) {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

b, strong {
    font-weight: bold;
}

i,
em {
    font-style: italic;
}

small {
    font-size: 12px;
    line-height: normal;
    display: inline-block;
}

.list small {
    margin-top: 10px;
}

sup {
    font-size: 80%;
    position: relative;
    top: -0.3em;
}

sub {
    font-size: 80%;
    position: relative;
    bottom: -0.3em;
}

/*---------- Animations ----------*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/*==================================
 --------- DEFAULT STYLES ---------
==================================*/

body {
    overflow-x: hidden;
    color: #44464b;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857143;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}


/*---------- TYPOGRAPHY ----------*/

h1 {
    font-size: 48px;
    font-size: 4.8rem;
    margin-bottom: 48px;
    line-height: 1.2;
    font-family: "Trebuchet MS";
    font-weight: 700;
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 36px;
        font-size: 3.6rem;
    }
}

h2 {
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 40px;
    font-family: "Trebuchet MS";
}

h3 {
    font-size: 24px;
    font-size: 2.4rem;
    margin: 10px 0;
    font-family: "Trebuchet MS";
}

h4 {
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 28px;
    font-size: 16px;
}

h5 {
    margin-bottom: 10px;
    margin-top: 10px;
}

a {
    text-decoration: none;
    color: #0066cb;
}

a:hover {
    color: #23527c;
}

p {
    margin: 0 0 10px;
    line-height: 28px;
    font-size: 16px;
}

i {
    display: inline-block;
}

em {
    font-style: italic;
}


/*------------ COMMON ------------*/

img {
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    user-select: none;
    cursor: pointer;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #333;
    margin-right: 8px;
    line-height: 1;
    border-radius: 50%;
    vertical-align: middle;
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
    width: 15px;
    height: 15px;
    background: #ff9900;
    border-color: #ff9900 !important;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}


/*------- HACKS AND FIXES -------*/

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*------------ LISTS ------------*/

ul,
.list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 28px;
    font-size: 16px;
}

.list--ordered {
    list-style-type: decimal;
}

.list--ordered-brakets {

}

.list--alpha {
    list-style-type: lower-alpha;
    padding-left: 20px;
}

.list--alpha-uppercase {
    list-style-type: upper-alpha;
}

.list--roman {
    list-style-type: lower-roman;
}

.list--roman-uppercase {
    list-style-type: upper-roman;
}

.list--inside {
    list-style-position: inside;
}

/*------- BUTTONS / INPUTS -------*/

.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 15px 20px;
    background: transparent;
    border: 0;
    color: #006fba;
    border-radius: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

.submit,
.button,
.upload,
.dropdown {
    cursor: pointer;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button {
    transition: 0.3s ease-in-out;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
/*    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.12);*/
    border-radius: 100px;
    background-color: rgba(153, 153, 153, 0.1);
    background-image: -webkit-linear-gradient(155deg, #ff9900 0%, #e37500 100%);
    background-image: linear-gradient(155deg, #ff9900 0%, #e37500 100%);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.54px;
    min-width: 220px;
    text-align: center;
}

.button:hover {
    color: #fff;
    box-shadow: 0 3px 2px 0 #bcc0c4;
}

.button--inverted {
    text-transform: none;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24), 0 0 2px rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    background-color: #0080ff;
    background-image: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.03) 100%);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.03) 100%);
}

.button--inverted.js--disabled {
    background: #fff;
    border-color: #006fba;
    color: #006fba;
}

.button--dark {
    border: 2px solid #fff;
    color: #fff;
}

.button--dark:hover {
    background: #fff;
    color: #006fba;
}

.dropdown {
    padding: 10px 40px 10px 15px;
    background: transparent url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 15px center;
    background-size: 14px 14px;
    min-width: 118px;
    color: #44464b;
    font-size: 14px;
    border: 1px solid #979797;
}

.dropdown::-ms-expand {
    display: none;
}


/*------------ TABLES ------------*/

.table {
    width: 100%;
    margin: 16px 0;
}

.table thead {
    background-color: #0254a6;
}

.table thead th {
    text-align: left;
}

.table tr:nth-child(even) {
    background-color: rgba(221, 226, 235, 0.17);
}

.table th,
.table td,
.table tr>.grid_col {
    margin: 0;
    padding: 15px 25px;
    font-size: 15px;
    color: #4a4a4a;
    letter-spacing: -0.06px;
}


@media only screen and (max-width: 480px) {
    .table th,
    .table td,
    .table tr>.grid_col {
        padding: 15px;
    }
}

.table th {
    color: #fff;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #f6f6f6;
}

.table--headless tr:first-child {
    background-color: #006fba;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tbody {
        border-top: 1px solid #006fba;
        border-bottom: 1px solid #006fba;
    }
    .table--responsive td {
        display: block;
    }
    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}


/*--------- SPECIAL BOXES --------*/

.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    font-size: 1.4rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}

.code_comment {
    opacity: 0.5;
}

.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}


/*==================================
 -------- Q4 Modules Icons ---------
==================================*/

.module_q4-icon-links .module_link:before,
.module_link--banner:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e90d";
    font-size: 30px;
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
}

.module_q4-icon-links .module_link.module_link-transcript:before {
    content: "\e99b";
}

.module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e95c";
}

.module_q4-icon-links .module_link.module_link-file:before {
    content: "\eb81";
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\e915";
}

.module_q4-icon-links .module_link:before {
    color: #F79B0D;
}

.module_q4-icon-links .module_link[href$=".xbrl"]:before,
.module_q4-icon-links .module_link[href$=".aspx"]:before,
.module_q4-icon-links .module_link[href$=".htm"]:before,
.module_q4-icon-links .module_link[href$=".html"]:before {
/*    color: #3FB83A;*/
}

.module_q4-icon-links .module_link[href$=".mp3"]:before,
.module_q4-icon-links .module_link[href$=".wmv"]:before,
.module_q4-icon-links .module_link[href$=".MP3"]:before,
.module_q4-icon-links .module_link[href$=".WMV"]:before {
    content: "\e9b1";
    font-size: 22px;
}

.module_q4-icon-links .module_link[href$=".xlsx"]:before,
.module_q4-icon-links .module_link[href$=".xlsm"]:before,
.module_q4-icon-links .module_link[href$=".xls"]:before,
.module_q4-icon-links .module_link[href$=".csv"]:before,
.module_q4-icon-links .module_link[href$=".XLS"]:before,
.module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\e912";
    color: #3FB83A;
}

.module_q4-icon-links .module_link[href$=".mp4"]:before,
.module_q4-icon-links .module_link[href$=".flv"]:before,
.module_q4-icon-links .module_link[href$=".avi"]:before,
.module_q4-icon-links .module_link[href$=".MP4"]:before,
.module_q4-icon-links .module_link[href$=".FLV"]:before,
.module_q4-icon-links .module_link[href$=".AVI"]:before {
    content: "\e95e";
}

.module_q4-icon-links .module_link[href$=".Pdf"]:before,
.module_q4-icon-links .module_link[href$=".pdf"]:before,
.module_q4-icon-links .module_link[href$=".PDF"]:before,
.module_link--banner.module_link-presentation:before {
    content: "\e90e";
    font-size: 30px;
}

.module_q4-icon-links .module_link.module_link-webcast:before,
.module_q4-icon-links .module_webcast-link:before,
.module_link--banner.module_link-webcast:before {
    content: "\e916" !important;
}

.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e90d";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\e90e";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\e90f";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\e912";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e913";
    color: #3FB83A;
}

.module_q4-icon-links .module_link.module_link-sec[href$=".html"]:before {
    color: #3FB83A;
}


/*==================================
 ----------- TOAST GRID -----------
==================================*/

.grid {
    list-style: none;
    margin-left: -20px;
}
.grid--flex {
    margin-left: -20px;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.grid--flex_column {
    flex-direction: column;
}
.grid--flex_row-reverse {
    flex-direction: row-reverse;
}
.grid--flex_column-reverse {
    flex-direction: column-reverse;
}
.grid--flex_justify-start {
    justify-content: flex-start;
    text-align: start;
}
.grid--flex_justify-center {
    justify-content: center;
    text-align: center;
}
.grid--flex_justify-end {
    justify-content: flex-end;
    text-align: end;
}
.grid--flex_align-top {
    align-items: flex-start;
}
.grid--flex_align-middle {
    align-items: center;
}
.grid--flex_align-bottom {
    align-items: flex-end;
}
.grid--flex_space-around {
    justify-content: space-around;
}
.grid--flex_space-between {
    justify-content: space-between;
}

.grid--flex .grid_col {
    display: block;
    margin-right: 0;
    flex: 0 0 auto;
}

.grid_col--1-of-1, .grid_col--2-of-2, .grid_col--3-of-3, .grid_col--4-of-4, .grid_col--5-of-5, .grid_col--6-of-6, .grid_col--7-of-7, .grid_col--8-of-8, .grid_col--12-of-12 {
    width: 100%;
}

.grid_col--1-of-2, .grid_col--2-of-4, .grid_col--3-of-6, .grid_col--4-of-8, .grid_col--6-of-12 {
    width: 50%;
}

.grid_col--1-of-3, .grid_col--2-of-6, .grid_col--4-of-12 {
    width: 33.33333%;
}

.grid_col--2-of-3, .grid_col--4-of-6, .grid_col--8-of-12 {
    width: 66.66667%;
}

.grid_col--1-of-4, .grid_col--2-of-8, .grid_col--3-of-12 {
    width: 25%;
}

.grid_col--3-of-4, .grid_col--6-of-8, .grid_col--9-of-12 {
    width: 75%;
}

.grid--flex .grid_col--1-of-1, .grid--flex .grid_col--2-of-2, .grid--flex .grid_col--3-of-3, .grid--flex .grid_col--4-of-4, .grid--flex .grid_col--5-of-5, .grid--flex .grid_col--6-of-6, .grid--flex .grid_col--7-of-7, .grid--flex .grid_col--8-of-8, .grid--flex .grid_col--12-of-12 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
}

.grid--flex .grid_col--1-of-2, .grid--flex .grid_col--2-of-4, .grid--flex .grid_col--3-of-6, .grid--flex .grid_col--4-of-8, .grid--flex .grid_col--6-of-12 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
}

.grid--flex .grid_col--1-of-3, .grid--flex .grid_col--2-of-6, .grid--flex .grid_col--4-of-12 {
    width: auto;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
}

.grid--flex .grid_col--2-of-3, .grid--flex .grid_col--4-of-6, .grid--flex .grid_col--8-of-12 {
    width: auto;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
}

.grid--flex .grid_col--1-of-4, .grid--flex .grid_col--2-of-8, .grid--flex .grid_col--3-of-12 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
}

.grid--flex .grid_col--3-of-4, .grid--flex .grid_col--6-of-8, .grid--flex .grid_col--9-of-12 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
}

.grid_col--push-1-of-1, .grid_col--push-2-of-2, .grid_col--push-3-of-3, .grid_col--push-4-of-4, .grid_col--push-5-of-5, .grid_col--push-6-of-6, .grid_col--push-7-of-7, .grid_col--push-8-of-8, .grid_col--push-12-of-12 {
    margin-left: 100%;
}

.grid_col--push-1-of-2, .grid_col--push-2-of-4, .grid_col--push-3-of-6, .grid_col--push-4-of-8, .grid_col--push-6-of-12 {
    margin-left: 50%;
}

.grid_col--push-1-of-3, .grid_col--push-2-of-6, .grid_col--push-4-of-12 {
    margin-left: 33.33333%;
}

.grid_col--push-2-of-3, .grid_col--push-4-of-6, .grid_col--push-8-of-12 {
    margin-left: 66.66667%;
}

.grid_col--push-1-of-4, .grid_col--push-2-of-8, .grid_col--push-3-of-12 {
    margin-left: 25%;
}

.grid_col--push-3-of-4, .grid_col--push-6-of-8, .grid_col--push-9-of-12 {
    margin-left: 75%;
}

.grid_col--pull-1-of-1, .grid_col--pull-2-of-2, .grid_col--pull-3-of-3, .grid_col--pull-4-of-4, .grid_col--pull-5-of-5, .grid_col--pull-6-of-6, .grid_col--pull-7-of-7, .grid_col--pull-8-of-8, .grid_col--pull-12-of-12 {
    margin-left: -100%;
}

.grid_col--pull-1-of-2, .grid_col--pull-2-of-4, .grid_col--pull-3-of-6, .grid_col--pull-4-of-8, .grid_col--pull-6-of-12 {
    margin-left: -50%;
}

.grid_col--pull-1-of-3, .grid_col--pull-2-of-6, .grid_col--pull-4-of-12 {
    margin-left: -33.33333%;
}

.grid_col--pull-2-of-3, .grid_col--pull-4-of-6, .grid_col--pull-8-of-12 {
    margin-left: -66.66667%;
}

.grid_col--pull-1-of-4, .grid_col--pull-2-of-8, .grid_col--pull-3-of-12 {
    margin-left: -25%;
}

.grid_col--pull-3-of-4, .grid_col--pull-6-of-8, .grid_col--pull-9-of-12 {
    margin-left: -75%;
}

.grid_col--1-of-5 {
    width: 20%;
}

.grid--flex .grid_col--1-of-5 {
    width: auto;
    flex-basis: 20%;
    max-width: 20%;
}

.grid_col--push-1-of-5 {
    margin-left: 20%;
}

.grid_col--pull-1-of-5 {
    margin-left: -20%;
}

.grid_col--2-of-5 {
    width: 40%;
}

.grid--flex .grid_col--2-of-5 {
    width: auto;
    flex-basis: 40%;
    max-width: 40%;
}

.grid_col--push-2-of-5 {
    margin-left: 40%;
}

.grid_col--pull-2-of-5 {
    margin-left: -40%;
}

.grid_col--3-of-5 {
    width: 60%;
}

.grid--flex .grid_col--3-of-5 {
    width: auto;
    flex-basis: 60%;
    max-width: 60%;
}

.grid_col--push-3-of-5 {
    margin-left: 60%;
}

.grid_col--pull-3-of-5 {
    margin-left: -60%;
}

.grid_col--4-of-5 {
    width: 80%;
}

.grid--flex .grid_col--4-of-5 {
    width: auto;
    flex-basis: 80%;
    max-width: 80%;
}

.grid_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.66667%;
}

.grid--flex .grid_col--1-of-6 {
    width: auto;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.66667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.66667%;
}

.grid_col--5-of-6 {
    width: 83.33333%;
}

.grid--flex .grid_col--5-of-6 {
    width: auto;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.33333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.33333%;
}

.grid_col--1-of-7 {
    width: 14.28571%;
}

.grid--flex .grid_col--1-of-7 {
    width: auto;
    flex-basis: 14.28571%;
    max-width: 14.28571%;
}

.grid_col--push-1-of-7 {
    margin-left: 14.28571%;
}

.grid_col--pull-1-of-7 {
    margin-left: -14.28571%;
}

.grid_col--2-of-7 {
    width: 28.57143%;
}

.grid--flex .grid_col--2-of-7 {
    width: auto;
    flex-basis: 28.57143%;
    max-width: 28.57143%;
}

.grid_col--push-2-of-7 {
    margin-left: 28.57143%;
}

.grid_col--pull-2-of-7 {
    margin-left: -28.57143%;
}

.grid_col--3-of-7 {
    width: 42.85714%;
}

.grid--flex .grid_col--3-of-7 {
    width: auto;
    flex-basis: 42.85714%;
    max-width: 42.85714%;
}

.grid_col--push-3-of-7 {
    margin-left: 42.85714%;
}

.grid_col--pull-3-of-7 {
    margin-left: -42.85714%;
}

.grid_col--4-of-7 {
    width: 57.14286%;
}

.grid--flex .grid_col--4-of-7 {
    width: auto;
    flex-basis: 57.14286%;
    max-width: 57.14286%;
}

.grid_col--push-4-of-7 {
    margin-left: 57.14286%;
}

.grid_col--pull-4-of-7 {
    margin-left: -57.14286%;
}

.grid_col--5-of-7 {
    width: 71.42857%;
}

.grid--flex .grid_col--5-of-7 {
    width: auto;
    flex-basis: 71.42857%;
    max-width: 71.42857%;
}

.grid_col--push-5-of-7 {
    margin-left: 71.42857%;
}

.grid_col--pull-5-of-7 {
    margin-left: -71.42857%;
}

.grid_col--6-of-7 {
    width: 85.71429%;
}

.grid--flex .grid_col--6-of-7 {
    width: auto;
    flex-basis: 85.71429%;
    max-width: 85.71429%;
}

.grid_col--push-6-of-7 {
    margin-left: 85.71429%;
}

.grid_col--pull-6-of-7 {
    margin-left: -85.71429%;
}

.grid_col--1-of-8 {
    width: 12.5%;
}

.grid--flex .grid_col--1-of-8 {
    width: auto;
    flex-basis: 12.5%;
    max-width: 12.5%;
}

.grid_col--push-1-of-8 {
    margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
    margin-left: -12.5%;
}

.grid_col--3-of-8 {
    width: 37.5%;
}

.grid--flex .grid_col--3-of-8 {
    width: auto;
    flex-basis: 37.5%;
    max-width: 37.5%;
}

.grid_col--push-3-of-8 {
    margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
    margin-left: -37.5%;
}

.grid_col--5-of-8 {
    width: 62.5%;
}

.grid--flex .grid_col--5-of-8 {
    width: auto;
    flex-basis: 62.5%;
    max-width: 62.5%;
}

.grid_col--push-5-of-8 {
    margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
    margin-left: -62.5%;
}

.grid_col--7-of-8 {
    width: 87.5%;
}

.grid--flex .grid_col--7-of-8 {
    width: auto;
    flex-basis: 87.5%;
    max-width: 87.5%;
}

.grid_col--push-7-of-8 {
    margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
    margin-left: -87.5%;
}

.grid_col--1-of-12 {
    width: 8.33333%;
}

.grid--flex .grid_col--1-of-12 {
    width: auto;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.33333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.33333%;
}

.grid_col--2-of-12 {
    width: 16.66667%;
}

.grid--flex .grid_col--2-of-12 {
    width: auto;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.66667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.66667%;
}

.grid_col--5-of-12 {
    width: 41.66667%;
}

.grid--flex .grid_col--5-of-12 {
    width: auto;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.66667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.66667%;
}

.grid_col--7-of-12 {
    width: 58.33333%;
}

.grid--flex .grid_col--7-of-12 {
    width: auto;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.33333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.33333%;
}

.grid_col--10-of-12 {
    width: 83.33333%;
}

.grid--flex .grid_col--10-of-12 {
    width: auto;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.33333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.33333%;
}

.grid_col--11-of-12 {
    width: 91.66667%;
}

.grid--flex .grid_col--11-of-12 {
    width: auto;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.66667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.66667%;
}

.grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
}
@media (max-width: 480px) {
    .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}
@media (max-width: 1200px) and (min-width: 1025px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--lg-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
    .grid_col.grid_col--lg-1-of-2, .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-2, .grid--flex .grid_col.grid_col--lg-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--lg-1-of-3 {
        width: 33.33333%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.66667%;
    }
    .grid--flex .grid_col.grid_col--lg-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--lg-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--lc-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
    .grid_col.grid_col--lc-1-of-2, .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-2, .grid--flex .grid_col.grid_col--lc-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--lc-1-of-3 {
        width: 33.33333%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.66667%;
    }
    .grid--flex .grid_col.grid_col--lc-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--lc-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}
@media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--md-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
    .grid_col.grid_col--md-1-of-2, .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-2, .grid--flex .grid_col.grid_col--md-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--md-1-of-3 {
        width: 33.33333%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.66667%;
    }
    .grid--flex .grid_col.grid_col--md-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--md-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}
@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid--flex .grid_col[class*="grid_col--sm-"] {
        display: block;
        margin-right: 0;
    }
    .grid_col.grid_col--sm-1-of-2, .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-2, .grid--flex .grid_col.grid_col--sm-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }
    .grid_col.grid_col--sm-1-of-3 {
        width: 33.33333%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.66667%;
    }
    .grid--flex .grid_col.grid_col--sm-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }
    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }
    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
    .grid--flex .grid_col.grid_col--sm-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
    .grid--flex .grid_col {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}
.grid--flex .grid_col--d-first {
    float: none;
    order: -1;
}

.grid_col--d-last {
    float: right;
}
.grid--flex .grid_col--d-last {
    float: none;
    order: 1;
}

.grid--no-gutter {
    margin-left: 0;
}
.grid--no-gutter .grid_col {
    padding-left: 0;
}
.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--gutter {
    margin-left: 20px;
}
.grid--gutter .grid_col {
    padding-left: 20px;
}
.grid--gutter-40 {
    margin-left: -40px;
}
.grid--gutter-40 .grid_col {
    padding-left: 40px;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}



/*==================================
 --------- UTILITY CLASSES --------
==================================*/

.hidden {
    display: none !important;
}

.disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background--brand {
    background-color: #ff9900;
}

.background--alt-brand {
    background-color: #f1af0f;
}

.background--dark {
    background-color: #222;
}

.background--light {
    background-color: rgba(221, 226, 235, 0.17);
}

.background--grey {
    background-color: rgba(221, 226, 235, 0.17);
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b72121;
}

.color--brand {
    color: #ff9900;
}

.color--dark {
    color: #222;
}

.color--grey {
    color: #f6f6f6;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #b72121;
}

.dark {
    color: #fcfcfc;
}

.dark a {
    color: #fcfcfc;
}


/*==================================
 --------- ACCESSIBILITY ----------
==================================*/

*:focus {
    outline: none;
}

a:focus {
    text-decoration: underline !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#maincontent:focus {
    outline: 0px;
}


/*---------- Javascript ----------*/

.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px 0 10px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
}

.js--hidden {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border-bottom: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #b72121 !important;
}


/*==================================
 ----------- MODULE CSS -----------
==================================*/


/*-------- All Module CSS --------*/

.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text {
    display: none;
}

.module_nav,
.module_headline,
.module_location,
.module_speakers,
.module_links,
.module_body,
.module_options,
.module_not-found {
    margin-bottom: 10px;
}

.module_add-to-calendar-reveal {
    color: #006fba;
    cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}

.module_add-to-calendar-list {
    display: none;
}

.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar-link {
    font-size: 30px;
    color: #a4a3a4;
}

.module_add-to-calendar-link:hover {
    color: #23527c;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions,
.module_pager {
    margin-top: 20px;
}

.module_date-time {
    display: inline-block;
    margin-bottom: 10px;
    color: #777;
    font-size: 11px;
    line-height: 22px;
}

.module_error-container {
    display: block;
    margin-bottom: 20px;
    color: #b72121;
}

.pane--footer .module_error-container {
    padding-bottom: 0;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
}

.module_error-container ul>li {
    line-height: 1.5;
}

.module_error-container>br {
    display: none;
}

.module_error-container>span {
    display: block;
    line-height: 1.5;
}

.module_error-container>span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_headline-link {
    font-weight: 700;
    color: #44464b;
    font-size: 14px;
    line-height: 22px;
}

.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
}

.module_image--right {
    float: right;
    margin-left: 32px;
}

.module_image--left {
    float: left;
    margin-right: 32px;
}

.module_introduction {
    margin-bottom: 35px;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module_label+.module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module_links>*,
.module_links li,
.module_links .module_presentation {
    display: inline;
}

@media only screen and (max-width: 480px) {
    .module_links>*,
    .module_links li,
    .module_links .module_presentation {
        display: block;
    }
    .module_financials {
        display: inline-block;
        width: 100%;
    }
    .module_financials a {
        float: left;
        clear: left;
    }
}

.module_links.module_links--stack>*,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
    display: block;
}

.module_link {
    display: inline-block;
    vertical-align: middle;
    margin: 0 30px 5px 0;
    color: #777;
    font-size: 11px;
    line-height: 22px;
}

.module_link:focus {
    color: #23527c;
    text-decoration: none !important;
}

.module_link:hover {
    color: #23527c;
}

.module_link>.module_link-text,
.module_link>i,
.module_link>span {
    vertical-align: middle;
}g

.module_link>i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #23a217;
}

.module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 5px;
}

.module_message--error {
    color: #b72121;
}

.module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 5px;
}

.module_nav-link,
.module_nav .ModuleYearLink,
.module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
    display: inline-block;
    margin-right: 5px;
    padding: 15px 20px;
    border: 2px solid #006fba;
    color: #333333;
    font-weight: normal;
}

.module_nav-link.selected,
.module_nav-link.selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited,
.module_nav-link:visited.selected,
.module_nav-link:visited.selected:visited,
.module_nav .ModuleYearLink:visited.selected,
.module_nav .ModuleYearLink:visited.selected:visited {
    background-color: #006fba;
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}

.module_options-label,
.module_options-select {
    margin-right: 10px;
}

@media only screen and (max-width: 480px) {
    .module_options-label,
    .module_options-select,
    .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: #333333;
}

.module_pager a[href] {
    color: #006fba;
}

.module_reminder .module_input.module_reminder-period,
.module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required-text span,
.module_required {
    color: #b72121;
}

.module_rss {
    float: right;
    margin-top: 20px;
    font-size: 20px;
}

.module_rss a {
    color: #F79B0D;
}

.module_rss a:hover {
    color: #23527c;
}

.module_speakers li {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.42857143;
}

.module_speakers li i {
    font-size: 20px;
    margin-right: 5px;
}

.module_title {
    color: #44464b;
    line-height: 49px;
    margin-top: 0;
    font-size: 36px;
    font-weight: 400;
    font-family: "Open Sans";
}

.module_view-all-link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Text area demands width*/
    width: 100%;
    max-width: none;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    border-bottom: 1px solid #d5d8d9;
    color: #666;
    padding: 5px 0 18px 0;
}

.module_input[type="text"]::-ms-clear,
.module_input[type="email"]::-ms-clear,
.module_input[type="file"]::-ms-clear,
.module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
    display: none;
}

.module textarea.module_input {
    resize: vertical;
}

.module_input[type="file"],
.module_dropdown {
    cursor: pointer;
}

.module_input[type="file"] {
    line-height: 1;
}

.module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    background: transparent;
    color: #44464b;
    font-size: 14px;
    border: 1px solid #979797;
    line-height: 22px;
}

.module_dropdown {
    background: #f6f6f6 url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 20px center;
    background-size: 14px 14px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}

.module_reminder {
    margin-top: 20px;
}

.module_reminder-button {
    min-width: 118px;
}

@media only screen and (max-width: 768px) {
    .module_reminder .module_label {
        display: block;
    }
    .module_reminder-email {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .module_reminder-button {
        display: block;
        margin-top: 20px;
    }
}

/*------- Captcha Component ------*/

.CaptchaContainer {
    display: none;
}

.CaptchaContainer table tr:nth-child(1) {
    display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
}

.CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
}

.CaptchaContainer table tr td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}

.CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    background: none;
    color: #666;
    border-bottom: 1px solid #d5d8d9;
    padding: 5px 0 18px;
    vertical-align: bottom;
    width: 100%;
    font-family: "Open Sans", sans-serif;
}

.CaptchaContainer .button {
    min-width: 100%;
    background: linear-gradient(251.24deg,#02cc32 0%,#429321 100%);
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}


/*- Investment Calculator Widget -*/

.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_input h4 {
    margin-bottom: 12px;
}

.module-calculator_input label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.module-calculator_input input[type="checkbox"]+label {
    margin: 0;
}

.module-calculator_input input[type="checkbox"] + label::before {
    vertical-align: baseline;
    margin-bottom: -2px;
}

.module-calculator_input-row {
    padding-bottom: 10px;
}

.module-calculator_input-row input[type="text"] {
    margin-top: 10px;
    max-width: 300px;
}

.module-calculator_input-row--other input[type="text"] {
    display: none;
}

.module-calculator_input-row--other input[type="text"].js--revealed {
    display: block;
}

.module-calculator_popup-container {
    max-width: 920px;
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .module-calculator_popup-container .table thead {
        display: none;
    }
    .module-calculator_popup-container .table tbody {
        border-top: 2px solid #006fba;
        border-bottom: 2px solid #006fba;
    }
    .module-calculator_popup-container .table td {
        display: block;
    }
    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}

.module-calculator_info td:first-child:before {
    content: none;
}

.module-calculator_info .table--responsive thead {
    display: table-header-group;
}

.module-calculator_info .table--responsive td {
    display: table-cell;
}

.module-calculator_info .table--responsive tbody {
    border: 0;
}

.module-calculator_info .table--responsive td::before {
    display: none;
}

.highcharts-container,
.module-calculator_popup-container {
    width: 100%;
}

/*- Committee Composition Widget -*/

@media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}

.module-committee .module_container--tablet {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module-committee .module_header {
    background-color: #0254a6;
    color: #fcfcfc;
    font-size: 15px;
    letter-spacing: -0.06px;
    display: block;
    position: relative;
}

.module-committee .module_header .grid_col {
    vertical-align: bottom;
}

.module-committee .module_item {
    padding: 0;
}

.module-committee .module_item~.module_item {
    border: 0;
}

.module-committee .grid_col {
    padding: 15px;
    text-align: center;
}

.module-committee .grid_col:first-child {
    text-align: left;
    font-size: 15px;
    color: #4a4a4a;
    letter-spacing: -0.06px;
}

.module-committee .grid_col:first-child a {
    color: #4a4a4a;
}

.module-committee .grid_col:first-child a:hover {
    color: #23527c;
}

.module-committee_category .module_header i:before {
    content: "\edc2";
}

.module-committee_category.js--active .module_header i:before {
    content: "\edba";
}

.module-committee_custom-role {
    margin-left: 5px;
}

.module-committee i {
    font-size: 18px;
}

.module-committee .q4-icon_star-fill {
    color: #a4a3a4;
}

.module-committee_bio {
    padding: 10px 25px 25px;
    text-align: left;
}

.module-committee_bio p {
    margin: 0;
}

.module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
}

.module-committee_legend-container {
    padding: 0;
    margin-top: 40px;
}

.module-committee_legend {
    display: inline-block;
    margin-right: 30px;
}

.module-committee_legend i {
    margin-right: 5px;
}

.module-committee_footer-text {
    margin-top: 40px;
}

.module-committee_footer-text a {
    position: relative;
    padding-left: 35px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: -0.06px;
    font-size: 15px;
/*    color: #44464b;*/
    line-height: 20px;
}

.module-committee_footer-text a:hover {
    color: #23527c;
}

.module-committee_footer-text a i {
    font-size: 30px;
    position: absolute;
    left: 0;
    color: #000;
    font-size: 30px;
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
}

.module-committee_footer-text p:nth-child(2n):not(:last-child) {
    margin-bottom: 30px;
}

.module-committee .module_container--tablet .module-committee_category {
    margin-bottom: 5px;
}

.module-committee .module_container--tablet .module_header .grid_col:first-child {
    color: #fcfcfc;
}

.module-committee .module_container--tablet .module-committee_icon,
.module-committee .module_container--tablet .module_header .grid_col:last-child {
    text-align: right;
}

.module-committee .module_container--tablet .module_header .grid_col:last-child {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.module-committee .module_container--tablet .module_header {
    cursor: pointer;
    font-size: 15px;
}

.module-committee .module_container--tablet .module_items-container {
    padding: 15px 25px;
}

.module-committee .module_container--tablet .module_items-container .grid_col {
    padding: 0;
}

.module-committee .module_container--tablet .module_item {
    padding: 5px 0;
}

@media only screen and (max-width: 480px) {
    .module-committee_legend {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.module-committee_page h2 {
    font-family: "Open Sans";
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.93px;
    margin-bottom: 20px;
}

/*----- Download List Module -----*/

.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 10px 0;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads_title-link {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.06px;
}

.module-downloads_title-link:before {
    color: #777;
    font-size: 30px;
}

.module-downloads_title-link:before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}

.module-downloads--intro .module-downloads_title {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-right: 5px;
}

.module-downloads--intro .module-downloads_title-link {
    display: inline;
    vertical-align: middle;
    letter-spacing: -0.06px;
    font-size: 15px;
    line-height: 20px;
    opacity: 1;
    margin: 0;
}

.module-downloads--intro .module-downloads_title-link:before {
    position: absolute;
    left: 0;
}

.module-downloads--intro .module_file-text,
.module-downloads--intro .module-downloads_description {
    display: inline-block;
    color: #999;
    font-size: 15px;
    line-height: 20px;
    vertical-align: middle;
}

/*--------- Event Module ---------*/

.module_financials,
.module_attachments {
    margin: 0;
    padding: 0;
}

.module-event-details .module_q4-icon-links .module_link[href$=".mp3"]:before,
.module-event-details .module_q4-icon-links .module_link[href$=".MP3"]:before,
.module-event .module_q4-icon-links .module_link[href$=".mp3"]:before,
.module-event .module_q4-icon-links .module_link[href$=".MP3"]:before {
    content: "\e916" !important;
}

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event .module_options {
    margin-bottom: 40px;
}

.module-event .module_item ~ .module_item {
    margin-top: 40px;
}

.module-event-details .module_details-title {
    font-weight: normal;
    color: #44464b;
    margin: 0;
    font-family: "Open Sans";
    margin-bottom: 15px;
    line-height: 28px;
    font-size: 16px;
}

.module_location label:not(:empty)::before {
    content: "\ea3c";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 20px;
}

.module-event-details .module_speakers h4 {
    display: none;
}

.module-events-and-quarterly .module-event-latest {
    border-right: 1px solid rgba(0,0,0,0.05);
    padding-right: 80px;
}

.module-event-latest .module_container--content {
    margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .module-events-and-quarterly .module-event-latest {
        border-right: 0;
        padding-right: 0;
    }
}

.module-event-latest .module_rss {
    margin-top: 0;
}

.module-event-latest .module_links {
    margin: 0;
}

.module-event-upcoming > div:last-of-type {
    max-width: 1170px;
    padding: 0 15px;
    margin: auto;
}

.module-event-upcoming  .module-warning {
    margin: 0;
    padding-left: 20px;
}

.module-event-upcoming {
    position: relative;
    background: -ms-linear-gradient(to right,#222,#464646);
    background: -webkit-linear-gradient(to right,#222,#464646);
    background: linear-gradient(to right,#222,#464646);
}

.module-event-upcoming .module_container--outer {
    position: relative;
    z-index: 99;
}

.module-event-upcoming .module_headline-link {
    color: #ffffff;
    line-height: 49px;
    margin-top: 0;
    font-size: 36px;
    font-weight: 500;
}

.module-event-upcoming .module_links {
    margin-bottom: 0;
}

.module-event-upcoming .module_link {
    color: #fff;
    font-family: "Trebuchet MS";
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.96px;
    margin-right: 0;
    margin-top: 5px;
}

.module-event-upcoming .module_link:before {
    color: #fff;
}

.module-event-upcoming .module_headline-link:hover,
.module-event-upcoming .module_link:hover {
    color: #f90;
}

.module-event-upcoming .module_links > ul li,
.module-event-upcoming .module_links > div {
    width: 50%;
    display: inline-block;
}

@media only screen and (max-width: 768px) {
    .module-event-upcoming .module_links > ul li,
    .module-event-upcoming .module_links > div {
        width: 100%;
    }
    .module-event-upcoming:before {
        background: url(../design/event-bg-2.jpg);
        background-size: cover;
        background-position: center;
    }
    .module-event-upcoming .module_headline-link {
        font-size: 23px;
        line-height: 32px;
    }
}

.module-event-calendar {
    display: block;
    width: 100%;
}

.module-event-calendar .module_container--content {
    position: relative;
}

.module-event-calendar_calendar-container,
.module-event-calendar_event-container {
    display: block;
    text-align: center;
    vertical-align: middle;
}

.module-event-calendar_event-container {
    top: 0;
    left: 20px;
    bottom: 0;
    right: 0;
    position: absolute;
    background-color: #f9fafc;
}

.module-event-calendar_event-container .module_close {
    position: absolute;
    right: 17px;
    top: 10px;
    cursor: pointer;
}

.module-event-calendar_event-container .module_item-wrap {
    height: 100%;
    white-space: nowrap;
    text-align: left;
    padding: 40px;
}

.module-event-calendar_event-container .module_item-wrap:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    /* adjust for white space between pseudo element and next sibling */
    /*margin-right: -.25em;*/
    /* stretch line height */
    height: 100%;
}

.module-event-calendar_event-container .module_item {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    width: 100%;
    padding: 0 10px;
}

.module-event-calendar_event-container {
    display: none;
}

.module-event-calendar_event-container.js--visible {
    display: block;
}

.module-event-calendar_splash i {
    font-size: 40px;
    color: #e10000;
}

.module-event-calendar_splash p {
    font-size: 14px;
    line-height: 19.2px;
}

.module-event-calendar_controls {
    color: #4a4a4a;
    font-size: 20px;
    padding-bottom: 25px;
    border-bottom: 3px solid #f8f8f8;
}

.module-event-calendar_previous-month,
.module-event-calendar_month,
.module-event-calendar_next-month {
    display: inline-block;
}

.module-event-calendar_previous-month,
.module-event-calendar_next-month {
    cursor: pointer;
    color: #BEBEBE;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 3px;
    background-color: #fbfbfb;
}

.module-event-calendar_previous-month:hover,
.module-event-calendar_next-month:hover {
    color: #ff9900;
}

.module-event-calendar_previous-month {
    float: left;
}

.module-event-calendar_next-month {
    float: right;
}

.module-event-calendar_day-container {
    border-bottom: 2px solid #fff;
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 20px 0;
    color: #797979;
    font-size: 15px;
    border: 1px solid #ffffff;
    background-color: #f9fafc;
}

.module-event-calendar_day.calendar-dow-6 {
    border-right: 2px solid #fff;
}

.module-event-calendar_day--name {
    padding: 25px 0 15px 0;
    color: #4a4a4a;
    font-size: 18px;
    line-height: 37px;
    text-transform: uppercase;
    background: none;
}

.module-event-calendar_day--adjacent-month {
    color: #ccc;
}

.module-event-calendar_day--today {
    background: #f8f8f8;
}

.module-event-calendar_day--event {
    cursor: pointer;
    background: #0254a6;
    color: #fff;
}

.module-event-calendar_day--adjacent-month.module-event-calendar_day--event:after {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-event-calendar_calendar-container {
        margin-bottom: 70px;
    }
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
        padding: 15px 0;
    }
}


/*---------- FAQ Module ----------*/

.module-faq .module_title {
    margin-bottom: 20px;
}

.module-faq .module_item ~ .module_item {
    margin-top: 5px;
}

.module-faq_question {
    position: relative;
    padding: 15px 45px 15px 25px;
    cursor: pointer;
    background-color: #0254a6;
    margin: 0;
    font-weight: normal;
    text-transform: none;
    color: #fcfcfc;
    font-size: 15px;
    letter-spacing: -0.06px;
}

.module-faq_question:after {
    position: absolute;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.js--active .module-faq_question:after {
    content: "\edba";
}

.module-faq_answer  {
    padding: 15px 25px;
}

.module-faq_answer a {
    word-wrap: break-word;
}

.module-faq .toggle-all {
    margin-bottom: 40px;
}

.module-faq .toggle-all a:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}

.module-faq .module-form .module_container--outer,
.module-faq .module-form {
    padding: 0 !important;
}

.module-faq .module_container--inner >p {
    color: #23a217;
}
.module-faq--story .module_item,
.module-faq--story .module_item ~ .module_item {
    margin-top: 0;
    border-top: 1px solid #CCCCCC;
}
.module-faq--story .module_item:last-child{
    border-bottom: 1px solid #CCCCCC;
}
.module-faq--story .module-faq_question{
    background: transparent;
    color: #39393A;
    font-size: 26px;
    font-size: 2.6rem;
    font-family: "Trebuchet MS";
    font-weight: 400;
    padding: 30px 60px 30px 25px;
}
.module-faq--story .module-faq_question:after{
    color: #0066CC;
    font-size: 20px;
    font-weight: bold;
}
.module-faq--story .module_item.js--active{
    background: #F9F9F9;
}
.module-faq--story .js--active .module-faq_question{
    color: #0066CC;
    font-weight: bold;
}   
.module-faq--story .module_item img{
    margin-bottom: 20px;
}
.module-faq--story .toggle-all a:before {
    content: "Display all";
}
/*--- Financial Report Modules ---*/

.module-financial-year .module_cover {
    margin-bottom: 15px;
}

.module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 250px;
    max-width: 200px;
}

.module-financial-year .module_item {
    padding: 0;
}

.module-financial-year .module_item~.module_item {
    border: none;
}

.module-financial-year .module_links {
    margin: 0;
}

.module-financial-year .module_link:before {
    color: #3FB83A;
}

.module-financial-year .module_link[href$=".PDF"]::before,
.module-financial-year .module_link[href$=".pdf"]::before,
.module-financial-year .module_link[href$=".Pdf"]::before {
    /*color: #F79B0D;*/
}

.module-financial-year .module_link {
    margin-right: 0;
    font-size: 15px;
/*    color: #44464b;*/
}

.module-financial-year .module_link:hover {
    color: #23527c;
}

.module-financial-year .module-financial_year {
    text-align: center;
}

/*start financial accordeon*/

.module-financial-quarter h4 {
    color: #ff9900;
    font-family: "Trebuchet MS";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.module-financial-quarter .module_item {
    max-width: 50%;
}

@media only screen and (max-width: 991px) {
    .module-financial-quarter .module_item {
        max-width: 100%;
    }
}

.module-financial-quarter .module_item ~ .module_item {
    margin-top: 5px;
}

.module-financial-quarter .module_item.js--active h3:after {
    content: "\edba";
}

.module-financial-quarter .module_links {
    margin: 0;
    padding: 20px;
}

.module-financial-quarter .module_links>div {
    display: block;
}

.module-financial-quarter .module_link {
    /*color: #4a4a4a;*/
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.06px;
    margin: 5px 0;
    position: relative;
    padding-left: 40px;
}

.module-financial-quarter .module_link:hover {
    color: #23527c;
}

.module-financial-quarter .module_link:focus {
    text-decoration: none;
}

.module-financial-quarter .module_link-text {
    display: inline;
}

.module-financial-quarter .module_related-info {
    display: inline-block;
    margin-left: 5px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.06px;
    color: #777;
}

.module-financial-quarter .module_q4-icon-links .module_link::before {
    position: absolute;
    left: 0;
    top: -4px;
}

.module-financial-quarter .module_q4-icon-links .module_link.module_link-audio::before {
    left: 6px !important;
    top: 0px !important;
}

.module-financial-quarter .module-financial_year-text {
    font-family: 'Open Sans';
    padding: 15px 25px;
    cursor: pointer;
    background-color: #0254a6;
    margin: 0;
    font-weight: normal;
    text-transform: none;
    color: #fcfcfc;
    font-size: 15px;
    letter-spacing: -0.06px;
}

.module-financial-quarter .module-financial_year-text:after {
    float: right;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
}

.module-financial-quarter .items:empty::before {
    content: 'No items found.';
    padding-top: 20px;
    display: inline-block;
}

.module-financial-table_header {
    background-color: #006fba;
    color: #fff;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
    padding: 20px 15px;
}

.module-financial-table_body-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.module-financial-table_body-row:nth-child(even) {
    background-color: #f6f6f6;
}

.module-financial-table_body-year-container {
    text-align: center;
}

.module-financial-table_body-year,
.module-financial-table_body-category.grid_col {
    padding: 20px 15px;
}

.module-financial-table_item {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: normal;
}

.module-financial-table_item~.module_item {
    margin-right: 5px;
}

.module-financial-table_item--empty {
    opacity: 0.1;
}

@media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
}

.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}

.module-financial-table .slick-slide:focus {
    outline: none;
}

.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
}

.module-financial-table .slick-prev {
    left: 10px;
}

.module-financial-table .slick-next {
    right: 10px;
}

.module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
}

/* Latest Quarterly Result Widget */

.module-latest-quarter {    
    padding-left: 80px !important;
}

.module-latest-quarter .module_links {
    display: inline-block;
    margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .module-latest-quarter {
        margin-top: 70px;
        padding-left: 0 !important;
    }
}

.module-latest-financial .module_container--outer .module_loader {
    padding: 0 !important;
}

.module-latest-financial .module_header {
    background-color: #0254a6;
    font-size: 15px;
    letter-spacing: -0.06px;
    color: #fff;
    display: block;
}

.module-latest-financial .module_container--inner .grid_col {
    padding: 15px 25px;
}

.module-latest-financial .module_item:nth-child(2n) {
    background: rgba(221, 226, 235, 0.17);
}

.module-latest-financial .module_date-time,
.module-latest-financial .module_link {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.06px;
    margin: 0;
    position: relative;
    padding-left: 0px;
}

.module-latest-financial .module_link:hover {
    color: #23527c;
}

.module-latest-financial .module_q4-icon-links .module_link:before {
    color: #777;
    position: absolute;
    left: 0;
    top: -4px;
}

.module-latest-financial .module_loader {
    margin-top: 20px;
}

/*------ Formbuilder Module ------*/

.module-form label,
.module-form .module_introduction {
    display: none !important;
}

.module-form--iframe .module_container--content,
.module-form--iframe .module_introduction {
    display: inline-block !important;
    width: 100%;
}

.MessageSent .module-form {
    color: #23a217;
}

.module-form textarea {
    height: 47px;
}

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

.module-form .module_container--captcha {
    display: inline-block;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha>div {
    margin: 0;
    padding: 0;
}

.module-form .module_container--captcha>div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #b72121;
}

.module-form .module_container--captcha>div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    float: left;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form .module-form_itemComments,
.module-form .module-form_item--comments {
    width: 100%;
}

.module-form_item>label,
.module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-form_item legend~ul {
    clear: both;
    padding-left: 10px;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request,
.module-form_item--are-you-an-investor {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
        float: none;
    }
}

.module-form_error-text {
    color: #b72121;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #333333;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #006fba;
}


/*---------- Job Modules ---------*/

.module-job-details_description-container {
    margin-bottom: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description label {
    font-weight: normal;
}

.module-job-details_description input {
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    float: right;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0;
}

@media only screen and (max-width: 480px) {
    .module-job-details_description label:after {
        content: ":";
    }
    .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 5px;
    }
}

.module-job-details .grid_col {
    padding: 15px 20px;
}

.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}

.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-job-application_table tr:last-child {
    margin-bottom: 0;
}

.module-job-application_table tr.module-job-application_cover-letter-text,
.module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}

.module-job-application_table tr td {
    display: block;
    position: relative;
}

.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
    .module-job-application_table {
        margin-left: 0;
    }
    .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}

.module-job-application .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}


/*----- Miscellaneous Modules ----*/

.module-script {
    display: none;
}

.module-slideshow_ratio {
    padding-bottom: 56.25%;
    /* this should be changed with aspecRatio option in widget */
    position: relative;
}

.module-slideshow_viewer:not(.grid_col) {
    display: inline-block;
    width: 100%;
    max-width: 640px;
}

.module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 25px;
}

.module-slideshow_title {
    margin-bottom: 10px;
    display: none;
}

.module-slideshow .module_links>*+* {
    margin-top: 15px;
}

.module-slideshow_link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.module-slideshow iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.module-rss p+h2 {
    margin: 40px 0 30px;
}


/*------ Navigation Modules ------*/

.nav_close {
    display: none;
}

.nav--sitemap {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    padding-bottom: 70px;
}

.nav--sitemap a {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.42857143;
}

.nav--sitemap a:hover {
    text-decoration: none;
    background-color: #eee;
    color: #23527c;
}

.nav--sitemap .level2 a {
    text-transform: none;
    font-weight: normal;
}

/*-------- News Module CSS -------*/

.module-news-latest {
    background: url(../design/news-bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.module-news-latest:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: -webkit-linear-gradient(112deg, #044c94 0%, #0066cc 100%);
    background-image: linear-gradient(112deg, #044c94 0%, #0066cc 100%);
}

.module-news-latest .module_title {
    color: #fff;
}

.module-news-latest .module_container--content {
    margin-bottom: 40px;
    padding: 0;
}

.module-news-latest .module_container--outer {
    padding: 0 !important;
} 

.module-news-latest div.slick-track {
    display: table;
    border-collapse: separate;
    border-spacing: 15px;
}

.module-news-latest div.slick-track:after,
.module-news-latest div.slick-track:before {
    display: none;
}

.module-news-latest .slick-slide {
    display: table-cell !important;
    text-align: left;
    border-radius: 4px;
    border: 1px solid #dde2eb;
    background-color: #fcfcfc;
    padding: 20px;
    padding-bottom: 60px;
    position: relative;
    float: none;
}

.module-news-latest .module_links {
    margin: 0;
    position: absolute;
    bottom: 20px;
    font-weight: 700;
}

.module-news-latest .module_link {
    color: #0066cc;
    font-size: 12px;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 0.82px;
    margin: 0;
}

.module-news-latest .module_link:hover {
    color: #23527c;
}

.module-news-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-news-list .module_item+.module_item {
    border-top: 1px solid #dddddd;
}

.module-news-details .module_view-all-link {
    display: block;
    margin-bottom: 25px;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details_category {
    display: none;
}

.module-news-details ul {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.module-news-details ul li {
    line-height: 1.5;
}


/*------ Person List Module ------*/

.module-person .module-person_title-text,
.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
    display: none;
}

.module-person .module_item {
    position: relative;
    padding: 0 0 20px 20px;
    border: none;
}

.module-person .module-person_photo-container img {
    border-radius: 8px;
    width: 100%;
}

.module-person .module-person_photo-container img:hover {
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.25);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,.25);
    box-shadow: 0 0 15px rgba(0,0,0,.25);
    background-color: #fff;
    cursor: pointer;
}

.module-person .module-person_name-container {
    padding: 5px 10px;
    position: absolute;
    bottom: 26px;
    left: 20px;
    right: 20px;
    border-radius: 5px;
    background-color: #0066cb;
    color: #fff;
    border-bottom-left-radius: 8px;
}

.module-person .module-person_name-container h3 {
    font-size: 14px;
    font-family: "Open Sans";
    font-weight: 700;  
}

.fancybox-container .module-person .module_item {
    max-width: 940px;
    padding: 70px;
}

@media only screen and (max-width: 768px) {
    .fancybox-container .module-person .module_item {
        padding: 30px;   
    }
}

.fancybox-container .module-person .module-person_photo-container img {
    width: auto;
}

.fancybox-container .module-person_photo-container,
.fancybox-container .module-person_name-container {
    display: inline-block;
    vertical-align: middle;
}

.fancybox-container .module-person .module-person_photo-container img:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    cursor: default;
}

.fancybox-container .module-person_name-container {
    position: static;
    background: transparent;
    text-align: left;
    opacity: 1;
    visibility: visible;
    cursor: initial;
    padding: 0;
}

.fancybox-container .module-person_name-container h3 {
    position: static;
    transform: none;
}

.fancybox-container .module-person_name-container a {
    color: #333333;
}

.fancybox-container .module-person_photo-container {
    padding-right: 20px;
}

@media only screen and (max-width: 1024px) {
    .fancybox-container .module-person_photo-container {
        padding-right: 0;
        display: block; 
    }
}

.fancybox-container .module-person_name {
    margin-bottom: 10px;
    color: #44464b;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.93px;
    font-weight: normal;
}

.fancybox-container .module-person_title-text {
    font-size: 16px;
    display: block;
    font-weight: normal;
    color: #44464b;
    margin-top: 10px;
}

.fancybox-container .module-person_description-container {
    margin-top: 20px;
}

.fancybox-container .module-person_description {
    display: block;
}

.module-person-accordion .module-person_name-container {
    padding: 15px 50px 15px 25px;
    margin-bottom: 5px;
    background-color: #0254a6;
    color: #fff;
    cursor: pointer;
    position: relative;
}

.module-person-accordion .module-person_name-container h3 {
    font-weight: normal;
    margin: 0;
    color: #fcfcfc;
    font-size: 15px;
    font-family: "Open Sans";
}

.module-person-accordion .module-person_name-container h3:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.module-person-accordion .module_item {
    padding: 0;
    border: 0 none;
}

.module-person-accordion .module_item.js--active h3:before {
    content: "\edba";
}

.module-person-accordion .module-person_name {
    margin-right: 10px;
}

.module-person-accordion .module-person_title {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_description-container {
    padding: 25px;
}

.module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 15px 0;
}

@media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_photo-container {
        float: none;
        margin: 0 auto 15px auto;
        text-align: center;
    }
}

.module-person-accordion .module-person_photo-container img {
    display: block;
    margin: auto;
    border-radius: 8px;
}

.module-person-accordion .module-person_description>*:first-child {
    margin-top: 0;
}

.module-person-accordion .module-person_res-photo-container>span {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_res-photo-container>span {
        display: block;
        margin: 0 0 10px 0;
    }
}

.module-person-details {
    display: inline-block;
    width: 100%;
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details_description-container,
.module-person-details_name-container {
    width: 66.66666667%;
    float: right;
}

.module-person-details_photo-container {
    width: 33.333%;
    padding-right: 20px;
    float: left;
}

.module-person-details_photo-container img {
    border-radius: 8px;
    width: 100%;
    max-width: 370px;
}

@media only screen and (max-width: 768px) {
    .module-person-details_description-container, 
    .module-person-details_name-container,
    .module-person-details_photo-container {
        width: 100%; 
        padding-right: 0; 
    }
}

.module-person-details_name {
    color: #ffa500;
    font-size: 32px;
}

.module-person-details_title-text {
    display: block;
    color: #0080ff;
    font-size: 20px;
    padding-bottom: 20px;
}

.module-person-details_button {
    line-height: 24px;
    background-color: #f0f3f5;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    text-align: right;
    padding: 5px 25px;
    position: absolute;
    left: 0;
    width: 223px;
    font-weight: 700;
    margin-top: -45px;
    cursor: pointer;
}

.module-person-details_button i {
    font-size: 22px;
    position: absolute;
    right: 70px;
    transform: rotate(-90deg);
}

.module-presentation .module_body {
    display: none;
}


/*------ Q4 Preview Toolbar ------*/

body.PreviewBody {
    margin: 0;
    background-position: 0;
}

body.PreviewBody .PreviewToolBar {
    position: fixed;
    top: 100%;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    background: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    transform: translate(0, -100%);
    font-size: 24px;
    font-size: 2.4rem;
    cursor: pointer;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
    content: "\ed6d";
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: inline-block;
    vertical-align: middle;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 15px;
    line-height: 50px;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
    float: none;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
    content: "Select Preview Type:";
}

body.PreviewBody .PreviewToolBar .PreviewDateControls {
    float: right;
}

body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    content: "Select Preview Date:";
}

body.PreviewBody .PreviewToolBar img {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="radio"],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    display: inline-block;
    margin-right: 5px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    vertical-align: baseline;
}

body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
}

body.PreviewBody .PreviewToolBar label+input[type="radio"] {
    margin-left: 15px;
}

body.PreviewBody .PreviewToolBar input[type="text"] {
    min-width: 110px;
}

body.PreviewBody .PreviewToolBar select {
    padding: 15px 35px 15px 20px;
    background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #006fba;
    color: #fff !important;
}

@media only screen and (max-width: 1024px) {
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
    body.PreviewBody .PreviewToolBar .PreviewDateControls {
        display: block;
        float: none;
        margin-bottom: 15px;
    }
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
    body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    body.PreviewBody .PreviewToolBar input[type="radio"],
    body.PreviewBody .PreviewToolBar label,
    body.PreviewBody .PreviewToolBar input[type="text"],
    body.PreviewBody .PreviewToolBar select,
    body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
}


/*-------- Search Modules --------*/

.module-search {
    position: relative;
    text-align: right;
}

.module-search_input[type="text"] {
    display: inline-block;
    width: 90%;
    padding: 7px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-search_button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 0;
    background: transparent url("../design/svg/q4-icon_buttons.svg");
    background-size: 300%;
    font-size: 0;
    cursor: pointer;
}

.module-search-result_link {
    margin-bottom: 15px;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_url {
    display: none;
}


/*-------- SEC Module CSS --------*/

.module-sec .module_loader {
    margin-top: 10px;
}

.module-sec_pagination {
    text-align: right;
    margin-top: 15px !important;
}

.module-sec_pagination li {
    display: inline-block;
    padding: 0 5px;
    cursor: pointer;
    vertical-align: middle;
    color: #797979;
}

.module-sec_pagination li:hover {
    color: #ff9900;
}

.module-sec_pagination .pager-next,
.module-sec_pagination .pager-prev {
    cursor: pointer;
    color: #BEBEBE;
    border-radius: 50%;
    background-color: #fbfbfb;
    text-align: center;
    width: 25px;
    height: 25px;
    vertical-align: middle;
    padding: 1px;
    line-height: 23px;
}

.module-sec_pagination .pager-prev {
    padding-left: 0;
}

.module-sec_pagination .pager-next {
    padding-right: 0;
}

.module-sec_pagination .pager-next,
.module-sec_pagination .pager-prev {
    font-size: 0;
}

.module-sec_pagination .pager-next::before {
    content: "\edbe";
    font-family: 'q4-icons';
    font-size: 12px;
}

.module-sec_pagination .pager-prev::before {
    content: "\edc6";
    font-family: 'q4-icons';
    font-size: 12px;
}

.module-sec_pagination .pager-disabled {
    display: none;
}

.module-sec_pagination .pager-page {
    padding: 0 5px;
    cursor: pointer;
    color: #4a4a4a;
}

.module-sec_pagination .pager-active:hover,
.module-sec_pagination .pager-active {
    color: #ff9900;
    cursor: text;
}

.module-sec .module_options {
    margin-bottom: 30px;
}

.module-sec .module_header {
    display: block;
    background-color: #0254a6;
}

.module-sec .module_header-text {
    padding: 15px 25px;
    color: #fcfcfc;
    font-size: 15px;
    letter-spacing: -0.06px;
}

.module-sec .module_item:nth-child(2n) {
    background-color: rgba(221, 226, 235, 0.17);
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 15px 25px;
    font-size: 15px;
    color: #4a4a4a;
    letter-spacing: -0.06px;
}

@media only screen and (max-width: 768px) {
    .module-sec .module_header {
        display: none;
    }
    .module-sec .module_item {
        padding: 15px 0;
    }
    .module-sec .module_item .grid_col {
        padding: 0 15px;
    }
}

.module-sec_download-list-item {
    display: inline-block;
}

.module-sec_download-list .module_link {
    margin: 0;
}

.module-sec_download-list .module_link:before {
    font-size: 30px;
}

@media only screen and (max-width: 768px) {
    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 15px;
    }
}

.module-sec-details_date,
.module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec-details_download-list-item {
    display: inline-block;
}

.module-sec-details .module-details_title {
    font-weight: normal;
    color: #44464b;
    margin: 0;
    font-family: "Open Sans";
    margin-bottom: 10px;
    line-height: 28px;
    font-size: 16px;
}

.module-sec-details_download-list .module_link {
    margin: 0;
}

.module-sec .module_container--content > p:not(:empty) {
    margin-top: 20px;
}

.module-sec--16_filings .module_options .module-sec_type-select {
    display: none;
}

/*---- Accessibility Skip Link ---*/

.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
    top: 0;
    background: #006fba;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}

.module-slider .module_container--outer {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.module-slider .module_container--inner {
    display: table-cell;
    vertical-align: middle;
    height: 390px;
}

.module-slider .slick-slider {
    padding: 0 40px;
}

.module-slider .slick-slider .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
}

.module-slider .slick-arrow:before {
    font-size: 30px;
}

.module-slider .module_add-to-calendar-reveal {
    color: #fff;
}

.module-slider .module-slider_title h1 {
    margin: 0;
}

.module-slider .module_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.module-slider_description {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 10px;
}

.module-slider_description .module_date-time {
    font-size: inherit;
}

.module-slider_description p {
    margin: 10px 0;
}

.module-slider_description p:first-child {
    margin-top: 0;
    margin-bottom: 10px;
}

.module-slider_description .module_links {
    margin-top: 10px;
    margin-bottom: 0;
}


/*------ Stock Chart Widget ------*/

.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #0254a6;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #0254a6;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #0254a6;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #0254a6;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(0, 111, 186, 0.6);
}

.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f2f2f2;
    cursor: ew-resize;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: #0254a6;
}

.module-stock-chart .highcharts-navigator-handle-right path,
.module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #0254a6;
    stroke: #0254a6;
}

.module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
}

.module-stock-chart .highcharts-button rect,
.module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
}

.module-stock-chart .highcharts-button text,
.module-stock-chart .highcharts-input-group text {
    fill: #333333;
}

.module-stock-chart .highcharts-container>svg>.highcharts-button {
    display: none;
}


/*------ Stock Header Module -----*/

.module-stock-header--desktop .module_container--inner {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 9;
}

.module-stock-header .module_container--content {
    display: inline-block;
    border-radius: 8px;
    background: -webkit-linear-gradient(to right, #009fe8 0%, #0066cc 100%);
    background: linear-gradient(to right, #009fe8 0%, #0066cc 100%);
    padding: 20px;
    width: 100%;
    color: #fff;
}
.module-header-nav .module-stock-header .module_container--content {
    background: transparent;
    text-align: center;
    padding: 20px 30px;
}
.module-stock-header--desktop .module_container--content {
    max-width: 410px;
}

.module-stock-header--desktop .module_title {
    font-family: "Trebuchet MS";
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1.03px;
    margin: 0;
    margin-bottom: 40px;
    color: #fcfcfc;
}

.module-stock-header--desktop .module_title span {
    font-family: "Trebuchet MS";
    font-size: 52px;
    font-weight: 400;
    line-height: 66px;
    letter-spacing: -0.19px;
    text-transform: none;
    display: block;
    margin-top: 10px;
}

.module-stock-header--mobile {
    display: none;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .module-stock-header--desktop {
        display: none;
    }
    .module-stock-header--mobile {
        display: block;
    }
}

.module-stock-header_description1 {
    font-size: 18px;
    display: block;
    opacity: 0.8;
    margin-bottom: 10px
}

.module-stock-header_stock-price {
    display: inline-block;
    font-size: 64px;
    line-height: 44px;
    letter-spacing: 3.07px;
}

.module-stock-header_stock-price i {
    line-height: 1;
    letter-spacing: 0;
    position: relative;
    top: 8px;
    left: -20px;
    width: 40px;
    font-size: 0;
}

.module-stock-header_stock-price.module-stock-header_down i {
    transform: rotateX(180deg);
}

.module-stock-header_change {
    display: inline-block;
    opacity: 0.8;
}

.module-stock-header_change span {
    display: block;
    font-size: 16px;
    line-height: 26px;
}

.module-stock-header_cols {
    margin: 15px 0;
    font-size: 16px;
    display: block;
    opacity: 0.8;
}

.module-stock-header_volume {
    display: inline-block;
}

.module-stock-header_high {
    padding-left: 40px;
    display: inline-block;
}

.module-stock-header_low {
    padding-left: 40px;
    display: inline-block;
}

.module-stock-header_volume span,
.module-stock-header_low span,
.module-stock-header_high span {
    display: block;
}

.module-stock-header_description3 {
    font-size: 11px;
    display: inline-block;
    opacity: 0.8;
    margin-right: 10px;
}

.module-stock-header_date {
    font-size: 11px;
    opacity: 0.8;
}

@media screen and (max-width: 480px) {
    .module-stock-header_stock-price {
        font-size: 46px;
        letter-spacing: 0;
    }
    .module-stock-header_stock-price i {
        top: 5px;
        left: -10px;
    }
    .module-stock-header_low,
    .module-stock-header_high {
        padding-left: 30px;
    }
    .module-stock-header_date {
        display: block;
    }
}

.module-stock-related .module_container--content {
    max-width: 500px;
    margin: auto;
}
.module-header-nav .module-stock-header .module_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.64;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 0;
    margin: 0 30px;
    border-bottom: 2px solid #0066cc;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
}
.module-header-nav .module-stock-header_description1 {
    vertical-align: top;
    font-size: 16px;
    display: inline-block;
    font-weight: 700;
    width: 50%;
    text-align: left;
}
.module-header-nav .module-stock-header_change {
    font-weight: 700;
    text-align: right;
    width: 50%;
    vertical-align: top;
}
.module-header-nav .module-stock-header_change span {
    display:inline;
}
.module-header-nav .module-stock-header_stock-price {
    font-size:75px;
    margin-top: 5px;
}
.module-header-nav .module-stock-header_stock-price i {
    font-size: 0;
    width: auto;
    left: -10px;
}
.module-header-nav .module-stock-header_stock-price i:before {
    font-size: 40px;
}
.module-header-nav .module-stock-header_volume span, 
.module-header-nav .module-stock-header_low span, 
.module-header-nav .module-stock-header_high span {
    font-size: 14px;
}
.module-header-nav .module-stock-header_volume-label, 
.module-header-nav .module-stock-header_low-label, 
.module-header-nav .module-stock-header_high-label {
    font-weight: 700;
}
.module-header-nav .module-stock-header_description3,
.module-header-nav .module-stock-header_date {
    font-size: 13px;
    display: block;
}
/*------ Stock Quote Module ------*/

.module-stock-historical .module_options {
    margin-bottom: 30px;
}

.module-stock-historical .module_options-label {
    display: none;
}

.module-stock-historical .button {
    min-width: 118px;
}

@media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
}

@media only screen and (max-width: 535px) {
    .module-stock-historical .module_options-label,
    .module-stock-historical .module_options-select,
    .module-stock-historical .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module-stock .stock-historical-range .module_options>*:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_lookup-title {
    padding: 15px 25px;
    background-color: #0254a6;
    margin: 0;
    font-weight: normal;
    color: #fcfcfc;
    font-size: 15px;
    letter-spacing: -0.06px;
}

@media only screen and (max-width: 768px) {
    .module-stock_lookup-title {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }
}

.module-stock_value {
    text-align: right;
}

.module-stock_label>span,
.module-stock_value>span {
    display: block;
    padding: 15px 20px;
}

@media only screen and (max-width: 768px) {
    .module-stock_label>span,
    .module-stock_value>span {
        padding: 15px;
    }
    .module-stock .background--light {
        background: none;
    }
    .module-stock_value:nth-child(4n+4),
    .module-stock_label:nth-child(4n+3) {
        background: rgba(221, 226, 235, 0.17);
    }
}

.module-stock_up {
    color: #23a217;
}

.module-stock_down {
    color: #b72121;
}

.module-stock_value .module-stock_price:before,
.module-stock_value .module-stock_high:before,
.module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before,
.module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before,
.module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
    content: "$";
}

.module-stock_date {
    margin-top: 25px;
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
    text-align: right;
}

.module-stock_date-text {
    margin-right: 15px;
}

.module-stock .module_container--content > p:not(:empty) {
    margin-top: 20px;
    margin-bottom: 0;
}

/*- MailingList Subscribe Module -*/

.pane--content .module-subscribe .module_container--inner {
    position: relative;
    padding-bottom: 45px;
}

.pane--content .module_confirmation-container .module_container--inner {
    padding-bottom: 0;
}

.pane--content .module-unsubscribe .module_actions .button,
.pane--content .module-subscribe .module_actions .button {
    background: -webkit-linear-gradient(251.24deg,#02cc32 0%,#429321 100%);
    background: linear-gradient(251.24deg,#02cc32 0%,#429321 100%);
    min-width: auto;
}

.pane--content .module-subscribe .module_actions {
    position: absolute;
    bottom: 0;
    left: 0;
}

.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.module-subscribe_form {
    font-size: 0;
}

.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}

.module-unsubscribe_table label,
.module-unsubscribe_input .module_required,
.module-subscribe_form tr:nth-child(2n+1) .module_required {
    display: none !important;
}

.module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}

.module-subscribe_form tr.module-subscribe_notes-text,
.module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .module-subscribe_form tr {
        width: 100%;
    }
    .module-subscribe_form tr:nth-child(even) {
        padding-left: 0;
    }
    .module-subscribe_form tr:nth-child(odd) {
        padding-right: 0;
    }
}

.module-subscribe_form td {
    display: block;
}

.module-subscribe_form label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 10px;
}

.module-subscribe .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}


/* MailingList Unsubscribe Module */

.module-unsubscribe_table {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}

.module-unsubscribe_table td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table td {
        padding-right: 0;
    }
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 5px;
}


/*==================================
 ----------- LAYOUT CSS -----------
==================================*/

.layout {
    padding-top: 77px;
}

.layout--iframe {
    padding: 0 !important;
}

.layout_footer {
    background: #44464b;
}

/*------- iframe layout CSS ------*/

.layout--iframe .pane--content .module {
    padding: 0;
}

.layout--iframe .pane--content .module-page-title {
    display: none;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
    padding: 0;
}


/*==================================
 ------------ BLANK CSS -----------
==================================*/

/*--------- Pane Specific --------*/

.pane--header {
    top: 0;
    height: 77px;
    position: fixed;
    z-index: 150;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
    -moz-box-shadow: 0 5px 15px rgba(0,0,0,.5);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    width: 100%;
    background: #fff;
}

.pane--header .pane_inner {
    position: relative;
    padding: 0px 15px 0px 15px;
}

.pane--header .module-logo {
    display: inline-block;
}

.pane--header .module-logo img {
    width: 170px;
    margin: 20px;
}

.pane--header .module,
.pane--header .nav {
    vertical-align: baseline;
}

.pane--header .layout_toggle {
    display: none;
    font-size: 36px;
    font-size: 3.6rem;
    text-align: right;
}

.pane--header .layout_toggle i:focus {
    outline: none;
}

.js--mobile .pane--header .layout_toggle i:before {
    content: "\ed6d";
}

@media only screen and (max-width: 991px) {
    .pane--header .module {
        vertical-align: middle;
    }
    .pane--header .module-logo img {
        margin-bottom: 0;
    }
    .pane--header .layout_toggle {
        display: inline-block;
        float: right;
        color: #0066cb;
        font-size: 26px;
        margin: 20px 20px;
    }
    .pane--header .layout_toggle i {
        cursor: pointer;
    }
}

.pane--content .module {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pane--content .module_container--outer {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.pane--content .module--thin {
    padding-top: 35px;
    padding-bottom: 35px;
}

.pane--content .module--thin-top {
    padding-top: 35px;
}

.pane--content .module--thin-bottom {
    padding-bottom: 35px;
}

.pane--content .module--thick {
    padding-top: 105px;
    padding-bottom: 105px;
}

.pane--content .module--thick-top {
    padding-top: 105px;
}

.pane--content .module--thick-bottom {
    padding-bottom: 105px;
}

.pane--content .module--no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.pane--content .module--no-padding-top {
    padding-top: 0;
}

.pane--content .module--no-padding-bottom {
    padding-bottom: 0;
}

.pane--content .module-sitemap {
    padding-bottom: 0;
}

.pane--content .module--title-center .module_title{
    text-align: center;
}

.pane--right {
    background: #fafcfd;
}

.pane--right .pane_inner {
    max-width: 1170px;
    padding: 40px 15px 50px;
    margin: auto;
}

.pane--footer {
    background: #363738;
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.pane--footer::before {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background: -webkit-linear-gradient(179.71deg,rgba(23,23,23,.9) 0%,rgba(23,23,23,.9) 54.92%,rgba(21,20,20,.86) 81.71%,rgba(0,0,0,.9) 100%),url(../design/footer-bg.jpg);
    background: linear-gradient(179.71deg,rgba(23,23,23,.9) 0%,rgba(23,23,23,.9) 54.92%,rgba(21,20,20,.86) 81.71%,rgba(0,0,0,.9) 100%),url(../design/footer-bg.jpg);
    border-top-right-radius: 12% 140px;
    border-bottom-right-radius: 12% 140px;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0,0,0,.05);
    -moz-box-shadow: 0 1px 6px 0 rgba(0,0,0,.05);
    box-shadow: 0 1px 6px 0 rgba(0,0,0,.05);
    background-position: center;
}

.pane--footer .pane_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.pane--footer .module_title {
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #f90;
}

.pane--footer .module_error-container ul {
    margin: 0;
}

.pane--footer .module_error-container p {
    display: none;
}

.pane--footer .module_introduction {
    display: none;
}

.pane--footer .module-links {
    text-transform: uppercase;
}

.pane--footer .module-links li {
    line-height: 1.4;
}

.pane--footer .module-subscribe {
    padding: 40px 0 40px 40px;
    vertical-align: middle;
}

.pane--footer .module_confirmation-container {
    width: 50%;
    display: inline-block;
    float: left;
}

.pane--footer .module-subscribe_email label,
.pane--footer .module-subscribe_list-header,
.pane--footer .module-subscribe_email .module_required {
    display: none;
}

.pane--footer .module-subscribe_form tbody {
    display: block;
}

.pane--footer .module-subscribe_form tr {
    width: 100%;
    margin: 0;
}

.pane--footer .module-subscribe_mailing-list {
    margin: 20px 0 10px;
}

.pane--footer .module-subscribe_list>td {
    padding: 0;
}

.pane--footer .module-subscribe_list>td tr {
    display: inline-block;
    font-size: 13px;
    color: #fcfcfc;
    font-family: "Trebuchet MS";
    float: left;
}

.pane--footer .module-subscribe_list > td tr:not(:last-of-type) {
    margin-right: 30px;
}

.pane--footer .module-subscribe p {
    padding-right: 35px;
    line-height: 1.5;
}

.pane--footer .module-subscribe input[type="checkbox"]+label:before {
    border-color: #fff;
}

.pane--footer .module_input[type="text"] {
    width: calc(100% - 130px);
    width: -webkit-calc(100% - 130px);
    width: -ms-calc(100% - 130px);
    width: -o-calc(100% - 130px);
    display: inline-block;
    background: none;
    color: #ffffff;
    border-bottom: 1px solid #fafcfd;
    padding: 5px 0 18px;
    vertical-align: bottom;
    margin-right: 5px;
    float: left;
}

.pane--footer .module_input[type="text"]::-webkit-input-placeholder {
    color: white;
}

.pane--footer .module_input[type="text"]::-moz-placeholder {
    color: white;
}

.pane--footer .module_input[type="text"]::-ms-input-placeholder {
    color: white;
}

.pane--footer .module_actions {
    display: inline-block;
    float: left;
    margin: 0;
}

.pane--footer .button {
    border-radius: 100px;
    background-color: rgba(153,153,153,.1);
    background: -webkit-linear-gradient(251.24deg,#02cc32 0%,#429321 100%);
    background: linear-gradient(251.24deg,#02cc32 0%,#429321 100%);
    color: #fff;
    padding: 5px 20px;
    height: 45px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    border: 0;
    margin-top: 0;
    margin-bottom: -5px;
    min-width: auto;
}

.pane--footer .button:hover {
    color: #333;
    text-decoration: none;
}

.module_unsubscribe-button {
    display: none;
}

.pane--footer .module_unsubscribe-button {
    display: inline-block;
    opacity: 0.81;
    color: #fcfcfc;
    font-family: "Trebuchet MS";
    font-size: 13px;
}

.pane--footer .module_unsubscribe-button:hover {
    color: #ff9900;
    opacity: 1;
}
.module-email-title h2{
    margin: 0;
}
@media only screen and (max-width: 768px) {
    .module-email-title h2{
        margin-top: 20px;
    }
    .pane--footer .pane_inner {
        padding: 0;
    }
    .pane--footer .module-subscribe {
        padding: 20px 15px 100px 15px;
        position: relative;
    }
    .pane--footer .module_confirmation-container {
        width: 100%;
        padding-bottom: 30px;
    }
    .pane--footer .module_actions {
        position: absolute;
        bottom: 40px;
        left: 15px;
    }
    .pane--footer .module_input[type="text"] {
        padding-bottom: 10px;
        width: 100%;
        margin: 0;
    }
    .pane--footer::before {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .pane--footer .module-subscribe_list > td tr {
        display: block;
        float: none;
        margin: 0 !important;
    }
}


/*--------- Page Specific --------*/

.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}


/*-------- Module Specific -------*/

.module-social .module_tabs {
    margin-bottom: 10px;
}

.module-social .module_tabs .button {
    display: block;
}

.module-social .module_tabs .button.js--selected {
    background: #006fba;
    color: #fff;
}

.module-social .module_tab {
    display: inline-block;
    padding-right: 5px;
    padding-bottom: 5px;
}

@media (max-width: 640px) {
    .module-social .module_tab {
        width: 50%;
    }
}

.module-social .module_container--content {
    padding: 0;
}

@media (max-width: 767px) {
    .module-social .module_container--content {
        padding: 0 20px;
        margin: 0;
    }
}

.module-social .module_container--content .slick-arrow {
    color: #006fba;
}

.module-social .module_headline-link {
    color: #006fba;
}

.module-social .module_item.grid_col {
    padding: 0 0 0 20px;
    margin: 15px 0;
}

@media (max-width: 767px) {
    .module-social .module_item.grid_col {
        padding-left: 0;
    }
}

.module-social .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
}

.module-social .module_item+.module_item {
    border-top: none;
}

.module-social .module_date {
    text-align: left;
    margin-bottom: 15px;
}

.module-social .module_headline {
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

.module-social .module_icon {
    float: right;
    margin-left: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    font-size: 2rem;
}

.module-social .module_icon .q4-icon_twitter {
    color: #1da1f2;
}

.module-social .module_icon .q4-icon_facebook {
    color: #365899;
}

.module-social .module_icon .q4-icon_youtube {
    color: #cc181e;
}


/*# sourceMappingURL=global.css.map */


/****************START HEADER***********************/


/*start mega menu*/

.module-header-nav {
    float: right;
}

.main-nav a:hover {
    text-decoration: none;
}

.main-nav .main-nav_item-wrap {
    float: left;
    font-size: 14px;
    color: #44464b;
}

.main-nav .main-nav_item-wrap a:hover {
    color: #0066cb;
}

.main-nav_item-wrap-title {
    position: relative;
    display: block;
    transition: all 300ms ease-in-out;
    padding: 10px 18.2px;
    cursor: pointer;
    color: #44464b;
    padding: 27.2px 20px 30.2px;
}

.main-nav .main-nav_item-wrap-title:before {
    content: '';
    position: absolute;
    display: inline-block;
    height: 1px;
    width: 0px;
    left: 0;
    bottom: 2px;
    background-color: #0066cb;
}

.main-nav .main-nav_item-wrap-title:hover,
.main-nav .main-nav_item-wrap.js--active {
    background-color: #f7f7f7;
}

.main-nav .main-nav_item-wrap-title:hover .main-nav_item-wrap-title,
.main-nav .main-nav_item-wrap.js--active .main-nav_item-wrap-title {
    color: #0066cb;
    font-weight: 700;
}

.main-nav .main-nav_item-wrap.js--active:before {
    width: 100%;
}

.main-nav_item-wrap.js--active .main-nav_item-wrap-title:before {
    width: 100%;
}


.main-nav .main-nav_item-wrap:nth-child(-n+34)>.main-nav_item-wrap-title {
    padding-right: 37.6px;
}

.main-nav .main-nav_item-wrap:nth-child(-n+4)>.main-nav_item-wrap-title:after,
.main-nav .main-nav_item-wrap:nth-child(6)>.main-nav_item-wrap-title:after {
    background-repeat: no-repeat;
    background-position: center;
    height: 8px;
    width: 8px;
    display: inline-block;
    position: absolute;
    right: 21px;
    top: 32px;
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: 700;
    font-variant: normal;
    text-transform: none;
    content: "\edc2";
    color: #0066cb;
    font-size: 8px;
}

.main-nav .main-nav_item-wrap .main-nav_item-wrap_inner {
    position: fixed;
    width: 100%;
    left: 0;
    height: auto;
    top: -800%;
    z-index: -1;
    transition: all 300ms ease-in-out;
}

.main-nav .main-nav_item-wrap .main-nav_item-wrap_inner.js--show {
    top: 72px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 999;
    margin: 2px 0 0;
    border-top: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    -moz-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.main-nav .main-nav_item-wrap p {
    font-family: inherit;
    line-height: 20px;
    font-size: 14px;
}

.main-nav_item-wrap.js--active .main-nav_item-wrap_inner {
    color: #4c4b4b;
}

.main-nav_item-wrap .main-nav-title,
.main-nav_item-secondary .main-nav_secondary-title {
    color: #ff9900;
    cursor: default;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 8px;
}

.main-nav_item-wrap .main-nav-item {
    cursor: pointer;
    padding: 11px 0px;
    display: block;
    color: #4c4b4b;
    line-height: 1.36;
}

@media screen and (min-width: 993px) {
    .main-nav_item-wrap .main-nav-item {
        padding: 8px 0px;
        display: inline-block;
        float: left;
        clear: left;
    }
    .main-nav_item-wrap .main-nav-title,
    .main-nav_item-secondary .main-nav_secondary-title {
        margin-top: 12px;
        margin-bottom: 10px;
        font-weight: 700;
    }
    .main-nav_item-wrap .main-nav-item {
        transition: all 200ms ease-in-out;
    }
    .main-nav_item-wrap.one .main-nav-item:hover,
    .main-nav_item-wrap.one .main-nav-item.js--active {
        color: #0066cb;
        font-weight: 700;
    }
}

.main-nav_item-wrap .main-nav-item:hover {
    color: #0066cb;
}

.main-nav .main-nav_title {
    color: #0066cb;
    text-transform: uppercase;
    line-height: 23px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.main-nav .main-nav_secondary-title {
    position: relative;
    margin-top: 20px;
    margin-bottom: 18px;
}

.main-nav .main-nav_secondary-title:before {
    content: '';
    position: absolute;
    top: -24px;
    width: 100%;
    height: 1px;
    background-color: #eee;
}

.main-nav_item-secondary .main-nav_link {
    display: inline-block;
    margin: 22px 0 25px 0;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    color: #0066cb;
    font-size: 12px;
}

.main-nav .main-nav_links {
    display: table;
    margin-bottom: 15px;
    color: #34363a;
    transition: all 300ms ease-in-out;
}

.main-nav_item-secondary .main-nav_link:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -23px;
    -webkit-transform: translateY(-35%);
    -ms-transform: translateY(-35%);
    -o-transform: translateY(-35%);
    transform: translateY(-35%);
    background-image: url('../design/arrow-right.svg');
    background-repeat: no-repeat;
    height: 12px;
    width: 15px;
    transition: all 300ms ease-in-out;
}

.main-nav_item-wrap .main-nav_item-wrap_inner .menu-banner-subtitle:hover {
    color: #23527c;
}

.main-nav .main-nav_item-wrap.two .main-nav_title,
.main-nav .main-nav_item-wrap.three .main-nav_title {
    max-width: 100%;
}

.main-nav .menu-banner-subtitle {
    color: #0066cb;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    margin: 10px 0;
}

.main-nav_item-wrap_inner>* {
    display: table-cell;
    vertical-align: top;
}

.main-nav_item-third {
    vertical-align: bottom;
}

.main-nav_item-wrap_inner .main-nav_item-main {
    width: 33.333%;
    padding: 41px 35px 28px 36px;
    background-color: #f7f7f7;
}

.main-nav_item-wrap_inner .main-nav_item-secondary {
    width: 33.333%;
    padding: 42px 35px 20px 36px;
    background-color: #fff;
    display: none;
}

.main-nav_item-secondary .main-nav_title {
    margin-top: 8px;
    margin-bottom: 15px;
}

.main-nav_item-wrap_inner .main-nav_item-secondary.js--show {
    display: table-cell;
}

.main-nav_item-wrap_inner .main-nav_item-third, 
.main-nav_item-wrap_inner .main-nav_item-sixth {
    width: 33.37%;
    padding: 40px 35px 25px 35px;
    background-image: url('../design/image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
/*     background-color: #f90; */
    background-color: #6b6b6b;
    position: relative;
    left: 0;
}

.main-nav_item-wrap.three .main-nav_item-third,
.main-nav_item-wrap.two .main-nav_item-third {
    background-image: url('../design/image2.png');
/*     background-color: #f90; */
    background-position: center;
    width: 100vw;
}

.main-nav .main-nav_item-third_inner .main-nav_title,
.main-nav .main-nav_item-sixth_inner .main-nav_title {
    color: #fff;
    text-transform: none;
    font-family: "Trebuchet MS";
    font-size: 32px;
    font-weight: bold;
    line-height: 45px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.main-nav .main-nav_item-third_inner .main-nav_subtitle,
.main-nav .main-nav_item-sixth_inner .main-nav_subtitle {
    font-weight: 700;
    line-height: 20px;
    margin: 10px 0;
    display: inline-block;
}

.main-nav .main-nav_item-third_inner .main-nav_subtitle:hover,
.main-nav .main-nav_item-sixth_inner .main-nav_subtitle:hover {
    color: #23527c;
}

.main-nav .mobile-only {
    display: none;
}

@media all and (min-width:992px) {
    .main-nav-back_to_menu,
    .js--show.module-header-nav {
        display: none;
    }
    .main-nav .main-nav_item-wrap.four .main-nav_item-wrap_inner {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
    .main-nav .main-nav_item-wrap.four .main-nav_item-wrap-title.desktop-only:after {
        /*display: none;*/
    }

    .main-nav_item-wrap.four .main-nav_item-main {
        position: relative;
        width: -ms-calc(100% - 360px);
        width: -webkit-calc(100% - 360px);
        width: -moz-calc(100% - 360px);
        width: calc(100% - 360px);
        width: 100%;
        display: table-cell;
    }

    .main-nav_item-wrap.four .main-nav_item-secondary {
        display: table-cell;
        width: 360px;
        padding: 0;
        background: #1975D1;
        margin: 0;
        vertical-align: bottom;
        position: relative;
    }
}

@media all and (max-width:1100px) {
    .main-nav_item-wrap-title {
        padding-left: 15px;
        padding-right: 15px !important;
    }
    .main-nav .main-nav_item-wrap:nth-child(-n+4) > .main-nav_item-wrap-title::after {
        right: 3px;
    }
}

@media all and (max-width:991px) {
    .main-nav .desktop-only {
        display: none;
    }
    .main-nav .mobile-only {
        display: block;
    }
    .module-header-nav {
        display: none;
    }
    .js--mobile .module-header-nav {
        display: block;
        position: fixed;
        background: #f7f7f7;
        width: 100%;
        left: 0;
        top: 77px;
        padding: 20px 0;
        overflow-y: scroll;
        bottom: 0;
        border-top: 1px solid rgba(0,0,0,.15);
    }
    .main-nav .main-nav_item-wrap a:hover {
        color: #44464b;
    }
    .main-nav .main-nav_item-wrap-title::before {
        display: none;
    }
    .main-nav .main-nav_item-wrap {
        display: block;
        width: 100%;
    }
    .main-nav .main-nav_item-wrap.js--active .main-nav_item-wrap-title {
        color: #44464b;
    }
    .main-nav .main-nav_item-wrap.js--active {
        background: none !important;
    }
    .main-nav_item-wrap-title {
        padding: 0 30px;
        width: 100%;
        display: block;
        text-align: left;
        line-height: 41px;
        outline: none;
    }
    .main-nav_item-wrap_inner .main-nav_item-secondary {
        display: none !important; 
    }
    .main-nav .main-nav_item-wrap:nth-child(-n+4) > .main-nav_item-wrap-title::after,
    .main-nav_item-third {
        display: none;
    }
    .main-nav_item-third.mobile-only {
        height: 400px;
        display: block !important;
        width: 100%;
    }
    .main-nav_item-third_inner {
        line-height: 35px;
        top: 50%;
        position: absolute;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
    .main-nav .main-nav_item-wrap-title:hover, 
    .main-nav .main-nav_item-wrap.js--active {
        background: #f1f1f1;
    }
    .main-nav .main-nav_item-wrap .main-nav_item-wrap_inner {
        top: 0;
        margin: 0 !important;
        opacity: 0;
        display: none;
    }
    .main-nav .main-nav_item-wrap .main-nav_item-wrap_inner.js--show {
        top: 0;
        opacity: 1;
        overflow-y: scroll;
        position: absolute;
        display: block;
        border: 0;
        background: #f7f7f7;
    }
    .main-nav_item-wrap_inner .main-nav_item-main {
        padding: 0;
        display: inline-block;
        width: 100%;
    }
    .main-nav-back_to_menu {
        display: block;
        padding: 10px 30px;
        border-bottom: 1px solid rgba(0,0,0,.1);
        margin-top: 10px;
        color: #0066cb;
    }
    .main-nav-back_to_menu span {
        font-size: 8px;
        margin-right: 10px;
        font-weight: 700;
        vertical-align: middle;
    }
    .main-nav_item-wrap .main-nav-item {
        padding: 0 30px;
        width: 100%;
        display: block;
        text-align: left;
        line-height: 41px;
        outline: none;
    }
    .main-nav_item-wrap .main-nav-item:hover {
        background: #f1f1f1;
    }
    .main-nav_item-wrap .main-nav-title, 
    .main-nav_item-secondary .main-nav_secondary-title {
        padding: 0 30px;
        margin-top: 20px;
    }
    .main-nav_item-wrap.four.mobile-only {
        display: block !important;
    }
}

/*end mega menu*/

/*sart ir mobile menu*/

.nav--main {
    display: inline-block;
    width: 100%;
}

@media all and (max-width:991px) {
    .nav--main {
        display: none;
    }
    .js--mobile .nav--main {
        display: block;
    }
}

.nav--main a {
    padding: 10px 30px;
    width: 100%;
    display: block;
    text-align: left;
    line-height: normal;
    outline: none;
    color: #44464b;
    font-size: 14px;
}

.nav--main a:hover {
    background: #f1f1f1;
}

.nav--main li.has-children > a::after {
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: 700;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\edc2";
    color: #0066cb;
    font-size: 8px;
    margin-left: 10px;
    position: absolute;
    margin-top: 6px;
}

.nav--main  .main-nav-title {
    color: #ff9900;
    cursor: default;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 8px;
    padding: 0 30px;
    margin-top: 20px;
}

.nav--main .has-children ul {
    display: none;
}

.nav--main .has-children.js--expanded > ul {
    display: block;
}

.nav--main .level2 li a {
    color: #999;
}

.nav--main li.selected >a {
    color: #0066cb;
}

.nav--main .has-children.js--expanded > a {
    color: #ff9900;
    background: #f1f1f1;
}

@media all and (min-width:992px) {
    .nav--main {
        display: none;
        opacity: 1;
        width: 100%;
        left: 0;
        position: absolute;
        padding: 41px 35px 28px 36px;
        background-color: #f7f7f7;
    }
    .nav--main .main-nav-title {
        margin: 0;
        padding: 0;
        margin-top: 12px;
        margin-bottom: 10px;
        font-weight: 700;
        color: #ff9900;
        cursor: default;
        text-transform: uppercase;
        font-size: 12px;
        line-height: normal;
    }
    .nav--main a {
        padding: 8px 0px;
        display: inline-block;
        float: left;
        clear: left;
        color: #4c4b4b;
        line-height: 1.36;
    }
}

/*end ir mobile menu*/

/*start investor menu*/

.pane--navigation {
    -webkit-box-shadow: 0 3px 5px 0 #e4e4e4;
    -moz-box-shadow: 0 3px 5px 0 #e4e4e4;
    box-shadow: 0 3px 5px 0 #e4e4e4;
    text-align: center;
}

.pane--navigation .pane_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.nav--secondary .level1 >li {
    display: inline-block;
    position: relative;
}

.nav--secondary a {
    color: #999;
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    font-weight: 400;
    display: inline-block;
}

.nav--secondary li.has-children:hover >a,
.nav--secondary a:hover {
    color: #f90;
    text-decoration: none;
}

.nav--secondary li.has-children >a:after {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 33px;
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: 700;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\edc2";
    color: #0066cb;
    font-size: 8px;
}

.nav--secondary li.selected > a,
.nav--secondary li.expanded > a {
    color: #0066cb;
}

.nav--secondary li.has-children ul {
    display: none;
    position: absolute;
    text-align: left;
    border: 1px solid #dde2eb;
    border-radius: 4px;
    background-color: #fcfcfc;
    -webkit-box-shadow: -6px 3px 20px 0 #e4e4e4;
    -moz-box-shadow: -6px 3px 20px 0 #e4e4e4;
    box-shadow: -6px 3px 20px 0 #e4e4e4;
    z-index: 9;
    top: 100%;
    left: 25px;
    min-width: 250px;
    padding: 20px 0
}

.nav--secondary li.has-children.sfHover > ul {
    display: block;
}

.pane--navigation .level1 {
    display: table;
    width: 100%;
}

.pane--navigation .level1 >li {
    display: table-cell;
    vertical-align: top;
}

.nav--secondary .level1 >li >a {
    padding: 28px 25px;
}

.nav--secondary .level2 >li >a {
    padding: 10px 30px;
    white-space: nowrap;
}

.nav--secondary .level2 li.selected >a {
    color: #0066cb;
}

.nav--secondary li.has-children:hover >ul {
    display: block;
}
@media all and (max-width:1085px) {
    .nav--secondary li.has-children ul {
        left: 20px;
    }
    .pane--navigation .level1 >li >a{
        padding: 28px 20px;
    }
    .nav--secondary li.has-children >a:after {
        right: 10px;
    }
}
@media all and (max-width:991px){
    .main-nav_item-main--investors > .main-nav-title{
        display: none;
    }
}
.pane--navigation .module-toggle {
    display: none;
    text-align: center;
}

.pane--navigation .module-toggle_button {
    display: inline-block;
    color: #0066cb;
    margin: 15px;
    cursor: pointer;
}

.pane--navigation .module-toggle_button::after {
    position: absolute;
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: 700;
    font-variant: normal;
    text-transform: none;
    content: "\edc2";
    font-size: 8px;
    margin-left: 10px;
    margin-top: 4px;
}

.pane--navigation .module-toggle_button i {
    font-size: 22px;
    vertical-align: bottom;
}

@media all and (max-width:991px) {
    .pane--navigation .pane_inner {
        padding: 0;
    }
    .pane--navigation .nav--secondary {
        display: none;
    }
    .pane--navigation.js--mobile .nav--secondary {
        display: block;
        background: #f7f7f7;
        width: 100%;
        left: 0;
        padding: 20px 0;
        overflow-y: scroll;
        border-top: 1px solid rgba(0,0,0,.15);
    }
    .pane--navigation .module-toggle {
        /*display: block;*/
    }
    .pane--navigation .level1 > li {
        display: block;
    }
    .nav--secondary a {
        padding: 0 15px !important;
        width: 100%;
        display: block;
        text-align: center;
        line-height: 41px;
        color: #44464b;
        position: relative;
    }
    .nav--secondary li.selected > a {
        color: #0066cb !important;
    }
    .nav--secondary .level2 li a {
        color: #999 !important;
    }
    .nav--secondary li.has-children:hover > a, 
    .nav--secondary a:hover,
    .nav--secondary a:hover {
        color: #44464b;
        background: #f1f1f1;
    }
    .nav--secondary li.has-children ul {
        position: static;
        background: none;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    .nav--secondary li.has-children > a::after {
        right: auto;
        left: auto;
        content: "\edc2";
        color: #0066cb;
        font-size: 8px;
        margin-left: 10px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}
.nav--secondary {
    display: none;
}
@media all and (min-width:992px){
    .nav--secondary {
        display: block;
    }
    .nav--secondary .nav-secondary_title-expanded {
        font-size: 14px;
        text-transform: uppercase;
        line-height: 1.5;
        margin-bottom: 20px;
        color: #0066cc;
        font-weight: 700;
    }
    .nav--secondary a {
        color: #4c4b4b;
    }
    .nav--secondary .level2 >li >a {
        line-height:1.3;
        white-space: normal;
        text-align: left;
        vertical-align: top;
        padding: 0;
        font-size: 14px;
    }

    .nav--secondary .level1 >li {
        display: block;
        position: static;
        width: 40%;
    }

    .nav--secondary .level1 >li >a {
        padding: 10px 30px 10px 0;
        display: inline-block;
        text-align: left;
        position: relative;
        color: #4c4b4b;
        width: auto;
        display: block;
    }

    .nav--secondary li.has-children >a:after {
        top: 16px;
        right: auto;
        margin-left: 5px;
        content: "\edbe";
    }
    .nav--secondary .level1 > li.expanded > a,
    .nav--secondary .level1 > li.sfHover > a,
    .nav--secondary .level1 > li:hover > a {
        color: #0066cb;
        font-weight: 700;
    }

    .nav--secondary .level1 > li .level2 {
        display: none;
        left: 40%;
        vertical-align: top;
        border-radius: 0;
        box-shadow: none;
        top: 0;
        right: 0;
        bottom: 0;
        border: none;
        background: transparent;
        padding: 41px 35px 28px 36px;
        background: #fff;
    }
    .nav--secondary li.has-children.expanded >ul,
    .nav--secondary li.has-children.sfHover > ul,
    .nav--secondary li.has-children:hover >ul {
        display: inline-block;
    }
    .nav--secondary .level2 > li {
        display: inline-block;
        width: 50%;
        padding-right: 5px;
        padding-top: 5px;
        padding-bottom: 5px; 
    }
}

/*end investor menu*/

/****************END HEADER***********************/

/***************START FOOTER*********************/

.pane--footer2 {
    background-color: #44464b;
    padding-top: 60px;
    color: #fcfcfc;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .pane--footer2 {
        padding-top: 30px;
    }
}

.pane--footer2:after {
    content: '';
    height: 1px;
    width: 82%;
    margin-top: 20px;
    margin-bottom: 15px;
    border: 0;
    margin-left: 9%;
    margin-right: 9%;
    display: inline-block;
    background: #fcfcfc;
} 

.module-footer-boxes h5 {
    margin-top: 10px;
    text-transform: uppercase;
    color: #f90;
    margin-bottom: 20px;
    line-height: 1.1;
}

.module-footer-boxes_logo {
    padding: 0 15px !important;
}

.module-footer-boxes_logo img {
    height: 75px; 
}

.module-footer-boxes_links .grid_col {
    padding: 0 15px !important;
}

.module-footer-boxes_links li a {
    color: #fcfcfc;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.42857143;
}

.module-footer-boxes_links li {
    line-height: 1.42857143;
    margin-bottom: 10px;
    font-size: 12px;
}

.text-hiring {
    color: #44464b;
    margin-left: 10px;
    font-weight: 700;
    background-color: #f90;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    text-transform: uppercase;
    line-height: normal;
}

.module-footer-boxes_socials {
    padding: 0 15px !important;
}

.module-footer-boxes_socials li {
    display: inline-block;
}

.module-footer-boxes_socials li a {
    margin: 0 13px;
    color: #fcfcfc;
    font-size: 26px;
}

.module-footer-boxes_socials li:first-child a {
    margin-left: 0;
}

.pane--credits {
    background-color: #44464b;
    padding-bottom: 30px;
}

.copyright_left {
    padding-left: 15px;
    text-transform: uppercase;
    color: #fcfcfc;
    font-size: 12px;
    padding-top: 15px;
    padding-bottom: 30px;
    text-align: center;
    padding-right: 15px;
}

.copyright_right {
    font-size: 12px;
    padding-left: 15%;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 30px;
    padding-right: 15px;
    float: right;
}

.copyright_right ul {
    font-size: 12px;
    line-height: 1.42857143;
}

.copyright_right li {
    display: inline-block;
    font-size: 12px;
    line-height: 1.42857143;
}

.copyright_right li:last-of-type {
    border-left: 1px solid #fff;
    margin-left: 5px;
    padding-left: 5px;
}

.copyright_right li a {
    color: #fcfcfc;
    margin: 0 15px;
}

.copyright_right li:first-of-type a {
    margin: 0;
}

.copyright_right li a:focus {
    text-decoration: none !important;
}

.copyright .mobile-only {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .copyright_right {
        padding-left: 0;
        padding-bottom: 0;
        text-align: center;
    }
    .copyright_right li {
        display: block;
        margin: 0 0 15px 0;
    }
    .copyright_right li:last-of-type {
        display: block;
        border: 0;
        margin-left: 0;
    }
    .copyright_right li a {
        margin: 0;
    }
    .pane--footer2::after {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (max-width: 991px) {
    .module-footer-boxes_logo {
        display: none;
    }
    .module-footer-boxes_links {
        width: 66.6666% !important;
    }
    .copyright_right {
        float: left;
        width: 50% !important;
        display: block !important;
    }
    .copyright_left {
        padding-top: 0;
        padding-bottom: 0;
        text-align: left;
        padding-left: 50px;
        width: 100% !important;
    }
    .module-footer-boxes_logo.mobile-only {
        display: block;
        float: right;
    }
}

@media only screen and (max-width: 767px) {
    .module-footer-boxes_socials {
        width: 100% !important;
        margin-top: 40px;
    }
    .copyright_right {
        text-align: left !important;
        padding-left: 5% !important;
    }
    .copyright_left {
        padding-left: 15px;
    }
    .module-footer-boxes_logo.mobile-only {
        text-align: right;
    }
    .module-footer-boxes_links {
        width: 100% !important;
    }
}

.module-q4-credits {
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    text-align: center;
    width: 100%;
    margin-top: -15px;
}

.module-q4-credits a {
    color: #ccc;
    font-size: 11px;
}

.module-q4-credits a:hover {
    color: #fcfcfc;
}

@media only screen and (max-width: 1024px) {
    .module-q4-credits {
        position: static;
        margin: 20px 0 0;
    }
}

/*footer stock*/

.module-stock-footer_description1 {
    margin-right: 5px;
}

.module-stock-footer_change {
    border-radius: 2px;
/*     background-color: #0c3;
    color: #44464b; */
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    line-height: 12px;
    padding: 0 5px;
    margin-left: 4px;
}


/*start footer contact*/

.module-footer-contact {
    padding: 40px 0;
    float: left;
}

.module-footer-contact li {
    word-break: break-all;
    color: #fcfcfc;
    font-family: "Trebuchet MS";
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}
.module-contact ul:not(.list) {
    display: block;
    vertical-align: top;
    width: 65%;
    padding-right: 20px;
}
.module-contact .grid > .grid_col + .grid_col ul:not(.list){
    width: 100%;
    display: block;
}
.module-contact ul a{
    word-break: break-word;
}
.module-contact .grid > .grid_col + .grid_col{
    position: relative;
}
.module-contact .grid > .grid_col + .grid_col:after {
    content: "";
    width: 1px;
    position: absolute;
    left: 0;
    top: 0px;
    bottom: 0;
    background: rgba(0,0,0,0.05);
}
.module-contact .grid > .grid_col + .grid_col{
    padding-left: 90px;
}
@media only screen and (max-width: 1024px) {
    .module-footer-contact .grid_col:first-of-type {
        margin-bottom: 20px;
    }
    .module-contact ul:not(.list){
        width: 100%;
    }
    .module-contact .grid > .grid_col:first-child{
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .module-contact .grid > .grid_col + .grid_col:after{
        display: none;
    }
    .module-contact .grid > .grid_col + .grid_col{
        padding-left: 20px;
    }
    .module-footer-contact {
        -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
        -webkit-clip-path: ellipse(180% 55% at 91% 40%);
        clip-path: ellipse(180% 55% at 91% 40%);
        background: -webkit-linear-gradient(179.71deg,rgba(54,55,58,.9) 0%,rgba(23,23,23,.9) 54.92%,rgba(21,20,20,.86) 81.71%,rgba(0,0,0,.9) 100%),url(../design/footer-bg.jpg);
        background: linear-gradient(179.71deg,rgba(54,55,58,.9) 0%,rgba(23,23,23,.9) 54.92%,rgba(21,20,20,.86) 81.71%,rgba(0,0,0,.9) 100%),url(../design/footer-bg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }
    .module-footer-contact .module_container--outer {
        padding: 0 15px 40px 15px;
    }
}
@media only screen and (max-width: 480px) {
    .module-footer-contact .grid_col:first-of-type {
        margin-bottom: 40px;
    }
    .module-footer-contact {
        background-position: bottom;
        background-size: auto;
    }
}

/*end footer contact*/

/*start quick links*/

.module-footer-quicklinks .module_container--inner {
    display: inline-block;
}

.module-footer-quicklinks .module_title {
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #f90;
    display: inline-block;
    margin-right: 50px;
}

.module-footer-quicklinks li {
    display: inline-block;
    margin-right: 50px;
}

.module-footer-quicklinks li:last-child {
    margin-right: 0;
}

.module-footer-quicklinks li a {
    color: #fcfcfc;
    font-size: 13px;
    font-weight: 700;
    font-family: "Trebuchet MS";
    position: relative;
    padding-left: 20px;
}

.module-footer-quicklinks li a:before {
    font-family: 'q4-icons';
    content: "\edbe";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #f90;
    position: absolute;
    left: 0;
    font-size: 11px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

@media only screen and (max-width: 1024px) {
    .module-footer-quicklinks .module_title {
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .module-footer-quicklinks li {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/*end quicklinks*/

/***************END FOOTER*********************/

/***************START BANNER*******************/

.pane--banner {
    color: #fff;
    -webkit-clip-path: ellipse(100% 70% at 50% 30%);
    clip-path: ellipse(100% 70% at 50% 30%);
    position: relative;
/*     height: 80vh; */
    height: 500px;
    background: -webkit-linear-gradient(to right,#054382,#0066cb);
    background: linear-gradient(to right,#054382,#0066cb);
}

.pane--banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    -webkit-clip-path: circle(205% at 171% 190%);
    clip-path: circle(205% at 171% 190%);
    right: 0;
    width: 63%;
    top: 0;
    background: url("../design/banner/banner-homeowners-insurance-crop.jpg");
    z-index: 9;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}

.pane--banner .pane_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

@media only screen and (max-width: 1024px) {
    .pane--banner {
        height: 500px;    
    }
    .pane--banner:before {
        width: 79%;
    }
}

@media only screen and (max-width: 768px) {
    .pane--banner {
        height: 60vh;
        background: url("../design/banner/banner-homeowners-insurance-crop.jpg");
        background-size: cover;
        background-position: center right; 
    }
    .pane--banner:before {
        display: none;
    }
}

@supports (-ms-ime-align:auto) {
    .pane--banner::before {
        width: 50%;
    }
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){
    .pane--banner::before {
        width: 50%;
    }
}

/*start page title*/

.module-page-title .module_title {
    color: #fcfcfc;
    font-family: "Trebuchet MS";
    font-size: 52px;
    font-weight: 400;
    line-height: 66px;
    letter-spacing: -0.19px;
    text-transform: none;
    width: 35%;
    z-index: 9;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    margin: 0;
}
div[class*="PageOurStory"] .module-page-title .module_title {
    width: 100%;
}
.PageInvestorRelationsHome .module-page-title .module_title {
    display: none;
    font-size: 40px;
}

.PageInvestorRelationsHome .module-page-title .module_title:before {
    content: "ASSURANT";
    display: block;
    font-family: "Trebuchet MS";
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 1.03px;
    margin: 0;
}

.PageInvestorRelationsHome .module-page-title .module_title::after {
    content: 'Investor Relations';
    font-size: 40px;
}

@media screen and (max-width: 1024px) {
    .module-page-title .module_title {
        font-size: 36px;
        line-height: normal;
    }
}

.module-page-title--mobile {
    display: none;
}

.module-page-title--mobile .module_title {
    position: static;
    width: 100%;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    color: #0066cb;
    transform: none;
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid #cce0f5;
}

.PageOverview .module-page-title--desktop {
    display: none;
}

@media screen and (max-width: 768px) {
    .module-page-title--desktop {
        display: none;
    }
    .module-page-title--mobile {
        display: block;
    }
    .PageInvestorRelationsHome .module-page-title .module_title {
        display: block;
        font-size: 0;
    }
    .PageInvestorRelationsHome .module-page-title .module_title::before {
        font-size: 11px;
        line-height: 23px;
        color: #f90;
        margin-bottom: 10px;
        font-family: "Trebuchet MS";
        font-weight: bold;
        letter-spacing: 1px;
    }
}

@supports (-ms-ime-align:auto) {
    .module-page-title .module_title {
        width: 35%;
    }
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){
    .module-page-title .module_title {
        width: 35%;
    }
}

/*end page title*/

/***************END BANNER*******************/

/****************START IR PAGE*************/

/*start financial highlights*/

.module-financial-highlights {
    text-align: center;
}

.module-financial-highlights .grid_col {
    margin-bottom: 30px;
}

.module-financial-highlights .grid_col span {
    display: block;
    margin-top: 15px;
}

.module-financial-highlights .button {
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    .module-financial-highlights .grid--no-gutter {
      
    }
    .module-financial-highlights .grid_col {
       
    }
    .module-financial-highlights .grid_col ~ .grid_col {
       
    }
}

/*end financial highlights*/

/*start slick slider news*/

.slick-slider {
    padding-right: 0 !important;
}

.slick-dots {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li ~ li {
    margin-left: 10px;
}

.slick-dots li button {
    font-size: 0;
    background: none;
    border: 1px solid #fff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    padding: 5px;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
    background: #ff9900;
    border-color: #ff9900;
    cursor: pointer;
}

/*end slick slider news*/

/****************END IR PAGE*************/

/**********START STATUTOPRY PAGE********/

.module-statutory table tr:nth-child(2) td {
    background-color: #0254a6;
    color: #fcfcfc;
    font-size: 15px;
    letter-spacing: -0.06px;
}

.module-statutory table tr:first-child td {
    padding: 10px;
    text-align: center;
}

@media only screen and (max-width: 480px) {
    .module-statutory table td {
        padding: 15px 5px;
    }
}

/**********END STATUTOPRY PAGE********/

/*********START DIVIDENDS PAGE*******/

.module-dividends table {
    margin: 0;
}

.module-dividends small {
    margin-top: 30px;
}

@media only screen and (max-width: 480px) {
    .module-dividends table tbody {
        border-top: 0;
    }
    .module-dividends table.border--top tbody {
        border-top: 1px solid #006fba;
    }
    .module-dividends table tbody tr.no--dataheading {
        padding: 15px 10px;
        background: transparent;
        display: inline-block;
    }
    .module-dividends table tbody tr.no--dataheading td {
        display: inline-block;
        padding: 0;
    }
    .module-dividends table tbody tr.no--dataheading td:before {
        display: none;
    }
}

/*********END DIVIDENDS PAGE*******/

/*********START FINANCIAL INFO PAGE******/

.nav--right {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.nav--right .level1 {
    float: right;
    padding: 70px 0 70px 70px;
}

.nav--right .level1 a {
    display: none;
    padding: 10px 30px;
    line-height: normal;
    font-size: 15px;
}

.nav--right .level1 li.expanded {
    border-radius: 4px;
    background-color: #fcfcfc;
    -webkit-box-shadow: -6px 3px 20px 0 #e4e4e4;
    -moz-box-shadow: -6px 3px 20px 0 #e4e4e4;
    box-shadow: -6px 3px 20px 0 #e4e4e4;
    padding: 20px 0;
}

.nav--right .level1 li.expanded ul a {
    display: inline-block;
    color: #999
}

.nav--right .level1 li.expanded li.selected a {
    color: #0066cb;
}

.nav--right .level1 li.expanded a:hover {
    color: #f90;
}

@media only screen and (max-width: 991px) {
    .nav--right {
        display: none;        
    }
}

.module-financial-mashup .module_container--inner {
    max-width: 500px;
    margin: auto;
}

.PageFinancialInformationQuarterlyReports .pane--content {
    display: inline-block;
    width: 100%;
}

/********END FINANCIAL INFO PAGE********/

.grid_contact .grid_col {
    box-sizing: border-box;
    display: inline-grid;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
}


@media screen and (min-width: 993px) {
    .main-nav_item-wrap .main-nav-title.alt {
        float: left;
        clear: both;
    }
}

.main-nav_item-wrap.six .main-nav_item-sixth {
    background-image: url('https://www.assurant.com/images/assurant/nextgen/help-center-mega-menu-image-dark.png');
/*     background-image: url('../design/assurant-claims-bg.jpg'); */
/*     background-color: #f90; */
    background-position: center;
    width: 100vw;
}

@media screen and (min-width: 993px) {
    .main-nav .main-nav_item-sixth .main-nav_item-sixth_inner .main-nav_title {
        margin-top: 150px;
    }
}

/*CR-287*/
.module-contact_item {
    display: block;
    vertical-align: top;
    width: 100%;
    padding-right: 20px;
}

.module-contact_item p {
    margin: 0;
}

.module_headline h6 {
    line-height: 22px;
}

@media only screen and (max-width: 1024px){
    .module-contact_item {
        width: 100%;
    }
}

.module-event li.module_item {
    margin-top: 40px;
}

.module-event-latest ul {
    line-height: 22px;
}

a.module_link:focus,
.module_add-to-calendar-reveal:focus {
    text-decoration: underline!important;
}

input[type="checkbox"]:focus+label {
    text-decoration: underline!important;
}

.module-subscribe_submit-button:focus{
    text-decoration: underline!important;
}

.module-latest-quarter ul.module_links {
    display: inline-block;
    margin-bottom: 30px;
}

.mini-banner-holder .csr-report-content li > a,
.mini-banner-holder .csr-report-content li,
.mini-banner-holder .csr-report-content ul {
    font-size: 14px;
    line-height: 20px;
}

.module-subscribe_form tr:nth-child(2n+1) label{
/*     position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important; */
    display: block;
}

/*contrast*/
.module_date-time{
    color: #44464B;
}

.pane--banner {
    background-color: #1A54A8;
}

.module-news-latest {
    background-color: #1A54A8;
}

.button{
    background: #0066cb;
}

.main-nav_item-wrap .main-nav-title, .main-nav_item-secondary .main-nav_secondary-title{
   color: #E37500;
}

.module-downloads--intro .module_file-text, .module-downloads--intro .module-downloads_description{
    color: #666;
}

.module_error-container {
    color: #f90;
}

.js--invalid input[type="text"], .js--invalid select {
    border-bottom: 1px solid #f90 !important;
}

.pane--footer .button{
    background-color: rgba(153,153,153,.1);
    box-shadow: 0 0 2px 0 rgba(0,0,0,.12), 0 2px 2px 0 rgba(0,0,0,.24);
    border-radius: 100px;
    background: #fff;
    font-weight: 700;
    line-height: 25px;
    text-align: center;
    color: #0066cb;
}

.pane--footer .button:hover{
    box-shadow: 0 3px 2px 0 #bcc0c4;
    color: #0066cb;
}

.module_q4-icon-links .module_link:before {
    color: #000;
}
.module_link {
   color: #0066cb; 
}

.module_q4-icon-links .module_link[href$=".xlsx"]:before, .module_q4-icon-links .module_link[href$=".xlsm"]:before, .module_q4-icon-links .module_link[href$=".xls"]:before, .module_q4-icon-links .module_link[href$=".csv"]:before, .module_q4-icon-links .module_link[href$=".XLS"]:before, .module_q4-icon-links .module_link[href$=".CSV"]:before {
    color: #02882A;
}
.main-nav_item-wrap .main-nav-title, .main-nav_item-secondary .main-nav_secondary-title {
    color: #0066cb;
}
.button--white {
    box-shadow: 0 0 2px 0 rgba(0,0,0,.12), 0 2px 2px 0 rgba(0,0,0,.24);
    background: #fff;
    color: #0066cb;
    font-weight: 700;
}
.button--white:hover {
    box-shadow: 0 3px 2px 0 #bcc0c4;
    color: #0066cb;
}
.CaptchaContainer .button{
    background: #0066cb;
}
/* .main-nav_item-wrap_inner .main-nav_item-third, .main-nav_item-wrap_inner .main-nav_item-sixth{
    background: #0066cb;
} */
.main-nav_item-third a{
    color: #fff;
}
.module-footer-boxes h5 {
    color: #fff;
}
.text-hiring {
    color:  #000;
}
.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    color: #02882A;
}
.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    color: #000;
}
.module_q4-icon-links .module_link.module_link-sec[href$=".html"]:before {
    color: #000;
}

/*Tooltip-Icons*/
i.q4-icon--custom {
    font-size: 30px;
    display: inline-block;
    vertical-align: middle;
    padding-right: 5px;
    color: #000;
}
i.q4-icon--custom:hover{
    text-shadow: 0px 0px 1px #000;
}
i.q4-icon--custom.q4-icon_video{
    font-size: 18px;
}
[aria-label] {
    position: relative;
}
[aria-label]:after {
    content: attr(aria-label);
    display: none;
    position: absolute;
    top: 110%;
    left: 10px;
    z-index: 5000;
    pointer-events: none;
    padding: 8px 10px;
    line-height: 15px;
    white-space: nowrap;
    text-decoration: none;
    text-indent: 0;
    overflow: visible;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    background-color: #000;
    border-left: 6px solid #fff;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 1px 2px 6px rgba(0,0,0,0.3);
    box-shadow: 1px 2px 6px rgba(0,0,0,0.3);
}
/*[aria-label]:hover:after, [aria-label]:focus:after {
    display: block;
}*/
.q4-icon_file:before{
    content: "\eb81";
}
.q4-icon_xls:before{
    content: "\e912";
    color: #02882A;
}
.q4-icon_add-to-calendar:before{
    content: "\e915";
}
.q4-icon_html:before{
    content: "\e90d";
}
.module-downloads--intro .module-downloads_title{
    padding-left: 0;
}
.module_q4-icon-links .module_link.module_link-sec:before {
    display: none;
}
.module-downloads--intro .module-downloads_title-link:before{
    display: none;
}
.module-financial-quarter .module_q4-icon-links .module_link::before{
    display: none;
}
.module-financial-quarter .module_link{
    padding-left: 0;
}
.module_link--banner:before{
    display: none;
}
.module_q4-icon-links .module_link:before{
    display: none;
}
/*Our Story*/
div[class*="PageOurStory"] .pane--banner{
    height: 51vh;
    background:transparent none;
}
div[class*="PageOurStory"] .pane--banner:before{
    background-color:transparent;
    background-image: url(../images/ourstory/corp-resp-bg.jpg);
    background-position: center right;
    -webkit-clip-path: none;
    clip-path: none;
    width: 100%;
}
div[class*="PageOurStoryCorporateResponsibility"] .pane--banner:before{
    background-image: url(../design/banner/header_social-responsibility_en.jpg);
    background-position: center 65%;
}
@media screen and (max-width: 768px){
    .pane--banner{
        background-image: url(../images/ourstory/corp-resp-bg.jpg);
        background-position: right center;
        height: 51vh;
    }
    
    div[class*="PageOurStory"] .pane--banner{
        background-image: url(../design/banner/header_social-responsibility_en.jpg);
        background-position: 75% 65%;
        height: 51vh;
        background-size:cover;
    }
}
.module-core-pillars h3{
    margin: 0;
    text-align: center;
    color: #606060;
    font-size: 24px;
    padding: 5px 20px;
}
.module-core-pillars .module_title{
    text-align: center;
    color: #39393A;
    font-size: 48px;
    font-weight: 400;
    font-family: "Trebuchet MS";
}
.module-core-pillars .grid_col > div{
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    height: 100%;
    min-height: 188px;
    max-width: 558px;
    margin: 0 auto;
}
.module-core-pillars p {
    font-size: 16px;
    line-height: 1.4;
    color: #44464B;
    padding: 10px 15px;
    margin: 0;
    max-width: calc(100% - 150px);
}
.module-core-pillars .grid_col{
    margin-top: 20px;
}
.module-core-pillars .grid_col > div{
    background-image: url('../doc_downloads/2020/10/Four-Icons_Responsible-Employer.png');
}
.module-core-pillars .grid_col:nth-child(2) > div{
    background-image: url('../doc_downloads/2020/10/Four-Icons_Impact-on-Society.png');
}
.module-core-pillars .grid_col:nth-child(3) > div{
    background-image: url('../doc_downloads/2020/10/Four-Icons_Integrity-and-Ethics.png');
}
.module-core-pillars .grid_col:nth-child(4) > div{
    background-image: url('../doc_downloads/2020/10/Four-Icons_Customer-Commitment.png');
}
div[class*="PageOurStory"] .pane--right .pane_inner{
    padding: 0;
}
.module-facts{
    background: #EBEBEC;
    text-align: center;
}
.module-facts p{
    color: #44464B;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    padding-left: 19px;
    padding-right: 19px;
    margin-bottom: 0;
}
.module-facts p span{
    font-size: 26px;
    font-weight: 600;
    white-space: nowrap;
}
.module-box-image .grid_col.grid_col {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    padding: 70px;
}
.module-box-image .grid_col.grid_col--text-right{
    padding-right: 0;
}
.module-box-image .grid_col.grid_col--text-left{
    padding-left: 0;
}
.module-box-image .grid_col--image > div{
    background-image: url('../images/ourstory/York-Material-Processor-2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50vW;
}
.module-box-image .grid_col--image-left > div{
    right: 0;
    left: auto;
}
.module-box-image p {
    color: #44464B;
    font-size: 16px;
    line-height: 28px;
}
.module-box-image .grid:nth-child(2) .grid_col--image > div{
    background-image: url('../images/ourstory/cr/impact-on-society_cr.jpg');
}
.module-box-image .grid:nth-child(3) .grid_col--image > div{
    background-image: url('../images/ourstory/nyse-building.jpg');  
}
.module-box-image .grid:nth-child(4) .grid_col--image > div{
    background-image: url('../images/ourstory/cr/customer-commitment_cr.jpg');  
}
.module-box-image h2,
.module--title-icon h2{
    background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 87px;
    margin-bottom: 30px;
    padding-left: 100px;
    padding-top: 20px;
    font-size: 35px;
    color: #39393A;
    font-family: "Trebuchet MS";
}
.module--title-icon h2{
    background-image: url(../images/ourstory/cr/community-impact-line_cr.svg);
}
.module-box-image h2,
.page-responsible-employer .module--title-icon h2{
    background-image: url(../images/ourstory/cr/responsible-line_cr.svg);  
}
.module-box-image .grid:nth-child(2) h2{
    background-image: url(../images/ourstory/cr/community-impact-line_cr.svg);
}
.module-box-image .grid:nth-child(3) h2,
.page-integrity-ethics .module--title-icon h2{
    background-image: url(../images/ourstory/cr/integrity-line_cr.svg);
}
.module-box-image .grid:nth-child(4) h2{
    background-image: url(../images/ourstory/cr/custcom-line_cr-long.svg);
}
.page-customer-commitment .module--title-icon h2{
    background-image: url(../images/ourstory/cr/custcom-line_cr-long.svg);
}
@media screen and (max-width: 1200px){
    .module-facts p{
        padding-left: 0;
        padding-right: 0;
    }
    .module-box-image .grid_col.grid_col{
        padding: 40px 20px;
    }
    .module-box-image h2,
    .module--title-icon h2{
        font-size: 30px;
        font-size: 3rem;
    }
    .module-core-pillars p{
        font-size: 12px;
        line-height: 1.4;
    }
}
@media screen and (max-width: 1023px){
    .module-core-pillars .grid_col {
        margin-top: 20px;
        flex-basis: 100%;
        max-width: 100%;
    }
    .module-facts .grid_col {
        width: 100%;
    }
    .module-facts .grid_col + .grid_col{
        margin-top: 40px;
    }
    .module-box-image .grid_col.grid_col{
        flex-basis: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 0;
    }
    .module-box-image .grid_col.grid_col--image{
        min-height: 400px;
    }
    .module-box-image .grid_col--image > div{
        width: 100%;
        position: static;
    }
    .module-box-image .grid + .grid {
        margin-top: 60px;
    }
    .module-box-image .grid_col--image-left > div{
        margin-bottom: 30px;
    }
    .module-box-image .grid_col--image-right > div {
        margin-top: 30px;
    }
}
@media screen and (max-width: 600px){
    .module-core-pillars .grid_col > div{
        min-height: 112px;
        max-width: 330px;
    }
    .module-core-pillars h3{
        font-size: 14px;
        font-size: 1.4rem;
        padding-top: 3px;
        padding-bottom: 3px;
    }
    .module-core-pillars p{
        font-size: 10px;
        line-height: 1.2;
        max-width: calc(100% - 78px);
        padding: 5px 10px 10px 10px;
    }
    .module-box-image h2,
    .module--title-icon h2{
        font-size: 20px;
        padding-top: 35px;
    }
}
.module-features {
    background-image: url(../images/ourstory/assurant-running.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    z-index: 1;
    position: relative;
}
.module-features:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #0066cb;
    opacity: 0.5;
    z-index: -1;
}
.module-features .module_title{
    color: #ffffff;
    text-align: center;
    font-family: "Trebuchet MS";
}
.module-features .module_container--content{
    height: 100%;
    padding: 25px;
    color: #666666;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #E8E9ED;
    position: relative;
    padding-bottom: 70px;
}
.module-features .module_container--content > a{
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.module-features .module_feature-type,
.module-features .module_content-text{
    text-align: left;
}
.module-features p{
    font-size: 21px;
    line-height: 31px;
    margin-bottom: 30px;
    font-family: "Trebuchet MS";
}
.module_feature-type span{
    min-width: 92px;
    border-radius: 3px;
    background-color: #02882A;
    color: #FFFFFF;
    font-size: 11px;
    font-size: 1.1rem;
    height: 23px;
    line-height: 23px;
    display: inline-block;
    padding-left: 10px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: capitalize;
}
@media screen and (max-width: 1023px){
    .module-features .grid .grid_col{
        flex-basis: 100%;
        max-width: 100%;
   } 
   .module-features .grid .grid_col + .grid_col{
        margin-top: 40px;
   }
}

.pane--content .module-story-nav {
    box-shadow: 0 3px 5px 0 #e4e4e4;
    text-align: center;
    padding-bottom: 35px;
    padding-top: 45px;
}
.module-story-nav li {
    display: table-cell;
    line-height: 1.2;
    padding-left: 8px;
    padding-right: 8px;
}
.module-story-nav ul {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.module-story-nav li a{
    color: #000000;
    font-weight: 400;
    font-size: 15px;
}
.module-story-nav li.js--active a,
.module-story-nav li a:hover{
    font-weight: 600;
}
@media screen and (max-width: 767px){
    .module-story-nav li{
        display: inline-block;
        vertical-align: top;
        margin-right: -0.25em;
        padding-right: 20px;
        padding-left: 0;
        text-align: left;
        width: 50%;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .module-story-nav ul{
        display: block;
    }
}
.module-stock-header .module_container--outer .module_container--inner *, .main-nav_item-secondary .module-stock-header * {
   opacity: 1;
}
.main-nav_item-wrap .main-nav-title, .main-nav_item-secondary .main-nav_secondary-title, .main-nav .main-nav_title {
    color: #44464b;
} 
.main-nav_item-wrap.one .main-nav-item:hover, .main-nav_item-wrap.one .main-nav-item.js--active {
    font-weight: 400;
}
.main-nav .menu-banner-subtitle {
    color: #fff;
}
.main-nav .main-nav_item-wrap .main-nav_item-wrap_inner.js--show {
    width: 100%;
}
.main-nav .main-nav_item-wrap .main-nav_item-wrap_inner.js--show#two, .main-nav .main-nav_item-wrap .main-nav_item-wrap_inner.js--show#three, .main-nav .main-nav_item-wrap .main-nav_item-wrap_inner.js--show#six {
    width: 66%;
    left: auto;
    right: 0;
}


.PageOurStoryCorporateResponsibility .module_title{
    padding-bottom: 10%;
    color: #606060;
    padding-left: 2%;
}