/*==================================
 ------------ RESET CSS -----------
==================================*/

html, body, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    font-size: 10px;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

/*---------- Animations ----------*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*==================================
 --------- DEFAULT STYLES ---------
==================================*/

body {
    font-family: 'myriad-pro', sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    overflow-x: hidden;
    color: #21262B;
}

/*---------- TYPOGRAPHY ----------*/

h1 {
    font-size: 40px;
    margin: 20px 0;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 26px;
    }
}

h2 {
    font-size: 27px;
    font-size: 2.7rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #585F66;
}

h3 {
    font-size: 23px;
    font-size: 2.3rem;
    margin: 15px 0;
    color: #585F66;
}

h4 {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #585F66;
}

h5 {
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #585F66;
}

a {
    text-decoration: none;
    color: #5369e5;
    transition: color 0.25s ease-in-out 0s;
}

a:hover {
    color: #2A3DA3;
}

p {
    line-height: 1.71;
}

i {
    display: inline-block;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

sup {
    vertical-align: super;
    font-size: 50%;
}

/*------------ COMMON ------------*/

img {
    max-width: 100%;
}

input[type="checkbox"] {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 10px;
    width: 10px;
    margin: 0 5px 0 0;
    border: 1px solid;
    border-color: #333333;
    vertical-align: baseline;
    cursor: pointer;
}

input[type="checkbox"]:checked {
    border: 3px solid;
}

input[type="checkbox"]:focus {
    outline: none;
}

input[type="radio"] {
    margin: 0 5px 0 0;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    display: inline-block;
    font-size: 14px;
    vertical-align: baseline;
    cursor: pointer;
}

input::-ms-clear {
    display: none;
}

iframe {
    width: 100%;
}

select {
    font-family: 'myriad-pro', sans-serif;
}

select option {
    font-weight: 700;
}

small {
    font-size: smaller;
}

/*------- HACKS AND FIXES -------*/

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

/*------------ LISTS ------------*/

.list {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.list li {
    line-height: 24px;
}

.list--circle {
    list-style-type: circle;
}

.list--ordered {
    list-style-type: decimal;
}

.list--alpha {
    list-style-type: lower-alpha;
}

.list--roman {
    list-style-type: lower-roman;
}

.list--inside {
    list-style-position: inside;
}

/*------- BUTTONS / INPUTS -------*/

.input,
.textarea,
.upload {
    display: inline-block;
    max-width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 15px 20px;
    background: #dedede;
    border: 1px solid #dedede;
    border-radius: 0;
    font-family: 'myriad-pro', sans-serif;
    font-size: 14px;
    font-weight: normal;
}

.module--white-form .input:not(.input[type="submit"]),
.module--white-form .textarea,
.module--white-form .upload,
.module--white-form .submit,
.module--white-form .button {
    background: #fff;
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
    display: none;
}

.textarea {
    width: 100%;
    resize: vertical;
}

.upload {
    line-height: 0;
}

.submit,
.button,
.upload,
.dropdown {
    cursor: pointer;
}

.submit,
.button {
    position: relative;
    margin-top: 15px;
    border-radius: 0;
    border: 1px solid transparent;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: 'myriad-pro', sans-serif;
    padding: 6px 40px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: #5369e5;
    background: -moz-linear-gradient(top, #5369e5 0%, #3F54CC 100%);
    background: -webkit-linear-gradient(top, #5369e5 0%, #3F54CC 100%);
    background: linear-gradient(to bottom, #5369e5 0%, #3F54CC 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#5369e5', endColorstr='#3F54CC', GradientType=0);
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out, color 0.3s ease-in-out;
}

.button:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: #3F54CC;
    background: -moz-linear-gradient(top, #3F54CC 0%, #2A3DA3 100%);
    background: -webkit-linear-gradient(top, #3F54CC 0%, #2A3DA3 100%);
    background: linear-gradient(to bottom, #3F54CC 0%, #2A3DA3 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#3F54CC', endColorstr='#2A3DA3', GradientType=0);
    -webkit-transition: opacity 0.3s ease-in-out 0s;
    -o-transition: opacity 0.3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s;
}

.button:hover {
    color: #fff;
}

.button_text {
    position: relative;
    z-index: 10;
}

.button:hover:after {
    opacity: 1;
    z-index: 5;
    -webkit-transition: opacity 0.3s ease-in-out 0s;
    -o-transition: opacity 0.3s ease-in-out 0s;
    transition: opacity 0.3s ease-in-out 0s;
}

.button--small {
    font-size: 14px;
    padding: 13px 20px;
}

.button--full-width {
    width: 100%;
}

.button--link {
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    color: #5369e5;
    padding: 0;
    margin: 20px 0;
    background: transparent;
    border: none;
    text-transform: none;
}

.button--link:focus {
    text-decoration: underline;
    box-shadow: none!important;
    border: none!important;
}

.button--link:hover {
    color: #2A3DA3;
}

.button--inverted {
    background: #5369e5;
    color: #fff;
}

.button--inverted:hover {
    background: transparent;
    color: #5369e5;
}

.button--dark {
    padding: 12px 30px;
    font-weight: 700;
    border: 1px solid #fff;
    background: transparent;
    text-transform: none;
    font-size: 14px
}

.button--dark:hover {
    border: 1px solid #2A3DA3;
    background-color: #2A3DA3;
}

.module-form--custom .button,
.module-subscribe .button,
.module-unsubscribe .button,
.CaptchaContainer .submit {
    padding: 7px 19px;
    border-radius: 1px;
    margin: 0;
}

.dropdown {
    padding: 6px 30px 6px 15px;
    background: #6C737A url("../design/svg/q4-icon_chevron-down-white.svg") no-repeat right 10px center;
    background-size: 14px 14px;
    border: 1px solid #585F66;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 1px;
    height: 34px;
}

.dropdown::-ms-expand {
    display: none;
}

/*------------ TABLES ------------*/

.table {
    width: 100%;
    margin: 16px 0;
}

.table thead {
    background-color: #2A3DA3;
}

.table thead th {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.table tr:nth-child(even) {
    background-color: #f6f6f6;
}

.table th,
.table td,
.table tr>.grid_col {
    margin: 0;
    padding: 14px 8px;
}

.table th {
    color: #fff;
}

.table--headless tr:nth-child(even) {
    background-color: transparent;
}

.table--headless tr:nth-child(odd) {
    background-color: #f6f6f6;
}

.table--headless tr:first-child {
    background-color: #669fd5;
    text-align: left;
}

.table--headless tr:first-child td {
    color: #fff;
}

@media only screen and (max-width: 480px) {
    .table--responsive thead {
        display: none;
    }
    .table--responsive tbody {
        border-top: 2px solid #669fd5;
        border-bottom: 2px solid #669fd5;
    }
    .table--responsive td {
        display: block;
        padding: 8px;
    }
    .table--responsive td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}

/*--------- SPECIAL BOXES --------*/

.code {
    margin: 32px 0;
    padding: 20px 15px;
    background: #f6f6f6;
    border-left: 3px solid rgba(0, 111, 186, 0.5);
    font-family: monospace, serif;
    font-size: 14px;
    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-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";
}

/*==================================
 ----------- 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.33333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
    width: 66.66667%;
}

.grid_col--1-of-4,
.grid_col--2-of-8,
.grid_col--3-of-12 {
    width: 25%;
}

.grid_col--3-of-4,
.grid_col--6-of-8,
.grid_col--9-of-12 {
    width: 75%;
}

.grid_col--1-of-12 {
    width: 8.33333%;
}

.grid_col--11-of-12 {
    width: 91.66667%;
}

.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.33333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
    margin-left: 66.66667%;
}

.grid_col--push-1-of-4,
.grid_col--push-2-of-8,
.grid_col--push-3-of-12 {
    margin-left: 25%;
}

.grid_col--push-3-of-4,
.grid_col--push-6-of-8,
.grid_col--push-9-of-12 {
    margin-left: 75%;
}

.grid_col--pull-1-of-1,
.grid_col--pull-2-of-2,
.grid_col--pull-3-of-3,
.grid_col--pull-4-of-4,
.grid_col--pull-5-of-5,
.grid_col--pull-6-of-6,
.grid_col--pull-8-of-8,
.grid_col--pull-12-of-12 {
    margin-left: -100%;
}

.grid_col--pull-1-of-2,
.grid_col--pull-2-of-4,
.grid_col--pull-3-of-6,
.grid_col--pull-4-of-8,
.grid_col--pull-6-of-12 {
    margin-left: -50%;
}

.grid_col--pull-1-of-3,
.grid_col--pull-2-of-6,
.grid_col--pull-4-of-12 {
    margin-left: -33.33333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
    margin-left: -66.66667%;
}

.grid_col--pull-1-of-4,
.grid_col--pull-2-of-8,
.grid_col--pull-3-of-12 {
    margin-left: -25%;
}

.grid_col--pull-3-of-4,
.grid_col--pull-6-of-8,
.grid_col--pull-9-of-12 {
    margin-left: -75%;
}

.grid_col--1-of-5 {
    width: 20%;
}

.grid_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.66667%;
}

.grid_col--push-1-of-6 {
    margin-left: 16.66667%;
}

.grid_col--pull-1-of-6 {
    margin-left: -16.66667%;
}

.grid_col--5-of-6 {
    width: 83.33333%;
}

.grid_col--push-5-of-6 {
    margin-left: 83.33333%;
}

.grid_col--pull-5-of-6 {
    margin-left: -83.33333%;
}

.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.33333%;
}

.grid_col--push-1-of-12 {
    margin-left: 8.33333%;
}

.grid_col--pull-1-of-12 {
    margin-left: -8.33333%;
}

.grid_col--2-of-12 {
    width: 16.66667%;
}

.grid_col--push-2-of-12 {
    margin-left: 16.66667%;
}

.grid_col--pull-2-of-12 {
    margin-left: -16.66667%;
}

.grid_col--5-of-12 {
    width: 41.66667%;
}

.grid_col--push-5-of-12 {
    margin-left: 41.66667%;
}

.grid_col--pull-5-of-12 {
    margin-left: -41.66667%;
}

.grid_col--7-of-12 {
    width: 58.33333%;
}

.grid_col--push-7-of-12 {
    margin-left: 58.33333%;
}

.grid_col--pull-7-of-12 {
    margin-left: -58.33333%;
}

.grid_col--10-of-12 {
    width: 83.33333%;
}

.grid_col--push-10-of-12 {
    margin-left: 83.33333%;
}

.grid_col--pull-10-of-12 {
    margin-left: -83.33333%;
}

.grid_col--11-of-12 {
    width: 91.66667%;
}

.grid_col--push-11-of-12 {
    margin-left: 91.66667%;
}

.grid_col--pull-11-of-12 {
    margin-left: -91.66667%;
}

.grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -.25em;
    min-height: 1px;
    padding-left: 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: 1024px) {
    .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.33333%;
    }
    .grid_col.grid_col--lg-2-of-3 {
        width: 66.66667%;
    }
    .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: 768px) {
    .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.33333%;
    }
    .grid_col.grid_col--lc-2-of-3 {
        width: 66.66667%;
    }
    .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: 480px) {
    .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.33333%;
    }
    .grid_col.grid_col--md-2-of-3 {
        width: 66.66667%;
    }
    .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.33333%;
    }
    .grid_col.grid_col--sm-2-of-3 {
        width: 66.66667%;
    }
    .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: #719cd4;
}

.background--alt-brand {
    background-color: #c7d8ed;
}

.background--brand-gradient {
/*     background: #5369e5;
    background: -moz-linear-gradient(top, #5369e5 0%, #3F54CC 100%);
    background: -webkit-linear-gradient(top, #5369e5 0%, #3F54CC 100%);
    background: linear-gradient(to bottom, #5369e5 0%, #3F54CC 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#5369e5', endColorstr='#3F54CC', GradientType=0); */
    background-color: #2A3DA3;
}

.background--dark {
    background-color: #4b5ea8;
}

.background--light {
    background-color: #F5F7FA;
}

.background--grey {
    background-color: #F5F7FA;
}

.background--grey-dark {
    background-color: #dedede;
}

.background--grey-darker {
    background-color: #616161;
}

.background--success {
    background-color: #23a217;
}

.background--error {
    background-color: #b72121;
}

.color--brand {
    color: #719cd4;
}

.color--brand-alt {
    color: #c7d8ed;
}

.color--dark {
    color: #4b5ea8;
}

.color--light {
    background-color: #f3f3ee;
}

.color--grey {
    color: #f8f8f8;
}

.color--grey-dark {
    color: #dedede;
}

.color--grey-darker {
    color: #616161;
}

.color--success {
    color: #23a217;
}

.color--error {
    color: #b72121;
}

.dark {
    color: #fff;
}

.dark .module_title,
.dark .module_subtitle,
.dark a {
    color: #fff;
}

.layout_content .module {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 35px;
    padding-bottom: 35px;
}

.layout:not(.layout--home) .layout_content .module {
    padding: 15px;
}

.layout--iframe .layout_content .module.module-form--custom {
    padding: 15px 0;
}

.layout_content .module--thin {
    padding-top: 17px;
    padding-bottom: 17px;
    padding-left: 25px;
}

.layout_content .module--no-padding {
    padding-top: 0;
    padding-bottom: 0;
}

.layout_content .module--no-pd-btm {
    padding-bottom: 0;
}

.layout_content .module--no-pd-top {
    padding-top: 0;
}

.layout_content .module--thick {
    padding-top: 105px;
    padding-bottom: 105px;
}

/*==================================
 --------- ACCESSIBILITY ----------
==================================*/

*:focus {
    outline: none;
}

a:focus {
    text-decoration: underline !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#maincontent:focus {
    outline: 0px;
}

/*---------- Javascript ----------*/

.js--loading:after {
    position: relative;
    left: 50%;
    display: inline-block;
    margin: 16px 0 16px -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;
    animation: spin 0.8s infinite linear;
}

.js--hidden {
    display: none;
}

.js--visible {
    display: block;
}

.js--disabled {
    opacity: 0.1;
    border-color: #333333;
    color: #333333;
    transition: none;
    pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
    border: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
    border-color: #b72121 !important;
}

/*==================================
 ----------- MODULE CSS -----------
==================================*/


/*-------- All Module CSS --------*/

.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text,
.module_view-all-link,
.module_more {
    display: none;
}

.module_nav,
.module_headline,
.module_location,
.module_speakers,
.module_links,
.module_body,
.module_add-to-calendar,
.module_options,
.module_not-found {
    margin-bottom: 15px;
}

.module_speakers h4 {
    margin-bottom: 10px;
}

.module_error-container {
    margin-bottom: 30px;
    color: #b72121;
}

.module_add-to-calendar-reveal {
    color: #6c6c6c;
    cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
    text-decoration: underline;
    color: #4b5ea8;
}

.module_add-to-calendar-reveal:hover {
    color: #4b5ea8;
}

.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;
    text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
    padding: 70px;
}

.module_add-to-calendar-item {
    display: inline-block;
    margin: 0 10px;
}

.module_add-to-calendar-item--ics {
    display: none;
}

.module_add-to-calendar-link {
    font-size: 24px;
}

.module_add-to-calendar.js--hidden {
    display: none;
}

.module_actions,
.module_pager {
    margin-top: 20px;
}

.module_date-time {
    margin-bottom: 8px;
    font-size: 12px;
    color: #333;
}

.module_error-container {
    display: block;
}

.module_error-container ul {
    padding-left: 18px;
    list-style-type: disc;
}

.module_error-container ul>li {
    line-height: 24px;
}

.module_error-container>br {
    display: none;
}

.module_error-container>span {
    display: block;
    line-height: 24px;
}

.module_error-container>span:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ec6b";
    margin-right: 5px;
}

.module_headline {
    font-weight: normal;
    line-height: 1.285711;
}

.module_headline-link,
.module_headline-link:visited {
    color: #21262B;
}

.module_headline-link:hover {
    color: #5369e5;
}

.module_image {
    display: inline-block;
    max-width: 30%;
    margin-bottom: 16px;
}

.module_image--right {
    float: right;
    margin-left: 32px;
}

.module_image--left {
    float: left;
    margin-right: 32px;
}

.module_introduction {
    margin-bottom: 35px;
}

.module_item {
    padding: 25px 20px 10px;
    border-bottom: 1px solid #dce4ef;
}

.module_item:nth-child(even) {
    background-color: #F5F7FA;
}

.module_label {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
}

.module_label+.module_required {
    font-size: 14px;
}

.module_links>*,
.module_links li,
.module_links .module_presentation {
    display: inline;
}

.module_link {
    display: inline-block;
    margin: 0 15px 5px 0;
    font-size: 12px;
    color: #21262B;
}

.module_link:hover {
    color: #5369e5;
}

.module_link i,
.module_link:before {
    display: inline-block;
    padding-right: 2px;
}

.module_link>.module_link-text,
.module_link>i {
    vertical-align: bottom;
}

.module_link>i:before {
    display: block;
    font-size: 15px;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
    display: inline-block !important;
}

.module_loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.module_message {
    display: block;
    margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
    display: none;
}

.module_message--success {
    color: #23a217;
}

.module_message--success:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed71";
    margin-right: 8px;
}

.module_message--error {
    color: #b72121;
}

.module_message--error:before {
    font-family: "q4-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\ed4f";
    margin-right: 8px;
}

.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 #669fd5;
    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: #669fd5;
    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: 768px) {
    .module_options-label,
    .module_options-select {
        display: block;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module_options-select,
    .module_options-submit {
        display: block;
        margin-bottom: 10px;
    }
}

.module_pager a {
    color: #333333;
}

.module_pager a[href] {
    color: #669fd5;
}

.module_reminder .module_input.module_reminder-period,
.module_reminder .module_input.module_reminder-email {
    margin-right: 10px;
}

.module_reminder.js--reminded {
    display: none;
}

.module_required {
    color: #333333;
}

.module_required-text {
    font-size: 14px;
    color: #333333;
}

.module_rss {
    float: right;
}

.module_speakers li {
    margin-bottom: 5px;
}

.module_view-all-link {
    font-size: 16px;
    font-weight: 500;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input,
.CaptchaContainer input[type="text"] {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Text area demands width*/
    width: 100%;
    max-width: none;
    padding: 8px 10px;
    background: #dedede;
    border: 1px solid #dedede;
    border-radius: 1px;
    font-family: 'myriad-pro', sans-serif;
    font-size: 14px;
}

.module--white-form .module_input[type="text"],
.module--white-form .module_input[type="email"],
.module--white-form .module_input[type="file"],
.module--white-form .module_dropdown,
.module--white-form .module textarea.module_input {
    background: #fff;
}

.module_input[type="text"]::-ms-clear,
.module_input[type="email"]::-ms-clear,
.module_input[type="file"]::-ms-clear,
.module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
    display: none;
}

.module textarea.module_input {
    resize: vertical;
    height: 150px;
}

.module_input[type="file"],
.module_dropdown {
    cursor: pointer;
}

.module_input[type="file"] {
    line-height: 16px;
}

.module_input--brand[type="text"] {
    display: inline-block;
    width: auto;
}

.module_dropdown {
    padding: 8px 30px 8px 15px;
    background: #5369e5 url("../design/svg/q4-icon_chevron-down-white.svg") no-repeat right 10px center;
    background-size: 14px 14px;
    border: 1px solid #3F54CC;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 1px;
}

.module_dropdown::-ms-expand {
    display: none;
}

.module-details .module_date-time {
    margin-bottom: 15px;
}

/*------- Captcha Component ------*/

.CaptchaContainer {
    display: none;
}

.CaptchaContainer table tr:nth-child(1) {
    display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
    padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
    padding-bottom: 5px;
    font-size: 14px;
}

.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;
    }
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
    padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
    padding-right: 0;
}

/*- Investment Calculator & Historical wrapper -*/

.module-historical-calculator {
    position: relative;
    z-index: 1;
}

@media Screen and (max-width: 768px) {
    .module-historical-calculator:before {
        display: none;
    }
}

.module-historical-calculator .module_container--outer {
    position: relative;
    z-index: 5;
}

.module-stock-historical .module_options-label {
    display: block;
    margin-bottom: 10px;
    color: #6c6c6c;
    font-weight: 700;
}

.module-stock-historical .module_options-select {
    margin-top: 10px;
    float: left;
    margin-bottom: 10px;
    height: 34px;
}

.module-stock-historical .button {
    float: left;
    margin-top: 10px;
    height: 34px;
}

.module-stock-historical .js--disabled {
    opacity: 0.5;
    background: #8A939C;
}

.module-stock-historical .module-stock_lookup-title {
    display: none;
}

.module-calculator.background--grey-dark .module_title {
    color: #666666;
}

@media Screen and (min-width: 481px) and (max-width: 768px) {
    .module-stock-historical .module_options-select {
        display: inline-block;
    }
}

/*- Investment Calculator Widget -*/

.module-calculator .module_title.module_title {
    color: #666;
}

.module-calculator_description {
    color: #666;
    font-weight: 700;
}

@media Screen and (min-width: 769px) {
    .module-calculator {
        padding-left: 40px;
        margin-top: 2px;
    }
}

@media Screen and (max-width: 768px) {
    .module-calculator {
        position: relative;
    }
    .module-calculator:before {
        content: "";
        position: absolute;
        top: 0;
        right: -15px;
        bottom: -15px;
        left: -15px;
        z-index: 0;
        background-color: #dedede;
    }
    .module-calculator .module_container--widget-content {
        position: relative;
        z-index: 5;
    }
}

.module-calculator_button {
    padding: 7px 19px;
}

.module-calculator_input h4 {
    margin-bottom: 12px;
}

.module-calculator_input label {
    font-size: 14px;
    margin-bottom: 0;
    padding: 10px 0;
    float: left;
    width: 50%;
}

.module-calculator_input input[type="text"] {
    background-color: #e8e8e8;
    float: left;
    width: 30%;
    margin-bottom: 10px;
}

@media Screen and (max-width: 425px) {
    .module-calculator_input input[type="text"] {
        width: 50%;
    }
}

.module-calculator_input input[type="checkbox"]+label {
    margin: 0;
}

.module-calculator_input-row {
    padding-bottom: 10px;
}

.module-calculator_input-row input[type="text"] {
    margin-top: 10px;
    max-width: 300px;
}

.module-calculator_input-row--other input[type="text"] {
    display: none;
}

.module-calculator_input-row--other input[type="text"].js--revealed {
    display: block;
}

@media screen and (min-width: 1024px) {
    .module-calculator_popup-container {
        min-width: 920px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .module-calculator_popup-container .table thead {
        display: none;
    }
    .module-calculator_popup-container .table tbody {
        border-top: 2px solid #669fd5;
        border-bottom: 2px solid #669fd5;
    }
    .module-calculator_popup-container .table td {
        display: block;
    }
    .module-calculator_popup-container .table td:before {
        content: attr(data-heading) ": ";
        font-weight: bold;
    }
}

.module-calculator_info td:first-child:before {
    content: none;
}

/*- 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-bottom: 2px solid rgba(0, 0, 0, 0.05);
    font-weight: normal;
}

.module-committee .module_item {
    padding: 0;
}

.module-committee.background--grey .module_item:nth-child(even) {
    background-color: #fff;
}

.module-committee .grid_col {
    padding: 15px;
    text-align: center;
}

.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--desktop .module_header {
    background-color: #2A3DA3;
}

.module-committee .module_container--desktop .module_header a {
    color: #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.module-committee .module_container--desktop .module_header-text {
    padding-top: 13px;
    padding-bottom: 13px;
}

@media Screen and (max-width: 500px) {
    .module-committee_legend {
        display: block;
        margin-bottom: 5px;
        margin-right: 0;
    }
}

/*Governance documents*/

.module-governance_image {
    float: right;
    padding-left: 20px;
}

@media Screen and (max-width: 500px) {
    .module-governance_image {
        width: 50%;
    }
}

.module--table-title .module_title.module_title {
    margin-bottom: 0;
    padding: 13px 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
/*     background: #5369e5;
    background: -moz-linear-gradient(top, #5369e5 0%, #3F54CC 100%);
    background: -webkit-linear-gradient(top, #5369e5 0%, #3F54CC 100%);
    background: linear-gradient(to bottom, #5369e5 0%, #3F54CC 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#5369e5', endColorstr='#3F54CC', GradientType=0); */
    background-color: #2A3DA3;
    text-transform: none;
}

/*----- Download List Module -----*/

.module-downloads .module_nav {
    display: none;
}

.module-downloads .module_item {
    padding: 15px 8px;
}

.module-downloads .module_link {
    font-size: 16px;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
    display: none;
}

.module-downloads_title-link {
    position: relative;
    display: block;
    margin: 0;
    padding-right: 25px;
}

.module-downloads_title-link:after {
    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: "\e901";
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 15px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

/*--------- Event Module ---------*/

.module-calendar-and-upcoming {
    position: relative;
}

.module-event-archive {
    position: relative;
}

.module-event-archive .module_container--content {
    border-top: 1px solid #dce4ef;
}

.module-event-archive:before {
    content: "";
    position: absolute;
    top: 0;
    right: 15px;
    left: 15px;
    height: 2px;
    background-color: #f1f1f1;
}

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
    display: none;
}

.module-event-latest .module_container--content {
    margin-bottom: 20px;
}

.module-event-latest .module_item {
    margin: 10px 0;
    padding: 0 0 0 20px;
    border: none;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    .module-event-latest .module_item:first-child {
        width: 100%;
    }
}

.module-event-latest .module_item-wrap {
    padding: 30px;
    background: #f6f6f6;
}

.module-event-latest .module_date-time {
    margin-bottom: 15px;
    font-weight: normal;
}

.module-event-latest .module_headline {
    line-height: 150%;
    font-weight: 200;
}

.module-event-latest .module_links {
    margin: 0;
}

.module-event-upcoming .module_title {
    margin-top: 0;
}

.module-event-upcoming .module_nav {
    display: none;
}

.module-event-upcoming .module_item {
    padding: 0 0 10px;
    background: transparent;
    border: none;
}

.module-event-upcoming .module_item~.module_item {
    padding: 30px 0 10px;
}

.module-event-calendar_calendar-container {
    text-align: center;
}

.module-event-calendar_event-container {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 500px;
    width: 100%;
    z-index: 5;
    padding: 50px 50px 35px 50px;
    opacity: 0;
    visibility: hidden;
    background-color: #2A3DA3;
    border: 1px solid #3F54CC;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0.4s;
    -o-transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0.4s;
    transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0.4s;
}

.module-event-calendar_event-container.js--visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0s;
    -o-transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0s;
    transition: opacity 0.3s ease-in-out 0s, visibility 0s linear 0s;
}

.module-event-calendar_event-container .module_date-time {
    color: #fff;
    margin-bottom: 10px;
}

.module-event-calendar_event-container .module_close {
    position: absolute;
    right: 45px;
    top: 30px;
    cursor: pointer;
}

.module-event-calendar_event-container .module_headline-link,
.module-event-calendar_event-container .module_headline-link:visited {
    color: #fff;
}

.module-event-calendar_event-container .module_headline-link:hover {
    color: #4b5ea8;
}

.module-event-calendar_splash i {
    font-size: 40px;
    color: #669fd5;
}

.module-event-calendar_splash p {
    font-size: 14px;
    line-height: 19.2px;
}

.module-event-calendar_controls {
    padding: 20px 15px;
    background-color: #6c6c6c;
    font-weight: bold;
    color: #fff;
}

.module-event-calendar_previous-month,
.module-event-calendar_month,
.module-event-calendar_next-month {
    display: inline-block;
}

.module-event-calendar_month {
    text-transform: uppercase;
}

.module-event-calendar_previous-month,
.module-event-calendar_next-month {
    cursor: pointer;
}

.module-event-calendar_previous-month {
    float: left;
}

.module-event-calendar_next-month {
    float: right;
}

.module-event-calendar_day-container {
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    border-left: 1px solid #e1e1e1;
}

.module-event-calendar_day {
    position: relative;
    width: 14.285%;
    margin: 0;
    padding: 14.5px 0 14.5px;
    z-index: 2;
}

.module-event-calendar_day--name {
    padding: 15px 0 10px;
    border: none;
}

.module-event-calendar_day--adjacent-month {
    visibility: hidden;
}

.module-event-calendar_day--today {
    background: #f6f6f6;
}

.module-event-calendar_day--event {
    cursor: pointer;
    color: #fff;
}

.module-event-calendar_day--event:before {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    z-index: -1;
    background-color: #203772;
    border-radius: 50%;
    height: 42px;
    width: 42px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.module-event-calendar_day--selected {
    color: #ccc;
}

@media only screen and (max-width: 480px) {
    .module-event-calendar_day {
        display: inline-block;
    }
}

.module-event-calendar .module_item {
    padding: 0;
    border: none;
}

.module-event-calendar .module_headline {
    margin-bottom: 20px;
}

.module-event-calendar .module_links>div:not(:first-of-type) .module_link {
    padding-left: 15px;
    border-left: 1px solid #669fd5;
}

.module-event-calendar .module_add-to-calendar {
    margin: 0;
}

.module-event-calendar .module_add-to-calendar .module_link {
    color: #fff;
}

.module-event-calendar_legend {
    margin-top: 10px;
    padding: 0;
}

.module-event-calendar_legend-day,
.module-event-calendar_legend-label {
    display: inline-block;
    vertical-align: middle;
}

.module-event-calendar_legend-day {
    position: relative;
    height: 21px;
    width: 21px;
}

.module-event-calendar_legend-day:before {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    z-index: 1;
    background-color: #203772;
    border-radius: 50%;
    height: 21px;
    width: 21px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.module-event-calendar_legend-day:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    color: #fff;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.module-event-calendar_legend-label {
    margin-left: 10px;
    color: #6c6c6c;
    font-size: 12px;
}

@media only screen and (max-width: 768px) {
    .module-event-calendar_calendar-container {
        padding-right: 0;
    }
    .module-event-calendar_event-container {
        margin-top: 0;
        top: 120px;
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@media only screen and (max-width: 530px) {
    .module-event-calendar_event-container {
        top: 90px;
        width: calc(100% - 30px);
        padding: 20px;
    }
    .module-event-calendar_event-container .module_close {
        right: 25px;
        top: 15px;
    }
}

.module-event .module_link[href$=".mp3"] i:before,
.module-event .module_link[href$=".wmv"] i:before,
.module-event-details .module_link[href$=".mp3"] i:before,
.module-event-details .module_link[href$=".wmv"] i:before,
.module-event-latest .module_link[href$=".mp3"] i:before,
.module-event-latest .module_link[href$=".wmv"] i:before,
.module-event-upcoming .module_link[href$=".mp3"] i:before,
.module-event-upcoming .module_link[href$=".wmv"] i:before,
.module-event-archive .module_link[href$=".mp3"] i:before,
.module-event-archive .module_link[href$=".wmv"] i:before,
.module-event-calendar .module_link[href$=".mp3"] i:before,
.module-event-calendar .module_link[href$=".wmv"] i:before {
    content: "\e952";
}

.module-event .module_link[href$=".xls"] i:before,
.module-event .module_link[href$=".xlsx"] i:before,
.module-event .module_link[href$=".csv"] i:before,
.module-event-details .module_link[href$=".xls"] i:before,
.module-event-details .module_link[href$=".xlsx"] i:before,
.module-event-details .module_link[href$=".csv"] i:before,
.module-event-latest .module_link[href$=".xls"] i:before,
.module-event-latest .module_link[href$=".xlsx"] i:before,
.module-event-latest .module_link[href$=".csv"] i:before,
.module-event-upcoming .module_link[href$=".xls"] i:before,
.module-event-upcoming .module_link[href$=".xlsx"] i:before,
.module-event-upcoming .module_link[href$=".csv"] i:before,
.module-event-archive .module_link[href$=".xls"] i:before,
.module-event-archive .module_link[href$=".xlsx"] i:before,
.module-event-archive .module_link[href$=".csv"] i:before,
.module-event-calendar .module_link[href$=".xls"] i:before,
.module-event-calendar .module_link[href$=".xlsx"] i:before,
.module-event-calendar .module_link[href$=".csv"] i:before {
    content: "\eeae";
}

.module-event .module_link[href$=".mp4"] i:before,
.module-event .module_link[href$=".flv"] i:before,
.module-event .module_link[href$=".avi"] i:before,
.module-event-details .module_link[href$=".mp4"] i:before,
.module-event-details .module_link[href$=".flv"] i:before,
.module-event-details .module_link[href$=".avi"] i:before,
.module-event-latest .module_link[href$=".mp4"] i:before,
.module-event-latest .module_link[href$=".flv"] i:before,
.module-event-latest .module_link[href$=".avi"] i:before,
.module-event-upcoming .module_link[href$=".mp4"] i:before,
.module-event-upcoming .module_link[href$=".flv"] i:before,
.module-event-upcoming .module_link[href$=".avi"] i:before,
.module-event-archive .module_link[href$=".mp4"] i:before,
.module-event-archive .module_link[href$=".flv"] i:before,
.module-event-archive .module_link[href$=".avi"] i:before,
.module-event-calendar .module_link[href$=".mp4"] i:before,
.module-event-calendar .module_link[href$=".flv"] i:before,
.module-event-calendar .module_link[href$=".avi"] i:before {
    content: "\e95e";
}

.module-event .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-details .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-details .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-details .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-details .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-latest .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-latest .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-latest .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-latest .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-upcoming .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-upcoming .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-upcoming .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-upcoming .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-archive .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-archive .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-archive .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-archive .module_link[href$=".com"]:not(.module_webcast-link) i:before,
.module-event-calendar .module_link[href$=".html"]:not(.module_webcast-link) i:before,
.module-event-calendar .module_link[href$=".aspx"]:not(.module_webcast-link) i:before,
.module-event-calendar .module_link[href$=".htm"]:not(.module_webcast-link) i:before,
.module-event-calendar .module_link[href$=".com"]:not(.module_webcast-link) i:before {
    content: "\eecd";
}

.module-event-details .module_link:before {
    font-size: 16px;
    vertical-align: top;
}

.module-event-details .module_attachment .module_link[href*='webcast']:before,
.module-event-archive .module_attachement .module_link[href*='webcast'] i:before {
    content: "\e989";
}


/*.module-event-upcoming .module_attachment .module_link[href*='webcast']:before {
    content: "\e989";
    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;
}*/

.module-event-archive .module_financials .module_link.module_financial-link:before {
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.module-event-archive .module_financials .module_link.module_financial-link:before {
    content: "\eecd";
}

.module-event-archive .module_financials a[href*=".pdf"].module_link.module_financial-link:before,
.module-event-archive .module_financials a[href*=".PDF"].module_link.module_financial-link:before {
    content: "\e900";
}

.module-event-archive .module_financials .module_link.module_financial-link.webcast:before {
    content: "\e989";
}

.module_links .module_attachment.module_attachment a:before,
.module_links .module_financials.module_financials a:before,
.module_links .module_news.module_news a:before,
.module_links .q4-icon_calendar {
    vertical-align: bottom;
}

/*---------- FAQ Module ----------*/

.module-faq .toggle-all {
    margin-bottom: 20px;
}

.module-faq_scroll-to-link {
    cursor: pointer;
    color: #669fd5;
    transition: color 0.25s ease-in-out 0s;
}

.module-faq_scroll-to-link:hover {
    color: #4b5ea8;
}

.module-faq_scroll-to-link:focus {
    text-decoration: underline;
}

.module-faq_question {
    margin-top: 0;
    cursor: pointer;
    padding: 13px 15px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
}

.module-faq_answer p {
    margin: 0;
    padding: 0 0 16px;
}

.module-faq .toggle-all a:before {
    content: "Show All";
    position: relative;
    z-index: 10;
}

.module-faq .toggle-all.js--active a:before {
    content: "Hide All";
}

.module-faq .module_item:nth-child(even) {
    background-color: #fff;
}

/*--- Financial Report Modules ---*/

.module-financial-year .module_container--content {
    padding-top: 20px;
}

.module-financial-year .module_cover {
    margin-bottom: 15px;
}

.module-financial-year .module_cover img {
    display: inline-block;
    border: 1px solid #c9d8e5;
}

.module-financial-year .module_item {
    margin-bottom: 16px;
    padding: 0;
    border-bottom: none;
}

.module-financial-year .module_item~.module_item {
    border: none;
}

.module-financial-year .module_links {
    margin: 0;
    text-align: left;
    width: 130px;
    margin: 0 auto;
}

.module-financial-year .module-financial_year {
    text-align: center;
    padding: 0 10px;
}

.module-financial-year .module_item:nth-child(even) {
    background-color: transparent;
}

.module-financial_year--annual {
    font-size: 20px;
    margin-bottom: 14px;
}

.module-financial-year .module_link {
    font-size: 14px;
    font-weight: 400;
}

.module-financial-year .module_link i {
    padding-right: 9px;
}

/*Annual report custom slick*/

.module-financial-year .slick-list {
    max-width: 700px;
    margin: 0 auto;
}

.module-financial-year .slick-prev {
    left: 50px;
}

.module-financial-year .slick-next {
    right: 50px;
}

@media Screen and (max-width: 550px) {
    .module-financial-year .slick-list {
        max-width: 200px;
    }
    .module-financial-year .slick-prev {
        left: 0;
    }
    .module-financial-year .slick-next {
        right: 0;
    }
}

/*End Annual report custom slick*/

.module-financial-quarter .module_item {
    padding: 0;
    border: none;
}

.module-financial-quarter .module_links {
    margin: 0;
    padding: 10px 30px 30px 10px;
}

.module-financial-quarter .module_links>div {
    display: block;
}

.module-financial-quarter .module_link {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    width: 100%;
}

.module-financial-quarter .module_link i {
    margin-right: 10px;
}

.module-financial-quarter .module-financial_year-text {
    padding: 14px 15px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    font-weight: bold;
    text-align: center;
/*     border: 1px solid #739dd2; */
}

.module-financial-table_header {
    display: block;
    color: #fff;
}

.module-financial-table_header-year-container {
    text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
    padding: 15px 15px;
}

.module-financial-table_body-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.module-financial-table_body-row:nth-child(even) {
    background-color: #f6f6f6;
}

.module-financial-table_body-year-container {
    text-align: center;
}

.module-financial-table_body-year,
.module-financial-table_body-category.grid_col {
    padding: 20px 15px;
}

.module-financial-table_item {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    font-weight: normal;
}

.module-financial-table_item~.module_item {
    margin-right: 5px;
}

.module-financial-table_item--empty {
    opacity: 0.1;
}

@media only screen and (max-width: 768px) {
    .module-financial-table_item {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-financial-table_item {
        margin: 5px;
    }
}

.module-financial-table .slick-slider {
    display: inline-block;
    padding: 0;
}

.module-financial-table .slick-slide:focus {
    outline: none;
}

.module-financial-table .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 10;
}

.module-financial-table .slick-prev {
    left: 10px;
}

.module-financial-table .slick-next {
    right: 10px;
}

.module-financial-table .slick-disabled {
    opacity: 0.1;
    cursor: default;
}

/* Latest Quarterly Result Widget */

.module-latest-quarter .module_item {
    margin: 50px 0;
    padding: 0;
}

.module-latest-quarter .module_item~.module_item {
    border: none;
}

.module-latest-quarter .module_links {
    margin: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    text-align: left;
}

.module-latest-quarter .module_links>div {
    display: inline-block;
    text-align: center;
}

.module-latest-quarter .module_link {
    margin: 0;
}

.module-latest-quarter .module_link i {
    display: block;
    font-size: 55px;
}

.module-latest-quarter .module_link-text {
    display: inline-block;
    margin: 15px 0 0;
    font-size: 16px;
    text-transform: none;
    font-weight: normal;
}

.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: 55px;
    font-weight: normal;
}

.module-latest-quarter .module-financial_year-text {
    margin-top: 15px;
    font-size: 24px;
}

.module-latest-quarter .grid_col {
    vertical-align: bottom;
}

@media only screen and (max-width: 1024px) {
    .module-latest-quarter .module_links {
        border-left: 0;
    }
    .module-latest-quarter .module_link {
        margin: 0 0 15px;
    }
    .module-latest-quarter .grid_col {
        vertical-align: middle;
    }
}

@media only screen and (max-width: 768px) {
    .module-latest-quarter .module_item>div:first-child {
        margin-bottom: 30px;
    }
}

/*------ Formbuilder Module ------*/

.module-form--custom .module_container--content {
    display: none;
}

.module-form--custom .module_input::-webkit-input-placeholder {
    color: #5e5e5e;
}

.module-form--custom .module_input:-moz-placeholder {
    color: #5e5e5e;
}

.module-form--custom .module_input::-moz-placeholder {
    color: #5e5e5e;
}

.module-form--custom .module_input:-ms-input-placeholder {
    color: #5e5e5e;
}

.module-form--custom .module_container--content.js--visible {
    display: block;
}

.module-form .module_container--content {
    margin-left: -20px;
}

@media only screen and (max-width: 768px) {
    .module-form .module_container--content {
        margin-left: 0;
    }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
    display: none;
}

.module-form .module_required {
    margin-left: 3px;
}

.module-form .module_container--captcha>div {
    margin: 0;
    padding: 0;
}

.MessageSent .module_container.module_container--inner p: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: 8px;
}

.MessageSent .module_container.module_container--inner p {
    color: #23a217;
}

.module-form .module_container--captcha>div .ErrorMessage {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #b72121;
}

.module-form .module_container--captcha>div .ErrorMessage[style="visibility: hidden;"] {
    display: none;
}

.module-form_item {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
    padding-left: 20px;
    vertical-align: top;
}

.module-form_item>label,
.module-form_item legend {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
}

.layout--iframe label {
    color: #333;
    font-size: 14px;
    font-family: "myriad-pro", sans-serif;
}

.module-form_item legend {
    float: left;
    margin-bottom: 15px;
    font-size: 16px;
}

.module-form_item legend~ul {
    clear: both;
}

.module-form_item ul li:not(:last-of-type) {
    padding-bottom: 5px;
}

.module-form_item--document-request,
.module-form_item--are-you-an-investor {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .module-form_item {
        width: 100%;
        padding-left: 0;
    }
}

.module-form_error-text {
    color: #b72121;
}

.module-form_error-text[style="visibility:hidden;"] {
    display: none;
}

.module-form .CaptchaContainer {
    display: block;
}

.module-form .CaptchaContainer input[type="text"] {
    width: 100%;
}

.module-glossary .module_header {
    display: block;
}

.module-glossary .module_header table {
    width: 100%;
    table-layout: fixed;
}

.module-glossary .module_header table a {
    color: #333333;
    font-weight: normal;
}

.module-glossary .module_header table a[href] {
    color: #669fd5;
}

/*---------- 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: 'myriad-pro', sans-serif;
    font-size: 16px;
    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: 8px;
    }
}

.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;
}

.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;
}

@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;
}

/*----- Miscellaneous Modules ----*/

.module-script {
    display: none;
}

.module-slideshow_viewer {
    display: inline-block;
    width: 100%;
    max-width: 640px;
}

@media only screen and (max-width: 480px) {
    .module-slideshow_viewer {
        max-width: 100%;
        overflow: hidden;
    }
}

.module-slideshow_link-container {
    margin-top: 10px;
}

.module-slideshow_link {
    font-size: 12px;
    color: #21262B;
}

.module-slideshow_link:hover {
    color: #5369e5;
}

.module-slideshow_ratio {
    /* this should be changed with aspecRatio option in widget */
    padding-bottom: 56.25%;
    position: relative;
}

.module-slideshow iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}

.module-rss p+h2 {
    margin: 40px 0 30px;
}

/*------ Navigation Modules ------*/

.nav--sitemap {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 70px;
}

@media only screen and (max-width: 1024px) {
    .nav--sitemap {
        max-width: none;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.nav--sitemap a {
    display: inline-block;
}

.nav--sitemap .level1>li:not(:last-of-type) {
    margin-bottom: 35px;
}

.nav--sitemap .level1>li>a,
.nav--sitemap .level1>li>a:visited {
    margin-bottom: 15px;
    font-size: 24px;
    color: #222;
    text-transform: uppercase;
}

.nav--sitemap .level2>li,
.nav--sitemap .level3>li {
    padding: 5px 0;
}

.nav--sitemap .level2>li>a,
.nav--sitemap .level3>li>a {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.nav--sitemap .level2>li>a {
    margin-bottom: 5px;
}

.nav--sitemap .level3>li {
    padding-left: 15px;
}

/*-------- News Module CSS -------*/

.module-news-releases .module_container--content {
    border-top: 1px solid #dce4ef;
}

.module-news-latest .module_container--content {
    margin-bottom: 20px;
}

.module-news-latest .module_item {
    border: none;
    padding: 0 0 15px;
    background-color: transparent;
}

.module-news-latest .module_headline {
    font-weight: 700;
}

.module-news-latest .module_links {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .module-news-latest .module_item:first-child {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .module-news-latest--mobile {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .module-news-latest--desktop {
        display: none;
    }
}

.module-news-details .module_view-all-link {
    display: block;
    margin-bottom: 25px;
}

.module-news-details .module_view-all-link--bottom {
    margin-top: 25px;
    margin-bottom: 0;
}

.module-news-details_category {
    display: none;
}

.module-news-details ul {
    margin: 16px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.module-news-details ul li {
    line-height: 24px;
}

/*------ Person List Module ------*/

.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
    display: none;
}

.module-person .module_item {
    position: relative;
    padding: 0 0 20px 20px;
    border: none;
}

.module-person .module_item:hover .module-person_name-container {
    opacity: 1;
    visibility: visible;
}

.module-person .module-person_photo-container {
    border-radius: 100%;
    overflow: hidden;
}

.module-person .module-person_photo-container img {
    width: 100%;
}

.module-person .module-person_name-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    cursor: pointer;
}

.module-person .module-person_name-container h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
}

.module-person .module-person_name-container a {
    color: #fff;
}

.module-person .module-person_name {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
}

.module-person .module-person_suffix,
.module-person_title {
    font-size: 13px;
}

.fancybox-container .module-person .module_item {
    max-width: 940px;
    padding: 70px;
}

.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: #333333;
}

.fancybox-container .module-person_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

@media only screen and (max-width: 768px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.fancybox-container .module-person_name {
    display: block;
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 1.45;
    color: #669fd5;
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_name {
        font-size: 24px;
        line-height: 1.2;
    }
}

.fancybox-container .module-person_title {
    font-size: 24px;
    font-size: 2.4rem;
}

@media only screen and (max-width: 480px) {
    .fancybox-container .module-person_title {
        font-size: 18px;
        line-height: 1.125;
    }
}

.fancybox-container .module-person_description-container {
    margin-top: 40px;
}

.fancybox-container .module-person_description {
    display: block;
}

.module-person-accordion .module-person_name-container {
    padding: 13px 15px;
    color: #fff;
    cursor: pointer;
}

.module-person-accordion .module-person_name-container h3 {
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    margin: 0;
}

.module-person-accordion .module_item {
    padding: 0;
    background-color: transparent;
}

.module-person-accordion .module-person_name {
    margin-right: 10px;
}

.module-person-accordion .module-person_title {
    font-size: 14px;
}

.module-person-accordion .module_comma {
    display: none;
}

.module-person-accordion .module-person_description-container {
    padding: 15px;
}

.module-person-accordion .module-person_photo-container {
    float: left;
    margin: 0 25px 15px 0;
}

@media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_photo-container {
        float: none;
        margin: 0 auto 15px auto;
        text-align: center;
    }
}

.module-person-accordion .module-person_photo-container img {
    display: block;
    margin: auto;
}

.module-person-accordion .module-person_description>*:first-child {
    margin-top: 0;
}

.module-person-accordion .module-person_res-photo-container>span {
    margin-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-person-accordion .module-person_res-photo-container>span {
        display: block;
        margin: 0 0 10px 0;
    }
}

.module-person-details .module_title {
    display: none;
}

.module-person-details .module_comma {
    display: none;
}

.module-person-details_photo-container,
.module-person-details_name-container {
    display: inline-block;
    vertical-align: middle;
}

.module-person-details_photo-container {
    max-width: 30%;
    margin-right: 40px;
}

@media only screen and (max-width: 768px) {
    .module-person-details_photo-container {
        margin-right: 15px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .module-person-details_photo-container {
        margin-right: 0;
        max-width: none;
    }
}

.module-person-details_name {
    display: block;
    margin-bottom: 10px;
    font-size: 26px;
    color: #669fd5;
}

.module-person-details_title {
    display: block;
    font-size: 18px;
}

.module-person-details_description-container {
    margin-top: 40px;
}

.module-presentation .module_body {
    display: none;
}

/*------ Q4 Preview Toolbar ------*/

body.PreviewBody {
    margin: 0;
    background-position: 0;
}

body.PreviewBody .PreviewToolBar {
    position: fixed;
    top: 100%;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 35px 20px;
    border: 0;
    background: #222;
    font-size: 0;
    text-align: left;
    color: #fff;
    z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
    top: auto;
    bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
    position: absolute;
    top: 0;
    left: 10px;
    padding: 20px;
    background: #222;
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%);
    transform: translate(0, -100%);
    font-size: 24px;
    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;
    margin-right: 15px;
    line-height: 50px;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
    float: none;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
    content: "Select Preview Type:";
}

body.PreviewBody .PreviewToolBar .PreviewDateControls {
    float: right;
}

body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    content: "Select Preview Date:";
}

body.PreviewBody .PreviewToolBar img {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="radio"],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    display: inline-block;
    margin-right: 5px;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    vertical-align: baseline;
}

body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    border: 0;
    border-radius: 0;
}

body.PreviewBody .PreviewToolBar label+input[type="radio"] {
    margin-left: 15px;
}

body.PreviewBody .PreviewToolBar input[type="text"] {
    min-width: 110px;
}

body.PreviewBody .PreviewToolBar select {
    padding: 15px 35px 15px 20px;
    background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
    background-size: 14px 14px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
    display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
    background: #669fd5;
    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;
    }
}

/*-------- SEC Module CSS --------*/

.module-sec .module_header {
    display: block;
}

.module-sec .module_header-text {
    padding: 14px 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.module-sec .module_item {
    padding: 0;
}

.module-sec .module_item:nth-child(even) {
    background-color: transparent;
}

.module-sec .module_item:nth-child(odd) {
    background-color: #f9f9f9;
}

.module-sec .module_item .grid_col {
    vertical-align: middle;
    padding: 15px 8px;
}

.module-sec .module_item .module-sec_filing {
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .module-sec .module_header {
        display: none;
    }
    .module-sec .module_header+.module_item {
        border-top: 2px solid #669fd5;
    }
    .module-sec .module_item {
        padding: 15px 0;
    }
    .module-sec .module_item:first-child {
        border-top: 2px solid #669fd5;
    }
    .module-sec .module_item:last-child {
        border-bottom: 2px solid #669fd5;
    }
    .module-sec .module_item .grid_col {
        padding: 0 5px;
    }
    .module-sec .module_item+.module_footer {
        border-bottom: 2px solid #669fd5;
    }
}

.module-sec_download-list-item {
    display: inline-block;
}

.module-sec_download-list-item a,
.module-sec-details_download-list-item a {
    color: #989898;
    font-size: 21px;
}

.module-sec_download-list-item a:hover,
.module-sec-details_download-list-item a:hover {
    color: #4b5ea8;
}

.module-sec_download-list-item:not(:last-of-type) {
    margin-right: 5px;
}

@media only screen and (max-width: 768px) {
    .module-sec_date,
    .module-sec_filer,
    .module-sec_filing,
    .module-sec_description {
        margin-bottom: 15px;
    }
}

.module-sec-details_date,
.module-sec-details_description {
    margin-bottom: 15px;
}

.module-sec-details_download-list-item {
    display: inline-block;
    font-size: 24px;
}

.module-sec-details_download-list-item:not(:last-of-type) {
    margin-right: 5px;
}

/*---- Accessibility Skip Link ---*/

.module-skip_link {
    position: absolute;
    top: -100px;
    left: 50%;
    padding: 15px 20px;
    background: transparent;
    color: white;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    transition: 0.5s ease-in-out;
    z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
    top: 0;
    background: #0F5CA3;
    outline: 0;
}

.module-skip_link:visited {
    color: #fff;
}

/*------ Stock Chart Widget ------*/

.module-stock-chart.background--alt-brand .module_title {
    color: #666;
}

.module-stock-chart .highcharts-legend-item:first-child text {
    cursor: default !important;
}

.module-stock-chart.module-stock-chart .module_title {
    margin-bottom: -10px;
}

/*------ Stock Header Module -----*/

.module-stock-header {
    text-align: left;
    position: absolute;
    top: 44px;
    right: 15px;
    color: #585F66;
    width: 250px;
    background: #fff;
    padding: 36px 20px 30px;
}

.module-stock-header_chart {
    display: block;
}

.module-stock-header_chart .highcharts-input-group {
    display: none;
}

.module-stock-header_description1 {
    display: inline-block;
    text-align: left;
    margin-right: 10px;
}

.module-stock-header_indice {
    display: block;
}

.module-stock-header_stock-price {
    display: inline-block;
    font-size: 37px;
}

.module-stock-header_stock-price:before {
    content: '$';
    vertical-align: super;
    font-size: 23px;
}

.module-stock-header_change-wrap {
    display: inline-block;
    font-size: 16px;
    text-align: left;
    margin-left: 10px;
}

.module-stock-header_change,
.module-stock-header_percent-change {
    display: block;
}

.module-stock-header_percent-change:before {
    content: '(';
}

.module-stock-header_percent-change .module-stock-header_indicator {
    display: none;
}

.module-stock-header_percent-change:after {
    content: ')';
}

.module-stock-header_volume {
    display: none;
    margin-bottom: 32px;
}

.module-stock-header_volume:before {
    content: 'Volume ';
    font-weight: bold;
}

.module-stock-header_description3 {
    display: block;
    font-size: 12px;
    text-align: center;
    font-style: italic;
}

.module-stock-header_date {
    text-align: center;
    font-size: 12px;
    font-style: italic;
    display: block;
}

.module-stock-header .button {
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .module-stock-header {
        position: static;
        width: auto;
        background: #719cd4;
        color: #fff;
        text-align: center;
        padding: 20px;
    }
    .module-stock-header_chart {
        display: none;
    }
    .module-stock-header .module-stock-header_container--button {
        display: none;
    }
    .module-stock-header_description3 {
        margin-top: 5px;
    }
}

/*------ Stock Quote Module ------*/

.module-stock .module_options {
    margin-bottom: 30px;
}

.module-stock_lookup-title {
    padding-left: 20px;
}

@media only screen and (max-width: 768px) {
    .module-stock_lookup-title {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_lookup-title {
        padding-left: 5px;
    }
}

.module-stock_layout {
    float: left;
}

.module-stock_layout--left {
    width: 250px;
}

.module-stock_layout--right {
    padding-left: 80px;
    width: calc( 100% - 250px);
}

@media Screen and (max-width: 625px) {
    .module-stock_layout {
        float: none;
    }
    .module-stock_layout--left {
        width: 250px;
        margin-bottom: 30px;
    }
    .module-stock_layout--right {
        padding-left: 0;
        width: 100%;
    }
}

.module-stock_value {
    color: #666666;
    padding: 15px 20px;
}

.module-stock_label>span,
.module-stock_value>span {
    display: block;
    padding: 15px 20px;
}

@media only screen and (max-width: 768px) {
    .module-stock_label>span,
    .module-stock_value>span {
        padding: 15px 10px;
    }
}

@media only screen and (max-width: 480px) {
    .module-stock_label>span,
    .module-stock_value>span {
        padding: 15px 0 15px 5px;
    }
}

.module-stock_label {
    padding: 10px 0 10px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background-color: #2A3DA3;
}

.module-stock_value .module-stock_price:before,
.module-stock_value .module-stock_high:before,
.module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before,
.module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before,
.module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
    content: "$";
}

.module-stock_date {
    margin-top: 25px;
    font-size: 14px;
    font-style: italic;
    text-align: right;
}

.module-stock_date-text {
    margin-right: 15px;
}

.module-stock-box {
    padding: 30px 20px 45px 20px;
    color: #fff;
    text-align: center;
    background-color: #2a3da3;
}

.module-stock-box .module-stock_indice {
    display: block;
    font-size: 15.4px;
    text-align: left;
}

.module-stock-box .module-stock_price {
    display: block;
    font-size: 35.6px;
    text-align: left;
}

.module-stock-box .module-stock_price:before {
    content: "$";
    font-size: 35px;
}

.module-stock-box .module-stock_change-wrapper {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    font-size: 15.4px;
}

.module-stock-box .module-stock_change-wrapper>span {
    -webkit-box-flex: 1;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;
    /* OLD - Firefox 19- */
    -webkit-flex: 1;
    /* Chrome */
    -ms-flex: 1;
    /* IE 10 */
    flex: 1;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    text-align: left;
}

.module-stock-box .module-stock_indicator {
    display: block;
}

.module-stock_change--module-stock_up:before {
    content: "+";
}

.module-stock_change--module-stock_down:before {
    content: "-";
}

.module-stock_layout--left .module-stock_change--module-stock_down:before,
.module-stock_layout--right .module-stock_change--module-stock_down:before {
    display: none;
}

.module-stock-box .module-stock_delay {
    margin-top: 15px;
    text-align: left;
    font-style: italic;
}

/*- MailingList Subscribe Module -*/

.module-subscribe_table {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.module-subscribe_table tbody {
    width: 100%;
}

.js__section-email-alerts .module-subscribe_table tbody {
    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;
}

.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;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
    padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
    padding-bottom: 4px;
}

.module-subscribe .module_required {
    font-size: 14px;
}

.module-subscribe .CaptchaContainer {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-subscribe .CaptchaContainer {
        width: 100%;
    }
}

.module-subscribe_unsubscribe-button {
    display: none;
    color: #21262B;
    font-size: 14px;
    text-decoration: underline;
}

/* MailingList Unsubscribe Module */

.module-unsubscribe_table {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table {
        width: 100%;
    }
}

.module-unsubscribe_table td {
    padding-right: 10px;
}

@media only screen and (max-width: 768px) {
    .module-unsubscribe_table td {
        padding-right: 0;
    }
}

.module-unsubscribe_table label {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 5px;
}

/*==================================
 ----------- LAYOUT CSS -----------
==================================*/


/*------- iframe layout CSS ------*/

.layout--iframe .pane--content .module {
    padding: 35px 0;
}

.layout--iframe .pane--content .module_container--outer {
    max-width: none;
}

/*When starting delete any section comments and css that are not used*/


/*==========================LAYOUT============================*/

.pane--right {
    position: relative;
}

.pane--right .pane_inner {
    position: relative;
    z-index: 1;
}

.pane--right:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    background-color: #585F66;
    z-index: 0;
}

.pane--right:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background-color: #DDE4EB;
    z-index: 0;
}

@media Screen and (max-width: 768px) {
    .pane--right:before {
        content: none;
    }
    .pane--right:after {
        content: none;
    }
}

/*----------------Layout Cotainer-------------------*/


/*no paddgin*/

.layout_container,
.layout_footer .pane_inner,
.module--set-container .module_container--outer {
    display: block;
    max-width: 980px;
    margin: 0 auto;
}

.layout_footer .pane_inner {
    padding: 0 15px;
}

/*--------------End Layout Cotainer-----------------*/


/*-------------Layout General Style-----------------*/

html {
    background-color: #f3f3ee;
}

.layout_container {
    box-shadow: 0px 0px 18px 2px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

/*header*/

.layout_toggle {
    display: none;
    float: left;
    color: #86aedb;
    font-size: 25px;
    padding: 3px;
    margin-top: 12px;
    cursor: pointer;
}

.pane--generic {
    position: relative;
}

.pane--generic .pane_inner {
    padding: 2px 15px 3px;
}

.pane--generic .pane_inner:after {
    content: "";
    display: table;
    clear: both;
}

.pane--header {
    position: relative;
}

.pane--header .pane_inner:after {
    content: "";
    display: table;
    clear: both;
}

.pane--header .pane_inner:before {
    content: "";
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 288px;
    z-index: 1
}

@media screen and (max-width: 979px) {
    .layout.js--mobile {
        position: fixed;
    }
    .pane--header .pane_inner:before {
        content: none;
    }
    .pane--header {
        position: fixed;
        z-index: 500;
        right: 100%;
        top: 60px;
        bottom: 0;
        width: 100%;
        overflow: auto;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        visibility: hidden;
        transition: transform 0.5s ease-in-out 0s, visibility 0s linear 0.7s;
        background-color: #585F66;
    }
    .js--mobile .pane--header {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
        transition: transform 0.5s ease-in-out 0s, visibility 0s linear 0s;
    }
    .layout_toggle {
        display: inline-block;
    }
    .pane--generic .pane_inner {
        padding: 2px 15px 1px;
    }
}

/*content*/


/*footer*/

.layout_footer {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.pane--footer .pane_inner:after,
.pane--credits .pane_inner:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 767px) {
    .layout_footer {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/*-----------End Layout General Style---------------*/


/*------------------Sticky Footer-------------------*/


/**
 * @suppport IE 10+
 */

html,
body,
#pageClass,
.PageDefaultInner,
#litPageDiv,
#litPageDiv>form,
.layout:not(.layout--iframe) {
    height: 100%;
}

.layout:not(.layout--iframe) .layout_inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.layout:not(.layout--iframe) .layout_footer {
    flex: none;
}

.layout:not(.layout--iframe) .layout_container {
    flex: 1 0 auto;
    width: 100%;
}

/*----------------End Sticky Footer-----------------*/


/*========================END LAYOUT=========================*/


/*=====================MODULES SETTINGS======================*/


/*------------------Module Options------------------*/

.module_options .dropdown:empty {
    display: none;
}

.module_reminder .dropdown,
.module_options--small .dropdown {
    padding: 8px 30px 8px 15px;
    height: 34px;
}

.module_reminder .module_input[type="text"],
.module_options--small .module_input[type="text"] {
    padding: 8px 10px;
}

.module_options .button,
.module_reminder .button {
    padding: 6px 40px;
}

/*----------------End Module Options----------------*/


/*----------------Module Title Types----------------*/

.layout_content .module_title {
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 400;
}

.background--light .module_title {
    color: #585F66;
}

.layout_content .dark .module_title {
    color: #fff;
}

.layout_content .ModuleTitle {
    display: inline-block;
    vertical-align: middle;
}

.module--title-nocase .module_title {
    text-transform: none;
}

.module--title-reset .module_title {
    font-size: 27px;
    font-size: 2.7rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #666666;
}

[class^="module--title-icon"] .ModuleTitle,
[class*=" module--title-icon"] .ModuleTitle {
    padding-top: 5px;
}

[class^="module--title-icon"] .module_title:before,
[class*=" module--title-icon"] .module_title:before {
    content: none;
    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;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-size: 35px;
}

.module--title-icon-calendar .module_title:before {
    content: "\e90c";
}

.module--title-icon-paper .module_title:before {
    content: "\e917";
}

.module--title-icon-presentation .module_title:before {
    content: "\e916";
}

.module--title-icon-links .module_title:before {
    content: "\e919";
}

.module--title-icon-chart .module_title:before {
    content: "\e91a";
}

.module--title-icon-sheet .module_title:before {
    content: "\e912";
}

/*--------------End Module Title Types--------------*/


/*===================END MODULES SETTINGS====================*/


/*=========================UTILITIES=========================*/

* {
    -webkit-text-size-adjust: 100%;
}

.cf:after {
    content: "";
    display: table;
    clear: both;
}

/*css disable links click event*/

.disable-links a {
    pointer-events: none;
    cursor: text;
    display: block;
}

.disable-links a * {
    pointer-events: none;
    cursor: text;
}

.disable-links a:focsu {
    pointer-events: none;
}

.module--title-center .module_title {
    text-align: center;
}

/*---------------Same Height Grid Flex--------------*/

.grid--same-height {
    display: flex;
    /*flex-wrap: wrap;*/
}

/*Fix *safari* height 100% not working for inner elements of flex-items.
 * When using flex we cand change padding-left with marging-left for .grid_col.
 * Now we can use background-color directly on .grid_col and preserve the gutter.
 */

.grid--same-height .grid_col {
    margin-left: 20px;
    padding-left: 0;
}

/*grid slider same height*/

.grid--slider-same-height {
    display: flex;
}

.grid--slider-same-height .grid_col {
    margin-left: 20px;
    padding-left: 0;
}

.grid--slider-same-height .slick-slider .slick-track,
.grid--slider-same-height .slick-slider .slick-list {
    display: flex;
}

/*---------------Same Height Grid Flex--------------*/


/*---------------Focus state style------------------*/

.input:focus,
.textarea:focus,
.dropdown:focus,
.upload:focus,
.submit:focus,
.button:focus,
.module_input[type="text"]:focus,
.module_input[type="email"]:focus,
.module_input[type="file"]:focus,
.module_dropdown:focus,
.module textarea.module_input:focus,
.module_button:focus,
.module_button[type="submit"]:focus,
.CaptchaContainer input[type="text"]:focus {
    border: 1px solid #739dd2;
    box-shadow: 0px 0px 10px 1px rgba(115, 157, 210, 0.9);
}

/*-------------End Focus state style----------------*/


/*------------Custom General Styles/Classes---------*/

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: auto!important;
}

.module_required-text-star,
.module_required {
    color: #b72121;
}

.module_rss--top {
    margin-top: 0;
}

.module--no-title .module_rss--top {
    margin-top: 0;
}

.module_rss--widget {
    margin-top: -65px;
}

.module--no-title .module_rss--widget {
    margin-top: 0;
}

.module_rss-link:focus {
    color: #00c060;
}

.module--has-year-dropdown .module_title {
    margin-bottom: 2px;
}

.module--has-year-dropdow .module_rss--widget {
    margin-top: -27px;
}

.pager-page {
    color: #939393;
    font-size: 15px;
    font-weight: 600;
    margin-right: 10px;
    cursor: pointer;
}

.pager-page:nth-last-child(1) {
    margin-right: 0;
}

.pager-active {
    color: #669fd5;
}

.pager-disabled {
    display: none;
}

.break-word {
    word-wrap: break-word;
}

/*----------End Custom General Styles/Classes-------*/


/*---------------Place Holder Styling---------------*/

::-webkit-input-placeholder {
    color: #5e5e5e;
}

:-moz-placeholder {
    color: #5e5e5e;
}

::-moz-placeholder {
    color: #5e5e5e;
}

:-ms-input-placeholder {
    color: #5e5e5e;
}

/*-------------End Place Holder Styling-------------*/


/*-------------Press Releases Details---------------*/

.module-news-details a {
    word-wrap: break-word;
}

.module-news-details table {
    display: block;
    overflow-x: auto;
}

.module-news-details table tbody {
    display: table;
    width: calc(100% - 1px);
    /*min-width: 680px;*/
}

@media screen and (max-width: 767px) {
    .module-news-details table {
        font-size: 14px;
    }
}

/*----------IOS Responsive Table SCROOLBAR FIX-------------*/


/*make srollbar visible by default*/

.module-news-details table::-webkit-scrollbar,
.module-news-details table *::-webkit-scrollbar {
    width: 15px;
    height: 15px;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.module-news-details table::-webkit-scrollbar-thumb,
.module-news-details table *::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #C3C3C3;
    border: 2px solid #eee;
}

.module-news-details table::-webkit-scrollbar-track,
.module-news-details table *::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

/*--------End IOS Responsive Table SCROOLBAR FIX-----------*/


/*-----------End Press Releases Details-------------*/


/*------------------Css Tooltip---------------------*/

[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover:before {
    visibility: visible;
    display: block;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    background: #373a4b;
    position: absolute;
    bottom: 100%;
    right: 0;
    padding: 5px 5px 5px 10px;
    color: #fff;
    visibility: hidden;
    display: none;
    font-size: 14px;
    width: auto;
    max-width: 450px;
    min-width: 250px;
    margin-bottom: 5px;
}

.dark [data-tooltip]:before {
    content: attr(data-tooltip);
    background: #f5f5f5;
    color: #373a4b;
}

/*----------------End Css Tooltip-------------------*/


/*-----------------Custom Checkboxes----------------*/

input[type="checkbox"],
input[type="radio"] {
    cursor: pointer;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
    cursor: pointer;
    position: relative;
    padding-left: 24px;
}

/*active state styles general*/

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
    content: "";
    width: 14px;
    height: 14px;
    background: #dedede;
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #dedede;
}

.background--grey-dark input[type="checkbox"]+label:before,
.background--grey-dark input[type="radio"]+label:before {
    content: "";
    width: 14px;
    height: 14px;
    background: #f3f3ee;
    margin-right: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 1px solid #f3f3ee;
}

.module--white-form input[type="checkbox"]+label:before,
.module--white-form input[type="radio"]+label:before {
    background: #fff;
}

input[type="radio"]+label:before {
    border-radius: 100%;
}

input[type="checkbox"]:not(:checked)+label:after,
input[type="checkbox"]:checked+label:after,
input[type="radio"]:checked+label:after {
    content: "";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    left: 3px;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    transition: all .1s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

input[type="radio"]:not(:checked)+label:after,
input[type="radio"]:checked+label:after {
    border-radius: 100%;
}

/*active state styles with middle square*/

input[type="checkbox"]:not(:checked)+label:after,
input[type="checkbox"]:checked+label:after,
input[type="radio"]:checked+label:after {
    width: 8px;
    height: 8px;
    background: #5369e5;
}

/*focus/accesibility indentifier*/

input[type="checkbox"]:focus+label,
input[type="radio"]:focus+label {
    text-decoration: underline;
}

input[type="checkbox"]:focus+label:before,
input[type="radio"]:focus+label:before {
    border: 1px solid #739dd2;
    box-shadow: 0px 0px 10px 1px rgba(115, 157, 210, 0.9);
}

/*active state activation*/

input[type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
}

input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

/*invalid js-state state activation*/

.js--invalid input[type="checkbox"]+label:before,
.js--invalid input[type="radio"]+label:before {
    border: 1px solid #e10000;
}

/*---------------End Custom Checkboxes--------------*/


/*----------------Vertical Center-------------------*/

.module--content-vertical-center .module_container--outer,
.vertical-center {
    height: 100%;
    white-space: nowrap;
}

.module--content-vertical-center .module_container--outer:before,
.vertical-center:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
}

.module--content-vertical-center .module_container--inner,
.vertical-center__inner {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    width: 100%;
}

/*--------------End Vertical Center-----------------*/


/*-------------Responsive Embed Video---------------*/

.responsive-iframe {
    position: relative;
    width: 100%;
    vertical-align: top;
}

.responsive-iframe_inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.responsive-iframe_inner iframe,
.responsive-iframe_inner object,
.responsive-iframe_inner embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%!important;
}

@media screen and (max-width: 767px) {
    .responsive-iframe {
        width: 100%;
    }
}

/*------------End Responsive Embed Video------------*/


/*--------------------Accordion---------------------*/

.module:not(.module--reset-accordion) [role="tablist"] [role="tabpanel"] {
    padding: 0 16px;
}

.module:not(.module--reset-accordion) [role="tablist"] .module_item {
    padding: 0;
}

.module:not(.module--reset-accordion) [role="tablist"] .module_item:last-child {
    border: none;
}

.module:not(.module--reset-accordion) [role="tablist"] [role="tab"] {
    cursor: pointer;
    position: relative;
    padding-right: 45px;
    transition: font-weight 0.2s ease-in-out 0s;
    border: 1px solid rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    color: #5369e5;
}

.module:not(.module--reset-accordion) [role="tablist"] .js--active [role="tab"] {
    color: #2A3DA3;
}

.module:not(.module--reset-accordion) [role="tablist"] [role="tab"]:before {
    content: "\edc2";
    float: right;
    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;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.module:not(.module--reset-accordion) [role="tablist"] .js--active [role="tab"]:before {
    content: "\edba";
}

.toggle-all a:before {
    content: "Show all";
}

.toggle-all.js--active a:before {
    content: "Hide all";
}

/*------------------End Accordion-------------------*/


/*-----------------Slick Custom---------------------*/

.slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    color: #fff;
    z-index: 500;
    cursor: pointer;
    font-size: 0;
    color: transparent;
    border: none;
    padding: 0;
}

.slick-arrow:after {
    font-family: 'q4-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 39px;
    line-height: 1;
    color: #666;
}

.slick-prev {
    left: 0;
}

.slick-prev:after {
    content: "\edc6";
}

.slick-next {
    right: 0;
}

.slick-next:after {
    content: "\edbe";
}

.slick-dots {
    padding: 0;
    margin: 0;
    border: none;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    padding: 5px;
}

.slick-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 100%;
    opacity: 0.5;
    border: 1px solid #979797;
    background-color: #fff;
    cursor: pointer;
    font-size: 0;
    line-height: 10px;
}

.slick-dots .slick-active button {
    opacity: 1;
    background-color: #d8d8d8;
}

.slick-dots button:focus {
    opacity: 0.8;
}

/*---------------End Slick Custom-------------------*/


/*--------------------Glossary----------------------*/

.module-glossary .module_anchor-target {
    padding: 10px 0;
    font-size: 25px;
    display: block;
    pointer-events: none;
}

.module-glossary .module_item {
    padding: 25px 45px 35px;
}

@media screen and (max-width: 768px) {
    .module-glossary .module_header table,
    .module-glossary .module_header table tbody,
    .module-glossary .module_header table tr {
        display: block;
    }
    .module-glossary .module_header table td {
        width: 10%;
        display: inline-block;
        margin: 5px 0;
    }
}

/*------------------End Glossary--------------------*/


/*---------------Animation classes------------------*/

.slide-height-top,
.js--slide-height-top {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out, max-height 0.25s ease-in-out 0s, visibility 0s linear 0.5s;
}

.js--slide-height-top--active .slide-height-top,
.js--slide-height-top--active.js--slide-height-top,
.js--slide-height-top--active .js--slide-height-top {
    max-height: 500px;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    transition: transform 0.3s ease-in-out, max-height 0.25s ease-in-out 0s, visibility 0s linear 0s;
}

.slide-height-bottom,
.js--slide-height-bottom {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease-in-out, max-height 0.25s ease-in-out 0s, visibility 0s linear 0.5s;
}

.js--slide-height-bottom--active .slide-height-bottom,
.js--slide-height-bottom--active.js--slide-height-bottom,
.js--slide-height-bottom--active .js--slide-height-bottom {
    height: 500px;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    transition: transform 0.3s ease-in-out, max-height 0.25s ease-in-out 0s, visibility 0s linear 0s;
}

.slide-width-left,
.js--slide-width-left {
    max-width: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out, max-width 0.25s ease-in-out 0s, visibility 0s linear 0.5s;
}

.js--slide-width-left--active .slide-width-left,
.js--slide-width-left--active.js--slide-width-left,
.js--slide-width-left--active .js--slide-width-left {
    max-width: 500px;
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
    transition: transform 0.3s ease-in-out, max-width 0.25s ease-in-out 0s, visibility 0s linear 0s;
}

.slide-width-right,
.js--slide-width-right {
    max-width: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out, max-width 0.25s ease-in-out 0s, visibility 0s linear 0.5s;
}

.js--slide-width-right--active,
.js--slide-width-right--active .slide-width-right,
.js--slide-width-right--active.js--slide-width-right,
.js--slide-width-right--active .js--slide-width-right {
    max-width: 500px;
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
    transition: transform 0.3s ease-in-out, max-width 0.25s ease-in-out 0s, visibility 0s linear 0s;
}

/*---------------Animation classes------------------*/


/*=======================END UTILITIES=======================*/


/*=======================PAGE BANNER========================*/


/*-------------------Page Title---------------------*/

.module-page-title {
    height: 175px;
    color: #fff;
    padding: 0 15px;
}

@media screen and (max-width: 767px) {
    .module-page-title {
        height: 170px;
    }
}

/*home page*/

.page-banner--overview .module-page-title {
    height: 420px;
}

@media screen and (max-width: 767px) {
    .page-banner--overview .module-page-title {
        height: 170px;
    }
}

/*-----------------End Page Title-------------------*/


/*-------------------Page Image---------------------*/


/*general header image styles*/

.pane--banner {
    background-image: url(../design/banner/banner_home-v2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 175px;
    position: relative;
}

.pane--banner:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    z-index: 1;
    background-color: rgb(32, 55, 114);
}

.pane--banner .pane_inner {
    position: relative;
    z-index: 5;
}

.SectionEventsampPresentations .pane--banner,
.ParentSection_upcoming-events .pane--banner {
    background-image: url(../design/banner/banner_events.jpg);
}

.SectionFinancials .pane--banner,
.ParentSection_sec-filings .pane--banner {
    background-image: url(../design/banner/banner_financials.jpg);
}

.SectionStock .pane--banner {
    background-image: url(../design/banner/banner_stock.jpg);
}

@media screen and (max-width: 767px) {
    .pane--banner {
        min-height: 170px;
    }
}

/*home page*/

.page-banner--overview .pane--banner {
    min-height: 420px;
}

@media screen and (max-width: 767px) {
    .page-banner--overview .pane--banner {
        min-height: auto;
    }
}

/*-----------------End Page Image-------------------*/


/*======================END PAGE BANNER=======================*/


/*==========================HEADER============================*/


/*---------------------Search-----------------------*/

.module-search_button {
    display: inline-block;
    vertical-align: middle;
    background: url(../design/svg/q4-icon_search.svg) no-repeat center;
    background-size: 16px 16px;
    width: 20px;
    height: 25px;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid rgba(0, 0, 0, 0);
    font-size: 0;
    color: #fff;
    cursor: pointer;
}

.module-search_select::-ms-expand {
    display: none;
}

/*desktop search*/

@media screen and (min-width:980px) {
    .module-search {
        float: right;
        font-size: 10px;
    }
    .module-search_close-popup {
        display: none;
    }
    .module-search_input[type="text"] {
        background: #fff;
        border-left: 1px solid #739dd2;
        border-top: 1px solid #739dd2;
        border-bottom: 1px solid #739dd2;
        border-right: none;
        border-radius: 0;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
        font-size: 10px;
        padding: 5px 15px;
        display: inline-block;
        float: left;
        height: 26px;
        width: 116px;
    }
    .module-search_input[type="text"]:focus {
        border-right: none;
        box-shadow: inset 0px 0px 10px 1px rgba(115, 157, 210, 0.9);
    }
    .module-search_input[type="text"]::-webkit-input-placeholder {
        color: #4b5ea8;
    }
    .module-search_input[type="text"]:-moz-placeholder {
        color: #4b5ea8;
    }
    .module-search_input[type="text"]::-moz-placeholder {
        color: #4b5ea8;
    }
    .module-search_input[type="text"]:-ms-input-placeholder {
        color: #4b5ea8;
    }
    .module-search .module_container-wrap {
        display: inline-block;
        vertical-align: middle;
        height: 26px;
    }
    .js--slide-width-right--active .module_container-wrap {
        max-width: 235px;
    }
    /*search options*/
    .module-search_options--desktop {
        display: inline-block;
        float: left;
    }
    .module-search_select {
        -webkit-appearance: none;
        -moz-appearance: none;
        background: #fff;
        border-right: 1px solid #739dd2;
        border-top: 1px solid #739dd2;
        border-bottom: 1px solid #739dd2;
        border-left: none;
        border-radius: 0;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        font-size: 10px;
        color: #4b5ea8;
        padding: 5px 15px;
        padding: 5px 30px 5px 15px;
        display: inline-block;
        font-family: 'myriad-pro', sans-serif;
        background: #fff url(../design/svg/q4-icon_chevron-down-black.svg) no-repeat right 15px center;
        background-size: 10px 10px;
        height: 26px;
        width: 114px;
    }
    .module-search_select:focus {
        border-left: none;
        box-shadow: inset 0px 0px 10px 1px rgba(115, 157, 210, 0.9);
    }
    .module-search_options--mobile {
        display: none;
    }
}

/*mobile search*/

@media screen and (max-width: 979px) {
    .module-search {
        float: right;
    }
    .module-search_options--desktop {
        display: none;
    }
    .module-search_close-popup {
        position: absolute;
        right: 10px;
        top: 20px;
        -webkit-appearance: none;
        -moz-appearance: none;
        border: 1px solid rgba(0, 0, 0, 0);
        border-radius: none;
        padding: 0;
        width: 25px;
        background: transparent;
        width: 30px;
        height: 30px;
        color: #739dd2;
        font-size: 15px;
    }
    .module-search_close-popup:focus {
        border: 1px solid #739dd2;
        box-shadow: 0px 0px 10px 1px rgba(115, 157, 210, 0.9);
    }
    .module_container-wrap {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 600;
    }
    .js--slide-width-right--active .module_container-wrap {
        max-height: 120px;
    }
    .module-search_input[type="text"] {
        width: calc(100% - 80px);
        margin: 15px 40px;
        padding: 11px 5px;
        background: #fff;
        border: 1px solid #fff;
    }
    .module-search_button {
        position: absolute;
        z-index: 601;
        top: 14px;
        left: calc(100% - 40px);
        transition: left 0.35s ease-in-out 0s, top 0.35s ease-in-out 0s;
        background: url(../design/svg/q4-icon_search-mobile.svg) no-repeat center;
        background-size: 19px 19px;
        width: 23px;
        height: 28px;
    }
    .js--slide-height-top--active .module-search_button {
        left: 15px;
        top: 20px;
    }
    .module-search_options--mobile:after {
        content: "";
        display: table;
        clear: both;
    }
    .module-search_options--mobile input[type="radio"]+label {
        background: #fff;
        border: 1px solid #cfcfcf;
        padding: 10px;
        text-align: center;
        float: left;
        width: 50%;
        color: #739dd2;
        font-weight: 700;
        transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
    }
    .module-search_options--mobile input[type="radio"]+label:last-child {
        border-left: none;
    }
    .module-search_options--mobile input[type="radio"]:checked+label {
        background: #739dd2;
        color: #fff;
    }
    .module-search_options--mobile input[type="radio"]+label:after,
    .module-search_options--mobile input[type="radio"]+label:before {
        content: none;
    }
}

.module-search-result_url {
    display: none;
}

.module-search-result_description:after {
    content: "...";
}

/*---------------------Search-----------------------*/


/*--------------Corporate Quick Link----------------*/

.module-header-links {
    float: right;
    margin-right: 15px;
    margin-top: 3px;
}

.module-header-links .module-links_list {
    text-transform: uppercase;
    color: #4b5ea8;
}

.module-header-links .module-links_list-item-link {
    color: #5369e5;
    font-size: 10px;
}

@media screen and (max-width: 979px) {
    .module-header-links {
        display: none;
    }
}

/*------------End Corporate Quick Link--------------*/


/*---------------------Logo-------------------------*/

.module-logo {
    float: left;
    padding-left: 10px;
    background: #fff;
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 980px) {
    .module-logo {
        width: 288px;
    }
}

@media screen and (max-width: 979px) {
    .module-logo {
        display: none;
    }
}

/*-------------------End Logo-----------------------*/


/*-----------------Logo mobile----------------------*/

@media screen and (min-width: 980px) {
    .module-logo-mobile {
        display: none;
    }
}

@media screen and (max-width: 979px) {
    .module-logo-mobile {
        width: 161px;
        margin: 0 auto;
    }
}

/*---------------End Logo mobile--------------------*/


/*----------------Main Navigation-------------------*/


/*Sticky navigation*/

.pane--navigation .pane_inner.js--sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
}

.nav_br {
    display: none;
}

@media screen and (min-width: 980px) {
    .nav--main {
        float: left;
        padding-right: 20px;
    }
    .nav--main .nav_br {
        display: inline;
    }
    .nav--main .level1 li.has-children {
        position: relative;
    }
    .nav--main li.has-children:hover>a:not(.sf-with-ul)+ul {
        display: block;
    }
    /*level1*/
    .nav--main .level1 {
        display: flex;
    }
    .nav--main .level1>li>a {
        display: block;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        color: #41484F;
        padding: 9px 10px;
        text-align: center;
    }
    .nav--main .level1 ul {
        display: none;
    }
    .nav--main .level1>li {
        display: inline-block;
        display: flex;
        align-items: center;
        position: relative;
        transition: background-color 0.2s ease-in-out 0s;
/*         padding-bottom: 5px; */
    }
/*     .nav--main .level1>li:after {
        content: "";
        display: block;
        height: 4px;
        width: 100%;
        margin-top: 5px;
        position: absolute;
        bottom: 7px;
    } */
    .nav--main .level1>li.selected,
    .nav--main .level1>li.expanded {
    border-bottom: 3px solid #5369e5;
    margin-bottom: 2px;
    padding-bottom: 0;
    }


    .nav--main .level1>li.selected>a,
    .nav--main .level1>li.expanded>a,
    .nav--main .level1>li:hover>a {
        color: #5369e5;
        transition: color 0.2s ease-in-out 0s;
    }
    .nav--main .level1>li:not(.selected):not(.expanded):hover {
        background-color: #DEE3FC;
    }
    .nav--main .level1>li:not(.selected):not(.expanded):hover:after {
        background-color: transparent;
    }
    .nav--main .level1>li:not(.selected):not(.expanded):hover>a {
        color: #1C2978;
    }
    /*level2*/
    .nav--main .level2 {
        position: absolute;
        top: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        background: #fff;
        width: 180px;
        z-index: 500;
    }
    .nav--main .level2:before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 8px 8px 8px;
        border-color: transparent transparent #ffffff transparent;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .nav--main .level1>li:last-child .level2:before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: auto;
        right: 39px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 8px 8px 8px;
        border-color: transparent transparent #ffffff transparent;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .nav--main .level1>li:last-child>.level2 {
        left: auto;
        right: 0;
        transform: translateX(0);
    }
    .nav--main .level2 a {
        display: block;
        color: #1C2978;
        font-size: 12px;
        padding: 14px 20px;
        transition: background-color 0.25s ease-in-out 0s;
    }
    .nav--main .level2 .selected>a,
    .nav--main .level2 .expanded>a,
    .nav--main .level2 a:hover {
        background: #DEE3FC;
    }
    /*level2 and more*/
    .nav--main .level2 ul {
        position: absolute;
        top: 0;
        left: 100%;
        background: #fff;
        width: 180px;
    }
    .nav--main .level1>li.has-children:last-child .level2 ul {
        left: auto;
        right: 100%;
    }
}

/*mobile nav*/

@media screen and (max-width: 979px) {
    .nav--main {
        padding: 15px 20px;
    }
    .nav--main a {
        display: inline-block;
        font-weight: 700;
        color: #fff;
        padding: 5px 0;
    }
    .nav--main li {
        padding: 10px 0;
    }
    .nav--main li.has-children>a:after {
        content: "\edc2";
        font-family: 'q4-icons' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin-left: 10px;
        font-size: 12px;
        display: inline-block;
    }
    .nav--main li.has-children.js--expanded>a:after {
        content: "\edba";
    }
    .nav--main .level1>li>a {
        text-transform: uppercase;
    }
    .nav--main .level1 ul {
        max-height: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.8s ease-in-out 0s, visibility 0s linear 1s;
    }
    .nav--main .level1 .js--expanded>ul,
    .nav--main .level1 .js--nav-dropdown>ul {
        max-height: 500px;
        visibility: visible;
        transition: max-height 0.8s ease-in-out 0s, visibility 0s linear 0s;
    }
}

/*-------------End Main Navigation------------------*/


/*----------------Secondary Nav--------------------*/

.nav--secondary {
    background: #585F66;
}

.nav--secondary a {
    color: #fff;
}

.nav--secondary .level1>li,
.nav--secondary .level1 li.selected>a,
.nav--secondary .level1 li.expanded>a,
.nav--secondary .level1 ul {
    display: none;
}

.nav--secondary .level1>li.selected,
.nav--secondary .level1>li.expanded,
.nav--secondary .level1>li.expanded>ul,
.nav--secondary .level1>li.selected>ul {
    display: block;
    text-align: center;
}

.nav--secondary .level1>li.selected>ul>li,
.nav--secondary .level1>li.expanded>ul>li {
    display: inline-block;
    text-align: center;
    position: relative;
}

.Sectioncorporate-governance .nav--secondary .level1>li.expanded>ul>li.selected>a,
.Sectionabout-the-board .nav--secondary .level1>li.expanded>.level2>li.expanded>a {
    background: #dde4eb;
    color: #203772;
}

.nav--secondary .level1>li.selected>ul>li>a,
.nav--secondary .level1>li.expanded>ul>li>a {
    padding: 20px 24px;
    display: block;
    font-weight: 700;
    background: #585F66;
    transition: background-color 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s;
}

.nav--secondary .level1>li.selected>ul>li>a:hover,
.nav--secondary .level1>li.expanded>ul>li>a:hover,
.nav--secondary .level1>li.selected>ul>li.js--active>a,
.nav--secondary .level1>li.expanded>ul>li.js--active>a {
    background: #DDE4EB;
    color: #2C3238;
}

.nav--secondary .level3 {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    width: 180px;
    z-index: 500;
    -webkit-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.75);
}

.nav--secondary .level3 a {
    display: block;
    color: #3c5a98;
    font-size: 12px;
    padding: 14px 20px;
    transition: background-color 0.25s ease-in-out 0s;
}

.nav--secondary .level3 a:hover {
    background: #c7d8ed;
}

.nav--secondary .level1 .level3.level3 li.selected,
.nav--secondary .level1 .level3.level3 li.selected a {
    display: block;
}

.nav--secondary .level3 li.selected a {
    background: #c7d8ed;
}

@media screen and (max-width: 970px) {
    .nav--secondary {
        display: none;
    }
}

/*--------------End Secondary Nav------------------*/


/*========================END HEADER==========================*/


/*==========================FOOTER============================*/


/*Contact*/

.module-contact .module_title {
    margin-top: 0;
    font-size: 14px;
    font-weight: 700;
}

.module-contact {
    background-color: #585F66;
}

/*------------------Email Alerts--------------------*/

.module-subscribe--footer.module-subscribe--footer {
    padding-bottom: 17px;
    padding-top: 17px;
    background-color: #DDE4EB;
}

.module-subscribe--footer .module_title,
.module-subscribe--footer-confirm .module_title {
    margin-top: 0;
    color: #666;
    font-size: 14px;
    font-weight: 700;
}

.module-subscribe--footer .module_introduction,
.module-subscribe--footer .module-subscribe_form label,
.module-subscribe--footer .module_required,
.module-subscribe--footer .module-subscribe_list-header {
    display: none;
}

.module-subscribe--footer .module-subscribe_form tr {
    margin: 0;
    padding-right: 10px;
    width: calc( 100% - 132px);
}

.module-subscribe--footer .module-subscribe_mailing-list,
.module-subscribe--footer .module-subscribe_table tbody,
.module-subscribe--footer .module-subscribe_list,
.module-subscribe--footer .module-subscribe_list>td,
.module-subscribe--footer .module-subscribe_list>td>table {
    display: block;
}

.module-subscribe--footer .module-subscribe_list tbody {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-flow: row wrap;
}

.module-subscribe--footer .module_input[type="text"],
.module-subscribe--footer input[type="checkbox"]+label:before {
    background-color: #fff;
}

.module-subscribe--footer .module-subscribe_list tr {
    display: inline-block;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    padding-right: 5px;
    width: 50%;
}

.module-subscribe_mailing-list tr table td {
    align-self: center;
}

/*Set position for submit button*/

.module-subscribe--footer .module_container--inner {
    position: relative;
}

.module-subscribe--footer .module_actions {
    position: absolute;
    top: 0;
    right: 40px;
    margin: 0;
}

.module-subscribe--footer .module-subscribe_submit-button {
    margin-top: 1px;
    padding: 0px 19px;
    height: 34px
}

.module-subscribe--footer .module-subscribe_unsubscribe-button {
    display: block;
}

@media Screen and (min-width: 481px) and (max-width: 768px) {
    .module-subscribe--footer .module-subscribe_form tr {
        max-width: 300px;
    }
    .module-subscribe--footer .module-subscribe_list>td>table {
        max-width: 450px;
    }
    .module-subscribe--footer .module_actions {
        right: auto;
        left: 300px;
    }
}

@media Screen and (max-width: 480px) {
    .module-subscribe--footer .module-subscribe_form tr {
        width: 100%;
    }
    .module-subscribe--footer .module-subscribe_list tr {
        width: 100%;
    }
    .module-subscribe--footer .module_actions {
        position: static;
        margin-bottom: 10px;
    }
}

/*----------------End Email Alerts------------------*/


/*-------------------Logo Footer--------------------*/

.module-logo-footer {
    float: right;
}

@media screen and (max-width: 900px) {
    .module-logo-footer {
        float: none;
        text-align: center;
        margin-bottom: 85px;
    }
}

/*-----------------End Logo Footer------------------*/


/*-------------------Legal Links--------------------*/

.module-links--legal {
    float: left;
}

.module-links_list:after {
    content: "";
    display: table;
    clear: both;
}

.module-links--legal li {
    display: inline-block;
    position: relative;
    float: left;
}

.module-links--legal li+li {
    margin-left: 20px;
}

.module-links--legal li+li:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 4px;
    bottom: 4px;
    border-left: 1px solid #9f9f9f;
}

.module-links--legal .module-links_list-item-link {
    font-size: 11px;
    line-height: 1.45;
    color: #585F66;
}

@media screen and (max-width: 900px) {
    .module-links--legal {
        float: none;
        max-width: 620px;
        margin: 0 auto;
    }
    .module-links--legal .module-links_list-item-link {
        font-size: 14px;
    }
}

/*-----------------End Legal Links------------------*/


/*--------------------Copyright---------------------*/

.copyright {
    display: inline-block;
    float: left;
    font-size: 11px;
    line-height: 1.45;
    color: #585F66;
}

@media screen and (max-width: 900px) {
    .copyright {
        float: none;
        margin-top: 25px;
        font-size: 14px;
        display: block;
        text-align: center;
    }
}

/*------------------End Copyright-------------------*/


/*------------------Social Links--------------------*/

.module-social-links {
    width: 150px;
    margin: 0 auto;
    text-align: center;
}

.module-social-links_item {
    display: inline-block;
    font-size: 25px;
}

.module-social-links_item+.module-social-links_item {
    margin-left: 15px;
}

.module-social-links_link {
    color: #000;
    opacity: .5;
}

.module-social-links_link:hover {
    opacity: 1;
    color: #5369e5;
}

@media screen and (max-width: 900px) {
    .module-social-links {
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        width: auto;
    }
    .module-social-links_item {
        font-size: 35px;
    }
}

@media screen and (max-width: 767px) {
    .module-social-links {
        top: 80px;
    }
}

/*----------------End Social Links------------------*/

.module-q4-credits {
    text-align: center;
    font-size: 10px;
    margin-top: 15px;
}

/*========================END FOOTER==========================*/


/*===========================HOME=============================*/


/*--------------------Overview----------------------*/

.module-overview--mobile {
    display: none;
}

.module-overview .module_container--outer {
    max-width: 880px;
    margin: 0 auto;
}

.module-overview .module_title {
    font-size: 27px;
    color: #666;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .module-overview--desktop {
        display: none;
    }
    .module-overview--mobile.module-overview--mobile {
        display: block;
        padding-top: 0;
    }
}

/*------------------End Overview--------------------*/


/*------------Events And Presentations--------------*/

.module-events-and-presentations {
    background-image: url('../design/module-bg/module-bg-events.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    direction: rtl;
    font-weight: 700;
}

.module-events-and-presentations .module_container--outer {
    max-width: 370px;
    direction: ltr;
    padding-right: 80px;
}

.module-events-and-presentations .module_title {
    font-weight: 400;
}

.module-events-and-presentations .module_subtitle {
    font-size: 27px;
    font-weight: 400;
}

.module-events-and-presentations .button:after {
    display: none;
}

@media Screen and (max-width: 768px) {
    .module-events-and-presentations .module_container--outer {
        padding-right: 0;
    }
}

/*----------End Events And Presentations------------*/


/*-----------------Press Releases-------------------*/

.module-slideshow-home .module-slideshow_viewer {
    max-width: 360px;
}

.module-slideshow_date {
    margin-top: 20px;
}

.module-slideshow_headline {
    font-weight: 700;
    margin-bottom: 10px;
}

.module-slideshow-home .module-slideshow_link-container {
    margin-bottom: 20px;
}

.module-slideshow_link {
    color: #21262B;
    margin-bottom: 20px;
}

.module-slideshow_link i {
    font-size: 20px;
    vertical-align: middle;
}

/*---------------End Press Releases-----------------*/


/*------------------Quick Links---------------------*/

.module.module-download-links {
    padding-bottom: 50px;
    padding-top: 0;
    padding-left: 25px;
}

.module-download-links .module_title {
    text-align: center;
}

.module-download-links_thumb-wrapper img {
    width: 100%;
}

.module-download-links .button {
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
}

@media Screen and (max-width: 1024px) {
    .module-download-links_item {
        margin-bottom: 30px;
    }
    .module-download-links_thumb-wrapper,
    .module-download-links_button-wrapper {
        padding: 0 20px;
    }
}

/*----------------End Quick Links-------------------*/


/*=========================END HOME===========================*/


/**************************************************************
*******************Custom Module By Pages**********************
**************************************************************/


/*-----------------Dividends-------------------*/

.module-dividends .select-sorted-table {
    margin-top: 0px;
}

.module-dividends tbody tr {
    border-bottom: 1px solid #d0dded;
}

.module-dividends tbody tr:nth-child(even) {
    background-color: #fff;
}

/*---------------End Dividends-----------------*/


/*-------------Ownership Profile---------------*/

.module-ownership h1 {
    font-size: 18px;
    color: #669fd5;
    margin-bottom: 25px;
    font-weight: 600;
}

.module-ownership table tr:first-child th {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

@media Screen and (max-width: 480px) {
    .module-ownership .heading {
        display: none;
    }
}

/*-----------End Ownership Profile-------------*/


/*-----------------Key Ratios------------------*/

.module-key-ratios .date {
    display: block;
    margin-bottom: 20px;
}

.ratios_table-container {
    margin-bottom: 13px;
}

.module-key-ratios .ratios_table-head.ratios_table-head.ratios_table-head {
    padding-right: 0;
}

.ratios_table-container .table {
    margin: 0;
}

.module-key-ratios .table thead {
    background-color: transparent;
}

.ratios_table-body tr {
    border-bottom: 1px solid #d5e1f1;
}

.table--ratios td:first-child {
    width: 40%;
}

.table--ratios td+td {
    width: 15%;
}

@media Screen and (max-width: 480px) {
    .module-key-ratios .table--responsive thead {
        display: block;
    }
    .module-key-ratios .table--responsive tbody {
        border: none;
    }
    .module-key-ratios .heading th+th {
        display: none;
    }
}

/*---------------End Key Ratios----------------*/


/*============ Interactive Analyst Page ==================*/

.fundamentals .disclaimer {
    display: block;
    width: 100%;
    clear: both;
    font-size: 13px;
    padding-top: 20px;
}

.l-container * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#statements.cashflow {
    padding: 0;
}

.helper-header {
    margin: 0;
    border-bottom: 1px solid #ccc;
    *zoom: 1;
}

.helper-header:before,
.helper-header:after {
    content: "";
    display: table;
}

.helper-header:after {
    clear: both;
}

#helper-sheets-menu {
    float: right;
    margin-top: 10px;
}

#helper-sheets-menu ul {
    margin: 0;
    padding: 0;
    position: relative;
    margin-bottom: -1px !important;
}

#helper-sheets-menu li {
    float: left;
    list-style-type: none;
}

#helper-sheets-menu a {
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
    color: #777;
    position: relative;
    font-size: 14px;
}

#helper-sheets-menu a.active:before {
    top: auto;
    bottom: 0;
    left: 50%;
    position: absolute;
    margin-right: 0;
    margin-left: -5px;
    border-bottom: 5px solid #666666;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    display: inline-block;
    width: 0;
    height: 0;
}

#helper-sheets-menu .annualOnly {
    display: none;
}

#main-container .nav ul {
    padding: 0;
    margin: 0;
}

#main-container tr td,
#main-container tr th {
    text-align: left;
}

h1#legend {
    padding: 8px 0;
    margin: 0px auto 20px auto;
    line-height: normal;
    font-size: 14px;
    color: #333;
    font-weight: normal;
    text-align: center;
}

h1#legend:before {
    display: none;
}

h1#legend span {
    font-weight: normal;
    font-size: 14px;
    margin-left: 6px;
    text-transform: none;
}

h1#legend span.iac a {
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 10;
    display: block;
}

#main-container {
    margin: 0 auto;
    text-align: left;
}

.helper-main-nav {
    margin: 0 0 20px;
}

.helper-main-nav ul {
    display: table;
    width: 100%;
    min-height: 65px;
}

.helper-main-nav li {
    display: table-cell;
    /*border-right: 1px solid #ddd;*/
    background-color: #739dd2;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    padding: 20px 0;
    color: #fff;
}

#helper-sheets-menu li:last-child a {
    display: none;
}

.helper-main-nav li.active {
    width: 50%;
    /*font-size: 21px;*/
    background: #c7d8ed;
    color: #203772;
    font-weight: bold;
}

.helper-main-nav li:last-child {
    border-right: none;
}

.helper-secondary-nav {
    display: none;
    margin: 20px 0;
}

.helper-secondary-nav ul {
    *zoom: 1;
}

.helper-secondary-nav ul:before,
.helper-secondary-nav ul:after {
    content: "";
    display: table;
}

.helper-secondary-nav ul:after {
    clear: both;
}

.helper-secondary-nav li {
    display: inline-block;
    padding: 2px 10px;
    margin-right: 5px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

.helper-secondary-nav li.active {
    background-color: #476a92;
    color: #fff;
}

.helper-secondary-nav li:last-child {
    border-right: none;
}

.highcharts-series.highcharts-tracker rect {
    fill: #729dd2;
    stroke: #729dd2;
}

@media only screen and (max-width: 639px) {
    h1#legend span.iac {
        width: 276px;
    }
    h1#legend span.iac a {
        font-size: 16px;
        min-width: 100%;
    }
    #main-container {}
    .helper-secondary-nav {
        display: none;
    }
    .helper-main-nav li {
        font-size: 90%;
    }
    .helper-main-nav li.active {
        width: 40%;
    }
    #helper-sheets-menu a {
        padding: 10px 7px;
    }
}

#interactive-table {
    min-height: 100px;
}

#table-progress {
    position: relative;
    text-align: center;
    display: none;
}

.spinner {
    height: 40px;
    width: 40px;
    margin: 100px auto;
    position: relative;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left: 4px solid rgba(125, 125, 125, 0.15);
    border-right: 4px solid rgba(125, 125, 125, 0.15);
    border-bottom: 4px solid rgba(125, 174, 125, 0.15);
    border-top: 4px solid rgba(125, 125, 125, 0.8);
    border-radius: 100%;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

@media only screen and (min-width: 640px) {
    .phone-view {
        display: none;
    }
    #interactive-table {
        font-size: 14px;
    }
    #interactive-table table {
        width: 100%;
    }
    #interactive-table th {
        max-width: 230px;
        font-weight: normal;
    }
    #interactive-table td,
    #interactive-table th {
        padding: 5px 8px;
        line-height: 18px;
    }
    #interactive-table th.space-above,
    #interactive-table td.space-above {
        padding-top: 15px;
    }
    #interactive-table th.space-below,
    #interactive-table td.space-below {
        padding-bottom: 15px;
    }
    #interactive-table td.indent-1,
    #interactive-table th.indent-1 {
        padding-left: 20px;
    }
    #interactive-table td.indent-2,
    #interactive-table th.indent-2 {
        padding-left: 30px;
    }
    #interactive-table .total td:nth-child(even),
    #interactive-table td:nth-child(even),
    #interactive-table .total th:nth-child(even),
    #interactive-table th:nth-child(even) {
        background-color: #f9f9f9;
    }
    #interactive-table thead th {
        text-align: center;
        font-weight: 700;
        font-size: 110%;
    }
    #interactive-table thead th:nth-child(n+2) {
        border-bottom: 1px solid #ddd;
    }
    #interactive-table tbody td {
        text-align: right;
    }
    #interactive-table tr.total td,
    #interactive-table tr.total th {
        border-top: 2px solid #ddd;
        background-color: rgba(0, 0, 0, 0.01);
        padding-bottom: 10px;
        padding-top: 10px;
        font-weight: 700;
    }
    #interactive-table tr.row-bold td,
    #interactive-table tr.row-bold th {
        font-weight: 700;
        font-size: 110%;
    }
}

@media only screen and (max-width: 639px) {
    .desktop-view {
        display: none;
    }
    #interactive-table .parent-container {
        border: 1px solid #ccc;
        margin-bottom: 10px;
        background-color: #f4f4f4;
    }
    #interactive-table .parent-container .parent-title {
        background-color: #fff;
        padding: 10px 30px 10px 10px;
        font-size: 18px;
        position: relative;
    }
    #interactive-table .parent-container .child-toggle {
        display: none;
    }
    #interactive-table .parent-container .toggle-title {
        position: absolute;
        display: block;
        right: 5px;
        padding: 0 10px;
        color: #999;
        font-size: 21px;
        line-height: 24px;
        top: 50%;
        margin-top: -12px;
        cursor: default;
    }
    #interactive-table .child-container .child-title {
        padding: 5px 10px;
        background-color: #666;
        color: #fff;
    }
    #interactive-table .child-container .reports-container>div:last-of-type {
        border-bottom: none;
    }
    #interactive-table .child-container .reports-container>div:nth-child(even) {
        background-color: rgba(255, 255, 255, 0.6);
    }
    #interactive-table .child-container .report-row {
        display: table;
        width: 100%;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    #interactive-table .child-container .report-col {
        display: table-cell;
    }
    #interactive-table .child-container .col-1 {
        width: 30%;
        color: #777;
    }
    #interactive-table .child-container .col-2 {
        width: 70%;
        text-align: right;
    }
}

@font-face {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/fontello.eot?14307221#iefix") format("embedded-opentype"), url("../fonts/fontello.woff?14307221") format("woff"), url("../fonts/fontello.ttf?14307221") format("truetype"), url("../fonts/fontello.svg?14307221#fontello") format("svg");
}

@font-face {
    font-family: 'fontello';
    src: url("../fonts/fontello.eot?14307221");
    src: url("../fonts/fontello.eot?14307221#iefix") format("embedded-opentype"), url("../fonts/fontello.woff?14307221") format("woff"), url("../fonts/fontello.ttf?14307221") format("truetype"), url("../fonts/fontello.svg?14307221#fontello") format("svg");
    font-weight: normal;
    font-style: normal;
}

[class^="fontello-"]:before,
[class*=" fontello-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
}

.fontello-pin:before {
    content: '\e800';
}

.fontello-full:before {
    content: '\e801';
}

#interactive-charts .chart-box {
    position: relative;
    background-color: #f0f0f0;
    margin-bottom: 10px;
}

#interactive-charts .chart-box .chart-box-wrapper {
    border: 1px solid #dcdcdc;
}

#interactive-charts .box-header .heading {
    padding: 5px 28px 5px 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
    position: relative;
}

#interactive-charts .box-header .tabs {
    background-color: #7e7e7e;
    color: #fff;
}

#interactive-charts .box-header .tabs .tab {
    display: inline-block;
    padding: 0 20px;
    cursor: pointer;
}

#interactive-charts .box-header .tabs .tab.active {
    background-color: #fff;
    color: #666;
}

#interactive-charts .box-header .box-header-wrapper {
    background-color: #f0f0f0;
    line-height: 25px;
    overflow: hidden;
}

#interactive-charts .chart-wrapper .chart {
    background-color: #fbfbfb;
    height: 180px;
}

#interactive-charts .highcharts-data-labels {
    visibility: hidden;
}

#interactive-charts .highcharts-data-labels[visibility="hidden"] {
    visibility: hidden !important;
}

#type-selector ul {
    display: table;
    width: 100%;
    padding: 0;
    margin: 0px;
    border-bottom: 1px solid #ddd;
}

#type-selector ul li {
    display: table-cell;
    width: 30%;
    background-color: #739dd2;
    cursor: pointer;
    padding: 10px 0;
    text-align: center;
    vertical-align: middle;
    color: #fff;
}

#type-selector ul li.active {
    background: #c7d8ed;
    color: #203772;
    font-weight: bold;
}

#type-selector ul li:first-child {
    border-right: 1px solid #ddd;
}

#type-selector ul li.active {
    width: 70%;
}

#fancyChart {
    position: relative;
}

#fancyChart h1 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 60px;
    margin: 0;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: #777;
    z-index: 999;
}

@media only screen and (min-width: 1025px) {
    #interactive-charts .chart-box {
        height: 162px;
    }
    #interactive-charts .chart-box .chart-box-wrapper {
        position: absolute;
        border: none;
    }
    #interactive-charts .box-header {
        height: 25px;
    }
    #interactive-charts .box-header .heading {
        padding-top: 0;
        padding-bottom: 0;
    }
    #interactive-charts .box-header .box-header-wrapper {
        position: absolute;
        border-top: 1px solid #dcdcdc;
        border-right: 1px solid #dcdcdc;
        border-left: 1px solid #dcdcdc;
        width: 180px;
        top: 0;
        right: 0;
        height: 25px;
    }
    #interactive-charts .lock {
        color: #999;
        padding-left: 3px;
        padding-right: 3px;
        cursor: pointer;
        position: absolute;
        right: 0;
        /*line-height: 18px;*/
        top: 0;
        /*margin-top: -20px;*/
    }
    #interactive-charts .locked {
        color: #666;
    }
    #interactive-charts .chart-wrapper {
        position: relative;
        width: 180px;
        height: 140px;
    }
    #interactive-charts .chart-wrapper .chart {
        position: absolute;
        border-right: 1px solid #dcdcdc;
        border-bottom: 1px solid #dcdcdc;
        border-left: 1px solid #dcdcdc;
        width: 180px;
        height: 140px;
        top: 0;
        right: 0;
    }
    #interactive-charts .chart-wrapper .chart.chart-1 {
        z-index: 4;
    }
    #interactive-charts .chart-wrapper .chart.chart-2 {
        z-index: 3;
    }
    #interactive-charts .chart-wrapper .chart.chart-3 {
        z-index: 2;
    }
    #interactive-charts .chart-wrapper .chart.chart-4 {
        z-index: 1;
    }
    #interactive-charts .fullscreen {
        display: none;
    }
}

@media only screen and (max-width: 639px) {
    #interactive-charts {
        margin-top: 30px;
    }
    .fullscreen {
        display: none;
    }
}

@media only screen and (max-width: 1024px) {
    #interactive-charts .lock {
        display: none;
    }
    #interactive-charts .fullscreen {
        color: #999;
        padding-left: 3px;
        padding-right: 3px;
        cursor: pointer;
        position: absolute;
        right: 0;
        line-height: 18px;
        top: 50%;
        margin-top: -9px;
    }
    #fancyChart h1 {
        line-height: 30px;
    }
    .fancyChartData {
        padding-top: 40px;
    }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
    #interactive-charts {
        margin: 20px 0;
        padding: 5px 0;
        background-color: #eaeaea;
        border: 1px solid #eaeaea;
        *zoom: 1;
    }
    #interactive-charts:before,
    #interactive-charts:after {
        content: "";
        display: table;
    }
    #interactive-charts:after {
        clear: both;
    }
    #interactive-charts .chart-box {
        width: 25%;
        margin: 0;
        float: left;
        padding: 0 5px;
        background: none;
    }
    #interactive-charts .chart-wrapper .chart {
        height: 140px;
    }
}

@media only screen and (min-width: 640px) and (max-width: 767px) {
    #interactive-charts .chart-box {
        width: 50%;
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 480px) {
    #main-container {
        padding: 2px;
    }
}

@media only screen and (min-width: 1025px) {
    #statements {
        padding-right: 200px;
        font-size: 15px;
        margin: 20px 0;
        *zoom: 1;
    }
    #statements:before,
    #statements:after {
        content: "";
        display: table;
    }
    #statements:after {
        clear: both;
    }
    #interactive-table {
        position: relative;
        float: left;
        width: 100%;
    }
    #interactive-charts {
        float: right;
        width: 180px;
        margin-right: -200px;
        font-size: 14px;
    }
}

.phone-view ul {
    cursor: pointer;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.phone-view ul li {
    padding: 5px;
    border: 1px solid #d0dded;
    border-top: 0;
}

.phone-view ul li.toggle {
    margin-bottom: 10px;
}

.phone-view ul>ul {
    display: none;
    margin-bottom: 10px;
}

.phone-view ul li:nth-child(2n) {
    background-color: #f6f6f6;
}

.phone-view ul li:first-child {
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 18px;
    padding: 10px 30px 10px 10px;
    position: relative;
}

.phone-view h2 {
    padding: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.phone-view ul li.title {
    background-color: #6e93cb;
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
}

.phone-view .quarter {
    display: inline-block;
    color: #777;
    width: 30%;
}

.phone-view .data {
    display: inline-block;
    text-align: right;
    width: 70%;
}

.phone-view .toggle-title {
    color: #999;
    cursor: default;
    display: block;
    font-size: 21px;
    line-height: 24px;
    margin-top: -12px;
    padding: 0 10px;
    position: absolute;
    right: 5px;
    top: 50%;
}

.phone-view .toggle-title.closed:before {
    content: "\edba";
    font-family: "q4-icons";
}

.phone-view .toggle-title.opened:before {
    content: "\edc2";
    font-family: "q4-icons";
}

/**Interactive Analyst**/

.l-container {
    *zoom: 1;
    max-width: 64em;
    _width: 64em;
    padding-left: 0.625em;
    padding-right: 0.625em;
    margin-left: auto;
    margin-right: auto;
}

.l-container:after {
    content: "";
    display: table;
    clear: both;
}

.l-container .l-col.bleed-until-small {
    margin-left: -0.625em;
    margin-right: -0.625em;
}

@media (min-width: 37.5em) {
    .l-container .l-col.bleed-until-small {
        margin-left: 0;
        margin-right: 0;
    }
}

.l-container .l-col.bleed-until-medium {
    margin-left: -0.625em;
    margin-right: -0.625em;
}

@media (min-width: 48em) {
    .l-container .l-col.bleed-until-medium {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 37.5em) {
    .l-container {
        max-width: 64em;
    }
    .l-container .l-col {
        width: 100%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-small {
        width: 31.91489%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-large {
        width: 65.95745%;
        float: left;
    }
    .l-container .l-col.l-third {
        width: 31.91489%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-two-thirds {
        width: 65.95745%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-even {
        width: 48.93617%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-right {
        float: right;
        margin-right: 0;
    }
}

@media (min-width: 48em) {
    .l-container {
        max-width: 64em;
    }
    .l-container .l-col.l-medium {
        width: 48.93617%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-quarter {
        width: 23.40426%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-right {
        float: right;
        margin-right: 0;
    }
}

@media (min-width: 60em) {
    .l-container {
        max-width: 65.25em;
        padding-left: 0;
        padding-right: 0;
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }
    .l-container:after {
        content: "";
        display: table;
        clear: both;
    }
    .l-container .l-col {
        width: 100%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-small {
        width: 23.40426%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-large {
        width: 74.46809%;
        float: left;
        margin-right: 2.12766%;
    }
    .l-container .l-col.l-nest-large-even {
        width: 48.71795%;
        float: left;
        margin-right: 2.5641%;
    }
    .l-container .l-col.l-nest-large-quarter {
        width: 31.42857%;
        float: left;
        margin-right: 2.85714%;
    }
    .l-container .l-col.l-nest-medium-quarter {
        width: 47.82609%;
        float: left;
        margin-right: 4.34783%;
    }
    .l-container .l-col.l-nest-third {
        width: 48.3871%;
        float: left;
        margin-right: 3.22581%;
    }
    .l-container .l-col.l-right {
        float: right;
        margin-right: 0;
    }
}

span.module_required-custom {
    color: #b72121;
}

/*======== End Interactive Analyst Page ==================*/


/**************************************************************
*****************End Custom Module By Pages********************
**************************************************************/
