/*=============================
---------- RESET CSS ----------
=============================*/

html, body, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    font-size: 10px;
}

nav ol,
nav ul:not(.list),
.list--reset ol,
.list--reset ul:not(.list) {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
}

sub {
    vertical-align: sub;
}

sup {
    vertical-align: super;
}

small {
    font-size: 70%;
    line-height: normal;
}

select:empty {
    display: none;
}


/*----- Animations -----*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/*==================================
---------- DEFAULT STYLES ----------
==================================*/

body {
    overflow-x: hidden;
    color: #000;
    font-family: amazon_emberlight, Arial, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}


/*----- TYPOGRAPHY -----*/

h1 {
    font-size: 32px;
    font-size: 3.2rem;
    font-family: Bookerly,Arial,sans-serif;
    line-height: 1.2;
    color: #333e48;
    margin-bottom: 25px;
}

h2 {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.25;
    color: #555;
    margin-bottom: 15px;
}

h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.25;
    color: #555;
}

h4 {
    font-weight: 700;
    margin: 1em 0;
}

a {
    text-decoration: none;
    color: #009ec2;
}

a:hover {
    opacity: .8;
}

.pane--content a:hover {
    color: #00afd6;
}

p {
    margin: 1em 0;
}

i {
    display: inline-block;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

small {
    font-size: 14px;
    font-size: 1.4rem;
}


/*----- COMMON -----*/

img {
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    user-select: none;
    cursor: pointer;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #222;
    margin-right: 8px;
    line-height: 1;
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
    width: 12px;
    height: 12px;
    border-width: 4px;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}


/*----- HACKS AND FIXES -----*/

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*----- LISTS -----*/

.list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.list--ordered {
    list-style-type: decimal;
}

.list--ordered li {
    margin-top: 1em;
}

.list--alpha {
    list-style-type: lower-alpha;
}

.list--roman {
    list-style-type: lower-roman;
}

.list--inside {
    list-style-position: inside;
}


/*----- BUTTONS / INPUTS -----*/

.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 11px 16px;
    background-color: #5c89b4;
    border: none;
    color: #fff;
    border-radius: 0;
    font-family: amazon_emberlight, Arial, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

.submit,
.button,
.upload,
.dropdown {
    cursor: pointer;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button {
    transition: all .15s ease-in;
}

.button:hover {
    background-color: #7094bf;
    color: #fff !important;
}

.button--inverted {
    background-color: #7094bf;
}

.button--inverted:hover {
    background-color: #5c89b4;
}

.button--inverted.js--disabled {
    opacity: .8;
}

.button--dark {
    background-color: #333e48;
}

.button--dark:hover {
    opacity: .8;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    max-width: none;
    padding: 10px;
    border: 1px solid #cbcbcd;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.module_input[type="text"]::-ms-clear,
.module_input[type="email"]::-ms-clear,
.module_input[type="file"]::-ms-clear,
.module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
    display: none;
}

.module textarea.module_input {
    resize: vertical;
    min-height: 150px;
}

.module_input[type="file"],
.module_dropdown {
    cursor: pointer;
}

.module_input[type="file"] {
    line-height: 1;
}

.module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
}


/*----- TABLES -----*/

.table {
    width: 100%;
    margin: 1em 0;
}

.table thead th {
    text-align: left;
    font-weight: 700;
    padding: .7em;
}

.table tbody {
    border: 1px solid #cbcbcd;
}

.table td {
    background-color: #f9fafb;
    border-top: 1px solid #cbcbcd;
}

.table tr:first-child td {
    border-top: none;
}

.table tr:nth-child(even) td {
    background-color: #fcfcfc;
}

.table td,
.table tr>.grid_col {
    margin: 0;
    padding: .7em;
}

.table-wrapper {
    overflow-x: auto;
}

@media only screen and (max-width: 767px) {
    .table--responsive thead {
        display: none;
    }

    .table--responsive td {
        display: block;
        border: none;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .table--responsive td:first-child {
        padding-top: 10px;
        border-top: 1px solid #cbcbcd;
    }

    .table--responsive td:last-child {
        padding-bottom: 10px;
    }

    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: 700;
    }
}

.tablesorter {
    width: 100%;
}

.tablesorter-header {
    cursor: pointer;
}

.tablesorter-default thead .tablesorter-header > div {
    background-image: url('data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==');
    background-repeat: no-repeat;
    background-position: center right;
    display: inline-block;
    padding-right: 20px;
}

.tablesorter-default thead .tablesorter-headerSortUp > div,
.tablesorter-default thead .tablesorter-headerAsc > div {
    background-image: url('data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7');
}

.tablesorter-default thead .tablesorter-headerSortDown  > div,
.tablesorter-default thead .tablesorter-headerDesc  > div {
    background-image: url('data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7');
}


/*----- SPECIAL BOXES -----*/

.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #fafafa;
    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: #fafafa;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}


/*====================================
---------- Q4 Modules Icons ----------
====================================*/

.module_q4-icon-links .module_link:before,
.module_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: "\e077";
    font-size: 26px;
    font-size: 2.6rem;
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
    color: #0472bd;
}

.module_q4-icon-links .module_rss-link:before,
.module_q4-icon-links .module_link.module_link-rss:before {
    content: "\e05a";
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\e03c";
    padding-right: 5px;
}

.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: "\e083";
}

.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: "\e079";
    color: #70a81f;
}

.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: "\e087";
}

.module_q4-icon-links .module_link[href$=".pdf"]:before,
.module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\e088";
    color: #c00;
}

.module_q4-icon-links .module_link.module_link-webcast:before,
.module_q4-icon-links .module_webcast-link:before {
    content: "\e03e";
    color: #000;
}

.module_q4-icon-links .module_link.module_link-file:before {
    content: "\e077";
}

.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e077";
    color: #0472bd;
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\e088";
    color: #c00;
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\e100";
    color: #009ec2;
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\e079";
    color: #70a81f;
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e08d";
    color: #000;
}


/*==============================
---------- TOAST GRID ----------
==============================*/

.grid {
    list-style: none;
    margin-left: -15px;
}

.grid--flex {
    margin-left: -15px;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}

.grid--flex_column {
    flex-direction: column;
}

.grid--flex_row-reverse {
    flex-direction: row-reverse;
}

.grid--flex_column-reverse {
    flex-direction: column-reverse;
}

.grid--flex_justify-start {
    justify-content: flex-start;
    text-align: start;
}

.grid--flex_justify-center {
    justify-content: center;
    text-align: center;
}

.grid--flex_justify-end {
    justify-content: flex-end;
    text-align: end;
}

.grid--flex_align-top {
    align-items: flex-start;
}

.grid--flex_align-middle {
    align-items: center;
}

.grid--flex_align-bottom {
    align-items: flex-end;
}

.grid--flex_space-around {
    justify-content: space-around;
}

.grid--flex_space-between {
    justify-content: space-between;
}

.grid--flex .grid_col {
    display: block;
    margin-right: 0;
    flex: 0 0 auto;
}

.grid_col--1-of-1,
.grid_col--2-of-2,
.grid_col--3-of-3,
.grid_col--4-of-4,
.grid_col--5-of-5,
.grid_col--6-of-6,
.grid_col--7-of-7,
.grid_col--8-of-8,
.grid_col--12-of-12 {
    width: 100%;
}

.grid_col--1-of-2,
.grid_col--2-of-4,
.grid_col--3-of-6,
.grid_col--4-of-8,
.grid_col--6-of-12 {
    width: 50%;
}

.grid_col--1-of-3,
.grid_col--2-of-6,
.grid_col--4-of-12 {
    width: 33.33333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
    width: 66.66667%;
}

.grid_col--1-of-4,
.grid_col--2-of-8,
.grid_col--3-of-12 {
    width: 25%;
}

.grid_col--3-of-4,
.grid_col--6-of-8,
.grid_col--9-of-12 {
    width: 75%;
}

.grid--flex .grid_col--1-of-1,
.grid--flex .grid_col--2-of-2,
.grid--flex .grid_col--3-of-3,
.grid--flex .grid_col--4-of-4,
.grid--flex .grid_col--5-of-5,
.grid--flex .grid_col--6-of-6,
.grid--flex .grid_col--7-of-7,
.grid--flex .grid_col--8-of-8,
.grid--flex .grid_col--12-of-12 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
}

.grid--flex .grid_col--1-of-2,
.grid--flex .grid_col--2-of-4,
.grid--flex .grid_col--3-of-6,
.grid--flex .grid_col--4-of-8,
.grid--flex .grid_col--6-of-12 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
}

.grid--flex .grid_col--1-of-3,
.grid--flex .grid_col--2-of-6,
.grid--flex .grid_col--4-of-12 {
    width: auto;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
}

.grid--flex .grid_col--2-of-3,
.grid--flex .grid_col--4-of-6,
.grid--flex .grid_col--8-of-12 {
    width: auto;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
}

.grid--flex .grid_col--1-of-4,
.grid--flex .grid_col--2-of-8,
.grid--flex .grid_col--3-of-12 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
}

.grid--flex .grid_col--3-of-4,
.grid--flex .grid_col--6-of-8,
.grid--flex .grid_col--9-of-12 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
}

.grid_col--push-1-of-1,
.grid_col--push-2-of-2,
.grid_col--push-3-of-3,
.grid_col--push-4-of-4,
.grid_col--push-5-of-5,
.grid_col--push-6-of-6,
.grid_col--push-7-of-7,
.grid_col--push-8-of-8,
.grid_col--push-12-of-12 {
    margin-left: 100%;
}

.grid_col--push-1-of-2,
.grid_col--push-2-of-4,
.grid_col--push-3-of-6,
.grid_col--push-4-of-8,
.grid_col--push-6-of-12 {
    margin-left: 50%;
}

.grid_col--push-1-of-3,
.grid_col--push-2-of-6,
.grid_col--push-4-of-12 {
    margin-left: 33.33333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
    margin-left: 66.66667%;
}

.grid_col--push-1-of-4,
.grid_col--push-2-of-8,
.grid_col--push-3-of-12 {
    margin-left: 25%;
}

.grid_col--push-3-of-4,
.grid_col--push-6-of-8,
.grid_col--push-9-of-12 {
    margin-left: 75%;
}

.grid_col--pull-1-of-1,
.grid_col--pull-2-of-2,
.grid_col--pull-3-of-3,
.grid_col--pull-4-of-4,
.grid_col--pull-5-of-5,
.grid_col--pull-6-of-6,
.grid_col--pull-7-of-7,
.grid_col--pull-8-of-8,
.grid_col--pull-12-of-12 {
    margin-left: -100%;
}

.grid_col--pull-1-of-2,
.grid_col--pull-2-of-4,
.grid_col--pull-3-of-6,
.grid_col--pull-4-of-8,
.grid_col--pull-6-of-12 {
    margin-left: -50%;
}

.grid_col--pull-1-of-3,
.grid_col--pull-2-of-6,
.grid_col--pull-4-of-12 {
    margin-left: -33.33333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
    margin-left: -66.66667%;
}

.grid_col--pull-1-of-4,
.grid_col--pull-2-of-8,
.grid_col--pull-3-of-12 {
    margin-left: -25%;
}

.grid_col--pull-3-of-4,
.grid_col--pull-6-of-8,
.grid_col--pull-9-of-12 {
    margin-left: -75%;
}

.grid_col--1-of-5 {
    width: 20%;
}

.grid--flex .grid_col--1-of-5 {
    width: auto;
    flex-basis: 20%;
    max-width: 20%;
}

.grid_col--push-1-of-5 {
    margin-left: 20%;
}

.grid_col--pull-1-of-5 {
    margin-left: -20%;
}

.grid_col--2-of-5 {
    width: 40%;
}

.grid--flex .grid_col--2-of-5 {
    width: auto;
    flex-basis: 40%;
    max-width: 40%;
}

.grid_col--push-2-of-5 {
    margin-left: 40%;
}

.grid_col--pull-2-of-5 {
    margin-left: -40%;
}

.grid_col--3-of-5 {
    width: 60%;
}

.grid--flex .grid_col--3-of-5 {
    width: auto;
    flex-basis: 60%;
    max-width: 60%;
}

.grid_col--push-3-of-5 {
    margin-left: 60%;
}

.grid_col--pull-3-of-5 {
    margin-left: -60%;
}

.grid_col--4-of-5 {
    width: 80%;
}

.grid--flex .grid_col--4-of-5 {
    width: auto;
    flex-basis: 80%;
    max-width: 80%;
}

.grid_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.66667%;
}

.grid--flex .grid_col--1-of-6 {
    width: auto;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.66667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.66667%;
}

.grid_col--5-of-6 {
    width: 83.33333%;
}

.grid--flex .grid_col--5-of-6 {
    width: auto;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.33333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.33333%;
}

.grid_col--1-of-7 {
    width: 14.28571%;
}

.grid--flex .grid_col--1-of-7 {
    width: auto;
    flex-basis: 14.28571%;
    max-width: 14.28571%;
}

.grid_col--push-1-of-7 {
    margin-left: 14.28571%;
}

.grid_col--pull-1-of-7 {
    margin-left: -14.28571%;
}

.grid_col--2-of-7 {
    width: 28.57143%;
}

.grid--flex .grid_col--2-of-7 {
    width: auto;
    flex-basis: 28.57143%;
    max-width: 28.57143%;
}

.grid_col--push-2-of-7 {
    margin-left: 28.57143%;
}

.grid_col--pull-2-of-7 {
    margin-left: -28.57143%;
}

.grid_col--3-of-7 {
    width: 42.85714%;
}

.grid--flex .grid_col--3-of-7 {
    width: auto;
    flex-basis: 42.85714%;
    max-width: 42.85714%;
}

.grid_col--push-3-of-7 {
    margin-left: 42.85714%;
}

.grid_col--pull-3-of-7 {
    margin-left: -42.85714%;
}

.grid_col--4-of-7 {
    width: 57.14286%;
}

.grid--flex .grid_col--4-of-7 {
    width: auto;
    flex-basis: 57.14286%;
    max-width: 57.14286%;
}

.grid_col--push-4-of-7 {
    margin-left: 57.14286%;
}

.grid_col--pull-4-of-7 {
    margin-left: -57.14286%;
}

.grid_col--5-of-7 {
    width: 71.42857%;
}

.grid--flex .grid_col--5-of-7 {
    width: auto;
    flex-basis: 71.42857%;
    max-width: 71.42857%;
}

.grid_col--push-5-of-7 {
    margin-left: 71.42857%;
}

.grid_col--pull-5-of-7 {
    margin-left: -71.42857%;
}

.grid_col--6-of-7 {
    width: 85.71429%;
}

.grid--flex .grid_col--6-of-7 {
    width: auto;
    flex-basis: 85.71429%;
    max-width: 85.71429%;
}

.grid_col--push-6-of-7 {
    margin-left: 85.71429%;
}

.grid_col--pull-6-of-7 {
    margin-left: -85.71429%;
}

.grid_col--1-of-8 {
    width: 12.5%;
}

.grid--flex .grid_col--1-of-8 {
    width: auto;
    flex-basis: 12.5%;
    max-width: 12.5%;
}

.grid_col--push-1-of-8 {
    margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
    margin-left: -12.5%;
}

.grid_col--3-of-8 {
    width: 37.5%;
}

.grid--flex .grid_col--3-of-8 {
    width: auto;
    flex-basis: 37.5%;
    max-width: 37.5%;
}

.grid_col--push-3-of-8 {
    margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
    margin-left: -37.5%;
}

.grid_col--5-of-8 {
    width: 62.5%;
}

.grid--flex .grid_col--5-of-8 {
    width: auto;
    flex-basis: 62.5%;
    max-width: 62.5%;
}

.grid_col--push-5-of-8 {
    margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
    margin-left: -62.5%;
}

.grid_col--7-of-8 {
    width: 87.5%;
}

.grid--flex .grid_col--7-of-8 {
    width: auto;
    flex-basis: 87.5%;
    max-width: 87.5%;
}

.grid_col--push-7-of-8 {
    margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
    margin-left: -87.5%;
}

.grid_col--1-of-12 {
    width: 8.33333%;
}

.grid--flex .grid_col--1-of-12 {
    width: auto;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.33333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.33333%;
}

.grid_col--2-of-12 {
    width: 16.66667%;
}

.grid--flex .grid_col--2-of-12 {
    width: auto;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.66667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.66667%;
}

.grid_col--5-of-12 {
    width: 41.66667%;
}

.grid--flex .grid_col--5-of-12 {
    width: auto;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.66667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.66667%;
}

.grid_col--7-of-12 {
    width: 58.33333%;
}

.grid--flex .grid_col--7-of-12 {
    width: auto;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.33333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.33333%;
}

.grid_col--10-of-12 {
    width: 83.33333%;
}

.grid--flex .grid_col--10-of-12 {
    width: auto;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.33333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.33333%;
}

.grid_col--11-of-12 {
    width: 91.66667%;
}

.grid--flex .grid_col--11-of-12 {
    width: auto;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.66667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.66667%;
}

.grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 15px;
    vertical-align: top;
}

@media (max-width: 468px) {
    .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 1200px) and (min-width: 1024px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--lg-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--lg-1-of-2,
    .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-2,
    .grid--flex .grid_col.grid_col--lg-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--lg-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--lg-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--lg-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--lg-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--lg-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--lc-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--lc-1-of-2,
    .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-2,
    .grid--flex .grid_col.grid_col--lc-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--lc-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--lc-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--lc-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--lc-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--lc-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 767px) and (min-width: 469px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--md-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--md-1-of-2,
    .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-2,
    .grid--flex .grid_col.grid_col--md-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--md-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--md-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--md-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--md-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 479px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--sm-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--sm-1-of-2,
    .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-2,
    .grid--flex .grid_col.grid_col--sm-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--sm-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--sm-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--sm-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--sm-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }

    .grid--flex .grid_col {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid--flex .grid_col--d-first {
    float: none;
    order: -1;
}

.grid_col--d-last {
    float: right;
}

.grid--flex .grid_col--d-last {
    float: none;
    order: 1;
}

.grid--no-gutter {
    margin-left: 0;
}

.grid--no-gutter > .grid_col {
    padding-left: 0;
}

.grid--no-gutter > .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--gutter {
    margin-left: 15px;
}

.grid--gutter .grid_col {
    padding-left: 15px;
}

.grid--gutter-30 {
    margin-left: -30px;
}

.grid--gutter-30 .grid_col {
    padding-left: 30px;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}


/*===================================
---------- UTILITY CLASSES ----------
===================================*/

.hidden:not([role=tabpanel]) {
    display: none !important;
}

.hidden[role=tabpanel] {
    display: none;
}

.disabled {
    opacity: 0.1;
    border-color: #000;
    color: #000;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background--brand {
    background-color: #ff9900;
}

.background--alt-brand {
    background-color: #333e48;
}

.background--dark {
    background-color: #000;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #fafafa;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #c00;
}

.color--brand {
    color: #ff9900;
}

.color--grey {
    color: #aab7b8;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #c00;
}

.dark,
.dark a {
    color: #fff;
}

.dark .button--cta {
    color: #fff;
}


/*==========================
---------- LAYOUT ----------
==========================*/

.layout {
    padding-top: 100px;
}

.layout--home {
    padding-top: 40px;
}

.layout_content {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (min-width: 768px) {
    .layout {
        padding-top: 145px;
    }

    .layout.layout--home {
        padding-top: 65px;
    }
}

@media only screen and (min-width: 1024px) {
    .layout {
        padding-top: 165px;
    }
    
    .pane--left .pane_inner {
        padding: 0 50px 0 35px;
    }

    .pane--breadcrumb .pane_inner {
        padding-left: 35px;
    }
}

.pane--content .module {
    padding-bottom: 40px;
}

.pane--content .module--thin {
    padding-bottom: 20px;
}

.pane--content .module--thick {
    padding-bottom: 60px;
}

.pane--content .module--no-padding {
    padding-bottom: 0;
}

.layout--iframe .pane--content .module {
    padding: 40px 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}

.page--no-alternating .pane--content {
    padding: 40px 0;
}

.page--no-alternating .module {
    padding-bottom: 35px;
}


/*==========================
---------- HEADER ----------
==========================*/

.layout_header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
}

.pane--header .HeaderPaneDiv {
    background: #fff;
    border-bottom: solid 1px #d5dbdb;
    transition: height .5s;
    height: 40px;
    display: -ms-flexbox;
    display: none;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
}

.pane--navigation {
    background: rgba(0,0,0,.8);
    height: 60px;
}


/*----- Blog -----*/

.module-dayone {
    padding: 0 12px;
}

.module-dayone a,
.module-dayone img {
    display: block;
    vertical-align: top;
}

.module-dayone img {
    width: 50px;
}


/*----- Corporate Header Links -----*/

.module-links--header {
    position: relative;
    border-left: solid 1px #d5dbdb;
    border-right: solid 1px #d5dbdb;
    width: 58px;
}

.module-links--header h2 {
    text-align: center;
    color: #aab7b8;
    font-size: 55px;
    font-size: 5.5rem;
    letter-spacing: -3px;
    margin: 0;
    height: 39px;
    line-height: 12px;
    cursor: pointer;
}

.module-links--header h2:focus {
    text-decoration: none !important;
}

.module-links--header .module_container--inner {
    position: absolute;
    z-index: 122;
    top: 100%;
    left: -1px;
    background-color: #fafafa;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 350ms;
    width: 200px;
}

.module-links--header .module_container--inner.js--revealed {
    height: auto;
    opacity: 1;
}

.module-links--header a {
    color: #879596;
    padding: 12px 23px;
    display: block;
}


/*----- Newsletter -----*/

.module-newsletter {
    padding: 0 20px;
    width: 300px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.module-newsletter a {
    color: #879596;
    display: inline-block;
    padding-right: 74px;
    text-align: right;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.1;
    position: relative;
}

.module-newsletter a:after {
    content: '';
    display: block;
    width: 54px;
    height: 35px;
    background-image: url('../design/newsletter.png');
    background-size: 54px 35px;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 2.5px;
}

.module-newsletter a:hover {
    opacity: 1;
}

.module-newsletter a:hover span {
    opacity: .8;
}


/*----- Logo -----*/

.module-logo a {
    display: inline-block;
    width: 140px;
}

.module-logo a:hover {
    opacity: 1;
}

.module-logo img {
    display: inline-block;
    vertical-align: top;
}


/*----- Corporate Navigation -----*/

.layout_toggle {
    color: #fff;
    height: 40px;
    width: 40px;
    font-size: 40px;
    font-size: 4rem;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: opacity 250ms;
    text-align: center;
    margin: 8px 0 0 15px;
}

.layout_toggle:hover {
    opacity: .8;
}

.layout.js--mobile .layout_toggle {
    font-size: 24px;
    font-size: 2.4rem;
}

.layout.js--mobile .layout_toggle i {
    position: relative;
    top: 10px;
}

.layout_toggle i:focus {
    text-decoration: none !important;
}

.layout.js--mobile .layout_toggle i:before {
    content: "\e903";
}

.pane--navigation .module-logo {
    float: left;
}

.pane--navigation .module-logo a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 17px;
    top: 40px;
}

.pane--navigation .module-logo img {
    height: 34px;
}

.module-corp-nav {
    clear: both;
    counter-reset: section;
    background: #fafafa;
    border-right: 1px solid #eaeded;
    width: 320px;
    left: -320px;
    overflow: hidden;
    transition: all 250ms;
    position: fixed;
    z-index: 120;
    height: 100%;
    margin-top: 60px;
    padding-top: 10px;
}

.layout.js--mobile .module-corp-nav {
    left: 0;
}

.module-corp-nav li {
    counter-reset: subsection;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 12px 21px;
}

.module-corp-nav li:before {
    counter-increment: section;
    content: '0'counter(section);
    color: #aab7b8;
    padding-right: 6px;
    font-weight: 400;
}

.module-corp-nav a {
    color: #000;
    transition: all ease-in 234ms;
}

.module-corp-nav a:hover {
    color: #ff8f00;
}

.module-corp-nav_blog {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 17px 20px 12px 15px;
    margin-top: 5px;
    border-top: 1px solid #eaeded;
}


/*----- Search -----*/

body.js--mobile {
    overflow: hidden;
}

.module-search {
    float: right;
    margin: 10px 20px 0 0;
}

.module-search h2 {
    color: #fff;
    font-size: 33px;
    font-size: 3.3rem;
    margin: 0;
    cursor: pointer;
    line-height: 1;
}

.module-search h2 span {
    display: block;
    line-height: 1;
}

.module-search h2:hover {
  opacity: .8;
}

.module-search .module_container--inner {
    transition: left 250ms;
    left: 130%;
    background-color: #000;
    position: absolute;
    z-index: 122;
    width: 100%;
    top: 40px;
    padding: 13px 20px 14px 20px;
    height: 60px;
}

.module-search .module_container--inner.js--revealed {
    left: 0;
}

.module-search_button {
    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;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 32px;
    font-size: 3.2rem;
    width: 35px;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 15px 0 0;
}

.module-search_input[type="text"] {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 105px);
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 28px;
    padding: 0;
    border: none;
    letter-spacing: normal;
    color: #fff;
}

.module-search_input[type="text"]::-webkit-input-placeholder {
    color: #fff;
}

.module-search_input[type="text"]::-moz-placeholder {
    color: #fff;
}

.module-search_input[type="text"]:-ms-input-placeholder {
    color: #fff;
}

.module-search .module-search_text {
    color: #fff;
    font-size: 24px;
    font-size: 2.4rem;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 20px;
    position: relative;
    top: 5px;
}

.module-search .module-search_text:hover {
    opacity: .8;
}


/*----- Languages -----*/

.module-languages {
    float: right;
    margin: 13px 20px 0 0;
}

.module-languages_dropdown {
    background-color: #fafafa;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.3);
    transition: right 250ms;
    position: absolute;
    right: -380px;
    top: 20px;
    width: 375px;
}

.module-languages_toggle {
    display: block;
    color: #fff;
    background: url('../design/world-icon-white.png') 4px 0 no-repeat;
    background-size: 76%;
    padding: 26px 6px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    cursor: pointer;
}

.module-languages_dropdown_list {
    padding: 33px 36px 17px;
}

.module-languages_dropdown.js--revealed {
    right: 0;
}

.module-languages_dropdown_header {
    background-color: #eaeded;
    cursor: pointer;
    padding: 24px 18px 13px 18px;
}

.module-languages_dropdown_header span {
    display: inline-block;
    vertical-align: top;
}

.module-languages_dropdown_header span:first-child {
    background: url(../design/world-icon-black.png) 4px 0 no-repeat;
    background-size: 76%;
    padding: 26px 6px 0;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 1.1px;
    font-weight: 700;
    color: #000;
    margin: 0 3px 0 3px;
}

.module-languages_dropdown_header span:last-child {
    color: #6c7778;
    font-size: 11px;
    font-weight: 700;
}

.module-languages_dropdown_header span:last-child i {
    display: block;
    color: #000;
    font-size: 13px;
    font-size: 1.3rem;
    margin: -3px 0 5px 2px;
}

.module-languages_dropdown_list a {
    color: #333e48;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 2px 0 0 40px;
    display: inline-block;
    position: relative;   
}

.module-languages_dropdown_list a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: 20px;
    background-image: url('../design/flags.png');
    background-position: 8px -221px;
    width: 30px;
    height: 15px;
}

.module-languages_dropdown_list a span {
    display: block;
    color: #6c7778;
    font-size: 11px;
    font-size: 11px;
    font-weight: 400;
    margin-top: 2px;
}

.module-languages_dropdown_list a[href*=".eu"]:before {
    background-image: url('../design/flags.png');
    background-position: 8px -238px;
}

.module-languages_dropdown_list a[href*=".fr"]:before {
    background-image: url('../design/flags.png');
    background-position: 8px -85px;
}

.module-languages_dropdown_list a[href*=".de"]:before {
    background-image: url('../design/flags.png');
    background-position: 8px -68px;
}

.module-languages_dropdown_list a[href*=".in"]:before {
    background-image: url('../design/flags.png');
    background-position: 8px -102px;
}

.module-languages_dropdown_list a[href*=".it"]:before {
    background-image: url('../design/flags.png');
    background-position: 8px -119px;
}

.module-languages_dropdown_list a[href*=".es"]:before {
    background-image: url('../design/flags.png');
    background-position: 8px -187px;
}

.module-languages_dropdown_list a[href*=".uk"]:before {
    background-image: url('../design/flags.png');
    background-position: 8px -204px;
}


/*----- Banner -----*/

.layout--home .pane--banner {
    background-image: url("../design/banner/default-banner.jpg");
    background-position: 80% 38%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    height: 175px;   
}


/*----- Breadcrumb -----*/

.pane--breadcrumb {
    padding: 20px 0;
}
    
.module-breadcrumb {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #879596;
}

.module-breadcrumb a {
    color: #879596;
}

.module-breadcrumb .module-breadcrumb_home-link+a+a:before,
.module-breadcrumb_separator:before {
    content: "\e914";
    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;
    color: #007cb6;
    font-size: 12px;
    font-size: 1.2rem;
    margin: 0 10px 0 6px;
}

.module-breadcrumb_separator:before {
    margin-right: 4px;
}


/*----- IR Nav -----*/

.nav--ir {
    counter-reset: section;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 1.2px;
    margin-bottom: 30px;
}

.nav--ir:before {
    content: 'Investor Relations';
    color: #aab7b8;
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.1;
    letter-spacing: -.2px;
    margin-bottom: 20px;
    display: block;
}

.layout--home .nav--ir:before {
    margin-bottom: 50px;
}

.nav--ir li {
    counter-reset: subsection;
    margin-bottom: 15px;
    text-indent: -34px;
    padding-left: 34px;
}

.nav--ir li:before {
    counter-increment: section;
    content: '0'counter(section);
    color: #aab7b8;
    padding-right: 11px;
}

.nav--ir a {
    color: #000;
    font-weight: 700;
}

.nav--ir a i {
    text-indent: 0;
    font-size: 15px;
    font-size: 1.5rem;
    color: #aab7b8;
    position: relative;
    top: 2px;
}

.nav--ir li.selected>a {
    color: #aab7b8;
}


/*----- Header @media -----*/

@media only screen and (min-width: 768px) {
    .pane--header .HeaderPaneDiv {
        height: 65px;
    }

    .module-dayone {
        padding: 0 25px;
    }

    .module-dayone img {
        width: 90px;
    }

    .module-links--header {
        width: 98px;
    }
    
    .module-links--header h2 {
        font-size: 85px;
        font-size: 8.5rem;
        line-height: 24px;
        padding: 0 25px;
        height: 64px;
    }

    .module-links--header .module_container--inner {
        font-size: 22px;
        font-size: 2.2rem;
        width: 245px;
    }

    .module-links--header .module_container--inner:before {
        content: '';
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 13px solid #eaeded;
        position: absolute;
        top: -1px;
        left: 34px;
        z-index: 101;
    }

    .module-links--header .module_container--inner:after {
        content: '';
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-top: 12px solid #fff;
        position: absolute;
        top: -1px;
        left: 35px;
        z-index: 102;
    }

    .module-links--header a {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    
    .module-newsletter {
        display: block;
    }

    .pane--navigation {
        background: linear-gradient(to top,rgba(0,0,0,0),#000);
        height: 80px;
    }

    .pane--navigation .module-logo {
        padding: 17px 0 22px 35px;
        width: 320px;
        position: relative;
        z-index: 121;
    }

    .pane--navigation .module-logo a {
        vertical-align: middle;
        margin: 0 0 0 16px;
        position: relative;
        top: 9px;
        left: auto;
        transform: none;
    }
    
    .pane--navigation .module-logo img {
        height: 41px;
        top: 0;
        left: 0;
        transition: opacity 0.3s;
    }
    .pane--navigation .module-logo_black {
        position: absolute;
        opacity: 0;
    }
    
    .layout.js--mobile .pane--navigation .module-logo_black {
        opacity: 1;
    }
    
    .layout.js--mobile .pane--navigation .module-logo_white {
        opacity: 0;
    }

    .layout_toggle {
        margin: 0;
    }

    .layout.js--mobile .layout_toggle {
        font-size: 30px;
        font-size: 3rem;
        color: #333e48;
    }

    .layout.js--mobile .layout_toggle i {
        top: 4px;
        left: -5px;
    }

    .module-corp-nav {
        margin-top: 0;
        padding-top: 0;
    }

    .module-corp-nav .module_container--inner {
        padding-top: 90px;
    }
    
    .module-corp-nav li {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .module-corp-nav_blog {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .module-search {
        margin-top: 21px;
    }

    .module-search h2 {
        font-size: 40px;
        font-size: 4rem;
    }
    
    .module-search .module_container--inner {
        padding: 19px 40px 20px 35px;
        height: 80px;
        top: 65px;
    }

    .module-search_button {
        font-size: 40px;
        font-size: 4rem;
        width: 40px;
        margin-right: 20px;
    }

    .module-search_input[type="text"] {
        width: calc(100% - 120px);
    }

    .module-search .module-search_text {
        font-size: 30px;
        font-size: 3rem;
        width: 30px;
    }

    .module-languages {
        margin: 23px 35px 0 0;
    }

    .module-languages_dropdown {
        top: 65px;
    }

    .pane--breadcrumb {
        padding: 30px 0 40px 0;
    }

    .layout--home .pane--breadcrumb {
        padding-bottom: 25px;
    }

    .module-breadcrumb {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media only screen and (min-width: 1024px) {
    .pane--navigation {
        height: 100px;
    }
    
    .pane--navigation .module-logo {
        padding: 21px 0 29px 35px;
        width: 370px;
    }
    
    .layout.js--mobile .pane--navigation .module-logo {
        position: relative;
        z-index: 121;
    }

    .pane--navigation img.module-logo_black {
        transition-delay: 0.3s;
    }
    
    .layout.js--mobile .pane--navigation img.module-logo_black {
        transition-delay: 0s;
    }

    .layout_toggle {
        height: 50px;
        width: 50px;
        font-size: 50px;
        font-size: 5rem;
    }

    .layout.js--mobile .layout_toggle i {
        top: 12px;
        left: -2px;
    }

    .module-corp-nav {
        width: 370px;
        height: 0;
        left: 0;
        transition: all .5s;
    }

    .layout.js--mobile .module-corp-nav,
    .module-corp-nav .module_container--outer {
        height: 810px;
    }

    .module-corp-nav .module_container--inner {
        padding-top: 110px;
    }

    .module-corp-nav li {
        font-size: 18px;
        font-size: 1.8rem;
    }

    .module-corp-nav_blog {
        display: none;
    }

    .module-search {
        margin-top: 31px;
    }

    .module-search .module_container--inner {
        height: 100px;
        padding-top: 29px;
        padding-bottom: 30px;
    }
    
    .module-languages {
        margin-top: 33px;
    }
    
     .module-languages_dropdown {
        top: 75px;
    }

    .layout--home .pane--banner {
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .pane--navigation .module-logo_black {
        display: none;
    }
}

@media only screen and (max-width: 468px) {
    .layout--home .pane--banner {
        height: 235px;
    }
}


/*==========================
---------- FOOTER ----------
==========================*/


.pane--footer2 {
    padding: 46px 20px 40px 20px;
}


/*----- Logo -----*/

.pane--footer2 .module-logo {
    text-align: center;
    margin-bottom: 15px;
}

.pane--footer2 .module-logo img {
    height: 34px;
}


/*----- Social Links -----*/

.module-links--social .module_container--outer {
    margin: 0 20px 25px 20px;
}

.module-links--social a {
    font-size: 30px;
    font-size: 3rem;
    display: inline-block;
}

.module-links--social .module-links_list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto !important;
    line-height: 13px;
}


/*----- Shop -----*/

.module-shop {
    text-align: center;
}

.module-shop a {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    max-width: 90px;
    display: inline-block;
    text-align: center;
    margin-top: -5px;
}


/*----- Corporate Footer -----*/

.module-corp-footer {
    border-top: 1px solid rgba(255, 255, 255, .3);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 30px;
    margin-right: -20px;
    margin-left: -20px;
}

.module-corp-footer .module_container--inner {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.module-corp-footer_col {
    width: 45%;
    margin-bottom: 30px;
}

.module-corp-footer_title {
    letter-spacing: .9px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;
}

.module-corp-footer_title a {
    color: #fff;
}

.module-corp-footer_list li {
    margin-bottom: 8px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
}

.module-corp-footer_list a {
    color: #bbb;
}


/*----- Copyright -----*/

.copyright {
    font-size: 12px;
    font-size: 1.2rem;
    color: #80868c;
    padding-top: 20px;
}

.module-q4-credits {
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
}


/*----- Footer @media -----*/

@media only screen and (min-width: 568px) {
    .module-links--social .module_container--outer {
        margin: 0 100px 25px 100px;
    }
}

@media only screen and (min-width: 768px) {
    .pane--footer2 .module-logo {
        padding-left: 64px;
        margin-bottom: 0;
        text-align: left;
    }

    .pane--footer2 .module-logo img {
        height: 41px;
    }

    .module-links--social .module_container--outer {
        margin: 0;
    }

    .module-shop {
        padding-right: 79px;
        text-align: right;
    }

    .module-corp-footer {
        padding-right: 80px;
        padding-left: 80px;
    }

    .module-corp-footer_col:nth-of-type(2),
    .module-corp-footer_col:nth-of-type(4),
    .module-corp-footer_col:nth-of-type(6) {
        padding-left: 90px;
    }
}

@media only screen and (min-width: 1024px) {
    .module-links--social .module-links_list {
        width: 90%;
    }

    .module-corp-footer_col {
        width: 12%;
    }

    .module-corp-footer_col:nth-of-type(2),
    .module-corp-footer_col:nth-of-type(4),
    .module-corp-footer_col:nth-of-type(6) {
        padding-left: 0;
    }
}

@media only screen and (min-width: 1440px) {
    .module-links--social .module-links_list {
        width: 80%;
    }

    .module-corp-footer {
        padding-right: 250px;
        padding-left: 250px;
    }
}


/*==============================
---------- MODULE CSS ----------
==============================*/

/*----- All Module CSS -----*/

.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text {
    display: none;
}

.module_nav,
.module_location,
.module_speakers,
.module_body,
.module_options {
    margin-bottom: 15px;
}

.module_actions {
    margin-top: 20px;
}


/*-- Add to Calendar --*/

.module_add-to-calendar-reveal {
    color: #006fba;
    cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}

.module_add-to-calendar-list {
    display: none;
}

.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar-link {
    font-size: 24px;
    font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
    display: none;
}


/*-- Errors --*/

.module_error-container {
    margin-bottom: 30px;
    color: #c00;
}

.module_error-container {
    display: block;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
}

.module_error-container ul>li {
    line-height: 1.5;
}

.module_error-container>br {
    display: none;
}

.module_error-container>span {
    display: block;
    line-height: 1.5;
}

.module_error-container>span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}


/*-- Date / Time --*/

.module_date-time {
    margin-bottom: 10px;
    font-weight: 700;
    color: #6c7778;
}

.module-details .module_date-time {
    font-weight: 400;
    color: #000;
    margin: 0;
}


/*-- Headline --*/

.module_headline {
    font-size: 30px;
    font-size: 3rem;
    font-family: Bookerly, Arial, sans-serif;
    line-height: 1.33;
    color: #6c7778;
    margin-bottom: 15px;
}

.module_headline-link {
    color: #6c7778;
}

h3.module-details_title {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 5px;
}


/*-- Image --*/

.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;
}


/*-- Labels --*/

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module_label+.module_required {
    font-size: 14px;
    font-size: 1.4rem;
}


/*-- Module Links --*/

.module_links>*,
.module_links li,
.module_links .module_presentation {
    display: inline;
}

@media only screen and (max-width: 468px) {
    .module_links>*,
    .module_links li,
    .module_links .module_presentation {
        display: block;
    }
}

.module_links.module_links--stack>*,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
    display: block;
}

.module_link {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 5px 0;
}

.module_link>.module_link-text,
.module_link>i,
.module_link>span {
    vertical-align: middle;
}

.module_link>i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
    display: inline-block !important;
}


/*-- Loader / Message --*/

.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #23a217;
}

.module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 5px;
}

.module_message--error {
    color: #c00;
}

.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_warning {
    padding: .7em;
}


/*-- Nav links btns --*/

.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 #f90;
    color: #000;
    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: #f90;
    color: #fff;
}

@media only screen and (max-width: 468px) {
    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}


/*-- Selects --*/

.module_options {
    padding: .7em;
    background-color: #f9fafb;
    border: 1px solid #cbcbcd;
    margin-bottom: 20px;
}

.module_options-label {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px
}

.dropdown,
.module_dropdown {
    padding: 11px 26px 11px 8px;
    background: #fff url(../design/svg/q4-icon_dropdown.svg) no-repeat right 8px center;
    background-size: 8px;
    min-width: 100px;
    color: #999;
    border: 1px solid #cbcbcd;
    font-size: 13px;
    font-size: 1.3rem;
}

.dropdown::-ms-expand,
.module_dropdown::-ms-expand {
    display: none;
}

@media only screen and (max-width: 767px) {
    .module_options .grid_col ~ .grid_col.grid_col--md-1-of-1 {
        margin-top: 20px;
    }
}


/*-- Pager --*/

.module_pager,
.pager {
    margin-top: 15px;
}

.module_pager span,
.pager span {
    color: #009ec2;
    cursor: pointer;
    display: inline-block;
    padding: 0 10px;
}

.module_pager span:hover,
.pager span:hover {
    color: #00afd6;
    opacity: .8;
}

.module_pager .pager-active,
.module_pager a[href] {
    font-weight: 700;
}

.module_pager .pager-disabled,
.pager .disabled {
    display: none;
}

.module_pager-message {
    font-size: 12px;
    font-size: 1.2rem;
    color: #aaa;
    margin-top: 15px;
}

.module_pager a,
.pager a {
    color: #009ec2;
}


/*-- Reminder --*/

.module_reminder .module_label {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}


/*-- RSS --*/

.module_rss {
    float: right;
}


/*----- Miscellaneous Modules -----*/

.module-script {
    display: none;
}

.nav_close {
    display: none;
}

.module_required {
    color: #c00;
}

.module_required-text {
    font-size: 14px;
    font-size: 1.4rem;
}

.module_view-all-link,
.module-event .module_link-text,
.module-event-details .module_link-text {
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid;
    color: #007cb6;
}

.pane--content .module_view-all-link:hover,
.pane--content .module-event .module_link:hover,
.pane--content .module-event-details .module_link:hover {
    color: #007cb6;
}

.module_speakers {
    color: #666;
    font-weight: 700;
}


/*----- Accessibility -----*/

*:focus {
    outline: none;
    text-decoration: underline dotted !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#maincontent:focus {
    outline: 0px;
}

.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
    top: 0;
    background: #ff9900;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}


/*----- Javascript -----*/

.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px 0 10px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
}

.js--hidden:not([role=tabpanel]) {
    display: none !important;
}

.js--hidden[role=tabpanel] {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #000;
    color: #000;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border: 1px solid #c00 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #c00 !important;
}


/*----- Cookie Banner -----*/

.module-cta {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
}

.module-cta .button:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e90e";
    font-size: 16px;
    margin-right: 10px;
    vertical-align: sub;
}

.module-cta .button--cookie {
    color: black;
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
    z-index: 1;
    background-color: white;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.module-cta .button--cookie:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed6d";
    font-size: 10px;
    line-height: 20px;
    text-align: center;
    display: block;
}


/*----- 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: 767px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}

.CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    padding: 10px;
    border: 1px solid #cbcbcd;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}


/*----- Download List -----*/

.module-downloads .module_nav,
.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads--links .module_item {
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px 5px 0;
    position: relative;
}

.module-downloads--links .module_item:after {
    content: '|';
    color: #aab7b8;
    position: absolute;
    right: 8px;
    top: 0;
}

.module-downloads--links .module_link {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    font-size: 1.3rem;
    border-bottom: 2px solid transparent;
}

.module-downloads--links .module_link:before {
    display: none;
}

.PageCorporategovernanceDocumentsandcharters .module-downloads--links a[href*="documents-and-charters"] {
    border-bottom: 2px solid;
    pointer-events: none;
}

@media only screen and (max-width: 468px) {
    .module-downloads--links .module_item {
        display: block;
    }

    .module-downloads--links .module_item:after {
        display: none;
    }
}


/*----- Formbuilder -----*/

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha>div {
    margin: 0;
    padding: 0;
}

.module-form .module_container--captcha>div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #b72121;
}

.module-form .module_container--captcha>div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 25px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form_item--select-materials,
.module-form_item--questions--comments {
    display: block;
    width: 100%;
}

.module-form_item--select-materials fieldset {
    border: 1px solid #ddd;
    padding: 8px 15px 20px;
}

.module-form_item--select-materials legend {
    margin: 0 -5px;
    position: relative;
    top: -20px;
    padding: 0 5px;
    background-color: #fff;
    font-weight: 400;
}

.module-form_item>label,
.module-form_item legend {
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
}

.module-form_item legend {
    float: left;
    margin-bottom: 5px;
}

.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%;
}

.module-form_error-text {
    color: #c00;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.module-form .module_actions {
    margin-top: 0;
}

@media only screen and (max-width: 767px) {
    .module-form .module_container--content {
        margin-left: 0;
    }

    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}


/*----- Search Results -----*/

.module-search-result_link {
    margin-bottom: 15px;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_url {
    display: none;
}

.module-search-results .form_fields-right input {
    width: 100%;
    border-color: #cbcbcd;
    color: #aab7b8;
}

.module-search-results .form_field {
    margin-bottom: 25px;
}

.module-search-results .form_field--date {
    position: relative;
}

.module-search-results .form_field--date:after {
    content: "\ea5f";
    position: absolute;
    top: 34px;
    right: 8px;
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #aab7b8;
    clear: both;
    display: table;
}

.module-search-results .form_field--search {
    margin-bottom: 35px;
}

.module-search-results .form_label {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.module-search-results .form_select {
    width: 100%;
    display: block !important;
}

.module-search-results .form_select+.sbHolder {
    display: none;
}

.module-search-results .form_input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border: 1px solid #cbcbcd;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 8px;
    color: #aab7b8;
    display: block;
    background-color: transparent;
    font-family: amazon_emberlight, Arial, sans-serif;
}

.module-search-results_link {
    display: inline-block;
}

.module-search-results_result {
    width: 100%;
}

.module-search-results_item {
    padding: 15px 0;
    border-bottom: 1px solid #cbcbcd;
}

.module-search-results_url,
.module-search-results_result a {
    word-wrap: break-word;
}

.module-search-results_url {
    display: none;
}

.module-search-results_result:after {
    content: '';
    display: table;
    clear: both;
}

.module-search-results_summary {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.25;
    color: #555;
    border-bottom: 1px solid #cbcbcd;
    padding-bottom: 15px;
}

.module-search-results_summary span {
    color: #ff9900;
}

.module-search-results .pager_list {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
}

.module-search-results .pager_list-item {
    cursor: pointer;
    padding: 0 10px;
    display: inline-block;
    vertical-align: middle;
}

.module-search-results .pager_list-item a {
    display: block;
    color: #009ec2;
}

.module-search-results .pager_list-item a.active {
    font-weight: 700;
}

/* .module-search-results .pager_list-item--previous,
.module-search-results .pager_list-item--next {
    position: relative;
}

.module-search-results .pager_list-item--previous>a:after,
.module-search-results .pager_list-item--next>a:after {
    content: "\edbe";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
}

.module-search-results .pager_list-item--previous {
    transform: rotate(180deg);
} */

.module-search-results .pager_text {
    display: none;
}

@media only screen and (max-width: 767px) {
    .module-search-results .form-fields-right .grid_col {
        padding-left: 0;
    }

    .module-search-results .form-fields--pages {
        margin-top: 25px;
        display: block;
        width: 100%;
    }

    .module-search-results .form-fields--search {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .module-search-results .form_field.form_field--date {
        overflow: auto;
    }
}


/*----- Meeting Form -----*/

.fancybox-slide--form .fancybox-content {
    margin: 10px auto;
    max-width: 1000px;
    width: 80% !important;
    height: calc(100% - 20px);
    overflow: visible;
}

.fancybox-slide--form_confirmation .fancybox-content {
    max-width: 700px;
}

.fancybox-slide--form .fancybox-button--close {
    display: none;
}

.module-form--meeting {
    padding: 0 20px !important;
}

.module-form--meeting .module_container--outer {
    padding: 0 !important;
}

.module-form--meeting_header {
    padding: 20px !important;
}

.module-form--meeting_header .module_container--outer {
    padding: 0 !important;
}

@media screen and (min-width: 768px) {
    .module-form--meeting_header .grid {
        direction: rtl;
    }

    .module-form--meeting_header .grid .grid_col {
        direction: ltr;
    }
}

.module-form--meeting_header-intro {
    font-size: 14px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
    .module-form--meeting_header-intro {
        text-align: center;
    }
}

.module-form--meeting_header-intro h3 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 26px;
    font-size: 2.6rem;
}

.module-form--meeting_header-intro p {
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .module-form--meeting_header-logo {
        text-align: center;
        margin-bottom: 10px;
    }
}

.module-form--meeting_header-logo span {
    font-size: 11px;
    font-size: 1.1rem;
    display: block;
}

.module-form--meeting_header-logo img {
    margin: 5px;
}

.module-form--meeting_footer {
    background-color: #333e48;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-form--meeting_footer img {
    margin-right: 20px;
    vertical-align: bottom;
}

.module-form--meeting .module_introduction {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0;
}

.module-form--meeting .module-form_item--namehidden label {
    visibility: hidden;
}

@media only screen and (max-width: 767px) {
    .module-form--meeting .module-form_item--namehidden label {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        border: 0 !important;
    }
}

@media only screen and (min-width: 768px) {
    .module-form--meeting .module-form_item--additional-information-optional {
        width: 75%;
    }
}

.module-form--meeting .module-form_item--date-request-optional {
    position: relative;
}

@media only screen and (min-width: 768px) {
    .module-form--meeting .module-form_item--date-request-optional {
        width: 25%;
    }
}

.module-form--meeting .module-form_item--date-request-optional:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e90c";
    position: absolute;
    right: 20px;
    bottom: calc(50% - 19px);
    color: #000;
    opacity: 0.5;
}

.module-form--meeting .module-form_item--current-shareholder {
    display: block;
}

.module-form--meeting .module-form_item--current-shareholder legend {
    margin-bottom: 0;
}

@media only screen and (max-width: 468px) {
    .module-form--meeting .module-form_item--current-shareholder legend {
        display: block;
        float: none;
    }
}

.module-form--meeting .module-form_item--current-shareholder ul {
    display: inline-block;
    padding-left: 20px;
}

@media only screen and (max-width: 468px) {
    .module-form--meeting .module-form_item--current-shareholder ul {
        display: block;
        padding-left: 0;
        padding-top: 10px;
    }
}

.module-form--meeting .module-form_item--current-shareholder ul li {
    padding-left: 20px;
    display: inline-block;
    vertical-align: top;
}

@media only screen and (max-width: 468px) {
    .module-form--meeting .module-form_item--current-shareholder ul li {
        padding-left: 0;
        padding-right: 20px;
    }
}

.module-form--meeting .module-form_itemCaptcha {
    position: relative;
    padding-left: 25px;
}

.module-form--meeting .module-form_itemCaptcha input[type="text"] {
    color: #000;
}

.module-form--meeting .module_dropdown {
    color: #000;
}

.module-form--meeting .module_dropdown.module_dropdown--placeholder {
    color: rgba(51, 51, 51, 0.5);
}

.module-form--meeting .module_input {
    color: #000;
}

.module-form--meeting .module_input::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.5);
    opacity: 1;
}

.module-form--meeting .module_input::-moz-placeholder {
    color: rgba(51, 51, 51, 0.5);
    opacity: 1;
}

.module-form--meeting .module_input:-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.5);
    opacity: 1;
}

.module-form--meeting .module_dropdown--placeholder {
    color: #a9a9a9;
}

.module-form--meeting .module_required {
    display: none;
}

.module-form--meeting .module_actions {
    margin: 0 -20px;
    padding: 20px;
    background-color: #333e48;
    text-align: right;
}

.module-form--meeting .module_actions .module_link {
    color: #fff;
    margin: 0 15px 0 0;
    text-decoration: none;
    text-transform: none;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-form--meeting .module_actions .button,
.module-form--meeting .module_actions .button:hover {
    background-color: #f1af0f;
    border-color: #f1af0f;
    color: #fff;
}

.module-form--meeting_confirmation {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    max-width: 520px;
    margin: auto;
}

.module-form--meeting_confirmation .module_container--inner:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e90d";
    font-size: 46px;
    color: #000;
    display: block;
    margin: auto;
}


/*----- Glossary -----*/

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #000;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #009ec2;
}


/*----- Job Modules -----*/

.module-job-list_table-wrap {
    overflow-x: auto;
}

.module-job-details_description-container {
    margin-bottom: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description label {
    font-weight: normal;
}

.module-job-details_description input {
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    float: right;
    font-family: amazon_emberlight, Arial, sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 0;
}

@media only screen and (max-width: 468px) {
    .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: 767px) {
    .module-job-application_table {
        margin-left: 0;
    }

    .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}

.module-job-application .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}


/*----- Site Map -----*/

.nav--sitemap li {
    margin-bottom: 10px;
}

.nav--sitemap a i {
    position: relative;
    top: 3px;
}


/*----- 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: #000;
    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: #000;
    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: amazon_emberlight, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    vertical-align: baseline;
}

body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
}

body.PreviewBody .PreviewToolBar label+input[type="radio"] {
    margin-left: 15px;
}

body.PreviewBody .PreviewToolBar input[type="text"] {
    min-width: 110px;
}

body.PreviewBody .PreviewToolBar select {
    padding: 15px 35px 15px 20px;
    background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #5c89b4;
    color: #fff !important;
}

@media only screen and (max-width: 1023px) {
    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: 767px) {
    body.PreviewBody .PreviewToolBar input[type="radio"],
    body.PreviewBody .PreviewToolBar label,
    body.PreviewBody .PreviewToolBar input[type="text"],
    body.PreviewBody .PreviewToolBar select,
    body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
}


/*========================
---------- HOME ----------
========================*/

/*----- Stock Header -----*/

.module-stock-header {
    max-width: 390px;
    margin-left: auto;
    color: #aab7b8;
    text-align: right;
}

.module-stock-header_description1,
.module-stock-header_change {
    font-weight: 700;
    width: 150px;
    text-align: left;
}

.module-stock-header_stock-price {
    font-size: 33px;
    font-size: 3.3rem;
    font-weight: 700;
}

.module-stock-header_stock-price:before {
    content: '$';
}

.module-stock-header_date,
.module-stock-header_description3 {
    font-size: 14.4px;
    padding-top: 5px;
    display: inline-block;
    vertical-align: middle;
}


/*----- Latest Event -----*/

.module-event-latest .module_item-wrap {
    border-top: 6px solid #000;
    padding: 20px;
    height: 100%;
}

.module-event-latest .module_q4-icon-links .module_webcast-link:before {
    font-size: 40px;
    font-size: 4rem;
}


/*----- Latest News -----*/

.module-news-latest .module_item {
    margin: 15px 0 70px 0;
}

.module-news-latest .module_item-wrap {
    border-top: 6px solid #000;
    padding: 20px;
    height: 100%;
}


/*----- News Details -----*/

.module-news .module_nav,
.module-news-details_category {
    display: none;
}

.module-details .module_links {
    margin: 10px 0;
}

.module-news-details ul {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.module-news-details .module_multimedia .module_link {
    margin: 0;
    display: block;
    font-weight: normal;
    text-transform: none;
}

.module-news-details .module_multimedia-caption {
    margin-bottom: 16px;
}

.module-news-details .module_multimedia-caption .module_file-text {
    display: block;
}

.module-news-details .module_multimedia-caption .module_file-resolution {
    display: none;
}

.module-news-details .module_multimedia-image {
    width: 100%;
    float: none;
}

.module-news-details .module_multimedia-size {
    margin-top: 10px;
}

.module-news-details .module_multimedia-size .module_file-size {
    display: inline;
}

.module-news-details .module_multimedia-size .module_file-resolution:before {
    content: "(";
}

.module-news-details .module_multimedia-size .module_file-resolution:after {
    content: ")";
}

span#mmgallerylink-link a {
    word-break: break-word;
}

@media only screen and (max-width: 1023px) {
    .module-news-details .module_multimedia-item {
        margin-bottom: 30px;
    }
}


/*----- Home @media -----*/

@media only screen and (max-width: 991px) {
    .module-news-latest .grid--flex {
        display: block;
    }

    .module-news-latest .module_item {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1023px) {
    .module-stock-header {
        margin: 40px auto 0 auto;
        text-align: center;
    }
}

@media only screen and (max-width: 468px) {
    .module-stock-header_description1,
    .module-stock-header_change {
        width: auto;
        text-align: center;
    }
}


/*==================================
---------- ANNUAL REPORTS ----------
==================================*/

.module-financial-year .module-financial_year-text {
    padding: 15px 10px;
    margin-bottom: 5px;
    background-color: #F5F5F5;
    color: #111;
    cursor: pointer;
    font-family: Bookerly,Arial,sans-serif;
}

.module-financial-year .module-financial_year-text:hover,
.module-financial-year .module_item.js--active .module-financial_year-text {
    background-color: #232f3e;
    color: #fff;
}

.module-financial-year .module-financial_year-text:after {
    float: right;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e04a";
    font-size: 22px;
    font-size: 2.2rem;
}

.module-financial-year .module_item.js--active .module-financial_year-text:after {
    content: "\e049";
}

.module-financial-year ul.module_links {
    padding: 10px 10px 0 10px;
}

.module-financial .module_link {
    padding: 10px 10px 10px 40px;
    margin: 0;
    text-indent: -16px;
}

.module-financial .module_links li {
    background-color: #f9fafb;
    margin-bottom: 7px;
}

.module-financial .module_links li:nth-child(even) {
    background-color: #fcfcfc;
}


/*=====================================
---------- QUARTERLY RESULTS ----------
=====================================*/

.module-financial-quarter .module_item {
    margin-bottom: 30px;
}

.module-financial-quarter h3 {
    margin: 10px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
    max-width: 85%;
}

.module-financial-quarter .module_link-text {
    color: #000;
}


/*----- Financial Mashup -----*/

.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 h4 {
    margin-top: 16px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links+h4 {
    margin-top: 30px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links>div {
    background-color: #f9fafb;
    padding: 10px;
    margin-bottom: 7px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links>div:nth-child(even) {
    background-color: #fcfcfc;
}

.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
}

.module-financial-mashup .q4-icon_chevron-right {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
}

.module-financial-mashup .button {
    width: 90%;
}

@media only screen and (min-width: 769px) {
    .module-financial-mashup .module_options--mobile {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .module-financial-mashup .module_options--desktop {
        display: none;
    }
}


/*----- Financial Summary Table -----*/

.module-financial-table_header {
    font-weight: 700;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
    padding: .7em;
}

.module-financial-table_body {
    border: 1px solid #cbcbcd;
}

.module-financial-table_body-row {
    border-top: 1px solid #cbcbcd;
    background-color: #f9fafb;
}

.module-financial-table_body-row:first-child {
    border-top: none;
}

.module-financial-table_body-row:nth-child(even) {
    background-color: #fcfcfc;
}

.module-financial-table_body-year-container {
    text-align: center;
}

.module-financial-table_body-year,
.module-financial-table_body-category.grid_col {
    padding: .7em;
}

.module-financial-table_item {
    display: inline-block;
    margin-right: 15px;
}

.module-financial-table_item~.module_item {
    margin-right: 5px;
}

.module-financial-table_item--empty {
    opacity: 0.1;
}

@media only screen and (max-width: 468px) {
    .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;
}


/*===============================
---------- SEC FILINGS ----------
===============================*/

.module-sec .module_options-select {
    min-width: auto;
    width: 100%;
}

.module-sec .module_header {
    display: block;
}

.module-sec .module_header-text {
    padding: .7em;
    font-weight: 700;
    text-align: left;
}

.module-sec .module_container--content {
    border: 1px solid #cbcbcd;
}

.module-sec .module_item {
    border-top: 1px solid #cbcbcd;
    background-color: #f9fafb;
}

.module-sec .module_item:first-child {
    border-top: none;
}

.module-sec .module_item:nth-child(even) {
    background-color: #fcfcfc;
}

.module-sec .module_item .grid_col,
.module-sec .module_item td {
    vertical-align: middle;
    padding: .7em;
}

.module-sec_download-list-item {
    display: inline-block;
}

.module-sec_download-list-item.module-sec_zip {
    display: none;
}

.module-sec_download-list .module_link,
.module-sec-details_download-list .module_link{
    margin: 0;
}

.module-sec_download-list .module_link:before,
.module-sec-details_download-list .module_link:before {
    font-size: 30px;
    font-size: 3rem;
    padding-right: 0
}

.module-sec-details_description {
    margin: 5px 0 20px 0;
}

.module-sec-details_download-list-item {
    margin-top: 5px;
}

@media only screen and (max-width: 1199px) {
    .module-sec .module_item .module-sec_date {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .module-sec .module_header,
    .module-sec .module_headerr {
        display: none;
    }

    .module-sec .module_container--content {
        border: none;
    }

    .pane--content .module-sec .module_item {
        margin-top: 25px;
        border: 1px solid #cbcbcd;
    }

    .module-sec .module_item .grid_col:before,
    .module-sec .module_item td:before {
        display: block;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .module-sec .module_item .module-sec_date:before {
        content: "Filing date";
    }

    .module-sec .module_item .module-sec_filing:before {
        content: "Form";
    }

    .module-sec .module_item .module-sec_description:before {
        content: "Description";
    }

    .module-sec .module_item .module-sec_download-list:before {
        content: "View";
    }
    
    .module-sec .module_item td {
        display: block;
        width: 100%;
    }
}


/*========================
---------- FAQs ----------
========================*/

.toggle-all {
    text-align: right;
    margin-bottom: 25px;
}

.toggle-all .button {
    background: none;
    color: #009ec2;
    padding: 0;
    text-transform: none;
    font-size: 16px;
    font-size: 1.6rem;
    text-transform: capitalize;
}

.toggle-all .button:hover {
    color: #00afd6 !important;
}

.module-faq .toggle-all a:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}

.module-faq .module_item {
    margin-bottom: 5px;
}

.module-faq_question {
    background-color: #F5F5F5;
    padding: 16px 40px 16px 16px;
    cursor: pointer;
    transition: all .40s;
    position: relative;
}

.module-faq_question:hover,
.module-faq .module_item.js--active .module-faq_question {
    background-color: #232f3e;
    color: #fff;
}

.module-faq_question:after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.module-faq .module_item.js--active .module-faq_question:after {
    content: "-";
}

.module-faq_answer {
    padding: 16px;
}

.module-faq_answer p {
    margin: 0;
}

.module-faq_answer p~p {
    margin-top: 1em;
}

.module-faq_answer li {
    margin-top: 0;
}


/*==========================================
---------- OFFICERS AND DIRECTORS ----------
==========================================*/

.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
    display: none;
}


/*----- Person Accordion -----*/

.module-person-accordion .module-person_name-container {
    padding: 13px 40px 13px 10px;
    margin-bottom: 5px;
    background-color: #F5F5F5;
    color: #111;
    cursor: pointer;
    position: relative;
}

.module-person-accordion .module-person_name-container:hover,
.module-person-accordion .module_item.js--active .module-person_name-container {
    background-color: #232f3e;
    color: #fff;
}

.module-person-accordion .module-person_name-container:after {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    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: "\e04a";
    font-size: 22px;
    font-size: 2.2rem;
}

.module-person-accordion .module_item.js--active .module-person_name-container:after {
    content: "\e049";
}

.module-person-accordion .module-person_name {
    display: block;
    font-weight: 700;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_description-container {
    padding: 20px 10px 15px 10px;
}

.module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 15px 0;
}

.module-person-accordion .module-person_photo-container img {
    display: block;
    margin: auto;
}

.module-person-accordion p {
    margin: 0;
}
.module-person-accordion p ~ p {
    margin-top: 1em;
}

.module-person-accordion .module-person_highlights {
    margin-top: 1em;
}

.module-person-accordion .module-person_highlights p {
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .module-person-accordion .module-person_photo-container {
        float: none;
        margin: 0 auto 30px auto;
        text-align: center;
    }

    .module-person-accordion .module-person_res-photo-container>span {
        display: block;
        margin: 0 0 10px 0;
    }
}


/*----- Person Details -----*/

.module-person-details .module_title,
.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 {
    width: 35%;
    padding-right: 40px;
}

.module-person-details_name-container {
    width: 64%;
}

.module-person-details_name {
    display: block;
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.25;
    color: #555;
    margin-bottom: 15px;
}

.module-person-details_title {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.25;
    color: #555;
}

.module-presentation .module_body {
    display: none;
}

@media only screen and (max-width: 468px) {
    .module-person-details_photo-container,
    .module-person-details_name-container {
        width: 100%;
    }
}


/*----- Committee Composition -----*/

.module-committee .module_container--tablet {
    display: none;
}

.module-committee .module_header {
    display: block;
}

.module-committee .module_header .grid_col {
    vertical-align: middle;
}

.module-committee .module_container--desktop .module_item-container {
    border: 1px solid #cbcbcd;
}

.module-committee .module_container--desktop .module_item {
    background-color: #f9fafb;
    border-top: 1px solid #cbcbcd;
}

.module-committee .module_container--desktop .module_item:first-child {
    border-top: none;
}

.module-committee .module_container--desktop .module_item:nth-child(even) {
    background: #fcfcfc;
}

.module-committee .grid_col {
    padding: .7em;
    text-align: center;
    font-weight: 700;
}

.module-committee .grid_col:first-child {
    text-align: left;
    position: relative;
    padding-right: 25px;
}

.module-committee i {
    font-size: 20px;
    font-size: 2rem;
    line-height: 16px;
}

.module-committee .module_item i.q4-icon_chairman {
    font-size: 26px;
    font-size: 2.6rem;
}

.module-committee_category {
    margin-bottom: 5px;
}

.module-committee_category .module_header {
    background-color: #F5F5F5;
}

.module-committee_category .module_header .grid_col:last-child {
    cursor: pointer;
}

.module-committee_category.js--active .module_header {
    background-color: #232f3e;
    color: #fff;
}

.module-committee_category .module_header i:before {
        content: "\e04a";
    font-size: 22px;
    font-size: 2.2rem;
}

.module-committee_category.js--active .module_header i:before {
    content: "\e049";
}

.module-committee_category .grid_col:last-child {
    text-align: right;
}

.module-committee_custom-role {
    position: absolute;
    top: 13px;
    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: 16px;
}

.module-committee_legend {
    display: inline-block;
    vertical-align: middle;
    margin: 10px 15px 0 0;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-committee_legend i {
    vertical-align: bottom;
}

.module-committee_legend i.q4-icon_chairman {
    position: relative;
    top: 3px;
}

@media only screen and (max-width: 767px) {
    .module-committee .module_container--desktop {
        display: none;
    }
    
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module_committee_items {
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    margin: 25px 0 10px 0;
}

.module_committee_items .grid_col {
    margin-top: 8px;
    margin-bottom: 8px;
}

.module_committee i {
    font-size: 20px;
    font-size: 2rem;
    position: relative;
    top: 5px;
    display: inline-block;
}

.module_committee_items i {
    font-size: 20px;
    font-size: 2rem;
    height: 18px;
    top: 1px;
    vertical-align: inherit;
}

@media (min-width: 469px) {
    .module_committee_items .grid_col {
        border-right: 1px solid #ddd;
        padding-right: 12px;
    }
    
    .module_committee_items .grid_col:last-child {
        border: none;
    }
}


/*=================================
---------- E-MAIL ALERTS ----------
=================================*/

/*----- MailingList Subscribe -----*/

.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.module-subscribe_form {
    font-size: 0;
}

.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}

.module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}

.module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}

.module-subscribe_form tr.module-subscribe_notes-text,
.module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}

.module-subscribe_form td {
    display: block;
}

.module-subscribe_form label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
}

.module-subscribe_list-header label {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 10px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.module-subscribe .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .module-subscribe_form tr {
        width: 100%;
    }

    .module-subscribe_form tr:nth-child(even) {
        padding-left: 0;
    }

    .module-subscribe_form tr:nth-child(odd) {
        padding-right: 0;
    }

    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}


/*----- MailingList Unsubscribe -----*/

.module-unsubscribe_table {
    width: 50%;
}

.module-unsubscribe_table td {
    padding-right: 10px;
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
    .module-unsubscribe_table {
        width: 100%;
    }

    .module-unsubscribe_table td {
        padding-right: 0;
    }
}


/*==============================
---------- STOCK INFO ----------
==============================*/

/*----- Investment Calculator -----*/

.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_input h4 {
    margin-bottom: 12px;
}

.module-calculator_input label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.module-calculator_input input[type="checkbox"]+label {
    margin: 0;
}

.module-calculator_input-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 td {
        display: block;
    }

    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: 700;
    }
}

.module-calculator_info td:first-child:before {
    content: none;
}


/*----- Dividends -----*/

.module-dividends .highcharts-series-0 rect {
    fill: #333e48;
}

.module-dividends .highcharts-series-1 rect {
    fill: #ff9900;
}


/*----- Stock Chart -----*/

.module-stock-chart [data-highcharts-chart].js--hidden {
    display: block !important;
    max-height: 0;
    overflow: hidden;
}

.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #333e48;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #333e48;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #333e48;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #333e48;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(0, 111, 186, 0.6);
}

.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f9fafb;
    cursor: ew-resize;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: #333e48;
}

.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: #333e48;
    stroke: #333e48;
}

.module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
    stroke: #aab7b8;
    fill: #f9fafb;
}

.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: #000;
}

.module-stock-chart .highcharts-container>svg>.highcharts-button {
    display: none;
}


/*----- Stock Quote -----*/

.module-stock .module_options {
    margin-bottom: 30px;
}

.module-stock .module_container--content {
    border-top: 1px solid rgba(34, 34, 34, 0.2);
}

.module-stock .stock-historical-range .module_options>*:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_lookup-title {
    padding-left: 20px;
}

.module-stock_label,
.module-stock_value {
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}

.module-stock_label>span,
.module-stock_value>span {
    display: block;
    padding: 15px 20px;
}

.module-stock_up {
    color: #23a217;
}

.module-stock_down {
    color: #c00;
}

.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: 25px;
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.module-stock_date-text {
    margin-left: 20px;
}

.module-stock_delay {
    margin-top: 25px;
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
    text-align: right;
}

.module-stock_delay-text {
    margin-right: 20px;
}

@media only screen and (max-width: 767px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }

    .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_lookup-title {
        padding-left: 10px;
    }

    .module-stock_label>span,
    .module-stock_value>span {
        padding: 15px 10px;
    }
}

@media only screen and (max-width: 468px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }

    .module-stock_label>span,
    .module-stock_value>span {
        padding: 15px 0 15px 5px;
    }
}


/*==========================================
---------- EVENTS & PRESENTATIONS ----------
==========================================*/

/*----- Events -----*/

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event-details .module_speakers h4 {
    display: none;
}

@media only screen and (max-width: 767px) {
    .module-event-details .module_reminder .grid_col {
        margin-bottom: 20px;
    }
}

.module-event-upcoming .module_nav {
    display: none;
}

.module-event-upcoming .module_item {
    padding: 0 0 10px;
}

.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: #fafafa;
}

.module-event-calendar_splash i {
    font-size: 40px;
    font-size: 4rem;
    color: #333e48;
}

.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: #333e48;
    font-weight: bold;
    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: #fafafa;
}

.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: #333e48;
}

.module-event-calendar_day--selected {
    background-color: #ff9900;
    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: 468px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}

.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: 767px) {
    .module-event-calendar {
        display: block;
    }

    .module-event-calendar_calendar-container,
    .module-event-calendar_event-container {
        display: block;
        width: 100%;
    }

    .module-event-calendar_calendar-container {
        padding-right: 0;
    }

    .module-event-calendar_event-container {
        margin-top: 20px;
    }
}


/*----- Presentations -----*/

.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;
}

/*# sourceMappingURL=global.css.map */
.module_attachments{
    display: inline;
    padding-left: 1%;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline !important;
    color: #007cb6 !important;
}


  .module_attachment.Document .module_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: "\e088";
  font-size: 26px;
  font-size: 2.6rem;
  vertical-align: middle;
  display: inline-block;
  padding-right: 5px;
    color: #c00;

  }