/*==================================
 ------------ 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 {
    font-size: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

nav ol, nav ul:not(.list), .list--reset ol, .list--reset ul:not(.list), ol.list--reset, ul.list--reset {
    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;
}

/*---------- Animations ----------*/
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*==================================
 --------- DEFAULT STYLES ---------
==================================*/
body {
    overflow-x: hidden;
    color: #000;
    font-family: "Neue Helvetica W02", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

/*---------- TYPOGRAPHY ----------*/
h1, h2, h3, h4, h5, h6 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1919;
    text-transform: none;
}

h2.module_title, h1 {
    font-size: 5.7rem;
    margin-bottom: 40px;
    color: #000;
    line-height: 1;
}

@media only screen and (max-width: 768px) {
    h2.module_title, h1 {
        font-size: 3.8rem;
        margin-bottom: 30px;
    }
}

h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1;
}

@media only screen and (max-width: 768px) {
    h2 {
        font-size: 3.2rem;
        color: #000;
    }
}

h3 {
    font-size: 3rem;
    margin-bottom: 25px;
}

@media only screen and (max-width: 768px) {
    h3 {
        font-size: 2.4rem;
        color: #000;
    }
}

h4 {
    font-size: 2.6rem;
}

@media only screen and (max-width: 768px) {
    h4 {
        font-size: 2.1rem;
    }
}

h5 {
    font-size: 2.4rem;
    line-height: 1.1;
}

@media only screen and (max-width: 768px) {
    h5 {
        font-size: 1.7rem;
    }
}

h6 {
    font-size: 1.4rem;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #1A1919;
    font-weight: 700;
}

a:focus, a:hover {
    color: #161616;
}

p {
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 15px;
}

i {
    display: inline-block;
}

.module-details.module-news-details .module_container--outer sup, .module-details.module-news-details .module_container--outer sub, sub, sup {
    font-size: 50%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.module-details.module-news-details .module_container--outer sup, sup {
    top: -0.50em;
}

.module-details.module-news-details .module_container--outer sub, sub {
    bottom: -0.25em;
}

small {
    font-size: 1.2rem;
}

a[data-section] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin-top: -60px;
    overflow: hidden;
    border: 0;
    opacity: 0;
}

.module--thin a[data-section], .module--thin--top a[data-section] {
    margin-top: -45px;
}

.module--thick a[data-section], .module--thick--top a[data-section] {
    margin-top: -100px;
}

/*------------ COMMON ------------*/
img {
    max-width: 100%;
    border: none;
}

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;
    display: inline-block;
    padding-left: 20px;
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 400;
}

input[type="checkbox"]+label:before, input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #979797;
    background-color: #ffffff;
    line-height: 1;
    position: absolute;
    margin-left: -20px;
    top: 50%;
    border-radius: 0;
    background-color: #fff;
    transform: translateY(-50%);
}

input[type="checkbox"]:checked+label:before, input[type="radio"]:checked+label:before {
    background-color: #979797;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

iframe {
    width: 100%;
}

/*------- HACKS AND FIXES -------*/
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/*------------ LISTS ------------*/
ol, ul {
    list-style-position: outside;
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
    line-height: 1.5;
}

.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;
}

.list--divided li {
    border-bottom: 1px solid rgba(0, 0, 0, .4);
    padding: 10px 0;
    font-size: 1.4rem;
    max-width: 220px;
}

/*------- BUTTONS / INPUTS -------*/
::-webkit-input-placeholder {
    color: #fff!important;
    opacity: 1;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #fff!important;
    opacity: 1;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff!important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #fff!important;
    opacity: 1;
}

input::-ms-clear, textarea::-ms-clear, select::-ms-clear, button::-ms-clear, select::-ms-expand {
    display: none;
}

input, textarea, select, button {
    appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

input:focus, textarea:focus {
    border-color: blue;
}

.input, .textarea, .dropdown, .module_input, .module_dropdown, .upload, .submit, .button {
    display: inline-block;
    max-width: 100%;
    padding: 10px 10px;
    background-color: #fff;
    border: 1px solid #cccccc;
    color: #1a1a1a;
    border-radius: 0;
    font-family: "Neue Helvetica W02", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
}

.submit, .button, .upload, .dropdown, .module_dropdown {
    cursor: pointer;
}

.input, .module_input, .textarea {
    background-color: #fff;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.submit, .button {
    transition: 0.2s ease-in-out;
    background-color: transparent;
    color: #1a1919;
    text-transform: none;
    border-color: #1a1919;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 10px;
}

.submit:hover, .button:hover {
    color: #fff;
    text-decoration: none!important;
    background-color: #4e4b4b;
    border-color: #4e4b4b;
}

.submit:focus, .button:focus {
    text-decoration: none!important;
}

.button--dark {
    color: #fff;
    border-color: #fff;
}

.button--dark:hover {
    color: #fff;
    border-color: #fff;
}

.dropdown, .module_dropdown {
    font-size: 2.6rem;
    padding: 10px 40px 10px 0;
    background: transparent url('../design/svg/arrow-down.svg') no-repeat right 0 center;
    background-size: 25px 13px;
    min-width: 175px;
    border: none;
    border-bottom: 1px solid #979797;
    color: #1a1919;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .dropdown, .module_dropdown {
        font-size: 2.1rem;
        padding: 10px 35px 10px 0;
        background-position: right 0 center;
    }
}

/*------------ TABLES ------------*/
.table {
    width: 100%;
    margin-bottom: 15px;
}

.table thead {
    /* background-color: #3a464e; */
}

.table tr {
    border-bottom: 1px solid #979797;
}

.table th, .table td, .table tr>.grid_col {
    margin: 0;
    padding: 15px 0;
}

.table th {
    text-align: left;
    font-size: 1.6rem;
    font-weight: 500;
    color: #000000;
}

.table td, .table tr>.grid_col {
    font-size: 2.2rem;
    color: #000000;
    font-weight: 700;
    padding: 20px 0;
}

.table--headless tr:first-child td {
    text-align: left;
    font-size: 1.6rem;
    font-weight: 500;
    color: #000000;
}

@media only screen and (max-width: 768px) {
    .table--headless tr:first-child, .table--responsive thead {
        display: none;
    }

    .table--headless tbody, .table--responsive tbody {
        border-top: 2px solid #979797;
    }

    .table--headless tr, .table--responsive tr {
        display: block;
        padding: 20px 0 0;
        border-bottom: 2px solid #979797;
    }

    .table--headless td, .table--responsive td {
        display: block;
        padding: 0 0 20px;
    }

    .table--headless td:before, .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: 500;
        display: block;
        font-size: 1.6rem;
        margin-bottom: 10px
    }
}

.table--custom {
    overflow-x: auto;
}

/*--------- SPECIAL BOXES --------*/
.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    font-size: 1.4rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}

.code_comment {
    opacity: 0.5;
}

.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}

/*==================================
 -------- Q4 Modules Icons ---------
==================================*/
.module_q4-icon-links .module_link i:before {
    display: none;
}

.module_q4-icon-links .module_link {
    position: relative;
    padding-left: 30px;
}

.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";
    content: "\e83b";
    font-size: 2.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -32px;
}

.module_q4-icon-links .module_rss-link:before, .module_q4-icon-links .module_link.module_link-rss:before {
    content: "\eefa";
    position: static;
    margin-left: 0;
    transform: none;
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\ea5f";
}

.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";
    content: "\e90f";
    margin-left: -27px;
}

.module_q4-icon-links .module_link[href$=".xls"]:before, .module_q4-icon-links .module_link[href$=".csv"]:before, .module_q4-icon-links .module_link[href$=".XLS"]:before, .module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\eeae";
}

.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";
    content: "\e90f";
    margin-left: -27px;
}

.module_q4-icon-links .module_link[href$=".pdf"]:before, .module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\e83b";
}

.module_q4-icon-links .module_link.module_link-webcast:before, .module_q4-icon-links .module_webcast-link:before {
    content: "\e825";
    margin-top: -1px;
}

.module_q4-icon-links .module_link.module_news-link:before, .module_q4-icon-links .module_link.module_link-news:before, .module_q4-icon-links .module_link.module_link-transcript:before {
    /* content: "\e9bb"; */
}

.module_q4-icon-links .module_link.module_presentation-link:before, .module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e83b";
}

.module_q4-icon-links .module_link.module_link-file:before {
    content: "\eb81";
}

.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e9bb";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".html"]:before {
    content: "\e9bb";
}

.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_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--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.3333333333%;
}

.grid_col--2-of-3, .grid_col--4-of-6, .grid_col--8-of-12 {
    width: 66.6666666667%;
}

.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_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-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.3333333333%;
}

.grid_col--push-2-of-3, .grid_col--push-4-of-6, .grid_col--push-8-of-12 {
    margin-left: 66.6666666667%;
}

.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-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.3333333333%;
}

.grid_col--pull-2-of-3, .grid_col--pull-4-of-6, .grid_col--pull-8-of-12 {
    margin-left: -66.6666666667%;
}

.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_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_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_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_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.6666666667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-6 {
    width: 83.3333333333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.3333333333%;
}

.grid_col--1-of-8 {
    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_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_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_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.3333333333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.3333333333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.3333333333%;
}

.grid_col--2-of-12 {
    width: 16.6666666667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-12 {
    width: 41.6666666667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.6666666667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.6666666667%;
}

.grid_col--7-of-12 {
    width: 58.3333333333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.3333333333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.3333333333%;
}

.grid_col--10-of-12 {
    width: 83.3333333333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.3333333333%;
}

.grid_col--11-of-12 {
    width: 91.6666666667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.6666666667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.6666666667%;
}

.grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 30px;
    vertical-align: top;
}

.grid--no-gutter .grid .grid_col, .grid_col {
    padding-left: 30px;
}

@media (max-width: 480px) {
    .grid--no-gutter .grid .grid_col, .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

.grid--gutter-60 {
    margin-left: -60px;
}

.grid--gutter-60 .grid_col {
    padding-left: 60px;
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }

    .grid_col.grid_col--lg-1-of-2, .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }

    .grid_col.grid_col--lg-1-of-3 {
        width: 33.3333333333%;
    }

    .grid_col.grid_col--lg-2-of-3 {
        width: 66.6666666667%;
    }

    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }

    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }

    .grid_col.grid_col--lc-1-of-2, .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }

    .grid_col.grid_col--lc-1-of-3 {
        width: 33.3333333333%;
    }

    .grid_col.grid_col--lc-2-of-3 {
        width: 66.6666666667%;
    }

    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }

    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }

    .grid_col.grid_col--md-1-of-2, .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }

    .grid_col.grid_col--md-1-of-3 {
        width: 33.3333333333%;
    }

    .grid_col.grid_col--md-2-of-3 {
        width: 66.6666666667%;
    }

    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }

    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid_col.grid_col--sm-1-of-2, .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }

    .grid_col.grid_col--sm-1-of-3 {
        width: 33.3333333333%;
    }

    .grid_col.grid_col--sm-2-of-3 {
        width: 66.6666666667%;
    }

    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }

    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid_col--d-last {
    float: right;
}

.grid--no-gutter {
    margin-left: 0;
}

.grid .grid--no-gutter .grid_col, .grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}

/*==================================
 --------- UTILITY CLASSES --------
==================================*/
.hidden {
    display: none !important;
}

.disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-green {
    color: #00A1A7;
}

.text-larger {
    font-size: 2.1rem;
    line-height: 1.2;
}

.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: #253589;
}

.background--alt-brand {
    background-color: #f1af0f;
}

.background--dark {
    background-color: #222;
}

.background--black {
    background-color: #000000;
}

.background--white, .background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #f6f6f6;
}

.background--turquoise {
    background-color: #00bdb5;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #ff0000;
}

.background--pink {
    background-color: rgba(239, 217, 215, .4);
}

.background--dark-pink {
    background-color: rgba(187, 71, 37, .2);
}

.background--blue {
    background-color: rgba(189, 210, 232, .3);
}

.background--green {
    background-color: rgba(35, 96, 72, .1);
}

.color--brand {
    color: #253589;
}

.color--dark {
    color: #222;
}

.color--grey {
    color: #f6f6f6;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #ff0000;
}

.dark {
    color: #e6e7e8;
}

.dark a, .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark p {
    color: #ffffff;
}

/*==================================
 --------- ACCESSIBILITY ----------
==================================*/
*:focus {
    outline: none;
}

a:focus {
    text-decoration: none;
    outline: none
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#maincontent:focus {
    outline: 0px;
}

/*---------- Javascript ----------*/
.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px 0 10px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
}

.js--hidden {
    display: none;
}

.js--hidden:not([role*="tabpanel"]) {
    display: none!important;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"], .js--invalid select {
    border: 1px solid #ff0000 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #ff0000 !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_header {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
}

.module_nav, .module_headline, .module_location, .module_speakers {
    margin-bottom: 15px;
}

.module_options {
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .module_options {
        margin-bottom: 40px;
    }
}

.module_not-found {
    padding: 10px 0;
}

.module_body:not(:empty) {
    color: #000000;
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.module_links {
    margin-bottom: 15px;
}

.module_links > .module_add-to-calendar, .module_links > .module_webcast, .module_links > .module_presentations, .module_links > .module_presentations > .module_presentation, .module_links > .module_news, .module_links > .module_attachments, .module_links > .module_financials, .module_links > ul.module_attachments > li, .module_links > ul.module_financials > li {
    display: inline;
}

@media screen and (max-width: 480px) {
    .module_links > .module_add-to-calendar, .module_links > .module_webcast, .module_links > .module_presentations, .module_links > .module_presentations > .module_presentation, .module_links > .module_news, .module_links > .module_attachments, .module_links > .module_financials, .module_links > ul.module_attachments > li, .module_links > ul.module_financials > li {
        display: block;
    }
}

.module_error-container {
    margin-bottom: 30px;
    color: #ff0000;
}

.module_add-to-calendar-reveal {
    color: #000;
    cursor: pointer;
}

.module_add-to-calendar-reveal:hover {
    color: #000;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: none!important;
}

.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.4rem;
}

.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: 2.4rem;
    color: #000000;
}

.module_add-to-calendar-link:hover, .module_add-to-calendar-link:focus {
    color: #000000;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions {
    margin-top: 20px;
}

.module_date-time, .module_time {
    font-weight: 700;
    color: #000000;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
}

.module_error-container ul>li {
    line-height: 1.2;
}

.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-weight: 700;
    color: #000000;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.module_headline-link, .module_headline-link:visited {
    color: #000000;
}

.module_headline-link:hover {
    color: #000000
}

.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_button {
    margin-top: 30px;
}

.module_footnonte p {
    line-height: 1.1;
    margin-bottom: 10px;
}

.module_item {
    padding: 15px 0;
    margin: 0;
}

.module_rss {
    float: right;
}

.module_rss--top {
    margin-top: 27px;
}

@media screen and (max-width: 768px) {
    .module_rss--top {
        margin-top: 10px;
    }
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-weight: 700;
}

.module_label+.module_required {
    font-size: 1.4rem;
}

.module_link {
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px 15px 0;
    font-size: 2rem;
    text-transform: none;
    line-height: 1.2;
    font-weight: 500;
    color: #000;
}

.module_link:hover {
    text-decoration: none!important;
}

.module_link--print-page {
    cursor: pointer;
}

.module_link>i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"], .module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    display: inline-block;
    margin-top: 20px;
    margin-left: 20px;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin-bottom: 10px;
}

.module_message[style$="hidden;"], .module_message:empty {
    display: none;
}

.module_message--success {
    color: #98c23d;
}

.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-activation .module_message--success, .module-deactivation .module_message--success, .module-subscribe .module_message--success, .module-unsubscribe .module_message--success {
    font-weight: 600;
}

.module_message--error {
    color: #ff0000;
}

.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 #009ace;
    color: #333333;
    font-weight: normal;
}

.module_nav-link.selected, .module_nav-link.selected:visited, .module_nav .ModuleYearLink.selected, .module_nav .ModuleYearLink.selected:visited, .module_nav-link:visited.selected, .module_nav-link:visited.selected:visited, .module_nav .ModuleYearLink:visited.selected, .module_nav .ModuleYearLink:visited.selected:visited {
    background-color: #009ace;
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .module_nav-link, .module_nav .ModuleYearLink, .module_nav-link:visited, .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}

.module_options-label, .module_options-select {
    margin-right: 10px;
}

.module_options-label {
    font-weight: 700;
    color: #3a464e;
    font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
    .module_options-label, .module_options-select, .module_options-submit {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module_options-label, .module_options-select {
        margin-bottom: 10px;
    }
}

/*--------- Module Pager ----------*/
.module_pager-container {
    margin-top: 50px;
    position: relative;
}

.module_pager-message {
    color: #000;
    font-size: 1.4rem;
    font-weight: 500;
    display: inline-block;
}

.module_pager {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 85px;
    list-style: none;
    padding: 0;
    display: inline-block;
}

.module_pager .pager-page, .module_pager .pager-next, .module_pager .pager-prev, .module_pager .pager-last, .module_pager .pager-first {
    font-size: 1.4rem;
    color: #000;
    cursor: pointer;
    font-weight: 500;
    padding: 0;
    text-align: center;
    display: none;
    vertical-align: middle;
    margin-right: 15px;
}

.module_pager .pager-next, .module_pager .pager-prev, .module_pager .pager-last, .module_pager .pager-first {
    color: #000;
    display: inline-block;
    font-size: 0;
}

.module_pager .pager-first, .module_pager .pager-prev {
    margin: 0 25px 0 0;
}

.module_pager .pager-last, .module_pager .pager-next {
    margin-left: 0;
}

.module_pager .pager-next:before, .module_pager .pager-prev:before, .module_pager .pager-first:before, .module_pager .pager-last:before {
    font-size: 1.4rem;
    font-weight: 500;
}

.module_pager .pager-prev:before {
    content: "< Previous 10"
}

.module_pager .pager-next:before {
    content: 'Next 10 >';
}

.module_pager .pager-disabled {
    cursor: text;
    display: none;
}

.module_pager .pager-page:not(.pager-active) {
    cursor: pointer;
}

.module_pager .pager-active {
    color: #3a464e;
    cursor: default;
}

/*--------- Module Pager Search----------*/
.module_pager a {
    display: inline-block;
    font-size: 1.6rem;
    color: #3a464e;
    cursor: default;
    font-weight: 500;
    padding: 0;
    position: relative;
    margin-left: 10px;
    text-align: center;
}

.module_pager a:hover {
    text-decoration: none;
}

.module_pager a[href] {
    color: #009ace;
    cursor: pointer;
}

.module_pager a[href]:after {
    display: none;
}

.module-search-result .module_item {
    margin-bottom: 25px;
    padding: 0;
}

.module-search-result_summary {
    margin-bottom: 20px;
}

.module-search-result_link {
    margin: 0 0 10px;
    font-size: 1.8rem;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_description>p {
    display: inline;
}

.module-search-result_description>p:before {
    content: "";
    display: table;
    clear: both;
}

.module-search-result_url {
    display: none;
}

.module-search-result .module_pager>strong {
    font-size: 1.6rem;
    color: #3a464e;
}

.module_reminder {
    margin-top: 20px
}

.module_reminder span.module_reminder-period, .module_reminder span.module_reminder-email {
    margin: 0 5px 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 1.8rem;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .module_reminder span.module_reminder-period, .module_reminder span.module_reminder-email {
        margin: 0 0 10px;
        display: block
    }
}

.module_reminder .module_input.module_reminder-period, .module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
    margin-bottom: 15px;
    vertical-align: top;
}

.module_reminder .module_input.module_reminder-period {
    margin-top: -5px;
    font-size: 1.8rem;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: #ff0000;
}

.module_required-text {
    color: #ff0000;
    font-size: 1.6rem;
}

.module_required-text>span {
    color: #000;
}

.module_speakers li {
    margin-bottom: 5px;
}

.module-details .module_date-time {
    margin-bottom: 10px;
}

/*------- Captcha Component ------*/
.CaptchaContainer {
    display: none;
}

.CaptchaContainer table tr:nth-child(1) {
    display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
}

.CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
}

.CaptchaContainer table tr td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}

.CaptchaContainer input[type="text"] {
    display: block;
    width: 100%;
    max-width: none;
    padding: 10px 10px;
    background-color: #fff;
    border: 1px solid #cccccc;
    color: #1a1a1a;
    border-radius: 0;
    font-family: "Neue Helvetica W02", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}

/*- Investment Calculator Widget -*/
.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_input h4 {
    margin-bottom: 12px;
}

.module-calculator_input label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.module-calculator_input input[type="text"] {
    border: 2px solid #253589;
}

.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[type="text"].js--revealed {
    display: block;
}

@media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        min-width: 920px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .module-calculator_popup-container .table thead {
        display: none;
    }

    .module-calculator_popup-container .table tbody {
        border-top: 2px solid #253589;
        border-bottom: 2px solid #253589;
    }

    .module-calculator_popup-container .table td {
        display: block;
    }

    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
    }
}

.module-calculator_info td:first-child:before {
    content: none;
}

/*- Committee Composition Widget -*/
.module-committee {
    color: #3a464e;
}

.module-committee_custom-role {
    margin-left: 5px;
}

.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: 10px;
}

.module-committee_legend-container {
    padding: 15px 20px;
}

.module-committee_legend {
    display: inline-block;
    margin-right: 20px;
}

.module-committee_legend i {
    margin-right: 5px;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}

.module-committee .module_container--desktop .module_header {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    background-color: #3a464e;
    border: 1px solid #979797;
    border-radius: 5px;
}

.module-committee .module_container--desktop .module_item {
    padding: 0;
    border-bottom: 1px solid #979797;
}

.module-committee .module_container--desktop .grid_col {
    padding: 15px 20px;
    text-align: center;
    vertical-align: middle;
}

.module-committee .module_container--desktop .grid_col:first-child {
    text-align: left;
    font-size: 1.6rem;
}

.module-committee .module_container--tablet {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module-committee .module_container--tablet .module_header {
    display: block;
    margin: 0;
    padding: 15px 50px 15px 5px;
    margin-bottom: 0;
    color: #3a464e;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: none;
    position: relative;
}

.module_container--tablet .module-committee_category .module_header i:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    position: absolute;
    right: 20px;
    font-size: 1.6rem;
    top: 50%;
    color: #979797;
    transform: translateY(-50%);
    cursor: pointer;
}

.module_container--tablet .module-committee_category.js--active .module_header i:before {
    content: "\edba";
    color: #009ace;
}

.module-committee .module_container--tablet .module-committee_category {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #979797;
}

.module-committee .module_container--tablet .module_header .grid_col {
    width: 100%;
}

.module-committee .module_container--tablet .module_header .grid_col:last-of-type {
    width: auto;
    margin: 0;
}

.module-committee .module_container--tablet .grid_col {
    padding: 0;
    text-align: left;
}

.module-committee .module_container--tablet .grid_col:last-of-type {
    text-align: right;
}

.module-committee .module_container--tablet .module_item {
    margin-bottom: 10px;
    padding: 0;
}

.module-committee .module_container--tablet .module_items-container {
    margin: 0;
    padding: 0 16px 15px 5px;
}

/*----- Download List Module -----*/
.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 0;
    margin-bottom: 15px;
}

.module-downloads_thumbnail, .module-downloads_description, .module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads_title-link {
    margin: 0 20px 0 0;
    padding-left: 35px;
    position: relative;
    font-weight: 700;
    font-size: 17px;
}

.module-downloads_title-link:before {
    content: "\e83b";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -35px;
    font-size: 2.2rem;
}

/*--------- Event Module ---------*/
.module-event-details .module_link, .module-event .module_link {
    padding-left: 30px;
    display: inline-block;
    position: relative;
    background: #868686;
    padding: 12px 16px 12px 44px;
    font-size: 14px;
    border-radius: 6px;
    color: #fff;
}

.module-event-details .module_link:before, .module-event .module_link:before {
    /* margin-left: -30px; */
    /* font-size: 2.2rem; */
}

.module-event-details .module_add-to-calendar-reveal:before, .module-event .module_add-to-calendar-reveal:before {
    content: "\ea5f";
    margin-top: -1px;
}

.module-event .module_location, .module-event .module_speakers h4, .module-event .module_body {
    display: none;
}

.module-event .module_header {
    font-size: 1.6rem;
    font-weight: 500;
}

.module-event .module_links > .module_add-to-calendar, .module-event .module_links > .module_webcast, .module-event .module_links > .module_presentations, .module-event .module_links > .module_presentations > .module_presentation, .module-event .module_links > .module_news, .module-event .module_links > ul.module_attachments > li, .module-event .module_links > ul.module_financials > li, .module-event-details .module_links > .module_add-to-calendar, .module-event-details .module_links > .module_webcast, .module-event-details .module_links > .module_presentations, .module-event-details .module_links > .module_presentations > .module_presentation, .module-event-details .module_links > .module_news, .module-event-details .module_links > ul.module_attachments > li, .module-event-details .module_links > ul.module_financials > li {
    display: inline-block;
}

@media screen and (max-width: 480px) {
    .module-event .module_links > .module_add-to-calendar, .module-event .module_links > .module_webcast, .module-event .module_links > .module_presentations, .module-event .module_links > .module_presentations > .module_presentation, .module-event .module_links > .module_news, .module-event .module_links > ul.module_attachments > li, .module-event .module_links > ul.module_financials > li, .module-event-details .module_links > .module_add-to-calendar, .module-event-details .module_links > .module_webcast, .module-event-details .module_links > .module_presentations, .module-event-details .module_links > .module_presentations > .module_presentation, .module-event-details .module_links > .module_news, .module-event-details .module_links > ul.module_attachments > li, .module-event-details .module_links > ul.module_financials > li {
        display: block;
    }
}

.module-event--table .module_header {
    display: block;
    border-bottom: 1px solid #979797;
    padding: 15px 0;
}

@media screen and (max-width: 768px) {
    .module-event--table .module_header {
        display: none;
    }

    .module-event--table .module_headline:before, .module-event--table .module_date-time:before, .module-event--table .module_time:before {
        content: "";
        display: block;
        font-size: 1.6rem;
        color: #000;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .module-event--table .module_date-time:before {
        content: "Date:";
    }

    .module-event--table .module_time:before {
        content: "Time:";
    }

    .module-event--table .module_headline:before {
        content: "Description:";
    }
}

.module-event--table .module_item {
    margin: 0;
    padding: 20px 0 10px;
    border-bottom: 1px solid #979797;
}

@media only screen and (max-width: 768px) {
    .module-event--table .module_item:first-of-type {
        border-top: 2px solid #979797;
    }

    .module-event--table .module_item {
        border-bottom: 2px solid #979797;
    }

    .module-event--table .module_headline {
        margin-bottom: 20px
    }
}

.module-event--table .module_date-time, .module-event--table .module_time {
    margin-bottom: 0
}

.module-event--table .module_headline {
    padding-right: 20px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
    .module-event--table .module_headline {
        padding-right: 0;
        margin-bottom: 20px
    }
}

.module-event--table .module_links {
    margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
    .module-event--table .module_links {
        margin-bottom: 10px;
    }
}

.module-event-details .module_speakers h4 {
    display: none;
}

.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;
}

@media only screen and (max-width: 768px) {
    .module-event-latest .module_item:first-child {
        width: 100%;
    }
}

.module-event-latest .module_item.grid_col {
    padding-left: 20px;
}

.module-event-latest .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
}

.module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
}

.module-event-latest .module_headline {
    line-height: 150%;
}

.module-event-latest .module_links {
    margin: 0;
}

.module-event-latest.background--grey .module_item-wrap {
    background-color: #fff;
}

.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 #dddddd;
}

.module-event-upcoming .module_nav {
    display: none;
}

.module-event-upcoming .module_item ~ .module_item {
    padding: 30px 0 10px;
}

.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: #f6f6f6;
}

.module-event-calendar_splash i {
    font-size: 40px;
    font-size: 4rem;
    color: #253589;
}

.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: #253589;
    color: #fff;
}

.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, 111, 186, 0.2);
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 8px 0 25px;
    border-top: 1px solid rgba(0, 111, 186, 0.2);
    border-left: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day.calendar-dow-6 {
    border-right: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
}

.module-event-calendar_day--today {
    background: #f6f6f6;
}

.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: #253589;
}

.module-event-calendar_day--selected {
    background-color: #253589;
    color: #fff;
}

.module-event-calendar_day--selected:after {
    background-color: #fff;
}

.module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.1);
    pointer-events: none;
}

.module-event-calendar_day--adjacent-month:after {
    content: none;
}

@media only screen 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 only screen and (max-width: 768px) {
    .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_title {
    color: #1a1919;
    font-size: 3rem;
    display: inline-block;
    vertical-align: top;
    width: 300px;
}

@media only screen and (max-width: 768px) {
    .module-faq .module_title {
        color: #000000;
        font-size: 2.4rem;
        display: block;
        width: auto;
    }
}

.module-faq .module_container--inner {
    display: inline-block;
    vertical-align: top;
    max-width: 585px;
    width: calc(100% - 305px);
}

@media only screen and (max-width: 768px) {
    .module-faq .module_container--inner {
        display: block;
        width: 100%;
        max-width: none;
    }
}

.module-faq .module_item {
    padding: 0;
    margin-bottom: 20px;
}

.module-faq_question {
    margin: 0;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    padding-left: 40px;
}

.module-faq_question:before {
    content: "\ed5d";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    margin-left: -40px;
    height: 24px;
    width: 24px;
    line-height: 22px;
    border: 1px solid #000;
    border-radius: 100%;
    text-align: center;
    font-size: 1.2rem;
    top: -1px;
}

.module_item.js--active .module-faq_question:before {
    content: "\ed5e";
}

.module-faq_answer {
    padding: 20px 0 0 40px;
    margin: 0;
}

.module-faq_answer p {
    margin: 0;
    padding: 0 0 10px;
}

.module-faq .toggle-all {
    margin-bottom: 40px;
}

.module-faq .toggle-all a:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}

/*--- Financial Report Modules ---*/
.module-financial-year_title h2 {
    margin-bottom: 15px;
}

.module-financial-year .module_link {
    margin: 0;
    padding-left: 35px;
    display: inline-block;
    position: relative;
    font-size: 1.7rem;
    font-weight: 700;
}

.module-financial-year .module_link:before {
    content: "\e83b";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -35px;
    font-size: 2.2rem;
    margin-top: -2px;
}

.module-financial-year .module_link-container {
    margin-bottom: 15px;
}

.module-financial-year .module_item {
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .module-financial-year .module_item-container:not(:last-of-type) {
        margin-bottom: 40px;
    }
}

.module-financial-year .module_links {
    margin: 0;
}

.module-financial-quarter .module_item {
    padding: 0;
}

@media screen and (max-width: 768px) {
    .module-financial-quarter .module_item-container:not(:last-of-type) {
        margin-bottom: 40px;
    }
}

.module-financial-quarter .module_links {
    margin: 0;
}

.module-financial-quarter .module_links > div {
    display: block;
    margin-bottom: 15px;
}

.module-financial-quarter .module_link {
    margin: 0;
    padding-left: 35px;
    display: inline-block;
    position: relative;
    font-size: 2rem;
    font-weight: 400;
    font-family: "Neue Helvetica W02", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.module-financial-quarter .module_link:before {
    content: "\e83b";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -35px;
    font-size: 2.2rem;
}

.module-financial-quarter .module_link-webcast:before {
    content: "\e825";
    margin-top: -1px;
}

.module-financial-quarter .module-financial_year-text {
    margin-bottom: 20px;
    color: #1a1919;
    font-size: 4rem;
    font-weight: 700;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .module-financial-quarter .module-financial_year-text {
        margin-bottom: 20px;
        font-size: 2.6rem;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-quarter .module_options-label, .module-financial-quarter .module_options-select {
        display: block;
        width: 100%;
    }
}

.module-financial-table_header {
    color: #000;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year, .module-financial-table_header-category.grid_col {
    padding: 15px 0;
    font-size: 1.6rem;
    font-weight: 500;
}

.module-financial-table_body-row {
    border-bottom: 1px solid #979797;
}

.module-financial-table_body-year-container {
    text-align: center;
}

.module-financial-table_body-year, .module-financial-table_body-category.grid_col {
    padding: 20px 0;
    font-size: 2.2rem;
    color: #000;
    font-weight: 700;
}

.module-financial-table_item {
    display: inline-block;
    margin-right: 15px;
    font-size: 2.2rem;
    font-weight: 700;
}

.module-financial-table_item--empty {
    opacity: 0.1;
}

@media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
}

.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}

.module-financial-table .slick-slide:focus {
    outline: none;
}

.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    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='#ffffff', GradientType=0);
}

.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: #f6f6f6;
    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;
}

/* Latest Quarterly Result Widget */
.module-overview .module_item {
    margin: 0;
    padding: 0;
}

.module-overview .module_links {
    margin: 0;
}

.module-overview .module_link-container {
    margin-bottom: 15px;
}

.module-overview .module_link {
    margin: 0;
    display: inline-block;
    position: relative;
    font-size: 1.7rem;
    font-weight: 700;
}

.module-overview_button {
    margin-top: 30px;
}

.module-latest-quarter .module_link {
    padding-left: 35px;
}

.module-latest-quarter .module_link:before {
    content: "\e83b";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -35px;
    font-size: 2.2rem;
}

.module-latest-quarter .module_link[href$=".pdf"]:before, .module-latest-quarter .module_link[href$=".PDF"]:before {
    content: "\e83b";
}

.module-latest-quarter .module_link-webcast:before {
    content: "\e825";
    margin-top: -1px;
}

.module-latest-quarter .module_link-text {
    display: block;
}

/*------ 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 only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha>div {
    margin: 0;
    padding: 0;
}

.MessageSent .module-form {
    font-weight: 700;
    color: #98c23d;
    font-size: 1.8rem;
}

.module-form .module_container--captcha>div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #ff0000;
}

.module-form .module_container--captcha>div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_input, .module-form .module_dropdown {
    display: block;
    width: 100%;
    border-color: #ccc;
    color: #1a1919;
    font-size: 1.6rem;
}

.module-form textarea.module_input:focus {
    border-color: #009ace;
}

.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: 10px;
    color: #1a1919;
    font-size: 1.6rem;
}

.module-form_item legend~ul {
    clear: both;
    padding-left: 10px;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request, .module-form_item--are-you-an-investor {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}

.module-form_error-text {
    color: #ff0000;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
    max-width: 300px;
    margin-top: 10px;
}

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #333333;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #009ace;
}

/*---------- Job Modules ---------*/
.module-job-details_description-container {
    margin-bottom: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description label {
    font-weight: normal;
}

.module-job-details_description input {
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    float: right;
    font-size: 1.6rem;
    line-height: 0;
}

@media only screen and (max-width: 480px) {
    .module-job-details_description label:after {
        content: ":";
    }

    .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 5px;
    }
}

.module-job-details .grid_col {
    padding: 15px 20px;
}

.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}

.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-job-application_table tr:last-child {
    margin-bottom: 0;
}

.module-job-application_table tr.module-job-application_cover-letter-text, .module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}

.module-job-application_table tr td {
    display: block;
    position: relative;
}

.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
    .module-job-application_table {
        margin-left: 0;
    }

    .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}

.module-job-application .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

/*----- Miscellaneous Modules ----*/
.module-script {
    display: none;
}

.module-slideshow_ratio {
    padding-bottom: 56.25%;
    /* this should be changed with aspecRatio option in widget */
    position: relative;
}

.module-slideshow_viewer:not(.grid_col) {
    display: inline-block;
    width: 100%;
    max-width: 640px;
}

.module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 25px;
}

.module-slideshow_title {
    margin-bottom: 10px;
    display: none;
}

.module-slideshow .module_links > * + * {
    margin-top: 15px;
}

.module-slideshow_link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 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: block;
    background: rgba(0,0,0,0.7);
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: -1;
}

@media screen and (max-width: 1024px) {
    .nav--main {
        display: none;
    }
}

.nav--main .level1 {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav--main .level1 > li > a {
    font-size: 1.6rem;
    display: inline-block;
    position: relative;
    padding: 15px 0 15px 0;
}

.nav--main .level1 > li.has-children > a {
    position: relative;
    padding-right: 20px;
}

.nav--main .level1 > li.has-children > a:after {
    content: "\edc9";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 2rem;
    color: #fff;
    opacity: 0.5;
}

.nav--main a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.nav--main .level1 > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 30px;
}

.nav--main .level1 li.has-children {
    position: relative;
}

.nav--main .level2, .nav--main .level3 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: rgba(0,0,0,0.7);
    padding: 10px 0;
}

.nav--main .level3 {
    left: 100%;
    top: 0;
    padding: 0;
}

.nav--main .js--open > .level2, .nav--main .js--open > .level3, .nav--main .sfHover > .level2, .nav--main .sfHover > .level3 {
    display: block!important;
}

.nav--main .level2 > li > a, .nav--main .level3 > li > a {
    display: block;
    padding: 5px 15px;
}

.nav--secondary {
    display: none;
}

@media screen and (max-width: 1024px) {
    .nav--secondary {
        display: block;
        padding: 0;
        background: #fff;
    }

    .nav--secondary a {
        font-size: 1.6rem;
        color: #1A1919;
        font-weight: 700;
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 12px;
        padding-bottom: 12px;
        justify-content: space-between;
        align-items: center;
        display: flex;
    }

    .nav--secondary .level1>li.has-children >a {
        position: relative;
        padding-right: 40px;
    }

    .nav--secondary .level1>li.has-children > a:after {
        content: "\e916";
        font-family: 'q4-icons' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top: 15px;
        right: 23px;
        font-size: 2.4rem;
        color: #000;
        transition: transform .6s ease 0s,-webkit-transform .6s ease 0s;
    }

    .nav--secondary .level1>li.has-children.sfHover > a:after {
        transform: rotate(-180deg);
    }

    .nav--secondary .level2 {
        background-color: #f7f7f7;
        padding-left: 36px;
        visibility: hidden;
        overflow: hidden;
        max-height: 0;
        transition: visibility 0s linear .6s, max-height .6s ease 0s;
    }

    .nav--secondary .level1>li.js--expanded .level2, .nav--secondary .level1>li.sfHover .level2, .nav--secondary .level1>li.expanded .level2 {
        visibility: visible;
        max-height: 640px;
        transition: visibility 0s linear,max-height .6s ease 0s;
    }

    .nav--secondary .level2>li >a {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 8px;
        padding-right: 8px;
        display: block;
        font-weight: 400;
    }
}

/* ------------ Site Map --------------- */
.nav--sitemap {
    margin-top: -30px;
    margin-bottom: 50px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav--sitemap a {
    display: inline-block;
    color: #1A1919;
}

.nav--sitemap a:hover {
    color: #161616;
}

.nav--sitemap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav--sitemap .level1>li:not(:last-of-type) {
    margin-bottom: 10px;
}

.nav--sitemap .level2>li:not(:last-of-type) {
    margin-bottom: 7px;
}

.nav--sitemap .level1 {
    margin-bottom: 15px;
}

.nav--sitemap .level1>li>a {
    font-size: 1.8rem;
}

.nav--sitemap .level1>li.has-children>a {
    margin-bottom: 10px;
}

.nav--sitemap .level2 {
    margin-bottom: 10px;
    padding-left: 20px;
}

.nav--sitemap .level2>li>a {
    font-size: 1.6rem;
}

.nav--sitemap .level2>li.has-children>a {
    margin-bottom: 10px;
}

.nav--sitemap .level3 {
    padding-left: 20px;
}

.nav--sitemap .level3>li>a {
    font-size: 1.6rem;
}

.nav--sitemap .level3>li.has-children>a {
    margin-bottom: 10px;
}

.nav--sitemap .level3>li:not(:last-of-type) {
    margin-bottom: 10px;
}

.nav--sitemap .level4 {
    padding-left: 20px;
}

.nav--sitemap .level4>li>a {
    font-size: 1.2rem;
}

/*-------- News Module CSS -------*/
.module-news .module_header {
    font-size: 1.6rem;
    font-weight: 500;
}

.module-news--table .module_header {
    display: block;
    border-bottom: 1px solid #979797;
    padding: 15px 0;
}

@media screen and (max-width: 768px) {
    .module-news--table .module_header {
        display: none;
    }

    .module-news--table .module_headline:before, .module-news--table .module_date-time:before {
        content: "";
        display: block;
        font-size: 1.6rem;
        color: #000;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .module-news--table .module_date-time:before {
        content: "Date:";
    }

    .module-news--table .module_headline:before {
        content: "Description:";
    }
}

.module-news--table .module_item {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #979797;
}

@media only screen and (max-width: 768px) {
    .module-news--table .module_item:first-of-type {
        border-top: 2px solid #979797;
    }

    .module-news--table .module_item {
        border-bottom: 2px solid #979797;
    }

    .module-news--table .module_headline {
        margin-bottom: 20px
    }
}

.module-news--table .module_date-time, .module-news--table .module_time {
    margin-bottom: 0
}

.module-news--table .module_headline {
    padding-right: 20px
}

@media only screen and (max-width: 768px) {
    .module-news--table .module_headline {
        padding-right: 0;
        margin-bottom: 20px
    }
}

.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;
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
}

.module-news-latest .module_item-wrap {
    padding: 30px;
    background: #fff;
}

.module-news-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
    color: #333333;
}

.module-news-latest .module_headline {
    line-height: 1.5;
}

.module-news-latest .module_headline-link, .module-news-latest .module_headline-link:visited {
    color: #333333 !important;
}

.module-news-latest .module_links {
    margin: 0;
}

.module-news-latest .module_link {
    color: #253589;
}

.module-news-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-news-list .module_item + .module_item {
    border-top: 1px solid #dddddd;
}

.module-news-details .module_view-all-link {
    display: inline-block;
    padding: 0;
    margin-bottom: 25px;
}

.module-news-details .module_view-all-text {
    display: block;
    transition: 0.2s ease-in-out;
    background-color: transparent;
    color: #1a1919;
    text-transform: none;
    border: 1px solid #1a1919;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding: 7px 10px;
}

.module-news-details .module_view-all-link:hover .module_view-all-text {
    color: #fff;
    text-decoration: none!important;
    background-color: #4e4b4b;
    border-color: #4e4b4b;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details_category {
    display: none;
}

.module-news-details ul {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.module-news-details ul li {
    line-height: 1.5;
}

/*------ Person List Module ------*/
.module-person .module-person_description, .module-person .module-person_res-photo-container, .module-person .module_comma {
    display: none;
}

.module-person .module_item-container {
    margin-bottom: 40px;
    position: relative;
}

.module-person .module_item {
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
}

.module-person .module-person_photo-container {
    cursor: pointer;
    margin: 0 auto;
    position: relative;
}

.module-person .module-person_committee-name {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 10px;
    background-color: #000;
    color: #fff;
    text-align: center;
    display: none;
}

.module-person .module_item.js--active .module-person_committee-name {
    display: block;
}

.module-person .full-board.module_item .module-person_committee-name {
    display: none;
}

.audit[data-tags*="audit-chair"] .module-person_committee-name:before,
.governance[data-tags*="governance-chair"] .module-person_committee-name:before,
.compensation[data-tags*="compensation-chair"] .module-person_committee-name:before,
.executive[data-tags*="executive-chair"] .module-person_committee-name:before {
    content: "Committee Chair";
}

.audit[data-tags*="audit-member"] .module-person_committee-name:before,
.governance[data-tags*="governance-member"] .module-person_committee-name:before,
.compensation[data-tags*="compensation-member"] .module-person_committee-name:before,
.executive[data-tags*="executive-member"] .module-person_committee-name:before {
    content: "Committee Member";
}

.module-person .module-person_photo-container img {
    width: 100%;
}

.module-person .module-person_name-container {
    margin-top: 15px;
}

.module-person .module-person_name-container h3 {
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
}

.module-person .module-person_name-container a {
    color: #fff;
}

.module-person .module-person_name {
    display: block;
    font-size: 2.2rem;
    color: #000;
    font-weight: 700;
}

.module-person .module-person_suffix, .module-person_title {
    font-size: 1.8rem;
    text-transform: none;
}

.module-person_title {
    display: block;
    margin-top: 5px;
    font-weight: 400;
}

.module-person-leadership .module_title {
    font-size: 4rem;
}

@media screen and (max-width: 768px) {
    .module-person-leadership .module_title {
        font-size: 3.2rem;
        text-align: center;
    }
}

.module-person--widget .module_item:before {
    opacity: 0.4;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
    background: #f6f6f6;
    z-index: 1;
}

.module-person--widget .js--active.module_item:before {
    display: none;
}

.fancybox-container .module-person .module_item {
    max-width: 1000px;
    padding: 30px;
}

.fancybox-container .module-person_photo-container, .fancybox-container .module-person_name-container {
    display: inline-block;
    vertical-align: top;
}

.fancybox-container .module-person_name-container {
    position: static;
    background: transparent;
    text-align: left;
    opacity: 1;
    cursor: initial;
    margin-top: 0;
}

.fancybox-container .module-person_name-container h3 {
    position: static;
    transform: none;
    color: #1a1919;
    cursor: default;
}

.fancybox-container .module-person_name-container a {
    color: #2ea3f2;
}

.fancybox-container .module-person_photo-container {
    max-width: 275px;
    width: 35%;
    margin-right: -4px;
}

@media screen and (max-width: 768px) {
    .fancybox-container .module-person_photo-container {
        max-width: 200px;
        width: 100%;
        margin-right: 0;
    }
}

.fancybox-container .module-person_box-description {
    display: inline-block;
    width: 65%;
    padding-left: 30px;
    margin-right: -4px;
}

@media screen and (max-width: 768px) {
    .fancybox-container .module-person_box-description {
        display: inline-block;
        width: 100%;
        padding-left: 0;
        margin-right: 0;
        margin-top: 10px;
    }
}

.fancybox-container .module-person_name {
    display: block;
    margin-bottom: 5px;
    font-size: 4rem;
    text-transform: none;
    color: #1a1919;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .fancybox-container .module-person_name {
        font-size: 3.2rem;
    }
}

.fancybox-container .module-person_title {
    font-size: 2.6rem;
    color: #1a1919;
}

@media screen and (max-width: 768px) {
    .fancybox-container .module-person_title {
        font-size: 1.7rem;
    }
}

.fancybox-container .module-person_description-container {
    margin-top: 30px;
    display: block;
}

@media screen and (max-width: 768px) {
    .fancybox-container .module-person_description-container {
        margin-top: 10px;
    }
}

.fancybox-container .module-person_description {
    display: block;
}

.module-person .fancybox-close-small {
    top: 20px;
    right: 20px;
}

.module-person .fancybox-close-small:before {
    font-size: 3rem;
}

.module-person-accordion .module-person_name-container {
    padding: 15px 50px 15px 5px;
    margin-bottom: 0;
    color: #3a464e;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: none;
    position: relative;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: inherit;
    margin: 0;
    padding: 0;
    text-transform: none;
}

.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: "\edc2";
    position: absolute;
    right: 20px;
    font-size: 1.6rem;
    top: 50%;
    color: #979797;
    transform: translateY(-50%);
}

.module-person-accordion .module_item {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #979797;
}

.module-person-accordion .module_item.js--active h3:after {
    content: "\edba";
    color: #009ace;
}

.module-person-accordion .module-person_name {
    margin-right: 10px;
    text-transform: uppercase;
}

.module-person-accordion .module-person_title {
    font-size: 1.8rem;
    display: inline-block;
    margin: 0;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_description-container {
    margin: 0;
    padding: 0 50px 15px 5px;
}

.module-person-accordion .module-person_photo-container {
    text-align: center;
    max-width: 200px;
    display: inline-block;
    margin: 0 0 15px;
    vertical-align: top;
    padding-right: 25px;
}

.module-person-accordion .module-person_box-description {
    display: inline-block;
    width: calc(100% - 205px);
    vertical-align: top;
}

@media screen and (max-width: 768px) {
    .module-person-accordion .module-person_photo-container {
        display: block;
        padding-right: 0;
        text-align: left;
        margin: 0 auto 15px;
    }

    .module-person-accordion .module-person_box-description {
        display: block;
        width: 100%;
    }
}

.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 only screen and (max-width: 768px) {
    .module-person-accordion .module-person_res-photo-container>span {
        display: block;
        margin: 0 0 10px 0;
    }
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details_photo-container, .module-person-details_name-container {
    display: inline-block;
    vertical-align: middle;
}

.module-person-details_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

@media only screen and (max-width: 768px) {
    .module-person-details_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    font-size: 3.6rem;
    color: #009ace;
}

.module-person-details_title {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
}

.module-person-details_description-container {
    margin-top: 40px;
}

.module-presentation .module_body {
    display: none;
}

.module-presentation-list .module_date-time {
    margin-bottom: 10px
}

.module-presentation-list .module_item {
    padding: 0;
    margin-bottom: 30px;
}

/*------ Q4 Preview Toolbar ------*/
body.PreviewBody {
    margin: 0;
    background-position: 0;
}

body.PreviewBody .PreviewToolBar {
    position: fixed;
    top: 100%;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    background: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    transform: translate(0, -100%);
    font-size: 24px;
    font-size: 2.4rem;
    cursor: pointer;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
    content: "\ed6d";
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft, body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: inline-block;
    vertical-align: middle;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before, body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 15px;
    line-height: 50px;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
    float: none;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
    content: "Select Preview Type:";
}

body.PreviewBody .PreviewToolBar .PreviewDateControls {
    float: right;
}

body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    content: "Select Preview Date:";
}

body.PreviewBody .PreviewToolBar img {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="radio"], body.PreviewBody .PreviewToolBar label, body.PreviewBody .PreviewToolBar input[type="text"], body.PreviewBody .PreviewToolBar select, body.PreviewBody .PreviewToolBar input[type="submit"] {
    display: inline-block;
    margin-right: 5px;
    font-family: "Neue Helvetica W02", "Helvetica Neue", Helvetica, Arial, sans-serif;
    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: 10px 40px 10px 0;
    background: transparent url('../design/svg/arrow-down.svg') no-repeat right 0 center;
    background-size: 25px 13px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #253589;
    color: #fff !important;
}

@media only screen and (max-width: 1024px) {
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft, body.PreviewBody .PreviewToolBar .PreviewDateControls {
        display: block;
        float: none;
        margin-bottom: 15px;
    }

    body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before, body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    body.PreviewBody .PreviewToolBar input[type="radio"], body.PreviewBody .PreviewToolBar label, body.PreviewBody .PreviewToolBar input[type="text"], body.PreviewBody .PreviewToolBar select, body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
}

/*-------- Search Modules --------*/
.module-search {
    position: relative;
    text-align: right;
}

.module-search_input[type="text"] {
    display: inline-block;
    width: 90%;
    padding: 7px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-search_button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 0;
    background: transparent url("../design/svg/q4-icon_buttons.svg");
    background-size: 300%;
    font-size: 0;
    cursor: pointer;
}

.module-search-result_link {
    margin-bottom: 15px;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_url {
    display: none;
}

/*-------- SEC Module CSS --------*/
.module-sec .module_header {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    border-bottom: 1px solid #979797;
    padding: 15px 0;
}

@media screen and (max-width: 768px) {
    .module-sec .module_header {
        display: none;
    }
}

.module-sec .module_options-select, .module-sec .module_options-label {
    margin-bottom: 10px;
    width: auto;
    min-width: 0;
}

.module-sec .module_options-label {
    font-size: 1.8rem;
    color: #3a464e;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .module-sec .module_options-label:last-of-type:before {
        content: "";
        display: table;
    }
}

@media only screen and (max-width: 768px) {
    .module-sec .module-sec_type-select, .module-sec .module-sec_year-select {
        min-width: 0;
    }
}

@media only screen and (max-width: 480px) {
    .module-sec .module-sec_type-select, .module-sec .module-sec_year-select {
        min-width: 0;
        width: 100%;
        margin-right: 0;
    }
}

.module-sec .module_header-text {
    padding: 0 10px 0 0;
    color: #000000;
}

.module-sec .module_item {
    padding: 20px 0;
    border-bottom: 1px solid #979797;
}

@media screen and (max-width: 768px) {
    .module-sec .module_item {
        padding: 15px 0;
        border-bottom: 2px solid #979797;
    }

    .module-sec .module_container--content {
        border-top: 2px solid #979797;
    }
}

.module-sec .module_item .grid_col {
    vertical-align: top;
    padding: 0 20px 0 0;
    margin-bottom: 0;
    font-size: 2.2rem;
    color: #000;
    display: inline-block;
    font-weight: 700;
}

.module-sec .module_item .module-sec_filing {
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    .module-sec_date, .module-sec_filer, .module-sec_filing, .module-sec_description {
        margin-bottom: 15px;
    }

    .module-sec_date-text:before, .module-sec_filing:before, .module-sec_description:before, .module-sec_download-list:before {
        content: "";
        display: block;
        margin-bottom: 10px;
        font-weight: 500;
        color: #000;
        text-transform: none;
        font-size: 1.6rem;
    }

    .module-sec_date-text:before {
        content: "Date: ";
    }

    .module-sec_filing:before {
        content: "Filling: ";
    }

    .module-sec_description:before {
        content: "Description: ";
    }

    .module-sec_download-list:before {
        content: "Download: ";
        margin-bottom: 0;
    }

    .module-sec_download-list-item:not(:last-of-type) {
        margin-right: 0;
    }

    .module-sec .module_item .grid_col {
        padding: 5px 0;
        margin-bottom: 10px;
    }
}

.module-sec_download-list-item {
    display: inline-block;
    margin-right: 2px;
}

.module-sec_download-list .module_link {
    margin: 0;
}

.module-sec_download-list .module_link:before {
    font-size: 2.4rem;
}

.module-sec-details_date, .module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec-details_download-list-item {
    display: inline-block;
    margin-right: -5px;
}

.module-sec-details_download-list .module_link {
    margin: 0;
}

.module-sec-details_download-list .module_link:before {
    font-size: 2.4rem;
}

/*---- Accessibility Skip Link ---*/
.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
    font-weight: 700;
    font-size: 1.4rem;
}

.module-skip_link:focus, .module-skip_link:active, .module-skip_link:hover {
    top: 0;
    background: #000;
    outline: 0;
    color: #fff;
    text-decoration: none!important;
}

.module-skip_link:visited {
    color: #fff;
}

.module-slider .module_container--content {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.module-slider .slick-slider {
    padding: 0;
    margin: 0;
    height: 100%;
}

.module-slider .slick-list {
    height: 100%;
}

.module-slider .slick-slider .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.module-slider .slick-slider .slick-slide:before {
    content: "";
    position: absolute;
    background: #000;
    opacity: 0.2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.module-slider .module_item {
    padding: 0;
    margin: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: table;
    table-layout: fixed;
    height: 100%;
    position: relative;
}

.module-slider .module_item-wrap {
    padding: 0;
    margin: 0;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.module-slider .slick-list .slick-track {
    height: 100%;
}

.module-slider .slick-prev {
    left: 15px;
}

.module-slider .slick-next {
    right: 15px;
}

.module-slider .slick-arrow:before {
    font-size: 30px;
}

.module-slider .module-slider_arrows {
    position: absolute;
    width: 100%;
    max-width: 1400px;
    margin: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .module-slider .module-slider_arrows {
        display: none;
    }
}

.module-slider .slick-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.module-slider .module_add-to-calendar-reveal {
    color: #fff;
}

.module-slider .module-slider_title {
    font-size: 5.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .module-slider .module-slider_title {
        font-size: 3.8rem;
        margin-bottom: 30px;
    }
}

.module-slider_description {
    font-size: 2.8rem;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .module-slider_description {
        font-size: 2.1rem;
    }
}

.module-slider .module_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.module-slider_video > a {
    position: relative;
    padding-right: 20px;
    display: inline-block;
}

.module-slider_video i:before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

/* -------------- Slick -------------- */
.slick-dots {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.slick-dots > li {
    display: inline-block;
}

.slick-dots > li:not(:last-child) {
    margin-right: 10px
}

.slick-dots > li > button {
    margin: 0;
    padding: 0;
    height: 12px;
    width: 12px;
    background: transparent;
    font-size: 0;
    border-radius: 100%;
    border: 1px solid #fff;
    cursor: pointer;
}

.slick-dots > li.slick-active > button {
    background: #fff
}

/*------ Stock Chart Widget ------*/
.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #253589;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #000000;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #000000;
}

.module-stock-chart .highcharts-tooltip path[stroke], .module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #000000;
}

.module-stock-chart .highcharts-navigator rect {
    fill: #000000;
    opacity: 0.5;
}

.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: #000;
}

.module-stock-chart .highcharts-navigator-handle-right path, .module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #000000;
    stroke: #000000;
}

.module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
}

.module-stock-chart .highcharts-button rect, .module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
}

.module-stock-chart .highcharts-button text, .module-stock-chart .highcharts-input-group text {
    fill: #333333;
}

.module-stock-chart .highcharts-container > svg > .highcharts-button {
    display: none;
}

.highcharts-markers path {
    fill: #000000;
    stroke: #000000;
}

.highcharts-legend-item rect {
    fill: #000000;
}

.module-stock-chart .highcharts-legend>rect {
    height: 26px;
    fill: transparent;
}

/*------ Stock Header Module -----*/
.module-stock-header.module .module_container--outer {
    max-width: 650px;
}

@media screen and (max-width: 768px) {
    .module-stock-header.module .module_container--outer {
        max-width: 400px;
    }
}

.module-stock-header .module_title {
    text-align: center;
    margin-bottom: 25px;
}

.module_stock-header-side--right {
    text-align: right
}

@media screen and (max-width: 768px) {
    .module_stock-header-side--left {
        text-align: center;
        margin-bottom: 30px
    }
}

.module-stock-header_description1 {
    font-weight: 700;
    font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
    .module-stock-header_description1 {
        font-size: 2rem;
        margin-bottom: 10px
    }
}

.module-stock-header_stock-price {
    display: block;
    font-size: 5.7rem;
    font-weight: 700;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .module-stock-header_stock-price {
        font-size: 3.8rem;
        margin-bottom: 10px;
    }
}

.module-stock-header_stock-price:before {
    content: '$';
}

.module-stock-header_change, .module-stock-header_percent-change {
    display: inline-block;
    font-size: 3.6rem;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .module-stock-header_change, .module-stock-header_percent-change {
        font-size: 2.4rem;
    }
}

.module-stock-header_change {
    position: relative;
    padding-left: 40px;
}

@media screen and (max-width: 768px) {
    .module-stock-header_change {
        padding-left: 30px;
    }
}

.module-stock-header_change: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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    margin-left: -40px;
    font-size: 3rem;
    top: 4px;
}

@media screen and (max-width: 768px) {
    .module-stock-header_change:before {
        font-size: 2.4rem;
        top: -1px;
        margin-left: -30px;
    }
}

.module-stock-header_change.module-stock-header_down:before {
    transform: rotate(180deg);
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_open, .module-stock-header_high, .module-stock-header_low, .module-stock-header_volume {
    font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
    .module-stock-header_open, .module-stock-header_high, .module-stock-header_low, .module-stock-header_volume {
        font-size: 1.7rem;
    }

    .module-stock-header_open, .module-stock-header_low {
        text-align: left;
    }
}

.module-stock-header_open, .module-stock-header_high, .module-stock-header_low {
    margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
    .module-stock-header_open, .module-stock-header_high, .module-stock-header_low {
        margin-bottom: 10px;
    }
}

.module-stock-header_open-value, .module-stock-header_high-value, .module-stock-header_low-value, .module-stock-header_volume-value {
    font-weight: 700;
}

.module-stock-header_description3, .module-stock-header_date {
    display: block;
    font-size: 2rem;
    opacity: 0.5;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .module-stock-header_description3, .module-stock-header_date {
        font-size: 1.5rem;
        margin-top: 15px;
    }
}

.module-stock-header_description3 {
    margin-top: 5px;
}

/*------ Stock Quote Module ------*/
.module-stock .module_options {
    margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .module-stock-historical .module_options-label, .module-stock-historical .module_options-select, .module-stock-historical .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module-stock .stock-historical-range .module_options > *:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_lookup-title {
    padding-left: 20px;
}

@media only screen and (max-width: 768px) {
    .module-stock_lookup-title {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }
}

.module-stock-quote .module-stock_open, .module-stock-quote .module-stock_high, .module-stock-quote .module-stock_low, .module-stock-quote .module-stock_volume, .module-stock-quote .module-stock_indice, .module-stock-quote .module-stock_week-low, .module-stock-quote .module-stock_week-high {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
    .module-stock-quote .module-stock_open, .module-stock-quote .module-stock_high, .module-stock-quote .module-stock_low, .module-stock-quote .module-stock_volume, .module-stock-quote .module-stock_indice, .module-stock-quote .module-stock_week-low, .module-stock-quote .module-stock_week-high {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
}

.module-stock-quote .module-stock_value {
    font-weight: 700
}

.module-stock_label > span, .module-stock_value > span {
    display: block;
    padding: 15px 20px;
}

@media only screen and (max-width: 768px) {
    .module-stock_label > span, .module-stock_value > span {
        padding: 15px 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_label > span, .module-stock_value > span {
        padding: 15px 0 15px 5px;
    }
}

.module-stock_up {
    color: #23a217;
}

.module-stock_down {
    color: #ff0000;
}

.module-stock_label {
    font-weight: normal;
}

.module-stock_value .module-stock_price:before, .module-stock_value .module-stock_high:before, .module-stock_value .module-stock_low:before, .module-stock_value .module-stock_open:before, .module-stock_value .module-stock_close:before, .module-stock_value .module-stock_week-low:before, .module-stock_value .module-stock_week-high:before, .module-stock_value .module-stock_previous-close:before {
    content: "$";
}

.module-stock_date {
    margin-top: 20px;
    font-size: 2rem;
    opacity: 0.5;
}

@media only screen and (max-width: 1024px) {
    .module-stock_date {
        font-size: 1.5rem;
    }
}

.module-stock_date-text {
    margin-bottom: 10px;
    display: block;
}

.module-stock-quote .module-stock_price {
    font-size: 5.7rem;
    font-weight: 700;
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .module-stock-quote .module-stock_price {
        font-size: 3.7rem;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 768px) {
    .module-stock_column--left {
        text-align: center;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 768px) {
    .module-stock_column--right {
        text-align: right;
    }
}

.module-stock-quote .module-stock_change {
    color: #000;
    font-size: 3.6rem;
    font-weight: 700;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    padding-left: 40px;
}

@media screen and (max-width: 1024px) {
    .module-stock-quote .module-stock_change {
        font-size: 2.4rem;
        padding-left: 25px;
    }
}

.module-stock-quote .module-stock_change:before {
    content: "\e910";
    position: absolute;
    bottom: 0;
    margin-left: -40px;
    font-size: 3rem;
    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;
}

@media screen and (max-width: 1024px) {
    .module-stock-quote .module-stock_change:before {
        margin-left: -25px;
        font-size: 2rem;
    }
}

.module-stock-quote .module-stock_change.module-stock_down:before {
    transform: rotate(180deg)
}

.module-stock-quote .module-stock_percent-change {
    color: #000;
    font-size: 3.6rem;
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .module-stock-quote .module-stock_percent-change {
        font-size: 2.4rem;
    }
}

/*- MailingList Subscribe Module -*/
.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.module-subscribe_table .module_input[type="text"] {
    width: 100%;
}

.module-subscribe_form {
    font-size: 0;
}

.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 1.6rem;
}

.module-subscribe_form tr.module-subscribe_first-name {
    padding-right: 20px;
}

.module-subscribe_form tr.module-subscribe_email {
    width: 100%;
    margin-bottom: 0;
}

.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;
}

.module-subscribe_table td {
    display: block;
}

.module-subscribe_form label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 400;
}

.module-subscribe_mailing-list .module-subscribe_list tr {
    display: inline-block;
    width: 50%;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header {
    display: none;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 700;
}

.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: 1.4rem;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

.module-subscribe_table-footer {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}

.module-subscribe-investors .module_title {
    color: #1a1919;
    font-size: 3rem;
    display: inline-block;
    vertical-align: top;
    width: 300px;
}

@media only screen and (max-width: 768px) {
    .module-subscribe-investors .module_title {
        color: #000000;
        font-size: 2.4rem;
        display: block;
        width: auto;
    }
}

.module-subscribe-investors .module_container--inner {
    max-width: 585px;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 305px);
}

@media screen and (max-width: 768px) {
    .module-subscribe-investors .module_container--inner {
        max-width: none;
        ; display: block;
        width: 100%;
    }
}

.module-subscribe-investors .module_required {
    display: none;
}

/* MailingList Unsubscribe Module */
.module-unsubscribe_table, .module-unsubscribe_table tbody {
    display: block;
}

.module-unsubscribe_table tr {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    vertical-align: top;
    font-size: 1.6rem;
}

.module-unsubscribe_table td {
    display: block;
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.module-unsubscribe_table .module_input[type="text"] {
    width: 100%;
}

.module-unsubscribe .module_container--outer:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 300px;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe .module_container--outer:before {
        display: none;
    }
}

.module-unsubscribe .module_container--inner {
    display: inline-block;
    vertical-align: top;
    max-width: 585px;
    width: calc(100% - 305px);
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe .module_container--inner {
        max-width: none;
        width: 100%;
    }
}

.module-unsubscribe .module_title {
    color: #1a1919;
    font-size: 2.4rem;
    margin-bottom: 20px
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe .module_title {
        font-size: 2.1rem;
    }
}

/*==================================
 ----------- LAYOUT CSS -----------
==================================*/
/*------- iframe layout CSS ------*/
.layout--iframe .pane--content .module {
    padding: 35px 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}

/*==================================
 ------------ BLANK CSS -----------
==================================*/
/*-------- Layout Specific -------*/
.layout--two-column .pane--content {
    position: relative;
}

.layout--two-column .pane--content:after {
    content: "";
    background-color: transparent;
    position: absolute;
    right: 0;
    max-width: 162px;
    top: 0;
    bottom: 0;
    background-image: url('../images/bg_resources.jpg');
    background-size: contain;
    background-repeat: repeat-y;
    width: 10%;
}

@media only screen and (max-width: 1024px) {
    .layout--two-column .pane--content:after {
        display: none;
    }
}

.layout--two-column .pane--content .module_container--outer {
    position: relative;
    z-index: 1;
}

.layout {
    overflow: hidden;
    position: relative
}

.layout.js--megamenu:after {
    content: "";
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 1000%;
    opacity: 0.7;
}

.layout_header {
    line-height: 1.5;
    padding-top: 73px;
}

@media screen and (max-width: 1024px) {
    .layout_header {
        padding-top: 70px;
    }
}

@media screen and (max-width: 640px) {
    .layout_header {
        padding-top: 60px;
    }
}

.layout_sticky {
    top: 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 115;
    background-color: #fff;
    transition: background-color .6s ease-in-out,transform .6s ease-in-out,-webkit-transform .6s ease-in-out;
}

.layout_sticky.js--effect-up {
    /*     transform: translateY(-100%); */
}

@media screen and (max-width: 1024px) {
    .layout.js--mobile {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }

    .layout:after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: "";
        visibility: hidden;
        opacity: 0;
        transition: all .6s ease-in-out;
        background: rgba(255, 255, 255, 0);
        z-index: 112;
    }

    .layout.js--mobile:after {
        background: rgba(255, 255, 255, 0.9);
        visibility: visible;
        opacity: 1;
        transition: all .6s ease-in-out;
    }
}

.layout_footer {
    background-image: url('../images/bg_footer.jpg');
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: auto 100px;
    padding-top: 100px;
}

@media screen and (max-width: 768px) {
    .layout_footer {
        background-size: auto 50px;
        padding-top: 50px;
    }
}

/*--------- Pane Specific --------*/
.pane--header {
    position: relative;
    background-color: hsla(0,0%,100%,.96);
    z-index: 112;
    border-bottom: 1px solid #e5e5e5;
}

@media only screen and (max-width: 1024px) {
    .pane--header {
        height: auto;
    }
}

.pane--header .pane_inner {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 12px;
}

.layout_toggle {
    display: none;
    font-size: 0;
}

.layout_toggle svg {
    cursor: pointer;
}

.layout_toggle i:focus {
    outline: none;
}

.js--mobile .layout_toggle i:before {
    content: "\ed6d";
}

@media only screen and (max-width: 1024px) {
    .layout_toggle {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
        margin-top: -1px;
    }
}

.pane--banner {
    position: relative;
    background-image: url('../design/banner/Sonos_Lifestyle_RGB_Small_ConnectAmp.jpg');
    background-size: cover;
    background-position: center 90%;
    background-repeat: no-repeat;
}

.layout--home .pane--banner {
    background-image: none
}

.page--details-sec .pane--banner, .SectionReportsampFilings .pane--banner {
    background-image: url('../design/banner/2020/IR-Five.jpg');
}

.SectionCorporateGovernance .pane--banner {
    background-image: url('../design/banner/2020/IR-Move.jpg');
     background-position: center 90%;
}

.page--activation .pane--banner, .page--unsubscribe .pane--banner, .page--unsubscribe .pane--banner, .page--investor-resources .pane--banner {
    background-image: url('../design/banner/2020/IR-One.jpg');
    background-position: center 20px;
    background-size: 1903px 500px;
}

.page--details-news .pane--banner, .page--details-event .pane--banner, .SectionNewsampEvents .pane--banner {
    background-image: url('../design/banner/2020/IR-Sub3.jpg');
}

.pane--banner:before {
    content: "";
    position: absolute;
    background: #000;
    opacity: 0.2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.pane--banner .pane_inner {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    height: 500px;
}

@media only screen and (max-width: 768px) {
    .pane--banner .pane_inner {
        height: 380px;
    }
}

.pane--navigation {
    background: #253589;
}

.pane--navigation .pane_inner {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pane--navigation .module-search {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .pane--navigation {
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 120;
        background: #fff;
        height: 100%;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform .6s ease-in-out;
        width: 384px;
    }

    .js--mobile .pane--navigation {
        transform: translateX(0);
    }

    .pane--navigation .pane_inner {
        padding: 0;
    }

    .pane--navigation .module-search {
        display: block;
    }

    .pane--navigation .module-search_input {
        width: 100%;
        max-width: none;
        padding: 20px;
        border: none;
        background-color: #005894;
        color: #fff;
        text-transform: uppercase;
    }

    .pane--navigation .module-search_button {
        top: 20px;
        right: 20px;
        background-position: 0 -100%;
    }
}

@media only screen and (max-width: 384px) {
    .pane--navigation {
        width: 100%;
    }
}

.pane--left .module, .pane--content .module {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pane--left .module_container--outer, .pane--content .module_container--outer {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pane--left .module--thin, .pane--content .module--thin {
    padding-top: 25px;
    padding-bottom: 25px;
}

.pane--left .module--thin-top, .pane--content .module--thin-top {
    padding-top: 25px;
}

.pane--left .module--thin-bottom, .pane--content .module--thin-bottom {
    padding-bottom: 25px;
}

.pane--left .module--thick, .pane--content .module--thick {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pane--left .module--thick-top, .pane--content .module--thick-top {
    padding-top: 100px;
}

.pane--left .module--thick-bottom, .pane--content .module--thick-bottom {
    padding-bottom: 100px;
}

.pane--left .module--no-padding, .pane--content .module--no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.pane--left .module--no-padding-top, .pane--content .module--no-padding-top {
    padding-top: 0;
}

.pane--left .module--no-padding-bottom, .pane--content .module--no-padding-bottom {
    padding-bottom: 0;
}

.pane--content .module-sitemap {
    padding-bottom: 35px;
}

.pane--footer {
    padding-top: 114px;
    font-size: 1.4rem;
    background: #fff;
}

@media only screen and (max-width: 768px) {
    .pane--footer {
        padding-top: 50px;
    }
}

.pane--footer .pane_inner {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.pane--footer .module_title {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: normal;
}

.pane--footer .module_error-container {
    margin-bottom: 20px;
}

.pane--footer .module_error-container p {
    display: none;
}

.pane--footer .module_error-container li {
    margin-bottom: 5px;
}

.pane--footer .module-links {
    text-transform: uppercase;
}

.pane--footer .module-links li {
    line-height: 1.4;
}

.pane--footer .module_introduction, .pane--footer .module-subscribe_list-header, .pane--footer .module-subscribe_email .module_required, .pane--footer .module-subscribe_mailing-list, .pane--footer .module-subscribe .CaptchaContainer {
    display: none;
}

.pane--footer .module-subscribe_email label {
    display: block;
    font-size: 0;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.pane--footer .module-subscribe_email label:before {
    content: "Enter email address";
    font-size: 1.4rem;
    color: #4d4d4d;
    cursor: pointer;
    display: block;
    margin-bottom: 0;
}

.pane--footer .module-subscribe_form tbody {
    display: block;
}

.pane--footer .module-subscribe_form tr {
    width: 100%;
    margin: 0;
}

.pane--footer .module-subscribe_mailing-list {
    margin: 10px 0 15px;
}

.pane--footer .module-subscribe_list > td {
    padding: 0;
}

.pane--footer .module-subscribe_mailing-list.js--revealed, .pane--footer .module-subscribe .module_actions.js--revealed {
    display: block;
}

.pane--footer .module_input[type="text"] {
    max-width: none;
    height: 37px;
    vertical-align: top;
    border-color: #ccc;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    color: rgba(0,0,0,.75);
}

.module-subscribe--footer {
    width: 50%;
    padding-right: 15px;
    margin-bottom: 24px;
    float: left;
}

@media only screen and (max-width: 640px) {
    .module-subscribe--footer {
        width: 100%;
        padding-right: 0;
        float: none;
        margin-bottom: 45px;
    }
}

.module-subscribe--footer .module-subscribe_table-footer {
    display: block;
    color: #222;
}

.module-subscribe--footer .module-subscribe_table-footer p {
    line-height: 1.2;
    margin-bottom: 19px;
}

.module-subscribe--footer .module_title {
    font-weight: 700;
    font-style: normal;
    color: #222;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: none;
    font-size: 12.8px;
    font-size: 1.28rem;
}

@media only screen and (max-width: 1024px) {
    .module-subscribe--footer .module_title {
        font-size: 1.5rem;
    }
}

.module-subscribe--footer .module-subscribe_table-container {
    padding-right: 33.33%;
    position: relative;
}

.module-subscribe--footer .module_actions {
    width: 33.33%;
    position: absolute;
    right: 0;
    margin: 21px 0 0;
    top: 0;
}

.module-subscribe--footer .module-subscribe_submit-button {
    height: 37px;
    line-height: 35px;
    font-size: 2rem;
    padding: 0 10px;
    width: 100%;
    background: #000;
    color: #fff;
    vertical-align: top;
    border-color: #000;
}

.module-subscribe--footer .module-subscribe_form {
    margin-bottom: 15px;
}

.module-subscribe--footer .module_message--success {
    margin-bottom: 63px;
    margin-top: 50px;
}

@media screen and (max-width: 640px) {
    .module-subscribe--footer .module_message--success {
        margin-bottom: 0;
        margin-top: 0;
    }
}

.pane--footer2 .pane_inner {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.pane--credits {
    padding-top: 15px;
    padding-bottom: 27px;
    text-align: right;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.5;
}

.pane--credits a {
    color: #000;
    font-weight: 400;
}

.pane--credits .pane_inner {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/*--------- Page Specific --------*/
.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}

/*-------- Module Specific -------*/
@media screen and (max-width: 1024px) {
    .module-overview h2 {
        font-size: 3rem
    }
}

@media screen and (max-width: 768px) {
    .module-overview h2 {
        font-size: 3.2rem
    }
}

.module-overview_items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

@media screen and (max-width: 768px) {
    .module-overview_items {
        display: block;
    }
}

.module-overview_item-container {
    display: inline-flex;
}

@media screen and (max-width: 1024px) {
    .module-overview_item-container {
        display: block;
    }
}

.module-overview_item {
    height: 100%;
    width: 100%;
    padding: 30px;
    border: 1px solid #000;
}

@media screen and (max-width: 1024px) {
    .module-overview_item {
        padding: 20px;
    }
}

@media screen and (max-width: 768px) {
    .module-overview_item {
        margin-bottom: 20px;
        min-height: 225px;
    }
}

.module-reasons_header {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    .module-reasons_header {
        padding: 20px 10px
    }
}

@media screen and (max-width: 768px) {
    .module-reasons_header {
        display: none;
    }
}

.module-reasons_header:after {
    content: "";
    position: absolute;
    right: -25px;
    bottom: -25px;
    height: 50px;
    width: 50px;
    background: #eaecec;
    transform: rotate(45deg);
}

.module-reasons_header h3 {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    width: 100%;
    margin-bottom: 0;
    font-size: 2.4rem
}

@media only screen and (max-width: 1024px) {
    .module-reasons_header h3 {
        font-size: 1.8rem
    }
}

@media only screen and (max-width: 768px) {
    .module-reasons_header h3 {
        font-size: 2.4rem
    }
}

.module-reasons_item--wrap {
    /* position: relative; */
    height: 100%;
    overflow: hidden;
    /* cursor: pointer; */
}

.module-reasons_items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

@media screen and (max-width: 1024px) {
    .module-reasons_items {
        margin-left:-15px;
    }
}

@media screen and (max-width: 768px) {
    .module-reasons_items {
        display: block;
    }
}

.module-reasons_item-container.grid_col {
    display: inline-flex;
    box-sizing: content-box;
}

@media screen and (max-width: 1024px) {
    .module-reasons_item-container.grid_col {
        padding-left: 15px;
    }
}

@media screen and (max-width: 768px) {
    .module-reasons_item-container.grid_col {
        display: block;
    }

    .module-reasons_item-container.grid_col:not(:last-of-type) {
        margin-bottom: 30px
    }
}

.module-reasons_body {
    padding: 20px;
    position: relative;
    /* top: 100%; */
    height: 100%;
    transition: top 0.3s ease-in-out;
    background: #eaecec;
}

@media only screen and (max-width: 1024px) {
    .module-reasons_body {
        padding: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .module-reasons_body {
        top: 0;
        padding: 0;
        background: transparent;
    }
}

.module-reasons_item--wrap:hover .module-reasons_body {
    top: 0;
}

.module-reasons_body ul > li {
    font-size: 1.6rem;
}

@media only screen and (max-width: 1024px) {
    .module-reasons_body ul > li {
        line-height: 1.4;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 768px) {
    .module-reasons_body ul > li {
        line-height: 1.5;
        font-size: 1.6rem;
    }
}

.module-reasons_body h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) {
    .module-reasons_body h3 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 768px) {
    .module-reasons_body h3 {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }
}

.module-social .module_tabs {
    margin-bottom: 10px;
}

.module-social .module_tabs .button {
    display: block;
}

.module-social .module_tabs .button.js--selected {
    background: #253589;
    color: #fff;
}

.module-social .module_tab {
    display: inline-block;
    padding-right: 5px;
    padding-bottom: 5px;
}

@media (max-width: 640px) {
    .module-social .module_tab {
        width: 50%;
    }
}

.module-social .module_container--content {
    padding: 0;
}

@media (max-width: 767px) {
    .module-social .module_container--content {
        padding: 0 20px;
        margin: 0;
    }
}

.module-social .module_container--content .slick-arrow {
    color: #253589;
}

.module-social .module_headline-link {
    color: #253589;
}

.module-social .module_item.grid_col {
    padding: 0 0 0 20px;
    margin: 15px 0;
}

@media (max-width: 767px) {
    .module-social .module_item.grid_col {
        padding-left: 0;
    }
}

.module-social .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
}

.module-social .module_item + .module_item {
    border-top: none;
}

.module-social .module_date {
    text-align: left;
    margin-bottom: 15px;
}

.module-social .module_headline {
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

.module-social .module_icon {
    float: right;
    margin-left: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    font-size: 2rem;
}

.module-social .module_icon .q4-icon_twitter {
    color: #1da1f2;
}

.module-social .module_icon .q4-icon_facebook {
    color: #365899;
}

.module-social .module_icon .q4-icon_youtube {
    color: #cc181e;
}

/* -------------- Module Page Title  -------------- */
.module-page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.module-page-title .module_title {
    margin: 0;
    padding: 0;
    color: #fff;
}

/* -------------- Hide / Show Mobile  -------------- */
.show-on-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .show-on-mobile {
        display: block;
    }
}

.hide-on-mobile {
    display: block;
}

@media screen and (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}

/* -------------- Module Tabs  -------------- */
.module-tabs {
    text-align: center;
}

.module-tabs ul > li {
    display: inline-block;
}

@media screen and (max-width: 480px) {
    .module-tabs ul {
        width: 100%;
        display: table;
        table-layout: fixed;
    }

    .module-tabs ul > li {
        display: table-cell;
        vertical-align: middle;
    }

    .module-tabs ul > li:last-of-type {
        width: 160px;
    }
}

.module-tabs ul > li span {
    background: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 20px 0;
    min-width: 190px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .module-tabs ul > li span {
        min-width: 0;
        width: 100%;
    }
}

.module-tabs ul > li span.js--active {
    background: #000;
    color: #fff;
}

.module-tabs ul > li span:after {
    display: none;
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 7px solid #000000;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
}

.module-tabs ul > li span.js--active:after {
    display: block;
}

.module[class*='section'] {
    display: none;
}

.module.js--active[class*='section'] {
    display: block;
}

/* -------------- Module legend tabs  -------------- */
ul.module_legend-tabs > li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
}

ul.module_legend-tabs > li:not(:last-of-type):after {
    content: "/";
    margin-left: 20px;
    display: inline-block;
}

ul.module_legend-tabs > li span.js--active {
    font-weight: 700;
}

ul.module_legend-tabs > li span {
    font-weight: 500;
    cursor: pointer;
    font-size: 1.4rem;
}

ul.module_legend-tabs {
    margin-bottom: 30px;
}

/* -------------- Module downloads  -------------- */
.module-downloads--widget.module .module_container--outer {
    padding: 0;
    max-width: 1200px;
}

.module-downloads--widget .mmodule_items-container {
    max-width: 585px;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

@media screen and (max-width: 768px) {
    .module-downloads--widget .mmodule_items-container {
        max-width: none;
        padding: 20px;
        position: relative;
        top: auto;
        transform: none;
        width: 100%;
    }
}

.module-downloads--widget .module_container--content {
    position: relative;
}

@media screen and (max-width: 768px) {
    .module-downloads--widget .module_container--content {
        padding-left:20px;
        padding-right: 20px;
    }
}

.module-downloads--widget .module_image-container {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .module-downloads--widget .module_image-container {
        margin-top: -50px;
        margin-left: -20px;
        margin-right: -20px;
    }
}

.module-downloads--widget .module_image {
    max-width: 900px;
}

/* -------------- Module Contact Investors  -------------- */
.module-contact-investors .module_title {
    color: #1a1919;
    font-size: 3rem;
    display: inline-block;
    vertical-align: top;
    width: 300px;
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    .module-contact-investors .module_title {
        color: #000000;
        font-size: 2.4rem;
        display: block;
        width: auto;
    }
}

.module-contact-investors .module_container--inner {
    display: inline-block;
    vertical-align: top;
    max-width: 585px;
    width: calc(100% - 305px);
}

@media only screen and (max-width: 768px) {
    .module-contact-investors .module_container--inner {
        display: block;
        width: 100%;
        max-width: none;
    }
}

/* -------------- Module Background Separator  -------------- */
.module.module-background-separator {
    background-image: url('../images/bg_modules-separator.jpg');
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: auto 100px;
    padding: 0;
    height: 100px;
}

@media screen and (max-width: 768px) {
    .module.module-background-separator {
        height: 50px;
        background-size: auto 50px;
    }
}

/* -------------- Module events-presentations  -------------- */
.module-events-presentations .module_title {
    margin-bottom: 30px;
}

/* -------------- Module Logo  -------------- */
.module-logo {
    display: inline-block;
    padding: 0;
    vertical-align: middle;
    margin-right: 36px;
    width: 125px;
}

@media only screen and (max-width: 1024px) {
    .module-logo {
        width: 50%;
        text-align: center;
        vertical-align: middle;
        margin: 0;
    }
}

.module-logo a {
    padding-top: 15px;
    padding-bottom: 14px;
    display: block;
    line-height: 1;
    font-size: 4rem;
}

@media only screen and (max-width: 1024px) {
    .module-logo a {
        display: inline-block;
        margin-left: -35px;
    }
}

@media only screen and (max-width: 640px) {
    .module-logo a {
        font-size: 3rem;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-left: 0;
    }
}

/* -------------- Module Mega Nav  -------------- */
.mega-nav--desktop {
    display: inline-block;
    width: calc(100% - 378px);
    vertical-align: middle;
}

@media only screen and (max-width: 1024px) {
    .mega-nav--desktop {
        display: none;
    }
}

.mega-nav--desktop .mega-nav_list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #e5e5e5;
    padding: 24px 24px 24px 16px;
    margin-top: -3px;
}

.mega-nav_links > li:hover > .mega-nav_list {
    /*     display: block; */
}

.mega-nav_item-wrap {
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    position: relative;
}

.mega-nav_links {
    display: flex;
}

.mega-nav_links > li > a {
    position: relative;
    padding: 24px 24px 20px 24px;
    font-weight: 700;
    color: #1A1919;
    display: block;
    font-size: 1.4rem;
    line-height: 24px;
}

.mega-nav_links > li a:focus {
    text-decoration: none!important;
}

.mega-nav_menu-title {
    font-size: 28px;
    max-width: 450px;
    font-weight: 700;
    margin-left: 8px;
    margin-top: 24px;
    margin-bottom: 0;
    line-height: 1.15;
    padding-bottom: 8px;
}

.mega-nav_item-image {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

@media screen and (max-width: 1145px) {
    .mega-nav_item-image {
        display: none
    }
}

.mega-nav_item-image-bg {
    bottom: -24px;
    max-width: none;
    position: absolute;
    right: 0;
    text-align: center;
}

.mega-nav_item-title-block {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 880px;
    min-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.product {
    height: 210px;
    max-height: 210px;
    max-width: 190px;
    min-height: 210px;
    min-width: 190px;
    width: 190px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 8px 8px 8px;
    -webkit-transition: .1s;
    transition: .1s;
    margin-top: 12px;
    margin-bottom: 12px;
    background: #fff;
    position: relative;
}

.product:hover, .product-tile:hover {
    border-color: #868686;
}

.product-tile {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding-top: 8px;
    -webkit-transition: .1s;
    transition: .1s;
    height: 210px;
    max-height: 210px;
    max-width: 190px;
    min-height: 210px;
    min-width: 190px;
    width: 190px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    margin-top: 12px;
    margin-bottom: 12px;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    display: flex;
    text-align: center;
    font-size: 20px;
}

.product-price-container {
    padding: 0;
    display: flex;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
}

.product .product-price {
    line-height: 16px;
    font-size: 14px;
    margin-bottom: 0;
    text-align: center;
}

.product header {
    height: 27%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 400;
}

.product .product-name {
    line-height: 16px;
    font-size: 14px;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    flex-shrink: 1;
    flex-grow: 1;
    align-items: flex-end;
    display: flex;
    justify-content: space-around;
}

.product footer {
    height: 72%;
    max-height: 72%;
    min-height: 72%;
    max-width: 100%;
    padding-top: 8px;
    flex-shrink: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 2px;
}

.product .product-image {
    min-height: 75%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 1;
    flex-grow: 1;
    align-items: center;
    display: flex;
}

.product .product-image img {
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.product .product_tile-caption {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 0;
    margin-top: 4px;
    text-align: center;
    font-weight: 400;
}

.product-view-all-container {
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    line-height: 1.15;
}

.product-view-all {
    color: #000;
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 0;
}

.product-tile-badge-container {
    left: 0;
    right: 0;
    top: -12px;
    position: absolute;
    margin: 0;
    padding: 0;
    text-align: center;
}

.product-tile-badge {
    border-radius: 10px;
    background-color: #00A1A7;
    margin-bottom: 0;
    color: #ffffff;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 12px;
    font-weight: 400;
}

.mega-nav_links > li {
    display: inline-block;
}

.mega-nav_links > li > a:after {
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 0;
    visibility: hidden;
    position: absolute;
    background: #000;
    border: none;
    -webkit-transition: height visibility .5s cubic-bezier(.19,1,.22,1) cubic-bezier(.25,.25,.75,.75) 0s .8s;
    transition: height visibility .5s cubic-bezier(.19,1,.22,1) cubic-bezier(.25,.25,.75,.75) 0s .8s;
}

.mega-nav_links > li:hover > a:after, .mega-nav_links > li > a:focus:after {
    visibility: visible;
    height: 4px;
    -webkit-transition: height .5s cubic-bezier(.19,1,.22,1),visibility 0s cubic-bezier(.25,.25,.75,.75);
    transition: height .5s cubic-bezier(.19,1,.22,1),visibility 0s cubic-bezier(.25,.25,.75,.75);
}

.mega-nav_link-title {
    height: 210px;
    max-height: 210px;
    max-width: 190px;
    min-height: 210px;
    min-width: 190px;
    width: 190px;
    margin-top: 12px;
    margin-bottom: 12px;
    padding-top: 20px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
}

.mega-nav_link-title-wrap {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
}

.mega-nav_link-title-wrap h2 {
    color: #868686;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: .9;
    font-weight: 700;
}

.mega-nav_link-title-wrap div {
    padding: 0;
    margin: 0;
}

.mega-nav_link-title .module_link-browse {
    line-height: 1.15;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
    -webkit-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out;
    color: #1A1919;
    text-decoration: none;
    font-size: 1.6rem;
}

/* -------------- Module Utility  -------------- */
.module-utility_item-dropdown {
    display: none;
    width: 480px;
    right: 0;
    top: 100%;
    position: absolute;
    font-size: 12px;
    padding-bottom: 24px;
    padding-top: 40px;
    padding-left: 36px;
    padding-right: 36px;
    background: #ffffff;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.module-utility_item.js--open .module-utility_item-dropdown, .module-utility_item:hover .module-utility_item-dropdown {
    display: flex;
}

.module-utility_item-dropdown-row {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 12px;
}

.module-utility_item-dropdown-row:last-of-type {
    padding-left: 16px;
    padding-right: 16px;
}

.module-utility_item-dropdown-row h2 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: .9;
}

.module-utility_item-dropdown-row div {
    font-size: 12px;
    line-height: 1.5;
}

.module-utility_item-dropdown-row a {
    font-weight: 700;
    display: block;
    font-size: 12px;
    line-height: 24px;
}

.module-utility-links {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .module-utility-links {
        float: right;
        margin-top: 6px;
    }
}

@media only screen and (max-width: 640px) {
    .module-utility-links {
        margin-top: 0;
    }
}

.module-utility_items {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
    .module-utility_items {
        display: inline-block;
    }
}

.module-utility_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 1024px) {
    .module-utility_item {
        display: inline-block;
    }
}

.module-utility_item-link {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    color: #1A1919;
    padding: 16px 16px 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 1024px) {
    .module-utility_item-link {
        padding: 16px 16px 16px;
    }
}

@media only screen and (max-width: 1024px) {
    .module-utility_item--expert, .module-utility_item--sign-in {
        display: none
    }
}

.module-utility_item--sign-in .module-utility_item-link {
    padding: 16px 24px 16px 24px;
}

.module-utility_item--basket .module-utility_item-link {
    padding: 16px 15px 16px 16px;
}

@media only screen and (max-width: 1024px) {
    .module-utility_item--basket .module-utility_item-link {
        padding: 16px 16px 16px 16px;
    }
}

.module-utility_item-link:after {
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 0;
    visibility: hidden;
    position: absolute;
    background: #000;
    border: none;
    -webkit-transition: height visibility .5s cubic-bezier(.19,1,.22,1) cubic-bezier(.25,.25,.75,.75) 0s .8s;
    transition: height visibility .5s cubic-bezier(.19,1,.22,1) cubic-bezier(.25,.25,.75,.75) 0s .8s;
}

.module-utility_item-link:hover:after, .module-utility_item-link:focus:after {
    visibility: visible;
    height: 4px;
    -webkit-transition: height .5s cubic-bezier(.19,1,.22,1),visibility 0s cubic-bezier(.25,.25,.75,.75);
    transition: height .5s cubic-bezier(.19,1,.22,1),visibility 0s cubic-bezier(.25,.25,.75,.75);
}

.module-utility_item-text {
    font-size: 1.2rem;
    margin-top: 6px;
    font-weight: 400;
    line-height: 1;
    display: block;
}

@media only screen and (max-width: 1024px) {
    .module-utility_item-text {
        display: none
    }
}

/* -------------- Module nav links corporate  -------------- */
.module-navigation-links-corporate {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .module-navigation-links-corporate {
        display: block;
    }
}

.module-navigation-links-corporate .module_button-close {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 16px;
    padding-bottom: 10px;
    text-align: right;
    margin-top: 5px;
}

.module-navigation-links-corporate .module_button-close svg {
    cursor: pointer;
}

.module-navigation-links-corporate .module_link-register {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 1.4rem;
    font-weight: 400;
    display: block;
}

.module-navigation-links-corporate .module_links-canvas {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 36px;
    margin-top: 12px;
    padding-left: 24px;
    padding-right: 24px;
}

.module-navigation-links-corporate .module_link-canvas {
    border-bottom: 1px solid #e5e5e5;
    padding-top: 21px;
    padding-bottom: 21px;
    display: block;
}

.module-navigation-links-corporate .module_link-support {
    font-weight: 700;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.module_link-support-container .module_multiple-links {
    background-color: #f7f7f7;
    padding-left: 36px;
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    transition: visibility 0s linear .6s,max-height .6s ease 0s;
}

.module_link-support-container.js--open .module_multiple-links {
    visibility: visible;
    max-height: 640px;
    transition: visibility 0s linear,max-height .6s ease 0s;
}

.module-navigation-links-corporate .module_multiple-links a {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    padding-right: 8px;
    display: block;
    font-weight: 400;
}

.module_link-support-container .collapsible-icon {
    -webkit-transition: -webkit-transform .6s ease 0s;
    transition: -webkit-transform .6s ease 0s;
    transition: transform .6s ease 0s;
    transition: transform .6s ease 0s,-webkit-transform .6s ease 0s;
    overflow: hidden;
}

.module_link-support-container.js--open .collapsible-icon {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/* ------------------ Mobile Canvas ----------------------- */
.module_links-canvas--mobile {
    display: none;
    position: relative;
    background-color: #e5e5e5;
    align-items: center;
    color: #222;
    line-height: 1.4;
    font-weight: 400;
    height: 48px;
    flex-shrink: 1;
    width: 100%;
    margin-left: -16px;
    margin-right: -16px;
}

.module_links-canvas--mobile:before {
    content: "";
    position: absolute;
    background-color: #e5e5e5;
    left: -1000%;
    right: -1000%;
    top: 0;
    bottom: 0;
    z-index: -1;
}

@media only screen and (max-width: 1024px) {
    .module_links-canvas--mobile {
        /* display: flex; */
    }
}

@media only screen and (max-width: 480px) {
    .module_links-canvas--mobile {
        margin-left: -16px;
        margin-right: -16px;
    }
}

.module_links-canvas--mobile a {
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    display: inline-flex;
    font-weight: 400;
    text-decoration: none;
    font-size: 1.6rem;
}

@media only screen and (max-width: 640px) {
    .module_links-canvas--mobile a {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 380px) {
    .module_links-canvas--mobile a {
        padding-right: 12px;
        font-size: 1.3rem;
    }
}

/* -------------- Flag Icons  -------------- */
.flag-icon {
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    line-height: .9em;
    background-size: 2100%;
    width: 16px;
    height: 12px;
    background-image: url('../design/svg/flags/sprite-206e5853.svg');
    display: inline-block;
}

.flag-icon-at {
    background-position: 0 0
}

.flag-icon-au {
    background-position: 5% 0
}

.flag-icon-be {
    background-position: 10% 0
}

.flag-icon-ca {
    background-position: 15% 0
}

.flag-icon-ch {
    background-position: 20% 0
}

.flag-icon-cn {
    background-position: 25% 0
}

.flag-icon-de {
    background-position: 30% 0
}

.flag-icon-dk {
    background-position: 35% 0
}

.flag-icon-es {
    background-position: 40% 0
}

.flag-icon-fi {
    background-position: 45% 0
}

.flag-icon-fr {
    background-position: 50% 0
}

.flag-icon-gb {
    background-position: 55% 0
}

.flag-icon-ie {
    background-position: 60% 0
}

.flag-icon-it {
    background-position: 65% 0
}

.flag-icon-mx {
    background-position: 70% 0
}

.flag-icon-nl {
    background-position: 75% 0
}

.flag-icon-no {
    background-position: 80% 0
}

.flag-icon-nz {
    background-position: 85% 0
}

.flag-icon-pl {
    background-position: 90% 0
}

.flag-icon-se {
    background-position: 95% 0
}

.flag-icon-us {
    background-position: 100% 0
}

.flag-icon-wo {
    background-image: url('../design/svg/flags/wo.svg');
    background-size: 100%
}

.flag-icon:before {
    content: '\00a0'
}

.icon-down-dir:before,.icon-left-dir:before,.icon-up-dir:before {
    content: '\e807'
}

.flag-icon.flag-icon-squared {
    width: 1em
}

.flag-icon-au.flag-icon-squared {
    background-image: url('../design/svg/flags/au.svg')
}

.flag-icon-at.flag-icon-squared {
    background-image: url('../design/svg/flags/at.svg')
}

.flag-icon-be.flag-icon-squared {
    background-image: url('../design/svg/flags/be.svg')
}

.flag-icon-ca.flag-icon-squared {
    background-image: url('../design/svg/flags/ca.svg')
}

.flag-icon-ch.flag-icon-squared {
    background-image: url('../design/svg/flags/ch.svg')
}

.flag-icon-cn.flag-icon-squared {
    background-image: url('../design/svg/flags/cn.svg')
}

.flag-icon-de.flag-icon-squared {
    background-image: url('../design/svg/flags/de.svg')
}

.flag-icon-dk.flag-icon-squared {
    background-image: url('../design/svg/flags/dk.svg')
}

.flag-icon-es.flag-icon-squared {
    background-image: url('../design/svg/flags/es.svg')
}

.flag-icon-eu.flag-icon-squared {
    background-image: url('../design/svg/flags/eu.svg')
}

.flag-icon-fi.flag-icon-squared {
    background-image: url('../design/svg/flags/fi.svg')
}

.flag-icon-fr.flag-icon-squared {
    background-image: url('../design/svg/flags/fr.svg')
}

.flag-icon-gb.flag-icon-squared {
    background-image: url('../design/svg/flags/gb.svg')
}

.flag-icon-ie.flag-icon-squared {
    background-image: url('../design/svg/flags/ie.svg')
}

.flag-icon-it.flag-icon-squared {
    background-image: url('../design/svg/flags/it.svg')
}

.flag-icon-mx.flag-icon-squared {
    background-image: url('../design/svg/flags/mx.svg')
}

.flag-icon-nl.flag-icon-squared {
    background-image: url('../design/svg/flags/nl.svg')
}

.flag-icon-no.flag-icon-squared {
    background-image: url('../design/svg/flags/no.svg')
}

.flag-icon-se.flag-icon-squared {
    background-image: url('../design/svg/flags/se.svg')
}

.flag-icon-us.flag-icon-squared {
    background-image: url('../design/svg/flags/us.svg')
}

.flag-icon-wo.flag-icon-squared {
    background-image: url('../design/svg/flags/wo.svg')
}

/* ------------- Module Social Media --------------- */
.module-social-media {
    float: right;
    width: 50%;
    margin-top: 30px;
    margin-bottom: 16px;
    text-align: right;
    padding-left: 15px;
}

@media only screen and (max-width: 1024px) {
    .module-social-media {
        margin-top: 31px;
    }
}

@media only screen and (max-width: 640px) {
    .module-social-media {
        float: none;
        width: 100%;
        text-align: left;
        padding-left: 0;
    }
}

ul.module-social-media_links {
    float: right;
    font-size: 11.2px;
}

@media only screen and (max-width: 640px) {
    ul.module-social-media_links {
        float: none;
    }
}

ul.module-social-media_links > li {
    display: inline-block;
    margin-left: 23.3px;
}

@media only screen and (max-width: 862px) {
    ul.module-social-media_links > li {
        margin-left: 9px;
        margin-bottom: 10px;
    }

    ul.module-social-media_links > li:first-child {
        margin-left: 0;
    }
}

@media only screen and (max-width: 640px) {
    ul.module-social-media_links > li {
        margin-left: 15px;
        margin-bottom: 8px;
    }
}

ul.module-social-media_links > li a {
    position: relative;
    height: 30px;
    width: 30px;
    background: #1A1919;
    border-radius: 100%;
    color: #fff;
    display: block;
}

@media only screen and (max-width: 640px) {
    ul.module-social-media_links > li a {
        height: 25px;
        width: 25px;
        line-height: 25px;
    }
}

ul.module-social-media_links > li a span:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
}

@media only screen and (max-width: 640px) {
    ul.module-social-media_links > li a span:before {
        font-size: 1.1rem;
    }
}

/* --------------- Module Footer Links ------------------ */
.module-footer-links {
    width: 50%;
    float: left;
}

@media only screen and (max-width: 640px) {
    .module-footer-links {
        width: 100%;
        float: none;
    }
}

.module-footer-links .module_links-sonos {
    margin-bottom: 47px;
    float: left;
    width: 50%;
}

@media only screen and (max-width: 640px) {
    .module-footer-links .module_links-sonos {
        margin-bottom: 53px;
    }
}

.module-footer-links .module_links-sonos:last-of-type {
    padding-left: 7px;
}

@media only screen and (max-width: 640px) {
    .module-footer-links .module_links-sonos:last-of-type {
        padding-left: 15px;
    }
}

.module-footer-links .module_links-sonos > li {
    margin-bottom: 3px;
    text-align: left;
}

.module-footer-links .module_links-sonos > li a {
    color: #000;
    font-size: 11.2px;
    font-weight: 400;
    text-decoration: none;
}

.module-footer-links .module_links-sonos > li a:hover {
    text-decoration: underline
}

/* ----------------- Module Copyright ----------------------- */
.module-copyright {
    float: left;
    width: 100%;
    text-align: left;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.module-copyright_footer-legal-links > div {
    display: flex;
    align-items: center;
}

.module-copyright_footer-legal-links a {
    font-size: 11.2px;
    line-height: 11.2px;
    display: inline-block;
    color: #1a1919;
    font-weight: 400;
}

.module-copyright_footer-legal-links a:hover {
    text-decoration: underline;
}

.module-copyright_footer-legal-links a:not(:last-child) {
    border-right: 1px solid #ccc;
}

.module-copyright_footer-legal-links a {
    padding-left: 8px;
    padding-right: 8px;
}

.module-copyright_footer-legal-links a:first-child {
    padding-left: 0;
}

@media only screen and (max-width: 640px) {
    .module-copyright {
        width: 100%;
        float: none;
        text-align: left;
        padding-left: 0;
        display: inline-block;
        /* margin-bottom: 42px; */
    }
}

@media only screen and (max-width: 640px) {
    .module-copyright .module_container--outer {
        float: none;
    }
}

.module-copyright p {
    font-size: 11.2px;
    line-height: 15.68px;
    color: #222;
    margin-bottom: 0;
}

.module-copyright .module_language {
    margin-top: 19px;
}

.module-copyright .module_language-selector-link {
    font-size: 1.4rem;
    color: #1A1919;
    cursor: pointer;
    font-weight: 400;
}

.module-copyright .module_container--inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    display: flex;
}

.module-copyright .module-copyright_rights-text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    max-width: 505px;
    padding: 0;
}

.module-copyright_footer-legal-links {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    white-space: nowrap;
}

.module-copyright .module_language {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0;
    line-height: 24px;
    white-space: nowrap;
}

.module-q4-credits {
    text-align: center;
}

.module-copyright .module_language-selector-link > span {
    margin-right: 4px;
}

@media only screen and (max-width: 800px) {
    .module-copyright p {
        margin: 0;
    }

    .module-copyright .module_container--outer {
        /* margin-bottom: 20px; */
    }
}

@media only screen and (max-width: 640px) {
    .module-copyright_footer-legal-links {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .module-copyright .module-copyright_rights-text {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding: 15px 0;
        max-width: none;
    }

    .module-copyright .module_container--inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* -------------- All languages ---------------- */
.fancybox-languages.fancybox-slide::before {
    display: none;
}

.fancybox-languages > .module-all-languages {
    height: 100%;
    width: 100%;
    margin: 0;
    position: relative;
    padding: 85px 10% 20px;
    display: flex;
    align-items: start;
}

@media only screen and (max-width: 640px) {
    .fancybox-languages > .module-all-languages {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.module-all-languages .fancybox-close-small {
    top: 22px;
    right: 27px;
}

.module-all-languages .fancybox-close-small:before {
    font-size: 2.6rem;
    font-weight: 700;
}

.module-all-languages h2 {
    color: #222;
    margin: 0;
    padding-bottom: 19px;
    border-bottom: 1px solid #ddd;
    font-size: 3rem;
}

.module-all-languages ul {
    padding: 23px 0;
}

.module-all-languages ul > li {
    margin-bottom: 7px;
    width: 50%;
    float: left;
    line-height: 1.45;
}

@media only screen and (max-width: 1024px) {
    .module-all-languages ul > li {
        width: 100%;
        float: none;
    }
}

.module-all-languages .flag-icon {
    margin-right: 6px;
}

.module-all-languages-wrap {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1024px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.fancybox-slide--complete .module-all-languages-wrap {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.module-all-languages ul > li span.alt {
    color: #A91321;
}

.module-all-languages .language-select-link {
    font-weight: 400;
    font-size: 1.6rem;
    display: inline-block;
}

.module-all-languages .language-select-link:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 640px) {
    .module-all-languages h2 {
        font-size: 24px;
        font-size: 2.4rem;
    }

    .module-all-languages .language-select-link {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

/* ----------------- Module Our Company Footer ----------------------- */
.module-our-company {
    float: right;
    width: 50%;
    margin-top: 2px;
}

@media only screen and (max-width: 1200px) {
    .module-our-company {
        max-width: 415px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .module-our-company {
        /* max-width: 369px; */ margin-right: 0;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 640px) {
    .module-our-company {
        float: left;
        width: 100%;
        /* max-width: 276px; */
        padding-left: 0;
    }
}

.module-our-company .module_container--outer {
    width: 100%;
    max-width: 369px;
    float: right;
}

@media only screen and (max-width: 640px) {
    .module-our-company .module_container--outer {
        float: none;
    }
}

.module-our-company_container {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.module-our-company_container-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.module-our-company h5 {
    font-size: 1.6rem;
    line-height: 20px;
    color: #222222;
    margin: 0;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.module-our-company h6 {
    color: #222222;
    font-size: 12.8px;
    font-size: 1.28rem;
    font-weight: 700;
    /*line-height: 11.52px;*/
    margin: 0 0 12.8px 0;
    padding: 0;
}

.module-our-company ul.module_links-sonos {
    line-height: 24px;
    font-size: 11.2px;
    margin-bottom: 56px;
}

.module-our-company .module_links-sonos > li {
    margin-bottom: 3px;
    text-align: left;
}

.module-our-company .module_links-sonos > li a {
    color: #000;
    font-size: 11.2px;
    font-weight: 400;
    text-decoration: none;
    line-height: 11.52px;
}

.module-our-company .module_links-sonos > li a:hover {
    text-decoration: underline;
}

.module-our-company a:hover {
    text-decoration: underline;
}

.module-our-company section {
    position: relative;
    flex: 0 0 33%;
}

@media only screen and (max-width: 640px) {
    .module-our-company section {
        flex: 0 0 50%;
    }
}

.module-our-company_item-corporate-1 {
    float: left;
    width: 37%;
}

.module-our-company_item-corporate-2 {
    float: left;
    width: 28%;
}

.module-our-company_item-investors {
    float: left;
    width: 35%;
}

@media only screen and (max-width: 1200px) {
    .module-our-company_item-corporate-1 {
        width: 50%;
    }

    .module-our-company_item-corporate-2 {
        float: left;
        width: 50%;
    }

    .module-our-company_item-investors {
        width: 100%;
    }
}


/* ----- ESG ----- */

.PageCorporateSocialResponsibility .pane--banner {
    background-image: url('../design/banner/banner_esg.jpg');
}

.nav--third {
    font-size: 1.5rem;
    background: #E5E5E5;
}

.js--sticky .nav--third {
    position: fixed;
    width: 100%;
    z-index: 100;
    left: 0;
    right: 0;
}

.nav--third .level1 {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav--third .level1 > li,
.nav--third .level1 > li.selected > a {
    display: none;
}

.nav--third .level1 > li.selected {
    display: block;
}

.nav--third .level2 {
    display: flex;
    align-items: stretch;
}

.nav--third .level2 li {
    width: 20%;
}

.nav--third .level2 li:nth-child(odd) {
    background: #DEDEDE;
}

.pane--breadcrumb .nav--third .level2 li:hover {
    background: #236048;
}

.pane--breadcrumb .nav--third .level2 li:hover a {
    color: #fff;
}

.nav--third .level2 a {
    display: block;
    padding: 19px 10px;
    text-align: center;
}

@media only screen and (max-width: 1024px){
    .nav--third {
        display: none;
    }
}

.PageSustainability .pane--content {
    background-color: #F6F6F6;
    padding-bottom: 40px;
}

.PageSustainability .pane--content .module[class*='background--'] {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 40px;
}

.PageSustainability .pane--content h6 {
    margin-top: 20px;
}

.PageSustainability .pane--content a:not(.module_link) {
    font-weight: 400;
    text-decoration: underline;
}

.PageSustainability h2 {
    color: #000;
}

hr {
    background-color: #979797;
    border: none;
    width: 100%;
    height: 1px;
    margin: 50px 0;
}

.fancybox-slide--video .fancybox-content {
    width: 37% !important;
    height: auto !important;
    padding-bottom: 21%;
}

.fancybox-slide--video .fancybox-iframe {
    position: absolute;
    top: 0;
    left: 0;
}

.module_video {
    display: block;
    position: relative;
}

.module_video img {
    vertical-align: top;
    width: 100%;
}

.module_video:before {
    content: "";
    background: url('../images/esg/play.svg') no-repeat center center transparent;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    border-radius: 50%;
}

.module_q4-icon-links .module_link--csr {
    margin: 0;
    padding: 0 0 0 45px;
    font-size: 2.2rem;
    display: block;
}

@media only screen and (min-width: 1025px){
    .module_q4-icon-links p + .module_link--csr {
        min-height: 75px;
    }
    
    .module_link--csr ~ .module_link--csr {
        margin-top: 40px;
    }
}

.module_link--csr~.module_link--csr {
    border-top: 1px solid #C4C4C4;
    margin-top: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.module_q4-icon-links .module_link--csr:before {
    top: 0;
    transform: none;
    left: 5px;
    margin: 0;
}

.module_link--csr ~ .module_link--csr:before {
    top: 20px;
}

.module_link--csr .module_link-text {
    font-size: 1.8rem;
    display: block;
    margin-top: 5px;
}

.module-scroll-top {
    position: fixed;
    z-index: 99999;
    bottom: 20px;
    right: 35px;
    transition: all 250ms ease-out;
    -webkit-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    transform: translate(0, 50px);
    opacity: 0;
    visibility: hidden;
}

.module-scroll-top.js--visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.module-scroll-top_btn {
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    font-size: 10px;
    line-height: normal;
    cursor: pointer;
}

.module-scroll-top_btn span {
    display: block;
    background-color: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    margin: 2px auto;
}

.a2a_default_style .a2a_dd {
    text-decoration: none !important;
    font-size: 14px;
}

/*# sourceMappingURL=global.css.map */
