/*==================================
 ------------ 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;
    font-size: 10px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

nav ol,
.list--reset ol,
.list--reset ul,
ol.list--reset,
ul.list--reset {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/*---------- Animations ----------*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/*==================================
 --------- DEFAULT STYLES ---------
==================================*/

body {
    background: #ffffff;
    overflow-x: hidden;
    color: #555555;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}


/*---------- TYPOGRAPHY ----------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #555555;
    line-height: 1.2;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4,
h5 {
    text-transform: none;
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: #2ea3f2;
}

a[href] {
    cursor: pointer;
}

a:hover {
    color: #e62920;
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

i {
    display: inline-block;
}

small {
    font-size: 1.2rem;
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 4rem;
    }
}


/*------------ COMMON ------------*/

img {
    border: 0 none;
    max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    user-select: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding-left: 22px;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #c8c8c8;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

input[type="checkbox"]:checked+label:after,
input[type="radio"]:checked+label:after {
    content: "\e919";
    color: #e62920;
    font-size: 1.1rem;
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 2px;
    z-index: 1;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}


/*------- HACKS AND FIXES -------*/

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*------------ LISTS ------------*/

ol,
ul {
    list-style-position: outside;
    margin: 0 0 20px 0;
    padding: 0 0 0 40px;
}

li {
    line-height: 1.4;
}

.list {
    list-style-type: disc;
}

.list--ordered {
    list-style-type: decimal;
}

.list--alpha {
    list-style-type: lower-alpha;
}

.list--roman {
    list-style-type: lower-roman;
}

.list--inside {
    list-style-position: inside;
}


/*------- BUTTONS / INPUTS -------*/

::-webkit-input-placeholder {
    color: #555;
    opacity: 1;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #555;
    opacity: 1;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #555;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #555;
    opacity: 1;
}

input::-ms-clear,
textarea::-ms-clear,
select::-ms-clear,
button::-ms-clear,
.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.module_dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

select::-ms-expand,
.dropdown::-ms-expand,
.module_dropdown::-ms-expand {
    display: none;
}

input[type="submit"],
input[type="email"],
input[type="password"],
input[type="text"],
input[type="file"],
input,
textarea,
select,
button,
.input,
.textarea,
.dropdown,
.module_dropdown,
.upload,
.submit,
.button {
    appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
textarea:focus,
.textarea:focus {
    border-color: #2c74b5;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="file"],
input,
textarea,
select,
button,
.input,
.textarea,
.dropdown,
.module_dropdown,
.upload,
.submit,
.button {
    display: inline-block;
    max-width: 100%;
    padding: 10px 15px;
    background-color: transparent;
    border: 1px solid #cccccc;
    color: #555555;
    border-radius: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.submit,
.button,
.upload,
.dropdown,
.module_dropdown {
    cursor: pointer;
}

input[type="email"],
input[type="password"],
input[type="text"],
textarea,
.textarea {
    background: #fff;
}

textarea,
.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.dropdown,
.module_dropdown {
    font-weight: 400;
    background-image: url("../design/svg/q4-icon_chevron-down-dropdown.svg");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: 12px 12px;
    padding: 10px 40px 10px 15px;
    color: #2ea3f2;
    min-width: 175px;
}

.submit,
.button {
    padding: 10px 22px;
    min-width: 200px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-width: 1px;
    background-color: #e62920;
    border-color: #e62920;
    position: relative;
    text-align: center;
    color: #fff;
    line-height: normal;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
}

.button:hover {
    background-color: #bd1f17;
    border-color: #bd1f17;
    color: #fff;
}

.button--turquoise {
    background-color: #5e89a0;
    border-color: #5e89a0;
}

.button--turquoise:hover {
    background-color: #4a6b7d;
    border-color: #4a6b7d;
    color: #fff;
}

.button--more {
    background-color: transparent;
    border-color: #fff;
    min-width: 0;
    padding: 5px 22px;
}

.button--more:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}


/*------------ TABLES ------------*/

.table--custom {
    overflow-x: auto;
}

.table {
    width: 100%;
    margin: 16px 0;
    background: #fff;
    color: #1e2b39;
}

.dark table {
    background: #fff;
}

.table thead {
    background: #5f8aa0;
    border: none;
}

.table thead th {
    text-align: left;
}

.table tr {
    border-bottom: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
}

.table thead tr {
    border: none;
}

.table th,
.table td,
.table tr>.grid_col {
    margin: 0;
    padding: 15px 20px;
}

.table tbody td + td {
    border-left: 1px solid #ccc;
}

.table--headless tbody td + td {
    border-left: none;
}

.table th {
    color: #fff;
    font-weight: 700;
}

.table--headless tr:first-child {
    border: none;
    background: #5f8aa0;
    font-weight: 700;
    text-transform: uppercase;
}

.table--headless tr:first-child td {
    color: #fff;
}

.module-shareholder .table {
    font-size: 16px;
}

@media only screen and (max-width: 768px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tbody {
        border-top: 1px solid #cccccc;
        border-bottom: 1px solid #cccccc;
    }
    .table--responsive tr {
        display: block;
        padding: 10px 15px;
    }
    .table--responsive td {
        display: block;
        padding: 5px 0;
        margin: 0;
        border-left: none;
    }
    .table tbody td + td {
        border-left: none;
    }
    .table--responsive td:before {
        content: attr(data-heading) ": ";
        color: #555555;
        font-weight: 700;
    }
}


/*--------- 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: 25px;
}

.module_q4-icon-links .module_link > i {
    display: none;
}

.module_q4-icon-links .module_link:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e94a";
    font-size: 2.8rem;
    position: absolute;
    margin-left: -30px;
    top: -6px;
}

.module_q4-icon-links .module_add-to-calendar-reveal {
    padding-left: 30px;
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
    content: "\e918";
    margin-left: -30px;
    top: -2px;
    font-size: 2.3rem;
}

.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: "\e9b1";
    top: -2px;
    font-size: 2rem;
    margin-left: -25px;
}

.module_q4-icon-links .module_link[href$=".xls"]:before,
.module_q4-icon-links .module_link[href$=".xlsx"]:before,
.module_q4-icon-links .module_link[href$=".XLS"]:before,
.module_q4-icon-links .module_link[href$=".XLSX"]:before,
.module_q4-icon-links .module_link[href$=".csv"]:before,
.module_q4-icon-links .module_link[href$=".CSV"]:before {
    content: "\e94f";
    top: -6px;
    font-size: 2.8rem;
    margin-left: -30px;
}

.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: "\e949";
}

.module_q4-icon-links .module_link[href$=".pdf"]:before,
.module_q4-icon-links .module_link[href$=".PDF"]:before {
    content: "\e94b";
    font-size: 2.8rem;
    top: -7px;
    margin-left: -30px;
}

.module_q4-icon-links .module_link.module_link-webcast:before,
.module_q4-icon-links .module_webcast-link:before {
    content: "\e989";
    top: -2px;
    font-size: 2rem;
    margin-left: -25px;
}


/*.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: "\e94a";
}
.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
    content: "\e94b";
}
.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
  content: "\e94c";
}
.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
  content: "\e94f";
}
.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
  content: "\e950";
}*/


/*==================================
 ----------- TOAST GRID -----------
==================================*/

.grid {
    list-style: none;
    margin-left: -20px;
}

.grid_col--1-of-1,
.grid_col--2-of-2,
.grid_col--3-of-3,
.grid_col--4-of-4,
.grid_col--5-of-5,
.grid_col--6-of-6,
.grid_col--8-of-8,
.grid_col--12-of-12 {
    width: 100%;
}

.grid_col--1-of-2,
.grid_col--2-of-4,
.grid_col--3-of-6,
.grid_col--4-of-8,
.grid_col--6-of-12 {
    width: 50%;
}

.grid_col--1-of-3,
.grid_col--2-of-6,
.grid_col--4-of-12 {
    width: 33.3333333333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
    width: 66.6666666667%;
}

.grid_col--1-of-4,
.grid_col--2-of-8,
.grid_col--3-of-12 {
    width: 25%;
}

.grid_col--3-of-4,
.grid_col--6-of-8,
.grid_col--9-of-12 {
    width: 75%;
}

.grid_col--push-1-of-1,
.grid_col--push-2-of-2,
.grid_col--push-3-of-3,
.grid_col--push-4-of-4,
.grid_col--push-5-of-5,
.grid_col--push-6-of-6,
.grid_col--push-8-of-8,
.grid_col--push-12-of-12 {
    margin-left: 100%;
}

.grid_col--push-1-of-2,
.grid_col--push-2-of-4,
.grid_col--push-3-of-6,
.grid_col--push-4-of-8,
.grid_col--push-6-of-12 {
    margin-left: 50%;
}

.grid_col--push-1-of-3,
.grid_col--push-2-of-6,
.grid_col--push-4-of-12 {
    margin-left: 33.3333333333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
    margin-left: 66.6666666667%;
}

.grid_col--push-1-of-4,
.grid_col--push-2-of-8,
.grid_col--push-3-of-12 {
    margin-left: 25%;
}

.grid_col--push-3-of-4,
.grid_col--push-6-of-8,
.grid_col--push-9-of-12 {
    margin-left: 75%;
}

.grid_col--pull-1-of-1,
.grid_col--pull-2-of-2,
.grid_col--pull-3-of-3,
.grid_col--pull-4-of-4,
.grid_col--pull-5-of-5,
.grid_col--pull-6-of-6,
.grid_col--pull-8-of-8,
.grid_col--pull-12-of-12 {
    margin-left: -100%;
}

.grid_col--pull-1-of-2,
.grid_col--pull-2-of-4,
.grid_col--pull-3-of-6,
.grid_col--pull-4-of-8,
.grid_col--pull-6-of-12 {
    margin-left: -50%;
}

.grid_col--pull-1-of-3,
.grid_col--pull-2-of-6,
.grid_col--pull-4-of-12 {
    margin-left: -33.3333333333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
    margin-left: -66.6666666667%;
}

.grid_col--pull-1-of-4,
.grid_col--pull-2-of-8,
.grid_col--pull-3-of-12 {
    margin-left: -25%;
}

.grid_col--pull-3-of-4,
.grid_col--pull-6-of-8,
.grid_col--pull-9-of-12 {
    margin-left: -75%;
}

.grid_col--1-of-5 {
    width: 20%;
}

.grid_col--push-1-of-5 {
    margin-left: 20%;
}

.grid_col--pull-1-of-5 {
    margin-left: -20%;
}

.grid_col--2-of-5 {
    width: 40%;
}

.grid_col--push-2-of-5 {
    margin-left: 40%;
}

.grid_col--pull-2-of-5 {
    margin-left: -40%;
}

.grid_col--3-of-5 {
    width: 60%;
}

.grid_col--push-3-of-5 {
    margin-left: 60%;
}

.grid_col--pull-3-of-5 {
    margin-left: -60%;
}

.grid_col--4-of-5 {
    width: 80%;
}

.grid_col--push-4-of-5 {
    margin-left: 80%;
}

.grid_col--pull-4-of-5 {
    margin-left: -80%;
}

.grid_col--1-of-6 {
    width: 16.6666666667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-6 {
    width: 83.3333333333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.3333333333%;
}

.grid_col--1-of-8 {
    width: 12.5%;
}

.grid_col--push-1-of-8 {
    margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
    margin-left: -12.5%;
}

.grid_col--3-of-8 {
    width: 37.5%;
}

.grid_col--push-3-of-8 {
    margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
    margin-left: -37.5%;
}

.grid_col--5-of-8 {
    width: 62.5%;
}

.grid_col--push-5-of-8 {
    margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
    margin-left: -62.5%;
}

.grid_col--7-of-8 {
    width: 87.5%;
}

.grid_col--push-7-of-8 {
    margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
    margin-left: -87.5%;
}

.grid_col--1-of-12 {
    width: 8.3333333333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.3333333333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.3333333333%;
}

.grid_col--2-of-12 {
    width: 16.6666666667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.6666666667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.6666666667%;
}

.grid_col--5-of-12 {
    width: 41.6666666667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.6666666667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.6666666667%;
}

.grid_col--7-of-12 {
    width: 58.3333333333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.3333333333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.3333333333%;
}

.grid_col--10-of-12 {
    width: 83.3333333333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.3333333333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.3333333333%;
}

.grid_col--11-of-12 {
    width: 91.6666666667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.6666666667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.6666666667%;
}

.grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
}

@media (max-width: 480px) {
    .grid_col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .grid_col[class*="grid_col--lg-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--lg-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--lg-1-of-2,
    .grid_col.grid_col--lg-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--lg-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--lg-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lg-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*="grid_col--lc-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--lc-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--lc-1-of-2,
    .grid_col.grid_col--lc-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--lc-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--lc-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--lc-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*="grid_col--md-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--md-1-of-1 {
        width: 100%;
    }
    .grid_col.grid_col--md-1-of-2,
    .grid_col.grid_col--md-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--md-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--md-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--md-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .grid_col[class*="grid_col--sm-"] {
        display: inline-block;
        margin-right: -.24em;
    }
    .grid_col.grid_col--sm-1-of-2,
    .grid_col.grid_col--sm-2-of-4 {
        width: 50%;
    }
    .grid_col.grid_col--sm-1-of-3 {
        width: 33.3333333333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.6666666667%;
    }
    .grid_col.grid_col--sm-1-of-4 {
        width: 25%;
    }
    .grid_col.grid_col--sm-3-of-4 {
        width: 75%;
    }
}

.grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.grid_col--d-first {
    float: left;
}

.grid_col--d-last {
    float: right;
}

.grid--no-gutter {
    margin-left: 0;
}

.grid--no-gutter .grid_col {
    padding-left: 0;
}

.grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
}

.grid--no-space .grid_col {
    margin-right: 0;
}

.grid_col--ab {
    vertical-align: bottom;
}

.grid_col--am {
    vertical-align: middle;
}


/*==================================
 --------- UTILITY CLASSES --------
==================================*/

.hidden {
    display: none !important;
}

.disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inline {
    display: inline;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.vtop {
    vertical-align: top;
}

.vmiddle {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.right {
    float: right;
}

.left {
    float: left;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.background--cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background--brand {
    background-color: #2ea3f2;
}

.background--alt-brand {
    background-color: #f1af0f;
}

.background--dark {
    background-color: #222;
}

.background--light {
    background-color: #fff;
}

.background--grey {
    background-color: #f6f6f6;
}

.background--blue {
    background-color: #5f8aa0;
}

.background--blue-dark {
    background-color: #16202c;
}

.background--blue-light {
    background-color: #ebf2f2;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b81e16;
}

.color--brand {
    color: #2ea3f2;
}

.color--dark {
    color: #222;
}

.color--grey {
    color: #f6f6f6;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #b81e16;
}

.dark {
    color: #fff;
}

.dark a {
    color: #fff;
}

a[data-section],
a.anchor--scroll-to {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin-top: -69px;
    overflow: hidden;
    border: 0;
    opacity: 0;
}

.page-financial a[data-section],
.page-financial a.anchor--scroll-to {
    margin-top: -24px;
}

.module--no-padding a[data-section],
.module--no-padding a.anchor--scroll-to {
    margin-top: 0;
}

.module--no-padding-top a[data-section],
.module--no-padding-top a.anchor--scroll-to {
    margin-top: 0;
}

.module--no-thin a[data-section],
.module--no-thin a.anchor--scroll-to {
    margin-top: -34px;
}

.module--no-thin-top a[data-section],
.module--no-thin-top a.anchor--scroll-to {
    margin-top: -34px;
}

.module--no-thick a[data-section],
.module--no-thick a.anchor--scroll-to {
    margin-top: -99px;
}

.module--no-thick-top a[data-section],
.module--no-thick-top a.anchor--scroll-to {
    margin-top: -99px;
}


/*==================================
 --------- 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 {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.5;
    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_links {
    margin-bottom: 15px;
}

.module_speakers {
    margin-bottom: 10px;
}

.module_speakers h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.module_button {
    margin-top: 30px;
}

.module_not-found:not(:empty) {
    padding: 15px 20px;
    margin-bottom: 15px;
}

.module_options {
    margin-bottom: 30px;
}

.module_error-container:not(:empty) {
    margin-bottom: 30px;
    color: #b72121;
}

.module_add-to-calendar-reveal {
    color: #2ea3f2;
    cursor: pointer;
}

.module_add-to-calendar-reveal:hover {
    color: #e62920;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
}

.module_add-to-calendar-list {
    display: none;
}

.module_add-to-calendar-list:after {
    content: "Select your Calendar";
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar-link {
    font-size: 2.4rem;
    color: #2ea3f2;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions,
.module_pager {
    margin-top: 20px;
}

.module_date-time {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.module_date-text,
.module_date-separator,
.module_time-text {}

.module_time-text:not(:empty) {
    position: relative;
    padding-left: 20px;
}

.module_time-text:not(:empty):before {
    content: "|";
    font-size: 1.2rem;
    position: absolute;
    margin-left: -15px;
    margin-top: 1px;
}

.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 {
    line-height: 1.5;
}

.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 15px;
}

.module_image--right {
    float: right;
    margin-left: 30px;
}

.module_image--left {
    float: left;
    margin-right: 30px;
}

.module_introduction:not(:empty) {
    margin-bottom: 20px;
}

.module_item {
    padding: 0;
    margin-bottom: 30px;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.module_label+.module_required {
    font-size: 1.4rem;
}

.module_links>*,
.module_links li,
.module_links .module_presentation,
.module_links .module_attachments > li,
.module_links .module_financials > li {
    display: block;
}

.module_links.module_links--stack>*,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
    display: block;
}

.module_link {
    vertical-align: middle;
    display: inline-block;
    margin: 0 0 10px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.module_link:hover {
    text-decoration: underline;
}

.module_link>i:before {
    display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    padding: 15px 20px;
    display: inline-block;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 10px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #23a217;
}

.module-activation .module_message--success,
.module-deactivation .module_message--success,
.module-subscribe .module_message--success,
.module-unsubscribe .module_message--success {
    font-weight: 700;
}

.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_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
    width: 100%;
}

.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 #2ea3f2;
    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: #2ea3f2;
    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;
        margin-top: 10px;
    }
}

.module_pager a {
    color: #333333;
}

.module_pager a[href] {
    color: #2ea3f2;
}

.module_reminder .module_input.module_reminder-period,
.module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
    width: auto;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: #b72121;
}

.module_required-text {
    font-size: 1.5rem;
    color: #b72121;
}

.module_required-text>span {
    color: #555555;
}

.dark .module_required-text>span {
    color: #fff;
}

.module_rss {
    float: right;
}

.module_rss-link {
    color: #2ea3f2;
}

.module_rss-link:hover {
    color: #e7362d
}

.module_rss i:before {
    font-size: 1.8rem;
}

.module_rss.module_rss--top {
    margin-top: 7px;
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_title {
    text-transform: uppercase;
}

.dark .module_title {
    color: #fff;
}

.module_view-all-link {
    font-size: 1.4rem;
}

.module textarea.module_input {
    resize: vertical;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}


/*------- Captcha Component ------*/

.CaptchaContainer {
    display: none;
}

.CaptchaContainer .module-subscribe_submit-button {
    width: 100%
}

.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: 10px;
    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;
    padding: 10px 20px;
    font-size: 1.5rem;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}


/*- Investment Calculator Widget -*/

.module-calculator_reinvest-dividends {
    display: none;
}

.module-calculator_input:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-calculator_input h4 {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .module-calculator_input h4 {
        display: block;
        margin-bottom: 0;
        margin-right: 0;
    }
}

.module-calculator_input label {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.module-calculator_input input[type="checkbox"]+label {
    margin: 0;
}

.module-calculator_input-row--other input[type="checkbox"]+label {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

.module-calculator_input-row--other input[type="checkbox"]+label {
    margin-right: 10px;
}

.module-calculator_input-row {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin-right: 15px;
}

@media screen and (max-width: 768px) {
    .module-calculator_input-row {
        display: block;
        margin-right: 0;
        margin-top: 10px;
    }
    .module-calculator_input-row--other {
        margin-top: 0;
    }
}

.module-calculator_input-row input[type="text"] {
    max-width: 160px;
    margin: 0;
}

.module-calculator_input-row--other input[type="text"] {
    display: inline-block;
    vertical-align: middle;
    visibility: hidden;
    opacity: 0;
}

.module-calculator_input-row--other input[type="text"].js--revealed {
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        min-width: 920px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .module-calculator_popup-container .table thead {
        display: none;
    }
    .module-calculator_popup-container .table tbody {
        border-top: 2px solid #2ea3f2;
        border-bottom: 2px solid #2ea3f2;
    }
    .module-calculator_popup-container .table td {
        display: block;
    }
    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: 700;
    }
}

.module-calculator_info td:first-child:before {
    content: none;
}


/*- Committee Composition Widget -*/

@media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
        display: none;
    }
}

.module-committee .module_container--tablet {
    display: none;
}

@media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
        display: block;
    }
}

.module-committee .module_header {
    display: block;
    border-top: 1px solid #cccccc;
    font-weight: 700;
    color: #e62920;
}

.module_container--desktop .module_header {
    text-transform: uppercase;
    background: #5f8aa0;
    color: #fff;
    border: none;
}

.module-committee .module_item-container {
    border-top: 1px solid #cccccc;
}

.module-committee .module_item {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #cccccc;
}

.module-committee .module_container--desktop .module_item {
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
}

.module-committee .grid_col {
    padding: 15px 20px;
    text-align: center;
}

.module_container--desktop .module_item-container .grid_col {
    min-height: 51px;
}

.module_container--desktop .module_item-container .grid_col + .grid_col {
    border-left: 1px solid #ccc;
}

.module-committee .grid_col:first-child {
    text-align: left;
}

.module-committee_category.js--active .module_header i:before {
    content: "\edc2";
}

.module-committee_custom-role {
    margin-left: 5px;
}

.module-committee_bio {
    padding: 0 15px 20px;
    text-align: left;
}

.module-committee_bio p {
    margin: 0;
}

.module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
}

.module-committee_legend-container {
    padding: 20px 15px;
}

.module-committee_legend {
    display: inline-block;
    margin-right: 30px;
}

.module-committee_legend i {
    margin-right: 5px;
}

.module-committee .module_container--tablet .module_header {
    font-size: 1.5rem;
    margin-bottom: 0;
    padding: 15px 20px 15px 0;
    color: #2ea3f2;
    background: #fff;
    position: relative;
    cursor: pointer;
    font-weight: 400;
    border-top: none;
}

.module-committee .module_container--tablet .js--active .module_header {
    color: #466979;
    font-weight: 700;
}

.module-committee .module_container--tablet .module_header i:before {
    content: "\edc2";
    font-weight: 700;
    color: #2ea3f2;
    font-size: 1.3rem;
}

.module-committee .module_container--tablet .js--active .module_header i:before {
    content: "\edba";
}

.module-committee .module_container--tablet .grid_col {
    padding: 0;
    text-align: left;
}

.module-committee .module_container--tablet .grid_col:last-child {
    text-align: right;
}

.module-committee .module_container--tablet .module-committee_category {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #cccccc;
}

.module-committee .module_container--tablet .module_item {
    padding: 0;
    margin-bottom: 10px;
    border: none;
}

.module-committee .module_container--tablet .module_item:last-of-type {
    margin-bottom: 0;
}

.module-committee .module_container--tablet .module_items-container {
    padding: 15px 20px 15px 0;
    border-top: 1px solid #ccc;
}


/*----- Download List Module -----*/

.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 0;
    margin-bottom: 15px;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title {
    position: relative;
}

.module-downloads_title .module-downloads_title-link {
    padding: 0 25px 0 0;
    margin: 0;
    position: static;
}

.module-downloads_title .module-downloads_title-link:hover {
    text-decoration: none;
}

.module-downloads_title.module_q4-icon-links .module-downloads_title-link:before,
.module-downloads_title .module-downloads_title-link:before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    margin-left: 0;
}


/*--------- 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;
}

.module-event .module_links > * {
    display: block;
}

.module-event .module_headline-link {
    color: #555555;
}

.module-event .module_headline-link:hover {
    color: #2ea3f2;
    text-decoration: underline;
}

.module-event-details .module_speakers h4 {
    display: none;
}

.module-event-latest .module_container--content {
    margin-bottom: 20px;
}

.module-event-latest .module_item {
    margin: 0;
    border: none;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
    .module-event-latest .module_item {
        padding: 0 20px;
    }
}

.module-event-latest .module_item-wrap {
    margin-left: 20px;
    padding: 30px;
    background: #5f8aa0;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

@media only screen and (max-width: 768px) {
    .module-event-latest .module_item-wrap {
        margin-left: 0;
        padding: 20px;
    }
}

.module-event-latest .module_item-wrap:hover {
    background: #1e2b39;
}

.module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.module-event-latest .module_item-wrap:hover .module_date-time,
.module-event-latest .module_item-wrap:hover .module_location {
    display: none;
}

.module-event-latest .module_item-wrap .module_button {
    display: none;
}

.module-event-latest .module_item-wrap:hover .module_button {
    display: block;
}

.module-event-latest .module_links {
    margin: 0 0 15px;
    visibility: hidden;
    opacity: 0;
}

.module-event-latest .module_item-wrap:hover .module_links {
    visibility: visible;
    opacity: 1;
}

.module-event-latest .module_link {
    color: #fff;
}

.module-event-latest .module_link:hover {
    color: #2ea3f2;
}

.module-event-latest .module_links>*,
.module-event-latest .module_links li,
.module-event-latest .module_links .module_presentation {
    display: block;
}

.module-event-latest .module_button {
    margin-top: 0;
}

.module-event-latest .button {
    transition: none;
}

.module-event-latest.module-event-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-event-latest .module_headline-link,
.module-event-latest .module_headline-link:visited {
    color: #ffffff;
}

.module-event-latest .module_item-wrap:hover .module_headline-link {
    font-weight: 700
}

.module-event-latest .module_headline-link:hover {
    color: #2ea3f2;
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
    .module-event-latest .slick-slider.grid {
        margin-left: 0;
    }
}

.module-event-latest .slick-prev {
    left: -10px;
}

.module-event-latest .slick-next {
    right: -10px;
}

.module-event-upcoming .module_nav {
    display: none;
}

.module-events-presentations-archive .module_location,
.module-events-presentations-archive .module_speakers h4,
.module-events-presentations-archive .module_body {
    display: none;
}

.module-events-presentations-archive .module_headline-link {
    color: #555555;
}

.module-events-presentations-archive .module_headline-link:hover {
    color: #2ea3f2;
    text-decoration: underline;
}

.module-event-calendar_container-wrap {
    position: relative;
}

.module-event-calendar_legend {
    margin-top: 20px;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_legend {
        margin-top: 15px;
    }
}

.module-event-calendar_container-wrap .module-event-calendar_legend-event {
    margin-left: 20px;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_container-wrap .module-event-calendar_legend-event {
        margin-left: 10px;
    }
}

.module-event-calendar_container-wrap .module-event-calendar_legend-current:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    height: 3px;
    width: 13px;
    background-color: #5f8aa0;
    margin-top: -3px;
}

.module-event-calendar_container-wrap .module-event-calendar_legend-event:before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    height: 15px;
    width: 15px;
    background-color: #5f8aa0;
    border-radius: 5px;
    margin-top: -4px;
}

@media only screen and (max-width: 768px) {
    .module-event-calendar_container-wrap {
        margin-bottom: 30px;
    }
}

.module-event-calendar_calendar-container,
.module-event-calendar_event-container {
    text-align: center;
}

.module-event-calendar_calendar-container {
    padding: 0;
    margin: 0;
    position: relative;
}

.module-event-calendar_event-container {
    opacity: 0;
    visibility: hidden;
    padding: 15px;
    border: 1px solid #cccccc;
    position: absolute;
    width: 100%;
    background: #fff;
    transition: all 0.5s ease;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    bottom: 0;
}

.module-event-calendar_event-container.js--visible {
    opacity: 1;
    visibility: visible;
}

.module-event-calendar_event-container .module_links>*,
.module-event-calendar_event-container .module_links li,
.module-event-calendar_event-container .module_links .module_presentation,
.module-event-calendar_event-container .module_links .module_attachments > li,
.module-event-calendar_event-container .module_links .module_financials > li {
    display: inline-block;
    margin-right: 10px;
}

.module-event-calendar_event-container .module_links> ul.module_attachments {
    display: inline;
    margin-right: 0;
}

.module-event-calendar_container-wrap .module_close {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    color: #555555;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    cursor: pointer;
    background: #fff;
    box-sizing: border-box;
    z-index: 2;
    font-size: 1.4rem;
}

.module-event-calendar_splash i {
    font-size: 40px;
    font-size: 4rem;
    color: #2ea3f2;
}

.module-event-calendar_splash p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.module-event-calendar_controls {
    padding: 20px 15px;
    background-color: #5f8aa0;
    font-weight: 700;
    color: #fff;
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    text-transform: uppercase;
    border-right: 1px solid #cccccc;
    font-size: 1.6rem;
}

.module-event-calendar_previous-month,
.module-event-calendar_month,
.module-event-calendar_next-month {
    display: inline-block;
}

.module-event-calendar_previous-month,
.module-event-calendar_next-month {
    cursor: pointer;
    color: #ffffff;
}

.module-event-calendar_previous-month {
    float: left;
}

.module-event-calendar_next-month {
    float: right;
}

.module-event-calendar_day-container {
    border: 1px solid #cccccc;
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 15px 0;
}

.module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
}

.module-event-calendar_day--today {
    background: transparent;
    color: #5f8aa0;
    font-weight: 700;
}

.module-event-calendar_day--today:after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    height: 4px;
    width: 43px;
    background-color: #5f8aa0;
}

.module-event-calendar_day--event {
    cursor: pointer;
    color: #fff;
}

.module-event-calendar_day--event:after {
    bottom: auto;
    background-color: #5f8aa0;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    display: block;
    z-index: -1;
    border-radius: 8px;
}

.module-event-calendar_day--adjacent-month {
    color: rgba(51, 51, 51, 0.25);
    pointer-events: none;
    background: transparent;
}

.module-event-calendar_day--adjacent-month:after {
    content: none;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}

.module-event-calendar .module_item {
    padding: 10px;
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.module-event-calendar .module_date-time,
.module-event-calendar .module_headline {
    margin-bottom: 10px;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar .module_date-time,
    .module-event-calendar .module_headline {
        margin-bottom: 5px;
    }
}

.module-event-calendar .module_headline-link {
    color: #555555;
}

.module-event-calendar .module_headline-link:hover {
    color: #2ea3f2;
    text-decoration: underline;
}

.module-event-calendar .module_add-to-calendar {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-event-calendar {
        display: block;
    }
    .module-event-calendar_calendar-container,
    .module-event-calendar_event-container {
        display: block;
        width: 100%;
    }
    .module-event-calendar_calendar-container {
        padding-right: 0;
    }
}

@media only screen and (max-width: 480px) {
    .module-event-calendar .module_location {
        margin-bottom: 10px;
    }
    .module-event-calendar .module_speakers {
        margin-bottom: 10px;
    }
    .module-event-calendar .module_speakers li {
        margin-bottom: 0;
    }
}


/*------------- Event Header -----------*/

.module-event-header {
    text-align: right;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 63px;
    width: 50%;
    float: right;
    font-size: 1.5rem;
}

.module-event-header .module_headline-link {
    color: #fff;
}

.module-event-header .module_container--outer {
    display: inline-block;
    padding-right: 20px;
    float: left;
    width: 100%;
    margin-left: 100px;
    max-width: 400px;
}

.module-event-header .module_container--inner {
    position: relative;
    display: inline-block;
    padding: 20px 25px;
    text-align: left;
}

.module-event-header .module_container--inner:before {
    content: "";
    position: absolute;
    background: #1e2b39;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.module-event-header .module_item-wrap {
    background: #1e2b39;
    padding: 15px 30px;
}

.module-event-header .module_read-more {
    margin-top: 20px
}

.module-event-header .module_location {
    display: block;
}

.module-event-header .module_read-more-link {
    color: #fff;
}

.module-event-header .module_item {
    margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
    .module-event-header .module_container--outer {
        margin-left: 0;
        float: right;
    }
}

@media only screen and (max-width: 768px) {
    .module-event-header {
        padding-top: 0;
        padding-bottom: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 240px;
        width: 100%;
    }
    .module-event-header .module_headline {
        line-height: 1;
        margin-bottom: 10px;
    }
    .module-event-header .module_read-more {
        margin-top: 10px;
    }
    .module-event-header .module_item-wrap {
        background: #333f4c;
    }
    .module-event-header .module_container--inner:before {
        background: #333f4c;
    }
    .module-event-header .module_container--outer {
        padding-right: 0;
        float: none;
        max-width: none;
        display: block;
    }
    .module-event-header .module_container--inner {
        position: relative;
        display: block;
        padding: 20px 25px;
    }
}


/*---------- -End Event Header ---------*/


/*---------- FAQ Module ----------*/

.module-faq-tab {
    display: none;
}

.module-faq-tab.js--visible {
    display: block;
}

.module-faq_question {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 0;
    padding: 15px 40px 15px 0;
    color: #2ea3f2;
    background: #fff;
    position: relative;
    cursor: pointer;
    font-weight: 400;
}

.js--active .module-faq_question {
    font-weight: 700;
    color: #466979;
}

.module-faq_question:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    font-size: 1.3rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2ea3f2;
}

.js--active .module-faq_question:after {
    content: "\edba";
}

.module-faq_answer {
    padding: 0 50px 15px 0;
}

.module-faq .module_item {
    padding: 0;
    margin: 0;
}

.module-faq .module_item + .module_item {
    border-top: 1px solid #ccc;
}

.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";
}

.module-faq--tabs .module_options {
    margin-bottom: 0;
}


/*--- Financial Report Modules ---*/

.module-financial-year .module_cover {
    margin-bottom: 15px;
}

.module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #cccccc;
}

.module-financial-year .module_item {
    padding: 0;
    margin: 0;
}

.module-financial-year .module_links {
    margin: 0;
}

.module-financial-year .module_link {
    position: relative;
    padding-left: 25px;
}

.module-financial-year .module_link:before {
    content: "\e94a";
    position: absolute;
    top: 0;
    margin-left: -25px;
}

.module-financial-year .module-financial_year {
    text-align: center;
}

.module-financial-year--latest {
    margin-top: 40px;
}

.module-financial-year--latest .module_headline {
    margin: 0;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 4;
    max-width: 150px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1.3;
}

.module-financial-year--latest .module_headline-text,
.module-financial-year--latest .module_headline-link {
    height: 50px;
    background: #1e2b39;
    color: #fff;
    padding: 6px 10px;
    font-size: 1.5rem;
    display: block;
}

.module-financial-year--latest .module_item {
    padding: 0;
    position: relative;
    margin-left: auto;
    margin-bottom: 20px;
    max-width: 240px;
    height: 190px;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .module-financial-year--latest .module_item {
        margin-bottom: 0;
        margin-right: auto;
    }
}

.module-financial-year--latest .module_item:after {
    content: "";
    position: absolute;
    top: 0;
    right: 4px;
    left: 2px;
    bottom: 0;
    border-radius: 100%;
    z-index: 2;
   /* background: rgba(0, 0, 0, 0.0);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2));
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.2)); */
}


.module_cover-wrap {
    position: relative;
    z-index: 3;
    display: block;
}
.module-financial-year--latest .module_cover {
    position: relative;
    text-align: center;
    max-width: 248px;
    padding: 0px 18px;
   /* background: #5f8aa0; */
    border-radius: 100%;
    text-align: center;
    margin: 9px auto 0;
    z-index: 2;
    display: block;
    overflow: hidden;
    margin-top: 39px;
}

.module-financial-year--latest .module_cover img {
    margin-bottom: -10px;
}

.module-financial-quarter .module_item {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #cccccc;
}

.module-financial-quarter .module_links {
    margin: 0;
    padding: 0px 20px 15px 0;
}

.module-financial-quarter .module_links>div {
    display: block;
}

.module-financial-quarter .module_link {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: none;
}

.module-financial-quarter .module-financial_year-text {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 0;
    padding: 15px 40px 15px 0;
    color: #2ea3f2;
    background: #fff;
    position: relative;
    cursor: pointer;
    font-weight: 400;
    text-transform: none;
}

.module-financial-quarter .js--active .module-financial_year-text {
    color: #e62920;
    font-weight: 700;
}

.module-financial-quarter .module-financial_year-text:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    font-size: 1.5rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.module-financial-quarter .js--active .module-financial_year-text:after {
    content: "\edba";
}

.module-financial-table_header {
    background-color: #5f8aa0;
    color: #fff;
    font-size: 1.6rem;
    border: none;
    font-weight: 700;
}

.module-financial-table {
    color: #1e2b39;
    font-size: 1.6rem;
}

.module-financial-table-quarters {
    border: 1px solid #ccc;
}

.module-financial-table-quarters_items {
    text-align: center;
    padding: 15px 20px;
    border-left: 1px solid #ccc;
}

.module-financial-table-quarters_items .item_Q {
    padding: 0;
    margin-right: 10px;
    display: inline-block;
    font-size: 1.6rem;
}

@media screen and (max-width: 480px) {
    .module-financial-table-quarters_items .item_Q {
        margin-right: 5px;
        font-size: 1.4rem;
    }
}

.module-financial-table-quarters_items .item_Q.Q4 {
    margin-right: 0;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
    padding: 15px 20px;
}

.module-financial-table_body {
    background: #fff;
}

.module-financial-table_body-row {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.module-financial-table_link i:before {
    font-size: 2.8rem;
}

@media screen and (max-width: 480px) {
    .module-financial-table_link i:before {
        font-size: 2.6rem;
    }
}

.dark .module-financial-table_link,
.module-financial-table_link {
    color: #e7362d;
}

.module-financial-table_link[href*=".pdf"] i:before {
    content: "\e94b";
}

.module-financial-table_item--news .module-financial-table_item--empty:before {
    content: "\e94a";
}

.dark .module-financial-table_link:hover,
.module-financial-table_link:hover {
    color: #2ea3f2;
}

.module-financial-table_body-year-container {
    text-align: center;
}

.module-financial-table_body-category.grid_col {
    padding: 15px 20px;
}

.module-financial-table_body-year {
    padding: 11px 10px;
    border-left: 1px solid #ccc;
    min-height: 53px !important;
}

.module-financial-table_item {
    display: inline-block;
    margin-right: 5px;
    font-size: 1.5rem;
    font-weight: normal;
}

@media only screen and (max-width: 873px) {
    .module-financial-table_item--transcript {
        min-height: 53px;
    }
}

@media only screen and (max-width: 768px) {
    .module-financial-table_item--transcript {
        min-height: auto;
    }
}

@media only screen and (max-width: 506px) {
    .module-financial-table_item--transcript {
        min-height: 53px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 0;
    }
}

.module-financial-table_item:last-of-type {
    margin-right: 0;
}

.module-financial-table_item--empty {
    font-size: 0;
}

.module-financial-table_item--empty.js--hidden {
    display: none;
}

.module-financial-table_item--empty:before {
    font-size: 2.8rem;
    content: "\e94b";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #cfcfcf;
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item--empty:before {
        font-size: 2.6rem;
    }
}

.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}

.module-financial-table .slick-slide:focus {
    outline: none;
}

.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
}

.module-financial-table .slick-prev {
    left: 10px;
}

.module-financial-table .slick-next {
    right: 10px;
}

.module-financial-table .slick-arrow:before {
    color: #fff;
    font-size: 1.6rem;
}

.module-financial-table .slick-arrow.slick-disabled:before {
    cursor: default;
}

.module-financial-mashup .module_body {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.module-financial-mashup .module_body>*:first-child,
.module-financial-mashup .module_body>style+p {
    margin-top: 0;
}

.module-financial-mashup .module_body:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50px;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#70ffffff', endColorstr='#ffffff', GradientType=0);
}

.module-financial-mashup .module-financial-mashup_documents .module_links+h4 {
    margin-top: 30px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links>div {
    background-color: #f6f6f6;
    padding: 15px;
    margin-bottom: 1px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
    margin: 0;
}

.module-financial-mashup .q4-icon_chevron-right {
    font-size: 10px;
    font-size: 1rem;
    margin-left: 5px;
}

@media screen and (max-width: 768px) {
    .module-financial-table_body-category.grid_col {
        padding: 15px 13px;
    }
}


/* Latest Quarterly Result Widget */

.module-latest-quarter .module_item {
    margin: 0;
    padding: 0;
}

.module-latest-quarter .module_title {
    margin-bottom: 5px;
}

.module-latest-quarter .module_links {
    margin: 0;
    text-align: center;
}

.module-latest-quarter .module_links > div {
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

.module-latest-quarter .module_link {
    margin: 0;
    color: #555555;
    margin: 0 0 30px;
}

.module-latest-quarter .module_link:hover {
    text-decoration: none;
    color: #e62920;
}

.module-latest-quarter .module_button {
    margin-top: 0;
}

.module-latest-quarter .module_link-text {
    display: block;
    margin: 10px 0 0;
    font-size: 1.8rem;
    text-transform: none;
    font-weight: 700;
    text-decoration: none;
}

.module-latest-quarter .module_link:before {
    content: "";
    display: inline-block;
    margin: 0;
    padding: 0;
    height: 100px;
    width: 100px;
    background-position: center center;
    background-size: 100px;
    background-repeat: no-repeat;
}

.module-latest-quarter .module_link.module_link-webcast:before,
.module-latest-quarter .module_webcast-link:before {
    background-image: url(../design/svg/webcast.svg);
}

.module-latest-quarter .module_link.module_link-news:before {
    background-image: url(../design/svg/pressrelease.svg);
}

.module-latest-quarter .module_link.module_link-online:before {
    background-image: url(../design/svg/pressrelease.svg);
    transform: scaleX(-1);
    transform: scaleX(-1);
}

.module-latest-quarter .module_link.module_link-transcript:before {
    background-image: url(../design/svg/transcript.svg);
}

.module-latest-quarter .module_link.module_link-presentation:before {
    background-image: url(../design/svg/presentation.svg);
}

.module-latest-quarter .module_link.module_link-file:before {
    background-image: url(../design/svg/quarterly.svg);
}

.module-latest-quarter .module_link.module_link-sec:before {
    background-image: url(../design/svg/quarterly.svg);
}

.module-latest-quarter .module_link.module_link-form10Q:before {
    background-image: url(../design/svg/quarterly.svg);
}

.module-latest-quarter .module-financial_type-text,
.module-latest-quarter .module-financial_year-text {
    display: inline-block;
    width: 100%;
}

.module-latest-quarter .module-financial_type-text {
    font-size: 5.5rem;
    font-weight: normal;
}

.module-latest-quarter .module-financial_year-text {
    margin-top: 15px;
    font-size: 2.4rem;
}


/*------ Formbuilder Module ------*/

.MessageSent .module-form {
    color: #1ca92e;
    font-weight: 700;
}

.MessageSent p {
    margin: 0;
}

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form--custom .module-form_item {
    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: 1.5rem;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.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 table {
    background: transparent;
}

.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: #2ea3f2;
}


/*---------- 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: "Open Sans", 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: 62%;
    /* 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;
}

@media screen and (max-width: 768px) {
    .module-slideshow_viewer:not(.grid_col) {
        max-width: none;
    }
}

.module-slideshow_viewer:not(.grid_col):not(:last-child) {
    margin-bottom: 15px;
}

.module-slideshow_title {
    margin-bottom: 10px;
}

.module-slideshow .module_links>*+* {
    margin-top: 15px;
}

.module-slideshow_link {
    position: relative;
    padding-left: 25px;
}

.module-slideshow_link:hover {
    text-decoration: underline;
}

.module-slideshow_link i {
    font-size: 0;
}

.module-slideshow_link i:before {
    font-size: 2.8rem;
    position: absolute;
    top: -5px;
    margin-left: -30px;
}

.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_link {
    padding-left: 25px;
    position: relative;
}

.module-rss .module_link i:before {
    position: absolute;
    top: -4px;
    margin-left: -25px;
    font-size: 2rem;
    padding: 0;
}


/*------ Navigation Modules ------*/

.nav_close {
    display: none;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav--main {
    padding-left: 20px;
    float: right;
}

.nav--main .level2,
.nav--main .level3 {
    display: none;
    position: absolute;
    width: 235px;
    background: #f5f5f5;
    z-index: 1;
    padding: 15px 0;
    text-align: left;
}

.nav--main li {
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nav--main .level2>li,
.nav--main .level3>li {
    display: block;
}

.nav--main li.has-children {
    position: relative;
}

.nav--main li a {
    display: block;
    padding: 5px 20px;
    color: #555555;
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: none!important;
}

.nav--main li a:focus,
.nav--main li a:visited {
    text-decoration: none!important;
}

.nav--main li.selected>a,
.nav--main li.expanded>a,
.nav--main .level1 li.has-children:hover >a,
.nav--main li a:hover,
.nav--main li a:focus {
    color: #e62920;
    outline: none;
}

.nav--main .level1>li>a {
    font-weight: 700;
    padding: 40px 10px 32px;
    text-transform: uppercase;
    position: relative;
    font-size: 1.2rem;
    text-align: center;
    -webkit-transition: padding 0.2s ease-in-out;
    transition: padding 0.2s ease-in-out;
}

.js--shrink .nav--main .level1>li>a {
    padding: 28px 10px 25px;
}

.nav--main .level1>li.sfHover>a,
.nav--main .level1>li:hover>a {
    background: #e6e6e6;
    background: -webkit-linear-gradient(top, #fafafa, #e6e6e6);
    background: -o-linear-gradient(bottom, #fafafa, #e6e6e6);
    background: -moz-linear-gradient(bottom, #fafafa, #e6e6e6);
    background: linear-gradient(to bottom, #fafafa, #e6e6e6);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nav--main .level1>li>a:after {
    visibility: hidden;
    opacity: 0;
    content: "";
    height: 2px;
    background: #e62920;
    position: absolute;
    bottom: 18px;
    left: 10px;
    right: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.js--shrink .nav--main .level1>li>a:after {
    bottom: 15px;
}


/*.nav--main .level1 > li.selected > a:after,*/

.nav--main .level1>li.sfHover>a:after,
.nav--main .level1>li:hover>a:after {
    visibility: visible;
    opacity: 1;
}

.nav--main .level1>li.sfHover .level2 {
    display: block;
}

.nav--main .level2 > li > a {
    color: #888888;
}

.nav--main .level2>li.sfHover>a,
.nav--main .level2>li:hover>a {
    color: #e62920;
}

.nav--main li a,
.nav--main li a:focus,
.nav--main li a:visited {
    text-decoration: none!important;
}

.nav--secondary {
    text-align: left;
    position: relative;
    z-index: 10;
}

.nav--secondary a {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.nav--secondary a:focus,
.nav--secondary a:visited {
    outline: none;
    text-decoration: none!important;
}

.nav--secondary .level1 > li {
    display: none;
}

.nav--secondary .level1 > li.selected {
    display: block;
}

.nav--secondary .level1 > li.js--expanded {
    display: block;
}

.nav--secondary .level1 > li.js--expanded > a {
    display: none;
}

.nav--secondary .level2 {
    display: none;
    text-align: center;
}

.nav--secondary li.selected > .level2 {
    display: block;
}

.nav--secondary li.js--expanded > .level2 {
    display: block;
}

.nav--secondary .level2>li {
    display: inline-block;
    position: relative;
}

.nav--secondary .level2>li>a {
    display: block;
    padding: 15px;
    font-size: 1.2rem;
    position: relative;
}

.nav--secondary .level2>li.selected:hover>a,
.nav--secondary .level2>li:hover>a,
.nav--secondary .level2>li.selected>a,
.nav--secondary .level2>li.js--selected>a,
.nav--secondary .level2>li.sfHover>a {
    color: #fff;
    background: #141d27;
}

.nav--secondary .level2>li>a:after {
    display: none;
    content: "";
    background: #e52920;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.nav--secondary .level2>li.selected:hover>a:after,
.nav--secondary .level2>li:hover>a:after,
.nav--secondary .level2>li.selected>a:after,
.nav--secondary .level2>li.js--selected>a:after,
.nav--secondary .level2>li.sfHover>a:after {
    display: block;
}

.nav--secondary .level3 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: #1d2a38;
    padding: 0;
}

.nav--secondary .level1 li.selected > a {
    display: none;
}

.nav--secondary .level2>li:hover > .level3,
.nav--secondary .level2>li.sfHover > .level3 {
    display: block;
}

.nav--secondary .level3>li {
    display: block;
    position: relative;
}

.nav--secondary .level3>li>a {
    display: block;
    padding: 15px 15px;
    font-size: 1.2rem;
}

.nav--secondary .level3>li.selected:hover>a,
.nav--secondary .level3>li:hover>a,
.nav--secondary .level3>li.selected>a,
.nav--secondary .level3>li.js--selected>a,
.nav--secondary .level3>li.sfHover>a {
    color: #fff;
    background: #5f8aa0;
}

@media only screen and (max-width: 1024px) {
    .nav--secondary .level1 li.selected > a {
        display: block;
    }
    .nav--secondary {
        display: block;
        text-align: left;
        background: #fff;
    }
    .nav--secondary .level1 > li,
    .nav--secondary .level2 > li,
    .nav--secondary .level3 > li {
        display: block;
    }
    .nav--secondary li.has-children>a:before {
        float: right;
        font-family: "q4-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /*content: "\edbe";*/
    }
    .nav--secondary li.js--expanded>a:before {
        /*content: "\edc2";*/
    }
    .nav--secondary a {
        display: block;
        font-weight: 600;
        font-size: 1.4rem;
        padding: 10px 15px;
        text-decoration: none;
        text-transform: none;
    }
    .nav--secondary a:focus,
    .nav--secondary a:active {
        text-decoration: none!important;
    }
    .nav--secondary .level1 > li {
        border-bottom: 1px solid #cccccc;
    }
    .nav--secondary .level1>li.expanded .level2,
    .nav--secondary .level1>li.js--expanded .level2 {
        display: block;
    }
    .nav--secondary .level1>li.selected,
    .nav--secondary .level1>li.expanded,
    .nav--secondary .level1>li.js--expanded {
        display: block;
    }
    .nav--secondary .level1>li>a {
        color: #555555;
        font-size: 1.4rem;
    }
    .nav--secondary .level1 > li.js--expanded > a {
        display: block;
    }
    .nav--secondary .level1>li.selected:hover>a,
    .nav--secondary .level1>li:hover>a,
    .nav--secondary .level1>li.selected>a,
    .nav--secondary .level1>li.js--selected>a,
    .nav--secondary .level1>li.sfHover>a {
        color: #e62920;
        background: transparent;
    }
    .nav--secondary .level1>li.selected:hover>a:after,
    .nav--secondary .level1>li:hover>a:after,
    .nav--secondary .level1>li.selected>a:after,
    .nav--secondary .level1>li.js--selected>a:after,
    .nav--secondary .level1>li.sfHover>a:after {
        display: none;
    }
    .nav--secondary .level2 {
        display: none;
        padding: 15px 0;
        background: #f5f5f5;
        position: static;
        width: 100%;
        text-align: left;
    }
    .nav--secondary .level2>li.expanded .level3,
    .nav--secondary .level2>li.js--expanded .level3 {
        display: block;
    }
    .nav--secondary .level2>li>a {
        font-size: 1.5rem;
        background: #f5f5f5;
        color: #888888;
        padding: 10px 15px 10px 30px;
    }
    .nav--secondary .level2>li:hover>a,
    .nav--secondary .level2>li.sfHover>a,
    .nav--secondary .level2>li.js--selected>a,
    .nav--secondary .level2>li.selected > a,
    .nav--secondary .level2>li.selected:hover>a,
    .nav--secondary .level2>li.expanded > a,
    .nav--secondary .level2>li.js--expanded > a {
        color: #e62920;
        background: transparent;
    }
    .nav--secondary .level2>li.selected:hover>a:after,
    .nav--secondary .level2>li:hover>a:after,
    .nav--secondary .level2>li.selected>a:after,
    .nav--secondary .level2>li.js--selected>a:after,
    .nav--secondary .level2>li.sfHover>a:after {
        display: none;
    }
    .nav--secondary .level3 {
        position: static;
        border: none;
    }
    .nav--secondary .level3>li.expanded .level3,
    .nav--secondary .level3>li.js--expanded .level3 {
        display: block;
    }
    .nav--secondary .level3>li>a {
        padding: 10px 15px 10px 45px;
    }
    .nav--secondary .level3>li.selected > a,
    .nav--secondary .level3>li.expanded > a,
    .nav--secondary .level3>li.js--expanded > a {
        color: #e62920;
    }
}

.nav--sitemap {
    padding-bottom: 35px;
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: auto;
    margin-left: auto;
    margin-top: -35px;
}

.nav--sitemap a {
    display: inline-block;
}

.nav--sitemap a:hover {
    color: #e62920;
}

.nav--sitemap ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.nav--sitemap ul>li:not(:last-of-type) {
    margin-bottom: 7px;
}

.nav--sitemap .level1 {
    margin-bottom: 10px;
}

.nav--sitemap .level1>li>a {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.nav--sitemap .level2 {
    margin-bottom: 10px;
    padding-left: 15px;
}

.nav--sitemap .level2>li>a {
    font-size: 1.3rem;
}

.nav--sitemap .level3 {
    padding-left: 30px;
}

.nav--sitemap .level3>li>a {
    font-size: 1.1rem;
}


/*-------- News Module CSS -------*/

.module-news .module_nav {
    display: none;
}

.module-news .module_rss.module_rss--top {
    margin-top: 1px;
}

@media only screen and (max-width: 480px) {
    .module-news .module_rss.module_rss--top {
        margin-top: 5px;
    }
}

.module-news-latest .module_headline {
    margin-bottom: 0;
}

.module-news-latest .module_item-image {
    height: 200px;
    width: 100%;
}

[data-slick-index="0"] .module_item-image {
    background: url("../design/background-news1.jpg") no-repeat center center;
    background-size: cover;
}

[data-slick-index="1"] .module_item-image {
    background: url("../design/background-news2.jpg") no-repeat center center;
    background-size: cover;
}

[data-slick-index="2"] .module_item-image {
    background: url("../design/background-news3.jpg") no-repeat center center;
    background-size: cover;
}

.module-news-latest .module_item {
    margin: 0;
    padding: 0;
    border: none;
    text-align: left;
}

.module-news-latest .module_item-inner {
    padding-left: 20px;
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item {
        padding: 0 20px;
    }
    .module-news-latest .module_item-inner {
        padding-left: 0;
    }
}

.module-news-latest .module_item-wrap {
    padding: 30px;
    background: #5f8aa0;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item-wrap {
        margin-left: 0;
    }
}

.module-news-latest .module_item-wrap:hover {
    background: #1e2b39;
}

.module-news-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
}

.module-news-latest .module_headline-link,
.module-news-latest .module_headline-link:visited {
    color: #ffffff;
}

.module-news-latest .module_headline-link:hover {
    color: #2ea3f2;
    text-decoration: underline;
}

.module-news-latest .module_links {
    margin: 0;
}

.module-news-latest .module_link {
    color: #2ea3f2;
}

@media only screen and (max-width: 768px) {
    .module-news-latest .slick-slider.grid {
        margin-left: 0;
    }
}

.module-news-latest .slick-prev {
    left: -10px;
}

.module-news-latest .slick-next {
    right: -10px;
}

.module-news-latest .module_button {
    margin-top: 15px;
}

.module-news-list .module_item {
    padding-left: 0;
    padding-top: 20px;
}

.module-news-details pre {
    overflow-X: auto;
}

.module-news-details .module_view-all-link {
    display: inline-block;
    margin-bottom: 25px;
    padding: 10px 22px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-width: 1px;
    background-color: #e62920;
    border-color: #e62920;
    position: relative;
    text-align: center;
    color: #fff;
    line-height: normal;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 25px;
}

.module-news-details .module_view-all-link:hover {
    background-color: #bd1f17;
    border-color: #bd1f17;
    color: #fff;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news .module_headline-link {
    color: #555555;
}

.module-news .module_headline-link:hover {
    color: #2ea3f2;
    text-decoration: underline;
}

.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;
}


/*------------- News Header -----------*/

.module-news-header {
    text-align: right;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 63px;
    width: 50%;
    float: right;
    font-size: 1.5rem;
}

.module-news-header .module_container--outer {
    display: inline-block;
    padding-right: 20px;
    float: left;
    width: 100%;
    margin-left: 100px;
    max-width: 400px;
}

.module-news-header .module_container--inner {
    position: relative;
    display: inline-block;
    padding: 20px 25px;
    text-align: left;
}

.module-news-header .module_container--inner:before {
    content: "";
    position: absolute;
    background: #1e2b39;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.module-news-header .module_item-wrap {
    background: #1e2b39;
    padding: 15px 30px;
}

.module-news-header .module_read-more {
    margin-top: 20px
}

.module-news-header .module_read-more-link {
    color: #fff;
}

.module-news-header .module_item {
    margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
    .module-news-header .module_container--outer {
        margin-left: 0;
        float: right;
    }
}

@media only screen and (max-width: 768px) {
    .module-news-header {
        padding-top: 0;
        padding-bottom: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 240px;
        width: 100%;
    }
    .module-news-header .module_item-wrap,
    .module-news-header .module_item-wrap:hover {
        background: #333f4c;
    }
    .module-news-header .module_container--inner:before {
        background: #333f4c;
    }
    .module-news-header .module_read-more {
        margin-top: 10px;
    }
    .module-news-header .module_item {
        padding: 0;
    }
    .module-news-header .module_container--outer {
        padding-right: 0;
        float: none;
        max-width: none;
        display: block;
    }
    .module-news-header .module_container--inner {
        position: relative;
        display: block;
        padding: 20px 25px;
        text-align: center;
    }
}


/*---------- -End News Header ---------*/


/*------ Person List Module ------*/

.module-person_photo-container {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 160px;
}

.module-person_name {
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 5px;
}

.module-person_title {
    font-size: 1.5rem;
    display: block;
    text-transform: none;
    color: #2ea3f2;
}

.module-person_name-container {
    text-align: center;
    cursor: pointer;
}

.module-person_description-container a > i:before {
    position: absolute;
    top: 3px;
    margin-left: -18px;
}

.module-person_description-container a {
    position: relative;
    padding-left: 18px;
    display: inline-block;
}

.module_comma,
.module-person_res-photo-container {
    display: none;
}

.module-person_link {
    font-size: 1.5rem;
    color: #8e7861;
}

@media screen and (max-width: 480px) {
    .module-person {
        text-align: center;
    }
    .module-person_photo-container {
        max-width: none;
        text-align: center;
    }
}

.module-person_description-container i:not(.color--brand):before {
    color: #555555;
}

.fancybox-container .module-person .module_item {
    max-width: 1000px;
    padding: 50px;
}

@media screen and (max-width: 768px) {
    .fancybox-container .module-person .module_item {
        padding: 20px;
    }
}

.fancybox-container .module-person_photo-container,
.fancybox-container .module-person_name-container {
    display: inline-block;
    vertical-align: middle;
}

.fancybox-container .module-person_name-container {
    position: static;
    background: transparent;
    text-align: left;
    opacity: 1;
    cursor: initial;
}

.fancybox-container .module-person_name-container h3 {
    position: static;
    transform: none;
}

.fancybox-container .module-person_name-container a {
    color: #2ea3f2;
}

.fancybox-container .module-person_photo-container {
    max-width: 160px;
    margin-right: 30px;
}

@media screen and (max-width: 768px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: none;
    }
}

.fancybox-container .module-person_name {
    display: block;
    margin-bottom: 5px;
    font-size: 3.6rem;
    color: #555555;
    text-transform: none;
}

.fancybox-container .module-person_title {
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .fancybox-container .module-person_name {
        font-size: 2.7rem;
        margin-top: 10px;
    }
    .fancybox-container .module-person_title {
        font-size: 1.4rem;
    }
}

.fancybox-container .module-person_description-container {
    margin-top: 30px;
    display: block;
}

.fancybox-container .module-person_description {
    display: block;
}

.module-person-accordion .module-person_name-container {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 0;
    padding: 15px 40px 15px 0;
    color: #2ea3f2;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 1.5rem;
    padding: 0;
    margin: 0;
    color: inherit;
    font-weight: 400;
}

.module-person-accordion .js--active .module-person_name-container h3 {
    font-weight: 700;
}

.module-person-accordion .module_item {
    padding: 0;
    margin: 0;
    width: 100%;
}

.module-person-accordion .module_item + .module_item {
    border-top: 1px solid #cccccc;
}

.module-person-accordion .module-person_name {
    padding-right: 10px;
    font-size: 1.5rem;
    margin: 0;
    color: #2ea3f2
}

.module-person-accordion .js--active .module-person_name {
    color: #466979;
}

.module-person-accordion .module-person_title {
    font-size: 1.5rem;
    display: inline;
    color: inherit;
}

.module-person-accordion .module-person_description-container {
    padding: 20px 20px 20px 0;
}

.module-person-accordion .module-person_name-container:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    font-size: 1.3rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2ea3f2;
}

.module-person-accordion .js--active .module-person_name-container {
    color: #466979;
}

.module-person-accordion .js--active .module-person_name-container:after {
    content: "\edba";
}

.module-person-accordion .module-person_photo-container {
    display: inline-block;
    margin: 0 0 15px;
    vertical-align: top;
    padding-right: 25px;
}

.module-person-accordion .module-person_box-description {
    display: inline-block;
    width: calc(100% - 200px);
}

@media screen and (max-width: 650px) {
    .module-person-accordion .module-person_photo-container {
        display: block;
        padding-right: 0;
        text-align: left;
        margin: 0 auto 15px;
    }
    .module-person-accordion .module-person_box-description {
        display: block;
        width: 100%;
    }
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details_photo-container,
.module-person-details_name-container {
    display: inline-block;
    vertical-align: middle;
}

.module-person-details_photo-container {
    max-width: 160px;
    margin-right: 20px;
}

@media screen and (max-width: 768px) {
    .module-person-details_photo-container {
        margin-right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.module-person-details_name {
    display: block;
    margin-bottom: 5px;
    font-size: 3.6rem;
}

.module-person-details_title {
    display: block;
    font-size: 1.8rem;
}

.module-person-details_description-container {
    margin-top: 20px;
}

.module-presentation .module_body {
    display: none;
}

.module-presentation .module_headline {
    margin-bottom: 5px;
}
.module-presentation--featured, .module-presentation--corporate {
    padding-bottom: 15px;
}

.module-presentation--featured, .module-presentation--corporate {
    padding-left: 30px;
}

@media screen and (max-width: 768px) {
    .module-presentation--featured, .module-presentation--corporate {
        padding-left: 0;
    }
}


/*------ 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", Arial, 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-dropdown.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: #2ea3f2;
    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-result_summary {
    margin-bottom: 30px;
}

.module-search {
    margin-top: 4px;
    margin-right: 10px;
    position: relative;
    text-align: right;
    float: right;
}

.module-search_input[type="text"] {
    display: inline-block;
    width: 143px;
    padding: 0px 3px 2px;
    border: 1px solid #ccc;
    background: #ccc;
    font-size: 1.2rem;
    border-radius: 3px;
    margin-right: 30px;
    color: #555555;
    font-weight: 400;
}

.module-search_input[type="text"]:focus {
    border: 1px solid #2c74b5;
}

.module-search_input[type="text"]::-webkit-input-placeholder {
    color: #555555;
}

.module-search_input[type="text"]::-moz-placeholder {
    color: #555555;
}

.module-search_input[type="text"]::-ms-input-placeholder {
    color: #555555;
}

.module-search_button {
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    padding: 0;
    border: 0;
    background: transparent url(../design/svg/search-white.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    font-size: 0;
    cursor: pointer;
    transform: translateY(-50%);
    margin: 0;
}

.module-search-result_link {
    margin-bottom: 15px;
}

.module-search-result_description {
    display: block;
    margin-bottom: 15px;
}

.module-search-result_description:after {
    content: "...";
}

.module-search-result_url {
    display: none;
}


/*-------- Module corporate link --------*/

.module-corporate-link {
    float: right;
    margin-top: 5px;
    margin-right: 15px;
}

.module-corporate-link a {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}


/*-------- SEC Module CSS --------*/

@media screen and (max-width: 768px) {
    .module-sec .module_rss.module_rss--top {
        margin-top: 5px;
    }
}

.module-sec .module_header {
    display: block;
    padding: 0;
    background-color: #5f8aa0;
    border: none;
    text-transform: uppercase;
}

.module-sec .module_container--content {
    border-top: 1px solid #ccc;
}

.module-sec .module_header-text {
    padding: 15px 15px 15px 20px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .module-sec .module_options-select {
        margin-bottom: 15px;
    }
    .module-sec .module_options-label {
        display: block;
        margin-bottom: 10px;
    }
}

.module-sec .module_item {
    font-size: 1.6rem;
    margin: 0;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    color: #1e2b39;
    display: table;
    table-layout: fixed;
    width: 100%;
}

.module-sec .module_item .grid_col {
    display: table-cell;
    vertical-align: middle;
    padding: 15px 15px 15px 20px;
    border-left: 1px solid #ccc;
}

.module-sec .module_item .module-sec_download-list {
    /*padding: 15px 20px;*/
}

.module-sec .module_item .grid_col > span {
    padding: 0;
    display: block;
}

.module-sec .module-sec_filing-link {
    color: #1e2b39;
}

.module-sec .module-sec_filing-link:hover {
    color: #2ea3f2;
}

.module-sec .module_link-sec,
.module-sec-details .module_link-sec {
    padding: 0;
    position: static;
    margin: 0;
    text-decoration: none;
    color: #e7362d;
}

@media screen and (max-width: 480px) {
    .module-sec .module_link-sec,
    .module-sec-details .module_link-sec {
        margin: 0 -1px 0 0;
    }
}

.module-sec .module_link-sec:hover,
.module-sec-details .module_link-sec:hover {
    color: #2ea3f2;
}

.module-sec .module_link-sec:before,
.module-sec-details .module_link-sec:before {
    position: static;
    margin: 0;
}

.module-sec-details .module_link-sec:before,
.module-sec .module_link-sec:before {
    content: "\e94a";
    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: "\e94a";
    font-size: 2.8rem;
}

@media screen and (max-width: 480px) {
    .module-sec-details .module_link-sec:before,
    .module-sec .module_link-sec:before {
        font-size: 2.6rem;
    }
}

.module-sec-details .module_link-sec[href$=".pdf"]:before,
.module-sec .module_link-sec[href$=".pdf"]:before {
    content: "\e94b";
}

.module-sec-details .module_link-sec[href$=".rtf"]:before,
.module-sec .module_link-sec[href$=".rtf"]:before {
    content: "\e94c";
}

.module-sec-details .module_link-sec[href$=".txt"]:before,
.module-sec .module_link-sec[href$=".txt"]:before {
    content: "\e94d";
}

.module-sec-details .module_link-sec[href$=".xls"]:before,
.module-sec .module_link-sec[href$=".xls"]:before {
    content: "\e94f";
}

.module-sec-details .module_link-sec[href$=".zip"]:before,
.module-sec .module_link-sec[href$=".zip"]:before {
    content: "\e950";
}

.module-sec .module_link-sec:hover,
.module-sec .module_link-sec:focus,
.module-sec-details .module_link-sec:hover .module-sec-details .module_link-sec:focus {
    text-decoration: none;
}

.module-sec_download-list-item {
    display: inline-block;
    color: #2ea3f2;
}

.module-sec_pdf + .module-sec_download-list-item + .module-sec_download-list-item + .module-sec_download-list-item + .module-sec_PDF,
.module-sec_pdf + .module-sec_download-list-item + .module-sec_download-list-item + .module-sec_PDF,
.module-sec_pdf + .module-sec_download-list-item + .module-sec_PDF,
.module-sec_pdf + .module-sec_PDF,
.module-sec_PDF + .module-sec_download-list-item + .module-sec_download-list-item + .module-sec_download-list-item + .module-sec_pdf,
.module-sec_PDF + .module-sec_download-list-item + .module-sec_download-list-item + .module-sec_pdf,
.module-sec_PDF + .module-sec_download-list-item + .module-sec_pdf,
.module-sec_PDF + .module-sec_pdf {
    display: none;
}

.module-sec_download-list-item:not(:last-of-type) {
    margin-right: 5px;
}

.module-sec-details_date,
.module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec-details_download-list-item {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
    font-size: 0;
}

.module-sec--widget .module_not-found {
    padding: 15px 20px;
}

@media screen and (max-width: 768px) {
    .module-sec .module_item .grid_col > span {
        display: inline-block;
        border: none;
        padding: 0;
        min-height: auto;
    }
    .module-sec .module_item {
        border-left: 1px solid #ccc;
        padding: 15px 20px;
    }
    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description,
    .module-sec_download-list {
        margin-bottom: 15px;
    }
    .module-sec--widget .module_header {
        display: none;
    }
    .module-sec_date-text:before {
        content: "Date: ";
        display: inline-block;
        margin-right: 3px;
        font-weight: 700;
    }
    .module-sec_filing:before {
        content: "Filing: ";
        display: inline-block;
        margin-right: 3px;
        font-weight: 700;
    }
    .module-sec_description:before {
        content: "Description: ";
        display: inline-block;
        margin-right: 3px;
        font-weight: 700;
    }
    .module-sec_download-list:before {
        content: "Downloads: ";
        display: inline-block;
        margin-right: 3px;
        font-weight: 700;
    }
    .module-sec_download-list-item:not(:last-of-type) {
        margin-right: 0;
    }
    .module-sec .module_item .grid_col {
        margin-bottom: 10px;
        padding: 0;
        display: inline-block;
        border-left: none;
    }
    .module-event-upcoming-sec-latest .module-sec_date-text:before,
    .module-event-upcoming-sec-latest .module-sec_filing:before,
    .module-event-upcoming-sec-latest .module-sec_description:before,
    .module-event-upcoming-sec-latest .module-sec_download-list:before {
        display: none;
    }
}


/*---- Accessibility Skip Link ---*/

.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 10px 20px;
    background: #e62920;
    color: #fff;
    transform: translate(-50%, 0);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
    top: 0;
    background: #e62920;
    outline: 0;
    color: #fff;
}

.module-skip_link:visited {
    color: #fff;
}

.module-slider {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
}

.module-slider .module_container--outer,
.module-slider .module_container--inner,
.module-slider .slick-slider .slick-list {
    height: 100%;
}

.module-slider .module_item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
}

.module-slider .module_item-wrap {
    position: relative;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    overflow: hidden;
}

.module-slider .slick-slider {
    padding: 0;
    position: static;
    height: 100%;
}

.module-slider .slick-slider .slick-track {
    height: 100%;
}

.module-slider .slick-slider .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
}

.module-slider .slick-arrow:before {
    font-size: 30px;
}

.module-slider ul.slick-dots {
    margin: 0;
    padding: 0 5px;
    list-style: none;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: auto;
    line-height: 1;
}

.slick-dots>li>button {
    padding: 0;
    font-size: 0;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    border: 3px solid #fff;
    background: transparent;
    cursor: pointer;
}

.slick-dots>li.slick-active>button {
    background: #fff;
}

.slick-dots>li {
    display: inline-block;
    margin-right: 5px;
}

.slick-dots>li:last-of-type {
    margin-right: 0;
}

.module-slider .module_add-to-calendar-reveal {
    color: #ffffff;
}

.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: 2.4rem;
}

.module-slider .slick-list {
    overflow: visible;
}

.module-slider_description .module_date-time {
    font-size: inherit;
}

.module-slider_description p {
    margin: 10px 0;
}

.module-slider_description p:first-child {
    margin-top: 0;
    margin-bottom: 10px;
}

.module-slider_description .module_links {
    margin-top: 10px;
    margin-bottom: 0;
}

.module-slider .module_dots {
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .module-slider_description {
        position: relative;
        height: 360px;
    }
}


/*------ Stock Chart Widget ------*/

.module-stock-chart .highcharts-legend-item:first-child path {
    stroke: #2ea3f2;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
    stroke: #2ea3f2;
}

.module-stock-chart .highcharts-series-0 path:first-child {
    stroke: #2ea3f2;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
    stroke: #2ea3f2;
}

.module-stock-chart .highcharts-navigator rect {
    fill: #2ea3f2;
    fill-opacity: 0.2;
}

.module-stock-chart .highcharts-navigator-handle {
    stroke: rgba(0, 0, 0, 0.05);
    fill: #f2f2f2;
    cursor: ew-resize;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
    stroke-width: 0;
    fill: #2ea3f2;
}

.module-stock-chart .highcharts-navigator-handle-right path,
.module-stock-chart .highcharts-navigator-handle-left path {
    stroke: #fff;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
    fill: #2ea3f2;
    stroke: #2ea3f2;
}

.module-stock-chart .highcharts-range-selector {
    box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
    stroke: #cccccc;
    fill: #f2f2f2;
}

.module-stock-chart .highcharts-button rect,
.module-stock-chart .highcharts-input-group rect {
    stroke-width: 0;
    fill: rgba(0, 0, 0, 0.05);
}

.module-stock-chart .highcharts-button text,
.module-stock-chart .highcharts-input-group text {
    fill: #555555;
}

.module-stock-chart .highcharts-container>svg>.highcharts-button {
    display: none;
}

.highcharts-markers path {
    fill: #2ea3f2;
    stroke: #2ea3f2;
}

.highcharts-legend-item rect {
    fill: #2ea3f2;
}

.module-stock-chart .highcharts-legend > rect {
    height: 26px;
}

.module-stock-chart .module_container--outer {
    position: relative;
}

.module-stock-chart .module_container--outer:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    background: #16202c;
    left: 0;
    width: 100%;
    left: -100%;
    z-index: 2;
}

.module-stock-chart .highcharts-legend > rect .highcharts-legend-item {
    width: auto;
    height: auto;
}

.module-stock-chart input[type="text"] {
    background-color: #fff;
    border-radius: 0;
    box-sizing: content-box;
    min-width: 0;
    width: 0;
    height: 0;
}


/*------ Stock Header Module -----*/

.module-stock-header {
    text-align: right;
    position: relative;
    z-index: 1;
    padding-top: 24px;
    padding-bottom: 24px;
    float: right;
}

.PageOverview .module-stock-header,
.page--ir-home .module-stock-header {
    padding-top: 63px;
    padding-bottom: 63px;
    width: 50%;
}

@media screen and (max-width: 768px) {
    .PageOverview .module-stock-header,
    .page--ir-home .module-stock-header {
        width: 100%;
    }
}

.module-stock-header .module_container--outer {
    display: inline-block;
    padding-right: 20px;
    float: left;
    width: 100%;
    max-width: 500px;
}

.module-stock-header .module_container--inner {
    position: relative;
    display: inline-block;
    padding: 20px 25px;
    text-align: center;
}

.module-stock-header .module_container--inner:before {
    content: "";
    position: absolute;
    background: #1d2a38;
    opacity: 0.9;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media only screen and (max-width: 768px) {
    .PageOverview .module-stock-header,
    .module-stock-header {
        padding-top: 0;
        padding-bottom: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 240px;
    }
    .module-stock-header .module_container--inner:before {
        opacity: 1;
        background: #333f4c;
    }
    .module-stock-header .module_container--outer {
        padding-right: 0;
        float: none;
        max-width: none;
        display: block;
    }
    .module-stock-header .module_container--inner {
        position: relative;
        display: block;
        padding: 20px 25px;
        text-align: center;
    }
}

.module-stock-header .module_container--content {
    position: relative;
}

.module-stock-header_description1 {
    display: block;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.module-stock-header_stock-price {
    display: block;
    margin-bottom: 10px;
    font-size: 4.2rem;
}

.module-stock-header_stock-price:before {
    content: '$';
}

.module-stock-header_change,
.module-stock-header_percent-change {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.module-stock-header_volume {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.module-stock-header_volume:before {
    content: "";
    background: #fff;
    height: 13px;
    width: 1px;
    margin: 0 10px;
    display: inline-block;
    vertical-align: top;
}

.module-stock-header_percent-change:before {
    content: '(';
    margin-left: 3px;
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_percent-change:after {
    content: ')';
}

.module-stock-header_description3 {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    opacity: 0.5;
}

.module-stock-header_date {
    font-size: 1.1rem;
    opacity: 0.5;
}

.module-stock-header .module_button {
    margin-top: 15px;
}


/*------ Stock Quote Module ------*/

.module-stock .module_options {
    margin-bottom: 30px;
}

.module-stock .module_container--content {
    border-top: 1px solid #cccccc;
}

.module-stock-historical .module-stock_lookup-title-text {
    display: none;
}

.module-stock-historical .module_options .dropdown {
    min-width: 100px;
}

.module-stock-historical .module_not-found {
    padding: 15px 20px;
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .module-stock.module-stock-historical .module-stock_empty {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .module-stock-historical .module_options-label,
    .module-stock-historical .module_options-select,
    .module-stock-historical .module_options-submit {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

.module-stock .stock-historical-range .module_options>*:not(:last-of-type) {
    margin-bottom: 20px;
}

.module-stock_lookup-title {
    padding: 15px 20px;
    margin-bottom: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    border: none;
    background: #5f8aa0;
}

.module-stock .module-stock_item {
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.module-stock .module-stock_item:nth-of-type(2n) {
    border-right: 1px solid #ccc;
}

@media only screen and (max-width: 768px) {
    .module-stock .module-stock_item {
        border-right: 1px solid #ccc;
    }
    .module-stock_item.module-stock_item-empty {
        border: none;
        display: none;
    }
}

.module-stock_label,
.module-stock_value {}

.module-stock_label {
    border-right: 1px solid #cccccc;
}

.module-stock_label>span,
.module-stock_value>span {
    display: block;
    padding: 15px 20px;
    color: #1e2b39;
    font-size: 1.6rem;
}

.module-stock_up {
    color: #23a217;
}

.module-stock_down {
    color: #b72121;
}

.module-stock_label {
    font-weight: normal;
}

.module-stock_value .module-stock_price:before,
.module-stock_value .module-stock_high:before,
.module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before,
.module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before,
.module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
    content: "$";
}

.module-stock_date {
    font-size: 1.2rem;
    text-align: right;
    font-style: italic;
    padding: 15px 20px;
    color: #1e2b39;
}

@media only screen and (max-width: 768px) {
    .module-stock_date {
        padding: 15px 5px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_date {
        padding: 15px 5px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_date-text {
        display: block;
    }
}


/*------ Page title -------*/

.module-page-title {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.PageOverview .module-page-title,
.page--ir-home .module-page-title {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .PageOverview .module-page-title,
    .page--ir-home .module-page-title {
        width: 100%;
    }
}

.module-page-title .module_container--outer {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.PageOverview .module-page-title .module_container--outer,
.page--ir-home .module-page-title .module_container--outer {
    max-width: 500px;
    float: right;
}

@media screen and (max-width: 768px) {
    .PageOverview .module-page-title .module_container--outer,
    .page--ir-home .module-page-title .module_container--outer {
        float: none;
    }
}


/*- 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%;
    }
}

.module-subscribe--footer {
    padding-right: 30px;
}

@media screen and (max-width: 768px) {
    .module-subscribe--footer {
        padding-right: 0;
        margin-bottom: 15px;
    }
}

.module-subscribe--footer .module_title {
    margin-bottom: 15px;
}

.module-subscribe--footer .module_actions {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .module-subscribe--footer .module_actions {
        position: static;
        margin-top: 15px;
    }
}

.module-subscribe--footer .module_container--content {
    position: relative;
}

.module-subscribe--footer .module-subscribe_form {
    width: calc(100% - 138px);
}

@media screen and (max-width: 768px) {
    .module-subscribe--footer .module-subscribe_form {
        width: 100%;
    }
}

.module-subscribe--footer input[type="text"] {
    padding: 6px 10px;
    font-size: 1.4rem;
}

.module-subscribe--footer .module-subscribe_submit-button {
    min-width: 0;
    width: 138px;
    padding: 5px 10px;
    font-size: 1.3rem;
}

.module-subscribe--footer .module_link-unsubscribe {
    margin-bottom: 0px;
    margin-top: 5px;
    display: inline-block;
    color: #555555;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .module-subscribe--footer .module_link-unsubscribe {
        margin-top: 15px;
        font-size: 1.1rem;
    }
}

.module-subscribe--footer .module_link-unsubscribe:hover {
    color: #e62920;
}


/* MailingList Unsubscribe Module */

.module_link-unsubscribe {
    display: none
}

.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 -----------
==================================*/

.layout_inner {
    overflow-x: hidden;
}


/*------- iframe layout CSS ------*/

.layout--iframe .pane--content .module {
    padding: 0;
    margin: 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
    padding: 0;
    margin: 0;
}


/*---------- home layout -------------*/

.layout--home .module_title {
    text-align: center;
}

.layout--home .title--left .module_title {
    text-align: left;
}

.layout--home h1 {
    font-size: 5rem;
}

@media only screen and (max-width: 480px) {
    .layout--home h1 {
        font-size: 3.2rem;
    }
}

.layout--home h2.module_title {
    font-size: 3.2rem;
}

.layout_container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.layout_footer .layout_container {
    max-width: 980px;
}

.layout_content {
    line-height: 1.4;
}

.layout_fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 12;
}

@media screen and (max-width: 1024px) {
    .layout_fixed {
        /*position: static;*/
    }
}

.layout_header {
    padding-top: 118px;
    background: #fff;
    -webkit-transition: padding 0.2s ease-in-out;
    transition: padding 0.2s ease-in-out;
}

.layout_header.js--shrink {
    padding-top: 107px;
}

@media screen and (max-width: 1024px) {
    .layout_header.js--shrink,
    .layout_header {
        padding-top: 54px;
    }
}

.layout_sticky {
    height: 47px;
}

.page-press .layout_sticky,
.PageSearchResults .layout_sticky,
.page-events .layout_sticky,
.page-mail-alerts .layout_sticky {
    height: auto;
}

@media screen and (max-width: 1024px) {
    .layout_sticky {
        height: auto;
    }
}


/*==================================
 ------------ BLANK CSS -----------
==================================*/


/*-------- Layout Specific -------*/

@media screen and (max-width: 1024px) {
    .layout.js--mobile {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }
}


/*--------- Pane Specific --------*/

.pane--header {
    background: #1d2a38;
    height: 29px
}

@media only screen and (max-width: 1024px) {
    .pane--header {
        display: none;
    }
}

.pane--header .pane_inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pane--banner {
    position: relative;
    background-color: #fff;
    z-index: 10;
    border-bottom: 1px solid #cccccc;
}

.pane--banner .pane_inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media only screen and (max-width: 1024px) {
    .pane--banner {
        height: 54px;
    }
    .pane--banner .pane_inner {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.pane--banner .layout_toggle {
    display: none;
    font-size: 3.6rem;
    text-align: right;
}

.pane--banner .layout_toggle i:focus {
    outline: none;
}

.js--mobile .pane--banner .layout_toggle i:before {
    /*content: "\ed6d";*/
}

.pane--navigation {
    background-image: url("../design/banner/banner-default.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    position: relative;
    height: 220px;
}

.PageOverview .pane--navigation {
    height: 360px;
}


/*.pane--navigation:before {
    position: absolute;
    content: "";
    background: #000;
    opacity: 0.4;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}*/

.pane--navigation .pane_inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pane--navigation .module_title {
    margin: 0;
    color: #fff;
    text-align: left;
}

.pane--breadcrumb {
    background: #1d2a38;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 11;
}

.pane--breadcrumb.js--stuck {
    position: fixed;
    top: 99px;
}

.pane--breadcrumb .pane_inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pane--breadcrumb .module-search {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .pane--breadcrumb.js--stuck,
    .pane--breadcrumb {
        background: #fff;
        padding-top: 54px;
        position: absolute;
        bottom: 100%;
        left: 0;
        top: -100%;
        right: 0;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        z-index: 11;
        overflow-y: auto;
    }
    .js--mobile .pane--breadcrumb {
        top: 0;
        bottom: 0;
    }
    .pane--breadcrumb .pane_inner {
        max-width: none;
        padding: 0;
    }
    .pane--breadcrumb .module-search {
        display: inline-block;
        width: calc(100% - 75px);
        margin: 0;
        float: none;
        padding: 10px 30px 10px 15px;
    }
    .pane--breadcrumb .module-search_input {
        width: 100%;
        max-width: none;
        padding: 5px 10px;
        background-color: #fff;
        color: #555555;
        border-radius: 0;
        margin: 0;
    }
    .pane--breadcrumb .module-search_button {
        background: transparent url(../design/svg/search-blue.svg);
        padding: 13px;
    }
}

.pane--content .module {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pane--content .module_container--outer {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.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: 100px;
    padding-bottom: 100px;
}

.pane--content .module--thick-top {
    padding-top: 100px;
}

.pane--content .module--thick-bottom {
    padding-bottom: 100px;
}

.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--content a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.pane--footer {
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 1.5rem;
    background: #ebf2f2;
}

@media screen and (max-width: 768px) {
    .PageOverview .pane--navigation {
        margin-bottom: 260px;
    }
    .pane--footer {
        padding-top: 50px;
        padding-bottom: 50px;
        font-size: 1.3rem;
    }
}

.pane--footer .pane_inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pane--footer .module_title {
    font-size: 1.8rem;
    text-transform: none;
    text-align: left;
}

.pane--footer .module_error-container,
.pane--footer .module_error-container ul {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.pane--footer .module_error-container p {
    display: none;
}

.pane--footer .module_error-container li {
    margin-bottom: 0;
}

.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: 15px 0 10px;
}

.pane--footer .module-subscribe_mailing-list tr table td {
    padding-bottom: 7px;
}

.pane--footer .module-subscribe_list tr {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

@media screen and (max-width: 768px) {
    .pane--footer .module-subscribe_list tr {
        display: block;
        width: 100%;
    }
}

.pane--footer .module-subscribe_list > td {
    padding: 0;
}

.pane--footer .button {
    background-color: #5e89a0;
    border-color: #5e89a0;
    color: #fff;
    padding: 6px 15px;
    min-width: 0;
    font-size: 1.4rem;
}

.pane--footer .button:hover {
    background-color: #4a6b7d;
    border-color: #4a6b7d;
    color: #fff;
}

.pane--credits {
    text-align: center;
    color: #555;
    font-size: 1.3rem;
    padding: 50px 0;
}

@media screen and (max-width: 768px) {
    .pane--credits {
        padding: 30px 0;
    }
}

.pane--credits .pane_inner {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pane--credits a {
    color: #555;
    font-size: 1.3rem;
}

.pane--credits a:focus,
.pane--credits a:hover {
    text-decoration: none;
    color: #e62920;
}


/*--------- Page Specific --------*/

.page--no-alternating .pane--content {
    padding: 35px 0;
}

.page--no-alternating .module {
    padding-top: 35px;
    padding-bottom: 35px;
}

.PageOverview .pane--navigation .pane_inner,
.page--ir-home .pane--navigation .pane_inner {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.layout--home .module-company-profile .module_title {
    font-size: 2.2rem;
}


/*-------- Module Specific -------*/

.module-social .module_container.module_container--outer {
    max-width: none;
    padding-left: 70px;
    padding-right: 70px;
}

@media (max-width: 1200px) {
    .module-social .module_container.module_container--outer {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1024px) {
    .module-social .module_container.module_container--outer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.module-social .module_title {
    font-size: 2.4rem;
}

.module-social .module_items {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .module-social .module_items {
        display: block;
    }
}

.module-social .module_item {
    padding-left: 0;
    padding-right: 0;
    width: 22%;
}

@media (max-width: 1024px) {
    .module-social .module_item {
        width: 24%;
    }
}

@media (max-width: 768px) {
    .module-social .module_item {
        width: 100%;
    }
}

.module-social .module_header {
    display: block;
    padding: 11px 20px;
}

@media only screen and (max-width: 940px) {
    .module-social .module_header {
        display: block;
        padding: 7px 15px;
    }
}

.module-social .module_details {
    padding: 0 20px 55px;
}

.module-social .module_item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0;
    min-height: 290px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.module-social .module_item--twitter {
    background-image: url(../design/twitter-image.jpg);
}

.module-social .module_item--facebook {
    background-image: url(../design/facebook-image.jpg);
}

.module-social .module_item--blog {
    background-image: url(../design/blog-image.jpg);
}

.module-social .module_item--youtube {
    background-image: url(../design/youtube-image.jpg);
}

.module-social .module_item-wrap {
    padding: 0;
    background-color: #e62920;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease;
    transform: translateY(240px);
}

@media only screen and (max-width: 940px) {
    .module-social .module_item-wrap {
        transform: translateY(248px);
    }
}

.module-social .module_item:hover .module_item-wrap {
    transform: translateY(0);
}

.module-social .module_date {
    text-align: left;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    padding-left: 25px;
}

.module-social .module_date:before {
    content: "|";
    margin-left: -17px;
    position: absolute;
    top: 1px;
    font-size: 1.2rem;
}

@media only screen and (max-width: 940px) {
    .module-social .module_date {
        padding-left: 12px;
        margin-bottom: 5px;
    }
    .module-social .module_date:before {
        margin-left: -10px;
        top: 1px;
        font-size: 1.1rem;
    }
}

.module-social .module_headline {
    text-align: left;
    margin: 0;
    font-size: 1.3rem;
}

.module-social a {
    color: #fff;
}

.module-social a:hover {
    color: #fff;
    text-decoration: underline;
}

.module-social .module_feed-username {
    margin-right: 5px;
    font-weight: 700;
}

.module-social .module_feed-username-link:hover {
    text-decoration: none;
}

.module-social .module_feed-username-link:hover > span {
    text-decoration: underline;
}

.module-social .module_icon {
    font-size: 2rem;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}

.module-social .module_channel {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

.module-social .module_icon .q4-icon_twitter:before {
    content: "\eef5";
}

.module-social .module_icon .q4-icon_facebook:before {
    content: "\e91a";
}

.module-social .module_icon .q4-icon_youtube:before {
    content: "\e948";
}

.module-social .module_view-all-link:after {
    content: "\e915";
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.module-social .module_view-all-link {
    position: relative;
    padding-right: 20px;
    font-size: 1.8rem;
}

.module-social .module_button {
    margin-top: 15px;
    position: absolute;
    bottom: 15px;
}

@media only screen and (max-width: 940px) {
    .module-social .module_view-all-link {
        font-size: 1.5rem;
    }
    .module-social .module_button {
        margin-top: 10px;
    }
}


/*--------- Module Logo -----------*/

.pane--banner .module-logo {
    margin-top: 21px;
    float: left;
    transition: margin-top 0.2s ease-in-out 0s;
}

.js--shrink .pane--banner .module-logo {
    margin-top: 14px;
}

.module-logo .module_image {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 99px;
    max-width: 100%;
    margin: 0;
}

.js--shrink .module-logo .module_image {
    width: 83px;
}

@media screen and (max-width: 1024px) {
    .js--shrink .module-logo .module_image,
    .module-logo .module_image {
        width: 87px;
    }
}

.module-logo a {
    color: #233746;
    display: inline-block;
    text-decoration: none;
    font-size: 0;
    margin: 0;
}

.module-logo a:link,
.module-logo a:visited,
.module-logo a:active,
.module-logo a:hover {
    color: #263746;
    text-decoration: none;
}

.layout_toggle .module_link-corporate {
    color: #333f4c;
    font-size: 1.5rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.layout_toggle .module_link-corporate:hover {
    color: #e62920;
}

.layout_toggle .module-hamburger-menu {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.layout_toggle .module-hamburger-menu i {
    font-size: 2.6rem;
    color: #848484;
}

@media only screen and (max-width: 1024px) {
    .pane--banner .module-logo {
        display: inline-block;
        vertical-align: top;
        margin-bottom: 0;
        width: 40%;
        margin-top: 7px;
    }
    .js--shrink .pane--banner .module-logo {
        margin-top: 7px;
    }
    .pane--banner .layout_toggle {
        vertical-align: top;
        display: inline-block;
        width: 60%;
        margin-top: 3px;
        padding-right: 10px;
    }
    .pane--banner .nav,
    .pane--banner .module-search {
        display: none;
    }
}


/*---------- Module Copyright ------------*/

.module-copyright {
    display: inline-block;
    margin-right: 30px;
}

@media screen and (max-width: 768px) {
    .module-copyright {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
}


/*---------- Module Quick Links Footer------------*/

.module-quick-links-footer {
    display: inline-block;
}

.module-quick-links-footer ul.module-links_list>li {
    display: inline-block;
    margin-right: 30px;
}

@media screen and (max-width: 768px) {
    .module-quick-links-footer {
        display: block;
    }
    .module-quick-links-footer ul.module-links_list>li {
        display: block;
        margin-right: 0;
        margin-bottom: 6px;
    }
}


/*---------- Module credits ------------*/

.module-q4-credits {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .module-q4-credits {
        margin-top: 0;
    }
}


/*----------- Module contact -------------*/

.module-investor-contacts .module_container--inner {
    padding: 10px 0;
}

@media screen and (max-width: 768px) {
    .module-contact {
        margin-top: 10px;
    }
}

.module-contact .module-contact_item--left {
    display: inline-block;
    width: 40%;
    margin-right: -4px;
    vertical-align: top;
}

.module-contact .module-contact_item--right {
    display: inline-block;
    width: 60%;
    margin-right: -4px;
    vertical-align: top;
}

@media screen and (max-width: 768px) {
    .module-contact .module-contact_item--left,
    .module-contact .module-contact_item--right {
        width: 100%;
        margin-right: 0;
    }
}

.module-contact .module-contact_item--right a {
    color: #555;
    white-space: nowrap;
    overflow-wrap: nowrap;
}

.pane--content .module-contact .module-contact_item--right a {
    color: #fff;
}

.module-contact .module-contact_item--right a:hover,
.pane--content .module-contact .module-contact_item--right a:hover {
    color: #e62920;
}


/*----------- Module box footer -------------*/

.module-box--footer {
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: top;
}

@media screen and (max-width: 768px) {
    .module-box--footer {
        width: 100%;
        padding: 0 20px;
    }
}

.module-box--footer .module_container--outer {
    box-shadow: 0 2px 10px -1px rgba(0, 0, 0, 0.4);
    padding: 30px;
    background: #fff;
    min-height: 260px;
}

@media screen and (max-width: 984px) {
    .module-box--footer .module_container--outer {
        min-height: 269px;
    }
}

@media screen and (max-width: 768px) {
    .module-box--footer .module_container--outer {
        min-height: 0;
    }
}

.module-box--footer .module_button {
    margin-top: 15px;
}


/*--------- Module Shareholder Meeting ----------*/

.module-shareholder-meeting .module-sharholder_button {
    margin-bottom: 20px;
}

.module-shareholder-meeting .module-sharholder-button_more {
    color: #5f8aa0;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
}

.module-shareholder-meeting .module-sharholder-button_more:after {
    content: "+";
    padding-left: 5px;
}

.module-shareholder-meeting .js--active .module-sharholder-button_more:after {
    content: "-";
}

@media only screen and (max-width: 768px) {
    .module-shareholder-meeting .table--responsive td:before {
        display: none;
    }
}

.module-shareholder-meeting a:not(.button) {
    color: #4c8cce;
}

.module-shareholder-meeting a:not(.button):hover {
    color: #2ea3f2;
}


/*--------- Module Pager ----------*/

.module_pager {
    margin-top: 20px;
    list-style: none;
    margin-left: 0;
    padding: 0;
}

.module_pager .pager-page,
.module_pager .pager-next,
.module_pager .pager-prev {
    display: inline-block;
    margin-right: 7px;
    font-size: 1.6rem;
    color: #555555;
    cursor: pointer;
    font-weight: 700;
}

.module_pager .pager-next,
.module_pager .pager-prev {
    color: #cccccc;
    font-size: 0;
}

.module_pager .pager-next:before,
.module_pager .pager-prev:before {
    font-family: 'q4-icons';
    content: "";
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.3rem;
    font-weight: 700;
}

.module_pager .pager-prev:before {
    content: "\edc6";
}

.module_pager .pager-next:before {
    content: "\edbe";
}

.module_pager .pager-disabled {
    display: none;
}

.module_pager .pager-page:not(.pager-active) {
    cursor: pointer;
    /*display: none;*/
}

.module_pager .pager-active {
    color: #e52920;
    font-weight: 700;
}


/*-----  Module Merger ---------*/

.module-merger .module-merger_header {
    font-size: 1.5rem;
    color: #2ea3f2;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0;
    padding: 15px 40px 15px 0;
    background: #fff;
    position: relative;
    cursor: pointer;
}

.module-merger .module-merger_header:after {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\edc2";
    font-size: 1.3rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2ea3f2
}

.module-merger .js--active .module-merger_header {
    color: #466979;
    font-weight: 700;
}

.module-merger .js--active .module-merger_header:after {
    content: "\edba";
}

.module-merger .module-merger_item-wrap {
    border-bottom: 1px solid #abb9c5;
}

.module-merger .module-item_description {
    border-top: 1px solid #abb9c5;
    padding: 20px 0;
}

.module-merger a {
    color: #e52920;
}

.module-merger a:hover {
    color: #2ea3f2;
}

/*# sourceMappingURL=global.css.map */

.events-statement p {
    font-size: 12px;
}
