/*==================================
 ------------ 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;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html {
    font-size: 10px;
    line-height: 1.15;
}

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;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
}

sub {
    vertical-align: sub;
}

sup {
    vertical-align: super;
}

small {
    font-size: 70%;
    line-height: normal;
}

select:empty {
    display: none;
}

strong {
    font-weight: 700;
}

/*---------- Animations ----------*/
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*==================================
 --------- DEFAULT STYLES ---------
==================================*/
body {
    overflow-x: hidden;
    color: #000;
    font-family: "Suisse Intl", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    text-rendering: optimizeLegibility;
    -ms-text-rendering: optimizeLegibility;
    line-height: 1.65;
    font-weight: 400;
}

@media all and (max-width: 979px) {
    body {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

/*---------- TYPOGRAPHY ----------*/
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1;
    color: #000;
    font-family: "Suisse Intl",-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
}

h1 {
    font-size: 73px;
    font-size: 7.3rem;
    margin-bottom: 0;
}

.dark h1 {
    color: #fff;
}

@media all and (max-width: 767px) {
    h1 {
        font-size: 43.8px;
        font-size: 4.38rem;
    }
}

h2 {
    font-size: 48px;
    font-size: 4.8rem;
    margin-bottom: 25px;
    color: #000;
}

h3 {
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 30px;
}

h4, h5, h6 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 31px;
    margin-bottom: 15px;
}

.dark h4, .dark h5, dark h6 {
    color: #fff;
}

a {
    text-decoration: none;
    color: #235F73;
    font-weight: 600;
}

a:active, a:focus, a:hover {
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
    color: #02EFDB;
}

p {
    margin-top: 0;
    margin-bottom: 15px;
}

i {
    display: inline-block;
}

strong {
    font-weight: 700;
}

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;
    position: relative;
    padding-left: 35px;
}

input[type="checkbox"] + label:before, input[type="radio"] + label:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid #235F73;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -1px;
}

.dark input[type="checkbox"] + label:before, .dark input[type="radio"] + label:before {
    border-color: #fff;
}

input[type="checkbox"]:checked + label:before, input[type="radio"]:checked + label:before {
    background: #235F73;
}

.dark input[type="checkbox"]:checked + label:before, .dark input[type="radio"]:checked + label:before {
    background: #ffffff;
}

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, ol {
    margin: 0 0 20px 0;
    padding: 0 0 0 18px;
}

.list {
    list-style-type: disc;
}

.list--ordered {
    list-style-type: decimal;
}

.list--alpha {
    list-style-type: lower-alpha;
}

.list--roman {
    list-style-type: lower-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: 10px 20px;
    background: transparent;
    border: 2px solid #235F73;
    color: #235F73;
    border-radius: 0;
    font-family: "Suisse Intl", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    vertical-align: top;
    font-weight: normal;
}

.input:focus, .textarea:focus, .dropdown:focus, .upload:focus, .submit:focus, .button:focus {
    text-decoration: none !important;
}

.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 {
    padding: 0 12px;
    height: 40px;
    line-height: 36px;
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    transition: all .1s linear;
    text-align: center;
    min-width: 142px;
}

@media all and (max-width: 480px) {
    .button {
        width: 100%;
    }
}

.button:hover {
    border-color: #000;
    color: #fff;
    background-color: #000;
    text-decoration: none;
}

.button:focus {
    text-decoration: none !important;
}

.button:active {
    transform: translateY(2px);
}

.button--white, .module.dark .button.button--white {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}

.button--white:hover, .module.dark .button.button--white:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.button--orange {
    border-color: #F26407;
    color: #F26407;
}

.button--orange:hover {
    background-color: #F26407;
    border-color: #F26407;
    color: #fff;
}

.button--blue {
    border-color: #235F73;
    color: #235F73;
}

.button--blue:hover {
    background-color: #235F73;
    border-color: #235F73;
    color: #fff;
}

.module.dark .button, .button--dark {
    border-color: #71C5E8;
    color: #fff;
    background-color: transparent;
}

.module.dark .button:hover, .button--dark:hover {
    background-color: transparent;
    border-color: #71C5E8;
    color: #fff;
}

.dropdown {
    font-weight: 700;
    padding: 0 35px 0 20px;
    background: transparent url("../design/svg/dropdown.svg") no-repeat right 10px center;
    background-size: 14px 10px;
    min-width: 145px;
    font-size: 14px;
    font-size: 1.4rem;
    border: 2px solid #000;
    height: 40px;
    line-height: 36px;
    color: #000;
}

.dropdown::-ms-expand {
    display: none;
}

/*------------ TABLES ------------*/
.table {
    width: 100%;
    margin: 16px 0;
}

.table thead {
    background-color: #0F364A;
}

.table tr {
    border-bottom: 1px solid #000;
}

.table th, .table td, .table tr > .grid_col {
    margin: 0;
    padding: 25px 10px 15px 0;
    color: #0F364A;
    font-size: 18px;
    line-height: 27px;
}

.table th {
    color: #fff;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    padding: 25px 10px 15px 0;
}

.table th:first-child {
    padding-left: 20px;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:first-child {
    background-color: #02EFDB;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #F7F7F7;
}

@media all and (max-width: 767px) {
    .table--responsive thead {
        display: none;
    }

    .table--responsive tbody tr:first-child {
        border-top: 1px solid #000;
    }

    .table--responsive tr {
        display: block;
        padding: 10px 0;
    }

    .table--responsive td {
        display: block;
        padding: 5px 0;
    }

    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: 700;
    }
}

.table--custom-container {
    overflow-x: auto;
}

/*--------- SPECIAL BOXES --------*/
.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #0F364A;
    border-left: 3px solid rgba(0, 181, 226, 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: #0F364A;
    border-left: 3px solid rgba(60, 68, 79, 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 {
    position: relative;
    padding-left: 32px;
    color: #000;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 24px;
}

@media all and (max-width: 767px) {
    .module_q4-icon-links .module_link {
        padding-left: 0;
    }
}

.module_q4-icon-links .module_link:before, .module_q4-icon-links .module_rss-link: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: "\e9bb";
    font-size: 2.2rem;
    display: inline-block;
    vertical-align: text-top;
}

.module_q4-icon-links .module_link:before {
    position: absolute;
    margin-left: -32px;
    font-size: 24px;
    font-size: 2.4rem;
    top: 0;
    margin-top: -1px;
    text-align: center;
    min-width: 25px;
    color: #71C5E8;
}

@media all and (max-width: 767px) {
    .module_q4-icon-links .module_link:before {
        display: none;
    }
}

.module_q4-icon-links .module_link:hover {
    text-decoration: none;
    color: #235F73;
}

.module_q4-icon-links .module_rss-link:before, .module_q4-icon-links .module_link.module_link-rss:before {
    content: "\eefa";
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\ea5f";
    font-size: 2.2rem;
    margin-top: -2px;
}

.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: "\e952";
}

.module_q4-icon-links .module_link[href$=".xls"]:before, .module_q4-icon-links .module_link[href$=".xlsx"]: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$=".XLSX"]:before, .module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\e91e";
    /* font-size: 26px; */
    /* font-size: 2.6rem; */
}

.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 {
    content: "\e918";
}

.module_q4-icon-links .module_link.module_link-webcast:before, .module_q4-icon-links .module_webcast-link:before {
    content: "\e91f";
    font-size: 22px;
    font-size: 2.2rem;
}

.module_q4-icon-links .module_link.module_link-news:before {
    content: "\e91b";
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 2px;
}

.module_q4-icon-links .module_link.module_link-transcript:before {
    content: "\e91d";
}

.module_q4-icon-links .module_link.module_link-presentation:before, .module_q4-icon-links .module_link.module_presentation-link:before {
    content: "\e91a";
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 2px;
}

.module_q4-icon-links .module_link.module_link-file:before, .module_q4-icon-links .module_link.module_link-metrics:before {
    content: "\e91e";
}

.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e9bb";
    position: static;
    margin: 0;
    padding: 0;
    min-width: 0;
    font-size: 22px;
    font-size: 2.2rem;
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\ef3e";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\ef40";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\ef41";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e9b9";
}

/*==================================
 ----------- TOAST GRID -----------
==================================*/
.grid {
    list-style: none;
    margin-left: -30px;
}

.grid--flex {
    margin-left: -30px;
    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: 30px;
    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: 768px) {
    .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-5, .grid_col.grid_col--lc-2-of-10 {
        width: 20%;
    }

    .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: 767px) 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:not([role=tabpanel]) {
    display: none !important;
}

.hidden[role=tabpanel] {
    display: none;
}

.disabled {
    opacity: 0.1;
    border-color: #231F20;
    color: #231F20;
    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: #02EFDB;
}

.background--alt-brand {
    background-color: #0F364A;
}

.background--dark {
    background-color: #235F73;
}

.background--light {
    background-color: #F7F7F7;
}

.background--grey {
    background-color: #0F364A;
}

.background--black {
    background-color: #000;
}

.background--grey-light {
    background-color: #F7F7F7;
}

.background--success {
    background-color: #008000;
}

.background--error {
    background-color: #F26407;
}

.color--brand {
    color: #02EFDB;
}

.color--alt-brand {
    color: #235F73;
}

.color--dark {
    color: #235F73;
}

.color--grey {
    color: #0F364A;
}

.color--grey-light {
    color: #000;
}

.color--success {
    color: #008000;
}

.color--error {
    color: #F26407;
}

.dark {
    color: #fff;
}

.dark a {
    color: #fff;
}

.dark a:hover {
    color: #02EFDB;
}

.dark .button--cta {
    color: #F7F7F7;
}

/*==================================
 --------- ACCESSIBILITY ----------
==================================*/
*:focus {
    outline: none;
    text-decoration: none;
}

a:focus {
    text-decoration: none !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:not([role=tabpanel]) {
    display: none !important;
}

.js--hidden[role=tabpanel] {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #231F20;
    color: #231F20;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"], .js--invalid select {
    border: 1px solid #F26407 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #F26407 !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 {
    margin-bottom: 20px;
}

.module_not-found {
    padding: 15px 15px;
}

.module_options-item {
    display: inline-block;
    vertical-align: top;
}

.module_button-container {
    margin-top: 20px;
}

.module_error-container {
    margin-bottom: 20px;
    color: #F26407;
}

.module_add-to-calendar-reveal {
    color: #02EFDB;
    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;
}

.fancybox-container .module_add-to-calendar-list .fancybox-close-small {
    top: 10px;
    right: 10px;
}

.fancybox-container .module_add-to-calendar-list .fancybox-close-small:before {
    font-size: 1.8rem;
}

.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: 24px;
    font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions {
    margin-top: 20px;
}

.module_pager {
    border-top: 2px solid #235F73;
    margin-top: 0;
    padding-top: 20px;
}

.module_pager .pager-page, .module_pager .pager-next, .module_pager .pager-prev {
    color: #000;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.module_pager .pager-page {
    padding: 0;
    margin: 6px 8px;
    position: relative;
}

.module_pager .pager-page:hover {
    color: #02EFDB;
}

.module_pager .pager-active {
    color: #0F364A;
}

.module_pager .pager-active:hover {
    cursor: text;
    color: #0F364A;
}

.module_pager .pager-page:before, .module_pager .pager-page:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    left: -8px;
    background-color: #0F364A;
    pointer-events: none;
}

.module_pager .pager-page:after {
    left: auto;
    right: -8px;
}

.module_pager .pager-page + .pager-page:before {
    content: none;
}

.module_pager .pager-prev {
    margin-right: 15px;
}

.module_pager .pager-next {
    margin-left: 15px;
}

.module_pager .pager-disabled {
    display: none;
}

.module_date-time {
    margin-bottom: 5px;
    font-size: 13px;
    font-size: 1.3rem;
    color: #000;
    line-height: 17px;
    text-transform: uppercase;
}

.dark .module_date-time {
    color: #fff;
}

.module_date-link {
    color: #000;
}

.module_date-link:hover {
    color: #235F73;
}

.module_date-type {
    font-weight: 700;
}

.module_date-type:after {
    content: "|";
    padding: 0 5px;
    font-weight: 400;
    color: #71C5E8;
}

.module_error-container {
    display: block;
}

.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 {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    font-size: 1.8rem;
}

.module_headline-link {
    font-weight: 700;
}

.module_headline-link, .module_headline-link:visited {
    color: #000;
}

.dark .module_headline-link, .dark .module_headline-link:visited {
    color: #fff;
}

.module_headline-link:hover, .dark .module_headline-link:hover {
    color: #02EFDB;
}

.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: 20px;
}

.module_item {
    padding: 0;
    margin: 0;
}

.module_link-container {
    margin-bottom: 10px;
}

.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;
}

.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 25px 10px 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 24px;
}

.module_link:hover {
    color: #02EFDB;
}

.module_link > .module_link-text, .module_link > i, .module_link > span {
    vertical-align: middle;
}

.module_link > i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"], .module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_link-more-down {
    color: #235F73;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    position: relative;
    margin: 0;
    padding: 0 0 15px;
    display: inline-block;
    text-decoration: none !important;
    cursor: pointer;
}

.module_link-more-down:after {
    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: "\e90f";
    font-size: 2.2rem;
    display: inline-block;
    color: #235F73;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
    margin: 15px;
}

.module_message {
    display: block;
    margin: 15px 0;
}

.module_message[style$="hidden;"], .module_message:empty {
    display: none;
}

.module_message--success {
    color: #008000;
    font-weight: 700;
}

.pane--footer .module_message--success {
    color: #F7F7F7;
}

.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: #F26407;
}

.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 #02EFDB;
    color: #231F20;
    font-weight: normal;
}

.module_nav-link.selected, .module_nav-link.selected:visited, .module_nav .ModuleYearLink.selected, .module_nav .ModuleYearLink.selected:visited, .module_nav-link.selected:visited, .module_nav-link.selected:visited:visited, .module_nav .ModuleYearLink.selected:visited, .module_nav .ModuleYearLink.selected:visited:visited {
    background-color: #02EFDB;
    color: #F7F7F7;
}

@media all 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;
    display: inline-block;
    vertical-align: top;
}

@media all and (max-width: 480px) {
    .module_options-label, .module_options-select, .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: #231F20;
}

.module_pager a[href] {
    color: #02EFDB;
}

.module_reminder .module_label {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: #231F20;
}

.dark .module_required {
    color: #fff;
}

.module_required-text {
    font-size: 16px;
    font-size: 1.6rem;
    color: #231F20;
}

.dark .module_required-text {
    color: #fff;
}

.module_rss {
    float: right;
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_title {
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 30px;
    color: #000;
}

.small-heading .module_title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 31px;
    margin-bottom: 15px;
}

.big-heading .module_title {
    font-size: 48px;
    font-size: 4.8rem;
    color: #000;
    margin-bottom: 30px;
    line-height: 1;
}

@media all and (max-width: 767px) {
    .big-heading .module_title {
        font-size: 29px;
        font-size: 2.9rem;
        line-height: 28.8px;
    }
}

.underline-heading .module_title {
    border-bottom: 2px solid #71C5E8;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.dark .module_title, .dark .big-heading .module_title {
    color: #fff;
}

.dark.underline-heading .module_title {
    border-color: #71C5E8;
}

.module_view-all-link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.module_input[type="text"], .module_input[type="email"], .module_input[type="file"], .module_dropdown, .module textarea.module_input {
    width: 100%;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Text area demands width*/
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #235F73;
    color: #235F73;
    border-radius: 0;
    font-family: "Suisse Intl", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    vertical-align: top;
    font-weight: normal;
    line-height: 1;
}

.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_input[type="text"]:focus, .module_input[type="email"]:focus, .module_input[type="file"]:focus, .module_dropdown:focus, .module textarea.module_input:focus {
    text-decoration: none !important;
}

.module textarea.module_input {
    resize: vertical;
    min-height: 150px;
}

.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: 15px 20px;
    border: 2px solid #02EFDB;
    background: transparent;
}

.module_dropdown {
    background: transparent url("../design/svg/dropdown.svg") no-repeat right 10px center;
    background-size: 14px 10px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}

/*------- Captcha Component ------*/
.CaptchaContainer {
    display: none;
}

.CaptchaContainer .module-subscribe_submit-button {
    width: 100%;
}

.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 all and (max-width: 767px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}

.CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    padding: 10px 15px;
    border: 1px solid #000;
    border-radius: 0;
    background-color: transparent;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Suisse Intl", sans-serif;
    text-decoration: none !important;
}

.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;
}

.dark .module-calculator_input .module_input {
    color: #fff;
    border-color: #fff;
}

.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-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.js--revealed[type="text"] {
    display: block;
}

@media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        min-width: 920px;
    }
}

.module-calculator_info td:first-child:before {
    content: none;
}

/*- Committee Composition Widget -*/
.module-committee .module_introduction {
    max-width: 1050px;
    color: #231F20;
    font-size: 16px;
    line-height: 24px;
}

.module-committee .module_footnote {
    margin: 30px 0 0;
}

.module-committee .module_footnote i {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.module-committee .module_container--content {
    margin-bottom: 20px;
}

@media all and (max-width: 767px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}

.module-committee .module_container--desktop .module_header {
    background: #0F364A;
    display: block;
}

.module-committee .module_container--desktop .module_header .grid_col {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    padding: 24px 10px 16px 0;
}

.module-committee .module_container--desktop .module_header .grid_col:first-child {
    padding-left: 20px;
}

.module-committee .module_container--desktop .module_item {
    padding: 0;
    border-bottom: 1px solid #000;
}

.module-committee .module_container--desktop .grid_col {
    padding: 24px 10px 16px 0;
    text-align: center;
    color: #0F364A;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
}

.module-committee .module_container--desktop .module-committee_text {
    cursor: pointer;
}

.module-committee .module_container--desktop .module-committee_text:hover {
    color: #02EFDB;
}

.module-committee .module_container--desktop .grid_col:nth-child(2) {
    display: none;
}

.module-committee .module_container--desktop .grid_col:first-child {
    text-align: left;
    position: relative;
}

.module-committee .module_container--tablet {
    display: none;
}

@media all and (max-width: 767px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module-committee .module_container--tablet .module_header {
    display: block;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    font-size: 1.8rem;
    padding: 20px 50px 20px 0;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.module-committee .module_container--tablet .module-committee_category:first-child .module_header {
    /* display: none; */
}

.module-committee .module_container--tablet .module-committee_category.js--active .module_header {
    color: #235F73;
}

.module-committee_category .module_header:after {
    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: "\e90f";
    position: absolute;
    right: 25px;
    font-size: 26px;
    font-size: 2.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.module-committee_category.js--active .module_header:after {
    transform: translateY(-50%) rotate(-180deg);
}

.module-committee .module_container--tablet .module_items-container {
    background-color: #F7F7F7;
    padding: 25px 25px 20px 15px;
    border-top: 1px solid #D8D8D8;
}

.module-committee_category {
    border-bottom: 1px solid #D8D8D8;
}

.module-committee_category:first-child {
    /* display: block!important; */
}

.module-committee .module_container--tablet .module_item {
    padding-right: 35px;
    position: relative;
}

.module-committee .module_container--tablet .module-committee_icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: -4px 0 0;
}

.module-committee .module_container--tablet .module-committee_name a, .module-committee .module_container--tablet .module-committee_name span {
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}

.module-committee .module_container--tablet .module-committee_name {
    margin-bottom: 5px;
    display: inline-block;
}

.module-committee .module_container--tablet .module-committee_icon i {
    font-size: 1.8rem;
}

.module-committee_custom-role {
    margin-left: 5px;
    position: absolute;
}

.module-committee_custom-role + .module-committee_custom-role {
    margin-left: 20px;
}

.module-committee_bio {
    padding: 0 15px 20px;
    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: 60px 0 50px;
}

.module-committee_legend {
    display: inline-block;
    color: #231F20;
    font-size: 16px;
    line-height: 24px;
    font-size: 1.6rem;
    margin: 0 30px 15px 0;
}

.module-committee_legend i {
    margin-right: 7px;
    display: inline-block;
    vertical-align: middle;
}

.module-committee i {
    font-size: 2.4rem;
}

.module-committee i.q4-icon_chair, .module-person_description i.color--alt-brand, .module-person-details_description i.color--alt-brand, .module-person_description i.color--alt-brand + span, .module-person-details_description i.color--alt-brand + span {
    color: #235F73;
}

.module-person_description i, .module-person-details_description i {
    font-size: 2.2rem;
    vertical-align: top;
    display: inline-block;
    line-height: 1;
    margin: -1px 0 0 0;
    width: 28px;
    padding: 0;
    text-align: left;
}

.module-person_description i + span, .module-person-details_description i + span {
    color: #0F364A;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    vertical-align: top;
    display: inline-block;
    padding-left: 5px;
    /* width: calc(100% - 35px); */
}

.module-committee_legend i.q4-icon_independent {
    font-size: 2rem;
}

.module-committee_legend i.q4-icon_expert {
    font-size: 2rem;
}

.module-committee_custom-role i {
    margin-left: 5px;
    font-size: 1.3rem;
}

.module-committee_custom-role i.icon_asterisk {
    font-size: 18px;
    margin-top: 2px;
}

/*----- Dividends Module -----*/
.module-dividends .highcharts-series-0 rect {
    fill: #02EFDB;
}

.module-dividends .highcharts-series-1 rect {
    fill: #0F364A;
}

/*----- Download List Module -----*/
.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 10px 0;
    border-bottom: 2px solid #000;
}

.module-downloads .module_item:first-child, .module-downloads .module_header + .module_item {
    /* border-top: 1px solid #000; */
}

.module-downloads_thumbnail, .module-downloads_description, .module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads .module-downloads_title-link {
    margin: 0;
    color: #000;
    font-size: 15px;
    font-weight: bold;
}

@media all and (max-width: 767px) {
    .module-downloads .module_link {
        padding-left: 30px;
    }
}

.module-downloads .module_link:before {
    color: #71C5E8;
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 2px;
}

@media all and (max-width: 767px) {
    .module-downloads .module_link:before {
        display: inline-block;
    }
}

.module-downloads-additional-resources {
    /* border-left: 2px solid #0F364A; */
    /* padding-left: 34px; */
}

@media all and (max-width: 767px) {
    .module-downloads-additional-resources {
        margin-top: 50px;
    }
}

.module-downloads.module-downloads--table .module_item {
    display: flex;
    align-items: center;
}

@media all and (max-width: 767px) {
    .module-downloads.module-downloads--table .module_item {
        display: block;
    }
}

.module-downloads.module-downloads--table .module-downloads_date {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
    color: #0F364A;
    line-height: 17px;
    text-transform: uppercase;
    padding: 0 20px 0 0;
    width: 110px;
}

@media all and (max-width: 767px) {
    .module-downloads.module-downloads--table .module-downloads_date {
        padding: 0;
        width: auto;
        margin: 0 0 10px;
    }
}

.module-downloads.module-downloads--table .module-downloads_title {
    width: calc(100% - 110px);
}

@media all and (max-width: 767px) {
    .module-downloads.module-downloads--table .module-downloads_title {
        width: 100%;
    }
}

.module-downloads-additional-resources .module_link.module-downloads_title-link:before, .module-downloads--arrows .module_link.module-downloads_title-link:before {
    content: "\e911";
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 2px;
}

/*--------- Event Module ---------*/
.module-event .module_options-label {
    margin-top: 6px;
}

@media all and (max-width: 480px) {
    .module-event .module_options-label {
        margin-top: 0;
    }
}

.module-event .module_location, .module-event .module_speakers h4, .module-event .module_body {
    display: none;
}

.module-event-details .module_speakers h4 {
    display: none;
}

.module-event-details .module_reminder-email.module_input {
    padding: 14px 20px;
}

@media all and (max-width: 767px) {
    .module-event-details .module_reminder .grid_col {
        margin-bottom: 20px;
    }
}

.module-events-introduction a {
    color: #000;
}

.module-events-introduction a:hover {
    color: #235F73;
}

.module-event-latest .module_container--content {
    margin-bottom: 20px;
}

.module-event-latest .module_item {
    margin: 10px 0;
    border: none;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

.module-event-latest .module_item.grid_col {
    padding-left: 20px;
}

.module-event-latest .module_item-wrap {
    height: 100%;
    padding: 30px;
    background-color: #0F364A;
}

.module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
}

.module-event-latest .module_headline {
    line-height: 150%;
    font-weight: 200;
}

.module-event-latest .module_links {
    margin: 0;
}

.module-event-latest.background--grey .module_item-wrap {
    background-color: #F7F7F7;
}

.module-event-latest.module-event-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-event-latest.module-event-list .module_item + .module_item {
    border-top: 1px solid #235F73;
}

.module-event-upcoming .module_nav {
    display: none;
}

.module-event-upcoming .module_item {
    padding: 0 0 10px;
}

/* Event Grid */
.module-event-grid .module_item-container {
    margin-bottom: 30px;
}

.module-event-grid .module_container--inner {
    position: relative;
}

.module-event-grid .module_item {
    border-bottom: 2px solid #000;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.module-event-grid .module_headline {
    position: relative;
    padding-right: 75px;
}

.module-event-grid .module_headline-link:hover {
    color: #235F73;
}

.module-event-grid .module_webcast {
    margin: 0 0 20px;
    padding: 0;
    display: block;
}

.module-event-grid .module_webcast-link {
    padding: 0;
}

.module-event-grid .module_webcast-link:before {
    display: none;
}

.module-event-grid .module_webcast > a {
    margin: 0;
    padding: 0 12px;
    height: 40px;
    line-height: 36px;
    background-color: transparent;
    border: 2px solid #71C5E8;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    font-size: 1.4rem;
    transition: all .1s linear;
    text-align: center;
    min-width: 142px;
}

.module-event-grid .module_webcast > a:hover {
    border: 2px solid #71C5E8;
    color: #000;
}

.module-event-landing .module_button-container {
    margin: 0;
    position: absolute;
    right: 0;
    top: -90px;
}

@media all and (max-width: 767px) {
    .module-event-landing .module_button-container {
        margin: 20px 0 0;
        position: static;
    }
}

@media all and (max-width: 767px) {
    .module-event-grid.module-event-landing .module_item-container {
        display: none;
    }

    .module-event-grid.module-event-landing .module_item-container:nth-child(-n+2) {
        display: block;
    }
}

.module-event-landing .module_button-container .button {
    /* border-color: #000; */
    /* background-color: transparent; */
    /* color: #000; */
}

/* Event Accordion */
.module-event-accordion .module_container--widget {
    position: relative;
}

.module-event-accordion .module_all-earnings-link {
    position: absolute;
    top: 5px;
    right: 0;
    font-weight: 600;
}

@media all and (max-width: 767px) {
    .module-event-accordion .module_all-earnings-link {
        position: static;
        margin: 0;
    }
}

.module-event-accordion .module_item {
    padding: 20px 0 30px;
}

.module-event-accordion .module_item + .module_item {
    border-top: 1px solid #000;
}

.module-event-accordion .module_item-info-left, .module-event-accordion .module_item-info-right {
    display: inline-block;
    vertical-align: middle;
}

.module-event-accordion .module_item-info-left, .module-event-accordion .module_shortbody {
    width: calc(100% - 500px);
}

@media all and (max-width: 1024px) {
    .module-event-accordion .module_item-info-left, .module-event-accordion .module_shortbody {
        width: 100%;
    }
}

.module-event-accordion .module_item-info-left-wrap, .module-event-accordion .module_shortbody-wrap {
    max-width: 830px;
    padding: 0 20px 0 0;
}

@media all and (max-width: 1024px) {
    .module-event-accordion .module_item-info-left-wrap, .module-event-accordion .module_shortbody-wrap {
        max-width: none;
        padding: 0;
    }
}

.module-event-accordion .module_item-info-right {
    width: 500px;
    padding: 20px 0 0;
}

@media all and (max-width: 1024px) {
    .module-event-accordion .module_item-info-right {
        width: 100%;
        padding: 5px 0;
    }
}

.module-event-accordion .module_item-info-right .module_link {
    margin: 7px 20px 7px 0;
}

.module-event-accordion .module_headline {
    display: inline-block;
    position: relative;
    padding-right: 32px;
    margin: 0;
}

.module-event-accordion .module_headline-link {
    display: inline;
}

.module-event-accordion .module_shortbody {
    padding: 0;
}

.module-event-accordion .accordion-arrow {
    display: inline-block;
    text-decoration: none !important;
    line-height: 0;
}

.module-event-accordion .accordion-arrow:before {
    content: "\e90f";
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #235F73;
    font-size: 2.4rem;
    display: block;
    transition: 300ms ease-in-out transform;
    transform: rotate(0);
}

.module-event-accordion .js--active .accordion-arrow:before {
    transform: rotate(-180deg);
}

.module-event-accordion .module_headline .accordion-arrow {
    position: absolute;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
    margin-left: 7px;
}

.module-event-accordion .module_links {
    margin-bottom: 0;
}

/* Event Calendar */
.module-event-calendar {
    display: table;
    width: 100%;
}

.module-event-calendar_calendar-container, .module-event-calendar_event-container {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: middle;
}

.module-event-calendar_calendar-container {
    padding-right: 20px;
}

.module-event-calendar_event-container {
    padding: 50px;
    background-color: #0F364A;
}

.module-event-calendar_splash i {
    font-size: 40px;
    font-size: 4rem;
    color: #02EFDB;
}

.module-event-calendar_splash p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.module-event-calendar_controls {
    padding: 20px 15px;
    background-color: #02EFDB;
    font-weight: 700;
    color: #F7F7F7;
}

.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;
}

.module-event-calendar_previous-month {
    float: left;
}

.module-event-calendar_next-month {
    float: right;
}

.module-event-calendar_day-container {
    border-bottom: 1px solid rgba(0, 181, 226, 0.2);
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 25px;
    border-top: 1px solid rgba(0, 181, 226, 0.2);
    border-left: 1px solid rgba(0, 181, 226, 0.2);
}

.module-event-calendar_day.calendar-dow-6 {
    border-right: 1px solid rgba(0, 181, 226, 0.2);
}

.module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
}

.module-event-calendar_day--today {
    background: #0F364A;
}

.module-event-calendar_day--event {
    cursor: pointer;
}

.module-event-calendar_day--event:after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    height: 4px;
    background-color: #02EFDB;
}

.module-event-calendar_day--selected {
    background-color: #02EFDB;
    color: #F7F7F7;
}

.module-event-calendar_day--selected:after {
    background-color: #F7F7F7;
}

.module-event-calendar_day--adjacent-month {
    color: rgba(35, 31, 32, 0.1);
    pointer-events: none;
}

.module-event-calendar_day--adjacent-month:after {
    content: none;
}

@media all and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}

.module-event-calendar .module_item {
    padding: 0;
}

.module-event-calendar .module_date-time, .module-event-calendar .module_headline {
    margin-bottom: 20px;
}

.module-event-calendar .module_add-to-calendar {
    margin: 0;
}

@media all and (max-width: 767px) {
    .module-event-calendar {
        display: block;
    }

    .module-event-calendar_calendar-container, .module-event-calendar_event-container {
        display: block;
        width: 100%;
    }

    .module-event-calendar_calendar-container {
        padding-right: 0;
    }

    .module-event-calendar_event-container {
        margin-top: 20px;
    }
}

/*---------- FAQ Module ----------*/
.module-faq .module_item {
    border-bottom: 1px solid #D8D8D8;
    padding: 0;
    margin: 0;
}

.module-faq_question {
    color: #000000;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 22px;
    display: block;
    position: relative;
    padding: 20px 50px 20px 0;
    margin: 0;
    transition: .3s ease-in-out all;
    cursor: pointer;
}

.js--active .module-faq_question {
    color: #235F73;
}

.module-faq_question:after {
    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: "\e90f";
    position: absolute;
    right: 25px;
    font-size: 26px;
    font-size: 2.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.js--active .module-faq_question:after {
    transform: translateY(-50%) rotate(-180deg);
}

.module-faq_answer {
    border-top: 1px solid #D8D8D8;
    padding: 20px 50px 10px 20px;
    background-color: #F7F7F7;
    margin: 0;
}

.module-faq_answer p {
    margin: 0;
    padding: 0 0 10px;
}

/*--- Financial Report Modules ---*/
.module-financial-year .module_cover {
    margin-bottom: 15px;
}

.module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #235F73;
}

.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-financial_year {
    text-align: center;
}

/* Financial Quarter */
.module-financial-quarter .module_container--inner {
    position: relative;
    padding-top: 60px;
}

@media all and (max-width: 1024px) {
    .module-financial-quarter .module_container--inner {
        padding-top: 0;
    }
}

.module-financial-quarter .module_title {
    color: #3C444F;
}

.module-financial-quarter--archive {
    position: relative;
}

.module-financial-quarter .module_options {
    margin: 0;
    position: absolute;
    top: -5px;
    right: 0;
}

@media all and (max-width: 1024px) {
    .module-financial-quarter .module_options {
        margin: 0 0 20px;
        position: static;
        text-align: left;
    }

    .module-financial-quarter--archive {
        margin-top: 30px;
    }
}

.module-financial-quarter .module_options-select {
    margin-right: 0;
}

.module-financial-quarter .module_item {
    padding: 0;
    margin-bottom: 10px;
}

.module-financial-quarter .module_item ~ .module_item {
    border: none;
}

.module-financial-quarter .module_item.js--active h3:after {
    transform: translateY(-50%) rotate(-180deg);
}

.module-financial-quarter .module_links {
    margin: 0;
    padding: 30px 30px 10px;
}

.module-financial-quarter .module_link-container {
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    margin-bottom: 30px;
}

@media all and (max-width: 767px) {
    .module-financial-quarter .module_link-container {
        width: 50%;
    }
}

@media all and (max-width: 480px) {
    .module-financial-quarter .module_link-container {
        width: 100%;
    }
}

.module-financial-quarter .module_link {
    font-size: 18px;
    font-size: 1.8rem;
    text-transform: none;
    color: #000;
    font-weight: 700;
    line-height: 18.9px;
    margin: 0;
    padding-left: 40px;
}

.module-financial-quarter .module_link:before {
    font-size: 28px;
    font-size: 2.8rem;
    margin-top: -4px;
    margin-left: -40px;
    min-width: 30px;
}

@media all and (max-width: 767px) {
    .module-financial-quarter .module_link:before {
        display: inline-block;
    }
}

.module-financial-quarter .module_link.module_link-news:before {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: -2px;
}

.module-financial-quarter .module_link.module_link-presentation:before {
    font-size: 26px;
    font-size: 2.6rem;
    margin-top: -2px;
}

.module-financial-quarter .module_link.module_link-webcast:before {
    font-size: 26px;
    font-size: 2.6rem;
    margin-top: -4px;
}

.module-financial-quarter .module-financial_year-text {
    padding: 19px 50px 19px 25px;
    color: #3C444F;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 30px;
    margin: 0;
    position: relative;
    background-color: #F7F7F7;
    transition: all 350ms ease-in-out;
    border-bottom: 2px solid #F7F7F7;
}

@media all and (max-width: 767px) {
    .module-financial-quarter .module-financial_year-text {
        font-size: 20px;
        font-size: 2rem;
    }
}

.module-financial-quarter .js--active .module-financial_year-text {
    background-color: transparent;
    border-bottom: 2px solid #000;
}

.module-financial-quarter .module-financial_year-text:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: b;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e90f";
    position: absolute;
    color: #3C444F;
    right: 25px;
    font-size: 26px;
    font-size: 2.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.module-financial-table_header {
    background-color: #02EFDB;
    color: #F7F7F7;
}

.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: #0F364A;
}

.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 all and (max-width: 767px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media all 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%);
    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;
}

.module-financial-mashup .module_body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.module-financial-mashup .module_body > *:first-child, .module-financial-mashup .module_body > style + p {
    margin-top: 0;
}

.module-financial-mashup .module_body:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70ffffff', endColorstr='#fff', GradientType=0);
}

.module-financial-mashup h4 {
    margin-top: 16px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links + h4 {
    margin-top: 30px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links > div {
    background-color: #0F364A;
    padding: 15px;
    margin-bottom: 1px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
}

.module-financial-mashup .q4-icon_chevron-right {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
}

.module-financial-mashup .button {
    width: 100%;
}

.module-financial-mashup .button.js--selected {
    background: #235F73;
    color: #fff;
}

@media all and (min-width: 768px) {
    .module-financial-mashup .module_options--mobile {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .module-financial-mashup .module_options--desktop {
        display: none;
    }
}

/* Latest Quarterly Result Widget */
.module-financial-latest {
    border-bottom: 2px solid #71C5E8;
}

.module-financial-latest .module_item {
    padding: 0;
}

.module-financial-latest .module_links {
    margin: 0;
}

.module-financial-latest .module_link-container-outer {
    vertical-align: top;
    display: inline-block;
}

@media all and (max-width: 767px) {
    .module-financial-latest .module_link-container-outer {
        display: none;
    }

    .module-financial-latest.js--revealed .module_link-container-outer, .module-financial-latest .module_link-container-outer:nth-child(-n+3) {
        display: block;
    }
}

.module-financial-latest .module_link-container {
    margin: 0 40px 25px 0;
    padding: 0;
}

.module-financial-latest .module_link-container-outer:nth-child(-n+3) .module_link-container {
    /* border-bottom: 2px solid #0F364A; */
}

@media all and (max-width: 1024px) {
    .module-financial-latest .module_link-container {
        padding: 10px 0 20px;
        border-bottom: 2px solid #0F364A;
    }
}

@media all and (max-width: 767px) {
    .module-financial-latest .module_link-container {
        margin: 0 0 10px;
        border-bottom: 1px solid #979797;
        padding: 10px 0 20px 20px;
    }

    .module-financial-latest .module_link-container-outer:nth-child(-n+3) .module_link-container {
        border-bottom: 1px solid #979797;
    }
}

.module-financial-latest .module_link {
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    padding: 9px 0 9px 50px;
}

@media all and (max-width: 767px) {
    .module-financial-latest .module_link {
        font-size: 16px;
        padding: 0 0 0 35px;
    }
}

.module-financial-latest .module_link:before {
    display: inline-block;
    font-size: 38px;
    font-size: 3.8rem;
    padding: 0;
    margin-left: -50px;
    margin-top: 2px;
    text-align: left;
}

.module-financial-latest .module_link.module_link-news:before {
    font-size: 32px;
    font-size: 3.2rem;
    margin-top: 5px;
}

.module-financial-latest .module_link.module_link-presentation:before {
    font-size: 34px;
    font-size: 3.4rem;
    margin-top: 6px;
}

.module-financial-latest .module_link.module_link-webcast:before, .module-financial-latest .module_link.module_webcast-link:before {
    font-size: 38px;
    font-size: 3.8rem;
}

@media all and (max-width: 767px) {
    .module-financial-latest .module_link:before {
        font-size: 24px;
        font-size: 2.4rem;
        margin-left: -35px;
    }

    .module-financial-latest .module_link.module_link-news:before {
        font-size: 22px;
        font-size: 2.2rem;
        margin-top: 2px;
    }

    .module-financial-latest .module_link.module_link-presentation:before {
        font-size: 22px;
        font-size: 2.2rem;
        margin-top: 4px;
    }

    .module-financial-latest .module_link.module_link-webcast:before, .module-financial-latest .module_link.module_webcast-link:before {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.module-financial-latest .module_link:hover .module_link-text {
    /* text-decoration: underline; */
}

.module-financial-latest .module_link-more-container {
    display: none;
    text-align: center;
    margin-top: 20px;
}

@media all and (max-width: 767px) {
    .module-financial-latest .module_link-more-container {
        display: block;
    }

    .module-financial-latest.js--revealed .module_link-more-container {
        display: none;
    }

    .module-financial-latest .module_button-container {
        text-align: center;
    }
}

/*------ Formbuilder Module ------*/
.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;
}

@media all and (max-width: 767px) {
    .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: #F26407;
}

.module-form .module_container--captcha > div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.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 all and (max-width: 767px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}

.module-form_error-text {
    color: #F26407;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.fancybox-slide--form .fancybox-content {
    margin: 10px auto;
    max-width: 1000px;
    width: 80% !important;
    height: calc(100% - 20px);
    overflow: visible;
}

.fancybox-slide--form_confirmation .fancybox-content {
    max-width: 700px;
}

.fancybox-slide--form .fancybox-button--close {
    display: none;
}

.module-form--meeting {
    padding: 0 20px !important;
}

.module-form--meeting .module_container--outer {
    padding: 0 !important;
}

.module-form--meeting_header {
    padding: 20px !important;
}

.module-form--meeting_header .module_container--outer {
    padding: 0 !important;
}

@media screen and (min-width: 768px) {
    .module-form--meeting_header .grid {
        direction: rtl;
    }

    .module-form--meeting_header .grid .grid_col {
        direction: ltr;
    }
}

.module-form--meeting_header-intro {
    font-size: 13px;
    font-size: 1.3rem;
}

@media all and (max-width: 767px) {
    .module-form--meeting_header-intro {
        text-align: center;
    }
}

.module-form--meeting_header-intro h3 {
    margin: 0 0 10px 0;
    color: #F7F7F7;
    font-size: 26px;
    font-size: 2.6rem;
}

.module-form--meeting_header-intro p {
    margin: 0;
}

@media all and (max-width: 767px) {
    .module-form--meeting_header-logo {
        text-align: center;
        margin-bottom: 10px;
    }
}

.module-form--meeting_header-logo span {
    font-size: 11px;
    font-size: 1.1rem;
    display: block;
}

.module-form--meeting_header-logo img {
    margin: 5px;
}

.module-form--meeting_footer {
    background-color: #02EFDB;
    color: #F7F7F7;
    font-size: 13px;
    font-size: 1.3rem;
}

.module-form--meeting_footer img {
    margin-right: 20px;
    vertical-align: bottom;
}

.module-form--meeting .module_introduction {
    font-size: 13px;
    font-size: 1.3rem;
    margin: 0;
}

.module-form--meeting .module-form_item--namehidden label {
    visibility: hidden;
}

@media all and (max-width: 767px) {
    .module-form--meeting .module-form_item--namehidden 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;
    }
}

@media all and (min-width: 768px) {
    .module-form--meeting .module-form_item--additional-information-optional {
        width: 75%;
    }
}

.module-form--meeting .module-form_item--date-request-optional {
    position: relative;
}

@media all and (min-width: 768px) {
    .module-form--meeting .module-form_item--date-request-optional {
        width: 25%;
    }
}

.module-form--meeting .module-form_item--date-request-optional: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: "\e90c";
    position: absolute;
    right: 20px;
    bottom: calc(50% - 19px);
    color: #222;
    opacity: 0.5;
}

.module-form--meeting .module-form_item--current-shareholder {
    display: block;
}

.module-form--meeting .module-form_item--current-shareholder legend {
    margin-bottom: 0;
}

@media all and (max-width: 480px) {
    .module-form--meeting .module-form_item--current-shareholder legend {
        display: block;
        float: none;
    }
}

.module-form--meeting .module-form_item--current-shareholder ul {
    display: inline-block;
    padding-left: 20px;
}

@media all and (max-width: 480px) {
    .module-form--meeting .module-form_item--current-shareholder ul {
        display: block;
        padding-left: 0;
        padding-top: 10px;
    }
}

.module-form--meeting .module-form_item--current-shareholder ul li {
    padding-left: 20px;
    display: inline-block;
    vertical-align: top;
}

@media all and (max-width: 480px) {
    .module-form--meeting .module-form_item--current-shareholder ul li {
        padding-left: 0;
        padding-right: 20px;
    }
}

.module-form--meeting .module-form_itemCaptcha {
    position: relative;
    padding-left: 25px;
}

.module-form--meeting .module-form_itemCaptcha input[type="text"] {
    color: #231F20;
}

.module-form--meeting .module_dropdown {
    color: #231F20;
}

.module-form--meeting .module_dropdown.module_dropdown--placeholder {
    color: rgba(35, 31, 32, 0.5);
}

.module-form--meeting .module_input {
    color: #231F20;
}

.module-form--meeting .module_input::-webkit-input-placeholder {
    color: rgba(35, 31, 32, 0.5);
    opacity: 1;
}

.module-form--meeting .module_input::-moz-placeholder {
    color: rgba(35, 31, 32, 0.5);
    opacity: 1;
}

.module-form--meeting .module_input:-ms-input-placeholder {
    color: rgba(35, 31, 32, 0.5);
    opacity: 1;
}

.module-form--meeting .module_dropdown--placeholder {
    color: #a9a9a9;
}

.module-form--meeting .module_required {
    display: none;
}

.module-form--meeting .module_actions {
    margin: 0 -20px;
    padding: 20px;
    background-color: #235F73;
    text-align: right;
}

.module-form--meeting .module_actions .module_link {
    color: #F7F7F7;
    margin: 0 15px 0 0;
    text-decoration: none;
    text-transform: none;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-form--meeting .module_actions .button, .module-form--meeting .module_actions .button:hover {
    background-color: #0F364A;
    border-color: #0F364A;
    color: #F7F7F7;
}

.module-form--meeting_confirmation {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    max-width: 520px;
    margin: auto;
}

.module-form--meeting_confirmation .module_container--inner: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: 46px;
    color: #235F73;
    display: block;
    margin: auto;
}

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #231F20;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #02EFDB;
}

/*---------- Job Modules ---------*/
.module-job-list_table-wrap {
    overflow-x: auto;
}

.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: "Suisse Intl", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0;
}

@media all 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 all and (max-width: 767px) {
    .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: 700;
    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--main {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 251px);
}

@media all and (max-width: 1350px) {
    .nav--main {
        width: calc(100% - 210px);
    }
}

@media all and (max-width: 1024px) {
    .nav--main {
        display: none;
    }
}

@media all and (max-width: 979px) {
    .nav--main {
        width: calc(100% - 225px);
    }
}

@media all and (max-width: 767px) {
    .nav--main {
        display: none;
    }
}

.nav--main a {
    text-decoration: none !important;
}

.nav--main .level1 {
    display: inline-block;
}

.nav--main .level1 ul > li {
    transform: translateY(-1em);
    opacity: 0;
    transition: all .2s ease-out;
}

.nav--main .level1 .sfHover ul > li {
    transform: translateY(0);
    opacity: 1;
}

.nav--main .level1 ul > li:nth-child(2) {
    transition-delay: .05s;
}

.nav--main .level1 ul > li:nth-child(3) {
    transition-delay: .1s;
}

.nav--main .level1 ul > li:nth-child(4) {
    transition-delay: .15s;
}

.nav--main .level1 ul > li:nth-child(5) {
    transition-delay: .2s;
}

.nav--main .level1 ul > li:nth-child(6) {
    transition-delay: .25s;
}

.nav--main .level1 ul > li:nth-child(7) {
    transition-delay: .3s;
}

.nav--main .level1 ul > li:nth-child(8) {
    transition-delay: .35s;
}

.nav--main .level1 ul > li:nth-child(9) {
    transition-delay: .4s;
}

.nav--main .level1 ul > li:nth-child(10) {
    transition-delay: .45s;
}

.nav--main .level1 > li {
    display: inline-block;
    vertical-align: middle;
}

.nav--main .level1 > li > a {
    color: #231f20;
    font-weight: 400;
    padding: 55px 20px 26px;
    display: block;
    position: relative;
    font-size: 18px;
}

@media all and (max-width: 1550px) {
    .nav--main .level1 > li > a {
        padding: 55px 14px 26px;
    }
}

@media all and (max-width: 1400px) {
    .nav--main .level1 > li > a {
        padding: 55px 11px 26px;
    }
}

@media all and (max-width: 1350px) {
    .nav--main .level1 > li > a {
        font-size: 16px;
    }
}

@media all and (max-width: 1200px) {
    .nav--main .level1 > li > a {
        font-size: 17px;
    }
}

@media all and (max-width: 1100px) {
    .nav--main .level1 > li > a {
        font-size: 16px;
        padding: 55px 10px 26px;
    }
}

.nav--main .level1 > li.selected > a, .nav--main .level1 > li.expanded > a {
    /* font-weight: 700; */
}

.nav--main .level1 > li > a:after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    height: 5px;
    background-color: #71C5E8;
    content: none;
}

.nav--main .level1 > li.sfHover > a:after, .nav--main .level1 > li > a:hover:after, .nav--main .level1 > li > a:focus:after {
    content: "";
}

.nav--main .level1 > li.has-children {
    position: relative;
}

.nav--main .level2 {
    display: none;
    position: absolute;
    background: #fff;
    width: 280px;
    padding: 20px 0;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.37);
}

.nav--main .sfHover .level2 {
    display: block;
}

.nav--main .level2 > li > a {
    display: block;
    padding: 7px 25px;
    color: #231F20;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.nav--main .level2 > li > a:hover, .nav--main .level2 > li.selected > a {
    color: #71C5E8;
}

.nav--main .level2 > li.has-children {
    position: relative;
}

.nav--main .level3 {
    display: none;
    position: absolute;
    background: #fff;
    width: 267px;
    padding: 0;
    left: 100%;
    top: 0;
}

.nav--main .level3 > li > a {
    display: block;
    padding: 15px 25px;
    color: #231F20;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
}

.nav--main .level3 > li > a:hover, .nav--main .level3 > li.selected > a {
    color: #02EFDB;
}

/* Mobile Navigation */
.nav--mobile {
    display: none;
}

@media all and (max-width: 1024px) {
    .nav--mobile {
        display: block;
    }
}

.nav--mobile a:hover {
    text-decoration: none !important;
}

.nav--mobile .level1 > li {
    border-top: 1px solid #a2a4a3;
    display: block;
}

.nav--mobile .level1 > li > a {
    line-height: 1.75;
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    color: #231f20;
    font-size: 11.2px;
    font-size: 1.12rem;
    font-weight: 400;
    padding: 8.3px 14px;
    text-transform: uppercase;
}

.nav--mobile .level1 > li.selected > a {
    font-weight: 700;
}

.nav--mobile .level1 > li.has-children > a, .nav--mobile .level2 > li.has-children > a {
    position: relative;
}

.nav--mobile .level1 > li.has-children > a:after, .nav--mobile .level2 > li.has-children > a:after {
    content: "";
    position: absolute;
    right: 14.5px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-top-color: #d2d4d3;
    transition: transform .2s ease-out;
    display: inline-block;
}

.nav--mobile .level2 > li.has-children > a:after {
    right: 31.5px;
}

.nav--mobile .level1 > li.js--expanded.has-children > a:after, .nav--mobile .level2 > li.js--expanded.has-children > a:after {
    -webkit-transform: translateY(-50%) rotateX(180deg);
    transform: translateY(-50%) rotateX(180deg);
}

.nav--mobile .level2 {
    display: none;
    border-top: 1px solid #d2d4d3;
}

.nav--mobile .js--expanded .level2 {
    display: block;
}

.nav--mobile .level2 > li > a {
    display: block;
    padding: 8.4px 31.5px;
    font-size: 14px;
    font-weight: 700;
    color: #231F20;
}

.nav--mobile .level2 > li > a:hover, .nav--mobile .level2 > li.js--selected > a, .nav--mobile .level2 > li.selected > a {
    background-color: #F7F7F7;
    color: #02EFDB;
}

.nav--mobile .level3 {
    display: none;
    border-top: 1px solid #d2d4d3;
    padding: 10px 0;
}

.nav--mobile .js--expanded > .level3 {
    display: block;
}

.nav--mobile .level3 > li > a {
    display: block;
    padding: 8px 50px;
    font-size: 12px;
    color: #231F20;
    text-transform: uppercase;
}

.nav--mobile .level3 > li > a:hover, .nav--mobile .level3 > li.js--selected > a, .nav--mobile .level3 > li.selected > a {
    background-color: #F7F7F7;
    color: #02EFDB;
}

/* Secondary navigation */
.nav--secondary {
    display: block;
}

@media all and (max-width: 1024px) {
    .nav--secondary {
        display: none;
    }
}

.nav--secondary a {
    color: #fff;
}

.nav--secondary a:hover {
    text-decoration: none !important;
    color: #02EFDB;
}

.nav--secondary .level1 > li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
}

.nav--secondary .level1 > li > a {
    display: block;
    padding: 10px 0;
}

.nav--secondary .level1 > li.sfHover > a, .nav--secondary .level1 > li.selected > a {
    color: #02EFDB;
}

.nav--sitemap {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media all and (max-width: 1200px) {
    .nav--sitemap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media all and (max-width: 979px) {
    .nav--sitemap {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.nav--sitemap a {
    display: inline-block;
}

.nav--sitemap .level1 {
    column-count: 3;
    column-gap: 20px;
}

.nav--sitemap .level1 > li {
    break-inside: avoid;
    display: block;
}

.nav--sitemap .level1 > li:not(:last-of-type) {
    margin-bottom: 35px;
}

.nav--sitemap .level1 > li > a, .nav--sitemap .level1 > li > a:visited {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 2.4rem;
    color: #235F73;
    text-transform: uppercase;
}

.nav--sitemap .level2 > li, .nav--sitemap .level3 > li {
    padding: 5px 0;
}

.nav--sitemap .level2 > li > a, .nav--sitemap .level3 > li > a {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav--sitemap .level2 > li > a {
    margin-bottom: 5px;
}

.nav--sitemap .level3 > li {
    padding-left: 15px;
}

@media all and (max-width: 767px) {
    .nav--sitemap .level1 {
        column-count: 2;
    }
}

@media all and (max-width: 480px) {
    .nav--sitemap .level1 {
        column-count: auto;
        column-gap: normal;
    }
}

/*-------- News Module CSS -------*/
.module-news .module_nav {
    display: none;
}

@media all and (max-width: 767px) {
    .module-news .module_options-item {
        display: block;
        margin-bottom: 10px;
    }
}

.module-news .module_options-label-year {
    margin-top: 7px;
}

@media all and (max-width: 767px) {
    .module-news .module_options-label-year {
        display: block;
        margin: 0 0 5px;
    }
}

.module-news .module_date-time {
    margin-bottom: 10px;
}

.module-news-latest .module_container--content {
    margin-bottom: 20px;
}

.module-news-latest .module_item {
    margin: 10px 0 20px;
    padding: 0 0 0 20px;
    border: none;
    text-align: left;
}

.module-news-latest .module_item-wrap {
    height: 100%;
    padding: 30px;
    background: #F7F7F7;
}

.module-news-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
    color: #231F20;
}

.module-news-latest .module_headline {
    line-height: 1.5;
    font-weight: 200;
}

.module-news-latest .module_headline-link, .module-news-latest .module_headline-link:visited {
    color: #231F20 !important;
}

.module-news-latest .module_links {
    margin: 0;
}

.module-news-latest .module_link {
    color: #02EFDB;
}

.module-news-accordion .module_item {
    padding: 30px 0 20px;
}

.module-news-accordion .module_item + .module_item {
    border-top: 1px solid #EBEBEB;
}

.module-news-accordion .module_link-container {
    margin: 10px 0 0 0;
}

.module-news-accordion .module_headline {
    display: inline-block;
    position: relative;
    padding-right: 30px;
    margin: 0;
}

.module-news-accordion .module_headline-link {
    display: inline;
}

.module-news-accordion .module_shortbody {
    padding: 5px 0 0;
}

.module-news-accordion .accordion-arrow {
    display: inline-block;
    text-decoration: none !important;
    line-height: 0;
}

.module-news-accordion .accordion-arrow:before {
    content: "\e90f";
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #235F73;
    font-size: 2.4rem;
    display: block;
    transition: 300ms ease-in-out transform;
    transform: rotate(0);
}

.module-news-accordion .js--active .accordion-arrow:before {
    transform: rotate(-180deg);
}

.module-news-accordion .module_headline .accordion-arrow {
    position: absolute;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
}

.module-news-accordion .module_links {
    margin-bottom: 0;
}

.module-details a, .module-html a {
    word-break: break-word;
}

.module-news-details .module_view-all-link {
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
    padding-left: 18px;
    font-size: 18px;
    line-height: 1;
}

.module-news-details .module_view-all-link:before {
    content: "\e910";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    margin: -1px 0 0;
}

.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;
}

.module-news-details .module_multimedia .module_link {
    margin: 0;
    display: block;
    font-weight: normal;
    text-transform: none;
}

.module-news-details .module_multimedia-caption {
    margin-bottom: 16px;
}

.module-news-details .module_multimedia-caption .module_file-text {
    display: block;
}

.module-news-details .module_multimedia-caption .module_file-resolution {
    display: none;
}

.module-news-details .module_multimedia-image {
    width: 100%;
    float: none;
}

.module-news-details .module_multimedia-size {
    margin-top: 10px;
}

.module-news-details .module_multimedia-size .module_file-size {
    display: inline;
}

.module-news-details .module_multimedia-size .module_file-resolution:before {
    content: "(";
}

.module-news-details .module_multimedia-size .module_file-resolution:after {
    content: ")";
}

@media all and (max-width: 1024px) {
    .module-news-details .module_multimedia-item {
        margin-bottom: 30px;
    }
}

/* News Grid */
.module-news-grid .module_container--inner {
    position: relative;
}

.module-news-grid .module_item-container {
    margin-bottom: 20px;
}

.module-news-grid .module_item {
    height: 100%;
    padding: 10px 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 2px solid #000;
}

.module-news-grid.dark .module_item, .module-news-grid .dark .module_item {
    border-color: #71C5E8;
}

@media all and (max-width: 767px) {
    .module-news-grid .module_item {
        padding: 10px 0 20px;
    }
}

.module-news-grid .module_link-container, .module-news-grid .module_button-container {
    margin: 0;
}

@media all and (max-width: 767px) {
    .module-news-grid .module_button-container {
        position: static;
    }
}

.module-news-landing .module_container--inner > .module_button-container {
    margin: 0;
    position: absolute;
    right: 0;
    top: -90px;
}

@media all and (max-width: 767px) {
    .module-news-landing .module_container--inner > .module_button-container {
        margin: 20px 0 0;
        position: static;
    }
}

.module-news-landing .module_item {
    border: none;
}

/* News List */
.module-news-list .module_item {
    padding: 30px 0 20px;
}

.module-news-list .module_item + .module_item {
    border-top: 1px solid #000;
}

.module-news-list .module_link-container {
    margin: 10px 0 0 0;
}

.module-news-list .module_headline {
    display: inline-block;
    position: relative;
    padding-right: 30px;
    margin: 0;
}

.module-news-list .module_headline-link {
    display: inline;
}

.module-news-list .module_shortbody {
    padding: 5px 0 0;
}

.module-news-list .module_shortbody:before, .module-news-list .module_shortbody:after {
    content: "";
    display: table;
    clear: both;
}

.module-news-list .module_shortbody img {
    /* float: left; */
    margin: 0 20px 20px 0;
    /* max-width: 350px; */
}

.module-news-list .module_shortbody img + * {
    clear: left;
}

.module-news-list .module_links {
    margin-bottom: 0;
}

.module-news-podcasts .module_date-time {
    margin-bottom: 10px;
}

/*------ Person List Module ------*/
.module-person .module-person_description, .module-person .module-person_res-photo-container, .module-person .module_comma {
    display: none;
}

.module-person .module-person_description p {
    margin-bottom: 10px;
}

.module-person .module_item {
    position: relative;
    border-bottom: 1px solid #000;
    padding: 0 0 10px;
    margin-bottom: 50px;
    max-width: 300px;
}

@media all and (max-width: 480px) {
    .module-person .module_item {
        position: relative;
        border-bottom: 1px solid #000;
        padding: 0 0 35px;
        margin-bottom: 50px;
        max-width: none;
        text-align: center;
    }
}

.module-person .module-person_photo-container {
    font-size: 0;
    cursor: pointer;
}

.module-person .module-person_photo-container img {
    width: 100%;
}

.module-person .module-person_photo-container > a {
    max-width: 261px;
    display: inline-block;
}

.module-person .module-person_name-container {
    margin-top: 15px;
    min-height: 55px;
}

.module-person--management .module-person_name-container {
    margin-top: 15px;
    min-height: 100px;
}

.module-person .module-person_name-container h3 {
    margin: 0;
}

.module-person .module-person_name-container a {
    color: #3C444F;
}

.module-person .module-person_name {
    display: inline-block;
    font-size: 20px;
    font-size: 2rem;
    color: #3C444F;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
}

.module-person .module-person_suffix, .module-person_title {
    font-size: 13px;
    font-size: 1.3rem;
    display: none;
    line-height: 1.4;
}

.module-person--management .module-person_title {
    display: block;
    margin-top: 6px;
}

.fancybox-container .module-person .module_item {
    max-width: 1300px;
    padding: 60px 40px;
    margin: 0;
    border: none;
    position: relative;
}

@media all and (max-width: 767px) {
    .fancybox-container .module-person .module_item {
        padding: 60px 20px;
    }
}

.fancybox-container .module-person .fancybox-close-small {
    top: 61px;
    right: 40px;
}

@media all and (max-width: 767px) {
    .fancybox-container .module-person .fancybox-close-small {
        top: 61px;
        right: 20px;
    }
}

.fancybox-container .module-person_name-container {
    position: static;
    background: transparent;
    text-align: left;
    opacity: 1;
    visibility: visible;
    cursor: initial;
    margin: 0;
    padding: 0;
}

.fancybox-container .module-person_name-container h3 {
    position: static;
    transform: none;
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.fancybox-container .module-person_name-container a {
    color: #231F20;
    font-weight: 400;
}

.fancybox-container .module-person_name-container .module_link-print {
    color: #000;
    display: inline-block;
    font-size: 0;
    cursor: pointer;
    position: absolute;
    top: 62px;
    right: 90px;
}

@media all and (max-width: 767px) {
    .fancybox-container .module-person_name-container .module_link-print {
        top: 62px;
        right: 60px;
    }
}

.fancybox-container .module-person_name-container .module_link-print:hover {
    color: #02EFDB;
}

.fancybox-container .module-person_name-container .module_link-print i:before {
    font-size: 26px;
    font-size: 2.6rem;
}

.fancybox-container .module-person_photo-container {
    margin: 0 20px 10px 0;
    cursor: initial;
    float: left;
}

@media all and (max-width: 767px) {
    .fancybox-container .module-person_photo-container {
        margin: 0 0 20px 0;
        float: none;
    }

    .fancybox-container .module-person_photo-container img {
        width: auto;
    }
}

.fancybox-container .module-person_photo-container a {
    pointer-events: none;
}

.fancybox-container .module-person_name {
    display: inline-block;
    font-size: 29px;
    font-size: 2.9rem;
    color: #0F364A;
    font-weight: 700;
    line-height: 27px;
    margin: 0;
    padding: 0 75px 15px 0;
}

@media all and (max-width: 767px) {
    .fancybox-container .module-person_name {
        margin: 0 0 10px;
        display: block;
    }
}

.fancybox-container .module-person_title {
    font-size: 16px;
    font-size: 1.6rem;
    display: inline;
    color: #235F73;
    line-height: 24px;
    display: block;
    border-bottom: 2px solid #235F73;
    padding: 0 0 20px;
    font-weight: bold;
}

@media all and (max-width: 767px) {
    .fancybox-container .module-person_title {
        margin: 0;
        display: block;
    }
}

.fancybox-container .module-person_title br {
    /* display: none; */
}

.fancybox-container .module-person_description-container {
    margin: 0;
    padding: 25px 0 0;
}

.fancybox-container .module-person_description {
    color: #0F364A;
    max-width: 1150px;
    display: block;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #000000;
    line-height: 22px;
    position: relative;
    padding: 20px 0;
    cursor: pointer;
}

.module-person-accordion .js--active .module-person_name-container h3 {
    color: #235F73;
}

.module-person-accordion .module-person_name-container h3:after {
    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: "\e90f";
    position: absolute;
    right: 25px;
    font-size: 26px;
    font-size: 2.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.module-person-accordion .js--active .module-person_name-container h3:after {
    transform: translateY(-50%) rotate(-180deg);
}

.module-person-accordion .module_item {
    padding: 0;
    border-bottom: 1px solid #D8D8D8;
}

.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 {
    background-color: #F7F7F7;
    padding: 25px 50px 20px 15px;
    border-top: 1px solid #D8D8D8;
}

.module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 20px 0;
}

@media all and (max-width: 767px) {
    .module-person-accordion .module-person_photo-container {
        float: none;
        margin: 0 auto 15px auto;
        text-align: center;
    }
}

.module-person-accordion .module-person_res-photo-container {
    display: none;
}

.module-person-accordion .module-person_photo-container img {
    display: block;
    /* margin: auto; */
}

.module-person-accordion .module-person_description > *:first-child {
    margin-top: 0;
}

.module-person-accordion .module-person_res-photo-container > span {
    margin-right: 10px;
}

@media all and (max-width: 767px) {
    .module-person-accordion .module-person_res-photo-container > span {
        display: block;
        margin: 0 0 10px 0;
    }
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details_photo-container {
    float: left;
    margin: 0 30px 15px 0;
}

.module-person-details_description {
    display: block;
}

.module-person-details_name-container {
    padding: 0;
    position: relative;
}

@media all and (max-width: 767px) {
    .module-person-details_photo-container {
        margin: 0 0 20px 0;
        float: none;
    }
}

.module-person-details_description > p + br {
    display: none;
}

.module-person-details_name-container .module_link-print {
    color: #000;
    display: inline-block;
    font-size: 0;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 0;
}

.module-person-details_name-container .module_link-print:hover {
    color: #02EFDB;
}

.module-person-details_name-container .module_link-print i:before {
    font-size: 22px;
    font-size: 2.2rem;
}

.module-person-details_name {
    display: block;
    margin: 0;
    font-size: 29px;
    font-size: 2.9rem;
    color: #0F364A;
    font-weight: 700;
    line-height: 27px;
    padding: 0 0 15px;
}

@media all and (max-width: 767px) {
    .module-person-details_name {
        display: block;
        margin: 0 0 10px;
        padding: 0 35px 0 0;
    }
}

.module-person-details_title {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #235F73;
    line-height: 24px;
    padding: 0 0 20px;
    border-bottom: 2px solid #235F73;
    font-weight: 400;
}

@media all and (max-width: 767px) {
    .module-person-details_title {
        display: block;
        margin: 0;
    }
}

.module-person-details_title br {
    display: none;
}

.module-person-details_description-container {
    padding-top: 30px;
}

.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: #235F73;
    font-size: 0;
    text-align: left;
    color: #F7F7F7;
    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: #235F73;
    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: "Suisse Intl", 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: #F7F7F7 url("../design/svg/dropdown.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: #02EFDB;
    color: #F7F7F7 !important;
}

@media all 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 all and (max-width: 767px) {
    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: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 6.6px 8px 5.6px 36px;
    border: 1px solid transparent;
    border-width: 0 0 1px;
    color: #000;
    background-color: transparent;
    height: auto;
    line-height: inherit;
    position: relative;
    z-index: 2;
}

@media all and (max-width: 979px) {
    .module-search_input[type="text"] {
        font-size: 14px;
        font-size: 1.4rem;
        padding: 4.9px 7px 4.9px 36px;
    }
}

.module-search--desktop .module-search_input[type="text"]::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: transparent;
}

.module-search--desktop .module-search_input[type="text"]:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: transparent;
}

.module-search--desktop .module-search_input[type="text"]::-ms-input-placeholder {
    /* Microsoft Edge */
    color: transparent;
}

.module-search_button {
    position: absolute;
    top: 6px;
    margin-left: 6px;
    border: 0;
    background-color: transparent;
    vertical-align: text-bottom;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    width: 21px;
    height: 21px;
    background-image: url(../images/sprites2-1x.png);
    background-repeat: no-repeat;
    background-position: -12px -179px;
    text-indent: -10000px;
    left: 0;
    opacity: 0.6;
    z-index: 2;
}

@media all and (max-width: 979px) {
    .module-search_button {
        top: 6px;
    }
}

.module-search--desktop {
    width: 192px;
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: 22.0432px;
}

@media all and (max-width: 1350px) {
    .module-search--desktop {
        width: 150px;
    }
}

@media all and (max-width: 1024px) {
    .module-search--desktop {
        display: none;
    }
}

@media all and (max-width: 979px) {
    .module-search--desktop {
        width: 168px;
        margin-bottom: 19.0432px;
    }
}

@media all and (max-width: 767px) {
    .module-search--desktop {
        display: none;
    }
}

.module-search--desktop .module_container--outer {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #a2a4a3;
}

.module-search--desktop .module_container--outer:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    border: 1px solid #a2a4a3;
    transition: height .2s linear;
    height: 0;
    background: #fff;
    border-width: 1px 1px 0 1px;
    z-index: 1;
}

.module-search--desktop.js--focus .module_container--outer:after {
    height: 100%;
    transition: height .2s linear;
}

.module-search--mobile {
    display: none;
}

@media all and (max-width: 1024px) {
    .module-search--mobile {
        display: block;
    }
}

.module-search--mobile .module-search_input[type="text"] {
    font-size: 14px;
    padding: 8.68px 30px 8.68px 14px;
    border-color: transparent;
}

.module-search--mobile .module-search_input[type="text"]::-webkit-input-placeholder {
    color: #757575;
    opacity: 1;
}

.module-search--mobile .module-search_input[type="text"]::-moz-placeholder {
    color: #757575;
    opacity: 1;
}

.module-search--mobile .module-search_input[type="text"]:-ms-input-placeholder {
    color: #757575;
    opacity: 1;
}

.module-search--mobile .module-search_button {
    left: auto;
    right: 14px;
    top: 9px;
}

/* Search News */
.module-search--news {
    display: inline-block;
    vertical-align: middle;
    width: 250px;
}

@media all and (max-width: 480px) {
    .module-search--news {
        width: 100%;
    }
}

.module-search--news .module-search_input[type="text"] {
    padding: 0 20px;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    border-radius: 0;
    font-family: "Suisse Intl", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    vertical-align: top;
    font-weight: normal;
    height: 40px;
    line-height: 36px;
}

.module-search--news .module-search_input[type="text"]::-webkit-input-placeholder {
    color: transparent;
    opacity: 1;
}

.module-search--news .module-search_input[type="text"]::-moz-placeholder {
    color: transparent;
    opacity: 1;
}

.module-search--news .module-search_input[type="text"]:-ms-input-placeholder {
    color: transparent;
    opacity: 1;
}

.module-search--news .module-search_button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    margin: 0;
}

.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;
}

.module-search-results {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
}

@media all and (max-width: 1200px) {
    .module-search-results {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media all and (max-width: 979px) {
    .module-search-results {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.module-search-results .form_fields-right input {
    width: 100%;
    border-color: #235F73;
    color: #979797;
}

.module-search-results_result {
    padding-left: 0;
}

.module-search-results .form_field {
    margin-bottom: 25px;
    padding-left: 0;
}

.module-search-results .form_field--date {
    position: relative;
}

.module-search-results .form_field--date:after {
    content: "\ea5f";
    position: absolute;
    top: 39px;
    right: 12px;
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #02EFDB;
    clear: both;
    display: table;
    font-size: 18px;
}

.module-search-results .form_field--search {
    margin-bottom: 35px;
    padding-right: 30px;
}

.module-search-results .form_label {
    color: #235F73;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 7px;
}

.module-search-results .form_select {
    color: #235F73;
    font-size: 14px;
    width: 100%;
    border-color: #235F73;
    display: block !important;
    padding: 0 35px 0 15px;
    min-width: 0;
}

.module-search-results .form_select + .sbHolder {
    display: none;
}

.module-search-results .form_input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border: 2px solid #235F73;
    border-radius: 0;
    box-shadow: none;
    padding: 9px 30px 9px 15px;
    color: #235F73;
    display: block;
    font-weight: 700;
}

.module-search-results_link {
    text-transform: uppercase;
    color: #235F73;
    font-size: 14px;
    text-shadow: 0 1px 0 #FFFFFF;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
}

.module-search-results_item {
    /* box-shadow: inset 0 1px 0 0 rgba(204, 201, 196, 0.3), inset 0 -1px 0 0 rgba(204, 201, 196, 0.3); */
    padding: 30px 0;
    border-bottom: 1px solid #000;
}

.module-search-results_url, .module-search-results_result a {
    word-wrap: break-word;
}

.module-search-results_url {
    display: none;
}

.module-search-results_result:after {
    content: '';
    display: table;
    clear: both;
}

.module-search-results_description {
    color: #000;
    font-size: 14px;
    text-shadow: 0 1px 0 #FFFFFF;
    line-height: 1.5;
    font-weight: 400;
}

.module-search-results_summary {
    color: #235F73;
    font-size: 20px;
    margin: 0 0 20px;
}

.module-search-results_summary span {
    color: #02EFDB;
}

.module-search-results_pager {
    float: right;
}

.module-search-results .pager_list {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
}

.module-search-results .pager_list-item {
    background-color: transparent;
    margin: 0;
    font-weight: 400;
    color: #000;
    font-size: 13px;
    line-height: 17px;
    cursor: pointer;
    position: relative;
}

.module-search-results .pager_list-item a {
    display: block;
    color: #235F73;
    transition: .3s ease-in-out;
    padding: 11px 6px;
}

.module-search-results .pager_list-item a.active, .module-search-results .pager_list-item a:hover {
    color: #02EFDB;
}

.module-search-results .pager_list-item--previous, .module-search-results .pager_list-item--next {
    position: relative;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

.module-search-results .pager_list-item--previous > a, .module-search-results .pager_list-item--next > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 29px;
    height: 39px;
    text-align: center;
    background-color: transparent;
}

.module-search-results .pager_list-item--previous > a:after, .module-search-results .pager_list-item--next > a:after {
    content: "\edbe";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    /* color: #235F73; */
    vertical-align: top;
}

.module-search-results .pager_list-item--previous {
    transform: rotate(180deg);
}

.module-search-results .pager_list-item--next {
    margin-right: 25px;
}

.module-search-results .pager_text {
    display: none;
}

@media all and (max-width: 767px) {
    .module-search-results .form-fields-right .grid_col {
        padding-left: 0;
        padding-right: 0;
    }

    .module-search-results .form-fields-right .grid_col.form_field--search {
        padding-right: 15px;
    }
}

@media all and (max-width: 480px) {
    .module-search-results .form-fields-right .grid_col.form_field--search {
        padding-right: 0;
    }
}

@media all and (max-width: 500px) {
    .module-search-results .form_field.form_field--date {
        overflow: auto;
    }
}

/*-------- SEC Module CSS --------*/
.module-sec[data-sec] {
    display: none;
}

.module-sec.js--active[data-sec] {
    display: block;
}

.module-sec[data-sec] .module_options {
    padding-left: 267px;
}

@media all and (max-width: 767px) {
    .module-sec[data-sec] .module_options {
        padding-left: 0;
    }
}

.module-sec--widget .module_container--inner {
    position: relative;
}

.module-sec--widget .module_options--top {
    position: absolute;
    left: 0;
    top: 0;
}

@media all and (max-width: 767px) {
    .module-sec--widget .module_options--top {
        position: static;
        margin-bottom: 10px;
    }
}

.module-sec .module-sec_cik-select {
    width: 100%;
}

.module-sec .module_options-item {
    display: inline;
}

.module-sec .module_header {
    display: block;
    background-color: #0F364A;
}

.module-sec .module_header-text {
    padding: 24px 0 10px 15px;
    color: #ffffff;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 30px;
}

.module-sec .module_header-text:last-child {
    padding-right: 15px;
}

.module-sec .module_item {
    padding: 0;
    border-bottom: 1px solid #000;
}

.module-sec .module_item .grid_col {
    vertical-align: top;
    padding: 20px 0 10px 15px;
    color: #0F364A;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 27px;
}

.module-sec .module_item .grid_col:last-child {
    padding-right: 20px;
}

.module-sec .module-sec_date {
    text-transform: uppercase;
}

@media all and (max-width: 767px) {
    .module-sec .module_header {
        display: none;
    }

    .module-sec .module_item {
        padding: 15px 0 10px;
    }

    .module-sec .module_item:first-child {
        border-top: 1px solid #0F364A;
    }

    .module-sec .module_item .grid_col {
        padding: 0 5px;
        margin-bottom: 5px;
    }
}

.module-sec_download-list-item, .module-sec-details_download-list-item {
    display: inline-block;
    vertical-align: top;
}

.module-sec_download-list-item {
    margin-right: 4px;
}

.module-sec_download-list-item:last-child {
    margin-right: 0;
}

.module-sec_download-list .module_link, .module-sec-details_download-list .module_link {
    margin: 0;
    padding: 0;
}

.module-sec_download-list .module_link:before, .module-sec-details_download-list .module_link:before {
    font-size: 22px;
    font-size: 2.2rem;
}

@media all and (max-width: 767px) {
    .module-sec_download-list .module_link:before, .module-sec-details_download-list .module_link:before {
        display: inline-block;
    }
}

.module-sec-details_date, .module-sec-details_description {
    margin-bottom: 15px;
}

/*---- 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: #02EFDB;
    outline: 0;
}

.module-skip_link:visited {
    color: #F7F7F7;
}

.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: #F7F7F7;
}

.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 .module_container--content {
    overflow: hidden;
}

.module-stock-chart.dark .highcharts-container {
    background-color: #fff;
}

.module-stock-chart .js--hidden[data-highcharts-chart] {
    display: block !important;
    max-height: 0;
    overflow: hidden;
}

.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #0F364A;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-group > path:first-child {
    fill: #0F364A;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #0F364A;
}

.module-stock-chart .highcharts-series-0 > path:first-child {
    stroke: #0F364A;
}

.module-stock-chart .highcharts-series-0.highcharts-markers > path:first-child {
    fill: #0F364A;
}

.module-stock-chart .highcharts-series-1 > rect {
    fill: #0F364A;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #0F364A;
}

.module-stock-chart .highcharts-navigator rect {
    fill: #0F364A;
    opacity: 0.4;
}

.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: #0F364A;
}

.module-stock-chart .highcharts-navigator-handle-right path, .module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #F7F7F7;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #0F364A;
    stroke: #0F364A;
}

.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: #231F20;
}

.module-stock-chart .highcharts-container > svg > .highcharts-button {
    display: none;
}

.module-stock-chart .highcharts-tooltip path {
    stroke: #0F364A;
}

.module-stock-chart .highcharts-tooltip text tspan[dy] {
    fill: #0F364A !important;
}

/*------ Stock Header Module -----*/
.module-stock-header {
    color: #000;
}

.module-stock-header .module_container--outer {
    display: inline-block;
    padding: 45px 0 45px;
    position: relative;
}

@media all and (max-width: 767px) {
    .module-stock-header .module_container--outer {
        display: block;
        margin-top: 25px;
        padding: 30px 0;
    }
}

@media all and (max-width: 480px) {
    .module-stock-header .module_container--outer {
        display: block;
        margin-top: 30px;
    }
}

.module-stock-header_description1 {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.module-stock-header_stock-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px solid #000;
    margin-bottom: 10px;
}

.module-stock-header_stock-price {
    display: block;
    font-size: 42px;
    font-size: 4.2rem;
    color: #000;
    padding-left: 23px;
    position: relative;
    line-height: 1;
    font-weight: 700;
}

.module-stock-header_stock-price:before {
    content: '$';
    position: absolute;
    top: -3px;
    left: 0;
    font-size: 35px;
}

.module-stock-header_change, .module-stock-header_percent-change {
    font-size: 20px;
    font-size: 2rem;
    color: #000;
    line-height: 28px;
    text-align: right;
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_volume, .module-stock-header_market-cap {
    display: block;
    color: #000;
    font-size: 15px;
    line-height: 22px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.module-stock-header_market-cap {
    margin-bottom: 5px;
}

.module-stock-header_delay {
    border-top: 2px solid #000;
    margin-top: 10px;
    display: block;
    padding-top: 3px;
}

.module-stock-header_delay-text, .module-stock-header_date {
    display: inline;
    color: #000;
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0.36px;
    line-height: 24px;
}

@media all and (max-width: 480px) {
    .module-stock-header_delay-text, .module-stock-header_date {
        font-size: 9px;
        font-size: .9rem;
    }
}

.module-stock-header_delay-text:after {
    content: "|";
    display: inline;
    padding: 0 5px;
}

.module-stock-header .module_link-more {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.module-stock-header .module_link-more i:before {
    font-size: 1.4rem;
    height: 30px;
    width: 30px;
    line-height: 26px;
    border: 2px solid #000;
    color: #000;
    transition: 0.15s ease-in-out all;
    display: block;
    text-align: center;
}

.module-stock-header .module_link-more:hover i:before {
    background-color: #000;
    color: #fff;
}

/*------ Stock Quote Module ------*/
.module-stock .module_options {
    margin-bottom: 30px;
}

.module-stock .module_container--content {
    border-top: 1px solid #000;
}

.module-stock-historical .module_options-label {
    display: none;
}

@media all and (max-width: 767px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .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-historical .module-stock_lookup-title-text {
    display: none;
}

.module-stock .stock-historical-range .module_options > *:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_lookup-title {
    background: #0F364A;
    margin: 0;
    padding: 25px 15px 15px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}

@media all and (max-width: 767px) {
    .module-stock_lookup-title {
        padding-left: 10px;
    }
}

@media all and (max-width: 480px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }
}

.module-stock_label, .module-stock_value {
    border-bottom: 1px solid #000;
}

.module-stock_label > span, .module-stock_value > span {
    display: block;
    padding: 25px 10px 15px 0;
    color: #0F364A;
    font-size: 18px;
    line-height: 27px;
}

@media all and (max-width: 767px) {
    .module-stock .module-stock_empty {
        display: none;
    }

    .module-stock_value > span {
        text-align: right;
    }
}

.module-stock_up {
    color: #008000;
}

.module-stock_down {
    color: #F26407;
}

.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 {
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
    padding: 25px 0 15px;
}

.module-stock_delay {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: right;
    font-style: italic;
    padding: 25px 0 15px;
}

/*- MailingList Subscribe Module -*/
.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-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}

.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 all and (max-width: 767px) {
    .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: 10px;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 10px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.module-subscribe .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@media all and (max-width: 767px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}

/* MailingList Unsubscribe Module */
.module-unsubscribe_table {
    width: 50%;
}

@media all and (max-width: 767px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}

.module-unsubscribe_table td {
    padding-right: 10px;
}

@media all and (max-width: 767px) {
    .module-unsubscribe_table td {
        padding-right: 0;
    }
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/*==================================
 ----------- LAYOUT CSS -----------
==================================*/
/*------- iframe layout CSS ------*/
.layout--iframe .pane--content .module {
    padding: 25px 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}

/*==================================
 ------------ BLANK CSS -----------
==================================*/
/*-------- Layout Specific -------*/
.layout {
    overflow: hidden;
}

.layout_footer {
    background: #dbdcdd;
}

/*--------- Pane Specific --------*/
.pane--header {
    position: relative;
    z-index: 21;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding-bottom: 3px;
}

@media all and (max-width: 767px) {
    .pane--header {
        padding-bottom: 0px;
    }
}

.pane--header .pane_inner {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
}

@media all and (max-width: 1200px) {
    .pane--header .pane_inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media all and (max-width: 979px) {
    .pane--header .pane_inner {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.pane--header .layout_toggle {
    display: none;
    vertical-align: top;
    width: calc(100% - 57px);
    text-align: right;
}

@media all and (max-width: 1024px) {
    .pane--header .layout_toggle {
        display: inline-block;
    }
}

.layout_toggle .topnav-toggle {
    position: relative;
    padding: 20px 0;
    margin: 0;
    border: 0;
    color: #231f20;
    background-color: transparent;
    font-size: 12.6px;
    font-size: 1.26rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .1s linear;
    font-family: inherit;
    text-decoration: none !important;
}

@media all and (max-width: 979px) {
    .layout_toggle .topnav-toggle {
        padding: 16px 0;
    }
}

.layout_toggle .topnav-toggle:before, .layout_toggle .topnav-toggle:after {
    content: "";
    position: absolute;
    bottom: 23.8px;
    right: 8.70313px;
    width: 21px;
    height: 1.25px;
    background-color: transparent;
    transition: all .2s linear;
}

.js--mobile .layout_toggle .topnav-toggle {
    color: transparent;
}

.js--mobile .layout_toggle .topnav-toggle:before {
    background-color: #3c444f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.js--mobile .layout_toggle .topnav-toggle:after {
    background-color: #3c444f;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.pane--banner {
    background-image: url("../design/banner/banner_default.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.PageHome .pane--banner {
    background-image: url("../design/ICE-Banner-1920x600-v1.jpg");
    background-position: 100% 50%;
}

.pane--banner .pane_inner {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
}

@media all and (max-width: 1200px) {
    .pane--banner .pane_inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media all and (max-width: 979px) {
    .pane--banner .pane_inner {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.pane--banner .pane_inner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: auto;
    min-height: 193px;
    padding: 60px 0;
}

.PageHome .pane--banner .pane_inner-wrap {
    height: 612px;
}

@media all and (max-width: 767px) {
    .pane--banner .pane_inner-wrap, .PageHome .pane--banner .pane_inner-wrap {
        display: block;
        height: auto;
        min-height: 0;
    }
}

.pane--navigation {
    background: #0F364A;
}

.pane--navigation .pane_inner {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
}

@media all and (max-width: 1200px) {
    .pane--navigation .pane_inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media all and (max-width: 1024px) {
    .pane--navigation .pane_inner {
        padding-left: 0;
        padding-right: 0;
    }
}

@media all and (max-width: 1024px) {
    .pane--navigation {
        position: absolute;
        top: 126px;
        left: 0;
        right: 0;
        overflow-y: auto;
        z-index: 120;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        overflow-x: hidden;
        background: #fff;
        display: none;
    }

    .js--mobile .pane--navigation {
        display: block;
    }

    .pane--navigation .pane_inner {
        padding: 0;
    }
}

@media all and (max-width: 979px) {
    .pane--navigation {
        top: 107px;
    }
}

.pane--content .module {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pane--content .module_container--outer {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
}

@media all and (max-width: 1200px) {
    .pane--content .module_container--outer {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media all and (max-width: 979px) {
    .pane--content .module_container--outer {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.pane--content .module_container--inner {
    margin-left: auto;
    margin-right: auto;
}

.pane--content .module--thin {
    padding-top: 30px;
    padding-bottom: 30px;
}

.pane--content .module--thin-top {
    padding-top: 30px;
}

.pane--content .module--thin-bottom {
    padding-bottom: 30px;
}

.pane--content .module--thick {
    padding-top: 90px;
    padding-bottom: 90px;
}

.pane--content .module--thick-top {
    padding-top: 90px;
}

.pane--content .module--thick-bottom {
    padding-bottom: 90px;
}

.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: 25px;
}

.pane--footer {
    padding: 50px 0;
    color: #000;
}

.pane--footer .pane_inner {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
}

@media all and (max-width: 1200px) {
    .pane--footer .pane_inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media all and (max-width: 979px) {
    .pane--footer .pane_inner {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.pane--footer .module_title {
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
}

.module-subscribe--footer .module_error-container {
    margin-bottom: 20px;
}

.module-subscribe--footer .module_error-container p {
    display: none;
}

.module-subscribe--footer .module_error-container li {
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 1.6rem;
}

.module-subscribe--footer .module_introduction {
    display: none;
}

.module-subscribe--footer .module-subscribe_email label, .module-subscribe--footer .module-subscribe_list-header, .module-subscribe--footer .module-subscribe_email .module_required, .module-subscribe--footer .module-subscribe .CaptchaContainer {
    display: none;
}

.module-subscribe--footer .module-subscribe_form {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    width: calc(100% - 585px);
    padding: 0;
}

@media all and (max-width: 1200px) {
    .module-subscribe--footer .module-subscribe_form {
        width: calc(100% - 525px);
    }
}

@media all and (max-width: 1024px) {
    .module-subscribe--footer .module-subscribe_form {
        width: 100%;
    }
}

.module-subscribe--footer .module-subscribe_form tbody {
    display: block;
}

.module-subscribe--footer .module-subscribe_form tr {
    width: 100%;
    margin: 0;
    padding: 0;
}

.module-subscribe--footer .module-subscribe_mailing-list {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0 0 0 35px;
    width: 580px;
}

@media all and (max-width: 1200px) {
    .module-subscribe--footer .module-subscribe_mailing-list {
        padding: 0 0 0 15px;
        min-width: 0;
        width: 520px;
    }
}

@media all and (max-width: 1024px) {
    .module-subscribe--footer .module-subscribe_mailing-list {
        padding: 0;
        display: block;
        margin: 20px 0 10px;
        width: 100%;
    }
}

.module-subscribe--footer .module-subscribe_list > td {
    padding: 0;
}

.module-subscribe--footer .module-subscribe p {
    line-height: 1.5;
}

.module-subscribe--footer input[type="checkbox"] + label:before {
    border-color: #000;
}

.module-subscribe--footer input[type="checkbox"]:checked + label:before {
    background-color: #000;
}

.module-subscribe--footer .module-subscribe_table-container {
    position: relative;
    padding-right: 150px;
}

@media all and (max-width: 1024px) {
    .module-subscribe--footer .module-subscribe_table-container {
        padding-right: 0;
    }
}

.module-subscribe--footer .module_actions {
    width: 145px;
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media all and (max-width: 1024px) {
    .module-subscribe--footer .module_actions {
        transform: none;
        width: 100%;
        position: static;
    }
}

.module-subscribe--footer .module-subscribe_list tr {
    display: inline-block;
    vertical-align: middle;
    margin: 5px 25px 5px 0;
}

.module-subscribe--footer .module-subscribe_list tr:first-child {
    margin-right: 50px;
}

@media all and (max-width: 1200px) {
    .module-subscribe--footer .module-subscribe_list tr:first-child, .module-subscribe--footer .module-subscribe_list tr {
        margin: 5px 20px 5px 0;
    }
}

@media all and (max-width: 1024px) {
    .module-subscribe--footer .module-subscribe_list tr:first-child, .module-subscribe--footer .module-subscribe_list tr {
        margin: 0 0 15px 0;
        display: block;
    }
}

.module-subscribe--footer .module-subscribe_list tr td {
    color: #000;
    font-size: 14px;
    line-height: 23px;
    margin: 0;
    padding: 0;
}

@media all and (max-width: 1024px) {
    .module-subscribe--footer .module-subscribe_list tr td {
        font-size: 13px;
    }
}

.module-subscribe--footer .module_actions .button {
    width: 100%;
    display: block;
}

.module-subscribe--footer .module_input[type="text"], .module-subscribe--footer .module_input[type="email"] {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    font-size: 14px;
    padding: 0 20px;
    height: 40px;
    line-height: 36px;
}

/*.module-subscribe--footer .button {
    color: #71C5E8;
    border-color: #235F73;
    background-color: #235F73;
}

.module-subscribe--footer .button:hover {
    color: #02EFDB;
    border-color: #235F73;
    background-color: #235F73;
}*/
.pane--credits {
    padding-left: 8.33333%;
    padding-right: 8.33333%;
    background: #DBDCDD;
    text-align: center;
    line-height: 1;
}

@media all and (max-width: 1200px) {
    .pane--credits {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.pane--credits .pane_inner {
    position: relative;
}

.pane--credits .pane_inner-wrap {
    max-width: 515px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 0;
}

@media all and (max-width: 1350px) {
    .pane--credits .pane_inner-wrap {
        max-width: 420px;
    }
}

@media all and (max-width: 1024px) {
    .pane--credits .pane_inner-wrap {
        margin-right: 0;
        max-width: none;
        padding-left: 280px;
        padding-right: 44px;
    }
}

@media all and (max-width: 767px) {
    .pane--credits .pane_inner-wrap {
        margin: 0 auto;
        padding: 50px 0;
        max-width: 400px;
    }
}

.pane--credits a {
    color: #000;
    font-size: 12px;
    font-size: 1.2rem;
}

.pane--credits a:hover {
    color: #000;
}

/*--------- Page Specific --------*/
.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 25px;
    padding-bottom: 25px;
}

/*-------- Module Specific -------*/
.module-overview p {
    margin-bottom: 40px;
}

.module-overview_hidden {
    display: none;
}

.module-overview_hidden.js--revealed {
    display: block;
}

.module-overview_button:before {
    content: "Read More";
}

.module-overview_button.js--active:before {
    content: "Show Less";
}

.module-why-invest h3 {
    color: #231F20;
}

.module-why-invest h4 {
    font-size: 60px;
    font-size: 6rem;
    color: #02EFDB;
    font-weight: 300;
    margin-top: 0;
}

.module-why-invest .grid {
    padding-top: 25px;
    padding-bottom: 25px;
}

.module-why-invest .grid_col {
    padding-bottom: 15px;
    padding-right: 20px;
}

@media (min-width: 480px) {
    .module-why-invest .grid_col + .grid_col {
        border-left: 1px solid #235F73;
    }
}

.module-why-invest .grid_col p {
    margin-bottom: 0;
}

.module-cta {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
}

.module-cta .button: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: "\e90e";
    font-size: 16px;
    margin-right: 10px;
    vertical-align: sub;
}

.module-cta .button--cookie {
    color: black;
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
    z-index: 1;
    background-color: white;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.module-cta .button--cookie: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: "\ed6d";
    font-size: 10px;
    line-height: 20px;
    text-align: center;
    display: block;
}

/* Header Bar */
.module-header-bar {
    position: relative;
}

.module-header-bar:before {
    content: '';
    position: absolute;
    left: -10000%;
    right: -1000%;
    top: 0;
    bottom: 0;
    background-color: #dbdcdd;
}

.module-header-bar .module_container--outer {
    position: relative;
}

.module-header-bar .module_container--inner {
    padding-top: 8px;
    padding-bottom: 8px;
}

@media all and (max-width: 979px) {
    .module-header-bar .module_container--inner {
        padding-top: 2.8px;
        padding-bottom: 2.8px;
    }
}

.module-header-bar .module_container--content {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: baseline;
    text-align: right;
}

@media all and (max-width: 767px) {
    .module-header-bar .module_container--content {
        display: block;
    }
}

.module-header-bar_left {
    vertical-align: middle;
}

@media all and (max-width: 767px) {
    .module-header-bar_left {
        display: none;
    }
}

.module-header-bar_right {
    vertical-align: baseline;
    align-self: center;
}

.module-header-bar_list {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.module-header-bar_list > li {
    display: inline-block;
    padding: .3125em 0 .3125em 36px;
}

@media all and (max-width: 979px) {
    .module-header-bar_list > li {
        padding-left: 15.75px;
    }
}

.module-header-bar_list > li:not(:last-child) {
    margin-right: -.24em;
}

@media all and (max-width: 480px) {
    .module-header-bar_list > li:nth-last-child(2) {
        margin-right: 0;
    }
}

.module-header-bar_list > li:first-child {
    padding-left: 18px;
}

.module-header-bar_list > li > a {
    color: #000;
    padding: 5px 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    display: inline-block;
}

@media all and (max-width: 979px) {
    .module-header-bar_list > li > a {
        font-size: 14px;
        font-size: 1.4rem;
        padding-top: 4.375px;
        padding-bottom: 4.375px;
    }
}

@media all and (max-width: 767px) {
    .module-header-bar_list > li > a {
        line-height: 2.1875;
        display: inline;
    }
}

.module-header-bar_list > li > a:hover, .module-header-bar_list > li > a:focus {
    text-decoration: none;
}

.module-header-bar_list > li.js--active > a, .module-header-bar_list > li > a:hover {
    /* color: #00b5e2; */
}

.module-header-bar .logo-intercontinental-exchange {
    display: inline-block;
    overflow: hidden;
    width: 202px;
    height: 15px;
    background-image: url(../images/sprites2-1x.png);
    background-repeat: no-repeat;
    background-position: -14px -23px;
    text-indent: -10000px;
    vertical-align: text-bottom;
    color: transparent;
    display: none;
}

.module-header-bar-login {
    display: none;
}

.module-header-bar-login .button {
    padding: .42857em .85714em;
    height: auto;
    font-weight: 700;
    line-height: 1.65;
    min-width: 0;
}

.module-header-bar-login .button + .button {
    margin-left: 9.6px;
}

@media all and (max-width: 979px) {
    .module-header-bar-login .button {
        font-size: 12.25px;
        font-size: 1.225rem;
    }

    .module-header-bar-login .button + .button {
        margin-left: 8.4px;
    }
}

.module-header-bar-login .button--info {
    color: #fff;
    border-color: #00b5e2;
    font-weight: 700;
}

@media all and (max-width: 767px) {
    .module-header-bar-login .button--info {
        display: none;
    }
}

.module-header-bar-login .button--info:hover {
    color: #fff;
    border-color: #00b5e2;
    background-color: #00b5e2;
}

.module-header-bar-login .button--info:visited {
    color: #00b5e2;
}

/* Logo Header */
.module-logo--header {
    display: inline-block;
    vertical-align: middle;
    width: 58px;
    font-size: 0;
    margin: 9px 0 11px 1px;
}

@media all and (max-width: 1024px) {
    .module-logo--header {
        width: 56px;
        margin: 10px 0 10px 1px;
    }
}

@media all and (max-width: 979px) {
    .module-logo--header {
        width: 56px;
        margin: 10px 0 10px 1px;
    }
}

@media all and (max-width: 767px) {
    .module-logo--header {
        margin: 9px 0 11px 1px;
    }
}

.module-logo--header a {
    display: inline-block;
    width: 43px;
    height: 43px;
}

/* Copyright */
.copyright {
    margin-bottom: 6px;
}

@media all and (max-width: 767px) {
    .copyright {
        margin-bottom: 12px;
    }
}

.copyright p {
    color: #000;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.2;
}

/* Footer Logos */
.module-logos-footer {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

@media all and (max-width: 767px) {
    .module-logos-footer {
        position: static;
        transform: none;
        margin-bottom: 30px;
    }
}

.module-logos-footer .module_logo-container {
    display: inline-block;
    vertical-align: middle;
}

.module-logos-footer .module_logo-container--intercontinental {
    margin-right: 25px;
}

@media all and (max-width: 1450px) {
    .module-logos-footer .module_logo-container--intercontinental {
        margin-right: 15px;
    }
}

.module-logos-footer .module_logo-container--ice {
    margin-right: 5px;
}

@media all and (max-width: 1450px) {
    .module-logos-footer .module_logo-container--ice {
        max-width: 40px;
    }
}

@media all and (max-width: 1350px) {
    .module-logos-footer .module_logo-container--ice {
        max-width: 36px;
    }
}

@media all and (max-width: 1450px) {
    .module-logos-footer .module_logo-container--nyse {
        max-width: 34px;
    }
}

@media all and (max-width: 1350px) {
    .module-logos-footer .module_logo-container--nyse {
        max-width: 30px;
    }
}

.module-logos-footer .module_logo-container a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

@media all and (max-width: 1450px) {
    .module-logos-footer .module_logo-container a {
        font-size: 15px;
    }
}

@media all and (max-width: 1450px) {
    .module-logos-footer .module_logo-container a {
        font-size: 14px;
    }
}

.module-logos-footer .module_logo-container a:hover {
    color: #02EFDB;
}

/* Listed NYSE footer */
.module-listed-nyse-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

@media all and (max-width: 767px) {
    .module-listed-nyse-logo {
        position: static;
        transform: none;
        margin-top: 30px;
    }
}

.module-quick-links-footer ul {
    margin: 0;
    padding: 0;
}

.module-quick-links-footer ul > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px 4px 0;
}

@media all and (max-width: 767px) {
    .module-quick-links-footer ul > li {
        margin: 0 7px 10px 0;
    }
}

.module-quick-links-footer ul > li:last-child {
    margin-right: 0;
}

/* Q4 Credits */
.module-q4-credits {
    margin-top: 2px;
}

.module-q4-credits a {
    color: #000;
    font-size: 12px;
    font-size: 1.2rem;
}

/* Banner Text */
.module-banner-text {
    color: #FFFFFF;
}

.module-banner-text_headline {
    font-size: 29px;
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 30px;
    color: #000;
    margin-bottom: 15px;
    display: block;
}

@media all and (max-width: 767px) {
    .module-banner-text_headline {
        font-size: 17.4px;
        font-size: 1.74rem;
        line-height: 18px;
    }
}

.module-banner-text h1 {
    color: #000;
}

.module-banner-text h1 .underline {
    position: relative;
    display: inline-block;
}

.module-banner-text h1 .underline:after {
    content: "";
    position: absolute;
    height: 8px;
    left: 5px;
    right: 2px;
    bottom: -10px;
    background-color: #71C5E8;
}

.PageHome .module-banner-text .module_container--inner {
    max-width: 620px;
}

/* Transforming global markets */
.module-transforming-global-markets {
    text-align: left;
}

.module-transforming-global-markets .module_title {
    margin-bottom: 15px;
}

.module-transforming-global-markets .module_introduction {
    font-size: 16px;
    line-height: 24px;
}

.module-transforming-global-markets .module_button-container {
    margin: 0;
    text-align: right;
}

@media all and (max-width: 768px) {
    .module-transforming-global-markets .module_button-container {
        text-align: left;
    }
}

/* Featured Resources */
.module-featured-resources h3 {
    color: #000000;
    font-size: 24px;
    line-height: 30px;
    /* font-weight: 400; */
}

.module-featured-resources .module_container--inner {
    position: relative;
}

.module-featured-resources .module-financial-latest_button-container {
    position: absolute;
    top: -85px;
    right: 0;
}

@media all and (max-width: 480px) {
    .module-featured-resources .module-financial-latest_button-container {
        position: static;
        margin-top: 20px;
    }
}

/* Page Title */
.module-page-title h1 {
    font-size: 50px;
    font-size: 5rem;
    font-weight: 700;
    line-height: 65px;
}

@media all and (max-width: 767px) {
    .module-page-title h1 {
        font-size: 3.2px;
        font-size: 3.2rem;
        line-height: 36px;
    }
}

/* Toggle Styling */
.toggle_item {
    border-bottom: 1px solid #D8D8D8;
    padding: 0;
    margin: 0;
}

.toggle_panel {
    border-top: 1px solid #D8D8D8;
    padding: 20px 50px 10px 20px;
    background-color: #F7F7F7;
    margin: 0;
}

.toggle-all {
    margin-bottom: 20px;
}

.toggle-all a:before {
    content: "Show all";
}

.toggle-all.js--active a:before {
    content: "Hide all";
}

.toggle_selector {
    color: #000000;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 22px;
    display: block;
    position: relative;
    padding: 20px 50px 20px 0;
    margin: 0;
    transition: .3s ease-in-out all;
    cursor: pointer;
}

.js--active .toggle_selector {
    color: #235F73;
}

.toggle_selector:after {
    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: "\e90f";
    position: absolute;
    right: 25px;
    font-size: 26px;
    font-size: 2.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.js--active .toggle_selector:after {
    transform: translateY(-50%) rotate(-180deg);
}

.module-subscribe-privacy .module_container--inner p:last-child {
    margin-bottom: 0;
}

/* Contact Us */
.module-contact-us h3 {
    margin-top: 50px;
    margin-bottom: 10px;
}

.module-contact-us h4 {
    margin-bottom: 0;
}

.module-contact-us a[href*="mailto"] > i {
    margin: 1px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.NavigationPaneDiv11 {
    display: none;
}

.module-stock-header_up .module-stock-header_perc:before {
    content: '+';
}

.module-stock-header_down .module-stock-header_perc:before {
    content: '(';
}

.module-stock-header_down .module-stock-header_perc:after {
    content: ')';
}

/* 00022655 - start*/
.module-presentation-latest {
    margin-top: 30px;
    border-bottom: 2px solid #71C5E8;
}

.module-presentation-latest .module_links {
    margin: 0;
}

.module-presentation-latest .module_link-container-outer {
    vertical-align: top;
    display: inline-block;
}

.module-presentation-latest .module_link-container-outer {
    vertical-align: top;
    display: inline-block;
}

.module-presentation-latest .module_link-container-outer:nth-child(-n+3) .module_link-container {
    /* border-bottom: 2px solid #0F364A; */
}

.module-presentation-latest .module_link {
    margin: 0;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    padding: 9px 0 9px 50px;
}

.module-presentation-latest .module_link.module_link-news:before {
    font-size: 32px;
    font-size: 3.2rem;
    margin-top: 5px;
}

.module-presentation-latest .module_link-container-outer:nth-child(-n+3) .module_link-container {
    /* border-bottom: 2px solid #0F364A; */
}

.module-presentation-latest .module_link-container {
    margin: 0 40px 20px 0;
    padding: 0;
}

.module-presentation-latest .module_link:before {
    display: inline-block;
    font-size: 38px;
    font-size: 3.8rem;
    padding: 0;
    margin-left: -50px;
    margin-top: 2px;
    text-align: left;
}

.module-presentation-latest .module_link.module_link-presentation:before {
    font-size: 34px;
    font-size: 3.4rem;
    margin-top: 6px;
}

.module-presentation-latest .module_link.module_link-webcast:before, .module-presentation-latest .module_link.module_webcast-link:before {
    font-size: 38px;
    font-size: 3.8rem;
}

/* 00022655 - End*/
@media all and (min-width: 769px) {
    .minimal-margin {
        margin-top: -246px;
    }
}

@media (min-width: 1900px) {
    .minimal-margin {
        margin-top: -182px;
    }
}

.module-news-details .module-details_title {
    position: relative;
}

.module-news-details .module_link-print {
    color: #000;
    display: inline-block;
    cursor: pointer;
    font-size: 22px;
    position: absolute;
    top: 5px;
    right: 0;
}

.module-news-details .module_link-print:hover {
    color: #02EFDB;
}