/*==================================
 ------------ 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;
}

b,
strong {
    font-weight: bold;
}

small {
  font-size: 90%;
}

em {
    font-style: italic;
}

sup {
    font-size: 60%;
    vertical-align: top;
}
/*---------- Animations ----------*/
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*==================================
 --------- DEFAULT STYLES ---------
==================================*/
body {
    overflow-x: hidden;
    color: #414745;
    font-family: 'Proxima Nova Rg', sans-serif;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    letter-spacing: .1px;
}

/*---------- TYPOGRAPHY ----------*/
h1 {
    font-size: 70px;
    font-size: 7.0rem;
    margin-bottom: 48px;
    line-height: 1.2;
    font-weight:bold;
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 36px;
        font-size: 3.6rem;
    }
}

h2 {
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 35px;
    font-weight:bold;

}

h3 {
    font-size: 20px;
    font-size: 2.0rem;
    margin: 24px 0 16px 0;
    color: #2c2966;
}

h4 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

h5 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #0089ad;
}
a:active, a:focus {
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    line-height: 1.5;
}

i {
    display: inline-block;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

/*------------ COMMON ------------*/
img {
    max-width: 100%;
    margin: 0;
}

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: 14px;
    font-family:'Proxima Nova Lt', sans-serif;
    font-weight: 300;
}
input[type="checkbox"] + label:before, input[type="radio"] + label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid #222;
    margin-right: 8px;
    line-height: 1;
}
input[type="checkbox"]:checked + label:before, input[type="radio"]:checked + label:before {
    width: 15px;
    height: 15px;
    border-width: 1px;
}
input[type="radio"] + label:before {
    border-radius: 100%;
}
input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}

/*-----------------Custom Checkboxes----------------*/

input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"]:focus + label,
input[type="radio"]:focus + label {
    text-decoration: underline;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    cursor: pointer;
    position: relative;
    padding-left: 20px;
}

@media only screen and (max-width: 1024px) {
    input[type="checkbox"] + label,
    input[type="radio"] + label {
        font-size: 12px;
    }
}
/*active state styles general*/

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    content: "";
    width: 15px;
    height: 15px;
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #0089ad;
}

input[type="radio"] + label:before {
    border-radius: 100%;
}

input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after,
input[type="radio"]:checked + label:after {
    content: "";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    left: 4px;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    transition: all .1s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

input[type="radio"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after {
    border-radius: 100%;
}

/*active state styles with middle square*/

input[type="checkbox"]:not(:checked) + label:after,
input[type="checkbox"]:checked + label:after,
input[type="radio"]:checked + label:after {
    width: 7px;
    height: 7px;
    background: #0089ad;
    border: none;
}


/*active state activation*/

input[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
}

input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

/*Checkbox pt toate browserele.*/

/*------- 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,
button,
textarea,
a {
    outline: none
}
a img {
    border: none;
    outline: none;
}
textarea:focus,
input:focus {
    outline: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    margin: 0;
    border-radius: 0;
}
select option {
    font-family: inherit;
}
.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #2c2966;
    color: #2c2966;
    border-radius: 0;
    font-family: 'Proxima Nova Rg', sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
}
.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

.submit,
.button,
.upload,
.dropdown {
    cursor: pointer;
}
.submit,
.button {
    border: 1px solid #0089ad;
    background: #0089ad;
    color: #fff;
    padding: 13px 30px 14px;
    text-transform: uppercase;
    font-size: 15px;
}

a.button {
    text-decoration: none;
}

a.button:link,
a.button:visited,
a.button:hover,
a.button:active {
    text-decoration: none !important;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.button,
.submit {
    transition: 0.3s ease-in-out;
}
.submit:hover,
.button:hover {
    background: #fff;
    color: #0089ad;
}
.button--inverted {
    color: #fff;
}
.button--inverted:hover {
    background: transparent;
    color: #0089ad;
}
.button--inverted.js--disabled {
    background: #fff;
    border-color: #2c2966;
    color: #2c2966;
}
.button--dark {
    border: 1px solid #fff;
    color: #fff;
}
.button--dark:hover {
    background: #fff;
    color: #2c2966;
}

.dropdown {
    padding: 15px 35px 15px 20px;
    background: #fff url("../design/svg/q4-icon_chevron-down-blue.svg") no-repeat right 10px center;
    background-size: 14px 14px;
    min-width: 130px;
    font-size: 16px;
    font-family: 'Proxima Nova Lt';
    font-weight: 600;
}
.dropdown::-ms-expand {
    display: none;
}

/*--------- SPECIAL BOXES --------*/
.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    font-size: 1.4rem;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre;
    overflow: hidden;
}
.code_comment {
    opacity: 0.5;
}

.quote {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(241, 175, 15, 0.5);
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
}
.quote p:before {
    margin-right: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1b";
}
.quote p:after {
    margin-left: 5px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb1c";
}

/*==================================
 -------- Q4 Modules Icons ---------
==================================*/

.module_q4-icon-links .module_link {
    position: relative;
    padding-left: 20px;
    font-weight: 400;
    color: #333;
}
.module_q4-icon-links .module_link:before,
.module_q4-icon-links .module_rss-link:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e9bb";
    font-size: 16px;
    vertical-align: middle;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.module_q4-icon-links .module_rss-link:before {
    position: static;
}
.module_q4-icon-links .module_rss-link:before,
.module_q4-icon-links .module_link.module_link-rss:before {
    content: "\eefa";
}
.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\ea5f";
    padding-right: 5px;
}
.module_q4-icon-links .module_link[href$=".mp3"]:before,
.module_q4-icon-links .module_link[href$=".wmv"]:before,
.module_q4-icon-links .module_link[href$=".MP3"]:before,
.module_q4-icon-links .module_link[href$=".WMV"]:before {
    content: "\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 {
    content: "\ef41";
}
.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: "\ef3e";
}
.module_q4-icon-links .module_link.module_link-webcast:before,
.module_q4-icon-links .module_webcast-link:before {
    content: "\e989";
}
.module_q4-icon-links .module_link.module_link-news:before,
.module_q4-icon-links .module_link.module_link-transcript:before {
    content: "\e99b";
}
.module_q4-icon-links .module_link.module_link-presentation:before {
    content: "\e95c";
}
.module_q4-icon-links .module_link.module_link-file:before {
    content: "\eb81";
}
.module_q4-icon-links .module_link.module_link-sec:before {
    content: "\e9bb";
}
.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\ef3e";
}
.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
    content: "\ef40";
}
.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
    content: "\ef41";
}
.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
    content: "\e9b9";
}

/*==================================
 ----------- TOAST GRID -----------
==================================*/
.grid {
    list-style: none;
    margin-left: -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:not([role=tabpanel]) {
    display: none !important;
}
.hidden[role=tabpanel] {
    display: none;
}
.module-hidden {
    display: none;
}
.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: #2c2966;
}

.background--alt-brand {
    background-color: #f1af0f;
}

.background--dark {
    background-color: #222;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #f5f5f5;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b72121;
}

.color--brand {
    color: #2c2966;
}

.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;
}

a:focus {
    text-decoration: underline !important;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

#maincontent:focus {
    outline: 0px;
}

/*---------- Javascript ----------*/
.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 10px 0 10px -25px;
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\eb27";
    font-size: 50px;
    font-size: 5rem;
    animation: spin 0.8s infinite linear;
}
.js--hidden:not([role=tabpanel]) {
    display: none !important;
}
.js--hidden[role=tabpanel] {
    display: none;
}
.js--visible {
    display: block;
}
.js--disabled {
    opacity: 0.1;
    border-color: #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: #2c2966;
    cursor: pointer;
}
.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}
.module_add-to-calendar-list {
    display: none;
}
.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
}
.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}
.fancybox-container .module_add-to-calendar-list a:hover {
    color: #23527c;
}
.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 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 300;
    color: #333333;
    font-family: 'Proxima Nova Lt', sans-serif;
    font-size: 16px;
}
.module_error-container {
    display: block;
}
.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
}
.module_error-container ul > li {
    line-height: 1.5;
}
.module_error-container > br {
    display: none;
}
.module_error-container > span {
    display: block;
    line-height: 1.5;
}
.module_error-container > span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}
.module_headline {
    font-weight: normal;
}
.module_headline-link {
    color: #0089ad;
    font-size: 20px;
    font-weight:bold;
}
.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: 16px;
    font-size: 1.6rem;
    color: #333;
}
.module_link:hover {
    font-weight: bold;
    color: #0089ad;
    text-decoration: none;
}
.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 #2c2966;
    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: #2c2966;
    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 {
    opacity: 1;
    cursor: default;
    color: #2c2966;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}
.module_pager a[href] {
    color: #2c2966;
    cursor: pointer;
    opacity: 0.5;
}
.module_pager a:hover {
    text-decoration: none;
}
.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_speakers li {
    margin-bottom: 5px;
}
.module_title {
    text-transform: uppercase;
}
.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: 14px 10px;
    border: none;
    border-radius: 0;
    background-color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
    font-family:'Proxima Nova Lt', sans-serif;
    font-weight: 300;
    color: #333333;
    border: 1px solid #0089ad;
}
.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: 1px solid #2c2966;
    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;
}

/*------- Captcha Component ------*/
.CaptchaContainer {
    display: none;
}
.CaptchaContainer table tr:nth-child(1) {
    display: none;
}
.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}
.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}
.CaptchaContainer table tr:nth-child(3) td span {
    display: none !important;
}
.CaptchaContainer table tr:nth-child(4) span {
    display: none !important;
}
.CaptchaContainer table tr td {
    padding-right: 10px;
}
@media only screen and (max-width: 768px) {
    .CaptchaContainer table tr td {
        padding-right: 0;
    }
}
.CaptchaContainer input[type="text"] {
    display: block;
    max-width: none;
    border: none;
    border-radius: 0;
    font-weight: 300;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 14px 10px;
    background-color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: 'Proxima Nova Lt', sans-serif;
    color: #333333;
    border: 1px solid #0089ad;
}
.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}
.fancybox-container .CaptchaContainer table tr td {
    padding-right: 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;
    padding-left: 10px;
}
.module-downloads_title-link {
    margin: 0 20px 0 0;
}
.module-downloads_title-link:before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}
.module-downloads .module_q4-icon-links .module_link {
    position: static;
    padding-left: 0;
}
.module-downloads .module_q4-icon-links .module_link:before {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    left: auto;
}
.module-downloads .module_container--content > div:nth-child(even) {
  background: #eee;
}
/*--------- 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 {
}
.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;
}
.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-latest .icon-container {
    font-size: 38px;
    color: #2c2966;
    margin-bottom: 12px;
}

.module-event-upcoming .module_nav {
    display: none;
}
.module-event-upcoming .module_item {
    padding: 0 0 10px;
}
.module-event-upcoming .module_item ~ .module_item {
    padding: 30px 0 10px;
}

/*---------- 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";
}



/* Latest Quarterly Result Widget */
.module-latest-quarter {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 9;
    background-image: url(../design/latest-q-background.jpg);
    position: relative;
}
.module-latest-quarter:before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(6,4,52,0.75);
    z-index: 10;
}
.module-latest-quarter .module_container--outer {
    position: relative;
    z-index: 11;
}
.module-latest-quarter .module_item {
    margin: 0;
    padding: 0;
}
.module-latest-quarter .module_item ~ .module_item {
    border: none;
}
.module-latest-quarter .module_links {
    margin: 0;
}
.module-latest-quarter .module_links > div {
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
    vertical-align: top;
}
.module-latest-quarter .module_link {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    display: block;
    padding: 0 35px;
    border-left: 1px solid #fff;
    color: #fff;
}
.module-latest-quarter .module_links > div:first-child .module_link {
    border-left: none;
}
.module-latest-quarter .module_link:before {
    display: inline-block;
    font-size: 38px;
    font-size: 3.8rem;
    padding: 0;
    content: "\e91e";
    font-family: 'q4-icons' !important;
    font-weight: normal;
}
.module-latest-quarter .module_link.module_link-10Q:before {
    content: "\e920";
}
.module-latest-quarter .module_link.module_link-news:before {
    content: "\e91f";
}
.module-latest-quarter .module_link.module_link-webcast:before {
    content: "\e91d";
}
.module-latest-quarter .module_link-text {
    display: block;
    margin: 10px 0 0;
    font-size: 16px;
    font-size: 1.6rem;
    text-transform: none;
    font-weight: normal;
}
.module-latest-quarter .module-financial_type-text,
.module-latest-quarter .module-financial_year-text {
    display: inline-block;
    padding-right: 5px;
}
.module_title.module-financial_quarter-text {
    text-transform: uppercase;
    margin-bottom: 45px;
    color: #fff;
}
.module-latest-quarter .grid_col {
    vertical-align: bottom;
}
.module-latest-quarter .module_links {
    text-align: center;
    margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
    .module-latest-quarter .module_links > div {
        width: 33%;
    }
    .module-latest-quarter .module_links {
        border-left: 0;
    }
    .module-latest-quarter .module_link {
        border-left: none;
        margin: 0 0 15px;
    }
    .module-latest-quarter .grid_col {
        vertical-align: middle;
    }
}
@media only screen and (max-width: 768px) {
    .module-latest-quarter .module_links > div {
        width: 50%;
    }
}

/*------ 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;
    font-size: 14px;
    font-size: 1.4rem;
}
.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
}
.module-form_item legend ~ ul {
    clear: both;
    padding-left: 10px;
}
.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}
.module-form_item--document-request, .module-form_item--are-you-an-investor {
    width: 100%;
}
@media 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: #2c2966;
}

/*---------- 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: 'Proxima Nova Rg', sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 0;
}
@media only screen and (max-width: 480px) {
    .module-job-details_description label:after {
        content: ":";
    }
    .module-job-details_description input {
        display: block;
        float: none;
        margin-top: 5px;
    }
}
.module-job-details .grid_col {
    padding: 15px 20px;
}
.module-job-application_table {
    display: block;
    width: 100%;
    margin-left: -20px;
    font-size: 0;
}
.module-job-application_table tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}
.module-job-application_table tr:last-child {
    margin-bottom: 0;
}
.module-job-application_table tr.module-job-application_cover-letter-text, .module-job-application_table tr.module-job-application_resume-text {
    width: 100%;
}
.module-job-application_table tr td {
    display: block;
    position: relative;
}
.module-job-application_table tr label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}
@media only screen and (max-width: 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 {
    display: none;
}
.module-slideshow .module_links > * + * {
    margin-top: 15px;
}
.module-slideshow_link {
    font-size: 15px;
    font-size: 1.5rem;
    text-transform: uppercase;
}
.module-slideshow_link:hover {
    text-decoration: none;
}
.module-slideshow iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.module-rss p + h2 {
    margin: 40px 0 30px;
}
.module-rss .module_q4-icon-links .module_link {
    color: #0089ad;
}
.module-events-presentation .module_container--inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.module-events-presentation .module-event-latest {
    width: 49%;
    margin-right: 1%;
    border: 1px solid #ccc;
    text-align: left;
    padding-bottom: 20px;
}
.module-events-presentation .module-event-latest .button {
    margin-left: 30px;
}
.module-event-latest_widget-title {
    width: 49%;
    margin-right: 1%;
}
.module-events-presentation .module-slideshow {
    width: 49%;
    margin-left: 1%;
    border: 1px solid #ccc;
}
.module-slideshow_widget-title {
    width: 49%;
    margin-left: 1%;
}
.module-events-presentation .module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: -5px;
}
.module-events-presentation .module-slideshow_link-container {
    display: none;
}
@media only screen and (max-width: 1024px) {
    .module-events-presentation .module-event-latest {
        width: 100%;
        margin-right: 0%;
        order: 2;
        -webkit-order: 2;
        margin-bottom: 30px;
    }
    .module-event-latest_widget-title {
        width: 100%;
        margin-right: 0%;
        order: 1;
        -webkit-order: 1;
    }
    .module-events-presentation .module-slideshow {
        width: 100%;
        margin-left: 0%;
        order: 4;
        -webkit-order: 4;
        border: none;
        text-align: left;
    }
    .module-slideshow_widget-title {
        width: 100%;
        margin-left: 0%;
        order: 3;
        -webkit-order: 3;
    }
    .module-events-presentation .module_title {
        text-align: center;
    }
}
/*------ Navigation Modules ------*/
.nav_close {
    display: none;
}
.nav--main {
    text-align: right;
}
.nav--main li {
    display: inline-block;
}
.nav--main li a {
    display: block;
    padding: 50px 15px 30px;
    color: #333333;
    font-weight: normal;
}
.nav--main li.selected > a, .nav--main li.expanded > a,
.nav--main li a:hover,
.nav--main li a:focus {
    padding: 50px 15px 28px;
    border-bottom: 2px solid #2c2966;
    color: #2c2966;
    outline: none;
}
.nav--secondary {
    text-align: center;
    font-weight: 400;
    position: relative;
    bottom: -1px;
}
.nav--secondary.grid_col {
    padding-left: 15px;
}
.nav--secondary .level1 {
    display: table;
    width: 100%;
}
.nav--secondary .level1 > li {
    position: relative;
    display: table-cell;
}
.nav--secondary .level1 > li:hover > a, .nav--secondary .level1 > li.selected > a, .nav--secondary .level1 > li.expanded > a {
    border-bottom: 2px solid #2c2967;
    text-decoration: none;
}
.nav--secondary .level1 > li.has-children:hover > ul {
    display: block;
}
.nav--secondary .level1 > li a {
    display: block;
    padding: 4px 25px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #2c2967;
    font-family:'Proxima Nova Lt', sans-serif;
    font-weight: 600;
}
.nav--secondary .level1 > li > a {
    display: inline-block;
    padding: 21px 0 13px;
    font-size: 15px;
    text-transform: uppercase;
}
.nav--secondary .level1 > li a:focus {
    outline: none;
}
.nav--secondary .level2 {
    background: #fff;
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    display: none;
    min-width: 160px;
    border-top: 2px solid #fff;
    padding: 20px 0;
    z-index: -1;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    background-clip: padding-box;
}
.nav--secondary .level2 > li {
    text-align: left;
}
.nav--secondary .level2 > li > a {
    font-weight: bold;
    line-height: 1.42857;
    white-space: nowrap;
}
.nav--secondary .level2 > li a:hover, .nav--secondary .level2 > li a:focus {
    outline: none;
    background: #2c2967;
    color: #fff;
    text-decoration: none;
}
.nav--secondary .level2 > li.selected a {
    color: #fff;
}
@media only screen and (min-width: 1025px) {
    .nav--secondary .level2 > li.selected a {
        background: #2c2967;
    }
}

@media only screen and (max-width: 1024px) {
    .nav--secondary {
        text-align: left;
        padding-top: 10px;
        padding-bottom: 15px;
    }
    .nav--secondary.grid_col {
        padding-left: 0;
    }
    .nav--secondary li {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav--secondary a {
        display: block;
        text-transform: uppercase;
        font-weight: normal;
    }
    .nav--secondary .level1 > li a {
        padding: 10px 20px;
    }
        .nav--secondary .level1 > li > a {
        position: relative;
        padding-left: 40px;
    }
    .nav--secondary li.has-children > a:before {
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        content: "";
        display: inline-block;
        width: 0; 
        height: 0; 
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #2c2967;
    }
    .nav--secondary li.js--expanded > a:before,
    .nav--secondary li.has-children:hover > a:before {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #0089ad;
        border-top: none;
    }
    .nav--secondary a:hover {
        text-decoration: none;
    }
    .nav--secondary .level1 > li:hover > a, .nav--secondary .level1 > li.selected > a, .nav--secondary .level1 > li.expanded > a {
        color: #0089ad;
        border-bottom: none;
    }
    .nav--secondary .level2 > li a:hover,
    .nav--secondary .level2 > li a:focus {
        outline: none;
        color: #0089ad; 
    }
    .nav--secondary .level1 > li {
        display: block;
    }
    .nav--secondary .level1 > li > a {
        font-size: 14px;
        text-transform: uppercase;
        display: block;
    }
    .nav--secondary .level2 > li > a {
        font-size: 12px;
        text-transform: none;
        padding-left: 30px;
        white-space: normal;
    }
    .nav--secondary .level1 > li.selected a, .nav--secondary .level1 > li.expanded a {
        display: block;
    }
    .nav--secondary .level1 > li.js--expanded {
    }
    .nav--secondary .level1 > li.js--expanded a {
        display: block;
    }
    .nav--secondary .level1 > li.js--expanded .level2 {
        display: block;
    }
    .nav--secondary .level2 > li.selected a {
        color: #0089ad;
    }
    .nav--secondary .level2 {
        display: none;
        position: static;
        border: none;
        min-width: 100%;
        border-top: none;
        padding: 0 0 0 35px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .nav--secondary .level2 > li {
        display: block;
    }
    .nav--secondary .level2 > li.js--expanded .level3 {
        display: block;
    }
    .nav--secondary .level3 {
    }
    .nav--secondary .level3 > li {
        display: block;
    }
    .nav--secondary .level3 > li > a {
        padding: 20px 20px 20px 72px;
        font-size: 16px;
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 765px) and (orientation: landscape) {
    .nav--secondary {
        padding-bottom: 85px;
    }
}
.module-supplemental-navigation {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}
.module-supplemental-navigation a:hover,
.module-supplemental-navigation a:focus {
    text-decoration: none;
}
.module-supplemental-navigation .level1 > li {
    display: none;
}
.module-supplemental-navigation .level1 > li.selected,
.module-supplemental-navigation .level1 > li.expanded {
    display: block;
}
.module-supplemental-navigation .level1 > li.selected > a,
.module-supplemental-navigation .level1 > li.expanded > a {
    display: none;
}
.module-supplemental-navigation .level2 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.module-supplemental-navigation .level2 > li {
    position: relative;
}
.module-supplemental-navigation .level2 > li a {
    color: #2c2967;
    font-family: 'Proxima Nova Lt', sans-serif;
    font-weight: 600;
    display: inline-block;
    padding: 21px 8px 10px;
    font-size: 14px;
    text-transform: uppercase;
}
.nav--secondary.module-supplemental-navigation .level2 > li:hover > a,
.module-supplemental-navigation .level2 > li.selected > a,
.module-supplemental-navigation .level2 > li.expanded > a {
    border-bottom: 2px solid #2c2967;
    text-decoration: none;
}
@media only screen and (max-width: 1024px) {
    .module-supplemental-navigation {
        display: none;
    }
}
.nav--sitemap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
    .nav--sitemap {
        max-width: none;
        padding-left: 15px;
        padding-right: 15px;
    }
}
.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: 20px;
}
.module-news-latest .module_item {
    margin: 10px 0 20px;
    padding: 0;
    border: none;
    text-align: left;
}
@media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
}
.module-news-latest .module_item-wrap {
    padding: 0 25px 0;
    position: relative;
}
.module-news-latest .module_item-wrap:after {
    content: "";
    display: inline-block;
    height: 220px;
    width: 1px;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 0;
}
.module-news-latest .slick-track > div:first-child .module_item-wrap:after {
    display: none;
}
@media only screen and (max-width: 768px) {
    .module-news-latest .module_item-wrap:after {
        display: none;
    }
}
.module-news-latest .module_date-time {
    margin-bottom: 10px;
    font-weight: 300;
    color: #333333;
    font-family:'Proxima Nova Lt', sans-serif;
    font-size: 16px;
}
.module-news-latest .module_headline {
    line-height: 1.5;
    font-weight: 200;
}
.module-news-latest .module_links {
    margin: 0;
}
.module-news-latest .module_link {
    color: #2c2966;
}
.module-news-latest .icon-container {
    font-size: 38px;
    color: #2c2966;
    margin-bottom: 20px;
}
.module-news-latest .slick-next:before {
    display: inline-block;
    content: "\e91a";
        -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.module-news-latest .slick-prev:before {
    display: inline-block;
    content: "\e91a";
        -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.module-news-latest .slick-arrow:before {
    font-size: 24px;
    color: #0089ad;
}
.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;
    word-wrap: break-word;
}
.module-news-details .module_body * {
    word-wrap: break-word;
}


/*------ 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: "Open Sans", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    vertical-align: baseline;
}
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
}
body.PreviewBody .PreviewToolBar label + input[type="radio"] {
    margin-left: 15px;
}
body.PreviewBody .PreviewToolBar input[type="text"] {
    min-width: 110px;
}
body.PreviewBody .PreviewToolBar select {
    padding: 15px 35px 15px 20px;
    background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
}
body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}
body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #2c2966;
    color: #fff !important;
}
@media only screen and (max-width: 1024px) {
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
    body.PreviewBody .PreviewToolBar .PreviewDateControls {
        display: block;
        float: none;
        margin-bottom: 15px;
    }
    body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
    body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
        display: block;
    }
}
@media only screen and (max-width: 768px) {
    body.PreviewBody .PreviewToolBar input[type="radio"],
    body.PreviewBody .PreviewToolBar label,
    body.PreviewBody .PreviewToolBar input[type="text"],
    body.PreviewBody .PreviewToolBar select,
    body.PreviewBody .PreviewToolBar input[type="submit"] {
        margin-bottom: 5px;
    }
}

/*-------- Search Modules --------*/
.module-search {
    position: relative;
    text-align: right;
}
.module-search_input[type="text"] {
    display: inline-block;
    width: 90%;
    padding: 7px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    font-size: 14px;
    font-size: 1.4rem;
}
.module-search_button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 0;
    background: transparent url("../design/svg/q4-icon_buttons.svg");
    font-size: 0;
    cursor: pointer;
    display: none;
}
.module-desktop-search .module-search_button {
    background: transparent url("../design/right-thin-chevron.png");
    background-repeat: no-repeat;
}
.module-mobile-search .module-search_button {
    display: inline-block;
    pointer-events: none;
}
.module-search-result_link {
    margin-bottom: 15px;
}
.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}
.module-search-result_description:after {
    content: "...";
}
.module-search-result_url {
    display: none;
}

/*---- 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: #2c2966;
    outline: 0;
}
.module-skip_link:visited {
    color: #fff;
}

.module-slider .module_container--outer {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.module-slider .module_container--inner {
    display: table-cell;
    vertical-align: middle;
    height: 390px;
}
.module-slider .slick-slider {
    padding: 0 40px;
}
.module-slider .slick-slider .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
}
.module-slider .slick-arrow:before {
    font-size: 30px;
}
.module-slider .module_add-to-calendar-reveal {
    color: #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;
}



/*------ Stock Header Module -----*/
.module-stock-header {
    text-align: right;
}
@media only screen and (max-width: 1024px) {
    .module-stock-header {
        text-align: center;
    }
}
.module-stock-header .module_container--outer {
    display: inline-block;
    padding: 25px 25px 20px;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 11;
}
.module-stock-header_price-container {
    margin-bottom: 10px;
}
.module-stock-header_description1 {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left;
}
.module-stock-header_stock-price {
    display: inline-block;
    font-size: 32px;
    font-size: 3.2rem;
    color: #333;
    float: left;
    padding-right: 10px;
}
.module-stock-header_stock-price:before {
    content: '$';
    font-size: 20px;
    vertical-align: top;
}
.module-stock-header_change, .module-stock-header_percent-change {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #333;
}
.module-stock-header_change {
    float: left;
    display: inline-block;
    padding-left: 35px;
    position: relative;
}
.module-stock-header_change.module-stock-header_up:before {
    font-family: 'q4-icons' !important;
    content: "\e91a";
    color: #0089ad;
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -5px;
}
.module-stock-header_change.module-stock-header_down:before {
    font-family: 'q4-icons' !important;
    content: "\e91a";
    color: #f00;
    font-size: 30px;
    position: absolute;
    left: 0;
    bottom: 50%;
    -webkit-transform: rotate(180deg) translateY(-50%);
    -ms-transform: rotate(180deg) translateY(-50%);
    -o-transform: rotate(180deg) translateY(-50%);
    transform: rotate(180deg) translateY(-50%);
    margin-top: -5px;
}
.module-stock-header_percent-change:before {
    content: '(';
}
.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}
.module-stock-header_percent-change:after {
    content: ')';
}
.module-stock-header_volume {
    display: block;
    margin-bottom: 32px;
}
.module-stock-header_volume:before {
    content: 'Volume ';
    font-weight: bold;
}
.module-stock-header_description3, .module-stock-header_date {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    color: rgba(51,51,51,0.5);
    text-align: left;
}
.module-stock-header_volume-text {
    display: none;
}
.module-stock-header_date {
    margin-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
    .module-stock-header .module_container--outer {
        padding: 20px;
        bottom: 42px;
        right: auto;
        left: 0;
    }
    .module-stock-header_description1 {
        font-size: 14px;
    }
    .module-stock-header_stock-price {
        font-size: 24px;
    }
    .module-stock-header_change,
    .module-stock-header_percent-change {
        font-size: 12px;
    }
    .module-stock-header_description3,
    .module-stock-header_date {
        font-size: 10px;
    }
    .module-stock-header_change.module-stock-header_up:before {
        margin-top: 0px;
    }
    .module-stock-header_change.module-stock-header_down:before {
        margin-top: 0px;
    }
}

/*- MailingList Subscribe Module -*/
.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
.module-subscribe_table tbody {
    width: 100%;
    display: block;
}
.module-subscribe_form {
    font-size: 0;
}
.module-subscribe_form tr {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    vertical-align: top;
    font-size: 16px;
    font-size: 1.6rem;
}
.module-subscribe_form tr:nth-child(even) {
    padding-left: 10px;
}
.module-subscribe_form tr:nth-child(odd) {
    padding-right: 10px;
}
.module-subscribe_form tr.module-subscribe_notes-text {
    margin: 0;
}
.module-subscribe_form tr.module-subscribe_notes-text, .module-subscribe_form tr.module-subscribe_notes-input {
    display: block;
    width: 100%;
    padding: 0;
}
@media 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: 14px;
    font-size: 1.4rem;
}
.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}
.module-subscribe_mailing-list tr table td {
    padding-bottom: 10px;
}
.module-subscribe_mailing-list tr table tr:last-child td {
    padding-bottom: 0;
}
.module-subscribe .module_required {
    font-size: 14px;
    font-size: 1.4rem;
}
.module-subscribe .CaptchaContainer {
    width: 50%;
}
@media only screen and (max-width: 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;
}
.layout_header {
    z-index: 111;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
.js--sticky-navigation.layout_header {
    top: -106px;
}
@media only screen and (max-width: 1024px) {
    .js--sticky-navigation.layout_header {
        top: -80px;
    }
}
/*==================================
 ------------ BLANK CSS -----------
==================================*/
/*-------- Layout Specific -------*/
.layout--home .pane--content {
    text-align: center;
}
.layout.js--mobile {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}
.layout_footer {
    background: #222;
}

/*--------- Pane Specific --------*/
.pane--header {
    position: relative;
    z-index: 10;
    padding-top: 28px;
    padding-bottom: 2px;
    border-bottom: 1px solid #e7e7e7;
    background: rgba(255,255,255,0.98);
}
.pane--breadcrumb {
    background: #2b2966;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    z-index: 11;
}
.pane--breadcrumb a {
    color: #fff;
}
.pane--breadcrumb .pane_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.pane--header .pane_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 17px;
    padding-right: 17px;
}
.layout_inner {
    position: relative;
    right: 0;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
@media only screen and (max-width: 1024px) {
    .pane--header {
        padding: 0;
    }
    .pane--breadcrumb {
        height: 100%;
        position: fixed;
        z-index: 99;
        background-color: #ffffff;
        overflow-x: hidden;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        left: -288px;
        width: 288px;
        top: 0;
        bottom: 0;
        padding: 0;
    }
    .pane--breadcrumb .pane_inner {
        padding-left: 0;
        padding-right: 0;
    }
    .js--corporate-mobile .layout_header {
        left: 288px;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
    }
    .js--corporate-mobile .layout_inner {
        right: -288px;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
    }
    .js--corporate-mobile .pane--breadcrumb {
        left: 0px;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
    }
}

.pane--header .module-logo {
    float: left;
    width: 25%;
    padding-left: 1px;
}
.pane--header .module-logo img {
    width: 191px;
    padding-top: 7px;
    margin-bottom: -6px;
}

.pane--header .layout_toggle {
    display: none;
    font-size: 20px;
    font-size: 2.0rem;
    cursor: pointer;
    color: #2c2966;
    font-family:'Proxima Nova Rg', sans-serif;
    font-weight:bold;
}
.pane--header .layout_toggle i:before {
    font-size: 16px;
    padding-right: 5px;
}
.pane--header .layout_toggle i:focus {
    outline: none;
}
.js--mobile .pane--header .layout_toggle i:before {
    content: "\edba";
}
@media only screen and (max-width: 1024px) {
    .pane--header .pane_inner {
        max-width: 750px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .pane--header .module-logo img {
        width: 160px;
        padding-top: 25px;
        margin-bottom: 0px;
    }
    .pane--header .layout_toggle {
        display: block;
        clear: both;
        float: none;
        position: relative;
        padding-top: 20px;
        padding-bottom: 14px;
        padding-left: 10px;
    }
    .pane--header .layout_toggle:before {
        position: absolute;
        top: 0;
        height: 3px;
        left: -100%;
        right: -100%;
        content: "";
        border-bottom: 1px solid #e7e7e7;
        background: rgba(255,255,255,0.98);
    }
    .pane--header .nav,
    .pane--header .module-search {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .pane--header .pane_inner {
        max-width: none;
    }
}
.pane--banner {
    background: transparent url("../design/banner/investor_banner.jpg") no-repeat scroll right center;
    background-size: cover;
    position: relative;
    min-height: 495px;
    color: #2c2966;
    padding: 0 15px;
    padding-top: 161px;
}
@media (max-width: 1024px) {
    .pane--banner {
        padding-top: 135px;
    }
}
.pane--banner .pane_inner {
    position: relative;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    min-height: 495px;
}
@media only screen and (max-width: 1024px) {
    .pane--banner {
        min-height: 475px;
    }
    .pane--banner:before {
        content: "";
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(255,255,255,0.67);
        z-index: 10;
    }
    .pane--banner .pane_inner {
        max-width: none;
        min-height: 475px;
    }
}
@media only screen and (max-width: 480px) {

}
.pane--banner h1 {
    margin: 0;
}
@media only screen and (max-width: 768px) {
    .pane--banner h1 {
        margin-bottom: 32px;
    }
}
@media only screen and (max-width: 1024px) {
    .pane--banner {
        background: transparent url("../design/banner/investor_banner.jpg") no-repeat scroll right 35% center;
        background-size: cover;
    }
}

.investor_page .pane--banner {
}
.stock-info_page .pane--banner,
.Sectionstock-info_page .pane--banner {
    background: transparent url("../design/banner/Stock_Information_Banner.jpg") no-repeat scroll right center;
    background-size: cover;
}
.stock-info_page .module-page-title .module_title,
.Sectionstock-info_page .module-page-title .module_title {
    color: #fff;
}
.financials_page .pane--banner,
.Sectionfinancials_page .pane--banner {
    background: transparent url("../design/banner/Financials_Banner.jpg") no-repeat scroll right center;
    background-size: cover;
}
.financials_page .module-page-title .module_title,
.Sectionfinancials_page .module-page-title .module_title {
    color: #2c2966;
}
.governance_page .pane--banner,
.Sectiongovernance_page .pane--banner {
    background: transparent url("../design/banner/Governance_Banner.jpg") no-repeat scroll right center;
    background-size: cover;
}
.governance_page .module-page-title .module_title,
.Sectiongovernance_page .module-page-title .module_title {
    color: #2c2966;
}
.press-release_page .pane--banner,
.Sectionpress-release_page .pane--banner {
    background: transparent url("../design/banner/Press_Releases_Banner.jpg") no-repeat scroll right center;
    background-size: cover;
}
.press-release_page .module-page-title .module_title,
.Sectionpress-release_page .module-page-title .module_title {
    color: #fff;
}
.events_page .pane--banner,
.Sectionevents_page .pane--banner {
    background: transparent url("../design/banner/Events_and_Presentations_Banner.jpg") no-repeat scroll right center;
    background-size: cover;
}
.events_page .module-page-title .module_title,
.Sectionevents_page .module-page-title .module_title {
    color: #fff;
}
.investor-resources_page .pane--banner,
.Sectioninvestor-resources_page .pane--banner {
    background: transparent url("../design/banner/Investor_Resources_Banner.jpg") no-repeat scroll right center;
    background-size: cover;
}
.investor-resources_page .module-page-title .module_title,
.Sectioninvestor-resources_page .module-page-title .module_title {
    color: #2c2966;
}

@media only screen and (max-width: 1024px) {
    .stock-info_page .module-page-title .module_title,
    .Sectionstock-info_page .module-page-title .module_title {
        color: #2c2966;
    }
    .press-release_page .module-page-title .module_title,
    .Sectionpress-release_page .module-page-title .module_title {
        color: #2c2966;
    }
    .events_page .module-page-title .module_title,
    .Sectionevents_page .module-page-title .module_title {
        color: #2c2966;
    }
}
.pane--navigation {
    background: rgba(255,255,255,0.98);
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border-bottom: 1px solid #e7e7e7;
}
.pane--navigation .pane_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 1024px) {
    .pane--navigation {
        display: none;
        z-index: 120;
    }
    .js--mobile .pane--navigation {
        display: block;
        position: fixed;
        top: 134px;
        left: 0;
        right: 0;
        bottom: 0;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        overflow-y: scroll;
        z-index: 120;
    }
    .js--corporate-mobile.js--mobile .pane--navigation {
        left: 288px;
    }
    .pane--navigation .pane_inner {
        margin: 0 auto;
        max-width: 750px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .pane--navigation .module-search_input {
        width: 100%;
        max-width: none;
        padding: 20px 20px 20px 40px;
        border: none;
        background-color: #28255d;
        color: #fff;
        text-transform: uppercase;
    }
    .pane--navigation .module-search_input::-webkit-input-placeholder {
        color: white;
    }
    .pane--navigation .module-search_input::-moz-placeholder {
        color: white;
    }
    .pane--navigation .module-search_input::-ms-input-placeholder {
        color: white;
    }
    .pane--navigation .module-search_button {
        position: absolute;
        top: 20px;
        right: auto;
        width: 15px;
        height: 15px;
        padding: 0;
        border: 0;
        background: transparent url(../design/svg/search-white.svg);
        font-size: 0;
        cursor: pointer;
        left: 15px;
    }
}
@media only screen and (max-width: 768px) {
    .pane--navigation .pane_inner {
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }
    .nav--secondary .level1 > li > a {
        padding-left: 48px;
        padding-right: 48px;
    }
    .nav--secondary li.has-children > a:before {
        right: 28px;
    }
    .pane--navigation .module-search_input {
        padding-left: 48px;
    }
    .pane--navigation .module-search_button {
        left: 28px;
    }
}
.pane--content .module {
    padding-top: 50px;
    padding-bottom: 50px;
}
.pane--content .module_container--outer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media only screen and (max-width: 1024px) {
    .pane--content .module_container--outer {
        max-width: none;
    }
}
.pane--content .module--thin {
    padding-top: 35px;
    padding-bottom: 35px;
}
.pane--content .module--thin-top {
    padding-top: 35px;
}
.pane--content .module--thin-bottom {
    padding-bottom: 35px;
}
.pane--content .module--thick {
    padding-top: 105px;
    padding-bottom: 105px;
}
.pane--content .module--thick-top {
    padding-top: 105px;
}
.pane--content .module--thick-bottom {
    padding-bottom: 105px;
}
.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--right {
    background: #fff;
    color: #2c2966;
    border-top: 1px solid #cdcdcd;
    padding-top: 30px;
    padding-bottom: 25px;
}
.pane--footer {
    background: #2c2966;
    padding-top: 42px;
}
.pane--right .pane_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.pane--footer .pane_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.pane--footer2 {
    background: #eeeeee;
}
.pane--footer2 .module_container--outer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
@media only screen and (max-width: 1024px) {
    .pane--footer .pane_inner {
        max-width: none;
    }
}
.pane--footer .module_title {
    font-size: 20px;
    font-size: 2rem;
    text-transform: none;
    font-weight: bold;
    margin-bottom: 5px;
}
.pane--footer .module_error-container {
    margin-bottom: 20px;
}
.pane--footer .module_error-container p {
    display: none;
}
.pane--footer .module_error-container li {
    margin-bottom: 16px;
}
.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;
}
.pane--footer .module-subscribe_mailing-list.js--revealed,
.pane--footer .module-subscribe .module_actions.js--revealed {
    display: block;
}
.pane--footer .module_input[type="text"] {
    background: #2c2966;
    color: #fff;
}

.pane--footer .module_input[type="text"]::-webkit-input-placeholder {
    color: #fff;
}

.pane--footer .module_input[type="text"]:-moz-placeholder {
    color: #fff;
}

.pane--footer .module_input[type="text"]::-moz-placeholder {
    color: #fff;
}

.pane--footer .module_input[type="text"]::-ms-input-placeholder {
    color: #fff;
}
.module-subscribe--footer .module-subscribe_list tr {
    display: inline-block;
    width: 49%;
    vertical-align: top;
    float: left;
}
.pane--footer .module:not(.module-embed) {
    padding-bottom: 60px;
}
.pane--footer .button {

}
.pane--footer .module-subscribe--footer .module_title {
    margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
    .module-subscribe--footer .signup-wrapper {
      position: relative;
    }
    .module-subscribe--footer .module_actions {
        position: absolute;
        top: 0;
        margin-top: 0;
        right: 0;
    }
}
.pane--credits {
    padding-top: 30px;
    padding-bottom: 25px;
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    background: #eeeeee;
}
.pane--credits a {
    color: #2B2967;
}
.pane--credits a:hover {
    color: #23527c;
    text-decoration: none;
}
.pane--credits .pane_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (max-width: 1024px) {
    .pane--credits .pane_inner {
        max-width: none;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*--------- Page Specific --------*/
.page--no-alternating .pane--content {
    padding: 35px 0;
}
.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}

/*-------- Module Specific -------*/
.module-overview p {
    margin-bottom: 40px;
}
.module-overview_hidden {
    display: none;
}
.module-overview_hidden.js--revealed {
    display: block;
}
.module-overview_button:before {
    content: "Read More";
}
.module-overview_button.js--active:before {
    content: "Show Less";
}

.module-why-invest h3 {
    color: #333333;
}
.module-why-invest h4 {
    font-size: 60px;
    font-size: 6rem;
    color: #2c2966;
    font-weight: 300;
    margin-top: 0;
}
.module-why-invest .grid {
    padding-top: 25px;
    padding-bottom: 25px;
}
.module-why-invest .grid_col {
    padding-bottom: 15px;
    padding-right: 20px;
}
@media (min-width: 480px) {
    .module-why-invest .grid_col + .grid_col {
        border-left: 1px solid #dddddd;
    }
}
.module-why-invest .grid_col p {
    margin-bottom: 0;
}

.module-social .module_tabs {
    margin-bottom: 10px;
}
.module-social .module_tabs .button {
    display: block;
}
.module-social .module_tabs .button.js--selected {
    background: #2c2966;
    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;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}
@media (max-width: 767px) {
    .module-social .module_container--content {
        padding: 0 20px;
        margin: 0;
    }
}
.module-social .module_container--content .slick-track {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}
.module-social .module_container--content .slick-list {
    width: 100%;
}
.module-social .module_container--content .slick-arrow {
    color: #2c2966;
}
.module-social .module_headline-link {
    color: #2c2966;
}
.module-social .module_item {
    height: auto;
}
.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;
    height: 100%;
}
.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;
}

/*# sourceMappingURL=global.css.map */


/*Global custom style start*/
.pane--breadcrumb a:hover {
    text-decoration: none;
}
.module-region {
    float: left;
}
.module-region_options {
    display: none;
    position: absolute;
    top: 23px;
    left: 0;
    background: #fff;
    z-index: 11;
    min-width: 160px;
    padding: 7px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    background-clip: padding-box;
}
.js--expanded .module-region_options {
    display: block;
}
.module-region_options.js--revealed {
    display: block;
}
.module-region_options li {
    padding: 0;
}

.module-region_country-container {
    position: relative;
    float: left;
}
.module-region_investors-container {
    float: left;
}
.module-header-links {
    float: right;
    margin-right: -15px;
}
.module-header-links li {
    display: inline-block;
    float: left;
}
.module-region,
.module-header-links {
    font-family: "Proxima Nova Lt", sans-serif;
}
.module-region a,
.module-header-links a {
    font-weight: 600;
    font-size: 14px;
    margin: 4px 10px;
    padding: 0;
    line-height: 20px;
    display: inline-block;
}
.module-region_options a {
    color: #333;
    line-height: 1.1;
}
@media only screen and (max-width: 1024px)  {
    .module-region {
        float: none;
        display: none;
    }
}
.module-header-links a {
    color: #E3E4E6;
}
.module-header-links ul > li:last-child {
    border-left: 1px solid rgba(204,204,204,0.5);
}
.module-header-links ul > li:last-child a {
    font-weight: bold;
    text-transform: uppercase;
}
.module-region .module-region_default {
    margin-left: 4px;
}
.module-region_default:after {
    content: "";
    display: inline-block;
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    vertical-align: middle;
    margin-left: 2px;
}
.module-region_investors-container a {
    margin-left: 7px;
    padding-left: 18px;
    border-left: 1px solid rgba(204,204,204,0.5);
}
@media only screen and (max-width: 1024px) {
    .module-header-links {
        float: none;
        margin-right: 0;
    }
    .module-header-links li {
        float: left;
        background-color: #2B2967;
        width: 50%;
        text-align: center;
        position: relative;
    }
    .module-header-links li a {
        padding: 17px 0;
        font-size: 13px;
        font-weight: 400;
        color: #ffffff;
        letter-spacing: 0;
        text-align: center;
        margin: 0;
    }
    .module-header-links ul li:first-child:after {
        content: '';
        width: 1px;
        height: 25px;
        position: absolute;
        background: #ffffff;
        float: right;
        margin-top: 15px;
        right: 0;
        opacity: 0.5;
        margin-left: 0px;
    }
    .module-header-links ul li:last-child {
        width: 100%;
        float: none;
        background-color: #F5F5F5;
        text-transform: uppercase;
        clear: both;
    }
    .module-header-links ul li:last-child a {
        color: #2B2967;
        font-size: 15px;
        font-weight: 600;
    }
    .module-header-links ul > li:last-child {
        border-left: none;
    }
}

/*Mega menu style start*/
.module-corporate-menu {
    float: left;
    width: 58.33%;
}
#primary-menu {
    text-align: right;
    padding-right: 86px;
}
#primary-menu ul li {
    position: relative;
}
#primary-menu .level > li {
    display: inline-block;
}
#primary-menu .level2 {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    box-shadow: 0 6px 12px rgba(0,0,0,0.175);
    background-clip: padding-box;
    left: -15px;
    padding: 30px 0;
    border: none;
}
#primary-menu li.has-children:hover > ul,
#primary-menu .sfHover > .level2 {
    display: block;
}

#primary-menu .level > li > a {
    display: inline-block;
    margin-bottom: -1px;
    margin-right: 16px;
    margin-left: 16px;
    padding: 29px 9px 26px 3px;
    border-bottom: solid 3px rgba(255,255,255,0);
    font-family:'Proxima Nova Lt', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: #2B2967;
}
#primary-menu .level > li > a:hover {
    border-bottom: solid 3px #2c2967;
    text-decoration: none;
}
#primary-menu .level2 a {
    display: block;
    padding: 3px 32px;
    color: #2B2967;
    font-weight: bold;
    line-height: 1.42857;
    white-space: nowrap;
}
#primary-menu .level2 > li > a:hover {
    background: #2B2967;
    color: #ffffff;
    text-decoration: none;
}
.module-corp-mob-menu {
    display: none;
}
@media only screen and (min-width: 1025px) {
    .custom_menu-link {
        margin-top: 10px;
        padding-top: 10px;
    }
    .custom_menu-link:before {
        content: "";
        position: absolute;
        top: 0;
        left: 32px;
        width: 24px;
        height: 1px;
        background-color: #c9c9c9;
    }
}
@media only screen and (max-width: 1024px) {
    .module-corp-mob-menu {
        display: block;
    }
    #primary-menu {
        text-align: left;
        padding-right: 0;
    }
    #primary-menu .level2 {
        margin: -3px 0 12px;
        position: static;
        float: none;
        width: auto;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        padding: 5px 0;
    }
    #primary-menu .level > li {
        display: block;
    }
    #primary-menu .level a {
        display: inline-block;
        width: 100%;
        white-space: normal !important;
        color: #2B2967;
        padding: 5px 15px 5px 10px;
    }
    #primary-menu .level2 a {
        font-family:'Proxima Nova Lt', sans-serif;
        font-weight: 300;
    }
    #primary-menu .level2 a:hover {
        background: #F5F5F5;
    }
    #primary-menu .level > li {
        border-bottom: solid 1px rgba(43,41,103,0.7);
        border-top: solid 1px rgba(43,41,103,0.7);
        margin: 0 20px -1px;
        float: none;
    }
    #primary-menu .level > li:first-child {
        border-top-color: transparent;
    }
    #primary-menu .level > li > a {
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        padding: 16px 0 15px;
        border: none;
        margin: 0;
        position: relative;
        display: block;
    }
    #primary-menu .level > li > a:hover {
        border-bottom: none;
    }
    #primary-menu .level2 > li > a:hover {
        background: #F5F5F5;
        color: #2B2967;
    }
    #primary-menu li.has-children > a:after {
        position: absolute;
        display: inline-block;
        content: "";
        width: 0; 
        height: 0; 
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #2B2967;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
/*Mega menu style end*/
.module-add-to-any {
    float: left;
    width: 16.66%;
    padding-top: 26px;
}
.module-add-to-any .a2a_svg {
    display: none;
}
.module-add-to-any .a2a_default_style .a2a_dd {
    float: right;
    font-size: 20px;
    color: #2b2966;
}
.module-add-to-any .a2a_default_style .a2a_dd:hover {
    text-decoration: none;
}
.a2a_menu a.a2a_i,
.a2a_menu i.a2a_i {
    font-size: 0;
    width: 24px;
}
.a2a_mini_services {
    text-align: center;
}
.a2a_mini_services a.a2a_i,
.a2a_mini_services i.a2a_i {
    float: none;
    display: inline-block;
}
.module-mobile-search {
    display: none;
}
.module-desktop-search {
    position: relative;
    padding-right: 10px;
}
.module-desktop-search h2 {
    font-size: 0;
    color: #2b2966;
    cursor: pointer;
    opacity: 1;
    margin-bottom: 0;
    height: 50px;
    width: 20px;
    float: right;
}
.module-desktop-search h2:after {
    display: block;
    font-family: 'q4-icons' !important;
    content: "\e918";
    font-size: 20px;
    text-align: right;
    position: relative;
    top: 15px;
}
.module-desktop-search .module_container--inner {
    display: none;
    position: absolute;
    top: 108%;
    right: 0px;
    width: 255px;
    z-index: 101;
    background: rgb(255, 255, 255);
    padding-left: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
.module-desktop-search .module-search_input[type="text"] {
    display: inline-block;
    width: 100%;
    padding: 7px 7px 7px 7px;
    border: none;
    font-size: 14px;
    height: 32px;
}
@media only screen and (max-width: 1024px) {
    .module-desktop-search,
    .module-corporate-menu {
        display: none;
    }
    .module-mobile-search {
        display: block;
    }
}
.module-corporate-toggle {
    display: none;
    float: left;
    width: 16.66667%;
}
.module-corporate-toggle button {
    margin: 19px 0;
    border: none;
    position: relative;
    padding: 9px 10px;
    background-color: transparent;
    background-image: none;
    border-radius: 4px;
    cursor: pointer;
}
.module-corporate-toggle button:hover,
.module-corporate-toggle button:focus {
    background-color: #ddd;
}
.module-corporate-toggle .icon-bar {
    background-color: #2B2967;
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 1px;
}
.module-corporate-toggle .icon-bar + .icon-bar {
    margin-top: 7px;
}
.mobile-logo {
    display: none;
}
@media only screen and (max-width: 1024px) {
    .module-corporate-toggle {
        display: block;
    }
    .pane--header .module-logo {
        width: 66.66667%;
        padding-left: 0px;
        text-align: center;
    }
    .module-add-to-any {
        width: 16.66667%;
    }
    .desktop-logo {
        display: none;
    }
    .mobile-logo {
        display: inline-block;
    }
}
.module-mobile-region {
    display: none;
}
.module-resources h2 {
    float: left;
    width: 12%;
    margin-bottom: 0;
    border-right: 1px solid #bfbed1;
    font-weight:bold;
    font-size: 20px;
    text-transform: none;
    text-align: left;
}
.module-resources .module-resources_items {
    float: left;
    width: 88%;
    display: table;
}
.module-resources_item {
    display: table-cell;
    text-align: center;
}
.module-resources .module_item {
    padding: 0;
}
.module-resources a {
    font-size: 20px;
}
@media only screen and (max-width: 1024px) {
    .module-resources h2 {
        float: none;
        width: 100%;
        margin-bottom: 20px;
        border-right: none;
    }
    .module-resources .module-resources_items {
        float: none;
        width: 100%;
        display: block;
    }
    .module-resources_item {
        display: inline-block;
        text-align: left;
        width: 32%;
    }
}
@media only screen and (max-width: 768px) {
    .module-resources_item {
        width: 49%;
        padding-right: 10px;
        vertical-align: top;
    }
    .module-resources a {
        font-size: 14px;
    }
}
.module-contact .module_title,
.module-subscribe--footer .module_title {
    text-align: left;
}
.module-contact img {
    width: 100%;
    max-width: 97px;
}
.module-contact_item {
    padding: 15px 20px 15px 0;
}
.module-contact_image-container {
    float: left;
    width: 40%;
    padding-bottom: 15px;
}
.module-contact_name-container {
    padding: 12px 10px 15px 15px;
    float: left;
    width: 60%;
    position: relative;
}
.module-contact_name-container:after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 120px;
    top: -15px;
    right: 0;
    position: absolute;
    background: rgba(255,255,255,0.3);
}
.module-contact_third-item .module-contact_name-container:after {
    display: none;
}
.module-contact_details {
    float: none;
    clear: both;
}
.module-contact_name {
    font-family:'Proxima Nova Lt', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.module-contact_position {
    font-family:'Proxima Nova Lt', sans-serif;
    font-weight:300;
    font-size: 12px;
}
.module-contact_details {
    font-family:'Proxima Nova Lt',  sans-serif;
    font-weight:300;
    font-size: 14px;
}
.module-contact_phone {
    margin-bottom: 5px;
}
.module-contact_email a {
    word-wrap: break-word;
}
.module-contact_email a:hover {
    color: #0089ad;
    text-decoration: none;
}
@media only screen and (max-width: 1024px) {
    .module-contact_image-container {
        float: none;
        width: 100%;
    }
    .module-contact_name-container {
        padding: 0 0 5px 0;
        float: none;
        width: 100%;
    }
    .module-contact_name-container:after {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .module-contact_details {
        font-size: 12px;
    }
}
@media only screen and (max-width: 480px) {
    .module-contact_image-container {
        display: none;
    }
    .module-contact_name {
        font-size: 10px;
    }
    .module-contact_position {
        font-size: 9px;
    }
    .module-contact_details {
        font-size: 9px;
    }
}
.module-social {
    text-align: center;
    padding-bottom: 17px;
    padding-top: 20px;
    border-top: 1px solid #fff;
    border-bottom: 5px solid #f5f5f5;
}
.module-social_item.glassdoor-link a:before {
    background-image: url("../design/glassdoor.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    content: " ";
    display: inline-block;
    height: 21px;
    width: 24px;
}
.module-social_item.glassdoor-link a:hover:before {
    background-image: url("../design/glassdoor-hover.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
}
.module-social_item {
    display: inline-block;
    margin: 0 10px;
}
.module-social_items > div:first-child {
    margin-left: 0;
}
.module-social_items > div:last-child {
    margin-right: 0;
}
.module-social_item a {
    color: #2c2966;
    font-size: 24px;
}
.module-social_item a:hover {
    color: #23527c;
    text-decoration: none;
}
.module-menu-footer {
    padding-bottom: 10px;
}
.module-menu-footer a:hover {
    text-decoration: none;
}
.module-menu-footer_level1 > li > a {
    color: #2B2967;
    font-size: 25px;
    padding: 35px 10px 8px;
    text-transform: none;
    font-weight: 600;
    font-family: 'Proxima Nova Lt', sans-serif;
    display: block;
}
.module-menu-footer_level2 {
    padding: 5px 0;
}
.module-menu-footer_level2 > li > a {
    padding: 4px 10px;
    color: #2B2967;
    display: block;
    font-weight: normal;
    line-height: 1.42857;
    white-space: nowrap;
    font-family: 'Proxima Nova Lt', sans-serif;
    font-weight: 300;
    font-size: 14px;
}
@media only screen and (max-width: 992px) {
    .module-menu-footer {
        display: none;
    }
}
.copyright {
    text-align: center;
}
.copyright-links,
.copyright-container,
.copyright li {
    display: inline-block;
}
.copyright li a {
    font-family: 'Proxima Nova Lt', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
    padding: 4px 10px;
    display: block;
}
.copyright-container {
    font-family: 'Proxima Nova Lt', sans-serif;
    font-size: 13px;
    color: #2B2967;
}
@media only screen and (max-width: 992px) {
    .copyright-links,
    .copyright-container,
    .copyright li {
        display: block;
    }
    .copyright-container {
        margin-top: 15px;
    }
}
.module-page-title {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45%;
    z-index: 11;
}
.module-page-title .module_title {
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    text-align: left;
    color: #fff;
}
.module-banner-border {
    padding-bottom: 22px;
    position: relative;
}
.module-banner-border:after {
    height: 22px;
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    background-size: auto auto;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-color: #ffffff;
    z-index: 1;
    background-image: url("../design/slider_footer_desktop.png");
}
@media only screen and (max-width: 1270px) {
    .module-banner-border:after {
        background-size: auto auto;
        background-position: left bottom;
        background-repeat: no-repeat;
        background-image: url("../design/slider_footer_desktop.png");
    }
}
@media only screen and (max-width: 1024px) {
    .module-page-title .module_title {
        font-size: 52px;
    }
    .module-page-title {
        left: 0;
        right: 0;
        top: 70px;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .module-page-title .module_title {
        font-size: 35px;
    }
}
/*Global custom style end*/

/*Homepage style start */
.investor_page .module-page-title {
    display: none;
}
.module-banner-title {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 35%;
    z-index: 11;
    color: #fff;
}
.module-banner-title_title {
    font-size: 70px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}
.module-banner-title_descriptions {
    font-size: 18px;
    font-weight: 600;
}
@media only screen and (max-width: 1024px) {
    .module-banner-title_title {
        font-size: 52px;
    }
    .module-banner-title_descriptions {
        font-size: 13px;
    }
    .module-banner-title {
        left: 0;
        right: 0;
        top: 70px;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
        width: 100%;
        color: #2c2966;
    }
}
@media only screen and (max-width: 768px) {
    .module-banner-title_title {
        font-size: 35px;
    }
}

/*Main desktop slider start*/
.module-main-slider_slider {
    margin-bottom: 35px;
}
.module-main-slider_slider .slick-slider {
    padding: 0 70px;
}
.module-main-slider_slider .slider-item {
    position: relative;
    width: 100%;
    min-height: 290px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff; 
    overflow: hidden;
}
.items--desktop .slick-track > div:first-child .overlay,
.items--mobile .slick-track .overlay {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(42,45,101,0.7);
}
.items--mobile .slick-track > div:last-child .overlay {
}
.module-main-slider_slider .content-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}
.module-main-slider_slider h2 {
    margin-bottom: 0;
}
.module-main-slider_slider .slick-prev {
    left: 10px;
}
.module-main-slider_slider .slick-next {
    right: 10px;
}
.module-main-slider_slider .slick-next:before {
    display: inline-block;
    content: "\e91a";
        -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.module-main-slider_slider .slick-prev:before {
    display: inline-block;
    content: "\e91a";
        -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.module-main-slider_slider .slick-arrow:before {
    font-size: 30px;
    color: #0089ad;
}
.items--desktop .slick-track > div:first-child .gradient {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.items--desktop .module-main-slider_icon-container {
    text-align: center;
    width: 25%;
}
.module-main-slider_icon-container {
    padding: 25px 10px 0;
}
.module-main-slider .slick-slide img {
    display: inline-block;
    vertical-align: middle;
}
.module-main-slider_description-container {
    font-size: 20px;
    margin-top: 15px;
    font-weight: bold;
}
.slider_image-container {
    height: 164px;
}
.slider_image-container:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.module-main-slider a {
    color: #fff;
}
.module-main-slider .items--mobile {
    display: none;
}
.module-main-slider .slick-arrow:hover:before {
    color: #2c2966;
}
@media only screen and (max-width: 1024px) {
    .module-main-slider .items--desktop {
        display: none;
    }
    .module-main-slider .items--mobile {
        display: block;
    }
    .module-main-slider_slider .slick-slider {
        padding: 0 35px;
    }
    .module-main-slider_slider .slick-prev {
        left: 0px;
    }
    .module-main-slider_slider .slick-next {
        right: 0px;
    }
    .module-main-slider_slider .slider-item {
        min-height: 207px;
        background-position: center right 35%;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .slider_image-container {
        height: auto;
    }
    .module-main-slider_description-container {
        font-size: 15px;
    }
    .module-main-slider_icon-container {
        padding: 15px 0 0;
    }
    .module-main-slider .slick-slide img {
        transform: scale(0.75);
        height: 130px;
    }
    .slider_image-container:before {
        display: none;
    }
}
/*Main desktop slider end*/
.doc-size {
    font-weight: normal;
    color: #cccccc;
}
/*Homepage style end*/

/*Fast Facts style start*/
.pane--content .module.module-fast-intro {
    padding-bottom: 5px;
}
.pane--content .module.module-fast-facts {
    padding-top: 5px;
}
.module-fast-facts_image {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}
.module-fast-facts_title {
    font-weight: bold;
}
.module-fast-facts .grid_col,
.module-financial-fast-facts .grid_col {
    padding-bottom: 20px;
}
.module-fast-facts .custom-bigger-link {
    font-size: 25px;
    margin-top: 50px;
}
.module-financial-facts h3 {
    font-weight: 600;
}
.module-fast-facts a {
    word-wrap: break-word;
}
/*Fast Facts style end*/


/*Disclaimer Style Start*/

#disclaimer {
    display: none;
}
.disclaimer {
    width: 60%;
    border-radius: 4px;
}
@media only screen and (max-width: 768px) {
    .disclaimer {
        width: 90%;
    }
}
.disclaimer .fancybox-close-small {
    display: none;
}
.disclaimer .disclaimer_title-bar {
    background: #2c2966;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    text-align: center;
    border-radius: 3px;
    position: relative;
}
.disclaimer .disclaimer_close-it {
    position: absolute;
    right: 20px;
    cursor: pointer;
    top: 7px;
}
.disclaimer .disclaimer_close-it {
    float: right;
}
.disclaimer .disclaimer_content {
    padding: 0 15px;
}
.disclaimer .disclaimer_content p {
    font-size: 14px;
}
.disclaimer .dislaimer_buttons {
    border-top: 9px solid #2c2966;
    text-align: center;
    padding-top: 30px;
}
.disclaimer .dislaimer_buttons a {
    margin-bottom: 10px;
}
.disclaimer .disclaimer_close-it::before {
    content: "\ed6d";
    font-family: "q4-icons";
    speak: none;
    color: #ffffff;
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*Disclaimer Style End*/