/*----- 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;
}

select:empty {
    display: none;
}

*::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

*::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}


/*----- Animations -----*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/*----- Typography -----*/

body {
    overflow-x: hidden;
    color: #333333;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

h1 {
    font-size: 45px;
    font-size: 4.5rem;
}

h2 {
    font-size: 45px;
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: normal;
}

h3 {
    font-size: 25px;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h4 {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
}

h2.module_title {
    text-align: center;
}

.module-title-underline .module_title {
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

a {
    text-decoration: none;
    color: #007AB7;
}

a:hover {
    text-decoration: underline;
}

a u,
.module_headline-link,
.module-person-custom .module-person_name-container a {
    color: #333;
}

a:hover u {
    color: #007AB7;
}

.module_headline-link:hover,
.module-person-custom .module-person_name-container a:hover {
    text-decoration: none;
    color: #007AB7;
}

p {
    margin: 0 0 20px 0;
}

sub,
sup {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 0;
}

sub {
    vertical-align: sub;
}

sup {
    vertical-align: super;
}

small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.35;
    display: block;
}

.text-small {
    font-size: 15px;
    font-size: 1.5rem;
}

i {
    display: inline-block;
}

strong,
b {
    font-weight: 400;
}

em {
    font-style: italic;
}


/*----- Common -----*/

img {
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    user-select: none;
    cursor: pointer;
    font-size: 15px;
    font-size: 1.5rem;
}

input[type="checkbox"] + label {
    position: relative;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    content: "";
    display: inline-block;
    vertical-align: sub;
    width: 20px;
    height: 20px;
    border: 1px solid #007AB7;
    margin-right: 8px;
    line-height: 1;
}

input[type="checkbox"]:checked + label:after {
    content: "\ed71";
    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: #007AB7;
    position: absolute;
    left: 4px;
    top: 1px;
    font-size: 13px;
    font-size: 1.3rem;
}

input[type="radio"]:checked + label:before {
    border-width: 10px;
}

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: 20px;
    margin: 0 0 10px 0;
}

.list li {
    margin-bottom: 15px;
}

.list--ordered {
    list-style-type: decimal;
    padding-left: 20px;
}

.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: 18.5px 15px;
    background: #F2F2F2;
    border: none;
    border-radius: 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.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;
}

.submit,
.button {
    text-transform: uppercase;
    background-color: #FF6200;
    color: #fff;
    padding-right: 30px;
    padding-left: 30px;
    font-size: 19px;
    font-size: 1.9rem;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.module_actions {
    margin-top: 20px;
}

.button {
    transition: .16s;
}

.button:hover {
    transform: scale(1.02, 1.06);
    text-decoration: none;
}

.button--dark {
    background-color: #fff;
    color: #FF6200;
}

.module_view-all {
    margin-top: 5px;
}

.module_view-all-link,
.module-subscribe_unsubscribe-link,
.module_pager span {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Text area demands width*/
    width: 100%;
    max-width: none;
    padding: 21.5px 15px;
    border: none;
    border-radius: 0;
    background-color: #F2F2F2;
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.25;
}

.layout_content .module_input[type="text"]::-webkit-input-placeholder,
.layout_content .module_input[type="email"]::-webkit-input-placeholder {
    text-transform: uppercase;
}

.layout_content .module_input[type="text"]::-moz-placeholder,
.layout_content .module_input[type="email"]::-moz-placeholder {
    text-transform: uppercase;
}

.layout_content .module_input[type="text"]:-ms-input-placeholder,
.layout_content .module_input[type="email"]:-ms-input-placeholder {
    text-transform: uppercase;
}

.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;
}

.dropdown,
.module_dropdown {
    padding: 21.5px 45px 21.5px 15px;
    background: url('../design/svg/q4-icon_chevron-down-black.svg') no-repeat right 15px center #F2F2F2;
    background-size: 20px;
    min-width: 130px;
    text-transform: uppercase;
    font-weight: 700;
}

.dropdown::-ms-expand {
    display: none;
}

.module_dropdown::-ms-expand {
    display: none;
}


/*----- Tables -----*/

.table-wrapper {
    overflow-x: auto;
}

.table {
    width: 100%;
    margin: 0 0 20px 0;
}

.table th,
.table td,
.table tr > .grid_col {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #E3E3E3;
}

.table th {
    font-weight: 400;
    text-align: left;
}

.table th.text-center {
    text-align: center;
}

.table.text-center th {
    text-align: center;
}

.table--striped {
    font-size: 15px;
    font-size: 1.5rem;
}

.table--striped th,
.table--striped td,
.table--striped tr > .grid_col {
    border: none;
    padding-left: 10px;
    padding-right: 10px;
}

.table--striped td,
.table--striped tr > .grid_col {
    padding-top: 22px;
    padding-bottom: 22px;
}

.table--striped tr:nth-child(odd) td {
    background-color: #fafafa;
}

.table--headless tr:first-child td {
    border-top: 1px solid #E3E3E3;
}

.table--indent th,
.table--indent td {
    padding-left: 20px;
}

@media only screen and (max-width: 767px) {
    .table--responsive thead {
        display: none;
    }

    .table--responsive td {
        display: block;
    }

    .table--responsive:not(.table--headless) td[data-heading]:before {
        content: attr(data-heading) ": ";
        font-weight: 400;
    }

    .table--responsive td:not(:first-child) {
        padding-top: 5px;
    }

    .table--responsive td:not(:last-child) {
        padding-bottom: 5px;
        border: none;
    }

    .table--headless tr:first-child td:not(:first-child) {
        border-top: none;
    }
}


/*----- Special Boxes -----*/

.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    font-size: 1.4rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}

.code_comment {
    opacity: 0.5;
}

.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}


/*----- Q4 Modules Icons -----*/

.module_q4-icon-links .module_link:before,
.module_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: "\e919";
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
    font-size: 30px;
    font-size: 3rem;
    width: 35px;
    text-align: center;
}

.module_q4-icon-links .module_rss-link:before,
.module_q4-icon-links .module_link.module_link-rss:before {
    content: "\eefa";
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\e912";
    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: "\e900";
    font-size: 28px;
    font-size: 2.8rem;
}

.module_q4-icon-links .module_link[href$=".xls"]:before,
.module_q4-icon-links .module_link[href$=".xlsx"]:before,
.module_q4-icon-links .module_link[href$=".csv"]:before,
.module_q4-icon-links .module_link[href$=".XLS"]:before,
.module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\e917";
}

.module_q4-icon-links .module_link[href$=".mp4"]:before,
.module_q4-icon-links .module_link[href$=".flv"]:before,
.module_q4-icon-links .module_link[href$=".avi"]:before,
.module_q4-icon-links .module_link[href$=".MP4"]:before,
.module_q4-icon-links .module_link[href$=".FLV"]:before,
.module_q4-icon-links .module_link[href$=".AVI"]:before {
    content: "\e95e";
}

.module_q4-icon-links .module_link[href$=".pdf"]:before,
.module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\e915";
}


.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e919";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\e915";
}


.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\e915";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\e917";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e916";
}

.module_q4-icon-links .module_link.module_link-ZIP:before {
  background-image: url('../images/zip-icon.svg');
  content: '';
  height: 30px;
  width: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: -20px;
  }
/*----- 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: 480px) {
    .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .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: 992px) 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: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--md-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-1 {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }

    .grid_col.grid_col--md-1-of-2,
    .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-2,
    .grid--flex .grid_col.grid_col--md-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--md-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--md-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--md-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--md-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--md-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }
}

@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }

    .grid--flex .grid_col[class*="grid_col--sm-"] {
        display: block;
        margin-right: 0;
    }

    .grid_col.grid_col--sm-1-of-2,
    .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-2,
    .grid--flex .grid_col.grid_col--sm-2-of-4 {
        width: auto;
        flex-basis: 50%;
        max-width: 50%;
    }

    .grid_col.grid_col--sm-1-of-3 {
        width: 33.33333%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-3 {
        width: auto;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .grid_col.grid_col--sm-2-of-3 {
        width: 66.66667%;
    }

    .grid--flex .grid_col.grid_col--sm-2-of-3 {
        width: auto;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }

    .grid--flex .grid_col.grid_col--sm-1-of-4 {
        width: auto;
        flex-basis: 25%;
        max-width: 25%;
    }

    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }

    .grid--flex .grid_col.grid_col--sm-3-of-4 {
        width: auto;
        flex-basis: 75%;
        max-width: 75%;
    }

    .grid--flex .grid_col {
        width: auto;
        flex-basis: 100%;
        max-width: 100%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid--flex .grid_col--d-first {
    float: none;
    order: -1;
}

.grid_col--d-last {
    float: right;
}

.grid--flex .grid_col--d-last {
    float: none;
    order: 1;
}

.grid--no-gutter {
    margin-left: 0;
}

.grid--no-gutter > .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--gutter {
    margin-left: -15px;
}

.grid--gutter .grid_col {
    padding-left: 15px;
}

.grid--gutter-25 {
    margin-left: -25px;
}

.grid--gutter-25 .grid_col {
    padding-left: 25px;
}

.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;
    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: #4d148c;
}

.background--alt-brand {
    background-color: #ff6200;
}

.background--dark {
    background-color: #333;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #fafafa;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #e8002e;
}

.color--brand {
    color: #4d148c;
}

.color--dark {
    color: #333;
}

.color--grey {
    color: #E3E3E3;
}

/* .color--success {
    color: #23a217;
} */

.color--error {
    color: #e8002e;
}

.dark {
    color: #fff;
}

.dark a {
    color: #fff;
}

.dark .button--cta {
    color: #fff;
}

hr {
    margin: 20px 0;
    border: none;
    background-color: #E3E3E3;
    height: 1px;
}

p + hr {
    margin-top: 30px;
}


/*----- Layout -----*/

.container,
.pane--content .module_container--outer,
.module-search-results {
    width: 970px;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {

    .container,
    .pane--content .module_container--outer,
    .module-search-results {
        width: 738px;
        padding: 0 15px;
    }

    ul.container {
        padding: 0 15px !important;
    }
}

@media screen and (max-width: 767px) {

    .container,
    .pane--content .module_container--outer,
    .module-search-results {
        width: auto;
    }
}

.module_narrow {
    max-width: 780px;
    margin: 0 auto;
}

.layout_content {
    margin-top: 60px;
}

.pane--content .module {
    padding-bottom: 60px;
}

.pane--content .module--thin {
    padding-bottom: 40px;
}

.pane--content .module--thick {
    padding-bottom: 80px;
}

.pane--content .module--no-padding {
    padding-bottom: 0;
}

@media screen and (min-width:993px) {
    .fxg-desktop--hide {
        display: none !important;
    }
}

@media screen and (max-width:992px) and (min-width:768px) {
    .fxg-tablet--hide {
        display: none !important;
    }
}

@media screen and (max-width:767px) {
    .fxg-mobile--hide {
        display: none !important;
    }
}


/*----- Header -----*/

/*-- Corporate Navigation --*/

.fxg-nav {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 75px;
    transition: .25s;
}

.js--header-small.fxg-nav {
    max-height: 52px;
}

.fxg-overlay {
    background-color: rgba(0, 0, 0, 0.25);
    position: fixed;
    z-index: 199;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fxg-logo {
    float: left;
    height: 75px;
    width: 143px;
    position: relative;
    transition: .25s height ease;
}

.js--header-small .fxg-logo {
    height: 52px;
}

.fxg-logo img {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: auto;
    height: auto;
    max-width: 88px;
    max-height: 60px;
    transition: .25s ease;
}

.fxg-nav .fxg-dropdown {
    float: left;
}

.fxg-nav.js--search-active .fxg-dropdown {
    display: none;
}

.fxg-nav .fxg-dropdown__item {
    float: left;
    position: relative;
}

.fxg-nav .fxg-link {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    display: block;
    transition: .25s padding ease;
}

.fxg-nav .fxg-dropdown__item > .fxg-link {
    font-weight: 400;
    letter-spacing: 0.2px;
    padding: 32px 15px 29px 15px;
}

.fxg-nav .fxg-dropdown__item.js--active > .fxg-link {
    background-color: #fff;
    color: #4d148c;
}

.fxg-nav .fxg-dropdown__item > .fxg-link:after {
    content: " ";
    height: 10px;
    width: 12px;
    display: inline-block;
    margin-left: 1px;
    background-image: url('../design/menu-sprite.png');
    background-size: 77px 56px;
    background-repeat: no-repeat;
    background-position: 0 -4px;
}

.fxg-nav .fxg-dropdown__item.js--active > .fxg-link:after {
    background-position: 0 4px;
}

.fxg-nav .fxg-dropdown__sub-menu .fxg-link {
    color: #333;
    border-bottom: 1px solid rgba(182, 182, 182, 0.5);
    padding: 20px 13px 17px 13px;
    letter-spacing: 0;
}

.fxg-nav .fxg-dropdown__sub-menu .fxg-link--blue {
    color: #007ab7;
    text-transform: uppercase;
    border-bottom: none;
    font-weight: 700;
}

.fxg-nav.js--header-small .fxg-link {
    padding: 19px 15px;
}

.fxg-nav .fxg-dropdown__sub-menu {
    width: 240px;
    background: #fff;
    position: absolute;
    z-index: 201;
    transition: height .5s ease;
    display: none;
}

.fxg-tracking {
    width: 240px;
    padding: 15px;
    color: #333;
    border-bottom: 1px solid rgba(182, 182, 182, 0.5);
}

.fxg-field {
    position: relative;
    margin-bottom: 12px;
}

#trackingModuleTrackingNum {
    background-color: #f2f2f2;
    border: none;
    padding: 27px 8px 10px 15px;
    width: 100%;
    outline: none;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}

#trackingModuleTrackingNum:focus {
    border-left: 3px solid #4d148c;
}

.fxg-field__input--error {
    border-left: 3px solid #e8002e !important;
}

.fxg-field__placeholder {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: .2s ease all;
    position: absolute;
    left: 15px;
    top: 23px;
    pointer-events: none;
}

.fxg-field__input-text:focus ~ .fxg-field__floating-placeholder {
    top: 12px;
    font-size: 10px;
    font-size: 1rem;
    color: #4d148c;
}

.fxg-field__input--error:focus ~ .fxg-field__floating-placeholder,
.fxg-field__input--error:not(:focus) ~ .fxg-field__floating-placeholder {
    color: #e8002e !important;
}

.fxg-field__validation {
    display: block;
    color: #e8002e;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 14px;
    padding: 10px 28px 6px 15px;
}

.fxg-button {
    font-size: 19px;
    font-size: 1.9rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.11px;
    line-height: 12px;
    padding: 24px 40px;
    border: 0;
    border-radius: 0;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.fxg-button--orange {
    color: #fff;
    background-color: #ff6200;
}

.fxg-tracking .fxg-button {
    width: 100%;
}

.fxg-button:hover,
.fxg-button:focus {
    transition: .16s;
    transform: scale(1.02, 1.06);
}

.fdx-utility {
    float: right;
    margin: 24px 6px 21px 16px;
    transition: .25s ease;
}

.js--header-small .fdx-utility {
    margin-top: 16px;
    margin-bottom: 6px;
}

.fxg-utility__sign-in {
    float: left;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 1px 35px 0 0;
    letter-spacing: normal;
}

.fxg-utility__sign-in a {
    color: #fff;
}

.fxg-utility__sign-in a:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background-image: url('../design/menu-sprite.png');
    background-size: 77px 56px;
    background-repeat: no-repeat;
    background-position: -12px 0;
    width: 28px;
    height: 27px;
    margin-left: 9px;
}

.fxg-nav .fxg-dropdown__item > .fxg-link:focus {
    outline: none;
}


/*-- Search --*/

@-webkit-keyframes search-slide {
    to {
        width: 670px
    }
}

@-moz-keyframes search-slide {
    to {
        width: 670px
    }
}

@keyframes search-slide {
    to {
        width: 670px
    }
}

@media(max-width:992px) {
    @-webkit-keyframes search-slide {
        to {
            width: 375px
        }
    }

    @-moz-keyframes search-slide {
        to {
            width: 375px
        }
    }

    @keyframes search-slide {
        to {
            width: 375px
        }
    }
}

.fxg-utility__search {
    float: left;
    margin-right: 10px;
}

.module-search h2 {
    height: 30px;
    width: 26px;
    background-image: url('../design/menu-sprite.png');
    background-size: 77px 56px;
    background-repeat: no-repeat;
    background-position: -40px 1px;
    cursor: pointer;
}

.module-search h2.js--active {
    height: 12px;
    width: 12px;
    background-image: url('../design/menu-sprite.png');
    background-size: 77px 56px;
    background-repeat: no-repeat;
    background-position: -66px 0;
    position: relative;
    top: 9px;
    right: -6px;
}

.js--header-small .module-search h2.js--active {
    top: 5px;
}

.module-search .module_container--inner {
    display: none;
    margin: 15px 0 11px 0;
    position: absolute;
    right: 44px;
    top: 0;
    background-color: #4d148c;
    border: 1px solid #fff;
    border-radius: 40px;
    padding-right: 19px;
    transition: .25s margin ease;
}

.module-search .module_container--inner.js--revealed {
    display: block;
}

.js--header-small .module-search .module_container--inner {
    margin: 3px 0 0 0;
}

.module-search_input[type="text"] {
    float: left;
    background-color: transparent;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 11px 20px 10px 20px;
    height: 45px;
    border: none;
    border-right: 1px solid;
    margin-right: 22px;
}

.module-search_input[type="text"]:focus {
    outline: none !important;
}

.module-search_button {
    float: left;
    font-size: 0;
    height: 43px;
    width: 26px;
    background-image: url(../design/menu-sprite.png);
    background-size: 77px 56px;
    background-repeat: no-repeat;
    background-position: -39px 11px;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0;
    border: none;
}


/*-- Corporate Navigation Mobile Toggle --*/

.fxg-utility__menu-btn {
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
    float: left;
    margin: 3px 0 0 15px;
    display: none;
}

.fxg-utility__menu-btn_bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: .15s;
    -webkit-transition-property: -webkit-transform;
    -webkit-moz-property: -webkit-transform;
    transition-property: -webkit-transform;
    -webkit-transition-property: transform;
    -webkit-moz-property: transform;
    transition-property: transform;
    -webkit-transition-property: transform, -webkit-transform;
    -webkit-moz-property: transform, -webkit-transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .15s;
    -moz-transition-duration: .15s;
    transition-duration: .15s;
    transition-timing-function: ease;
}

.fxg-utility__menu-btn_bar:nth-child(1) {
    top: 0;
}

.fxg-utility__menu-btn_bar:nth-child(2) {
    top: 9px;
    transition-timing-function: ease;
    transition-duration: .2s;
    transition-property: transform, opacity;
}

.fxg-utility__menu-btn_bar:nth-child(3) {
    top: 18px;
}


/*-- Banner --*/

.pane--banner {
    background-image: url(../design/banner/default-banner.jpg);
    background-position: center 20%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    margin: 75px auto 0;
}

.Sectioncompany-overview .pane--banner {
    background-image: url("../design/banner/company-banner.jpg");
    background-position: center bottom;
}

.Sectionnews-and-events .pane--banner,
.Sectioninvestor-news .pane--banner,
.Sectionupcoming-events .pane--banner,
.Sectionwebcasts-and-presentations .pane--banner {
    background-image: url("../design/banner/news-events-banner.jpg");
    background-position: right top;
}

.Sectionfinancial-information .pane--banner,
.Sectionsec-filings .pane--banner {
    background-image: url("../design/banner/financial-banner.jpg");
    background-position: 72% top;
}

.Sectionstock-information .pane--banner {
    background-image: url("../design/banner/stock-banner.jpg");
    background-position: 52% top;
}

.Sectiongovernance-and-citizenship .pane--banner,
.Sectionboard-of-directors .pane--banner,
.Sectiongovernance-guidelines .pane--banner,
.Sectioncommittee-composition .pane--banner,
.SectionESG .pane--banner,
.Sectioncommittee-charters .pane--banner,
.Sectionesg .pane--banner,
.Sectiongovernance-policies .pane--banner {
    background-image: url("../design/banner/esg-banner.jpg");
    background-position: 88% top;
}

.Sectionshareowner-services .pane--banner,
.Sectionemail-alerts .pane--banner,
.Sectionir-contacts .pane--banner {
    background-image: url("../design/banner/shareowner-banner.jpg");
    background-position: center top;
}

.pane--banner .pane_inner {
    padding-top: 35px;
    padding-bottom: 255px;
}

.layout--home .pane--banner .pane_inner {
    padding-bottom: 75px;
}


/*-- Section Title --*/

.module-breadcrumb h1,
.module-page-title h1 {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
}


/*-- Stock Quote Header --*/

.module-stock-header {
    font-size: 12px;
    font-size: 1.2rem;
    color: #1E1C1D;
}

.module-stock-header_wrap {
    display: inline-block;
    padding: 10px 20px 20px 20px;
    background: rgba(255, 255, 255, 0.8);
}

.module-stock-header_description1 {
    font-weight: 500;
    margin: 20px 0 10px 0;
}

.module-stock-header_stock-price {
    display: block;
    font-size: 35px;
    font-size: 3.5rem;
    line-height: 1;
    margin-right: 15px;
}

.module-stock-header_stock-price:before {
    content: '$';
}

.module-stock-header_change {
    margin-top: 2px;
}

.module-stock-header_volume {
    margin-top: 10px;
}

.module-stock-header_marketcap {
    margin-bottom: 10px;
}

.module-stock-header_description3,
.module-stock-header_date {
    display: block;
    font-size: 10px;
    font-size: 1.0rem;
}


/*-- IR Navigation --*/

.nav--ir_toggle {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 -15px;
    padding: 16px 15px;
    cursor: pointer;
    background-color: #fafafa;
}

.nav--ir_toggle:after {
    content: "\e911";
    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;
    float: right;
    margin-top: 3px;
}

.nav--ir_toggle.js--active:after {
    content: "\e910";
}

.nav--ir ul {
    line-height: 1;
    font-size: 15px;
    font-size: 1.5rem;
}

.layout--home .nav--ir .level1 > li:first-child > a,
.nav--ir .level1 > li.expanded > a,
.nav--ir .level1 > li.selected > a {
    font-weight: 500;
}

.nav--ir .level1 > li > a {
    color: #333;
    display: block;
    position: relative;
}

.nav--ir .level1 > li > a:hover {
    text-decoration: none;
}

.nav--ir .level1 > li.has-children > a:after {
    content: "\e91a";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 7px;
    font-size: 0.7rem;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4px;
}

.nav--ir .level1 > li.js--active > a:after {
    transform: rotate(180deg);
}

.nav--ir .level2 a {
    color: #007AB7;
}

.nav--ir .level2 > li.selected > a,
.nav--ir .level2 > li.expanded > a,
.nav--ir .level3 > li.selected > a {
    text-decoration: underline;
}

.nav--ir .level2 > li > a,
.nav--ir .level2 > li.no-link > span {
    font-weight: 700;
    color: #007AB7;
}

.nav--ir .level3 > li {
    margin-top: 10px;
}

.nav--ir a:focus {
    outline: none !important;
}


/*-- Mobile Header --*/

@media screen and (min-width: 768px) {
    .module-search_input[type="text"] {
        width: 169px;
    }

    .module-search .module_container--inner.js--revealed .module-search_input[type="text"] {
        -webkit-animation: search-slide .5s ease forwards;
        -moz-animation: search-slide .5s ease forwards;
        animation: search-slide .5s ease forwards;
    }

    .pane--navigation {
        position: relative;
        background-color: #fafafa;
        margin: 0 auto;
    }

    .nav--ir_toggle {
        display: none;
    }

    .nav--ir .level1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 -15px;
    }

    .nav--ir .level1 > li > a {
        padding: 35px 0;
        border-bottom: 4px solid transparent;
        margin: 0 12px;
    }

    .nav--ir .level1 > li.has-children > a {
        padding-right: 25px;
    }

    .nav--ir .level1 > li.js--active > a {
        border-color: #4D148C;
    }

    .nav--ir .level2-wrap {
        display: none;
        position: absolute;
        z-index: 198;
        left: 0;
        right: 0;
        top: 100%;
        background-color: #fafafa;
        padding: 25px 0 0 0;
        height: 240px;
    }

    .nav--ir .level2 {
        margin: 0 auto;
        border-right: 30px solid transparent;
        position: relative;
    }

    .nav--ir .level2:before {
        content: '';
        display: block;
        position: absolute;
        top: -25px;
        left: 0;
        right: -40px;
        background-color: #E3E3E3;
        height: 1px;
    }

    .nav--ir .level2 > li {
        display: inline-block;
        vertical-align: top;
        margin-bottom: 20px;
        padding-right: 30px;
    }

    .nav--ir_close {
        position: absolute;
        right: -30px;
        top: 3px;
        font-size: 18px;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1;
    }
}

@media screen and (min-width: 993px) {
    .fxg-nav .fxg-dropdown__sub-menu {
        -webkit-box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.17);
        -moz-box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.17);
        box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.17);
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .nav--ir .level2 > li {
        padding-right: 50px;
    }

    .nav--ir .level3 > li {
        max-width: 230px;
    }
}

@media screen and (max-width: 992px) {
    .fxg-overlay {
        display: none;
    }

    .js--search-active .fxg-utility__menu-btn {
        display: none;
    }

    .module-search .module_container--inner {
        right: 59px;
    }

    .fxg-utility__menu-btn {
        display: block;
    }

    .js--mobile-nav-active .fxg-utility__menu-btn_bar:nth-child(1) {
        transform: translate3d(0, 9px, 0) rotate(45deg);
    }

    .js--mobile-nav-active .fxg-utility__menu-btn_bar:nth-child(2) {
        transform: rotate(0deg) translate3d(-12px, -6px, 0);
        opacity: 0;
        top: 15px;
    }

    .js--mobile-nav-active .fxg-utility__menu-btn_bar:nth-child(3) {
        transform: translate3d(0, -9px, 0) rotate(-45deg);
    }

    .fxg-nav .fxg-dropdown {
        display: none;
        width: 0;
        position: fixed;
        z-index: 201;
        top: 75px;
        right: 0;
        overflow-x: hidden;
        transition: .25s;
        background: #fafafa;
    }

    .fxg-nav.js--mobile-nav-active .fxg-dropdown {
        display: block;
        max-width: 50%;
        width: 465px;
        height: 100vh;
        background-color: #4d148c;
        padding-bottom: 52px;
    }

    .js--mobile-nav-active.js--search-active .fxg-dropdown {
        display: none;
    }

    .fxg-nav.js--header-small .fxg-dropdown {
        top: 52px;
    }

    .fxg-nav .fxg-dropdown__item {
        float: none;
        border-bottom: 1px solid #fff;
        background-color: #fafafa;
    }

    .fxg-nav .fxg-dropdown__item > .fxg-link {
        color: #333;
        padding: 25px 23px;
    }

    .fxg-nav .fxg-dropdown__item > .fxg-link:after {
        height: 8px;
        margin-top: 4px;
        background-position: 0 -20px;
    }

    .fxg-nav .fxg-dropdown__sub-menu {
        position: static;
        width: 100%;
    }

    .fxg-nav .fxg-dropdown__item.js--active > .fxg-link {
        background-color: #4d148c;
        color: #fff;
    }

    .fxg-nav .fxg-dropdown__item.js--active > .fxg-link:after {
        background-position: 0 -13px;
    }

    .fxg-nav .fxg-dropdown__sub-menu .fxg-link {
        padding: 23px;
    }

    .fxg-tracking {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .pane--header .fxg-nav {
        max-height: 62px;
        height: 62px;
    }

    .pane--header .fxg-logo {
        height: 60px;
    }

    .pane--header .fxg-nav .fxg-dropdown {
        width: 100%;
        max-width: 100%;
        height: auto;
        background-color: #fafafa;
        top: 124px;
        bottom: 0;
        overflow-y: scroll;
        padding-bottom: 0;
    }

    .js--mobile-nav-active.js--search-active .fxg-dropdown {
        display: block;
    }

    .fdx-utility {
        margin: 16px 4px 21px 16px;
    }

    .fxg-utility__sign-in {
        font-size: 0;
        margin-right: 10px;
    }

    .module-search h2 {
        display: none;
    }

    .pane--header .module-search .module_container--inner {
        right: 0;
        left: 0;
        top: 62px;
        margin: 0;
        border-radius: 0;
        border-right: none;
        border-left: none;
        display: none;
    }

    .js--mobile-nav-active .module-search .module_container--inner {
        display: block;
    }

    .pane--header .module-search_input[type="text"] {
        width: calc(100% - 50px);
        height: 60px;
    }

    .module-search_button {
        height: 60px;
        background-position-y: 15px;
    }

    .pane--banner {
        margin-top: 62px;
        margin-bottom: 65px;
        position: relative;
    }

    .pane--banner h1 {
        position: absolute;
        bottom: -50px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 30px;
        font-size: 3.0rem;
        line-height: 1.15;
        color: #333;
        font-weight: 300 !important;
        padding: 0;
        background-color: transparent;
    }

    .pane--navigation {
        background-color: #fcfcfc;
    }

    .nav--ir_close {
        display: none;
    }

    .nav--ir .level1 {
        display: none;
    }

    .nav--ir .level1.js--revealed {
        display: block;
    }

    .nav--ir .level1 > li ~ li {
        border-top: 1px solid rgba(182, 182, 182, 0.5);
    }

    .nav--ir .level1 > li > a {
        padding: 25px 0;
    }

    .pane--navigation .nav--ir .level1 > li > a:after {
        right: auto;
    }

    .nav--ir .level2 {
        padding: 0 !important;
    }

    .nav--ir .level2 > li {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 520px) {

    .Sectiongovernance-and-citizenship .pane--banner h1,
    .Sectionboard-of-directors .pane--banner h1,
    .Sectiongovernance-guidelines .pane--banner h1,
    .Sectioncommittee-composition .pane--banner h1,
    .Sectioncorporate-governance-guidelines .pane--banner h1 {
        font-size: 24px;
        font-size: 2.4rem;
    }
}


/*----- Footer -----*/

/*-- Corporate Footer --*/

.pane--footer {
    padding: 30px 0 60px 0;
}

.fxg-footer {
    border-bottom: 1px solid rgba(89, 89, 91, 0.5);
    margin-bottom: 50px;
    padding-bottom: 30px;
}

.fxg-footer > .grid > .grid_col {
    margin-top: 20px;
    margin-bottom: 20px;
}

.fxg-footer .fxg-title,
.fxg-social .fxg-title {
    color: #4d148c;
    font-size: 10px;
    font-size: 1rem;
    font-family: "Dangrek", sans-serif;
    font-weight: 700;
    letter-spacing: .75px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fxg-social .fxg-title {
    margin: 0 15px 0 0;
}

.fxg-footer .fxg-link {
    color: #333;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2.08;
    display: block;
}

.fxg-link--flag:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 23px;
    background-position: -252px 0;
    background-size: 311.78px 23px;
    background-image: url('../design/footer-sprite.png');
    margin-right: 3px;
    position: relative;
    top: -2px;
}

.fxg-link--flag:hover {
    text-decoration: none;
}

.fxg-footer .fxg-dropdown {
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
}

.fxg-footer .fxg-dropdown_toggle {
    position: relative;
    font-size: 12px;
    font-size: 1.2rem;
    background: transparent;
    border: 1px solid rgba(89, 89, 91, 0.5);
    width: 100%;
    text-align: left;
    padding: 18px 15px 17px;
    cursor: pointer;
    color: #333;
}

.fxg-footer .fxg-dropdown_toggle .fxg-icon {
    display: inline-block;
    width: 20px;
    height: 12px;
    background-position: -367px 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    background-size: 406.67px 30px;
    background-image: url('../design/footer-sprite.png');
}

.fxg-footer .fxg-dropdown_menu {
    border: 1px solid rgba(89, 89, 91, 0.5);
    background-color: #fff;
    position: absolute;
    width: 100%;
    display: none;
}

.fxg-footer .fxg-dropdown_menu.js--revealed {
    display: block;
}

.fxg-footer .fxg-dropdown_menu a {
    font-size: 12px;
    font-size: 1.2rem;
    color: #333;
    letter-spacing: 1px;
    padding: 15px;
    display: block;
}

.fxg-footer .fxg-dropdown_menu a:hover {
    text-decoration: none;
    background-color: #fafafa;
}

.fxg-social > * {
    display: inline-block;
    vertical-align: middle;
}

.fxg-social a {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 7px;
}


/*-- Footer2 --*/

.pane--footer2 {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 15px 0;
}

.copyright,
.module-q4-credits {
    font-size: 12px;
    font-size: 1.2rem;
}

.pane--footer2 .module-links {
    text-align: right;
}

.pane--footer2 .module-links li {
    display: inline-block;
    vertical-align: middle;
}

.pane--footer2 .module-links li ~ li:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 14px;
    background-color: #fff;
    margin: 0 13px;
}


/*-- Mobile Footer --*/

@media screen and (max-width: 767px) {
    .fxg-footer {
        border: none;
        margin-bottom: 10px;
        padding: 0;
    }

    .fxg-footer .fxg-title,
    .fxg-social .fxg-title {
        font-size: 12px;
        font-size: 1.2rem;
    }

    .fxg-footer .fxg-link {
        margin: 7px 0;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.56;
    }

    .fxg-footer > .grid > .grid_col.grid_col--1-of-6 {
        display: none;
    }

    .fxg-social .fxg-title {
        display: block;
        margin-bottom: 10px;
    }

    .fxg-social a {
        width: 45px;
        height: 45px;
        margin: 0 20px 10px 0;
    }

    .pane--footer2 {
        padding: 35px 0 15px 0;
    }

    .pane--footer2 .module {
        text-align: center;
        width: 100%;
    }

    .pane--footer2 .module-links {
        margin: 20px 0 10px 0;
    }

    .pane--footer2 .module-links li {
        margin-bottom: 10px;
    }
}


/*----- 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_not-found {
    margin-bottom: 15px;
}

.module_introduction {
    margin-bottom: 30px;
}

.nav_close {
    display: none;
}

.module-script {
    display: none;
}


/*-- Iframe --*/

.module_iframe,
.module-slideshow_ratio {
    padding-bottom: 56.25%;
    position: relative;
}

.module_iframe iframe,
.module-slideshow iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}


/*-- Errors / Message / Loader --*/

.module_error-container {
    margin-bottom: 20px;
    color: #333333;
}

.module_error-container {
    display: block;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
    font-size: 15px;
    font-size: 1.5rem;
}

.module_error-container > br {
    display: none;
}

.module_error-container > span {
    display: block;
    line-height: 1.5;
}

.module_error-container > span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #333333;
}

.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: #333333;
    font-size: 15px;
    font-size: 1.5rem;
}

.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_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}


/*-- Date / Time --*/

.module_date-time {
    margin-bottom: 15px;
}


/*-- 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: 15px;
    font-size: 1.5rem;
}

.module_label + .module_required,
.module_required-text {
    font-size: 15px;
    font-size: 1.5rem;
}


/*-- Module Links --*/

.module_link {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
    color: #333;
}

.module_link:hover {
    text-decoration: none;
    color: #007AB7;
}

.module_q4-icon-links .module_link {
    font-size: 20px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.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;
}


/*-- 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 #4d148c;
    color: #333333;
    font-weight: normal;
}

.module_nav-link.selected,
.module_nav-link.selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited,
.module_nav-link:visited.selected,
.module_nav-link:visited.selected:visited,
.module_nav .ModuleYearLink:visited.selected,
.module_nav .ModuleYearLink:visited.selected:visited {
    background-color: #4d148c;
    color: #fff;
}

@media only screen and (max-width: 480px) {

    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}


/*-- Selects --*/

.module_options-label,
.module_options-select {
    margin: 0 15px 10px 0;
}

.module_options-label {
    font-size: 15px;
    font-size: 1.5rem;
}

@media only screen and (max-width: 480px) {

    .module_options-label,
    .module_options-select,
    .module_options-submit {
        display: block;
        width: 100%;
    }
}


/*-- Pager --*/

.module_pager {
    text-align: center;
    color: #007AB7;
    margin-top: 45px;
}

.module_pager span {
    cursor: pointer;
}

.module_pager span:hover {
    text-decoration: underline;
}

.module_pager .pager-disabled,
.module_pager .pager-more.pager-prev {
    display: none;
}

.module_pager a {
    color: #333333;
}

.module_pager a[href] {
    color: #007AB7;
}


/*-- Reminder --*/

.module_reminder {
    margin-top: 25px;
}

.module_reminder .module_label {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}


/*-- RSS --*/

.module_rss {
    float: right;
}


/*----- Accessibility -----*/

*:focus {
    outline: none;
}

input:not([disabled]):focus,
select:not([disabled]):focus,
textarea:not([disabled]):focus,
button:not([disabled]):focus,
[href]:focus,
[tabindex]:not([tabindex="-1"]):focus,
[contentEditable=true]:focus,
.module_add-to-calendar-reveal:focus,
a:not([disabled]):focus,
input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
    outline: 2px dotted;
}

.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: #4d148c;
    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.3;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border: 1px solid #e8002e !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #e8002e !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: 15px;
    font-size: 1.5rem;
}

.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: 21.5px 15px;
    border: none;
    border-radius: 0;
    background-color: #F2F2F2;
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.25;
}

.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_title {
    position: relative;
}

.module_link.module-downloads_title-link {
    padding-right: 40px;
    display: block;
}

.module-downloads_title-link:before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}


/*----- Search Results -----*/

.module-search-results_result {
    max-width: 730px;
}

.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%;
}

.module-search-results .form_field {
    margin-bottom: 25px;
}

.module-search-results .form_field--date {
    position: relative;
}

.module-search-results .form_field--date:after {
    content: "\e912";
    position: absolute;
    top: 40px;
    right: 15px;
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    clear: both;
    display: table;
    font-size: 24px;
    font-size: 2.4rem;
}

.module-search-results .form_field--search {
    margin-bottom: 35px;
}

.module-search-results .form_label {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    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: calc(100% - 2px);
    border: none;
    padding: 21.5px 15px;
    background-color: #f2f2f2;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.module-search-results_link {
    text-shadow: 0 1px 0 #FFFFFF;
    margin-bottom: 5px;
    display: inline-block;
}

.module-search-results_item {
    padding: 12px 0;
    border-bottom: 1px solid #E3E3E3;
}

.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: 20px;
    font-size: 2rem;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 10px;
    font-weight: 400;
}

.module-search-results_summary span {
    color: #ff6200;
}

.module-search-results_pager {
    float: right;
}

.module-search-results .pager_list {
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.module-search-results .pager_list-item a {
    display: block;
    margin-bottom: 5px;
    border: 1px solid #e3e3e3;
    background: transparent;
    padding: 5px 10px;
    margin: 0 3px 5px 3px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    color: #333;
}

.module-search-results .pager_list-item a.active {
    background-color: #FF6200;
    color: #ffffff;
}

.module-search-results .pager_list-item a:hover {
    text-decoration: none;
}

.module-search-results .pager_list-item a:not(.active):hover {
    background-color: #fafafa;
}

.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;
    vertical-align: top;
}

.module-search-results .pager_list-item--previous > a:after {
    content: "\edc6";
}

.module-search-results .pager_text {
    display: none;
}

@media (max-width: 992px) and (min-width: 768px) {
    .form_field--date .form_input {
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    .module-search-results .form_field--date:after {
        font-size: 16px;
        font-size: 16px;
        top: 44px;
    }
}

@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: 13px;
    font-size: 1.3rem;
}

@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: #4d148c;
    color: #fff;
    font-size: 13px;
    font-size: 1.3rem;
}

.module-form--meeting_footer img {
    margin-right: 20px;
    vertical-align: bottom;
}

.module-form--meeting .module_introduction {
    font-size: 13px;
    font-size: 1.3rem;
    margin: 0;
}

.module-form--meeting .module-form_item--namehidden label {
    visibility: hidden;
}

@media 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: #333;
    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: 480px) {
    .module-form--meeting .module-form_item--current-shareholder legend {
        display: block;
        float: none;
    }
}

.module-form--meeting .module-form_item--current-shareholder ul {
    display: inline-block;
    padding-left: 20px;
}

@media only screen and (max-width: 480px) {
    .module-form--meeting .module-form_item--current-shareholder ul {
        display: block;
        padding-left: 0;
        padding-top: 10px;
    }
}

.module-form--meeting .module-form_item--current-shareholder ul li {
    padding-left: 20px;
    display: inline-block;
    vertical-align: top;
}

@media only screen and (max-width: 480px) {
    .module-form--meeting .module-form_item--current-shareholder ul li {
        padding-left: 0;
        padding-right: 20px;
    }
}

.module-form--meeting .module-form_itemCaptcha {
    position: relative;
    padding-left: 25px;
}

.module-form--meeting .module-form_itemCaptcha input[type="text"] {
    color: #333333;
}

.module-form--meeting .module_dropdown {
    color: #333333;
}

.module-form--meeting .module_dropdown.module_dropdown--placeholder {
    color: rgba(51, 51, 51, 0.5);
}

.module-form--meeting .module_input {
    color: #333333;
}

.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: #333;
    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: #333;
    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: #333333;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #4d148c;
}


/*----- 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: "Roboto", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0;
}

@media only screen and (max-width: 480px) {
    .module-job-details_description label:after {
        content: ":";
    }

    .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 5px;
    }
}

.module-job-details .grid_col {
    padding: 15px 20px;
}

.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}

.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-job-application_table tr:last-child {
    margin-bottom: 0;
}

.module-job-application_table tr.module-job-application_cover-letter-text,
.module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}

.module-job-application_table tr td {
    display: block;
    position: relative;
}

.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 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: 15px;
    font-size: 1.5rem;
}


/*----- Site Map -----*/

.nav--sitemap .level1 > li > a {
    font-weight: 700;
}

.nav--sitemap .level1 > li {
    margin-bottom: 20px;
}

.nav--sitemap .level2 > li {
    margin: 5px 0 10px 20px;
}

.nav--sitemap .level3 > li {
    margin-left: 20px;
}

.nav--sitemap .level2 > li > a {
    font-weight: 400;
}


/*----- 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: #333;
    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: #333;
    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: "Roboto", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    vertical-align: baseline;
}

body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
}

body.PreviewBody .PreviewToolBar label + input[type="radio"] {
    margin-left: 15px;
}

body.PreviewBody .PreviewToolBar input[type="text"] {
    min-width: 110px;
}

body.PreviewBody .PreviewToolBar select {
    padding: 15px 35px 15px 20px;
    background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #ff6200;
    color: #fff !important;
}

@media only screen and (max-width: 992px) {

    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 -----*/

/*-- Recent News --*/

.module-news-latest .module_container--content {
    padding-left: 240px;
    background: url('../images/latest-news.png') no-repeat center left transparent;
    background-size: 220px;
    min-height: 220px;
}

.module-news-latest .module_item {
    padding: 28px 0;
}

.module-news-latest .module_item ~ .module_item {
    border-top: 1px solid #E3E3E3;
}

.module-news-latest .module_headline {
    font-size: 20px;
    font-size: 2rem;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 120px);
}

.module-news-latest .module_view-all {
    display: inline-block;
    vertical-align: middle;
    width: 120px;
    text-align: center;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .module-news-latest .module_container--content {
        background-position: center top;
        padding: 220px 0 0 0;
    }
}


/*-- Latest Financial Results --*/

.module-financial-latest.grid_col {
    height: 100%;
    padding: 30px 50px 30px 60px;
}

.module-financial-latest .module_link {
    font-size: 18px;
    font-size: 1.8rem;
    display: inline-block;
    vertical-align: middle;
/*    margin-bottom: 5px;*/
}

.module-financial-latest .module_links-multiple .module_link:first-child,
.module-financial-latest .module_links-single .module_link {
    position: relative;
    padding-right: 40px;
    margin-right: 5px;
    width: calc(100% - 40px);
}

.module-financial-latest .module_links-single .module_link {
    width: 100%;
/*    margin-bottom: 10px;*/
}

.module-financial-latest .module_links-multiple .module_link:first-child:before,
.module-financial-latest .module_links-single .module_link:before {
    position: absolute;
    right: 0;
    top: -3px;
}

@media only screen and (max-width: 767px) {
    .module-financial-latest.grid_col {
        padding: 15px;
    }

    .module-financial-latest-cover {
        height: 200px;
        background-position: center top;
    }
}


/*-- Featured reports --*/

.module-featured-reports_thumb {
    max-width: 187px;
    text-align: center;
    margin: 0 auto;
}

.module-featured-reports .grid_col ~ .grid_col .module-featured-reports_thumb img {
    margin: 0 auto;
    vertical-align: top;
    border: 1px solid #f1f1f1;
}


/*-- Why Invest --*/

.module-why-invest_cover {
    margin: 15px 0;
}

.module-why-invest_cover img {
    vertical-align: top;
}

.module_iframe--why-invest {
    padding-bottom: 56.8%;
}


/*----- Company Overview -----*/

@media screen and (min-width:768px) {
    .module_company-chart-mobile {
        display: none;
    }
}

@media screen and (max-width:767px) {
    .module_company-chart-desktop {
        display: none;
    }
}

/*-- Business segments and services --*/

.module-segments .module_container--inner {
    padding-top: 80px;
}

.module-segments_tree_corp {
    position: relative;
    top: -15px;
}

.module-segments_tree_corp a {
    display: inline-block;
}

.module-segments_tree ul {
    position: relative;
}

.module-segments_tree ul:before {
    content: '';
    display: block;
    width: 90px;
    height: 1px;
    background-color: #E3E3E3;
    position: absolute;
    top: 50%;
    left: -90px;
}

.module-segments_tree nav > ul:before {
    top: 46%;
}

.module-segments_tree li ul:before {
    margin-top: -14px;
}

.module-segments_tree li {
    position: relative;
    padding: 15px 0;
}

.module-segments_tree li:before {
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: #E3E3E3;
    position: absolute;
}

.module-segments_tree li:first-child:before {
    top: 50%;
    margin-top: -14px;
}

.module-segments_tree li:last-child:before {
    bottom: 50%;
    margin-bottom: 14px;
}

.module-segments_tree li:after {
    content: '';
    display: block;
    top: 50%;
    left: 0;
    width: 90px;
    height: 1px;
    background-color: #E3E3E3;
    position: absolute;
    margin-top: -14px;
}

.module-segments_tree li.module-segments_tree_office:after {
    margin-top: 0;
}

.module-segments_tree a {
    display: block;
}

.module-segments_tree a:hover {
    opacity: .7;
}

.module-segments_tree img {
    vertical-align: top;
}

.module-segments_tree li .grid_col {
    position: relative;
}

.module-segments_tree li ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.module-segments_legend {
    border-bottom: 1px solid #E3E3E3;
    margin: 20px 0 40px 0;
    padding-bottom: 50px;
}

.module-segments_tree_logistics li {
    padding-left: 100px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-segments_tree .module-segments_tree_logistics ul:before {
    margin-top: -10px;
}

.module-segments_tree .module-segments_tree_logistics li:before,
.module-segments_tree .module-segments_tree_logistics li:after {
    margin: 0;
}

@media screen and (max-width: 992px) {
    .module-segments_tree li:after {
        width: 40px;
    }

    .module-segments_tree ul:before {
        width: 50px;
        left: -50px;
    }

    .module-segments_tree_logistics li {
        padding-left: 60px;
    }
}

@media screen and (max-width: 670px) {
    .module-segments_tree li:after {
        width: 20px;
    }

    .module-segments_tree ul:before {
        width: 15px;
        left: -15px;
    }

    .module-segments_tree_logistics li {
        padding-left: 30px;
        font-size: 11px;
        font-size: 1.1rem;
    }

    .module-segments .module_container--inner > .grid:first-child img {
        width: 90px;
        margin-left: 0 !important;
    }
}

@media screen and (max-width: 479px) {
    .module-segments .module_container--inner > .grid:first-child img {
        width: 60px;
    }
}


/*-- Timeline --*/

.module-timeline .module_container--inner {
    position: relative;
}

.module-timeline .module_options_category {
    margin-bottom: 25px;
    width: 240px;
}

.module-timeline .module_container--content {
    border: 1px solid #F2F2F2;
}

.module-timeline .module_options_year {
    position: absolute;
    top: 0;
    left: 255px;
}

.module-timeline_items {
    min-height: 420px;
}

.module-timeline .slick-slider {
    padding: 0 40px;
}

.module-timeline .slick-disabled {
    display: none !important;
}

.module-timeline .slick-arrow:before {
    font-size: 30px;
    font-size: 3rem;
    color: #9d9fa2;
}

.module-timeline .slick-prev {
    left: 10px;
}

.module-timeline .slick-next {
    right: 10px;
}

.module-timeline_items > p {
    margin: 20px;
}

.module-timeline_item.js--hiddenn {
    height: 0px;
    overflow-y: hidden;
}

.module-timeline_items .slick-slide {
    padding-top: 25px;
    padding-bottom: 25px;
}

.module-timeline_description {
    margin-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.module-timeline_image {
    text-align: center;
}

.module-timeline_image img {
    max-height: 350px;
    margin: 0 auto;
}

.module-timeline .module-timeline_nav {
    background-color: #f2f2f2;
    font-size: 15px;
    font-size: 1.5rem;
    padding-top: 22px;
    padding-bottom: 18px;
}

.module-timeline_nav .slick-arrow:before {
    content: '...';
}

.module-timeline_nav:empty {
    display: none;
}

.module-timeline_nav span {
    margin: 0 25px;
    cursor: pointer;
}

.module-timeline_nav .slick-current {
    font-weight: 400;
}

@media only screen and (max-width: 480px) {
    .module-timeline .module_options_category {
        width: auto;
    }

    .module-timeline .module_container--content {
        margin-top: 85px;
    }

    .module-timeline .module_options_year {
        left: 0;
        right: 0;
        top: 70px;
    }
}


/*----- News & Events -----*/

/*-- News --*/

.module-news .dropdown {
    margin: 0;
}

.module-news .module_item {
    margin-top: 45px;
}

.module-news .module_headline {
    font-size: 25px;
    font-size: 2.5rem;
}

.module-news .module_headline-link br,
.module-news-latest .module_headline-link br {
    display: none;
}

.module-news .module_date-time {
    margin: 5px 0 10px 0;
}

.module-news .module_body {
    font-size: 0;
    margin: 10px 0 15px 0;
    text-align: justify;
}

.module-news .module_body > *,
.module-news .module_body > .short a.ccbnEarningsLnk,
.module-news .module_body > .short a.ccbnEarningsLnk + br,
.module-news .module_body > .short br + br,
.module-news .module_body > .short > .hidden-description,
.module-news .module_body > .short > .hidden-description + br,
.module-news .module_body > .short > .hidden-details {
    display: none;
}

.module-news .module_body > .short {
    display: block;
    font-size: 18px;
}

.module-news .module_body > .short p {
    margin: 10px 0 0 0 !important;
}

.module-news .module_body > .short p:first-child {
    margin-top: 0 !important;
}

.module-news .module_body .short > p > em {
    font-weight: 400;
}

.module-news .module_body strong em,
.module-news .module_body .short > p > em {
    font-style: normal;
}

.module-news .module_body > .short span[style*='font-weight: 400'] {
    font-weight: 300 !important;
}

.module-news .module_nav {
    display: none;
}

.module-news-details .module_container--inner {
    margin-bottom: 20px;
}

.module-news-details_category {
    display: none;
}

.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: ")";
}

.module-news-details .module_body a {
    word-break: break-word;
    color: #333;
    text-decoration: underline;
}

.module-news-details .module_body u a {
    color: #333333;
}

.module-news-details .module_body u a:hover,
.module-news-details .module_body a:hover {
    color: #007AB7;
}

@media only screen and (max-width: 992px) {
    .module-news-details .module_multimedia-item {
        margin-bottom: 30px;
    }
}


/*-- Presentations --*/

.module-slideshow .grid_col:first-child {
    padding: 45px 60px;
}

.module-slideshow_title {
    font-size: 25px;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.module-slideshow .module_link {
    margin-bottom: 0;
}

.module-why-invest .module-slideshow_title {
    margin-bottom: 10px;
}

.module-why-invest .module-slideshow_title:first-letter {
    text-transform: capitalize;
}

.module-why-invest .module-slideshow_title span {
    display: none;
}

.module-presentation .module_body {
    display: none;
}


/*-- Events --*/

.module-event .module_location,
.module-event .module_speakers h4,
.module-event-details .module_speakers h4,
.module-event .module_body,
.module-event-upcoming .module_nav {
    display: none;
}

@media only screen and (max-width: 767px) {
    .module-event-details .module_reminder .grid_col {
        margin-bottom: 20px;
    }
}

.module-event-details .module_add-to-calendar {
    margin-bottom: 10px;
}


/*- Add to Calendar -*/

.module_add-to-calendar-reveal {
    cursor: pointer;
    color: #007AB7;
}

.module_add-to-calendar .module_view-all-link {
    color: #007AB7;
}

.module_add-to-calendar .module_view-all-link:hover {
    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;
}


/*- Upcoming Events -*/

.module-event-upcoming .module_day {
    color: #4D148C;
    position: relative;
    display: inline-block;
    width: 112px;
    height: 112px;
    line-height: 155px;
    font-size: 44px;
    font-size: 4.4rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    top: -10px;
    margin-bottom: 20px;
}

.module-event-upcoming .module_day:after {
    content: "\e912";
    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;
    font-size: 112px;
    font-size: 11.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 112px;
}

.module-event-upcoming .module_item {
    margin-bottom: 20px;
}


/*- Events Calendar -*/

.module-event-calendar {
    display: table;
    width: 100%;
}

.module-event-calendar_calendar-container,
.module-event-calendar_event-container {
    display: table-cell;
    width: 50%;
    text-align: center;
    vertical-align: middle;
}

.module-event-calendar_calendar-container {
    padding-right: 20px;
}

.module-event-calendar_event-container {
    padding: 50px;
    background-color: #f6f6f6;
}

.module-event-calendar_splash i {
    font-size: 40px;
    font-size: 4rem;
    color: #4d148c;
}

.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: #4d148c;
    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: #f6f6f6;
}

.module-event-calendar_day--event {
    cursor: pointer;
}

.module-event-calendar_day--event:after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    height: 4px;
    background-color: #4d148c;
}

.module-event-calendar_day--selected {
    background-color: #4d148c;
    color: #fff;
}

.module-event-calendar_day--selected:after {
    background-color: #fff;
}

.module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.1);
    pointer-events: none;
}

.module-event-calendar_day--adjacent-month:after {
    content: none;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}

.module-event-calendar .module_item {
    padding: 0;
}

.module-event-calendar .module_date-time,
.module-event-calendar .module_headline {
    margin-bottom: 20px;
}

.module-event-calendar .module_add-to-calendar {
    margin: 0;
}

@media only screen and (max-width: 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;
    }
}


/*----- Financial Information -----*/

/*-- Quarterly / Annual --*/

.module-financial .module_item {
    border-bottom: 1px solid #E3E3E3;
}

.module-financial .module_item:first-child {
    border-top: 1px solid #E3E3E3;
}

.module-financial_year {
    font-size: 25px;
    font-size: 2.5rem;
    padding: 22px 60px 22px 20px;
    cursor: pointer;
    position: relative;
}

.module-financial .module_item.js--active .module-financial_year {
    border-bottom: 1px solid #E3E3E3;
}

.module-financial_year:after,
.module-financial_quarter-title:after {
    content: "\edc2";
    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;
    font-size: 20px;
    font-size: 2rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.module-financial .module_item.js--active .module-financial_year:after,
.module-financial-quarter .module-financial_quarter.js--active .module-financial_quarter-title:after {
    content: "\edba";
}


/*- Quarterly Results -*/

.module-financial_quarter ~ .module-financial_quarter {
    border-top: 1px solid #E3E3E3;
}

.module-financial_quarter-title {
    background-color: #FAFAFA;
    font-size: 20px;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px 50px 15px 20px;
    position: relative;
}

.module-financial_quarter.js--active .module-financial_quarter-title {
    border-bottom: 1px solid #E3E3E3;
}

.module-financial-quarter .module_date-time {
    margin-bottom: 0;
}

.module-financial-quarter .module_links {
    padding: 10px;
}

.module-financial-quarter .module_links > div {
    padding: 10px;
}

.module-financial-quarter .module_links > div:nth-child(even) {
    background-color: #fafafa;
}

.module-financial-quarter .module_link {
    padding-right: 40px;
    display: block;
    height: 30px;
    margin-bottom: 0px;
}

.module-financial-quarter .module_links-multiple .module_link {
    display: inline-block;
    width: 70px;
}

.module-financial-quarter .module_links-multiple .module_link:first-child {
    width: calc(100% - 70px);
}

.module-financial-quarter .module_link:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 35px;
    padding: 0;
}

.module-financial-quarter .module_link-acronym {
    width: 35px;
    font-size: 12px;
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.module-financial-quarter .module_links-multiple a ~ a:focus {
    outline: none !important;
}


/*- Annual Reports -*/

.module-financial-year .module_item-wrap {
    padding: 6% 8% calc(6% - 20px) 8%;
}

.module-financial_cover {
    padding-right: 25px;
}

.module-financial_cover img {
    vertical-align: top;
    width: 190px;
    border: 1px solid #e3e3e3;
}


/*-- SEC Filings --*/

.module-sec .module_header {
    display: block;
    border-bottom: 1px solid #E3E3E3;
}

.module-sec .module_header-text {
    padding: 12px 0;
    font-weight: 400;
}

.module-sec .module_item {
    border-bottom: 1px solid #E3E3E3;
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 12px 0;
    margin-top: 0;
    margin-bottom: 0;
}

.module-sec_download-list-item,
.module-sec-details_download-list-item {
    display: inline-block;
}

.module-sec_download-list .module_link,
.module-sec-details_download-list .module_link {
    margin: 0;
}

.module-sec-details_date,
.module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec .module_container--content > p {
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .module-sec .module_header {
        display: none;
    }

    .module-sec .module_item {
        padding: 15px 0;
    }

    .module-sec .module_item .grid_col {
        padding: 5px 0;
        text-align: left;
    }
}


/*-- Statistical books --*/

.module-statistical-books img {
    border: 1px solid #979797;
    vertical-align: top;
    width: 185px;
}


/*----- Stock Information -----*/

/*-- Stock Quote --*/

.module-stock_up {
    color: #23a217;
}

.module-stock_down {
    color: #e8002e;
}

.module-stock_price .module-stock_value:before,
.module-stock_high .module-stock_value:before,
.module-stock_low .module-stock_value:before,
.module-stock_open .module-stock_value:before,
.module-stock_close .module-stock_value:before,
.module-stock_week-low .module-stock_value:before,
.module-stock_week-high .module-stock_value:before,
.module-stock_previous-close .module-stock_value:before {
    content: "$";
    margin-right: 5px;
}

.module-stock .module_options {
    margin-bottom: 10px;
}

.module-stock .module_options select {
    margin-right: 2px;
}

.module-stock-quote .module_container--content .grid:first-child,
.module-stock-historical .grid {
    border-top: 1px solid #E3E3E3;
    margin-bottom: 10px;
}

.module-stock-quote .module_container--content .grid:first-child .grid_col,
.module-stock-historical .grid_col {
    border-bottom: 1px solid #E3E3E3;
    padding-top: 15px;
    padding-bottom: 15px;
}

.module-stock_label {
    font-weight: 400;
}

.module-stock-historical .grid > p {
    margin-top: 20px;
}

.module-stock-historical button {
    vertical-align: top;
    opacity: 1;
    pointer-events: unset;
    transition: .16s;
}

@media screen and (min-width: 768px) {
    .module-stock-quote .module-stock_date {
        text-align: right;
    }
}


/*-- 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: #4d148c;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #4d148c;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #4d148c;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke-width: 2px;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(77, 20, 140, 0.3);
}

.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f2f2f2;
    cursor: ew-resize;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: #4d148c;
}

.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: #4d148c;
    stroke: #4d148c;
}

.module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
}

.module-stock-chart .highcharts-button rect,
.module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
}

.module-stock-chart .highcharts-button text,
.module-stock-chart .highcharts-input-group text {
    fill: #333333;
}

.module-stock-chart .highcharts-container > svg > .highcharts-button {
    display: none;
}

.module-stock-chart .highcharts-tracker rect {
    fill: #8E8E8E;
}

.module-stock-chart .highcharts-series-3 path {
    stroke: #4d148c;
}


/*-- Stock splits --*/

@media only screen and (min-width: 768px) {

    .module-stock-repurchase-programs th:first-child,
    .module-stock-repurchase-programs td:first-child {
        text-align: left;
        padding-left: 20%;
    }
}


/*-- Dividends --*/

.module-dividends text {
    color: #333 !important;
    fill: #333 !important;
}

.module-dividends .highcharts-series-group rect {
    fill: #e3e3e3;
}

.module-dividends .highcharts-legend .highcharts-point {
    fill: #8E8E8E;
}

.module-dividends th,
.module-dividends td {
    padding-right: 10px;
    padding-left: 10px;
}

.module-dividends th {
    background-color: #fafafa;
    border-bottom: none;
}

@media only screen and (max-width: 767px) {
    .module-dividends table {
        text-align: left;
    }

    .module-dividends tr:last-child td:before {
        display: none;
    }

    .module-dividends tr:last-child td {
        width: auto;
        display: inline-block;
        vertical-align: top;
        border: none;
        padding: 12px 5px 12px 0;
    }
}


/*----- ESG -----*/

.module-esg p img {
    vertical-align: top;
}

.Sectiongovernance-and-citizenship .ContentPaneDiv > span:first-child .module--no-padding,
.Sectiongovernance-guidelines .ContentPaneDiv > span:first-child .module--no-padding {
    padding-bottom: 20px;
}


/*-- Stock transactions --*/

.insider-ownership h3 span {
    font-size: 18px;
    font-size: 1.8rem;
}

.insider-ownership_pager {
    margin: 20px 0;
}

.insider-ownership_pager button {
    margin-bottom: 5px;
    border: 1px solid #e3e3e3;
    background: transparent;
    padding: 5px 10px;
    margin: 0 3px 5px 3px;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
}

.insider-ownership_pager button:hover {
    background-color: #fafafa;
}

.insider-ownership_pager button.disabled {
    opacity: 0.3;
}

.insider-ownership_pager button.btn-primary {
    background-color: #FF6200;
    color: #ffffff;
}

.insider-ownership_pager .pagination_page {
    display: none;
}

.insider-ownership_pager .pagination_prev,
.insider-ownership_pager .pagination_next {
    display: inline-block;
}

.insider-ownership_pager > li > a,
.insider-ownership_pager > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.428571429;
    margin-left: -1px
}

.insider-ownership_pager > li:first-child > a,
.insider-ownership_pager > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.insider-ownership_pager > li:last-child > a,
.insider-ownership_pager > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.insider-ownership_table {
    font-size: 15px;
    font-size: 1.5rem;
}

.insider-ownership_table--details tr:not(:last-child) td {
    border: none;
}

.insider-ownership tr.footable-detail-row table {
    margin: 0;
    background-color: #fafafa;
}

.insider-ownership_table--details .footable-details {
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

.insider-ownership tr.footable-detail-row > td {
    padding: 0;
}

.insider-ownership tr.footable-detail-row table.footable-details th,
.insider-ownership tr.footable-detail-row table.footable-details td {
    text-align: left;
    display: inline-block !important;
    border: none;
    padding: 5px;
    width: auto;
}

.insider-ownership tr.footable-detail-row table.footable-details th:after {
    content: ':';
}

.insider-ownership .footable-toggle {
    font-family: 'q4-icons' !important;
    cursor: pointer;
    margin-right: 10px;
}

.insider-ownership table.insider-ownership_table .hidden-medium td {
    padding-top: 0;
}

.fooicon-plus:before {
    content: '\ed5d';
}

.fooicon-minus:before {
    content: "\ed5e";
}

.insider-ownership_table--activity td:first-child {
    text-transform: lowercase;
}

.insider-ownership_table--activity td:first-letter {
    text-transform: capitalize;
}

.insider-ownership_details td:last-child {
    text-transform: lowercase;
}

.insider-ownership_details td:first-letter {
    text-transform: capitalize;
}

.insider-ownership_table--activity tr:nth-child(3) td:first-child {
    font-size: 0;
}

.insider-ownership_table--activity tr:nth-child(3) td:first-child:before {
    content: 'Open market sales';
    font-size: 15px;
    font-size: 1.5rem;
}

@media screen and (min-width:993px) {
    .insider-ownership table.insider-ownership_table tr.tableNoBorder td {
        border: none;
        padding-bottom: 0;
    }

    .insider-ownership_table--details tr:not(:last-child) td {
        padding: 5px 0;
    }
}

@media screen and (max-width: 992px) {
    .insider-ownership .hidden-medium {
        display: none !important;
    }
}


/*-- Team --*/

.module-person-custom .module-person_photo-container {
    width: 140px;
    display: inline-block;
}

.module-person-custom .module-person_name-container {
    width: calc(100% - 140px);
    display: inline-block;
}

.module-person-custom .module-person_name-container a {
    display: inline-block;
}

.module-person_name {
    font-size: 20px;
    font-size: 2rem;
}


/*-- Board of Directors --*/

.module-person-accordion .module_container--inner {
    border-top: 1px solid #e3e3e3;
}

.module-person-accordion .module_item {
    border-bottom: 1px solid #E3E3E3;
}

.module-person-accordion .module-person_photo-container {
    width: 80px;
    margin-right: 30px;
    display: inline-block;
}

.module-person-accordion .module-person_photo-container img {
    vertical-align: top;
}

.module-person-accordion .module-person_photo-container + div {
    width: calc(100% - 115px);
    display: inline-block;
}

.module-person-accordion .module-person_name-container {
    position: relative;
    padding: 15px 70px 15px 30px;
    cursor: pointer;
}

.module-person-accordion .module-person_name-container:after {
    content: "\e91a";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 9px;
    font-size: 0.9rem;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -5px;
}

.module-person-accordion .module_item.js--active .module-person_name-container:after {
    transform: rotate(180deg);
}

.module-person-accordion .module-person_description-container {
    padding: 20px 10% 1px 145px;
    border-top: 1px solid #e3e3e3;
}

@media only screen and (max-width: 767px) {
    .module-person-accordion .module-person_photo-container {
        margin-right: 15px;
    }

    .module-person-accordion .module-person_photo-container + div {
        width: calc(100% - 100px);
    }

    .module-person-accordion .module-person_name-container {
        padding-left: 15px;
        padding-right: 45px;
    }

    .module-person-accordion .module-person_name-container:after {
        right: 15px;
    }

    .module-person-accordion .module-person_description-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/*-- Committee Composition --*/

.module-committee .module_header {
    display: block;
    border-bottom: 1px solid #E3E3E3;
}

.module-committee .module_header-text {
    line-height: 1.2;
}

.module-committee .module_item {
    border-bottom: 1px solid #E3E3E3;
}

.module-committee .grid_col {
    padding: 12px 5px;
    text-align: center;
}

.module-committee .grid_col:first-child {
    text-align: left;
    width: 39%;
}

.module-committee .grid_col:nth-child(2) {
    width: 11%;
}

.module-committee .grid_col:nth-child(3) {
    width: 16%;
}

.module-committee .grid_col:nth-child(4) {
    width: 18%;
}

.module-committee .grid_col:nth-child(5) {
    width: 18%;
}

i.q4-icon_member,
i.q4-icon_chair {
    font-size: 27px;
    font-size: 2.7rem;
    line-height: 1;
}

.module-committee_name {
    cursor: pointer;
}

.module-committee_name {
    font-weight: 300;
    margin: 0;
    position: relative;
    padding-left: 75px;
}

.module-committee_name:before {
    content: "\e91a";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: 10px;
}

.module-committee .module_item.js--active .module-committee_name:before {
    transform: rotate(180deg);
}

.module-committee_name span {
    display: block;
}

.module-committee_category {
    display: none;
}

.module-committee_bio {
    padding: 20px 80px 1px 80px;
    border-top: 1px solid #e3e3e3;
}

.module-committee_legend {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.module-committee .module-committee_legend {
    position: relative;
    top: 5px;
}

.module-committee_legend * {
    display: inline-block;
    vertical-align: middle;
}

.module-committee_legend i {
    margin-right: 5px;
}

@media only screen and (max-width: 767px) {
    .module-committee .module_header {
        display: none;
    }

    .module-committee .module_item {
        padding-top: 10px;
    }

    .module.module-committee .grid_col {
        display: block;
        width: 100%;
        padding: 2px 0;
        text-align: left;
    }

    .module.module-committee .grid_col:not(:first-child) {
        padding-left: 45px;
    }

    .module-committee_name {
        padding-left: 45px;
    }

    .module-committee_category {
        display: inline-block;
        position: relative;
        top: -5px;
        margin-left: 10px;
        width: calc(100% - 40px);
        vertical-align: middle;
    }

    .module-committee_bio {
        padding-left: 45px;
        padding-right: 45px;
    }
}


/*-- Committee subpages --*/

.module_committee .left {
    margin-top: 5px;
}

.module_committee .module-committee_legend {
    margin: 0 0 0 20px;
}

.module_committee .grid--no-gutter {
    padding: 20px 40px 0 40px;
    border-top: 1px solid #e3e3e3;
    margin-top: 10px;
}

.module_committee .grid--no-gutter li {
    margin-bottom: 5px;
}

.module_committee .grid--no-gutter li span:not(.module_link-text) {
    font-size: 20px;
    font-size: 2rem;
}

.module_committee .grid--no-gutter li i {
    vertical-align: middle;
    margin-right: 5px;
}

.module_links--committee .module_link {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 20px 0;
}

.module_links--committee .module_link-text {
    display: block;
    margin-top: 5px;
}

.module_links--committee .module_link-text span {
    font-size: 15px !important;
    font-size: 1.5rem !important;
    display: block;
}

@media only screen and (max-width: 480px) {
    .module_committee .module-committee_legend {
        display: block;
        margin-bottom: 5px;
    }
}


/*----- Shareowner Services --*/

/*-- FAQs --*/

.module-faq .toggle-all a:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}

.module-faq .module_item {
    border-bottom: 1px solid #E3E3E3;
}

.module-faq .module_item:first-child {
    border-top: 1px solid #E3E3E3;
}

.module-faq_question {
    cursor: pointer;
    font-weight: 300;
    margin: 0;
    padding: 26px 80px 26px 30px;
    position: relative;
}

.module-faq_question:after {
    content: "\e91a";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 9px;
    font-size: 0.9rem;
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -4px;
}

.module-faq .module_item.js--active .module-faq_question:after {
    transform: rotate(-180deg);
}

.module-faq_answer {
    background-color: #FAFAFA;
    padding: 25px 110px 10px 30px;
    border-top: 1px solid #E3E3E3;
    font-size: 15px;
    font-size: 1.5rem;
}


/*----- Email Alerts -----*/

.module-subscribe_email label,
.module-subscribe_email .module_required,
.module-subscribe .CaptchaContainer,
.module-subscribe--home .module_introduction,
.module-subscribe--home .module_error-container p {
    display: none;
}

.module-subscribe_table,
.module-subscribe_table table,
.module-subscribe_table tbody,
.module-subscribe_table tr,
.module-subscribe_table td {
    display: block;
    width: 100%;
}

.module-subscribe .module_required {
    font-size: 15px;
    font-size: 1.5rem;
    display: none;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding: 20px 0 10px 0;
    font-size: 15px;
    font-size: 1.5rem;
}

.module-subscribe_list tr {
    float: left;
    width: 33.33333%;
}

.module-subscribe .module_input[type="email"],
.module-unsubscribe .module_input[type="email"] {
    width: calc(100% - 280px);
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 5px;
}

.module-subscribe .module_actions,
.module-unsubscribe .module_actions {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
}

.module-subscribe .module_actions .button,
.module-unsubscribe .module_actions .button {
    width: 100%;
}

.module-subscribe_unsubscribe {
    clear: both;
    padding-top: 5px;
}

.PageShareownerservicesEmailalerts .module-subscribe_unsubscribe {
    display: none;
}

.module-subscribe_info {
    clear: both;
}

.module-subscribe--home .module-subscribe_info {
    display: none;
}

.module-unsubscribe_email,
.module-unsubscribe_email + .module_required {
    display: none;
}

@media only screen and (max-width: 1023px) {
    .module-subscribe_list tr {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }

    .module-subscribe .module_input[type="email"],
    .module-unsubscribe .module_input[type="email"] {
        width: 100%;
    }

    .module-subscribe .module_actions,
    .module-unsubscribe .module_actions {
        width: auto;
        position: static;
        clear: both;
        margin: 10px 0;
    }

    .module-subscribe .module_actions .button,
    .module-unsubscribe .module_actions .button {
        width: auto;
    }

    .module-subscribe_list {
        max-width: 100%;
    }

    .module-subscribe_list tr {
        width: 100%;
    }
}


/*----- Information Request / Formbuilder -----*/

.module-form .module_container--outer {
    max-width: 620px;
}

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 10px;
    color: #007AB7;
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer tr {
    width: calc(100% - 220px);
    float: left;
}

.module-form .CaptchaContainer tr:nth-child(2) {
    width: 220px;
}

.module-form .CaptchaContainer tr:nth-child(2) td {
    padding-top: 20px;
}

.module-form .CaptchaContainer tr:nth-child(4) {
    float: none;
    margin-left: auto;
    display: block;
}

.module-form .module_container--captcha {
    margin-top: 40px;
}

.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;
    text-transform: lowercase;
}

.module-form .module_container--captcha > div .ErrorMessage:first-letter {
    text-transform: capitalize;
}

.module-form .module_container--captcha > div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form .CaptchaContainer table tr td {
    padding: 0;
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
    padding-top: 16.5px;
    padding-bottom: 16.5px;
}

.module-form_item {
    margin-bottom: 2px;
    position: relative;
}

.module-form_info {
    margin: 30px 0 10px 0;
}

.module-form_info span {
    margin-left: 10px;
}

.module-form .module-form_item > label {
    position: absolute;
    left: 15px;
    top: 21px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: normal;
    font-size: 14px;
    font-size: 1.4rem;
    transition: .2s ease all;
}

.module-form .module-form_item--if-you-would-like-to-receive-a-response-from-us-please-provide-your-email-address-optional > label {
    top: 14px;
}

.module-form .module-form_item--investor-type > label,
.module-form .module-form_item--country > label,
.module-form_item--documents legend,
.module-form_item--shipping-method > label,
.module-form_item--page-where-problem-appeared > label,
.module-form_item--browser-you-are-using > label {
    display: none;
}

.module-form_item--documents {
    margin-bottom: 20px;
}

.module.module-form .module_input {
    font-weight: 700;
    padding-top: 30px;
    padding-bottom: 13px;
}

.module-form .module_input:focus + label,
.module-form .module_input + label.js--freeze {
    top: 8px;
    font-size: 10px;
    font-size: 1rem;
}

.module-form .module_dropdown {
    background-color: #f2f2f2;
}

.module-form .module_actions {
    text-align: center;
    margin-top: 10px;
}

.module-form_error-text {
    color: #333333;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.MessageSent {
    text-align: center;
}

@media screen and (min-width: 768px) {

    .module-form_item--state,
    .module-form_item--postal-code {
        display: inline-block;
        vertical-align: top;
        width: calc(50% - 1px);
    }

    .module-form_item--postal-code {
        margin-left: 2px;
    }

    .module-form_item--documents li {
        display: inline-block;
        vertical-align: top;
        width: 33%;
        padding-right: 20px;
    }

    .module-form_item--documents li:first-child {
        display: block;
        width: 100%;
    }
}

.module-form--info-request .module-form .module_required {
    display: none;
}

.module-form--info-request .module-form_item--investor-type,
.module-form--info-request .module-form_item--country {
    margin-bottom: 40px;
}

.module-form--info-request .module-form_item--questionscomments-optional {
    margin: 40px 0;
}


/*----- Investor Kit -----*/

.module-investor-kit li {
    padding: 10px 0;
}

.module-investor-kit li:first-child {
    font-weight: 400;
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    padding: 16px 0;
    margin-bottom: 10px;
}

.module-investor-kit .module_link {
    margin: 0;
    text-align: left;
}

.module-investor-kit .module_link span {
    vertical-align: baseline;
    display: inline-block;
}

.module-investor-kit .module_link-text {
    width: 400px;
    padding: 0 15px;
}

.module-investor-kit .module_file-text {
    width: 100px;
}

@media screen and (max-width: 640px) {
    .module-investor-kit .module_link-text {
        width: 220px;
    }
}

/*# sourceMappingURL=global.css.map */

/*  Chairman's-Letter */

.chairman-purple {
    color: #4D148C;
}

.chairman-orange {
    color: #ff6502;
}

.chairmans-letter h2 {
    color: #4D148C;
}

.chairmans-letter .pane--content li {
    position: relative;
    margin: 0 0 10px 0;
    padding-left: 20px;
}

.chairmans-letter .pane--content li:before {
    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;
    content: '\edc8';
    position: absolute;
    font-size: 1em;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.module-earnings-event .module_item,
.module-earnings-event-lower .module_item {
    display: flex;
    justify-content: space-between;
    background-color: #4d148c;
    color: #FFF;
    padding: 10px;
    align-items: center;
    height: 55px;
}

.module-earnings-event .module_left-content:before,
.module-earnings-event-lower .module_left-content:before {
    float: left;
    width: 24px;
    width: 2.5rem;
    height: 2.7rem;
    text-align: center;
    content: "!";
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    background: #FFF;
    border-radius: 40px;
    padding: 3px;
    padding: 0.3rem;
    color: #4d148c;
    margin: 0 8px 0 0;
    margin: 0 0.8rem 0 0;
}

.module-earnings-event .module_headline,
.module-earnings-event-lower .module_headline {
    display: inline-block;
}

.module-earnings-event .module_headline-link,
.module-earnings-event-lower .module_headline-link {
    font-size: 20px;
    font-weight: 700;
}

.module-earnings-event .module_headline-link:hover,
.module-earnings-event .module_webcast-link:hover,
.module-earnings-event-lower .module_headline-link:hover,
.module-earnings-event-lower .module_webcast-link:hover {
    color: #ccc;
    text-decoration: none;
}

.module-earnings-event .module_webcast-link,
.module-earnings-event-lower .module_webcast-link {
    font-size: 14px;
    font-weight: 700;
}

.module-earnings-event .module_headline-link,
.module-earnings-event .module_webcast-link,
.module-earnings-event-lower .module_headline-link,
.module-earnings-event-lower .module_webcast-link {
    color: #FFF;
}

.module-earnings-event .module_date-time,
.module-earnings-event-lower .module_date-time {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 400;
}

.module-earnings-event .module_webcast-link:after,
.module-earnings-event-lower .module_webcast-link:after {
    font-size: 20px;
    font-size: 2rem;
    content: "\25B8";
    position: relative;
    top: 1px;
    left: 2px;
    top: 0.1rem;
    left: 0.2rem;
}

/*  00114443  */

.module-financial-latest .lowercase.tenq,
.module-financial-latest .lowercase.tenk {
    text-transform: none;
}

.module-investor-kit {
    position: relative;
}
.module-investor-kit .module_link:before {
    position: relative;
    left: 90%;
}

/* .module_q4-icon-links .module_link[href$=".zip"]:before,
.module_q4-icon-links .module_link[href$=".ZIP"]:before {
    background: url("../design/svg/Icon_Zip.svg") no-repeat;
    display: block;
    background-position: 0 -39px;
} */

.module-earnings-event-lower {
    margin-top: -50px !important;
}

/* 00215134 */
.PageHome .module-featured-reports .module_container--outer {
    max-width: 1164px;
    width: 100%;
}
/* 00215134 */