/*===================FONTS====================*/

@font-face {
    font-family: "TeleGroteskNext-Bold";
    src: url("../fonts/TeleGroteskNext-Bold.woff") format("woff"), url("../fonts/TeleGroteskNext-Bold.ttf") format("truetype")
}

@font-face {
    font-family: "TeleGroteskNext-BoldItalic";
    src: url("../fonts/TeleGroteskNext-BoldItalic.woff") format("woff"), url("../fonts/TeleGroteskNext-BoldItalic.ttf") format("truetype")
}

@font-face {
    font-family: "TeleGroteskNext-Medium";
    src: url("../fonts/TeleGroteskNext-Medium.woff") format("woff"), url("../fonts/TeleGroteskNext-Medium.ttf") format("truetype")
}

@font-face {
    font-family: "TeleGroteskNext-MediumItalic";
    src: url("../fonts/TeleGroteskNext-MediumItalic.woff") format("woff"), url("../fonts/TeleGroteskNext-MediumItalic.ttf") format("truetype")
}

@font-face {
    font-family: "TeleGroteskNext-Regular";
    src: url("../fonts/TeleGroteskNext-Regular.woff") format("woff"), url("../fonts/TeleGroteskNext-Regular.ttf") format("truetype")
}

@font-face {
    font-family: "TeleGroteskNext-RegularItalic";
    src: url("../fonts/TeleGroteskNext-RegularItalic.woff") format("woff"), url("../fonts/TeleGroteskNext-RegularItalic.ttf") format("truetype")
}

@font-face {
    font-family: "TeleGroteskNext-Thin";
    src: url("../fonts/TeleGroteskNext-Thin.woff") format("woff"), url("../fonts/TeleGroteskNext-Thin.ttf") format("truetype")
}

@font-face {
    font-family: "TeleGroteskNext-Ultra";
    src: url("../fonts/TeleGroteskNext-Ultra.woff") format("woff"), url("../fonts/TeleGroteskNext-Ultra.ttf") format("truetype")
}

@font-face {
	font-family: 'SprintSansWeb';
	src: url('../fonts/Sprint-Sans-Web-Regular.eot');
	src: url('../fonts/Sprint-Sans-Web-Regular.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Sprint-Sans-Web-Regular.woff') format('woff'),
		 url('../fonts/Sprint-Sans-Web-Regular.ttf') format('truetype'),
		 url('../fonts/Sprint-Sans-Web-Regular.svg#SprintSansWeb') format('svg');
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
}

@font-face {
	font-family: 'SprintSansWeb';
	src: url('../fonts/Sprint-Sans-Web-Medium.eot');
	src: url('../fonts/Sprint-Sans-Web-Medium.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Sprint-Sans-Web-Medium.woff') format('woff'),
		 url('../fonts/Sprint-Sans-Web-Medium.ttf') format('truetype'),
		 url('../fonts/Sprint-Sans-Web-Medium.svg#SprintSansWeb') format('svg');
	font-weight: 500;
	font-style: normal;
	font-stretch: normal;
}

@font-face {
	font-family: 'SprintSansWeb';
	src: url('../fonts/Sprint-Sans-Web-Bold.eot');
	src: url('../fonts/Sprint-Sans-Web-Bold.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/Sprint-Sans-Web-Bold.woff') format('woff'),
		 url('../fonts/Sprint-Sans-Web-Bold.ttf') format('truetype'),
		 url('../fonts/Sprint-Sans-Web-Bold.svg#SprintSansWeb') format('svg');
	font-weight: 700;
	font-style: normal;
	font-stretch: normal;
	}


/*==================================
 ------------ 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;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}


/*---------- Animations ----------*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/*==================================
 --------- DEFAULT STYLES ---------
==================================*/

body {
    overflow-x: hidden;
    color: #000000;
    font-family: "TeleGroteskNext-Regular";
    font-size: 22px;
    /* font-size: 1.8rem;*/
    font-weight: 400;
    line-height: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    position: relative;
}

@media(max-width: 1024px) {
    body {
        font-size: 18px;
        line-height: 28px;
    }
}

@media(max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 20px;
    }
}


/*---------- TYPOGRAPHY ----------*/

h1 {
    font-size: 72px;
    font-size: 7.2rem;
    margin-bottom: 48px;
    line-height: 1.2;
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 36px;
        font-size: 3.6rem;
    }
}

h2 {
    font-size: 54px;
    font-size: 5.4rem;
    margin-bottom: 40px;
}

h3 {
    font-size: 42px;
    font-size: 4.42rem;
    line-height: 46px;
    margin: 24px 0 16px 0;
}

h4 {
    font-size: 28px;
    font-size: 2.8rem;
    margin-top: 24px;
    margin-bottom: 16px;
}

h5 {
    font-size: 12.8px;
    font-size: 1.28rem;
    margin-bottom: 12.8px;
}

a {
    text-decoration: none;
    color: #e20074;
}

p {
    font-size: 18px;
    line-height: 30px;
}

.pane--content p {
    font-size: 22px;
    line-height: 30px;
}

@media only screen and (max-width: 1024px) {
    .pane--content p {
        line-height: 28px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .pane--content p {
        line-height: 20px;
        font-size: 16px;
    }
}

i {
    display: inline-block;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

sup {
    vertical-align: super;
}

sub {
    vertical-align: sub;
}

small {
    font-size: smaller;
}


/*------------ 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: 16px;
    vertical-align: middle;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #9b9b9b;
    margin-right: 8px;
    line-height: 1;
    border-radius: 2px;
    vertical-align: middle;
    margin-bottom: 5px;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
    width: 18px;
    height: 18px;
    background: url("../design/check-shape.png");
    background-repeat: no-repeat;
    background-position-y: -2px;
    border: 1px solid #e20074;
}

input[type="radio"] + label:before {
    border-radius: 100%;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}


/*------- HACKS AND FIXES -------*/

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*------------ LISTS ------------*/

.list {
    list-style-type: disc;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.list--ordered {
    list-style-type: decimal;
}

.list--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: 12px 23px 12px 20px;
    background: transparent;
    border: 1px solid #e20074;
    border-radius: 0;
    line-height: 21px;
    font-family: "TeleGroteskNext-Bold";
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: normal;
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

.submit,
.button,
.upload,
.dropdown {
    cursor: pointer;
}

.submit,
.button {
    min-width: 130px;
    text-align: center;
    background: #e20074;
    color: #fff;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button {
    transition: 0.3s ease-in-out;
}

.button:hover {
    background: #fff;
    color: #e20074;
}

.button--inverted {
    background: #e20074;
    color: #fff;
}

.button--inverted:hover {
    background: transparent;
    color: #e20074;
}

.button--inverted.js--disabled {
    background: #fff;
    border-color: #e20074;
    color: #e20074;
}

.button--dark {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.button--dark:hover {
    background: #fff;
    color: #e20074;
}

.dropdown {
    padding: 15px 35px 15px 20px;
    background: transparent url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
    min-width: 130px;
    border: 1px solid #adadad;
}

.dropdown::-ms-expand {
    display: none;
}


/*------------ TABLES ------------*/

.table {
    width: 100%;
    margin: 16px 0;
    font-family: "TeleGroteskNext-Bold";
}

.table thead {
    background-color: #e20074;
}

.table thead th {
    text-align: left;
}

.table tr {
    border-bottom: 1px solid #f0f0f0;
}

.table tr.thicker-border {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.module-isin .table thead th {
    width: 20%;
}

.table th,
.table td,
.table tr > .grid_col {
    margin: 0;
    padding: 12px 25px;
}

.table th {
    color: #fff;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #f6f6f6;
}

.table--headless tr:first-child {
    background-color: #e20074;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tbody {
        border-top: 2px solid #e20074;
        border-bottom: 2px solid #e20074;
    }
    .table--responsive td {
        display: block;
    }
    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}


/*--------- SPECIAL BOXES --------*/

.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    font-size: 1.4rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}

.code_comment {
    opacity: 0.5;
}

.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}

.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}

.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}


/*==================================
 -------- Q4 Modules Icons ---------
==================================*/

.module_q4-icon-links .module_link:before,
.module_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: "\e911";
    font-size: 30px;
    vertical-align: middle;
    display: inline-block;
    padding-right: 5px;
}

.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_rss-link:before {
    font-size: 18px;
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\ea5f";
    padding-right: 5px;
    font-size: 30px;
}

.module_q4-icon-links .module_link[href$=".mp3"]:before,
.module_q4-icon-links .module_link[href$=".wmv"]:before,
.module_q4-icon-links .module_link[href$=".MP3"]:before,
.module_q4-icon-links .module_link[href$=".WMV"]:before {
    content: "\e952";
}

.module_q4-icon-links .module_link[href$=".xls"]:before,
.module_q4-icon-links .module_link[href$=".csv"]:before,
.module_q4-icon-links .module_link[href$=".XLS"]:before,
.module_q4-icon-links .module_link[href$=".CSV"]:before,
.module_q4-icon-links .module_link[href$=".xlsx"]:before,
.module_q4-icon-links .module_link[href$=".XLSX"]:before {
    content: "\e91a";
}

.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: "\e913";
}

.module_q4-icon-links .module_link.module_link-webcast:before,
.module_q4-icon-links .module_webcast-link:before,
.module_attachment.Video .module_attachment-link:before {
    content: "\e918";
    font-size: 30px;
}

.module_q4-icon-links .module_link-video:before {
    content: "\e918";
}

.module_q4-icon-links .module_link-10-k[href$=".PDF"]:before,
.module_q4-icon-links .module_link-10-k[href$=".pdf"]:before,
.module_q4-icon-links .module_link-10-q[href$=".PDF"]:before,
.module_q4-icon-links .module_link-10-q[href$=".pdf"]:before {
    content: "\e90c";
}

.module_q4-icon-links .module_link.module_link-news:before,
.module_q4-icon-links .module_link.module_link-transcript:before {
    content: "\e914";
}

.module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e90f";
}

.module_q4-icon-links .module_link.module_link-file:before {
    content: "\eb81";
}

.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e911";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\e913";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\e916";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\e91a";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e91b";
}

.module_q4-icon-links .module_link-supplementary[href$=".xlsx"]:before {
    content: "\e91a";
}


/*==================================
 ----------- TOAST GRID -----------
==================================*/

.grid {
    list-style: none;
    margin-left: -20px;
}

.grid_col--1-of-1,
.grid_col--2-of-2,
.grid_col--3-of-3,
.grid_col--4-of-4,
.grid_col--5-of-5,
.grid_col--6-of-6,
.grid_col--8-of-8,
.grid_col--12-of-12 {
    width: 100%;
}

.grid_col--1-of-2,
.grid_col--2-of-4,
.grid_col--3-of-6,
.grid_col--4-of-8,
.grid_col--6-of-12 {
    width: 50%;
}

.grid_col--1-of-3,
.grid_col--2-of-6,
.grid_col--4-of-12 {
    width: 33.3333333333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
    width: 66.6666666667%;
}

.grid_col--1-of-4,
.grid_col--2-of-8,
.grid_col--3-of-12 {
    width: 25%;
}

.grid_col--3-of-4,
.grid_col--6-of-8,
.grid_col--9-of-12 {
    width: 75%;
}

.grid_col--push-1-of-1,
.grid_col--push-2-of-2,
.grid_col--push-3-of-3,
.grid_col--push-4-of-4,
.grid_col--push-5-of-5,
.grid_col--push-6-of-6,
.grid_col--push-8-of-8,
.grid_col--push-12-of-12 {
    margin-left: 100%;
}

.grid_col--push-1-of-2,
.grid_col--push-2-of-4,
.grid_col--push-3-of-6,
.grid_col--push-4-of-8,
.grid_col--push-6-of-12 {
    margin-left: 50%;
}

.grid_col--push-1-of-3,
.grid_col--push-2-of-6,
.grid_col--push-4-of-12 {
    margin-left: 33.3333333333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
    margin-left: 66.6666666667%;
}

.grid_col--push-1-of-4,
.grid_col--push-2-of-8,
.grid_col--push-3-of-12 {
    margin-left: 25%;
}

.grid_col--push-3-of-4,
.grid_col--push-6-of-8,
.grid_col--push-9-of-12 {
    margin-left: 75%;
}

.grid_col--pull-1-of-1,
.grid_col--pull-2-of-2,
.grid_col--pull-3-of-3,
.grid_col--pull-4-of-4,
.grid_col--pull-5-of-5,
.grid_col--pull-6-of-6,
.grid_col--pull-8-of-8,
.grid_col--pull-12-of-12 {
    margin-left: -100%;
}

.grid_col--pull-1-of-2,
.grid_col--pull-2-of-4,
.grid_col--pull-3-of-6,
.grid_col--pull-4-of-8,
.grid_col--pull-6-of-12 {
    margin-left: -50%;
}

.grid_col--pull-1-of-3,
.grid_col--pull-2-of-6,
.grid_col--pull-4-of-12 {
    margin-left: -33.3333333333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
    margin-left: -66.6666666667%;
}

.grid_col--pull-1-of-4,
.grid_col--pull-2-of-8,
.grid_col--pull-3-of-12 {
    margin-left: -25%;
}

.grid_col--pull-3-of-4,
.grid_col--pull-6-of-8,
.grid_col--pull-9-of-12 {
    margin-left: -75%;
}

.grid_col--1-of-5 {
    width: 20%;
}

.grid_col--push-1-of-5 {
    margin-left: 20%;
}

.grid_col--pull-1-of-5 {
    margin-left: -20%;
}

.grid_col--2-of-5 {
    width: 40%;
}

.grid_col--push-2-of-5 {
    margin-left: 40%;
}

.grid_col--pull-2-of-5 {
    margin-left: -40%;
}

.grid_col--3-of-5 {
    width: 60%;
}

.grid_col--push-3-of-5 {
    margin-left: 60%;
}

.grid_col--pull-3-of-5 {
    margin-left: -60%;
}

.grid_col--4-of-5 {
    width: 80%;
}

.grid_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.6666666667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-6 {
    width: 83.3333333333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.3333333333%;
}

.grid_col--1-of-8 {
    width: 12.5%;
}

.grid_col--push-1-of-8 {
    margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
    margin-left: -12.5%;
}

.grid_col--3-of-8 {
    width: 37.5%;
}

.grid_col--push-3-of-8 {
    margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
    margin-left: -37.5%;
}

.grid_col--5-of-8 {
    width: 62.5%;
}

.grid_col--push-5-of-8 {
    margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
    margin-left: -62.5%;
}

.grid_col--7-of-8 {
    width: 87.5%;
}

.grid_col--push-7-of-8 {
    margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
    margin-left: -87.5%;
}

.grid_col--1-of-12 {
    width: 8.3333333333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.3333333333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.3333333333%;
}

.grid_col--2-of-12 {
    width: 16.6666666667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-12 {
    width: 41.6666666667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.6666666667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.6666666667%;
}

.grid_col--7-of-12 {
    width: 58.3333333333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.3333333333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.3333333333%;
}

.grid_col--10-of-12 {
    width: 83.3333333333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.3333333333%;
}

.grid_col--11-of-12 {
    width: 91.6666666667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.6666666667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.6666666667%;
}

.grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
}

@media (max-width: 480px) {
    .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--lg-1-of-2,
    .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--lg-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--lc-1-of-2,
    .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--lc-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--md-1-of-2,
    .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--md-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--sm-1-of-2,
    .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--sm-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid_col--d-last {
    float: right;
}

.grid--no-gutter {
    margin-left: 0;
}

.grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}


/*==================================
 --------- UTILITY CLASSES --------
==================================*/

.hidden {
    display: none !important;
}

.disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.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: #e20074;
}

.background--image {
    background: url(../design/background/background-last-module.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.background--alt-brand {
    background-color: #f1af0f;
}

.background--dark {
    background-color: #222;
}

.background--grey {
    background-color: #f0f0f0;
}

.background--grey-light {
    background-color: #f8f8f8;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b72121;
}

.background--inv {
    background: #f8f8f8;
}

.color--brand {
    color: #e20074;
}

.color--dark {
    color: #222;
}

.color--grey {
    color: #f6f6f6;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #b72121;
}

.dark {
    color: #fff;
}

.dark a {
    color: #fff;
}


/*==================================
 --------- ACCESSIBILITY ----------
==================================*/

*:focus {
    outline: none;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#maincontent:focus {
    outline: 0px;
}


/*---------- Javascript ----------*/

.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px 0 10px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
}

.js--hidden {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #b72121 !important;
}


/*==================================
 ----------- MODULE CSS -----------
==================================*/


/*-------- All Module CSS --------*/

.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text {
    display: none;
}

.module_nav,
.module_headline,
.module_location,
.module_speakers,
.module_links,
.module_body,
.module_options,
.module_not-found {
    margin-bottom: 15px;
}

.module_error-container {
    margin-bottom: 30px;
    color: #b72121;
}

.module_add-to-calendar-reveal {
    color: #e20074;
    cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}

.module_add-to-calendar-list {
    display: none;
}

.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar-link {
    font-size: 24px;
    font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions,
.module_pager {
    margin-top: 20px;
}

.module_date-time {
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: 'TeleGroteskNext-Thin';
}

.module_error-container {
    display: block;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
    font-size: inherit;
}

.module_error-container ul > li {
    line-height: 1.5;
}

.module_error-container > br {
    display: none;
}

.module_error-container > span {
    display: block;
    line-height: 1.5;
}

.module_error-container > span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_headline {
    font-weight: normal;
}

.module_headline-link {
    font-family: 'TeleGroteskNext-Ultra';
    font-size: 28px;
    color: #000;
}

.module_headline-link:hover {
    color: #e20074;
}

.module-notification {
    text-align: center;
    line-height: 1;
}

.module-notification * {
    vertical-align: middle;
}

.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
}

.module_image--right {
    float: right;
    margin-left: 32px;
}

.module_image--left {
    float: left;
    margin-right: 32px;
}

.module_introduction {
    margin-bottom: 35px;
}

.module_item {
    padding: 30px 0 10px;
}

.module_item ~ .module_item {
    border-top: 1px solid #dddddd;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module_label + .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module_links > *,
.module_links li,
.module_links .module_presentation {
    display: inline;
}

@media only screen and (max-width: 480px) {
    .module_links > *,
    .module_links li,
    .module_links .module_presentation {
        display: block;
    }
}

.module_links.module_links--stack > *,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
    display: block;
}

.module_link {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 5px 0;
    font-size: 18px;
    font-size: 1.8rem;
}

@media only screen and (max-width: 1024px) {
    .module_link {
        line-height: 28px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .module_link {
        line-height: 20px;
        font-size: 16px;
    }
}

.module_link > .module_link-text,
.module_link > i,
.module_link > span {
    vertical-align: middle;
}

.module_link > i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #23a217;
}

.module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 5px;
}

.module_message--error {
    color: #b72121;
}

.module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 5px;
}

.module_nav-link,
.module_nav .ModuleYearLink,
.module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
    display: inline-block;
    margin-right: 5px;
    padding: 15px 20px;
    border: 2px solid #e20074;
    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: #e20074;
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .module_nav-link,
    .module_nav .ModuleYearLink,
    .module_nav-link:visited,
    .module_nav .ModuleYearLink:visited {
        margin-bottom: 10px;
    }
}

.module_options-label,
.module_options-select {
    margin-right: 10px;
}

@media only screen and (max-width: 480px) {
    .module_options-label,
    .module_options-select,
    .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: #000;
    font-weight: bold;
}

.module_pager a[href] {
    color: #e20074;
    font-weight: normal;
}

.module_reminder .module_input.module_reminder-period,
.module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: #333333;
}

.module_required-text {
    font-size: 13px;
    font-size: 1.3rem;
    color: #333333;
}

.module_rss {
    float: right;
}

.module_rss.module_rss--top {
    float: none;
    position: absolute;
    top: 45px;
    right: calc(50% - 1205px / 2);
}

@media only screen and (max-width: 1230px) {
    .module_rss.module_rss--top {
        right: 20px;
    }
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_title {
    text-transform: capitalize;
    font-size: 42px;
    color: #000;
    line-height: 1;
    font-family: "TeleGroteskNext-Ultra";
    text-align: center;
}

.layout:not(.layout--home) .pane--content .module_title {
    /*background: url(../design/banner/stocksy_multiseat.jpg);*/
    background-size: cover;
    background-repeat: no-repeat;
    color: #000;
    padding: 40px 40px 15px 20px;
}

.dark .module_title {
    color: #fff;
}

.module_view-all-link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Text area demands width*/
    width: 100%;
    max-width: none;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    background-color: #f6f6f6;
    font-family: inherit;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
}

.module_input[type="text"]::-ms-clear,
.module_input[type="email"]::-ms-clear,
.module_input[type="file"]::-ms-clear,
.module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
    display: none;
}

.module textarea.module_input {
    resize: vertical;
}

.module_input[type="file"],
.module_dropdown {
    cursor: pointer;
}

.module_input[type="file"] {
    line-height: 1;
}

.module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
    padding: 15px 20px;
    border: 2px solid #e20074;
    background: transparent;
}

.module_dropdown {
    background: #f6f6f6 url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 20px center;
    background-size: 14px 14px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}

.module_pagination {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.module_pagination li {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 34px;
    color: #000;
    width: 34px;
    height: 34px;
    text-align: center;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 2px 5px;
    -webkit-box-shadow: 1px 2px 1px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 1px 2px 1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 1px 2px 1px 0 rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.module_pagination li:hover,
.module_pagination li:focus {
    background-color: #ebebeb;
    border-color: #adadad;
}

.module_pagination li.pager-active {
    color: #fff;
    border-color: #e83390;
    background: #e83390;
}

.module_pagination li.pager-prev,
.module_pagination li.pager-next {
    font-size: 0;
    line-height: 0;
}

.module_pagination li.pager-prev:before,
.module_pagination li.pager-next:before {
    font-size: 18px;
    line-height: 34px;
}

.module_pagination li.pager-prev:before {
    content: "«";
}

.module_pagination li.pager-next:before {
    content: '»';
    line-height: 34px;
}

.module_pagination li.pager-disabled {
    display: none;
}

.module-not-found-message {
    margin: 20px 0;
}


/*------- Captcha Component ------*/

.CaptchaContainer {
    display: none;
}

.CaptchaContainer table tr:nth-child(1) {
    display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

.CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
}

.CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
}

.CaptchaContainer table tr td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}

.CaptchaContainer input[type="text"] {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    max-width: none;
    padding: 15px 20px;
    font-family: inherit;
    border: none;
    border-radius: 0;
    background-color: #f6f6f6;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}


/*- Investment Calculator Widget -*/


/*------------------------Investment Calculator----------------*/

.module-calculator_amount .module_label,
.module-calculator_end-date .module_label,
.module-calculator_start-date .module_label {
    font-family: "TeleGroteskNext-Ultra";
    text-transform: uppercase;
}

.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_input h4 {
    margin-bottom: 12px;
    font-size: 18px;
    display: inline-block;
    font-family: "TeleGroteskNext-Ultra";
    text-transform: uppercase;
    margin-top: 0;
    vertical-align: top;
    margin-right: 15px;
}

.module-calculator_input label {
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 5px;
    vertical-align: top;
    font-family: "TeleGroteskNext-Thin";
}

.module-calculator_input input[type="text"] {
    border: 1px solid #adadad;
    background: transparent;
    font-size: 18px;
    font-family: "TeleGroteskNext-Thin";
}

.module-calculator_compare {
    margin-top: 30px
}

.module-calculator_input input[type="checkbox"] + label {
    margin: 0;
}

.module-calculator_input-row {
    padding-bottom: 10px;
    display: inline-block;
    vertical-align: top;
    padding-right: 30px;
}

.module-calculator_input-row input[type="text"] {
    margin-top: 10px;
    max-width: 300px;
}

.module-calculator_input-row--other input[type="text"] {
    display: none;
}

.module-calculator_input-row--other input[type="text"].js--revealed {
    display: block;
}

@media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        min-width: 920px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .module-calculator_popup-container .table thead {
        display: none;
    }
    .module-calculator_popup-container .table tbody {
        border-top: 2px solid #e20074;
        border-bottom: 2px solid #e20074;
    }
    .module-calculator_popup-container .table td {
        display: block;
    }
    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}

.module-calculator_info td:first-child:before {
    content: none;
}


/*------------------End Investment Calculator----------------*/


/*- Committee Composition Widget -*/

@media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}

.module-committee .module_container--tablet {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module-committee {
    font-family: "TeleGroteskNext-Bold";
}

.module-committee .module_header {
    display: block;
    background: #e20074;
    color: #fff;
}

.module-committee .module_item {
    padding: 0;
}
.module-committee .q4-icon_star-fill:before {
    content: "(Financial Expert)";
    font-size: small;
    text-transform: uppercase;
    display: block;
    width: 100%;
    position: static;
    font-family: 'TeleGroteskNext-Bold' !important;
}
.module-committee .q4-icon_user-line:before{
    content: "(Chairman Of The Board)";
    font-size: small;
    text-transform: uppercase;
    display: block;
    width: 100%;
    position: static;
    font-family: 'TeleGroteskNext-Bold' !important;
}
.module-committee .module_item ~ .module_item {
    border-top: 0;
}

.module-committee .module_item {
    border-bottom: 1px solid #f0f0f0;
    font-size: 20px;
}

.module-committee .grid_col {
    padding: 12px 5px;
    text-align: center;
}

.module-committee .grid_col:first-child {
    text-align: left;
}

.module-committee_category.js--active .module_header i:before {
    content: "\edba";
}

.module-committee_custom-role {
   /* margin-left: 5px;*/
    display: block;
}

.module-committee_bio {
    padding: 0 15px 20px;
    text-align: left;
}

.module-committee_bio p {
    margin: 0;
}

.module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
}

.module-committee_legend-container {
    padding: 0;
    margin-bottom: 0;
}

.module-committee_legend {
    display: inline-block;
    margin-right: 30px;
}

.module-committee_legend i {
    margin-right: 5px;
}

.module_container--tablet {
    border-top: 1px solid #f0f0f0;
}

.module_container--tablet .module-committee_category {
    border-bottom: 1px solid #f0f0f0;
}

.module_container--tablet .module_header {
    background: #fff;
    color: #000;
    text-transform: uppercase;
}

.module_container--tablet .module_item {
    border: 0;
}

.module_container--tablet .grid_col {
    padding-left: 0;
}


/*----- Download List Module -----*/

.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 15px 0;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
    opacity: .5;
    font-family: "TeleGroteskNext-Ultra";
    color: #000;
    opacity: 1;
    text-align: left;
    font-size: 22px;
    padding: 0 20px;
}

.module-corporate-navigation_downloads .module-downloads_description p {
    font-size: 22px;
    letter-spacing: .2px;
    line-height: 22px;
    margin: 5px 0;
    font-family: "TeleGroteskNext-Ultra";
}

.module-corporate-navigation_downloads .module-downloads_description a {
    letter-spacing: .26px;
    font-family: "TeleGroteskNext-Ultra";
    display: block;
    color: #e20074;
}

.module-downloads_title-link {
    margin: 0 20px 0 0;
}

.module-downloads_title-link:before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}


/*--------- Event Module ---------*/

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event .module_options {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #dddddd;
}

.module-event-details .module_speakers h4 {
    display: none;
}

.module-event-latest .module_container--content {
    margin-bottom: 20px;
}

.module-event-latest .module_item {
    margin: 10px 0;
    border: none;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
    .module-event-latest .module_item:first-child {
        width: 100%;
    }
}

.module-event-latest .module_item.grid_col {
    padding-left: 20px;
}

.module-event-latest .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
}

.module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
}

.module-event-latest .module_headline {
    line-height: 150%;
    font-weight: 200;
}

.module-event-latest .module_links {
    margin: 0;
}

.module-event-latest.background--grey .module_item-wrap {
    background-color: #fff;
}

.module-event-latest.module-event-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-event-latest.module-event-list .module_item + .module_item {
    border-top: 1px solid #dddddd;
}

.module-event-upcoming .module_nav {
    display: none;
}

.module--link-overflow .module_q4-icon-links .module_link {
    position: relative;
    padding-left: 40px;
    line-height: 30px
}

.module--link-overflow .module_q4-icon-links .module_link:before {
    position: absolute;
    left: 0;
}

.module-event-upcoming .module_item {
    padding: 0 0 10px;
}

.module-event-upcoming .module_item ~ .module_item {
    padding: 30px 0 10px;
}

.module-event-upcoming .module_link,
.module-event-details .module_link {
    margin-bottom: 15px;
}

.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: #e20074;
}

.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: #e20074;
    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: #e20074;
}

.module-event-calendar_day--selected {
    background-color: #e20074;
    color: #fff;
}

.module-event-calendar_day--selected:after {
    background-color: #fff;
}

.module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.1);
    pointer-events: none;
}

.module-event-calendar_day--adjacent-month:after {
    content: none;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}

.module-event-calendar .module_item {
    padding: 0;
}

.module-event-calendar .module_date-time,
.module-event-calendar .module_headline {
    margin-bottom: 20px;
}

.module-event-calendar .module_add-to-calendar {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .module-event-calendar {
        display: block;
    }
    .module-event-calendar_calendar-container,
    .module-event-calendar_event-container {
        display: block;
        width: 100%;
    }
    .module-event-calendar_calendar-container {
        padding-right: 0;
    }
    .module-event-calendar_event-container {
        margin-top: 20px;
    }
}


/*---------- FAQ Module ----------*/

.module-faq_question {
    margin-top: 0;
    cursor: pointer;
}

.module-faq_answer p {
    margin: 0;
    padding: 0 0 10px;
}

.module-faq .toggle-all a:before {
    content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide all";
}


/*--- Financial Report Modules ---*/

.module-financial-year .module_cover {
    margin-bottom: 15px;
}

.module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #e20074;
}

.module-financial-year .module_item {
    padding: 0;
}

.module-financial_category .module_item {
    text-align: left;
}

@media(min-width: 1200px){
    .module-financial_category .module_item {
        padding-left: 62px;
    }
}

@media(max-width: 480px){
    .module-financial_category .module_item {
        text-align: center;
    }
}

.module-financial-year .module_item ~ .module_item {
    border: none;
}

.module-financial-year .module_links {
    margin: 0;
}

.module-financial-year .module_link::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.module-financial-year .module_link {
    position: relative;
    padding-left: 45px;
    line-height: normal;
    margin-bottom: 15px;
}

.module-financial-year .js--hidden {
    display: none !important;
}

.module-financial-year .module-financial_year {
    text-align: center;
}

.module-financial-year h3.module-financial_year-text {
    font-family: 'TeleGroteskNext-Ultra';
}

.module-financial-quarter .module_item {
    padding: 0;
}

.module-financial-quarter .module_item ~ .module_item {
    border: none;
}

.module-financial-quarter .module_item.js--active h3:after {
    content: "\edba";
}

.module-financial-quarter .module_links {
    margin: 0;
    padding: 15px 15px 15px 0;
}

.module-financial-quarter .module_links > div {
    display: block;
}

.module-financial-quarter .module_link {
    padding-bottom: 10px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: normal;
    text-transform: none;
}

.module-financial-quarter .module-financial_year-text {
    padding: 20px 30px 20px 0;
    color: #000;
    font-size: 22px;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 30px;
    font-family: "TeleGroteskNext-Ultra";
    border-top: 1px solid #f0f0f0;
    margin: 0;
}

.module-financial-quarter .module-financial_year-text:after {
    float: right;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    color: #e20074;
}

.module-financial-quarter .module_container--content {
    border-bottom: 1px solid #f0f0f0;
}

.module-financial-table_header {
    background-color: #e20074;
    color: #fff;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
    padding: 20px 15px;
}

.module-financial-table_body-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.module-financial-table_body-row:nth-child(even) {
    background-color: #f6f6f6;
}

.module-financial-table_body-year-container {
    text-align: center;
}

.module-financial-table_body-year,
.module-financial-table_body-category.grid_col {
    padding: 20px 15px;
}

.module-financial-table_item {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: normal;
}

.module-financial-table_item ~ .module_item {
    margin-right: 5px;
}

.module-financial-table_item--empty {
    opacity: 0.1;
}

@media only screen and (max-width: 1024px) {
    .module-financial-quarter .module-financial_year-text,
    .module-financial-quarter .module_link {
        font-size: 18px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .module-financial-quarter .module-financial_year-text,
    .module-financial-quarter .module_link {
        font-size: 16px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
}

.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}

.module-financial-table .slick-slide:focus {
    outline: none;
}

.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
}

.module-financial-table .slick-prev {
    left: 10px;
}

.module-financial-table .slick-next {
    right: 10px;
}

.module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
}

.module-financial-mashup .module_body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.module-financial-mashup .module_body > *:first-child,
.module-financial-mashup .module_body > style + p {
    margin-top: 0;
}

.module-financial-mashup .module_body:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#70ffffff', endColorstr='#ffffff', GradientType=0);
}

.module-financial-mashup .module-financial-mashup_documents .module_links + h4 {
    margin-top: 30px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links > div {
    background-color: #f6f6f6;
    padding: 15px;
    margin-bottom: 1px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
}

.module-financial-mashup .q4-icon_chevron-right {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
}


/* Latest Quarterly Result Widget */

.module-financial_quarter {
    -webkit-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    -moz-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    box-shadow: 0px 0px 10px 1px rgba(231, 231, 231, 1);
}

.module-financial_quarter .module-financial_supplementary {
    position: relative;
    display: block;
    padding-left: 90px;
    text-align: left;
}

.module-financial .module-downloads_title {
    padding-top: 20px;
    padding-bottom: 20px;
}

.module-financial_quarter .module-financial_supplementary .module_link:before {
    position: absolute;
    left: 36px;
}

.module-financial_quarter .module-financial_supplementary .module_link-supplementary {
    color: #6a6a6a;
    font-size: 22px;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: normal;
}

/*.module-financial_quarter .module-financial_supplementary .module_link:last-child:before {
    left: 35px;
} */

/* .module-financial_quarter .module_link-supplementary.module_link[href$=".xlsx"] .module_link-text {
    display: none;
} */

.module-financial_quarter .module_item {
    margin: 10px 0 26px 0;
    padding: 0;
}

.module-financial_quarter .module_item ~ .module_item {
    border: none;
}

.module-financial_quarter .module_links {
    margin: 0;
}

.module-financial_quarter .module_links > div {
    display: block;
}

.module-financial_quarter .module_link {
    margin: 0;
}

.module-financial_quarter .module_link:before {
    display: inline-block;
    padding: 0;
}

.module-financial_quarter .module_container--inner {
    background: #fff;
    -webkit-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    -moz-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    box-shadow: 0px 0px 10px 1px rgba(231, 231, 231, 1);
}

.module_q4-icon-links .module-financial_related .module_link:before {
    background: #e20074;
    border-radius: 100%;
    color: #fff;
    font-size: 29px;
    width: 75px;
    height: 75px;
    vertical-align: middle;
    line-height: 75px;
}

.module-financial_related .module_link-text {
    display: block;
    margin: 0;
    font-size: 18px;
    font-size: 1.8rem;
    text-transform: none;
    font-family: "TeleGroteskNext-Bold";
    color: #000;
    line-height: 22px;
}

.module-financial_related {
    padding-bottom: 25px;
}

.module-financial_related .module_link-text {
    margin-top: 13px;
}

.module-financial_quarter h3 {
    margin: 0;
    font-size: 18px;
    line-height: 21px;
    font-family: "TeleGroteskNext-Ultra";
    text-transform: uppercase;
}

.module-financial_related .module_link:hover .module_link-text,
.module-financial_supplementary .module_link-supplementary:hover {
    color: #e20074;
}

.module-financial--landing .module_container--inner {
    display: flex;
    justify-content: space-between;
}

.module-financial_quarter {
    position: relative;
    text-align: left;
    padding: 50px 20px;
    background: #fff;
    width: calc(50% - 10px);
}

.module-financial_quarter .module-financial_type-text {
    padding-right: 5px;
}

.module-financial_quarter .module-financial_type-text,
.module-financial_quarter .module-financial_year-text {
    display: inline-block;
    vertical-align: top;
    font-family: "TeleGroteskNext-Ultra";
    line-height: 39px;
}

.module-financial_quarter .module-financial_type {
    font-size: 42px;
    font-size: 4.2rem;
    font-weight: normal;
    text-align: left;
    margin-bottom: 10px;
}

.module-financial_quarter .grid_col {
    vertical-align: top;
}

.module-downloads--video .module-downloads_link {
    position: relative;
}

.module-downloads--video .module-downloads_link a {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 3px;
    left: 0;
}

.module-downloads--video .module_item {
    padding: 0;
}

.module-downloads--video {
    -webkit-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    -moz-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    box-shadow: 0px 0px 10px 1px rgba(231, 231, 231, 1);
    background: #fff;
    width: calc(50% - 10px);
}

.module-downloads--video .module-downloads_title {
    padding: 17px 22px 15px;
    font-family: "TeleGroteskNext-Bold";
}

@media only screen and (max-width: 1024px) {
    .module-financial_related .grid_col {
        margin-bottom: 20px;
    }
    .module-financial_quarter {
        margin-bottom: 20px;
        width: 100%;
    }
    .module-downloads--video {
        width: 100%;
    }
    .module-financial--landing .module_container--inner {
        display: block;
    }
    .module-financial_supplementary .module_link {
        margin: 0 0 15px;
    }
    .module-financial_quarter .module-financial_supplementary {
        padding-left: 0;
        padding-bottom: 30px;
        text-align: center;
    }
    .module-financial_quarter .module-financial_type {
        text-align: center;
    }
    .module-financial_quarter .module-financial_supplementary .module_link:before {
        left: calc(50% - 20px);
        transform: translateX(-50%);
    }
    .module-financial_quarter .module-financial_supplementary .module_link:last-child:before {
        left: calc(50% + 20px);
    }
    .module-financial_related {
        margin: 0;
    }
    .module-financial_quarter {
        text-align: center;
    }
    .module-financial_related .grid_col:last-child .module_link {
        margin-bottom: 10px
    }
}


/*------ Formbuilder Module ------*/

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

@media only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha > div {
    margin: 0;
    padding: 0;
}

.module-form .module_container--captcha > div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #b72121;
}

.module-form .module_container--captcha > div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form_item > label,
.module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-form_item legend ~ ul {
    clear: both;
    padding-left: 10px;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request,
.module-form_item--are-you-an-investor {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}

.module-form_error-text {
    color: #b72121;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #333333;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #e20074;
}


/*---------- Job Modules ---------*/

.module-job-details_description-container {
    margin-bottom: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description label {
    font-weight: normal;
}

.module-job-details_description input {
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    float: right;
    font-family: Arial, Helvetica;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0;
}

@media only screen and (max-width: 480px) {
    .module-job-details_description label:after {
        content: ":";
    }
    .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 5px;
    }
}

.module-job-details .grid_col {
    padding: 15px 20px;
}

.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}

.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-job-application_table tr:last-child {
    margin-bottom: 0;
}

.module-job-application_table tr.module-job-application_cover-letter-text,
.module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}

.module-job-application_table tr td {
    display: block;
    position: relative;
}

.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
    .module-job-application_table {
        margin-left: 0;
    }
    .module-job-application_table tr {
        width: 100%;
        padding-left: 0;
    }
}

.module-job-application .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}


/*----- Miscellaneous Modules ----*/

.module-script {
    display: none;
}

.module-slideshow_ratio {
    padding-bottom: 56.25%;
    /* this should be changed with aspecRatio option in widget */
    position: relative;
}

.module-slideshow_viewer:not(.grid_col) {
    display: inline-block;
    width: 100%;
    max-width: 640px;
}

.module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 25px;
}

.module-slideshow_title {
    margin-bottom: 10px;
    display: none;
}

.module-slideshow .module_links > * + * {
    margin-top: 15px;
}

.module-slideshow_link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.module-slideshow iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.module-rss p + h2 {
    margin: 40px 0 30px;
}


/*------ Navigation Modules ------*/

.nav_close {
    display: none;
}

.module-investor-nav {
    display: none;
}

.nav--main {
    text-align: right;
    padding-top: 20px;
    margin-right: 25px;
}

.module-corporate-navigation_downloads .module-downloads_thumbnail,
.module-corporate-navigation_downloads .module-downloads_description {
    display: block;
}

.module-corporate-navigation_downloads {
    display: none;
    position: absolute;
    top: 100%;
    color: #fff;
    z-index: 10;
    left: 20px;
    max-width: 180px;
}

.module-corporate-navigation_downloads .module_item {
    padding-top: 20px;
}

.layout_inner.js--hover .module-corporate-navigation_downloads {
    display: block;
}


/*.module-corporate-navigation:hover .module-corporate-navigation_downloads
*/

.layout_inner.js--hover .nav--main:after,
.nav--main:hover:after {
    background: #000;
    content: "";
    left: 0;
    width: 0;
    top: 100%;
    height: 400px;
    display: block;
    position: absolute;
    z-index: 2;
    width: 1000%;
    left: -100%;
}

.nav--main li {
    display: inline-block;
}
nav.nav--main > .level1 > li.has-children > a {
    display: none;
}

.nav--main .level2 li {
    padding: 0 15px;
}

.nav--main .level1 li.home > a {
    padding-right: 22px;
}

.nav--main .level2 > li:last-child li {
    padding-right: 0;
}

.nav--main .level2 > li:last-child a {
    padding-right: 0;
}

.nav--main .level1 > li > a,
.nav--main .level2 > li > a {
    display: block;
    padding: 0 0 30px 0;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
}

.nav--main .level1 > li a {
    line-height: 1;
}

.js--sticky-header .nav--main .level2 > li > a,
.js--sticky-header .nav--main .level1 > li > a {
    padding-bottom: 18px;
}

.nav--main .level3 li {
    padding-top: 20px;
    display: block;
}

.nav--main .level2 > li {
    position: relative;
    padding-top: 3px;
    line-height: 20px;
}

.nav--main .level3 {
    display: none;
}

.nav--main li a {
    position: relative;
    font-family: "TeleGroteskNext-Ultra";
}

.nav--main .level3 a {
    font-size: 16px;
    line-height: 20px;
    opacity: .5;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.49, 0.99, 0.54, 0.98);
}

.nav--main .level3 a:hover {
    color: #e20074;
}

.nav--main .level2 > li.has-children:hover .level3 a {
    opacity: 1;
}

.nav--main .level2 > li > a:after {
    background: #e20074;
    bottom: 0;
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: all .3s ease-in-out;
    width: 100%;
}
.nav--main .level2 > li.expanded > a:after,
.nav--main .level2 > li.selected > a:after {
    background: #fff;
    transform: scaleX(1);
    transform-origin: 0 0;
    transition: all .15s ease-in-out;
}

.nav--main .level2 > li:hover > a:after {
    background: #e20074;
    transform: scaleX(1);
    transition: all 0.3s cubic-bezier(0.49, 0.99, 0.54, 0.98);
}

.nav--main:hover .level3 {
    display: block;
}

.nav--main .level2,
.nav--main li.home > a {
    display: inline-block;
}

.nav--main .level3 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    text-align: left;
}

.mobile-navigation {
    display: none;
    padding: 30px;
}

.nav--mobile .level1 > li > a,
.nav--mobile .level2 > li > a {
    font-size: 24px;
    text-transform: uppercase;
    font-family: "TeleGroteskNext-Ultra";
    color: #e20074;
}

.nav--mobile .level2 > li,
.nav--mobile .level1 > li.home > a {
    padding-bottom: 18px;
}

.nav--mobile .level1 > li.home > a {
    display: inline-block;
}

.nav--mobile .level2 > li.has-children {
    padding-bottom: 0;
}

.nav--mobile .level3 > li > a {
    color: #fff;
    font-size: 20px;
    font-family: "TeleGroteskNext-Thin";
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.nav--mobile .level3 {
    margin-top: 18px;
    margin-bottom: 35px;
}


/* Secondary navigation*/

.nav--secondary {
    text-align: center;
    font-weight: 400;
    letter-spacing: 1.6px;
    background: #000;
}

.nav--secondary .level1 > li {
    display: none;
}

.nav--secondary .level1 > li.selected,
.nav--secondary .level1 > li.expanded {
    display: block;
}

.nav--secondary .level1 > li.selected > a,
.nav--secondary .level1 > li.expanded > a {
    display: none;
}

.nav--secondary .level2 {
    display: block;
}

.nav--secondary .level2 > li {
    display: inline-block;
    position: relative;
    margin: 0 30px;
}

.nav--secondary .level2 > li > a {
    font-size: 21px;
    font-family: "TeleGroteskNext-Ultra";
    padding: 18px 0 18px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0;
}

@media only screen and (max-width: 1080px) {
    .nav--main .level2 li {
        padding: 0 13px;
    }
    .nav--mobile .level2{
        padding-top: 17px
    }
    .nav--mobile .level2 > li{
        padding-bottom: 35px;
    }
    /*.nav--mobile .level2 > li.has-children{
        padding-bottom: 0;
    }*/
}

@media only screen and (min-width: 1025px) {
    .nav--secondary .level2 > li.has-children:hover .level3 {
        display: block;
    }
}

.nav--secondary .level3 {
    display: none;
    position: absolute;
    left: 0;
    background: #000;
    top: calc(100% - 6px);
    ;
    text-align: left;
    z-index: 30;
    padding: 10px 0;
    border-top: 6px solid #e20074;
}

.nav--secondary .level3 > li {
    padding: 10px 20px;
}

.nav--secondary .level3 > li a {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 21px;
    font-family: "TeleGroteskNext-Ultra";
    letter-spacing: 0;
}

.nav--secondary .level3 > li a:hover {
    color: #e20074;
}

.nav--secondary .level2 > li a:focus {
    outline: none;
}

.nav--secondary-mobile {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .nav--secondary {
        display: none;
    }
    .nav--secondary-mobile .level3 > li {
        padding: 20px 20px 0;
    }
    .nav--secondary-mobile .level3 {
        padding-bottom: 15px;
    }
    .nav--secondary-mobile {
        display: block;
    }
    .layout--home .nav--secondary-mobile {
        display: none;
    }
    .nav--secondary-mobile .level1 li {
        display: none;
    }
    .nav--secondary-mobile .level2 li.has-children.expanded {
        display: block;
        text-align: center;
    }
    .nav--secondary-mobile .level2 > li.has-children.expanded.js--expanded > .level3 li {
        display: block;
    }
    .nav--secondary-mobile .level1 > li.has-children.home.expanded > a {
        display: none;
    }
    .nav--secondary-mobile .level3 {
        text-align: center;
    }
    .nav--secondary-mobile li.has-children > a:before {
        float: right;
        font-family: "q4-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\edc2";
        position: absolute;
        right: 0;
        top: 22px;
    }
    .nav--secondary-mobile li.has-children .level3 {
        display: none;
    }
    .nav--secondary-mobile li.has-children.js--open .level3 {
        display: block;
    }
    .nav--secondary-mobile li.has-children.js--open > a:before {
        content: "\edba";
    }
    .nav--secondary-mobile .level1 > li.has-children > a:before {
        top: 17px;
    }
    .nav--secondary-mobile li.js--expanded > a:before {
        content: "\edc2";
    }
    .nav--secondary-mobile a {
        display: block;
        text-transform: uppercase;
        font-weight: normal;
    }
    .nav--secondary-mobile .level1 > li {
        display: block;
    }
    .nav--secondary-mobile .level1 > li a,
    .nav--secondary-mobile .level1 > li.selected a,
    .nav--secondary-mobile .level1 > li.expanded a {
        display: inline-block;
    }
    .nav--secondary-mobile .level1 > li.js--expanded {
        background: #005894;
    }
    .nav--secondary-mobile .level1 > li.js--expanded a {
        display: block;
    }
    .nav--secondary-mobile .level1 > li.js--expanded .level2 {
        display: block;
    }
    .nav--secondary-mobile .level1 > li {
        position: relative;
    }
    .nav--secondary-mobile .level1 > li a:focus {
        text-decoration: none !important;
    }
    .nav--secondary-mobile .level1 > li > a {
        padding: 20px 0;
    }
    .nav--secondary-mobile .level2 > li {
        position: relative;
    }
    .nav--secondary-mobile .level2 > li.js--expanded .level3 {
        display: block;
    }
    .nav--secondary-mobile .level2 > li.expanded > a {
        font-size: 18px;
        text-transform: uppercase;
        padding: 20px 0;
        border-bottom: 6px solid #e20074;
    }
    .nav--secondary-mobile .level2 > li > a {
        font-weight: 600;
        text-transform: none;
    }
    .nav--secondary-mobile .level3 {
        position: static;
        border: none;
        display: none;
    }
    .nav--secondary-mobile .level2 li.js--open > .level3 {
        display: block;
    }
    .nav--secondary-mobile .level3 > li {
        display: block;
    }
    .nav--secondary-mobile .level3 > li > a {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 1024px) {
    .nav--main {
        display: none;
    }
    .mobile-navigation {
        display: block;
    }
}

.nav--sitemap {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 70px;
}

@media only screen and (max-width: 1024px) {
    .nav--sitemap {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.nav--sitemap a {
    display: inline-block;
}

.nav--sitemap .level1 > li:not(:last-of-type) {
    margin-bottom: 35px;
}

.nav--sitemap .level1 > li > a,
.nav--sitemap .level1 > li > a:visited {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 2.4rem;
    color: #222;
    text-transform: uppercase;
}

.nav--sitemap .level2 > li,
.nav--sitemap .level3 > li {
    padding: 5px 0;
}

.nav--sitemap .level2 > li > a,
.nav--sitemap .level3 > li > a {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav--sitemap .level2 > li > a {
    margin-bottom: 5px;
}

.nav--sitemap .level3 > li {
    padding-left: 15px;
}


/*-------- News Module CSS -------*/

.module-news-latest .module_container--content {
    margin-bottom: 5px;
}

.module-news-latest .module_container--outer {
    position: relative;
}

.module-news-latest .module_item {
    margin: 10px 0 20px;
    padding: 0 0 0 20px;
    border: none;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
}

.module-news-latest .module_date-time {
    margin-bottom: 0px;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    font-family: "TeleGroteskNext-Thin";
}

.module-news-latest .module_headline {
    font-size: 28px;
    line-height: 1;
    font-family: "TeleGroteskNext-Ultra";
    margin-bottom: 25px;
}

.module-news-latest .module_date-time .module_date-text:first-child {
    padding-right: 10px;
    border-right: 1px solid #fff;
    display: inline-block;
}

.module-news-latest .module_date-time .module_date-text:last-child {
    padding-left: 10px;
}

.module-news-latest .module_category {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 17px;
    font-family: "TeleGroteskNext-Ultra";
}

.module-news-grid {
    background: url(../design/background/bacgorund-news-landing.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.module-news-grid:before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.module-news-latest .module_headline-link:hover {
    color: #e20074;
}

.module-news-latest .module_links {
    margin: 0;
}

.module-news-latest .module_link {
    color: #e20074;
}

.module-news-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-news-list .module_item + .module_item {
    border-top: 1px solid #dddddd;
}

.module-news-details .module_view-all-link {
    display: block;
    margin-bottom: 25px;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details_category {
    display: none;
}

.module-news-details ul {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.module-news-details ul li {
    line-height: 1.5;
}

.module-news-details table {
    display: block;
    overflow-x: auto;
}

.module-news-details table tbody {
    display: table;
    width: calc(100% - 1px);
}

.module-news-details a {
    word-wrap: break-word;
}


/*------ Person List Module ------*/

.module-person-accordion .module-person_name-container {
    cursor: pointer;
}

.module-person-accordion .module-person_title {
    position: relative;
    font-family: "TeleGroteskNext-Thin";
    color: #6a6a6a;
    padding-left: 20px;
    display: inline-block;
    line-height: 21px;
    font-size: 14px;
    font-size: 1.4rem;
}

.module-person-accordion .js--active .module-person_title {
    display: block;
    padding-left: 0
}

.module-person-accordion .js--active .module-person_title:before {
    content: "";
}

.module-person-accordion .module-person_title:not(:empty):before {
    content: '|';
    position: absolute;
    left: 0;
}

.module-person-accordion .module_item.js--active .module-person_title:not(:empty):before {
    display: none;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 18px;
    font-size: 1.8rem;
    color: inherit;
    margin: 0;
    text-transform: uppercase;
    padding-right: 20px;
}

.module-person-accordion .module_container--inner {
    border-top: 1px solid #f0f0f0;
}

.module-person-accordion .module_item-wrap {
    border-bottom: 1px solid #f0f0f0;
    padding: 24px 0;
}

.module-person-accordion--board .module_item-wrap {
    border-bottom: 1px solid #d9d6d6;
}

.module-person-accordion .module_item-wrap:first-child {
    border-top: 1px solid #f0f0f0;
}

.module-person-accordion .module-person_wrap-container {
    transition: all 0.3s ease-in-out;
}

.module-person-accordion .js--active .module-person_wrap-container {
    padding-left: 16%;
}

.module-person-accordion .module-person_name-container h3:before {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    color: #e20074;
}

.module-person-accordion .module_item {
    padding: 0;
    border: 0 none;
    position: relative;
    overflow: hidden;
}

.module-person-accordion .module_item.js--active h3:before {
    content: "\edba";
}

.module-person-accordion .module-person_name {
    margin-right: 10px;
    font-family: "TeleGroteskNext-Ultra";
    transition: all 0.3s ease-in-out;
}

.module-person-accordion .js--active .module-person_name {
    color: #e20074;
    display: block;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_description-container {
    padding: 15px 15px 0 0;
    text-align: justify;
}

.module-person-accordion .module-person_res-photo-container {
    display: none;
}

.module-person-accordion .module-person_description-container p {
    color: #6a6a6a;
/*     margin: 0; */
}

.module-person-accordion .module-person_photo-container {
    position: absolute;
    top: 0;
    left: -100%;
    width: 15%;
    transition: all 0.3s ease-in-out;
    padding-right: 10px;
    opacity: 0;
}

.module-person-accordion .js--active .module-person_photo-container {
    left: 0;
    opacity: 1
}

.module-person-accordion .module-person_photo-container img {
    display: block;
    margin: auto;
}

.module-person-accordion .module-person_description > *:first-child {
    margin-top: 0;
}

.module-person-accordion .module-person_res-photo-container > span {
    margin-right: 10px;
}

.module-person-accordion--board .module_container--inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.module-person-accordion--board .module_item-wrap {
    width: 100%;
}

.module-person-accordion--board.module-person-accordion .module-person_photo-container {
    width: 23%;
}

.module-person-accordion--board.module-person-accordion .js--active .module-person_wrap-container {
    padding-left: 25%;
}

@media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_res-photo-container > span {
        display: block;
        margin: 0 0 10px 0;
    }
    .module-person-accordion .js--active .module-person_wrap-container {
        padding-left: 0;
    }
    .module-person-accordion .module-person_photo-container {
        position: static;
        width: 100%;
        padding: 0;
        margin: 20px 0;
        display: none;
    }
    .module-person-accordion .js--active .module-person_photo-container {
        display: block;
    }
    .module-person-accordion .module-person_name {
        display: block;
    }
    .module-person-accordion .module-person_title {
        padding-left: 0;
    }
    .module-person-accordion .module-person_title:before {
        content: '';
    }
    .module-person-accordion--board .module_item-wrap {
        width: 100%;
    }
    .module-person-accordion--board.module-person-accordion .module-person_photo-container {
        width: 100%;
    }
    .module-person-accordion--board.module-person-accordion .js--active .module-person_wrap-container {
        padding-left: 0;
    }
    .module-person-accordion .module-person_photo-container img {
        max-width: 200px
    }
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details_photo-container,
.module-person-details_name-container {
    display: inline-block;
    vertical-align: middle;
}

.module-person-details_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

@media only screen and (max-width: 768px) {
    .module-person-details_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    font-size: 3.6rem;
    color: #e20074;
}

.module-person-details_title {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
}

.module-person-details_description-container {
    margin-top: 40px;
}

.module-presentation .module_body {
    display: none;
}


/*------ Q4 Preview Toolbar ------*/

body.PreviewBody {
    margin: 0;
    background-position: 0;
}

body.PreviewBody .PreviewToolBar {
    position: fixed;
    top: 100%;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    background: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    transform: translate(0, -100%);
    font-size: 24px;
    font-size: 2.4rem;
    cursor: pointer;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
    content: "\ed6d";
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: inline-block;
    vertical-align: middle;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 15px;
    line-height: 50px;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
    float: none;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
    content: "Select Preview Type:";
}

body.PreviewBody .PreviewToolBar .PreviewDateControls {
    float: right;
}

body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    content: "Select Preview Date:";
}

body.PreviewBody .PreviewToolBar img {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="radio"],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    display: inline-block;
    margin-right: 5px;
    font-family: Arial, Helvetica !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: #e20074;
    color: #fff !important;
}

@media only screen and (max-width: 1024px) {
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
    body.PreviewBody .PreviewToolBar .PreviewDateControls {
        display: block;
        float: none;
        margin-bottom: 15px;
    }
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
    body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    body.PreviewBody .PreviewToolBar input[type="radio"],
    body.PreviewBody .PreviewToolBar label,
    body.PreviewBody .PreviewToolBar input[type="text"],
    body.PreviewBody .PreviewToolBar select,
    body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
}


/*-------- Search Modules --------*/

.module-search {
    position: relative;
    text-align: right;
    opacity: 0;
    height: 0;
    overflow: hidden;
    border-bottom: 3px solid #e20074;
    position: absolute;
    left: 20px;
    right: 20px;
    transition: all 0.3s ease-in-out;
    top: 110px;
    z-index: 1;
}

.js--sticky-header .module-search {
    top: 80px;
}

.module-search-toggle_button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    vertical-align: top;
}

.module-search-toggle_button--open {
    background: url(../design/svg/icon-search-white.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

.module-search-toggle {
    text-align: right;
    padding-top: 25px;
    transition: all 0.3s ease-in-out;
    padding-right: 8px;
    float: right;
    display: inline-block;
}

.module-search-toggle_button--close {
    display: none;
}

.js--search-toggle .module-search-toggle_button--close {
    display: inline-block;
    color: #e20074;
}

.js--search-toggle .module-search-toggle_button--open {
    display: none;
}

.js--search-toggle .module-search {
    opacity: 1;
    height: 44px;
}

.module-search_input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

.module-search_input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.module-search_input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

.module-search_input[type="text"] {
    display: inline-block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 0;
    color: #fff;
    display: inline-block;
    font-size: 22px;
    height: 41px;
    line-height: 24px;
    opacity: .8;
    padding: 0 0 0 20px;
}

.module-search_button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent url("../design/svg/icon-search-white.svg");
    font-size: 0;
    cursor: pointer;
}

.module-search-result_link {
    margin-bottom: 15px;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description p:last-child {
    display: inline;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_description + p:after {
    content: "...";
}

.module-search-result_url {
    display: none;
}

.module-search-result .module_item {
    padding-right: 10px;
}

@media only screen and (max-width: 1024px) {
    .module-search {
        top: 60px;
    }
    .js--sticky-header .module-search {
        top: 60px;
    }
}


/*-------- SEC Module CSS --------*/

.module-sec-links_item {
    margin-top: 15px;
    text-transform: uppercase;
}

.module-sec {
    font-family: "TeleGroteskNext-Bold";
}

.module_pagination-wrap {
    margin-top: 30px;
}

.module_container--highlights {
    padding-bottom: 55px;
}

.module-sec .module_header {
    display: block;
    background-color: #e20074;
}

.module-sec .module_header-text {
    padding: 12px 25px;
    color: #fff;
}

.module-sec .module_item {
    padding: 0;
}

.layout:not(.layout--home) .pane--content .module-sec--widget .module_container--inner {
    max-width: 100%;
    padding: 0
}

.module-sec--widget .module-sec-highlights,
.module-sec--widget .module_container--widget {
    max-width: 1205px;
    margin: 0 auto;
    padding: 0 20px;
}

.module-sec .module_item {
    border-bottom: 1px solid #f0f0f0;
    border-top: 0;
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 7px 25px;
}

.module-sec .module_item .module-sec_filing {
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .module-sec .module_header {
        display: none;
    }
    .module-sec .module_header + .module_item {
        border-top: 2px solid #e20074;
    }
    .module-sec .module_item {
        padding: 15px 0;
    }
    .module-sec .module_item:first-child {
        border-top: 2px solid #e20074;
    }
    .module-sec .module_item:last-child {
        border-bottom: 2px solid #e20074;
    }
    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }
    .module-sec .module_item + .module_footer {
        border-bottom: 2px solid #e20074;
    }
    .module-sec .module_item .grid_col > span,
    .module-sec .module_item .grid_col > ul {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        min-height: 1px;
        margin-right: -.25em;
        box-sizing: border-box;
        padding-right: 10px;
    }
    .module-sec .module_item .grid_col:before {
        content: attr(data-before);
        font-weight: bold;
        display: inline-block;
        vertical-align: top;
        width: 50%;
        min-height: 1px;
        margin-right: -.25em;
        box-sizing: border-box;
    }
}

.module-sec_download-list-item {
    display: inline-block;
}

.module-sec_download-list .module_link {
    margin: 0 0 5px 0;
}

.module-sec_download-list .module_link:before {
    font-size: 30px;
    font-size: 3rem;
}

@media only screen and (max-width: 768px) {
    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 15px;
    }
}

.module-sec-details_date,
.module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec-details_download-list-item {
    display: inline-block;
}

.module-sec-details_download-list .module_link {
    margin: 0;
}

.module-sec-details_download-list .module_link:before {
    font-size: 24px;
    font-size: 2.4rem;
}


/*---- Accessibility Skip Link ---*/

.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
    top: 0;
    background: #e20074;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}


/*------ Stock Chart Widget ------*/

.module-stock-chart .module_container--inner {
    background: #fff;
    padding: 20px;
    -webkit-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    -moz-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
}
.module-stock-chart iframe {
    width: 100%;
    min-height: 536px;
}
.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #e20074;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #e20074;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #e20074;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #e20074;
}

.module-stock-chart .highcharts-navigator rect {
    fill: rgba(226, 0, 116, 0.6);
}

.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(226, 0, 116, 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: #e20074;
}

.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: #e20074;
    stroke: #e20074;
}

.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-tooltip span > span + br +span {
    display: none;
}


/*------ Stock Header Module -----*/

.module-stock-header {
    text-align: left;
}

.module-stock-header .module_container--inner {
    display: flex;
    justify-content: space-between;
}

.module-stock-header_price-wrap {
    border-bottom: 1px solid #f0f0f0;
}

.module-stock-header_container {
    width: 32%;
    padding: 40px 30px;
    background: #fff;
    border-bottom: 4px solid #e20074;
    -webkit-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    -moz-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    box-shadow: 0px 0px 10px 1px rgba(231, 231, 231, 1);
}

.module-stock-header_description1 {
    display: block;
    font-weight: bold;
    margin-bottom: 16px;
}

.module-stock-header_change,
.module-stock-header_perchange {
    display: block;
    margin: 0;
    font-family: "TeleGroteskNext-Bold";
}

.module-stock-header_change-wrap {
    display: inline-block;
    position: relative;
    padding-right: 30px;
    vertical-align: middle;
}

.module-stock-header_change-wrap.module-stock-header_down:after {
    position: absolute;
    content: "\e90d";
    font-family: 'q4-icons';
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    display: block;
    right: 0;
    color: red;
    top: 0;
    font-size: 38px;
}

.module-stock-header_change-wrap.module-stock-header_up:after {
    position: absolute;
    content: "\e90d";
    font-family: 'q4-icons';
    display: block;
    right: 0;
    color: #29c971;
    top: -4px;
    font-size: 38px;
    vertical-align: middle;
}

.module-stock-header_stock-price {
    display: inline-block;
    margin-bottom: 0;
    color: #000;
    line-height: 65px;
    font-size: 68px;
    font-family: "TeleGroteskNext-Ultra";
    margin-right: 10px;
    vertical-align: middle;
}

.module-stock-header_stock-price:before {
    content: '$';
}

.module-stock-header_market-value {
    float: right;
    font-family: "TeleGroteskNext-Bold";
    color: #000;
    padding-right: 20px;
}

.module-stock-header_percent-change:before {
    content: '(';
}

.module-stock-header_stock-market-wrap {
    font-size: 14px;
    color: #6a6a6a;
    letter-spacing: 0.013px;
    line-height: 17px;
    padding: 10px 0;
}

.module-stock-header_market-text {
    padding-right: 20px;
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_percent-change:after {
    content: ')';
}

.module-stock-header_volume {
    display: inline-block;
    float: right;
    font-family: "TeleGroteskNext-Bold";
    color: #000;
    padding-right: 20px;
}

.module-stock-header_volume-wrap {
    font-size: 14px;
    color: #6a6a6a;
    letter-spacing: 0.013px;
    line-height: 17px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.module-stock-header_description3 {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
}

.module-stock-header_date-wrap {
    font-size: 14px;
    color: #5a5a5a;
    padding-top: 10px;
}

@media only screen and (max-width: 1233px) {
    .module-stock-header_container {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 1165px) {
    .module-stock-header_stock-price {
        font-size: 60px;
    }
}

@media only screen and (max-width: 1080px) {
    .module-stock-header_change-wrap {
        font-size: 16px;
    }
    .module-stock-header_stock-price {
        font-size: 55px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-stock-header_container {
        padding: 40px 30px;
    }
    .module-stock-header_change-wrap {
        font-size: 18px;
    }
    .module-stock-header_stock-price {
        font-size: 72px;
    }
    .module-stock-header_container {
        order: 2;
        width: 100%;
    }
    .module-stock-header .module_container--inner {
        flex-wrap: wrap;
    }
    .module-stock-header_info {
        width: 100%;
    }
    .module-stock-header_info p:first-child {
        margin-top: 0;
    }
}

@media only screen and (max-width: 481px) {
    .module-stock-header_stock-price {
        font-size: 60px;
    }
    .module-stock-header_container {
        padding: 40px 17px;
    }
}


/*------ Stock Quote Module ------*/

.module-stock_column {
    padding-top: 10px;
}

.module-stock_right-block .module-stock_label,
.module-stock_right-block .module-stock_value {
    display: block;
    padding: 20px 15px 15px 0;
    text-transform: uppercase;
}

.module-stock-quote .module-stock_value {
    color: #6a6a6a;
}

.module-stock .module_options {
    margin-bottom: 40px;
}

.module-stock_right-block .module-stock_value:before {
    content: "$";
}

.module-stock_right-block .module-stock_label {
    font-family: "TeleGroteskNext-Ultra";
}

.module-stock-historical .module-stock .module_container--content {
    border-top: 1px solid rgba(34, 34, 34, 0.2);
}

@media only screen and (max-width: 768px) {
    .module-stock-historical .module_options-label,
    .module-stock-historical .module_options-select,
    .module-stock-historical .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module-stock_lookup-title {
    display: block;
    color: #000;
    font-family: "TeleGroteskNext-Ultra";
    margin-bottom: 16px;
    font-size: 18px;
    margin: 0;
}

.module-stock .stock-historical-range .module_options > *:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_value .module-stock_price {
    display: inline-block;
    margin-bottom: 0;
    color: #000;
    line-height: 65px;
    font-size: 72px;
    font-family: "TeleGroteskNext-Ultra";
    padding-right: 40px;
    vertical-align: middle;
    position: relative;
}

.module-stock_value.module-stock_up .module-stock_price:after {
    position: absolute;
    content: "\e90d";
    font-family: 'q4-icons';
    display: block;
    right: 0;
    color: #29c971;
    top: -4px;
    font-size: 38px;
    vertical-align: middle;
}

.module-stock_value.module-stock_down .module-stock_price:after {
    color: red;
    position: absolute;
    content: "\e90d";
    font-family: 'q4-icons';
    display: block;
    right: 0;
    top: -4px;
    font-size: 38px;
    vertical-align: middle;
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.module-stock_left-block {
    padding-right: 10px;
}

.module-stock_left-block .module-stock_value--market {
    font-size: 14px;
    color: #6a6a6a;
    letter-spacing: 0.013px;
    line-height: 17px;
    padding: 10px 0;
}

.module-stock_left-block .module-stock_value--volume {
    font-size: 14px;
    color: #6a6a6a;
    letter-spacing: 0.013px;
    line-height: 17px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.module-stock_left-block .module-stock_price--value {
    border-bottom: 1px solid #f0f0f0;
}

.module-stock_left-block .module-stock_market {
    float: right;
    padding-right: 20px
}

.module-stock_left-block .module-stock_volume {
    float: right;
    padding-right: 20px
}

.module-stock_left-block-inner {
    padding: 40px 30px;
    background: #fff;
    border-bottom: 4px solid #e20074;
    -webkit-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    -moz-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    box-shadow: 0px 0px 10px 1px rgba(231, 231, 231, 1);
}

@media only screen and (max-width: 1024px) {
    .module-stock_left-block {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .module-stock_right-block .module-stock_label,
    .module-stock_right-block .module-stock_value {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        border-bottom: 1px solid #f0f0f0;
    }
    .module-stock_right-block .module-stock_value {
        text-align: right;
    }
}

.module-stock_right-block .module-stock_label {
    border-bottom: 1px solid #f0f0f0;
}

.module-stock-historical .module-stock_lookup-title,
.module-stock-historical .module_options-label {
    display: none;
}

.module-stock-historical .module-stock_label > span,
.module-stock-historical .module-stock_value > span {
    display: block;
    padding: 15px 20px;
}

.module-stock-historical .module-stock_value.module-stock_open:before,
.module-stock-historical .module-stock_value.module-stock_price:before,
.module-stock-historical .module-stock_value.module-stock_high:before,
.module-stock-historical .module-stock_value.module-stock_low:before {
    content: "$";
}

.module-stock-historical .module_options {
    text-align: center;
}

.module-stock-historical .module-stock_column {
    padding-left: 30px;
    padding-top: 0;
}

.module-stock-historical .module-stock_column ~ .module-stock_column {
    border-left: 1px solid #969696;
}

.module-stock-historical .module-stock_label {
    line-height: 21px;
    font-family: "TeleGroteskNext-Ultra";
    text-transform: uppercase;
    padding-bottom: 15px;
    padding-top: 20px;
}

.module-stock-historical .module-stock_value {
    font-family: "TeleGroteskNext-Thin";
    font-size: 22px;
    line-height: 24px;
    padding-bottom: 20px;
}

.module-stock-historical .module_container--wrap {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.module-stock-historical .button {
    vertical-align: top;
}

@media only screen and (max-width: 768px) {
    .module-stock-historical .module-stock_label > span,
    .module-stock-historical .module-stock_value > span {
        padding: 15px 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock-historical .module-stock_label > span,
    .module-stock-historical .module-stock_value > span {
        padding: 15px 0 15px 5px;
    }
}

@media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
    .module-stock-historical .module-stock_column ~ .module-stock_column {
        border-left: 0;
    }
    .module-stock-historical .module-stock_column {
        border-bottom: 1px solid #969696;
        margin-bottom: 20px;
    }
}

.module-stock_up {
    color: #23a217;
}

.module-stock_down {
    color: #b72121;
}

.module-stock_label {
    font-weight: normal;
}

.module-stock_value .module-stock_price:before,
.module-stock_value .module-stock_high:before,
.module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before,
.module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before,
.module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
    content: "$";
}

.module-stock_date {
    font-size: 14px;
    color: #5a5a5a;
}

.module-stock_date-text {
    padding-top: 10px;
    display: block;
}

.module-stock_delay {
    padding-top: 5px;
}


/*- MailingList Subscribe Module -*/

.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.module-subscribe_table table tr {
    line-height: 1;
}

.module-subscribe_table tbody {
    width: 100%;
    display: block;
}

.module-subscribe_form {
    font-size: 0;
}

.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}

.module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}

.module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}

.module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}

.module-subscribe_form tr.module-subscribe_notes-text,
.module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .module-subscribe_form tr {
        width: 100%;
    }
    .module-subscribe_form tr:nth-child(even) {
        padding-left: 0;
    }
    .module-subscribe_form tr:nth-child(odd) {
        padding-right: 0;
    }
}

.module-subscribe_form td {
    display: block;
}

.module-subscribe_form label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 22px;
    font-size: 2.2rem;
}

@media only screen and (max-width: 1024px) {
    .module-subscribe_form label {
        line-height: 28px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .module-subscribe_form label {
        line-height: 20px;
        font-size: 16px;
    }
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}

.module-subscribe .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}


/* MailingList Unsubscribe Module */

.module-unsubscribe_table {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}

.module-unsubscribe_table td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table td {
        padding-right: 0;
    }
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.module-unsubscribe_table .module_input[type="text"] {
    background-color: #fff;
}


/*==================================
 ----------- LAYOUT CSS -----------
==================================*/


/*------- iframe layout CSS ------*/

.layout--iframe .pane--content .module {
    padding: 35px 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}


/*==================================
 ------------ BLANK CSS -----------
==================================*/


/*-------- Layout Specific -------*/

.layout_header {
    padding-top: 120px;
    transition: all 0.3s ease-in-out;
}

.js--sticky-header .layout_header {
    padding-top: 60px;
}

@media only screen and (max-width: 1024px) {
    .layout_header {
        padding-top: 78px;
    }
    .js--sticky-header .layout_header {
        padding-top: 59px;
    }
}

@media only screen and (max-width: 480px) {
    .layout_header {
        padding-top: 70px;
    }
}

.layout--home .pane--content {
    text-align: center;
}

.layout {
    overflow-x: hidden;
}

.layout.js--mobile {
    position: absolute;
    overflow-x: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}


/*--------- Pane Specific --------*/

.pane--header {
    position: fixed;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 10;
    transition: all 0.3s ease-in-out;
    padding-top: 20px;
    top: 0;
}

.js--sticky-header .pane--header {
    padding-top: 0;
}

.pane--header .pane_inner {
    max-width: 1205px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.js--search-toggle .pane--header {
    padding-bottom: 100px;
}

.js--sticky-header .js--search-toggle .pane--header {
    padding-bottom: 90px;
}

.pane--header .module,
.pane--header .nav {
    vertical-align: baseline;
}

.pane--header .module-logo {
    vertical-align: middle;
    transition: all 0.3s ease-in-out;
    padding-top: 15px;
    position: relative;
}

.pane--header .module-logo .module-link-logo img {
    width: 153px;
    height: 30px;
}

.pane--header .module-logo .module-link-corp {
    position: absolute;
    top: -23px;
    z-index: 20;
    color: #fff;
    font-size: 15px;
}

.pane--header .module-logo .module-link-corp img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

@media(max-width: 1024px) {
    .pane--header .module-logo .module-link-corp {
        display: none;
    }
}

.pane--header .layout_toggle {
    display: none;
    margin-top: 4px;
    float: right;
}

.pane--header .layout_toggle i {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 18px;
    padding-left: 10px;
    vertical-align: middle;
    border-left: 1px solid #fff;
}

.pane--header .layout_toggle span {
    vertical-align: middle;
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    font-family: "TeleGroteskNext-Ultra";
    padding-right: 8px;
}

.pane--header .layout_toggle i:focus {
    outline: none;
}

.js--mobile .pane--header .layout_toggle i:before {
    content: "\ed6d";
}

@media only screen and (max-width: 1024px) {
    .pane--header .module {
        padding-top: 0;
    }
    .pane--header .module-logo img {
        margin-bottom: 0;
    }
    .pane--header .layout_toggle {
        display: inline-block;
        color: #fff;
    }
    .pane--header .nav {
        display: none;
    }
    .pane--header {
        padding-top: 23px;
        padding-bottom: 20px;
    }
    .module-search-toggle {
        padding-right: 20px;
    }
    .js--sticky-header .pane--header {
        padding-top: 14px;
        padding-bottom: 10px
    }
    .js--search-toggle .pane--header {
        padding-bottom: 100px;
    }
    .module-search-toggle {
        padding-right: 10px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 480px) {
    .pane--header .layout_toggle span {
        display: none;
    }
}

.layout--home .pane--banner {
    height: 600px;
}

.pane--banner {
    background-image: url("../design/bg-hero-corp_site_global-header-desktop.jpg");
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 275px;
    background-position: center center;
}
@media(max-width: 1024px){
    .pane--banner {
        background-image: url("../design/bg-hero-corp_site_global-header-tablet.jpg");
        color: #fff;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
}

@media(max-width: 767px){
    .pane--banner {
        background-image: url("../design/bg-hero-corp_site_global-header-mobile.jpg");
        color: #fff;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
}
/*.Sectionpage-news-events .pane--banner {
    background-image: url("../design/banner/news-events-banner.jpg");
}*/

.pane--banner:before {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    content: "";
    background: rgba(27, 43, 70, 0.4);
}

.pane--banner .pane_inner {
    max-width: 1205px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.layout--home .pane--banner .pane_inner {
    max-width: 100%;
    padding: 0;
}

.pane--banner .module-page-title {
    height: 275px;
    color: #fff;
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}

.module-page-title .module_container--outer {
    align-self: center;
}

.pane--banner h1 {
    margin: 0;
    font-size: 72px;
    color: #fff;
    line-height: 65px;
    letter-spacing: -1px;
}

@media only screen and (max-width: 1024px) {
    .pane--banner {
        text-align: center;
    }
    .pane--banner h1 {
        font-size: 54px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .pane--banner h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.pane--breadcrumb {
    background: #000;
}

.pane--breadcrumb .pane_inner {
    max-width: 1205px;
    margin: 0 auto;
    padding: 0 20px;
}

@media only screen and (max-width: 1024px) {
    .pane--breadcrumb .pane_inner {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .pane--breadcrumb .pane_inner {
        max-width: none;
    }
}

@media only screen and (max-width: 1024px) {
    .pane--navigation {
        position: fixed;
        top: 68px;
        left: 100%;
        bottom: 0;
        transition: 0.3s ease-in-out;
        overflow-y: scroll;
        z-index: 120;
        background: #000;
        width: 0;
    }
    .js--mobile .pane--navigation {
        left: 0;
        width: 100%;
    }
    .pane--navigation .pane_inner {
        padding: 0;
    }
}

.pane--content .module {
    padding-top: 45px;
    padding-bottom: 55px;
}

.pane--content .module_container--outer {
    max-width: 1205px;
    margin: 0 auto;
    padding: 0 20px;
}

.pane--content .module--thin {
    padding-top: 25px;
    padding-bottom: 35px;
}

.pane--content .module--thin-top {
    padding-top: 25px;
}

.pane--content .module--thin-bottom {
    padding-bottom: 35px;
}

.pane--content .module--thick {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pane--content .module--thick-top {
    padding-top: 70px;
}

.pane--content .module--thick-bottom {
    padding-bottom: 70px;
}

.pane--content .module--no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.pane--content .module--no-padding-top {
    padding-top: 0;
}

.pane--content .module--no-padding-bottom {
    padding-bottom: 0;
}

.pane--content .module-sitemap {
    padding-bottom: 35px;
}

.pane--footer {
    padding-top: 100px;
    font-size: 14px;
    font-size: 1.4rem;
    background: url('../design/bg-hero-corp_site_global-footer-desktop.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 40%;
    position: relative;
}
@media(max-width: 1024px){
    .pane--footer{
        background: url('../design/bg-hero-corp_site_global-footer-tablet.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center 40%;
    }
}
@media(max-width: 767px){
    .pane--footer{
        background: url('../design/bg-hero-corp_site_global-footer-mobile.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center 40%;
    }
}
.pane--footer:before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.pane--footer .pane_inner {
    max-width: 1205px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.pane--footer .module_title {
    margin-bottom: 20px;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: normal;
    text-transform: capitalize;
    line-height: 28px;
    color: #fff;
    text-align: left;
}

.pane--footer .module_error-container {
    margin-bottom: 20px;
}

.pane--footer .module_error-container p {
    display: none;
}

.pane--footer .module_error-container li {
    margin-bottom: 5px;
}

.pane--footer .module_introduction {
    display: none;
}

.pane--footer .module-links {
    text-transform: uppercase;
}

.pane--footer .module-links li {
    line-height: 1.4;
}

.pane--footer .module-subscribe_email label,
.pane--footer .module-subscribe_list-header,
.pane--footer .module-subscribe_email .module_required,
.pane--footer .module-subscribe .CaptchaContainer {
    display: none;
}

.pane--footer .module-subscribe_form tbody {
    display: block;
}

.pane--footer .module-subscribe_form tr {
    width: 100%;
    margin: 0;
}

.pane--footer .module-subscribe_mailing-list {
    margin: 20px 0 10px;
}

.pane--footer .module-subscribe_list > td {
    padding: 0;
}

.pane--footer .module-subscribe p {
    padding-right: 35px;
    line-height: 1.5;
    font-size: 18px;
}

.pane--footer .module-subscribe_mailing-list.js--revealed,
.pane--footer .module-subscribe .module_actions.js--revealed {
    display: block;
}

.pane--footer .module_input[type="text"] {
    max-width: 300px;
    background: transparent;
    border-bottom: 1px solid #fff;
    padding: 10px 0;
    color: #fff;
}

.pane--footer .js--invalid input[type="text"] {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}

.pane--footer .module-subscribe_mailing-list .module-subscribe_list tr {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px;
}

.pane--footer .module-subscribe_mailing-list .module-subscribe_list tr:last-of-type {
    width: 100%;
}

.pane--footer .module_input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

.module-search_input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.module-search_input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

.pane--footer .module:not(.module-embed) {
    padding-bottom: 60px;
}

.pane--credits {
    padding-bottom: 40px;
    ;
    background: #dcdcdc;
}

.pane--credits .pane_inner {
    max-width: 1205px;
    margin: 0 auto;
    padding: 0 20px;
}

.pane--credits a {
    color: #555555;
}


/*--------- Page Specific --------*/

.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}


/*----------Slider module-----------*/

.module-slider--event .module_container--outer {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0 auto;
    text-align: center;
}

.module-slider--event .module_container--inner {
    display: table-cell;
    vertical-align: middle;
    height: 600px;
}

.module-slider--event {
    color: #fff;
}

.module-slider--event .slick-arrow {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 23px 17px;
}

.module-slider--event .module_event-type {
    font-size: 18px;
    line-height: 21px;
    font-family: "TeleGroteskNext-Ultra";
    text-transform: uppercase;
    margin-bottom: 5px;
}

.module-slider--event .module_headline {
    font-size: 58px;
    line-height: 65px;
    color: #e20074;
    ;
    font-family: "TeleGroteskNext-Ultra";
    margin-bottom: 10px;
}

.module-slider--event .module_date-time {
    font-size: 22px;
    line-height: 24px;
    font-family: "TeleGroteskNext-Thin";
    margin-bottom: 20px;
}

.module-slider--event .module_add-to-calendar-reveal {
    margin-bottom: 20px;
}

.module-slider--event .button--dark {
    border: 1px solid #fff;
    color: #fff;
}

.module-slider--event .module_item-wrap {
    max-width: 890px;
    margin: 0 auto;
    padding: 30px;
}

.module-slider_arrow {
    position: absolute;
    /*max-width: 890px;*/
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
}

.module-slider--event .button--dark {
    margin-left: 10px;
}

.module-slider--event .button--dark:hover {
    color: #000;
}

.module-slider .slick-slider {
    padding: 0;
}

.slick-dots {
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick-dots li {
    display: inline-block;
    padding: 5px;
}

.slick-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 100%;
    border: 1px solid #e20074;
    background-color: #fff;
    cursor: pointer;
    line-height: 10px;
    color: transparent;
}

.slick-dots .slick-active button {
    background-color: #e20074;
}

.module-infographic .slick-arrow {
    color: #e20074;
}

.module-slider .slick-slider .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
}

.module-infographic .slick-arrow:before {
    font-size: 30px
}

.module-slider--event .slick-arrow:before {
    font-size: 24px;
    color: #fff;
}

.module-slider .module_add-to-calendar-reveal {
    color: #fff;
}

.module-slider .module-slider_title h1 {
    margin: 0;
}

.module-slider .module_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.module-slider_description {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 10px;
}

.module-slider_description .module_date-time {
    font-size: inherit;
}

.module-slider_description p {
    margin: 10px 0;
}

.module-slider_description p:first-child {
    margin-top: 0;
    margin-bottom: 10px;
}

.module-slider_description .module_links {
    margin-top: 10px;
    margin-bottom: 0;
}

.module-slider--event .module_headline-text {
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .module-slider--event .module_headline {
        font-size: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .module-slider--event .module_headline {
        font-size: 40px;
        line-height: 48px;
    }
    .module-slider--event .slick-arrow {
        display: none !important;
    }
    .module-slider .slick-slider {
        padding: 0;
    }
    .module-slider--event .module_container--inner {
        height: 530px;
    }
    .layout--home .pane--banner {
        height: 530px;
    }
    .module-slider--event .module_item-wrap {
        padding: 30px;
    }
}

@media only screen and (max-width: 380px) {
    .module-slider--event .button {
        margin-bottom: 10px;
        margin-left: 0;
    }
}


/*--------End SLider Module---------*/


/*-------- Module Specific -------*/

.module-overview p {
    margin-bottom: 40px;
}

.module-overview_hidden {
    display: none;
}

.module-overview_hidden.js--revealed {
    display: block;
}

.module-overview_button:before {
    content: "Read More";
}

.module-overview_button.js--active:before {
    content: "Show Less";
}

.module-infographic .module_item {
    padding: 0 20px 20px
}

.module-infographic h5 {
    color: #000;
    font-size: 22px;
    font-family: "TeleGroteskNext-Bold";
    margin-bottom: 0;
}

.module-infographic h4 {
    font-size: 54px;
    font-size: 5, 4rem;
    color: #e20074;
    margin-top: 0;
    font-family: "TeleGroteskNext-Ultra";
    margin: 0;
    line-height: 1.1;
}

.module-infographic p {
    margin: 0;
    font-size: 22px;
    line-height: 30px;
    color: #6a6a6a;
}

.module-infographic .module_icon img {
    display: inline-block;
}

.module-infographic .module_icon span {
    font-size: 54px;
    color: #e20074;
    line-height: 1;
    display: inline-block;
    font-family: "TeleGroteskNext-Ultra";
    margin-left: 5px;
}

.module-infographic .module_icon i {
    font-size: 58px;
    color: #e20074;
    line-height: 1;
}

.module-social .module_tabs {
    margin-bottom: 10px;
}

.module-social .module_tabs .button {
    display: block;
}

.module-social .module_tabs .button.js--selected {
    background: #e20074;
    color: #fff;
}

.module-social .module_tab {
    display: inline-block;
    padding-right: 5px;
    padding-bottom: 5px;
}

@media (max-width: 640px) {
    .module-social .module_tab {
        width: 50%;
    }
}

.module-social .module_container--content {
    padding: 0;
}

@media (max-width: 767px) {
    .module-social .module_container--content {
        padding: 0 20px;
        margin: 0;
    }
}

.module-social .module_container--content .slick-arrow {
    color: #e20074;
}

.module-social .module_headline-link {
    color: #e20074;
}

.module-social .module_item.grid_col {
    padding: 0 0 0 20px;
    margin: 15px 0;
}

@media (max-width: 767px) {
    .module-social .module_item.grid_col {
        padding-left: 0;
    }
}

.module-social .module_item-wrap {
    padding: 30px;
    background-color: #f6f6f6;
}

.module-social .module_item + .module_item {
    border-top: none;
}

.module-social .module_date {
    text-align: left;
    margin-bottom: 15px;
}

.module-social .module_headline {
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

.module-social .module_icon {
    float: right;
    margin-left: 5px;
    margin-bottom: 5px;
    font-size: 20px;
    font-size: 2rem;
}

.module-social .module_icon .q4-icon_twitter {
    color: #1da1f2;
}

.module-social .module_icon .q4-icon_facebook {
    color: #365899;
}

.module-social .module_icon .q4-icon_youtube {
    color: #cc181e;
}


/*----------Pane Header section--------*/

.module-links--header {
    text-align: right;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    height: 26px;
}

.module-links--header li {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    line-height: 1;
    padding: 0 10px;
    margin-right: -0.25em;
}


/*.module-links--header li:last-child:before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-left: 1px solid #fff;
}*/

.module-links--header i {
    font-size: 18px;
    padding-right: 3px;
    display: inline-block;
    vertical-align: middle;
}

.module-links--header a {
    color: #fff;
    font-size: 14px;
    display: block;
    font-family: "TeleGroteskNext-Ultra";
}

.js--sticky-header .module-links--header {
    height: 0;
    opacity: 0;
}

@media only screen and (max-width: 1024px) {
    .module-links--header {
        display: none;
    }
}


/*------End Pane Header section--------*/


/*--------- Pane footer section--------*/

.module-contact p {
    font-size: 22px;
    line-height: 24px;
    color: #fff;
    letter-spacing: 0.02px;
    font-family: "TeleGroteskNext-Thin";
}

.module-contact li {
    font-size: 22px;
    line-height: 24px;
    width: 47%;
    color: #fff;
    display: inline-block;
    padding-right: 20px;
    font-family: "TeleGroteskNext-Thin";
}


/*------End Pane footer section--------*/


/*--------- Pane credite section--------*/

.module-links--social {
    padding-top: 30px
}

.module-links--social li {
    display: inline-block;
    vertical-align: top;
}

.module-links--social li a {
    color: #555555;
    font-size: 32px;
    padding: 0 4px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.module-links--social li:last-child a {
    font-size: 12px;
    display: block;
    line-height: 27px;
}

.module-links--footer {
    padding-top: 29px;
    padding-bottom: 15px;
}

.module-links--footer li {
    display: inline-block;
}

.module-links--footer li a {
    padding: 3px 20px 3px 0;
    font-size: 17px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    display: block;
    color: #555555;
    text-transform: uppercase;
}

.module-links--credit {
    padding-bottom: 30px;
}

.module-links--credit li {
    display: inline-block;
    vertical-align: top;
}

.module-links--credit li a {
    font-size: 12px;
    padding: 3px 20px 3px 0;
    margin-right: 3px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.copyright {
    text-align: right;
    font-size: 12px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    padding-top: 8px;
}

.module-q4-credits-link {
    font-size: 12px;
}


/*------End Pane credite section--------*/


/*------Landing page about--------*/

.module-stock-header_info {
    vertical-align: middle;
    width: 66%;
    padding-left: 20px
}

.module-stock-header_info {
    text-align: left;
    border: 1px solid #e20074;
    padding: 15px;
    background: #fff;
}

.module-stock-header_info p {
    line-height: 30px;
    font-size: 22px;
    text-align: justify;
}

@media only screen and (max-width: 480px) {
    .module-stock-header_info p {
        text-align: left;
    }
}

.module-stock-header_info p:first-child {
    font-family: "TeleGroteskNext-Ultra";
    font-size: 28px;
    line-height: 28px;
}

@media only screen and (max-width: 1024px) {
    .module-stock-header_info p,
    .module-financial_quarter .module-financial_supplementary .module_link-supplementary,
    .module-infographic p {
        line-height: 28px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 1023px) {
    .module-stock-header_info p:first-child {
        margin-top: 0;
    }
    .module-stock-header_info {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .module-stock-header_info p,
    .module-financial_quarter .module-financial_supplementary .module_link-supplementary,
    .module-infographic p {
        line-height: 20px;
        font-size: 16px;
    }
}


/*----End Landing page about--------*/


/*------Landing page Social Twitter--------*/

.module-info .module_container--inner {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
}

.module-info_twitter {
    background-color: #fff;
    -webkit-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    -moz-box-shadow: -1px -1px 9px 3px rgba(231, 231, 231, 1);
    box-shadow: 0px 0px 10px 1px rgba(231, 231, 231, 1);
}

.module-downloads--video img {
    width: 100%;
    height: 360px;
}


/*---End Landing page Social Twitter--------*/

.module-isin .module_legend {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .module-isin .module_legend {
        text-align: left;
    }
    .table--ratings .table_row-header {
        display: none;
    }
    .table--isin .table_row-header:first-child td {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        box-sizing: border-box;
        margin-right: -.25em;
    }
    .table--isin th {
        display: none;
    }
    .table--ratings td,
    .table--isin td {
        display: block;
        padding: 0;
    }
    .table--ratings td[data-heading]:before,
    .table--isin td[data-heading]:before {
        content: attr(data-heading);
        font-weight: bold;
        display: inline-block;
        vertical-align: top;
        width: 50%;
        min-height: 1px;
        box-sizing: border-box;
        margin-right: -.25em;
    }
    .table--ratings td span,
    .table--isin td span {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        min-height: 1px;
        box-sizing: border-box;
        margin-right: -.25em;
        padding-right: 10px;
    }
}

.module-stacked-chart .highcharts-legend rect {
    border: 1px solid #000;
    stroke: rgb(0, 0, 0);
    stroke-width: 0.25px;
}

.module-stacked-chart .highcharts-legend .highcharts-legend-item:first-child rect {
    stroke: #e20074;
    stroke-width: 1px;
}

.module-merger-info a {
    display: block;
    line-height: 1;
}


/*# sourceMappingURL=global.css.map */


/*Global*/


/*Merger  Information*/

.module-merger-information .module-downloads_title {
    padding: 0;
}

.module-merger-information .module-downloads_title-link {
    margin: 0 40px 0 0;
}

.pane--content .module_input[type="text"],
.pane--content .module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input,
.module-form .CaptchaContainer input[type="text"] {
    background: #fff;
    border: 1px solid #aaa;
}

.module_dropdown {
    background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 20px center;
    background-size: 14px 14px;
}

.module-unsubscribe_table .module_input[type="text"] {
    background: transparent;
    border: 1px solid #aaa;
}


/*FAq*/
.module-faq .toggle-all {
    text-align: right;
}
.module-faq_question {
    font-family: 'TeleGroteskNext-Ultra';
    font-size: 22px;
    /*text-transform: uppercase;*/
    position: relative;
    padding-right: 55px;
}

@media only screen and (max-width: 1024px) {
    .module-faq_question {
        line-height: 28px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .module-faq_question {
        line-height: 20px;
        font-size: 16px;
    }
}

.module-faq .module_item .module-faq_question:before {
    content: "\edc2";
    font-family: 'q4-icons';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    color: #e20074;
}

.module-faq .module_item.js--active .module-faq_question:before {
    content: "\edba";
}

.module-financial-quarter .module_q4-icon-links .module_link[href$=".pdf"]:before,
.module-financial-quarter .module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\e913";
}

.module-financial-quarter .module_q4-icon-links .module_link-supplementary[href$=".xlsx"]:before {
    content: "\e91a";
}

.module-financial-quarter .module_q4-icon-links .module_link.module_link-webcast:before,
.module-financial-quarter .module_q4-icon-links .module_webcast-link:before {
    content: "\e918";
}

.module-financial-quarter .module_q4-icon-links .module_link.module_link-news:before {
    content: "\e914";
    margin: 0;
    font-size: 23px;
}

.module-financial-quarter .module_q4-icon-links .module_link.module_link-transcript:before {
    content: "\e913";
    font-size: 30px;
    margin: 0;
}

.module-financial-quarter .module_q4-icon-links .module_link-10-k[href$=".PDF"]:before,
.module-financial-quarter .module_q4-icon-links .module_link-10-k[href$=".pdf"]:before,
.module-financial-quarter .module_q4-icon-links .module_link-10-q[href$=".PDF"]:before,
.module-financial-quarter .module_q4-icon-links .module_link-10-q[href$=".pdf"]:before {
    content: "\e90c";
    margin-left: 0;
}
.module-financial-quarter .module_q4-icon-links .module_link[href$=".xls"]:before, 
.module-financial-quarter .module_q4-icon-links .module_link[href$=".XLS"]:before, 
.module-financial-quarter .module_q4-icon-links .module_link[href$=".xlsx"]:before, 
.module-financial-quarter .module_q4-icon-links .module_link[href$=".XLSX"]:before {
    content: "\e91a";
    font-size: 30px;
}

.module-financial-quarter .module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e90f";
    margin: 0;
}

.module-financial-quarter .module_q4-icon-links .module_link.module_link-video:before {
    content: "\e918";
}

.module-event .module_q4-icon-links .module_link.module_link-webcast:before,
.module-event .module_q4-icon-links .module_webcast-link:before {}

.module_add-to-calendar i.q4-icon_calendar {
    font-size: 30px;
}

.module-event .module_add-to-calendar,
.module-event .module_links {
    display: inline-block;
}

.module-search-result_link {
    margin-bottom: 15px;
    font-family: 'TeleGroteskNext-Ultra';
}

@media(max-width: 768px) {
    .pane--footer .module_input[type="text"] {
        max-width: 100%;
    }
    .pane--footer .module-subscribe_mailing-list .module-subscribe_list,
    .pane--footer .module-subscribe_mailing-list .module-subscribe_list > td,
    .pane--footer .module-subscribe_mailing-list .module-subscribe_list > td > table {
        display: block;
    }
}

.module-links--credit li a {
    font-size: 12px;
    padding: 3px 39px 3px 0;
    margin-right: 3px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.module-links--credit li a:hover,
.module-links--social li a:hover,
.module-links--footer li a:hover {
    color: #000;
}

.module-links--social a {
    text-transform: uppercase;
}

@media(min-width: 1025px) {
    .module-links--footer,
    .module-links--credit {
        float: left;
    }
    .module-links--footer {
        width: 72%;
    }
    .module-links--social {
        float: right;
        width: 28%;
        text-align: right;
    }
    .module.module-q4-credits {
        clear: both;
    }
    .copyright {
        text-align: right;
        font-size: 12px;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
        padding-top: 8px;
        float: right;
    }
    .copyright-mobile {
        display: none;
    }
}

@media(max-width: 1024px) {
    .module-links--social {
        padding-top: 10px;
        width: 100%;
    }
    .module-links--footer li,
    .module-links--credit li {
        display: block;
    }
    .module-links--footer {
        padding-top: 0;
    }
    .copyright {
        display: none;
    }
    .copyright-mobile {
        margin-top: 25px;
        font-family: 'TeleGroteskNext-Thin';
        font-size: 12px;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    .pane--credits {
        box-shadow: -4px 25px 19px -12px rgba(3, 3, 3, 0.16) inset;
        -webkit-box-shadow: -4px 25px 19px -12px rgba(3, 3, 3, 0.16) inset;
        -moz-box-shadow: -4px 25px 19px -12px rgba(3, 3, 3, 0.16) inset;
    }
}

@media(max-width: 480px) {
    .module-links--footer,
    .module-links--credit {
        width: 50%;
        display: inline-block;
        margin-right: -.25em;
    }
}

.module-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 10px 9px 5px 9px;
    display: none;
    z-index: 300;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.module-back-to-top.js--active {
    display: block;
}

#back-top img {
    width: 25px;
    height: 30px;
}

@media(min-width: 1025px) {
    .module-back-to-top {
        display: none !important;
    }
}

.page-press-releases .pane--content {
    font-family: Arial, Helvetica;
    color: #333;
}

.page-press-releases .pane--content p {
    font-size: 18px;
    line-height: 30px;
    color: #333;
}

.page-press-releases .module_headline-link {
    font-size: 18px;
    font-family: Arial, Helvetica;
    line-height: 30px;
    color: #333;
}

.dark a.module_rss-link {
    color: #e20074;
}
.module-breadcrumb a, 
.module-breadcrumb .module-breadcrumb_separator {
    display: none;
}
.module-breadcrumb .module_container.module_container--outer {
    height: 275px;
    color: #fff;
    display: flex;
    /*max-width: 800px;*/
    max-width: 980px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    font-size: 72px;
    line-height: 65px;
    letter-spacing: -1px;
    font-family: "TeleGroteskNext-Ultra";
}
@media(max-width: 1024px){
    .module-breadcrumb .module_container.module_container--outer{
        font-size: 54px;
        line-height: 50px;
    }
}
@media(max-width: 768px){
    .module-breadcrumb .module_container.module_container--outer{
        font-size: 40px;
        line-height: 48px;
    }
}
g.highcharts-legend-item{
    font-family: Arial, Helvetica !important;
}
.module-downloads--video .module_item {
    position: relative;
}
.module-downloads--video .module_item i.q4-icon_play {
    position: absolute;
    z-index: 10;
    font-size: 70px;
    top: 29%;
    left: 43%;
    padding: 12px 12px;
    border: 5px solid #000;
    opacity: .75;
    pointer-events: none;
    border-radius: 100%;
    width: 98px;
    overflow: hidden;
}
.module-downloads--video .module_item:hover i.q4-icon_play {
    opacity: 1;
}



/*-----------236409-----*/

.module_q4-icon-links .module_attachments .module_attachment.Document .module_attachment-link:before {
    content: "\e918";
}

/* 248643 */
.module-slider--event .module_headline-text {
    font-size: 36px;
}

span.module_link.module_add-to-calendar-reveal {
    display: none;
}

.module-splash {
    display:none; 
}

.fancybox-slide .module-splash {
    background-image:url("../design/splash-page-mock-upbg.jpg");
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center center;
    text-align:center;
    color:#fff;
    width: 90%;
    padding: 50px;
    font-family: 'SprintSansWeb';
    font-weight:400;
}

.fancybox-slide .module-splash strong {
    font-family: 'SprintSansWeb';
    font-weight:500;
}

.fancybox-slide .module-splash .color--red {
    color: #E30074;
}

.fancybox-slide .module-splash_header h1 {
    font-family: 'SprintSansWeb';
    font-weight: 700;
    font-size: 90px;;
    line-height: 90px;
    color: #FFFFFF;
}

.fancybox-slide .module-splash_header h1 span {
    display:block;
    color: #E30074;
}

.fancybox-slide .module-splash_header p {
    color: #A1A1A1;
    font-size: 28px;
    font-family: 'SprintSansWeb';
    font-weight:400;
    line-height: 32px;
    max-width: 780px;
    margin: 0 auto;
}

.fancybox-slide .module-splash_button {
    margin-top:40px;
}

.fancybox-slide .module-splash_button span {
    display:block;
    font-size: 22px;
    line-height: 48px;
}

.fancybox-slide .module-splash_button .button {
    font-family: 'SprintSansWeb';
    font-weight:500;
    font-size: 30px;
    padding-bottom:16px;
}

.fancybox-slide .module-splash_footer {
    background:#fff;
    color: #404040;
    max-width: 793px;
    margin: 0 auto;
    position:relative;
    padding:50px 30px 40px 30px;
    margin-top:63px;
}

.fancybox-slide .module-splash_footer:before {
    content:'';
    width: 180px;
    height: 23px;
    background:#f0e9e9;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 18px;
}

.fancybox-slide .module-splash_footer p {
    font-size: 28px;
    font-weight:400;
}

.fancybox-slide .module-splash_footer .module-splash_footer-intro {
    font-size: 30px;
    line-height: 36px;
    color: #404040;
}

.fancybox-slide--splash .fancybox-close-small {
    background:red;
    color:#fff;
}

@media(max-width: 1290px) {
    .fancybox-slide .module-splash {
        width:100%;
    }
}

@media(max-width: 1024px) {
    .fancybox-slide .module-splash_header h1 {
        font-size: 45px;
        line-height: 50px;
    }

    .fancybox-slide .module-splash_header p {
        font-size: 20px;
        line-height: 30px;
    }

    .fancybox-slide .module-splash_footer p {
        font-size:20px;
    }

    .fancybox-slide .module-splash_footer .module-splash_footer-intro {
        font-size: 25px;
        line-height: 31px;
    }
}

.module-tabs-navigation {
    margin:0;
    padding:0;
    list-style-type: none;
    margin-bottom: 40px;
}
.module-tabs-navigation li {
    display:inline-block;
}
.module-tabs-navigation .button {
    background: #fff;
    color: #e20074;
}
.module-tabs-navigation .button:hover,
.module-tabs-navigation .button.js--selected {
    background: #e20074;
    color: #fff;

}
.page-fixed-income .module-tab.js--hidden {
    display:block;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    opacity: 0;
    padding: 0;
}
.fixed-income-wrap {
    position: relative;
}
.fixed-income-wrap .graph-note {
    left: 26%;
    line-height: 20px;
}
.fixed-income-wrap .graph-note {
    position: absolute;
    top: 44px;
    left: 24%;
    width: 130px;
    z-index: 4;
}
.fixed-income-wrap .graph-separator {
    left: 24.5%;
    height: 77%;
}
.fixed-income-wrap .graph-separator {
    position: absolute;
    top: 50px;
    left: 23%;
    width: 1px;
    height: 440px;
    border-left: 1px dashed #000;
    z-index: 4;
}
@media screen and (max-width: 1023px) {
    .graph-note,
    .fixed-income-wrap .graph-separator {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .fixed-income-wrap .highcharts-stack-labels text {
        font-size: 8px !important;
        font-weight: normal !important;
    }
    .fixed-income-chart {
        left: -10px;
        margin: 0 -15px;
        position: relative;
    }
}
@media screen and (max-width: 479px) {
    .fixed-income-chart, 
    .ChartInfo {
        display: none;
    }
    .pane--content .module-sprint-chart {
        padding: 0;
    }
}

/* 276300 */
.module-person-accordion.management .module-person_photo-container {
    position: absolute;
    top: 90px;
/*     left: -100%; */
    width: 15%;
    transition: all 0.3s ease-in-out;
    padding-right: 10px;
/*     opacity: 0; */
}

.module-person-accordion.management .js--active .module-person_title {
    display: block;
    padding-left: 0;
    position: relative;
    right: 178px;
}

.module-person-accordion.management .js--active .module-person_name {
    color: #e20074;
    display: block;
    position: relative;
    right: 178px;
}

.module-person-accordion.management .js-hidden {
    visibility: hidden;
    height: 50px;
}

.module-person-accordion.management .border-top {
     border-top: 1px solid #f0f0f0;
    padding: 24px 0;
}

.module-person-accordion.management .module-person_description-container p {
    color: #6a6a6a;
/*     margin: 0; */
}
/* End 276300 */