/*-----------------------------------------*\
------------------ Default ------------------
\*-----------------------------------------*/


/*--------------- 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
/* div, p, a, ol, ul, li, span */

{
    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;
}


/* Negative Margin Fix for Toast Columns */

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;
}


/* Preview Override */

body.PreviewBody {
    margin: 0;
    background-position: 0 0;
}

.PreviewToolBar {
    display: none;
}

.hidden {
    display: none !important;
}


/*-----------------------------------------*\
--------------- Accessibility ---------------
\*-----------------------------------------*/


/*------------ Default Styles -------------*/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/*--- Accessibility Skip Navigation Link --*/

.accSkipLink a {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 200px;
    padding: 15px 15px;
    margin-left: -100px;
    background: transparent;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    color: white;
    text-align: center;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    z-index: 100;
}

.accSkipLink a:focus,
.accSkipLink a:active,
.accSkipLink a:hover {
    top: 0;
    background: #0A457B;
    outline: 0;
}

.accSkipLink a:visited {
    color: #fff;
}

#maincontent:focus {
    outline: 0px;
}


/*-----------------------------------------*\
------------------- Tools -------------------
\*-----------------------------------------*/


/*--------------- Toast CSS ---------------*/


/* The Important Bits */


/* Negative Margin Fix */

.grid,
.grid-no-gutter {
    font-size: 0;
}

.grid {
    list-style: none;
    margin-left: -20px;
}

.grid-no-gutter {
    margin-left: 0;
    width: 100%;
}

.col {
    box-sizing: border-box;
    display: inline-block;
    /* Negative Margin Fix */
    /* margin-right: -.25em; */
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
}

.grid-no-gutter .col {
    padding-left: 0;
}

.grid-no-gutter .grid .col {
    padding-left: 20px;
}


/* The Column Widths */

.col-1-of-1,
.col-2-of-2,
.col-3-of-3,
.col-4-of-4,
.col-5-of-5,
.col-6-of-6,
.col-8-of-8,
.col-12-of-12 {
    width: 100%;
}

.col-1-of-2,
.col-2-of-4,
.col-3-of-6,
.col-4-of-8,
.col-6-of-12 {
    width: 50%;
}

.col-1-of-3,
.col-2-of-6,
.col-4-of-12 {
    width: 33.33333%;
}

.col-2-of-3,
.col-4-of-6,
.col-8-of-12 {
    width: 66.66667%;
}

.col-1-of-4,
.col-2-of-8,
.col-3-of-12 {
    width: 25%;
}

.col-3-of-4,
.col-6-of-8,
.col-9-of-12 {
    width: 75%;
}

.col-push-2-of-2,
.col-push-3-of-3,
.col-push-4-of-4,
.col-push-5-of-5,
.col-push-6-of-6,
.col-push-8-of-8,
.col-push-12-of-12 {
    margin-left: 100%;
}

.col-push-1-of-2,
.col-push-2-of-4,
.col-push-3-of-6,
.col-push-4-of-8,
.col-push-6-of-12 {
    margin-left: 50%;
}

.col-push-1-of-3,
.col-push-2-of-6,
.col-push-4-of-12 {
    margin-left: 33.33333%;
}

.col-push-2-of-3,
.col-push-4-of-6,
.col-push-8-of-12 {
    margin-left: 66.66667%;
}

.col-push-1-of-4,
.col-push-2-of-8,
.col-push-3-of-12 {
    margin-left: 25%;
}

.col-push-3-of-4,
.col-push-6-of-8,
.col-push-9-of-12 {
    margin-left: 75%;
}

.col-pull-2-of-2,
.col-pull-3-of-3,
.col-pull-4-of-4,
.col-pull-5-of-5,
.col-pull-6-of-6,
.col-pull-8-of-8,
.col-pull-12-of-12 {
    margin-left: -100%;
}

.col-pull-1-of-2,
.col-pull-2-of-4,
.col-pull-3-of-6,
.col-pull-4-of-8,
.col-pull-6-of-12 {
    margin-left: -50%;
}

.col-pull-1-of-3,
.col-pull-2-of-6,
.col-pull-4-of-12 {
    margin-left: -33.33333%;
}

.col-pull-2-of-3,
.col-pull-4-of-6,
.col-pull-8-of-12 {
    margin-left: -66.66667%;
}

.col-pull-1-of-4,
.col-pull-2-of-8,
.col-pull-3-of-12 {
    margin-left: -25%;
}

.col-pull-3-of-4,
.col-pull-6-of-8,
.col-pull-9-of-12 {
    margin-left: -75%;
}

.col-1-of-5 {
    width: 20%;
}

.col-push-1-of-5 {
    margin-left: 20%;
}

.col-pull-1-of-5 {
    margin-left: -20%;
}

.col-2-of-5 {
    width: 40%;
}

.col-push-2-of-5 {
    margin-left: 40%;
}

.col-pull-2-of-5 {
    margin-left: -40%;
}

.col-3-of-5 {
    width: 60%;
}

.col-push-3-of-5 {
    margin-left: 60%;
}

.col-pull-3-of-5 {
    margin-left: -60%;
}

.col-4-of-5 {
    width: 80%;
}

.col-push-4-of-5 {
    margin-left: 80%;
}

.col-pull-4-of-5 {
    margin-left: -80%;
}

.col-1-of-6 {
    width: 16.66667%;
}

.col-push-1-of-6 {
    margin-left: 16.66667%;
}

.col-pull-1-of-6 {
    margin-left: -16.66667%;
}

.col-5-of-6 {
    width: 83.33333%;
}

.col-push-5-of-6 {
    margin-left: 83.33333%;
}

.col-pull-5-of-6 {
    margin-left: -83.33333%;
}

.col-1-of-8 {
    width: 12.5%;
}

.col-push-1-of-8 {
    margin-left: 12.5%;
}

.col-pull-1-of-8 {
    margin-left: -12.5%;
}

.col-3-of-8 {
    width: 37.5%;
}

.col-push-3-of-8 {
    margin-left: 37.5%;
}

.col-pull-3-of-8 {
    margin-left: -37.5%;
}

.col-5-of-8 {
    width: 62.5%;
}

.col-push-5-of-8 {
    margin-left: 62.5%;
}

.col-pull-5-of-8 {
    margin-left: -62.5%;
}

.col-7-of-8 {
    width: 87.5%;
}

.col-push-7-of-8 {
    margin-left: 87.5%;
}

.col-pull-7-of-8 {
    margin-left: -87.5%;
}

.col-1-of-12 {
    width: 8.33333%;
}

.col-push-1-of-12 {
    margin-left: 8.33333%;
}

.col-pull-1-of-12 {
    margin-left: -8.33333%;
}

.col-2-of-12 {
    width: 16.66667%;
}

.col-push-2-of-12 {
    margin-left: 16.66667%;
}

.col-pull-2-of-12 {
    margin-left: -16.66667%;
}

.col-5-of-12 {
    width: 41.66667%;
}

.col-push-5-of-12 {
    margin-left: 41.66667%;
}

.col-pull-5-of-12 {
    margin-left: -41.66667%;
}

.col-7-of-12 {
    width: 58.33333%;
}

.col-push-7-of-12 {
    margin-left: 58.33333%;
}

.col-pull-7-of-12 {
    margin-left: -58.33333%;
}

.col-10-of-12 {
    width: 83.33333%;
}

.col-push-10-of-12 {
    margin-left: 83.33333%;
}

.col-pull-10-of-12 {
    margin-left: -83.33333%;
}

.col-11-of-12 {
    width: 91.66667%;
}

.col-push-11-of-12 {
    margin-left: 91.66667%;
}

.col-pull-11-of-12 {
    margin-left: -91.66667%;
}

@media (max-width: 480px) {
    .col {
        display: block;
        margin-left: 0;
        margin-right: 0;
        width: auto;
    }
}

@media (max-width: 1200px) and (min-width: 1024px) {
    .col.col-lg-1-of-1 {
        width: 100%;
    }
    .col.col-lg-1-of-2,
    .col.col-lg-2-of-4 {
        width: 50%;
    }
    .col.col-lg-1-of-3 {
        width: 33.33333%;
    }
    .col.col-lg-2-of-3 {
        width: 66.66667%;
    }
    .col.col-lg-1-of-4 {
        width: 25%;
    }
    .col.col-lg-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .col.col-lc-1-of-1 {
        width: 100%;
    }
    .col.col-lc-1-of-2,
    .col.col-lc-2-of-4 {
        width: 50%;
    }
    .col.col-lc-1-of-3 {
        width: 33.33333%;
    }
    .col.col-lc-2-of-3 {
        width: 66.66667%;
    }
    .col.col-lc-1-of-4 {
        width: 25%;
    }
    .col.col-lc-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 768px) and (min-width: 480px) {
    .col.col-md-1-of-1 {
        width: 100%;
    }
    .col.col-md-1-of-2,
    .col.col-md-2-of-4 {
        width: 50%;
    }
    .col.col-md-1-of-3 {
        width: 33.33333%;
    }
    .col.col-md-2-of-3 {
        width: 66.66667%;
    }
    .col.col-md-1-of-4 {
        width: 25%;
    }
    .col.col-md-3-of-4 {
        width: 75%;
    }
}

@media (max-width: 480px) {
    [class*="col-sm-"] {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
    .col.col-sm-1-of-1 {
        width: 100%;
    }
    .col.col-sm-1-of-2,
    .col.col-sm-2-of-4 {
        width: 50%;
    }
    .col.col-sm-1-of-3 {
        width: 33.33333%;
    }
    .col.col-sm-2-of-3 {
        width: 66.66667%;
    }
    .col.col-sm-1-of-4 {
        width: 25%;
    }
    .col.col-sm-3-of-4 {
        width: 75%;
    }
}

.col-centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.col-d-first {
    float: left;
}

.col-d-last {
    float: right;
}

.grid-no-gutter .col-span-all {
    margin-left: 0;
    width: 100%;
}

.col-ab {
    vertical-align: bottom;
}

.col-am {
    vertical-align: middle;
}


/*------------- Slick Slider --------------*/

.slick-slider {
    position: relative;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    -webkit-touch-callout: none;
    -khtml-user-select: text;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    margin-top: -10px\9;
    /*lte IE 8*/
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'q4icons';
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    content: "\e64c";
}

[dir="rtl"] .slick-prev:before {
    content: "\e64c";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: "\e64f";
}

[dir="rtl"] .slick-next:before {
    content: "\e64f";
}

.slick-dots {
    position: absolute;
    bottom: -45px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 11px;
    width: 20px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50px;
    border: 3px solid #dadada;
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: black;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: black;
    opacity: 1;
    background: #dadada;
}


/*--------------- FancyBox  ---------------*/

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top;
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020;
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.fancybox-opened {
    z-index: 8030;
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer,
.fancybox-inner {
    position: relative;
}

.fancybox-inner {
    overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch;
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
    background-image: url('../design/fancybox_sprite.png');
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 8060;
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url('../design/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040;
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url('../design/blank.gif');
    /* helps IE */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    z-index: 8040;
}

.fancybox-prev {
    left: 0;
}

.fancybox-next {
    right: 0;
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden;
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px;
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px;
}

.fancybox-nav:hover span {
    visibility: visible;
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important;
}


/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url('../design/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll;
}


/* Title helper */

.fancybox-title {
    visibility: hidden;
    font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050;
}

.fancybox-opened .fancybox-title {
    visibility: visible;
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center;
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent;
    /* Fallback for web browsers that doesn't support RGBa */
    background: rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #FFF;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff;
}

.fancybox-title-inside-wrap {
    padding-top: 10px;
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, .8);
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
    #fancybox-loading,
    .fancybox-close,
    .fancybox-prev span,
    .fancybox-next span {
        background-image: url('../design/fancybox_sprite@2x.png');
        background-size: 44px 152px;
        /*The size of the normal image, half the size of the hi-res image*/
    }
    #fancybox-loading div {
        background-image: url('../design/fancybox_loading@2x.gif');
        background-size: 24px 24px;
        /*The size of the normal image, half the size of the hi-res image*/
    }
}


/*--------------- SelectBox  --------------*/

.sbHolder {
    position: relative;
    display: inline-block;
    max-width: 110px;
    width: 100%;
    height: 40px;
    border: 1px solid #d8d8d8;
    vertical-align: middle;
    font-size: 16px;
    background: #fbfbfb;
}


/*.sbHolder a:not(.sbToggle):hover {
    color: #002454;
}*/

.sbHolder:focus .sbSelector {}

.sbHolder a:focus {
    text-decoration: none !important;
}

.sbSelector {
    width: 77%;
    color: #6b6b6b;
    outline: none;
    overflow: hidden;
    display: block;
    padding: 12px 0 12px 30px;
}

.sbSelector:link,
.sbSelector:visited,
.sbSelector:hover {
    outline: none;
    text-decoration: none;
}

.sbToggle {
    display: block;
    height: 40px;
    width: 22%;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
}

.sbToggle:after {
    font-family: "q4icons";
    content: "\e916";
    font-size: 15px;
    color: #7a7a7a;
    top: 50%;
    font-size: 15px;
    margin-top: -8px;
    left: 0;
    position: absolute;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sbToggleOpen:after {
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sbHolderDisabled {
    background-color: #3C3C3C;
    border: solid 1px #515151;
}

.sbHolderDisabled .sbHolder {}

.sbHolderDisabled .sbToggle {}

.sbOptions {
    border: 1px solid rgba(0, 0, 0, 0.1);
    list-style: none;
    left: -1px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100% !important;
    right: -1px;
    z-index: 1;
    overflow-y: auto;
    background: #fff;
}

.sbOptions a {
    outline: none;
    color: #444;
    padding: 12px 12px 12px 30px;
    display: block;
}

.sbOptions a:hover {
    background: #fbfbfb;
}

.sbOptions li:last-child a {
    border-bottom: none;
}

.sbOptions a:link,
.sbOptions a:visited {
    text-decoration: none;
}

.sbOptions li.last a {
    border-bottom: none;
}

.sbOptions .sbDisabled {
    border-bottom: dotted 1px #515151;
    color: #999;
    display: block;
    padding: 7px 0 7px 3px;
}


/*.sbOptions .sbGroup {
    border-bottom: dotted 1px #515151;
    color: #EBB52D;
    display: block;
    font-weight: bold;
    padding: 7px 0 7px 3px;
}*/

.sbOptions .sbSub {
    padding-left: 17px;
}


/*-----------------------------------------*\
----------- Default Module Styling ----------
---------------------------------------------
------------ Alphabetical Order -------------
\*-----------------------------------------*/


/*----------- Breadcrumb Module -----------*/

.Breadcrumb {
    display: inline-block;
}


/*------- Financial Report (Annual) -------*/

.q4-annual-module .q4-acrobat-text,
.q4-annual-module .q4-year-container,
.q4-annual-module .q4-financial-document .FileType {
    display: none;
}

.q4-annual-module .q4-years-container a,
.q4-annual-module .q4-financial-document {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.q4-annual-module .q4-financial-container {
    padding-bottom: 10px;
    text-align: center;
}

.q4-annual-module .q4-cover-image,
.q4-annual-module .q4-thumbnail-image,
.q4-annual-module .q4-icon-image {
    display: inline-block;
    margin-bottom: 5px;
}

.q4-annual-module .q4-financial-document i[class*="q4i-"]:before {
    margin-right: 10px;
}


/*---------------- Job List ---------------*/

.JobPostingContainer table {
    width: 100%;
}

.JobPostingContainer table td,
.JobPostingContainer table th {
    padding: 10px 5px;
}

.JobPostingContainer .JobPostingGridHeader {
    background-color: rgba(0, 0, 0, 0.1);
}

.JobPostingContainer table .JobPostingGridItem:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.Module_JobPostingDetailsAdvanced table {
    width: 100%;
    max-width: 500px;
    margin-bottom: 1rem;
}

.Module_JobPostingDetailsAdvanced table td:first-child span:after {
    content: ":";
}

.Module_JobPostingDetailsAdvanced table input {
    border: none;
}

.Module_JobPostingDetailsAdvanced .Label_Summary,
.Module_JobPostingDetailsAdvanced .Text_Body {
    display: inline-block;
}

.Module_JobPostingDetailsAdvanced .Label_Summary {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.Module_JobPostingDetailsAdvanced .LinkButton_Apply,
.JobApplicationAdvancedContainer a {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
}

.JobApplicationAdvancedContainer table,
.JobApplicationAdvancedContainer textarea {
    width: 100%;
}

.JobApplicationAdvancedContainer table td {
    padding: 5px 0;
}

.JobApplicationAdvancedContainer table td[colspan="4"] > span {
    display: block;
    padding: 10px 0;
}

.JobApplicationAdvancedContainer input[type="file"] {
    line-height: 1rem;
}


/*---------  Presentation Module ----------*/

.ModulePresentation .ModuleHeader {
    display: none;
}

.ModulePresentation .ModuleHeadline,
.ModulePresentation .ModuleHeadlineLink {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ModulePresentation .ModuleYearNavContainer,
.ModulePresentation .ModuleDateContainer {
    margin-bottom: 10px;
}

.ModulePresentation .ModuleItemRow {
    margin-bottom: 25px;
}

.ModulePresentation .PresentationLinks {
    display: inline-block;
}

.ModulePresentation .ModuleYearNavContainer a,
.ModulePresentation .PresentationLinks a {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
}

.ModulePresentation a[class*="q4i-"]:before,
.ModulePresentation i[class*="q4i-"]:before {
    margin-right: 10px;
}

.ModulePresentation .PresentationThumbnail {
    border: 1px solid rgba(0, 0, 0, 0.1);
}


/* Overwrite FileSize of Default Document Link */

.ModulePresentation .DocumentFileLink:after {
    content: "View this Presentation";
    font-size: 1rem;
}

.ModulePresentation .DocumentFileLink:before {
    font-size: 1rem;
}

.ModulePresentation .DocumentFileLink {
    font-size: 0;
}

@media screen and (max-width: 768px) {
    .col.ModuleThumbnailContainer {
        display: none;
    }
}


/*------------- Search Modules ------------*/

.SearchResultsContainer .SearchSummary,
.SearchResultsContainer .SearchResultItem {
    margin-bottom: 25px;
}

.SearchResultsContainer .SearchLink {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.SearchResultsContainer .SearchDescription span:after,
.SearchResultsContainer .SearchDescription span:after {
    display: inline;
    content: "...";
}

.SearchDescription p {
    display: inline-block;
}

.SearchResultsContainer .SearchResultUrl {
    display: none;
}
.SearchResultsPaging {
    text-align: left;
}
.SearchResultItem a {
    word-wrap: break-word;
    word-break: keep-all;
}

.SearchResultsPaging strong {
    font-weight: 300;
    text-transform: uppercase;
}
.SearchResultsPaging strong:after {
    content: ":";
    disply: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}
.SearchResultsContainer .SearchResultsPaging a {
    color: #000;
    margin: 3px;
}

.SearchResultsContainer .SearchResultsPaging a:link {
    color: rgb(0, 204, 153);
}

/*----------- SEC Filing Modules ----------*/

.RegulatoryFilingContainer .FormGroupsContainer,
.RegulatoryFilingContainer .YearNavContainer {
    margin-bottom: 20px;
}

.RegulatoryFilingContainer .FormGroupsContainer select {}

.RegulatoryFilingContainer .FormGroupsContainer input {}

.RegulatoryFilingContainer .YearNavContainer a {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
}

.RegulatoryFilingContainer .ModuleHeader > span,
.RegulatoryFilingContainer .ModuleItemRow > span,
.RegulatoryFilingContainer .ModuleItemRow > a,
.RegulatoryFilingContainer .ModuleItemRow > ul,
.ModuleSECFilingDetails .ModuleContentContainer > div {
    padding: 5px;
}

.RegulatoryFilingContainer .ModuleHeader > span {
    background-color: rgba(0, 0, 0, 0.1);
}

.RegulatoryFilingContainer .ModuleItemRow:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.RegulatoryFilingContainer .Icons li,
.ModuleSECFilingDetails .Icons li {
    display: inline-block;
    font-size: 16px;
}

.ModuleSECFilingDetails .Icons li i:before {
    color: #002454;
}

.ModuleSECFilingDetails .PdfIcon i:before {
    content: "\e903";
}

.ModuleSECFilingDetails .WordIcon i:before {
    content: "\e904";
}

.ModuleSECFilingDetails .ExcelIcon i:before {
    content: "\e901";
}

.ModuleSECFilingDetails .XBRLIcon i:before {
    content: "\e905";
}

.ModuleSECFilingDetails .XBRL_HTMLIcon i:before {
    content: "\e902";
}


/*.RegulatoryFilingContainer .PdfIcon a {
    color: #e22919;
}

.RegulatoryFilingContainer .WordIcon a {
    color: #2c5898;
}

.RegulatoryFilingContainer .ExcelIcon a {
    color: #008641;
}

.RegulatoryFilingContainer .XBRLIcon a {
    color: #9b2cbd;
}*/

.RegulatoryFilingContainer .XBRLIcon[id*="HTML"] a {
    color: #1f1f1f;
}

@media screen and (max-width: 768px) {
    .RegulatoryFilingContainer .ModuleHeader {
        display: none;
    }
}


/*--------------- Site Map -----------------*/

.SiteMapContainer .SiteMapList li {
    padding: 10px 0;
}

.SiteMapContainer .SiteMapList li.SiteMap-Level2 {
    font-size: 1.2rem;
    list-style: disc;
    margin-left: 30px;
}

.SiteMapContainer .SiteMapList li.SiteMap-Level3 {
    padding: 10px;
    list-style: square;
    margin-left: 60px;
}

.SiteMapContainer .SiteMapList li.SiteMap-Level4 {
    margin-left: 90px;
    list-style: circle;
}


/*-----------------------------------------*\
----------- Default Widget Styling ----------
\*-----------------------------------------*/


/*----------- Accordion Widget ------------*/

.accordion-toggle-all a {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
}

.accordion-toggle-all a:before {
    content: "Show All";
}

.accordion-toggle-all.active a:before {
    content: "Hide All";
}


/*---------- Add to Calendar Any ----------*/

.add-to-any {
    float: right;
}


/*-------- Add to Calendar Styles ---------*/

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.q4-atc-wrapper {
    -webkit-font-smoothing: antialiased;
}

.q4-atc-wrapper .q4-atc-outer {
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    border: 3px solid #DDDDDD;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #5e5e5e;
    z-index: 10;
}

.q4-atc-wrapper .q4-atc-inner {}

.q4-atc-wrapper .q4-atc-inner-details {
    padding: 10px;
    text-align: center;
    min-width: 300px;
}

.q4-atc-wrapper .q4-atc-button {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.q4-atc-wrapper .q4-atc-title {
    font-weight: bold;
}

.q4-atc-wrapper .q4-atc-links {
    margin: 15px 0 25px;
    padding: 0;
    /*markup fix*/
    font-size: 0;
}

.AddToCalendar ul {
    display: none;
}

.fancybox-inner .AddToCalendar ul {
    display: block;
}

.q4-atc-wrapper .q4-atc-links li {
    display: inline-block;
    vertical-align: top;
    list-style: none;
}

.q4-atc-wrapper .q4-atc-links a {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(126, 130, 136, .06);
    color: #7e8288;
    text-decoration: none;
}

.q4-atc-wrapper .q4-atc-links li a:before {
    font-family: 'q4icons';
    speak: none;
    font-style: normal;
    font-size: 25px;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 60px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.q4-atc-wrapper .q4-atc-links li.apple a:before {
    content: '\e90f';
}

.q4-atc-wrapper .q4-atc-links li.google a:before {
    content: '\e911';
}

.q4-atc-wrapper .q4-atc-links li.outlook a:before {
    content: '\e910';
}

.q4-atc-wrapper .q4-atc-links li.ics a:before {
    content: "\e630";
}

.q4-atc-tooltip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.q4-atc-tooltip-text {
    display: block;
    width: 100%;
    background: rgba(126, 130, 136, .06);
    padding: 8px 5px;
    text-align: center;
}


/*---------- Fancybox Captcha -------------*/

.fancybox-inner .CaptchaContainer {
    padding: 0 30px 15px;
}

.fancybox-inner .CaptchaContainer img,
.fancybox-inner .CaptchaContainer input {
    width: 100%;
}

.fancybox-inner .CaptchaContainer table tr:first-child {
    display: none;
}

.fancybox-inner .CaptchaContainer td,
.fancybox-inner .CaptchaContainer .ErrorContainer {
    padding: 5px 0;
}

.fancybox-inner .CaptchaContainer table td span {
    display: none !important;
}

.fancybox-inner .CaptchaContainer img {
    border: 1px solid #ddd;
}

.fancybox-inner .CaptchaContainer input[type="text"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.fancybox-inner .CaptchaContainer input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 10px;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}


/*-------- Financial Table Widget ---------*/

.financial-table .financial-document-category,
.financial-table .financial-year-list,
.financial-table .financial-category-text {
    background-color: rgba(0, 0, 0, 0.1);
}


/* Slick Overwrite */

.financial-table .financial-document-category,
.financial-table .financial-year-list,
.financial-table .financial-category-text,
.financial-table .financial-document-list {
    display: inline-block;
}

.financial-table .financial-year-list,
.financial-table .financial-documents {
    text-align: center;
}

.financial-table .financial-document-category,
.financial-table .financial-year-list .slick-list,
.financial-table .financial-category-text {
    padding: 20px;
}

.financial-table .financial-documents span {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgb(15, 92, 163);
    margin: 5px 2px;
    text-align: center;
    line-height: 35px;
    color: #fff;
}

.financial-table .financial-documents span.empty {
    opacity: 0.1;
}

.financial-table .financial-documents span a {
    color: #fff;
}

.financial-table .slick-slide:focus {
    outline: none;
}

.financial-table .financial-document-list .slick-arrow {
    visibility: hidden;
}

.financial-table .financial-year-list .slick-arrow {
    width: 50px;
    height: 60%;
}

.financial-table .financial-year-list .slick-prev {
    left: 0;
    border-right: 1px solid #fff;
}

.financial-table .financial-year-list .slick-next {
    right: 0;
    border-left: 1px solid #fff;
}

.financial-table .financial-year-list .slick-list {
    margin: 0 30px;
}

.financial-table .financial-document-list .slick-list {
    margin: 0 50px;
}

@media screen and (max-width: 480px) {
    .financial-table .financial-documents span {
        display: block;
        margin: 5px auto 5px;
    }
}


/*----------- Stock Chart Inputs ----------*/

.stock-chart .highcharts-markers > g {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .stock-chart .highcharts-input-group {
        display: none;
    }
}


/*-------------- Slider Widget ---------------*/

.slider .slider-item {
    position: relative;
    width: 100%;
    min-height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.slider .spacer {
    display: block;
    padding-top: 21.875%;
    /* Image (height / width * 100) */
    width: 100%;
}

.slider .content-container {
    position: absolute;
    left: 50%;
    margin-left: -600px;
    width: 100%;
    padding: 20px 50px;
    max-width: 1200px;
}

.slider .content-container h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.slider .content-container p {
    background-color: rgba(255, 255, 255, 0.25);
    height: 50px;
    padding: 15px;
}

@media screen and (max-width: 1200px) {
    .slider .slider-item {
        height: auto;
    }
    .slider .content-container {
        left: 0;
        margin-left: 0;
        padding: 20px;
    }
}


/*-----------------------------------------*\
------------- HTML Specific Parts -----------
\*-----------------------------------------*/


/*------ Default List and List Items ------*/

.HtmlTextContainer ul {
    list-style: inside;
}

.HtmlTextContainer ul ul {
    margin-left: 1rem;
}

.HtmlTextContainer ul li {
    line-height: 1.5rem;
}


/*-----------------------------------------*\
---------------- Blank Design ---------------
\*-----------------------------------------*/


/*-------------- Global Styles ------------*/


/*------------- Miscellaneous -------------*/


/* Dark Styles */

.dark {
    color: #fff;
}


/* RSS */

.rssModule h2 {
    margin-top: 20px;
}

.rss-icons {
    margin-bottom: 50px;
}

.rss-icons i:before {
    font-size: 16px;
}

div.pre-module-text {
    margin-bottom: 0;
}

.ModuleFileText,
.ModuleFileSpacer {
    display: none;
}

.ErrorContainer {
    color: #ff0000;
}

.css {
    color: #FF00FF;
}

.upcoming-events .ModuleYearNavContainer {
    display: none;
}


/*=============================== GLOBAL STYLES ========================================*/

html,
.col {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    color: #002554;
    -webkit-text-size-adjust: none;
}

.noListStyle ol,
.noListStyle ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


/*-------------- Typography ---------------*/

h1 {
    font-size: 36px;
    margin-bottom: 0;
}

h2 {
    font-size: 21px;
    color: #213268;
    margin-bottom: 23px;
    padding-bottom: 7px;
    border-bottom: 1px solid #d8d8d8;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.5rem;
}

a,
a:visited {
    text-decoration: none;
    color: rgb(0, 204, 153);
}


a:hover {
    color: rgba(8,157,145,1);
    border-bottom-color: rgba(8,157,145,1);
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="submit"],
input[type="file"],
button,
textarea {
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px 8px;
    background: #fff;
    border: 1px solid #ebebeb;
    height: 40px;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

select {
    display: inline-block;
    padding: 5px 8px;
    background: #fff;
    border: 1px solid #ebebeb;
    height: 40px;
    -webkit-border-radius: 0;
    border-radius: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    padding-right: 50px;
}

input::placeholder {
    color: #002454;
}
.container {
    max-width: 1140px;
    padding: 0 20px;
    clear: both;
    margin: 0 auto;
}

.LayoutDefault {
    overflow: hidden;
}

.PaneContent .ModuleOuterContainer {
    padding: 30px 0;
}

input.ActionButton,
a.btn,
button,
input.SubmitButton,
input.btn-calc {
    padding: 10px 34px;
    border: 2px solid rgb(0, 204, 153);
    color: rgb(0, 204, 153);
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 600;
}

input.ActionButton:hover,
a.btn:hover,
input.SubmitButton:hover,
button:hover,
input.btn-calc:hover {
    color: rgb(0, 204, 153);
}

small {
    font-size: smaller;
}


/*------------------CLEAR FIX-------------------*/

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}


/*=========================ICHECK=============================*/


/* iCheck plugin Minimal skin, black
----------------------------------- */

.icheckbox_minimal,
.iradio_minimal {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    width: 16px;
    text-align: center;
    border: 1px solid #ebebeb;
    height: 16px;
    background: #fff;
    cursor: pointer;
    position: relative;
    margin-right: 5px;
}

.icheckbox_minimal {
    background-position: 0 0;
}

.icheckbox_minimal.checked:before {
    font-family: 'q4icons' !important;
    content: "\e600";
    font-size: 10px;
    line-height: 1;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    left: 2.5px;
    color: #002454;
}

.iradio_minimal {
    background-position: -120px 0;
}

.iradio_minimal.hover {
    background-position: -144px 0;
}

.iradio_minimal.checked {
    background-position: -168px 0;
}

.iradio_minimal.disabled {
    background-position: -192px 0;
    cursor: default;
}

.iradio_minimal.checked.disabled {
    background-position: -216px 0;
}


/* HiDPI support */


/*@media (-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi),
(min-resolution: 1.25dppx) {
    .icheckbox_minimal,
    .iradio_minimal {
        background-image: url(checkboxes@2x.png);
        -webkit-background-size: 40px 20px;
        background-size: 40px 20px;
    }
}*/


/*--------------------- Content Page Title ------------------------*/

.investorPage .PaneBreadcrumb .ModulePageTitle,
.PaneBreadcrumb .ModulePageTitle {
    width: 100%;
    padding: 0;
    margin-top: 16px;
    min-height: auto;
}

.PaneBreadcrumb .ModulePageTitle h1 {
    color: #213268;
    margin: 35px 0 5px;
    font-size: 34px;
    font-weight: 500;
}

@media screen and (max-width: 1274px) {
    .container {
        max-width: 1000px;
        padding: 0 20px;
        clear: both;
        margin: 0 auto;
    }
}

@media screen and (max-width: 940px) {
    .investorPage .PaneBreadcrumb .ModulePageTitle,
    .PaneBreadcrumb .ModulePageTitle {
        margin-top: 18px;
    }
    .PaneBreadcrumb .ModulePageTitle h1 {
        margin-bottom: 2px;
        font-size: 30px;
    }
    .PaneContent .ModuleOuterContainer {
        padding: 20px 0;
    }
}


/*============================= END  GLOBAL STYLES =====================================*/


/*=================================== HEADER ===========================================*/

/* Corp login */
.PaneHeader {
    top: -23px;
    max-width: 1140px;
    margin: 0 auto 20px;
    padding: 0 20px;
    transition: top .3s;
}
.js--scrolled .PaneHeader {
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    width: 100%;
    z-index: 100;
    padding-bottom: 20px;
    margin-bottom: 0;
}
.js--scrolled .PaneHeader:before {
    content: '';
    background-color: rgba(255,255,255,0.9);
    position: absolute;
    top: 0;
    left: -100vw;
    width: 200vw;
    height: 100%;
    top: 0;
    display: block;
}
.js--scrolled .PaneNavigation {
    margin-top: 0;
}
.corp-login {
    text-align: right;
    margin-top: 21px;
}
.js--scrolled .corp-login {
    margin-top: 10px;
}
.corp-login li {
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.corp-login .level2 {
    padding: 12px 20px;
    position: absolute;
    right: -20px;
    top: 100%;
    display: none;
    text-align: left;
    background-color: #fff;
    z-index: 1;
}
.corp-login .level1 li:hover > .level2 {
    display: block;
}
.corp-login .level2 a {
    display: inline-block;
    white-space: nowrap;
    margin-bottom: 10px;
    font-weight: 700;
    text-decoration: none;
    opacity: 0.6;
    color: #002554;
}
.corp-login .level2 li:last-child a {
    margin-bottom: 0;
}
.corp-login .level1 > li > a {
    margin-left: 30px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0.6;
    color: #002554;
}
@media screen and (max-width: 1024px) {
    .PaneHeader {
        padding: 0;
    }
    .corp-login {
        display: none;
    }
}


/*------------------- Corp Nav -------------------------*/

.logo_link {
    width: 180px;
    margin-top: 2px;
}
.nav-corp .logo_link a {
    opacity: 1;
}
.logo_link img {
    transition: opacity 110ms ease-in-out;
}
.logo_link:hover img {
    opacity: 0.6;
}
.logo_link:hover {
    border-bottom-color: rgba(8,157,145,1);
}
.js--scrolled .logo_link {
    margin-top: 2px;
}
.nav-corp {
    margin-top: 20px;
}
.js--scrolled .nav-corp {
    
margin-top: -3px;
}
.nav-corp .level1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-corp .level1 > li {
    position: relative;
}
.nav-corp .level2 {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 1;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: .9;
}
.nav-corp .level2:after {
    content: '';
    position: absolute;
    bottom: calc(100% - 5px);
    left:  50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 5px solid #Fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}
.nav-corp .level2 a {
    white-space: nowrap;
    color: #fff;
    text-transform: capitalize;
    margin-top: 10px;
    display: block;
    opacity: 1;
}
.nav-corp .level2 a:hover {
    color: #fff;
    opacity: 1;
}
.nav-corp .level1 > li:hover .level2 {
    display: none;
    background-color: #002554;
    border-radius: 5px;
    padding: 20px 40px 15px 20px;
}
.nav-corp li a {
    line-height: 1.7;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #002554;
    opacity: .7;
}
.nav-corp li a:hover {
    opacity: .6;
}
.nav-corp .level1 > li > a {
    padding: 15px 0;
}

.nav-corp li a:hover,
.nav-corp .greenColor {
    color: #002454;
}
@media screen and (max-width: 1024px) {
    .logo_link {
        width: 200px;
        margin: 0 auto;
    }
    .nav-corp li:not(.logo_link){
        display: none;    
    }
}


/*---------------- End  Corp Nav -----------------------*/


/*------------------ Banner Image ----------------------*/

.PaneNavigation {
    height: 230px;
    position: relative;
    background-image: url(../design/header-bg.jpg);
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}

.investorPage .PaneNavigation {
    height: 299px;
    /* background-image: url(../design/bannerImage2.jpg); */
    /* background-position: center top; */
}

.PaneNavigation .ModulePageTitle {
    width: 502px;
    padding: 20px;
    margin-top: 26px;
    color: #2e2e2e;
    float: right;
    background: url("../design/pageTitleBg.png");
}

.investorPage .PaneNavigation .ModulePageTitle {
    min-height: 120px;
    padding: 25px 20px 0;
}

.PaneNavigation .ModulePageTitle h1 {
    font-size: 53px;
    color: #002454;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0;
}

@media screen and (max-width: 1274px) {
    .investorPage .PaneNavigation {
        height: 300px;
        background: url("../design/bannerImage2.jpg") center top no-repeat;
        background-size: cover;
    }
    .PaneNavigation .ModulePageTitle {
        width: 291px;
        margin-top: 60px;
        min-height: 120px;
    }
    .PaneNavigation .ModulePageTitle h1 {
        font-size: 28px;
        color: #002454;
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 0;
        word-break: break-word;
        word-wrap: break-word;
    }
    .investorPage .PaneNavigation .ModulePageTitle {
        min-height: 106px;
        padding: 21px 20px 0;
    }
}


/*--------------- End Banner Image ----------------------*/


/*---------------- Main Navigation ----------------------*/

div[role="navigation"] i.menu-close {
    display: none;
}

div[role="navigation"] {
    display: inline-block;
    position: relative;
    background: #002454;
}

div[role="navigation"]:before {
    background: #002454;
    height: 100%;
    content: "";
    left: -100vw;
    position: absolute;
    z-index: -1;
    width: 200vw;
}

.PaneHeader2 {
    text-align: center;
}

.navbar-collapse {
    text-align: center;
    background: #002454;
}

.navbar-collapse .level1 > li > a {
    display: block;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    padding: 15px 11px;
    position: relative;
}

.navbar-collapse .level1 > li.selected,
.navbar-collapse .level1 > li.expanded {
    background: #3F5A7E;
}

.navbar-collapse .level1 > li:hover > a {
    background: #3F5A7E;
    color: #fff;
}

.navbar-collapse .level1 li {
    display: inline-block;
    position: relative;
}

.navbar-collapse .level2 {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    min-width: 160px;
    background: #002454;
    border-radius: 6px;
    text-align: left;
    padding: 0 20px 20px;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 11;
}

.navbar-collapse .level2:after {
    content: "";
    display: block;
    position: absolute;
    border-top: 6px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    bottom: 100%;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
}
.navbar-collapse .level2:before {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -8px;
}

.navbar-collapse .level2 > li {
    display: block;
}

.navbar-collapse .level2 > li > a {
    color: rgba(255,255,255,0.6);
    text-transform: capitalize;
    display: inline-block;
    margin-top: 22px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.navbar-collapse .level2 > li > a:hover,
.navbar-collapse .level2 > li.selected > a {
    color: #fff;
}

.navbar-collapse .level1 li.has-children:hover .level2 {
    display: block;
}

.SecondaryNav {
    display: none;
}

div.nav-corp-mobile {
    position: fixed;
    left: -320px;
    width: 320px;
    top: 0;
    bottom: 0;
    z-index: 110;
    transition: 0.5s ease;
    background: #fff;
    border-top: 4px solid #002454;
    padding: 35px 20px;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 25px;
    right: 25px;
    font-size: 35px;
    z-index: 100;
    padding: 13px;
    border-radius: 5px;
    color: #171F3B;
    background-color: #fff;
}
@media screen and (max-width: 1250px) {
    .navbar-collapse .level1 > li > a {
        font-size: 13px;
        font-weight: 400;
        padding: 15px 5px;
    }
}

@media screen and (max-width: 1024px) {
    div[role="navigation"] {
        display: block;
    }
    div[role="navigation"]:before {
        display: none;
    }
    div[role="navigation"]:after {
        display: none;
    }
    .navbar-collapse {
        display: none;
    }
    .PaneHeader2 {
        position: relative;
        background: #002454;
    }
    .PaneHeader2:after {
        display: none;
    }
    .SecondaryNav {
        display: block;
        background: #002454;
        width: 100%;
        text-align: center;
        z-index: 10;
        position: relative;
    }
    .SecondaryNav.open:after {
        bottom: -7px;
    }
    .SecondaryNav.open {
        padding-bottom: 15px;
    }
    .SecondaryNav .level1 li {
        display: none;
    }
    .SecondaryNav .level1 > li > a {
        font-size: 20px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 500;
        padding: 13px 0;
        display: inline-block;
    }
    .SecondaryNav.open .level1 li {
        display: block;
    }
    .SecondaryNav .level1 > li:first-child {
        display: block;
        position: relative;
    }
    .SecondaryNav .level1 >li.selected,
    .SecondaryNav .level1 > li.expanded {
        background: #009FDA;
    }
    .SecondaryNav .level1 > li:first-child:after {
        content: "\e916";
        font-size: 30px;
        position: absolute;
        right: 20px;
        color: #fff;
        top: 7px;
        z-index: 10;
        font-family: "q4icons";
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .SecondaryNav .level1 > li.has-children.open {
        background: #009FDA;
    }
    .SecondaryNav.open .level1 > li:first-child:after {
        -ms-transform: rotate(270deg);
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    .SecondaryNav .level1 > li.has-children.open > a {
        color: #20306a;
    }
    .SecondaryNav .level2 >li.selected a,
    .SecondaryNav .level2 > li.expanded a {
        color: #002454;
    }
    .SecondaryNav .level2 {
        display: none;
        background: #e6e7e8;
        padding: 20px 0 15px;
        text-align: left;
        padding-left: 20px;
        position: relative;
    }
    .SecondaryNav .level2:before {
        content: "";
        display: block;
        width: 10px;
        position: absolute;
        border-bottom: 6px solid #e6e7e8;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        bottom: 100%;
        left: 50%;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .SecondaryNav .level2 > li > a {
        color: #444;
        font-size: 15px;
        text-transform: uppercase;
        padding: 10px 0;
        display: inline-block;
    }
    .SecondaryNav .level2 > li > a:hover {
        color: #002454;
    }
    ul.nav-corp-mobile {
        padding: 7px 0;
    }
    div.nav-corp-mobile a {
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        line-height: 2;
        padding: 6px 23px;
        text-transform: uppercase;
        color: #444;
    }
    div.nav-corp-mobile a:hover {
        color: #002454;
    }
    div.nav-corp-mobile .greenColor {
        color: #002454;
    }
    .LayoutDefaultInner.mobile-toggled div.nav-corp-mobile {
        left: 0;
        box-shadow: 5px 0 20px rgba(0,0,0,0.2);
    }
    .mobile-toggle {
        display: block;
    }
    .ClientLogo {
        margin-left: 20px;
    }
    .ClientLogo img {
        max-width: 180px
    }
    .nav-corp-mobile .level1:first-child > li {
        margin-right: 25px;
        display: inline-block;
    }
    .nav-corp-mobile .level2 {
        display: none;
    }
    .nav-corp-mobile .level1:first-child a {
        font-size: 11px;
        padding: 0;
    }
    .nav-corp-mobile_wrap .level1:last-child {
        margin-top: 35px;
    }
    .nav-corp-mobile_wrap .level1:last-child a {
        padding: 0;
        display: block;
        margin-right: 40px;
    }
    .nav-corp-mobile_wrap .logo_link {
        display: none;
    }
    .nav-corp-mobile_wrap .level1:last-child li {
        position: relative;
    }
    .nav-corp-mobile_wrap .js--dropdown {
        position: absolute;
        top: 12px;
        right: 0;
        border-top: 6px solid #002454;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        cursor: pointer;
    }
    .nav-corp-mobile_wrap .js--dropdown:after {
        content: '';
        width: 30px;
        height: 25px;
        position: absolute;
        top: -4px;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%, -50%);
    }
    .js--dropdown + .level2 {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: .3s linear;
    }
    .js--dropdown.js--active + .level2 {
        max-height: 250px;
        padding: 5px 0 10px;
    }
    .nav-corp-mobile .level2 a {
        text-transform: capitalize;
        margin-left: 20px;
    }
}


/*-------------- End Main Navigation --------------------*/


/*----------------- Search --------------------*/

.PaneHeader2 {
    position: relative;
}

.searchToggle {
    display: inline-block;
    color: #fff;
    position: relative;
    z-index: 10;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

.ModuleSearch {
    display: none;
    position: absolute;
    top: 36px;
    right: 0;
    border: 1px solid #444;
}

.ModuleSearch input[type="text"] {
    border-radius: 0;
    border: none;
    padding-right: 30px;
    min-width: 225px;
}

.ModuleSearch input[type="submit"] {
    font-family: "q4icons";
    position: absolute;
    right: 0;
    top: 1px;
    height: 38px;
    color: #444;
    font-size: 16px;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .searchToggle {
        position: absolute;
        left: 20px;
        width: 30px;
        padding-left: 0;
        padding-bottom: 10px;
        padding-top: 17px;
        margin-top: 0;
        top: -4px;
        font-size: 20px;
    }
    .ModuleSearch {
        left: 0;
        top: 49px;
        right: auto;
    }
}


/*================================= END HEADER =========================================*/


/*=================================== FOOTER ===========================================*/


/*-------------------- IR FOOTER -------------------------*/

.PaneFooter {
    background: #F6F6F6;
    padding: 50px 0;
}

.PaneFooter h2 {
    font-size: 18px;
    font-weight: 500;
    color: #002454;
    font-style: normal;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

div.irFooterLinks,
.footer-alerts,
.footerInvestorContact {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    float: left;
}
.footerInvestorContact {
    width: 25%;
    margin-left: 8%;
}
div.irFooterLinks {
    width: 30%;
}

.footer-alerts {
    width: 36%
}

.irFooterLinks a {
    color: rgb(0, 204, 153);
    font-size: 14px;
    line-height: 30px;
    padding: 0 20px 0 15px;
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.irFooterLinks a:hover {
    text-decoration: underline;
}

.irFooterLinks a:before {
    position: absolute;
    left: 0;
    top: 10px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: rgb(0, 204, 153);
}

.footer-alerts {
    padding-right: 20px;
}

.PaneFooter .EditSubscriberConfirmation {
    max-width: 36%;
    float: left;
    padding: 0 10px !important;
}

.MailingListSignupContainer.footer-alerts table td.MailingListCol1 {
    display: none;
}

.MailingListSignupContainer.footer-alerts .IntroTextColumn {
    padding: 0;
}

.MailingListSignupContainer.footer-alerts .MailingListsHeading,
.MailingListSignupContainer.footer-alerts .MailingListsHeading + .RequiredField {
    display: none;
}

.MailingListSignupContainer.footer-alerts table td {
    padding: 0;
}

.footer-alerts .MailingListListTable tr tbody > tr {
    display: inline-block;
    width: 49%;
    padding: 6px 0;
}

.footer-alerts .MailingListListTable {
    margin-bottom: 16px;
    margin-top: 9px;
}

.footer-alerts .MailingListListTable label {
    vertical-align: middle;
    display: inline-block;
    font-size: 14px;
    margin-top: 1px;
}

.MailingListSignupContainer.footer-alerts table td.MailingListCol2 {
    margin-bottom: 0;
}

.footerInvestorContact p {
    margin-bottom: 5px;
}

.footerInvestorContact a {
    font-size: 11.3px;
}

.footerInvestorContact a:hover {
    text-decoration: underline;
}


/*------------------ CORP FOOTER -------------------------*/

.PaneFooter2 {
    background: #002454;
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    padding: 44px 20px 6%;
}
.PaneFooter2:before {
    content: '';
    position: absolute;
    background: #002454;
    left: -100vw;
    width: 200vw;
    height: 100%;
    display: block;
    top: 0;
    z-index: -1;
}
.links_wrap ul {width: 25%;}

.links_wrap a {
    display: block;
    color: #fff;
    margin-top: 8px;
    line-height: 1.2;
    font-size: 12.3px;
}
.links_wrap ul > li:first-child a {
    margin-top: 0;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13.2px;
}
div.FooterLinks a:hover {
    background-color: #556367;
    color: #FFFFFF;
    text-decoration: none;
}

.rightLinksWrapper p {
    margin-bottom: 1px;
}

.rightLinksWrapper a {
    color: #fff;
    font-size: 11.2px;
    line-height: 19.2px;
}

.rightLinksWrapper a:hover {
    text-decoration: underline;
}

.contactUs {
    background: #556367;
    padding: 64.5px 20px;
}

.workHere {
    background: #465a64;
    padding: 44.5px 20px;
}

.viewLocations {
    background: #0f4155;
    padding: 10px 20px;
    line-height: 23.8px;
}

.viewLocations a {
    font-size: 14px;
    line-height: 23.8px;
}

ul.FooterLinks li:first-child a {
    font-size: 14px;
    line-height: 15.4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

ul.FooterLinks li:first-child a:hover {
    background: transparent;
    color: #444;
    text-decoration: underline;
}

.PaneQ4Footer {
    background-color: #002454;
    font-size: 12.5px;
    padding: 7px 0 12px;
    line-height: 24px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 7px 20px 25px;
    position: relative;
}
.Q4FooterContainer {
    font-size: 12px;
}
.PaneQ4Footer:before {
    content: '';
    position: absolute;
    width: 200vw;
    left: -100vw;
    height: 100%;
    top: 0;
    background-color: #002454;
    z-index: -1;
}
.module-links-footer {
    position: relative;
    min-height: 120px;
}
.module-logo img {
    width: 176px;
}
.module-links-footer .links_wrap {
    display: flex;
    justify-content: space-between;
    max-width: 750px;
    width: 100%;
    position: absolute;
    left: 220px;
    margin-top: 10px;
}
.PaneQ4Footer a {
    color: #fff;
    text-decoration: none;
}

.PaneQ4Footer .noListStyle:not(.module-social) a:hover {
    text-decoration: underline;
}

.PaneQ4Footer .noListStyle.module-social a:hover {
    color: #0073aa;
}

.Q4FooterContainer a {
    line-height: 1.1;
    font-size: 10px;
}

.FooterContainer {
    margin-top: 30px;
}

.copyrightWrap, .disclosureLinks {
    display: inline-block;
}
ul.noListStyle.disclosureLinks {
    position: absolute;
    top: 5px;
    left: 235px;
    display: flex;
    /* justify-content: space-between; */
    width: 750px;
}
.copyrightWrap {
    color: #fff;
    width: 210px;
}

ul.disclosureLinks li {
    display: inline-block;
    position: relative;
    width: 25%;
}

.module-social {
    right: 175px;
    top: -5px;
    position: absolute;
    font-size: 20px;
}
.module-social li {
    display: inline-block;
    margin-left: 25px;
    margin-bottom: 10px;
}

@media screen and (max-width: 990px) {
    ul.noListStyle.disclosureLinks {
    left: calc(50% + 8px);
    display: block;
    top: -220px;
    width: auto;
    right: 10px;
    }
}

@media screen and (max-width: 1130px) {
    .module-social {
        top: -15px;
        right: 20px;
    }
    .module-social li {
        display: inline-block;
        margin-left: 25px;
    }
}

@media screen and (max-width: 990px) {
    .module-logo {
        display: inline-block;
        margin-top: 25px;
    }
    .module-links-footer .links_wrap {
        display: block;
        max-width: 100%;
        position: static;
        column-count: 2;
    }
    .links_wrap ul {
        width: 100%;
        display: inline-block;
        margin-bottom: 35px;
    }
    ul.disclosureLinks li {
        display: block;
        width: auto;
        font-family: 'Montserrat', Arial, Helvetica, sans-serif;
        font-size: 14px;
    }
    .PaneQ4Footer {
        padding: 0 20px 10px 20px;
    }
    .PaneFooter2 {
        padding-left: 20px;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 940px) {
    .rightLinksWrapper {
        position: static;
        width: 107%;
        color: #fff;
        margin-bottom: 16px;
        margin-left: -20px;
    }
    .rightLinksWrapper a {
        font-size: 14px;
    }
    .rightLinksWrapper p {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 10px;
    }
    .contactUs {
        padding: 20px 20px;
    }
    .workHere {
        padding: 20px 20px;
    }
    .viewLocations a {
        font-weight: 700;
        font-size: 18px;
    }
    div.FooterLinks {
        width: 50%;
        margin-top: 0;
    }
    ul.FooterLinks {
        margin: 5px 0;
    }
    div.FooterLinks a {
        font-size: 12px;
        padding-left: 0;
        margin-right: 3px;
    }
    ul.FooterLinks li:first-child a {
        font-size: 18px;
        line-height: 25px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .copyrightWrap,
    .Copyright,
    .copyrightWrap .ModuleInnerContainer,
    .copyrightWrap .ModuleOuterContainer {
        margin-left: 0;
        display: inline;
    }
    div.irFooterLinks,
    .footer-alerts,
    .footerInvestorContact {
        width: 100%;
        display: block;
        margin-left: 0;
    }
    .PaneFooter {
        padding-top: 35px;
        padding-bottom: 40px;
    }
    .PaneFooter h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    div.irFooterLinks {
        margin-bottom: 30px;
    }
    .irFooterLinks a {
        font-size: 15px;
    }
    .footer-alerts {
        margin-bottom: 40px;
        padding-right: 0;
    }
    .footer-alerts h2 {
        margin-bottom: 20px;
    }
    .PaneFooter .EditSubscriberConfirmation {
        max-width: 100%;
        float: none;
        padding: 20px 0 !important;
    }
    .MailingListSignupContainer.footer-alerts input[type="text"] {
        width: 100%;
    }
    .MailingListSignupContainer.footer-alerts table {
        width: 100%;
        max-width: 100%;
        margin: 6px 0;
    }
    .footerInvestorContact a {
        font-size: 15px;
    }
    .footer-alerts .MailingListListTable label {
        font-size: 11px;
    }
}


/*================================= END FOOTER =========================================*/


/*================================ LANDING PAGE ========================================*/


/*----------- Stock Quote Header ----------*/

.StockQuoteHeaderContainer {
    background: #002454;
    display: inline-block;
    color: #fff;
    padding: 20px 30px 20px 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: calc(50% - 550px);
}
.StockQuoteHeaderContainer:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #002454;
    height: 100%;
    left: -100vw;
    width: 100vw;
    
}

.StockQuoteHeaderContainer .StockDescription1 {
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.stockWrap {
    display: inline-block;
    vertical-align: middle;
}

.StockQuoteHeaderContainer .StockPrice {
    display: inline-block;
    vertical-align: middle;
    font-size: 44px;
    margin-left: 60px;
    margin-right: 14px;
    color: #fff;
    position: relative;
    font-weight: 500;
}

.StockQuoteHeaderContainer .StockPrice:before {
    content: "$";
    font-size: 43px;
    vertical-align: top;
}

.StockQuoteHeaderContainer .StockChange,
.StockQuoteHeaderContainer .StockPChange {
    font-size: 16px;
    display: inline-block;
    line-height: 1.2;
    position: relative;
    vertical-align: top;
}
.StockPChange:before {
    content: '';
    /* display: block; */
}

.StockQuoteHeaderContainer .StockIndicator {
    display: none;
}

.StockQuoteHeaderContainer .StockChange.StockPriceDown:before,
.StockQuoteHeaderContainer .StockChange.StockPriceUp:before {
    position: absolute;
    left: -205px;
    top: -2px;
}

.StockQuoteHeaderContainer .StockChange.StockPriceUp:before {
    top: -5px;
}

.StockQuoteHeaderContainer .StockChange.StockPriceUp:before {
    content: "";
    display: block;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 24px solid #3EB289;
}

.StockQuoteHeaderContainer .StockChange.StockPriceDown:before {
    content: "";
    display: block;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 24px solid #FF0000;
}


/*.StockQuoteHeaderContainer .StockChange:before,*/

.StockQuoteHeaderContainer .StockPChange:before {
    content: "(";
}


/*.StockQuoteHeaderContainer .StockChange:after,*/

.StockQuoteHeaderContainer .StockPChange:after {
    content: ")";
}

.StockQuoteHeaderContainer .StockVolumeText,
.StockQuoteHeaderContainer .StockVolume {
    margin-left: 5px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 10px;
    display: none;
}

.StockQuoteHeaderContainer .StockDate,
.StockQuoteHeaderContainer .StockDescription3 {
    display: block;
    margin-top: 15px;
    opacity: 0.6;
}


/*@media screen and (max-width: 1024px) {
    .StockQuoteHeaderContainer .StockDate,
    .StockQuoteHeaderContainer .StockVolumeText,
    .StockQuoteHeaderContainer .StockVolume {
        display: none;
    }
}*/

@media screen and (max-width: 1250px) {
    .StockQuoteHeaderContainer {
        left: 20px;
    }
}


/*------------------- Intro Text -------------------------*/

.whyVirtu {
    padding-bottom: 45px;
}

.whyVirtu .ModuleOuterContainer {
    padding-bottom: 0;
}

.sliderWrap {
    float: left;
    width: 25%;
}

.sliderWrap h2 {
    border-bottom: none;
    color: #213268;
    padding-left: 23px;
    padding-bottom: 0;
}

.sliderItem {
    text-align: center;
}

.sliderItem p {
    color: #002454;
    padding: 0 10px;
    line-height: 22px;
}

.sliderItem img {
    margin: 0 auto 13px;
}

.introWrap {
    float: right;
    width: 75%;
    padding-left: 100px;
}

@media screen and (max-width: 940px) {
    .introWrap {
        float: none;
        width: 100%;
        padding-left: 0;
        margin-bottom: 40px;
    }
    .sliderWrap {
        float: none;
        width: 100%;
    }
    .sliderWrap h2 {
        text-align: center;
        padding-left: 0;
    }
    .sliderItem p {
        padding: 0 50px;
    }
}


/*--------------- Press Release Latest ----------------------*/


/*--------- Press Release Modules ---------*/

.ModulePressRelease .ModuleYearNavContainer,
.ModulePressReleaseLatest .ModuleYearNavContainer {
    margin-bottom: 10px;
}

.ModulePressRelease .ModuleYearNavContainerInner {
    display: none;
}


/*.ModulePressRelease .ModuleYearNavContainer a,
.ModulePressReleaseLatest .ModuleYearNavContainer a {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
    cursor: pointer;
}*/

.ModulePressRelease .ModuleDate > span,
.ModulePressReleaseLatest .ModuleDate {
    display: inline-block;
    margin-bottom: 3px;
    font-size: 11px;
    color: #002454;
    line-height: 19px;
}

.ModulePressReleaseDetails .ModuleOuterContainer {
    padding-bottom: 0;
}

.ModulePressReleaseDetails .ModuleDateContainer,
.ModulePressReleaseDetails .ModuleLinks {
    margin-bottom: 10px;
}

.ModulePressReleaseDetails .ModuleBody {
    line-height: 1.3;
}

.ModulePressRelease a.ModuleHeadlineLink,
.ModulePressReleaseLatest a.ModuleHeadlineLink {
    display: inline;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 1rem;
}

.ModulePressReleaseDetails .ModuleDetailHeadline {
    font-size: 21px;
    color: #213268;
    font-family: "Noto Sans", sans-serif;
    font-style: italic;
    margin-bottom: 23px;
    padding-bottom: 7px;
    line-height: 28px;
}

.ModulePressReleaseDetails .ModuleDetailHeadline > span {
    border-bottom: 1px solid #d8d8d8;
}

.ModulePressRelease .pdfDownload {
    display: none;
}

.ModulePressReleaseLatest a.ModuleHeadlineLink:hover,
.ModulePressRelease a.ModuleHeadlineLink:hover {
    border-bottom: 1px solid #002454;
    color: #002454;
}

.ModulePressRelease .ModuleItemRow,
.ModulePressReleaseLatest .ModuleItemRow {
    margin-bottom: 15px;
}

.ModulePressReleaseLatest .ModuleItemRow {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    padding-left: 40px;
}

.ModulePressReleaseLatest .ModuleContentContainer .ModuleItemRow:first-child {
    padding-left: 0;
}

.ModulePressRelease .ModuleItemRow a[class*="q4i-"]:before,
.ModulePressRelease .ModuleItemRow i[class*="q4i-"]:before,
.ModulePressReleaseLatest .ModuleItemRow a[class*="q4i-"]:before,
.ModulePressReleaseLatest .ModuleItemRow i[class*="q4i-"]:before,
.ModulePressReleaseDetails .ModuleLinks a[class*="q4i-"]:before,
.ModulePressReleaseDetails .ModuleLinks i[class*="q4i-"]:before {
    /*    font-size: 2rem;*/
}

.ModulePressRelease .ModuleBody,
.ModulePressReleaseLatest .ModuleBody {
    margin: 1rem 0;
    line-height: 1.5rem;
}

.ModulePressReleaseLatest .ModuleBody {
    display: none;
}

div.prDetails .PageDefaultInner .PaneLeft,
div.prDetails .PageDefaultInner .PaneRight {
    display: none;
}

div.prDetails .PaneContent {
    padding-bottom: 30px;
}

.ModulePressReleaseDetails ul {
    list-style: inside;
}

.ModulePressReleaseDetails ul ul {
    margin-left: 1rem;
}

.ModulePressReleaseDetails ul li {
    line-height: 1.5rem;
}

.ModulePressReleaseLatest .ModuleMoreLink {
    margin-top: 5px;
    display: inline-block;
    font-size: 11.3px;
    border-bottom: 1px solid transparent;
}

.ModulePressReleaseLatest .ModuleMoreLink:hover {
    border-bottom: 1px solid #002454;
}

.ModulePressReleaseLatest .ModuleReleasePDF {
    display: none;
}

.ModulePressReleaseLatest a.ModuleViewAllLink,
a.ModuleViewAllLink {
    font-size: 14px;
    color: rgb(0, 204, 153);
    font-weight: 700;
    line-height: 22px;
    background: #fff;
    padding: 10px 15px;
    position: relative;
    display: inline-block;
}

.ModulePressReleaseLatest a.ModuleViewAllLink:before,
a.ModuleViewAllLink:before {
    position: absolute;
    left: 0;
    top: 14px;
    content: "";
    display: block;
    border-left: 7px solid #dadada;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.ModulePressReleaseLatest a.ModuleViewAllLink:hover,
a.ModuleViewAllLink:hover {
    background: #f7f5fe;
    color: #213268;
}

.ModulePressReleaseLatest a.ModuleViewAllLink:hover:before,
a.ModuleViewAllLink:hover:before {
    border-left: 9px solid #fff;
}

.ModulePressReleaseDetails table tbody {
    display: table;
    width: calc(100% - 1px);
    min-width: 700px;
}

.ModulePressReleaseDetails table {
    display: block;
    overflow-x: auto;
}

.ModulePressReleaseDetails a {
    word-wrap: break-word;
}

.ModulePressReleaseDetails .ModuleLinks a:hover span {
    border-bottom: 1px solid #002454;
}

.detailsButton .ModuleOuterContainer {
    padding-bottom: 0;
}


/*---------- Quick Links Modules ----------*/

.RightColumnBlock {
    display: none;
}

.ModulePressRelease .RssLinkTopContainer,
.ModulePressReleaseLatest .RssLinkTopContainer,
.ModulePressReleaseDetails .RssLinkTopContainer {
    float: right;
    margin-top: 4px;
}

.ModulePressRelease .RssLinkTopContainer {
    margin-top: 23px;
}

.ModulePressRelease .RssLinkTopContainer i:before,
.ModulePressReleaseLatest .RssLinkTopContainer i:before,
.ModulePressReleaseDetails .RssLinkTopContainer i:before {
    font-size: 16px;
}

.ModulePressRelease .RssLinkTopContainer a,
.ModulePressReleaseLatest .RssLinkTopContainer a,
.ModulePressReleaseDetails .RssLinkTopContainer a {
    color: rgb(0, 204, 153);
}

.ModulePressReleaseDetails a[href*=".pdf"]:before {
    content: "\e903";
    color: #002454;
    font-size: 16px;
}

@media screen and (max-width: 940px) {
    .ModulePressReleaseLatest .ModuleItemRow {
        display: block;
        width: 100%;
        padding-left: 0;
    }
    .ModulePressReleaseLatest a.ModuleViewAllLink {
        display: none;
    }
    .ModulePressReleaseLatest h2 {
        margin-bottom: 33px;
    }
    .ModulePressReleaseLatest .ModuleMoreLink,
    .ModulePressRelease .ModuleDate,
    .ModulePressReleaseLatest .ModuleDate {
        font-size: 13px;
    }
    .ModulePressReleaseLatest .slick-dots {
        position: static;
        text-align: left;
        margin-top: 10px;
        display: block;
    }
}


/*----------------- Featured Presentation ------------------------*/

.featuredPresentation {
    width: 33%;
    display: inline-block;
    padding-right: 20px;
 /*   float: left; */
}

.featuredPresentation img {
    width: 100%;
    margin-bottom: 15px;
    max-width: 350px;
}

.presentationWidget {
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

.presentationTitle {
    line-height: 22px;
}

.presentationTitle a {
    color: #444;
}

.presentationTitle a:hover {
    color: #002454;
    border-bottom: 1px solid #002454;
}

.presentationWidget .PDFlink {
    font-size: 11.3px;
    color: rgb(0, 204, 153);
    margin-left: 20px;
    position: relative;
}

.presentationWidget .PDFlink:before {
    content: "\e903";
    font-family: "q4icons";
    color: rgb(0, 204, 153);
    position: absolute;
    left: -20px;
    top: -3px;
    font-size: 16px;
}

.presentationWidget .fileLink {
    margin-top: 8px;
}

.presentationWidget .PDFlink:hover span {
    border-bottom: 1px solid rgb(0, 204, 153);
}

@media screen and (max-width: 940px) {
    .featuredPresentation {
        display: block;
        width: 100%;
        padding-right: 0;
        float: none;
    }
    .presentationWidget .PDFlink {
        font-size: 13px;
    }
    .presentationWidget .PDFlink:before {
        top: -2px;
    }
}


/*-------------------- Quarterly Financials ------------------------*/

.landingFinancials.mobileModule {
    display: none;
}

.landingFinancials {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
    float: right;
}

.landingFinancials h2 {
    margin-bottom: 16px;
}

.documents li {
    line-height: 45px
}

.documents a {
    margin-left: 30px;
    position: relative;
}

.documents a:before {
    content: "\e902";
    font-family: "q4icons";
    color: #002454;
    position: absolute;
    left: -30px;
    top: -1px;
    line-height: 1;
    font-size: 16px;
}

.documents a[href*=".pdf"]:before {
    content: "\e903";
}

.documents a[href*=".xls"]:before {
    content: "\e901";
}

.documents li.Webcast a:before {
    content: "\e906";
}

@media screen and (max-width: 940px) {
    .landingFinancials.mobileModule {
        display: block;
        width: 100%;
        padding: 0;
    }
    .landingFinancials {
        display: none;
    }
}


/*---------------------- Landing Events  ------------------------*/

.ModuleEventLatest {
    width: 33%;
    float: right;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
}


/*------------- Event Modules -------------*/

.ModuleEvent .ModuleYearNavContainer,
.ModuleEvent .ModuleHeader,
.ModuleEventLatest .ModuleYearNavContainer,
.ModuleEventLatest .ModuleHeader {
    margin-bottom: 10px;
}

.ModuleEvent .ModuleItemRow,
.ModuleEventLatest .ModuleItemRow {
    margin-bottom: 25px;
}

.ModuleEvent .ModuleLocation,
.ModuleEvent .ModuleSpeakers h3,
.ModuleEventLatest .ModuleLocation,
.ModuleEventLatest .ModuleSpeakers h3,
.ModuleEventDetails .ModuleLocation,
.ModuleEventDetails .ModuleSpeakers,
.ModuleEventDetails .ModuleSpeakers h3 {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}

.ModuleEventDetails .ModuleDateContainer span {
    display: inline-block;
    font-size: 11px;
    color: #002454;
    margin-bottom: 5px;
}

.ModuleEventLatest .ModuleDateContainer span,
.ModuleEvent .ModuleDateContainer span {
    font-size: 11px;
    color: #002454;
    margin-bottom: 5px;
    display: block;
}


/*.ModuleEvent .ModuleYearNavContainer a,*/

.ModuleEvent .ModuleSpeakers li,
.ModuleEvent .WebcastLink a,
.ModuleEvent .PressRelease a,
.ModuleEvent .ModuleLinks a,
.ModuleEvent .presentation a,
.ModuleEvent .FinancialReport a,
.ModuleEvent .AddToCalendar,
.ModuleEvent .ModuleMore a,
.ModuleEventLatest .ModuleYearNavContainer a,
.ModuleEventLatest .ModuleSpeakers li,
.ModuleEventLatest .WebcastLink a,
.ModuleEventLatest .PressRelease a,
.ModuleEventLatest .ModuleLinks a,
.ModuleEventLatest .presentation a,
.ModuleEventLatest .FinancialReport a,
.ModuleEventLatest .AddToCalendar,
.ModuleEventDetails .ModuleYearNavContainer a,
.ModuleEventDetails .ModuleSpeakers li,
.ModuleEventDetails .WebcastLink a,
.ModuleEventDetails .PressRelease a,
.ModuleEventDetails .ModuleLinks a,
.ModuleEventDetails .presentation a,
.ModuleEventDetails .FinancialReport a,
.ModuleEventDetails .AddToCalendar {
    display: inline-block;
    padding: 2px 0;
    font-size: 11.3px;
    margin-bottom: 5px;
    text-decoration: none;
}

.ModuleEventLatest a:not(.ModuleHeadlineLink),
.ModuleEvent a:not(.ModuleHeadlineLink),
.ModuleEventDetails a:not(.ModuleHeadlineLink) {
    color: rgb(0, 204, 153);
}

.ModuleEventLatest a:not(.ModuleHeadlineLink):hover .wrapAnchor,
.ModuleEvent a:not(.ModuleHeadlineLink):hover .wrapAnchor,
.ModuleEventDetails a:not(.ModuleHeadlineLink):hover .wrapAnchor {
    border-bottom: 1px solid #002454;
}

a.ModuleViewAllLink:hover {
    background: #f7f5fe;
    color: #213268;
}

.ModuleEvent .ModuleLinks .Video a:before,
.ModuleEventLatest .ModuleLinks .Video a:before,
.ModuleEventDetails .ModuleLinks .Video a:before {
    content: "\e902";
    margin-left: 1px;
}

.ModuleEventDetails .q4i-doc-link:before,
.ModuleEvent .q4i-icon-link:before {
    content: "\e902";
    margin-left: 1px;
}

.ModuleEvent .FinancialContainer a:before,
.ModuleEventLatest .FinancialContainer a:before,
.ModuleEventDetails .FinancialContainer a:before {
    content: "\e902";
    margin-left: 1px;
}


/*.ModuleEvent .ModuleLinks .Document a:before,
.ModuleEventLatest .ModuleLinks .Document a:before,
.ModuleEventDetails .ModuleLinks .Document a:before {
    content: "\e902";
}*/

.ModuleEvent .WebcastLink a:before,
.ModuleEventLatest .WebcastLink a:before,
.ModuleEventDetails .WebcastLink a:before {
    content: "\e906";
}

.ModuleEvent .ModuleLinks .Audio a:before,
.ModuleEventLatest .ModuleLinks .Audio a:before,
.ModuleEventDetails .ModuleLinks .Audio a:before,
.ModuleEvent a[href$=".mp3"]:before,
.ModuleEventLatest a[href$=".mp3"]:before,
.ModuleEventDetails a[href$=".mp3"]:before {
    content: "\e906";
}

.ModuleEventLatest a[href$=".pdf"]:before,
.ModuleEvent a[href$=".pdf"]:before,
.ModuleEventDetails a[href$=".pdf"]:before,
.ModuleEventLatest a[href$=".PDF"]:before,
.ModuleEvent a[href$=".PDF"]:before,
.ModuleEventDetails a[href$=".PDF"]:before {
    content: "\e903";
    font-family: "q4icons";
}

.ModuleEvent .ModuleBody:not(:empty),
.ModuleEventLatest .ModuleBody:not(:empty),
.ModuleEventDetails .ModuleBody:not(:empty) {
    /* border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 10px;*/
    margin: 10px 0 15px;
}

.ModuleEventLatest .ModuleLocation {
    display: none;
}

.ModuleEvent .AddToCalendar div,
.ModuleEventLatest .AddToCalendar div,
.ModuleEventDetails .AddToCalendar div {
    display: inline-block;
}

.ModuleEventLatest a.ModuleHeadlineLink,
.ModuleEvent a.ModuleHeadlineLink {
    color: #444;
}

.ModuleEventLatest a.ModuleHeadlineLink:hover,
.ModuleEvent a.ModuleHeadlineLink:hover {
    border-bottom: 1px solid #002454;
    color: #002454;
}

.ModuleEventLatest .linkWrap,
.ModuleEvent .linkWrap {
    line-height: 22px;
    margin-bottom: 5px;
}

.ModuleEvent a[class*="q4i-"],
.ModuleEvent i[class*="q4i-"],
.ModuleEventLatest a[class*="q4i-"],
.ModuleEventLatest i[class*="q4i-"],
.ModuleEventDetails a[class*="q4i-"],
.ModuleEventDetails i[class*="q4i-"] {
    position: relative;
    padding-left: 25px;
}

.ModuleEvent a[class*="q4i-"]:before,
.ModuleEvent i[class*="q4i-"]:before,
.ModuleEventLatest a[class*="q4i-"]:before,
.ModuleEventLatest i[class*="q4i-"]:before,
.ModuleEventDetails a[class*="q4i-"]:before,
.ModuleEventDetails i[class*="q4i-"]:before {
    margin-right: 10px;
    font-size: 16px;
    color: rgb(0, 204, 153);
    position: absolute;
    left: 0;
    top: -1px;
}

.ModuleEvent h4,
.ModuleEvent .RelatedDocuments .thumbnail,
.ModuleEvent .category,
.ModuleEvent .FileDetails,
.ModuleEventLatest h4,
.ModuleEventLatest .RelatedDocuments .thumbnail,
.ModuleEventLatest .category,
.ModuleEventLatest .FileDetails,
.ModuleEventDetails h4,
.ModuleEventDetails .RelatedDocuments .thumbnail,
.ModuleEventDetails .category,
.ModuleEventDetails .FileDetails {
    display: none;
}

.ModuleEvent .AddToCalendar,
.ModuleEventLatest .AddToCalendar,
.ModuleEventDetails .AddToCalendar {
    position: relative;
}

.ModuleEvent .AddToCalendar a,
.ModuleEventLatest .AddToCalendar a,
.ModuleEventDetails .AddToCalendar a {
    margin-left: 25px;
    position: relative;
}

.ModuleEvent .AddToCalendar a:before,
.ModuleEventLatest .AddToCalendar a:before,
.ModuleEventDetails .AddToCalendar a:before {
    font-family: "q4icons";
    content: "\e900";
    font-size: 16px;
    color: #002454;
    position: absolute;
    left: -25px;
    top: -2px;
}

.ModuleEventDetails .AddToCalendar i:before,
.ModuleEvent .AddToCalendar i:before {
    display: none;
}

.ModuleEventDetails .AddToCalendar i,
.ModuleEvent .AddToCalendar i {
    padding: 0;
}

.ModuleEvent .ModuleReminderContainer.js-reminded .ReminderTitle,
.ModuleEvent .ModuleReminderContainer.js-reminded .ReminderPeriod,
.ModuleEvent .ModuleReminderContainer.js-reminded .ReminderEmailText,
.ModuleEvent .ModuleReminderContainer.js-reminded .ReminderEmailTextbox,
.ModuleEvent .ModuleReminderContainer.js-reminded .ReminderButton {
    display: none;
}

.ModuleEventLatest .ModuleYearNavContainer {
    display: none;
}

.ModuleEvent .RssLinkTopContainer,
.ModuleEventLatest .RssLinkTopContainer,
.ModuleEventDetails .RssLinkTopContainer {
    float: right;
    margin-top: 6px;
}

.ModuleEvent .RssLinkTopContainer i,
.ModuleEventLatest .RssLinkTopContainer i {
    padding-left: 17px;
}

.ModuleEvent .RssLinkTopContainer i:before,
.ModuleEventLatest .RssLinkTopContainer i:before,
.ModuleEventDetails .RssLinkTopContainer i:before {
    margin-right: 0;
}

@media screen and (max-width: 940px) {
    .ModuleEventLatest a:not(.ModuleHeadlineLink),
    .ModuleEvent a:not(.ModuleHeadlineLink),
    .ModuleEventDetails a:not(.ModuleHeadlineLink) {
        font-size: 13px;
    }
    .ModuleEventLatest .ModuleDateContainer span,
    .ModuleEvent .ModuleDateContainer span,
    .ModuleEventDetails .ModuleDateContainer span {
        font-size: 13px;
    }
    .ModuleEventLatest {
        display: block;
        width: 100%;
        padding: 0;
    }
}


/*------------------ Social Feed ------------------------------*/

.socialFeed {
    clear: both;
}

.socialFeed .socialTab {
    margin-bottom: 30px;
}

.socialFeed .socialTab a {
    background: rgb(0, 204, 153);
    display: inline-block;
    padding: 11px 20px;
    font-size: 14px;
    color: #fff;
}

.socialFeed .socialTab a:before {
    font-family: "q4icons";
    content: "\e645";
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    font-size: 18px;
    margin-right: 5px;
}

.socialFeed .date {
    font-size: 11px;
    color: #002454;
    margin-bottom: 13px;
}

.socialFeed .social-item a {
    color: rgb(0, 204, 153);
}

.socialFeed .title {
    line-height: 21px;
}

.socialFeed .social-item {
    width: 32%;
    display: inline-block;
    background: #f5f5f5;
    padding: 30px 20px 20px;
}

.socialFeed .social-item + .social-item {
    margin-left: 14px;
}

.socialFeed .slick-prev {
    left: -25px;
    background: #f5f5f5;
    right: 44px;
    left: auto;
    height: 35px;
    top: -50px;
    width: 35px;
}

.socialFeed .slick-next {
    left: -25px;
    background: #f5f5f5;
    right: 0;
    left: auto;
    height: 35px;
    top: -50px;
    width: 35px;
}

.socialFeed .slick-next:before,
.socialFeed .slick-prev:before {
    color: #002454;
    content: "\e916";
}

.socialFeed .slick-prev:before {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: absolute;
    left: 6px;
    top: 8px;
}

.socialFeed .slick-next:before {
    position: absolute;
    right: 6px;
    top: 8px;
}

@media screen and (max-width: 940px) {
    .socialFeed .date {
        font-size: 13px;
    }
    .socialFeed .social-item + .social-item {
        margin-left: 0;
    }
}


/*============================== END LANDING PAGE ======================================*/


/*================================ EVENTS  PAGE ========================================*/

.upcoming-events .ModuleOuterContainer {
    padding-bottom: 0;
}

/* 00315731*/
/*
.upcoming-events .ModuleLocation {
    display: none;
}*/

.upcoming-events {
    max-width: 260px;
    width: 100%;
    float: left;
}


/*----------- Events Calendar -----------*/

.eventCalendarWrap {
    float: right;
    max-width: 490px;
    width: 100%;
}

#event-container {
    position: relative;
}

#events-calendar {
    max-width: 490px;
    display: inline-block;
    float: right;
    width: 100%;
}

.eventCalendarWrap .closeBtn {
    position: absolute;
    right: 10px;
    top: 11px;
    cursor: pointer;
}

.eventCalendarWrap .closeBtn i {
    padding-left: 15px;
}

.eventCalendarWrap .closeBtn i:before {
    margin-right: 0;
}

#latest-events {
    position: absolute;
    display: none;
    margin-top: 56px;
    padding: 50px 20px 20px;
    max-width: 100%;
    width: 100%;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    border: 1px solid #d8d8d8;
}

#event-container .date {
    font-size: 11px;
    color: #002454;
}

.calendar {
    background: #fbfbfb;
}

#events-calendar.loading {
    background-image: url(../images/loader.gif);
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

#events-calendar .controls {
    display: table;
    width: 100%;
    background: #002454;
    color: #fff;
}

#events-calendar .controls div {
    display: table-cell;
    text-align: center;
    padding: 20px 0;
}

#events-calendar .controls .month {
    width: 70%;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
}

#events-calendar .clndr-previous-button,
#events-calendar .clndr-next-button {
    width: 15%;
    text-align: center;
    cursor: pointer;
    position: relative;
}

#events-calendar .clndr-previous-button i:before {
    content: "\e916";
    position: absolute;
    font-size: 20px;
    top: 20px;
    left: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#events-calendar .clndr-next-button i:before {
    content: "\e916";
    position: absolute;
    font-size: 20px;
    top: 20px;
    right: 30px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#events-calendar .days-container {
    position: relative;
}

#events-calendar .days {
    border-top: none;
    position: relative;
    padding-bottom: 20px;
}

#events-calendar .day-header,
#events-calendar .day {
    display: inline-block;
    padding: 5px;
    color: #002454;
    width: 14.285%;
    padding: 15px 0;
    text-align: center;
}

#events-calendar .day {
    color: #213268;
}

#events-calendar .day.adjacent-month,
#events-calendar .empty.adjacent-month {
    opacity: .5;
    visibility: hidden;
    background-color: transparent;
}

#events-calendar .days-container .days .day.today,
#events-calendar .days-container .days .empty.today {
    background-color: rgba(0, 0, 0, 0.05);
    position: relative;
    /* z-index: 2; */
}

#events-calendar .days-container .days .day.today:before {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: -1;
    top: 2px;
    left: 15px;
    background-color: #f3f3f3;
}

#events-calendar .day.event,
#events-calendar .empty.event {
    cursor: pointer;
    opacity: 1;
    position: relative;
}

/* 00315731*/
#events-calendar .day.event:after {
    display: block;
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #002454;
    bottom: 2px;
    left: 46%;
}

#events-calendar .headers {
    padding-bottom: 10px;
}

#events-calendar .day-header {
    text-align: center;
    background-color: #f3f3f3;
    padding: 25px 0;
    text-transform: uppercase;
}

#latest-events .FinancialContainer .wrapAnchor {
    line-height: 13px;
}

@media screen and (max-width: 940px) {
    .eventCalendarWrap {
        float: none;
        max-width: 100%;
    }
    .upcoming-events {
        max-width: 100%;
        float: none;
    }
    #event-container .date {
        font-size: 13px;
    }
    #events-calendar {
        max-width: 100%;
        display: block;
        float: none;
        width: 100%;
    }
    #events-calendar .days-container .days .day.today:before {
        content: "";
        display: block;
        position: absolute;
        width: 40px;
        height: 40px;
        z-index: -1;
        top: 2px;
        left: 50%;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #f3f3f3;
    }
}


/*------------------------Featured Presentation ------------------------*/

.presentationSlideshare {
    width: 40%;
    float: left;
    clear: both;
}

.vertical-center {
    position: relative;
    padding-bottom: 77.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 930px;
    margin: 0 auto;
}

.vertical-center iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 940px) {
    .presentationSlideshare {
        width: 100%;
        float: none;
    }
    .vertical-center {
        padding-bottom: 69.25%;
    }
}


/*-------------------- Supplemental Information ------------------------*/

.supplementalInfo {
    width: 40%;
    float: right;
}

.supplementalInfo .ModuleInnerContainer {
    background: #fbfbfb;
}


/*-------- Download List with Tags --------*/

.ModuleDownloadListWithTags .linkWrap {
    padding-left: 60px;
    padding-right: 30px;
}

.ModuleDownloadListWithTags .ModuleYearNavContainer a {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    /*background-color: rgba(0, 0, 0, 0.1);*/
    color: #000;
    text-decoration: none;
}

.ModuleDownloadListWithTags .ModuleItemRow {
    padding: 25px 0;
    line-height: 22px;
}

.ModuleDownloadListWithTags .ModuleItemRow ~ .ModuleItemRow {
    border-top: 1px solid #d8d8d8;
}

.ModuleDownloadListWithTags a.ModuleHeadlineLink {
    word-break: break-word;
    position: relative;
    color: #444;
}

.ModuleDownloadListWithTags a.ModuleHeadlineLink:hover {
    border-bottom: 1px solid #002454;
    color: #002454;
}

.ModuleDownloadListWithTags a.ModuleHeadlineLink:after {
    font-family: "q4icons";
    content: "\e902";
    display: inline-block;
    position: absolute;
    left: -40px;
    top: -10px;
    font-size: 30px;
    cursor: pointer;
    color: #002454;
}

.ModuleDownloadListWithTags a.ModuleHeadlineLink[href*=".html"]:after {
    content: "\e902";
}

.ModuleDownloadListWithTags a.ModuleHeadlineLink[href*=".pdf"]:after,
.ModuleDownloadListWithTags a.ModuleHeadlineLink[href*=".PDF"]:after {
    content: "\e903";
}

.ModuleDownloadListWithTags a.ModuleHeadlineLink[href*=".xls"]:after,
.ModuleDownloadListWithTags a.ModuleHeadlineLink[href*=".xlsx"]:after {
    content: "\e901";
}

.ModuleDownloadListWithTags .ModuleHeader,

/*.ModuleDownloadListWithTags .ModuleDate,*/

.ModuleDownloadListWithTags .ModuleFileSizeText,
.ModuleDownloadListWithTags .ModuleIcon {
    display: none;
}

.ModuleDownloadListWithTags .ModuleDate {
    display: block;
    padding-left: 60px;
    font-size: 11px;
    color: #002454;
}

@media screen and (max-width: 940px) {
    .supplementalInfo {
        width: 100%;
        float: none;
    }
    .ModuleDownloadListWithTags a.ModuleHeadlineLink:after {
        font-family: "q4icons";
        content: "\e902";
        display: inline-block;
        position: absolute;
        left: -40px;
        top: 50%;
        font-size: 30px;
        cursor: pointer;
        color: #002454;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}


/*-------------------- Events Archive ------------------------*/

.pastEvents {
    clear: both;
}

.pastEvents .ModuleContentContainer > div:not(.linkWrap),
.pastEvents .ModuleContentContainer .ModuleLinks,
.pastEvents .ModuleContentContainer .ModuleLinks li {
    display: inline-block;
    margin-right: 20px;
}

.pastEvents .ModuleContentContainer ul.ModuleLinks {
    margin-right: 0;
}

.pastEvents .ModuleContentContainer > div.ModuleSpeakers {
    display: block;
}

.pastEvents .ModuleItemRow {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 20px;
}

.pastEvents label {
    font-size: 16px;
    margin-right: 15px;
}

.pastEvents .sbHolder a {
    color: #444;
}


/*.pastEvents .sbHolder a:not(.sbToggle):hover {
    color: #002454;
    border-bottom: 1px solid #002454;
}*/

.pastEvents .pagination-wrap,
.SEC-filings .pagination-wrap {
    display: inline-block;
    background: #fbfbfb;
    padding: 8px;
}

.pastEvents .widgetPagination li,
.SEC-filings .widgetPagination li {
    display: inline-block;
    margin-right: 10px;
}

.pastEvents .pagerItem,
.SEC-filings .pagerItem {
    cursor: pointer;
    color: rgb(0, 204, 153);
}

.pastEvents li.pager-disabled,
.SEC-filings li.pager-disabled {
    display: none;
}

.pastEvents li.pager-active,
.SEC-filings li.pager-active {
    color: #000;
}

.pastEvents .titlePage,
.SEC-filings .titlePage {
    text-transform: uppercase;
    color: #000;
}

.pastEvents ul.widgetPagination,
.SEC-filings ul.widgetPagination {
    display: inline-block;
    margin-left: 10px;
}

.pastEvents .pagerItem.pager-prev,
.pastEvents .pagerItem.pager-next,
.SEC-filings .pagerItem.pager-prev,
.SEC-filings .pagerItem.pager-next {
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {
    .pastEvents .ModuleContentContainer > div:not(.linkWrap),
    .pastEvents .ModuleContentContainer .ModuleLinks,
    .pastEvents .ModuleContentContainer .ModuleLinks li {
        display: block;
        margin-right: 0;
    }
}


/*============================= END EVENTS  PAGE =======================================*/


/*============================ SEC FILINGS  PAGE =======================================*/


/*--------------------- SEC Filings Section -----------------*/

.SEC-filings .select-container {
    margin-bottom: 30px;
}

.SEC-filings .sbHolder {
    width: 137px;
    max-width: 137px;
}

.SEC-filings .ModuleItemRow.itemAlt {
    background: rgb(250, 250, 250);
}

.docs a:before {
    font-family: "q4icons";
    font-size: 16px;
    color: #002454;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.docs >span {
    margin-right: 5px;
}

a.CONVPDF,
a.XLS,
a.RTF,
a.XBRL,
a.XBRL_HTML {
    font-family: "q4icons";
    font-size: 16px;
    color: #002454;
}

.CONVPDF:before {
    content: "\e903";
}

.XLS:before {
    content: "\e901";
}

.RTF:before {
    content: "\e904";
}

.XBRL:before {
    content: "\e905";
}

.XBRL_HTML:before {
    content: "\e902";
}

.SEC-filings {
    position: relative;
}

.secWidget .RssLinkTopContainer {
    position: absolute;
    right: 0;
    top: 25px;
}

.secWidget .RssLinkTopContainer a {
    color: rgb(0, 204, 153);
}

.SEC-wrap .selYears {
    margin-right: 20px;
}

.SEC-wrap .selYears .year,
.SEC-wrap .selType .view,
.SEC-wrap .selType label {
    display: none;
}

.SEC-wrap .selType .sbHolder {
    width: 265px;
    max-width: 265px;
}

.SEC-wrap .selType .sbToggle:after {
    right: 15px;
    left: auto;
}

.SEC-wrap .header {
    background: #3F5A7E;
}

.SEC-wrap .header span.col {
    color: #fff;
    line-height: 16px;
    padding: 10px;
}

.SEC-wrap .ModuleItemRow {
    border-bottom: 1px solid #e2e2e2;
}

.SEC-wrap .ModuleItemRow > div {
    padding: 10px;
}

.SEC-wrap .NoData {
    padding: 10px;
}

.SECContainer {
    margin-bottom: 20px;
}

.SEC-wrap .ItemDescription a {
    color: #002454;
}

.SEC-wrap .ItemDescription a:hover {
    border-bottom: 1px solid #002454;
}

@media screen and (max-width: 768px) {
    .SEC-wrap .header {
        display: none;
    }
    .SEC-wrap .selYears {
        display: inline-block;
        margin-bottom: 10px;
    }
    .SEC-wrap .docs.col,
    .SEC-wrap .ItemDescription >span {
        display: inline-block;
        width: 50%;
    }
    .SEC-wrap .ModuleItemRow {
        margin-bottom: 0;
        border-bottom: none;
    }
    .SEC-wrap .ModuleItemRow > div {
        padding: 8px 0;
    }
    .SEC-wrap .ModuleItemRow > div:before {
        content: attr(data-before);
        box-sizing: border-box;
        display: inline-block;
        width: 50%;
        vertical-align: top;
    }
    .SEC-wrap .itemDownload.col {
        padding: 10px 0 20px;
    }
}

@media screen and (max-width: 508px) {
    .SEC-wrap .selYears {
        display: block;
    }
}


/*========================== END SEC FILINGS  PAGE =====================================*/


/*========================= ANNUAL AND PROXY  PAGE =====================================*/

.annualWidget.landing .ModuleOuterContainer {
    padding-top: 0;
}

.annualWidget.landing .ModuleOuterContainer:before,
.annualWidget.landing .ModuleOuterContainer:after {
    content: " ";
    display: table;
}

.annualWidget.landing .ModuleOuterContainer:after {
    clear: both;
}

.annualWidget p {
    font-family: "Noto Sans", sans-serif;
    font-style: italic;
    color: #213268;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 10px;
    padding: 5px 0;
}

.annualWidget .items {
    padding-right: 20px;
}

.annualWidget.landing p {
    margin: 0 10px;
    border-bottom: 1px solid #d8d8d8;
}

.annualWidget .ModuleHeader {
    background: #3F5A7E;
}

.annualWidget .annual {
    padding-right: 20px;
}

.annualWidget.landing .annual {
    padding-right: 0;
    margin-left: 10px;
}

.annualWidget .proxy {
    padding-left: 20px;
}

.annualWidget.landing .proxy {
    padding-left: 0;
    margin-right: 10px;
    margin-bottom: 20px;
}

.annualWidget.landing .proxy,
.annualWidget.landing .annual,
.annualWidget.landing .tenq {
    background: #F1F2F3;
    padding: 10px;
    width: 48%;
    float: left;
}

.annualWidget.landing .tenq {
    clear: both;
}

.annualWidget .ModuleHeader > span {
    padding: 8px;
    display: inline-block;
    color: #fff;
}

.annualWidget .ModuleItemRow {
    border-bottom: 1px solid #d8d8d8;
}

.annualWidget.landing .ModuleItemRow {
    border-bottom: 1px solid #fff;
    margin: 0 10px;
}

.annualWidget.landing .ModuleItemRow:last-child {
    border-bottom: none;
}

.annualWidget .ModuleItemRow > div {
    padding: 8px;
}

.annualWidget .ModuleItemRow .view a {
    margin-right: 5px;
}

.annualWidget .ModuleItemRow .date a {
    color: #002454;
}

.annualWidget .ModuleItemRow .date a:hover {
    border-bottom: 1px solid #002454;
}

@media screen and (max-width: 768px) {
    .annualWidget .annual {
        padding-right: 0;
    }
    .annualWidget .proxy {
        padding-left: 0;
        margin-top: 40px;
    }
    .annualWidget.landing .annual {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .annualWidget.landing .proxy {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .annualWidget.landing .proxy,
    .annualWidget.landing .annual,
    .annualWidget.landing .tenq {
        width: 100%;
        float: none;
    }
}


/*======================= END ANNUAL AND PROXY  PAGE ===================================*/


/*========================= QUARTERLY REPORTS PAGE =====================================*/


/*------- Financial Quarterly Widget ------*/

.financialQuarterly .ModuleOuterContainer {
    padding: 0;
}


/*.q4-quarterly-widget .q4-items-container {
    display: none;
}*/

.q4-quarterly-widget .q4-year-container i {
    margin-left: 10px;
    display: none;
}

.q4-quarterly-widget .q4-financial-container.active .q4-year-container i:before {
    content: "\e604";
}

.q4-quarterly-widget .q4-year-container span,
.q4-quarterly-widget .q4-financial-document {
    display: inline-block;
    padding: 0;
    margin-bottom: 5px;
    text-decoration: none;
}

.q4-quarterly-widget .q4-financial-documents a {
    color: #002454;
    margin-left: 20px;
    border-bottom: 1px solid transparent;
    line-height: 17px;
}

.q4-quarterly-widget .q4-financial-documents a:hover .wrapAnchor {
    border-bottom: 1px solid #002454;
}

.q4-quarterly-widget span.q4-year-text {
    font-family: 'Noto Sans', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.5em;
    padding-bottom: 6px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 10px;
    color: #213268;
    display: block;
}

.q4-quarterly-widget span.q4-year-text:focus,
.q4-quarterly-widget .q4-year-container:focus {
    outline: none !important;
}

.q4-quarterly-widget .q4-items-container {
    margin-bottom: 30px;
    display: block;
}

.q4-category-text {
    margin-bottom: 20px;
    background: #f6f6f6;
    padding: 35px 10px 35px 80px;
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 18px;
}

.q4-category-text:hover {
    color: #002454;
}

.q4-category-text:before {
    content: "\e916";
    position: absolute;
    left: 28px;
    top: 50%;
    font-size: 30px;
    font-weight: 700;
    font-family: "q4icons";
    -ms-transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.q4-financial-item.accordion-active .q4-category-text {
    color: #002454;
}

.q4-financial-item.accordion-active .q4-category-text:before {
    -ms-transform: translateY(-50%) rotate(270deg);
    -webkit-transform: translateY(-50%) rotate(270deg);
    transform: translateY(-50%) rotate(270deg);
}

.q4-quarterly-widget .q4-financial-documents {
    margin: 10px 0;
    padding-left: 10px;
}

.q4-quarterly-widget .q4-financial-document {
    position: relative;
}

.q4-quarterly-widget .q4-financial-document i[class*="q4i-"]:before {
    margin-right: 5px;
    content: "\e902";
    font-size: 16px;
    position: absolute;
    left: -20px;
    top: 0;
    margin-left: 1px;
}

.q4-quarterly-widget .q4-financial-document i.PDF:before {
    content: "\e903";
    margin-left: 0;
}

.q4-quarterly-widget .q4-financial-document i.XLSX:before,
.q4-quarterly-widget .q4-financial-document i.XLS:before {
    content: "\e901";
    margin-left: 0;
}

@media screen and (max-width: 940px) {
    .financialQuarterly .ModuleOuterContainer {
        padding-top: 20px;
    }
}


/*======================= END QUARTERLY REPORTS PAGE ===================================*/


/*============================ STOCK PAGE PAGE =========================================*/

.stockChart p a {
    color: #002454;
    border-bottom: 1px solid transparent;
}

.stockChart p a:hover {
    border-bottom: 1px solid #002454;
}


/*---------- Stock Quote Modules ----------*/

.StockQuoteContainer .StockPage {
    display: none;
}

.StockQuoteContainer h3 {
    margin-bottom: 0;
}

.StockQuoteContainer .StockPage,
.StockQuoteContainer .ModuleInnerContainer ul li {
    padding: 10px;
}

.stock-selects .text {
    display: none;
}

.stock-historical .stock-selects > span,
.stock-historical .stock-selects > select,
.stock-historical .stock-selects > div {
    margin-right: 10px;
}


/*.stock-historical .stock-selects button.disabled {
    opacity: 0.5;
    cursor: default;
}*/

.stock-historical .stock-selects button {
    display: inline-block;
    height: 42px;
}

.stock-historical li span {
    margin: 5px 0;
}


/*.StockQuoteContainer ul li:nth-child(4n),
.StockQuoteContainer ul li:nth-child(4n+3),
.stock-table ul li.alt {
    background-color: rgba(0, 0, 0, 0.05);
}*/

.stock-table > span {
    margin-top: 10px;
    display: block;
}

.StockQuoteContainer ul li {
    border-bottom: 1px solid #d8d8d8;
}

.StockQuoteContainer p {
    padding: 10px 0;
    font-size: 0.8rem;
    text-align: right;
}

.StockQuoteContainer p span {
    margin-left: 10px;
}

.StockQuoteContainer .StockTableTextLabel {
    float: left;
}

.StockQuoteContainer .StockData:before {
    content: "$";
    padding-right: 2px;
}

.StockQuoteContainer .Price:before {
    content: "$";
}

.StockQuoteContainer .StockData.Volume:before {
    display: none;
}

.StockQuoteContainer .StockData,
.StockQuoteContainer .StockPriceUp,
.StockQuoteContainer .StockPriceDown {
    float: right;
    font-weight: 700;
}

.historical-calc ul .text {
    float: left;
}

.historical-calc ul li .badge {
    float: right;
    text-align: right;
    font-weight: 700;
}

.historical-calc ul li.alt {
    background: rgb(250, 250, 250);
}

.stock-table li.col {
    padding: 10px;
    border-bottom: 1px solid #d8d8d8;
}

@media screen and (max-width: 768px) {
    .stock-historical .stock-selects .sbToggle:after {
        right: 15px;
        left: auto;
    }
    .historical-calc ul li.alt {
        background: none
    }
    .stock-table ul li:nth-child(even) {
        background: rgb(250, 250, 250);
    }
    .stock-historical li span {
        margin: 5px 0;
    }
    .stock-historical button,
    .stock-historical select {
        display: block;
        margin: 5px 0;
    }
}

@media screen and (max-width: 767px) {
    .stock-historical .stock-selects > div,
    .stock-historical .stock-selects button {
        width: 46%;
        max-width: 46%;
    }
}


/*========================== END STOCK PAGE PAGE =======================================*/


/*====================== INVESTMENT CALCULATOR PAGE ====================================*/


/*---------- Investor Calculator ----------*/

.calc-widget-investment-calculator {
    width: 100%;
}

.calc-widget-investment-calculator .calc-row {
    margin-bottom: 15px;
    display: inline-block;
    width: 33%;
}

.calc-widget-investment-calculator .calc-row.compare {
    display: block;
    width: 100%;
}

.calc-widget-investment-calculator .calc-row > span,
.calc-widget-investment-calculator .calc-input-group {
    display: block;
    margin-bottom: 10px;
}

.calc-widget-investment-calculator .calc-row input[type="text"],
.calc-widget-investment-calculator .compare .other {
    max-width: 100%;
}

.calc-widget-investment-calculator .compare .calc-input {
    display: inline-block;
    padding-right: 10px;
    margin-bottom: 10px;
}

.calc-widget-investment-calculator .calc-row + .calc-row input::-ms-clear,
.historical-calc .DatepickerBox input::-ms-clear {
    display: none;
}

.investCalculator {
    display: block;
    width: 100%;
    clear: both;
}

.InvCalc .calc-row + .calc-row,
.InvCalc .calc-row + .calc-row + .calc-row {
    margin-top: 15px;
}

.calc-widget-investment-calculator {
    width: 260px;
}

.calc-widget-investment-calculator,
.ui-datepicker {
    font-family: inherit;
    /*font-weight: 300;*/
    width: 100%;
    color: inherit;
}

.calc-widget-investment-calculator table,
.ui-datepicker table,
#calculator-popup-container table {
    border-collapse: collapse;
    border-spacing: 0;
}

.ui-datepicker a {
    text-decoration: none;
}

.calc-widget-investment-calculator input[type=text] {
    padding: 8px 10px;
    margin: 3px 0;
    width: 285px;
    color: inherit;
}

.historical-calc input.hasDatepicker {
    padding: 8px 10px;
}

.calc-widget-investment-calculator input.hasDatepicker,
.historical-calc input.hasDatepicker {
    background-image: url(//q4widgets.q4web.com/calendar/images/calendar-icon.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    cursor: pointer;
}

.calc-widget-investment-calculator input.hasDatepicker:hover,
.historical-calc input.hasDatepicker:hover {
    background-color: #f8f8f8;
}

.calc-widget-investment-calculator input.hasDatepicker:focus,
.calc-widget-investment-calculator input.hasDatepicker.focused,
.historical-calc input.hasDatepicker:focus,
.historical-calc input.hasDatepicker.focused {
    background-image: url(//q4widgets.q4web.com/calendar/images/calendar-icon-o.png);
    background-color: #002454;
    border-color: #f8f8f8;
    color: #fff;
    cursor: pointer;
}

.calc-widget-investment-calculator .compare .calc-label,
.calc-widget-investment-calculator .compare .calc-input {
    display: inline-block;
    margin: 10px 0;
    position: relative;
}

.calc-widget-investment-calculator .other input[type="text"] {
    display: none;
    position: absolute;
    top: -10px;
    left: 75px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    width: 200px;
    max-width: 200px;
}

.calc-widget-investment-calculator .calc-input {
    display: block;
}

.calc-widget-investment-calculator .calc-label {
    font-weight: 600;
    text-transform: capitalize;
}

.calc-loadingMessage {
    margin-top: 10px;
}

button.calc-button {
    margin-top: 10px;
    cursor: pointer;
}


/* Investment Calculator: Popup */

#calculator-popup-container {
    width: 96%;
}

#calculator-popup-container table {
    margin-top: 5px;
    width: 100%;
}

#calculator-popup-container table tr {
    border-bottom: 1px solid #cccccc;
}

#calculator-popup-container table tr th {
    font-weight: 600;
}

#calculator-popup-container table tr th:first-child,
#calculator-popup-container table tr td:first-child {
    text-align: left;
    padding-left: 5px;
}

#calculator-popup-container table tr th,
#calculator-popup-container table tr td {
    text-align: right;
    padding: 8px 5px;
}

.calc-title h2 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 30px;
}

.calc-title h3 {
    color: #606067;
    font-size: 20px;
    margin: 20px 0 2px;
}

.calc-title p {
    color: #b3b3b3;
    font-size: 14px;
}

.calc-widget-investment-calculator .calc-loadingMessage {
    display: none;
}

.calc-widget-investment-calculator.loading .calc-loadingMessage {
    display: block;
}


/* Investment Calculator: Date Picker Skin */

#ui-datepicker-div,
#ui-datepicker-div * {
    box-sizing: border-box;
}

#ui-datepicker-div {
    background-color: #f8f8f8;
    display: none;
    width: 285px;
}

#ui-datepicker-div {
    border: 0;
    background: none;
    color: inherit;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

#ui-datepicker-div,
.ui-corner-all {
    border-radius: 0;
}

#ui-datepicker-div select {
    color: #000;
    font-family: inherit;
}

#ui-datepicker-div .ui-widget-header {
    border: 0;
    background: none;
    font-weight: normal;
}

#ui-datepicker-div .ui-datepicker-header {
    padding: 0;
    position: static;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
    display: none;
}

#ui-datepicker-div .ui-datepicker-calendar {
    width: 100%;
    background-color: #f8f8f8;
}

#ui-datepicker-div .ui-datepicker-calendar a {
    padding: 0;
    text-align: center;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
    background-color: #f8f8f8;
    line-height: normal;
    margin: 0;
    padding: 15px 10px;
    text-align: left;
}

#ui-datepicker-div .ui-datepicker-calendar .ui-state-default {
    border: 0;
    background: none;
    font-weight: normal;
    color: #606067;
    display: inline-block;
    padding: 5px 0;
    width: 100%;
    text-align: center;
}

#ui-datepicker-div .ui-datepicker-calendar .ui-state-hover {
    background-color: #002454;
    color: #fff;
}

#ui-datepicker-div .ui-datepicker-calendar .ui-state-active {
    background: none;
    background-color: #002454;
    border: none;
    color: #fff;
}

#ui-datepicker-div .ui-datepicker-calendar .ui-state-disabled {
    color: #ddd;
}

#ui-datepicker-div table {
    font-size: inherit;
    margin: 0;
}

#ui-datepicker-div .ui-datepicker-calendar th {
    background-color: #dcdcdc;
    padding: 16px 0;
    text-align: center;
}

#ui-datepicker-div .ui-datepicker-calendar tr td {
    padding: 5px 0;
    text-align: center;
    width: 14.2857%;
}

#ui-datepicker-div .ui-datepicker-calendar tr td a {
    color: #41525c;
}

#ui-datepicker-div .ui-datepicker-calendar tr td a:hover {
    text-decoration: none;
}

#ui-datepicker-div .ui-datepicker-title select {
    /*border: 0;*/
    padding: 6px;
    margin-left: 1px;
    width: 66%;
}

#ui-datepicker-div .ui-datepicker-title select.ui-datepicker-year {
    width: 33%;
}


/* Investment Calculator: Autocomplete CSS */

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    padding: 4px 0;
    margin: 0 0 10px 25px;
    list-style: none;
    border-color: #ccc;
    border-color: rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
}

.ui-autocomplete .ui-widget-content {
    color: #000;
}

.ui-menu-item > a.ui-corner-all {
    display: block;
    padding: 3px 15px;
    clear: both;
    font-weight: normal;
    line-height: 18px;
    color: #555555;
    white-space: nowrap;
    text-decoration: none;
}

.ui-state-hover,
.ui-state-active,
.ui-state-focus {
    color: #ffffff;
    text-decoration: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    background-image: none;
}

.calc-shares {
    display: none;
}

.calc-row input[type="checkbox"] {
    vertical-align: baseline;
}

.calc-widget-investment-calculator .other .checked + input[type="text"] {
    display: block;
}

.calc-widget-investment-calculator .icheckbox_minimal {
    vertical-align: top;
}

.calc-widget-investment-calculator .calc-inline {
    display: inline-block;
    margin-right: 10px;
}

@media screen and (max-width: 848px) {
    .calc-widget-investment-calculator .calc-row {
        margin-bottom: 15px;
        display: inline-block;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .calc-widget-investment-calculator .other .checked + input[type="text"] {
        display: block;
        position: static;
    }
    .calc-widget-investment-calculator .compare .calc-input {
        display: block;
        padding-right: 10px;
        margin-bottom: 10px;
    }
}


/*=================== END  INVESTMENT CALCULATOR PAGE ==================================*/


/*========================= OWNERSHIP PROFILE PAGE ======================================*/

.topInstitutions {
    display: none;
}

.ownership h3 {
    font-family: "Noto Sans", sans-serif;
    font-style: italic;
    color: #213268;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 10px;
    padding: 5px 0;
}


/*======================== END  OWNERSHIP PROFILE PAGE ==================================*/


/*========================= ANALYST COVERAGE PAGE ======================================*/


/*---------- Default Table Style ----------*/

.custom-table,
.q4Table {
    width: 100%;
    margin-bottom: 20px;
}

.custom-table thead,
.q4Table .heading {
    background-color: #3F5A7E;
}

.custom-table thead th,
.q4Table .heading th {
    color: #fff;
    padding: 10px 5px;
}

.custom-table td,
.custom-table th,
.q4Table td,
.q4Table th {
    padding: 5px;
    text-align: left;
}

.custom-table tr,
.q4Table tr {
    border-bottom: 1px solid #3F5A7E;
}

.custom-table tbody tr:nth-child(even),
.q4Table tbody tr:nth-child(even) {
    background-color: #fbfbfb;
}

.custom-table th span,
.custom-table td span,
.q4Table th span,
.q4Table td span {
    padding: 0;
    line-height: 22px;
}

.analyst-coverage a {
    word-break: break-word;
    color: rgb(0, 204, 153);
}

.analyst-coverage a:hover {
    border-bottom: 1px solid #002454;
}


/*----- Better Analyst Coverage Table -----*/

@media screen and (min-width: 769px) {
    .analyst-coverage tr > .col {
        display: table-cell;
    }
}

@media screen and (max-width: 768px) {
    .analyst-coverage thead {
        display: none;
    }
    .analyst-coverage tr td:before {
        content: attr(data-heading);
        box-sizing: border-box;
        display: inline-block;
        width: 50%;
        margin-right: -.25em;
        vertical-align: top;
    }
}

@media screen and (max-width: 450px) {
    table.custom-table,
    table.q4Table {
        display: block;
        overflow-x: auto;
    }
    .analyst-coverage table.custom-table {
        display: table;
    }
}


/*======================= END ANALYST COVERAGE PAGE ====================================*/


/*============================== FAQ PAGE ==============================================*/


/*------ Frequently Asked Questions -------*/

.FaqContainer .FaqQuestion {
    padding: 35px 10px 35px 85px;
    line-height: 1.3;
    background-color: #F6F6F6;
    font-weight: 500;
}

.FaqContainer h4.FaqQuestion {
    font-size: 18px;
    cursor: pointer;
    position: relative;
}

.FaqContainer h4.FaqQuestion:after {
    font-family: "q4icons";
    position: absolute;
    left: 10px;
    top: 30%;
    content: "\e916";
    font-size: 30px;
    -ms-transform: rotate(90deg) translateY(-50%);
    -webkit-transform: rotate(90deg) translateY(-50%);
    transform: rotate(90deg) translateY(-50%);
    font-weight: 700;
}

.ModuleItemRow.accordion-active h4.FaqQuestion {
    color: #002454;
}

.ModuleItemRow.accordion-active h4.FaqQuestion:after {
    -ms-transform: rotate(270deg) translateY(-50%);
    -webkit-transform: rotate(270deg) translateY(-50%);
    transform: rotate(270deg) translateY(-50%);
    left: 50px;
}

.FaqContainer h4.FaqQuestion:hover {
    color: #002454;
}

.FaqQuestion:focus {
    outline: none;
}

.FaqContainer .FaqAnswer {
    padding: 30px 0;
}

.FaqContainer .FaqQuestionList,
.FaqContainer .FaqAnswerLink,
.FaqContainer .FaqAnswer,
.FaqContainer .BackToTopLink {
    display: none;
}


/*============================ END FAQ PAGE ============================================*/


/*========================= MAIL ALERTS PAGE ===========================================*/


/*--------- Mailing List Modules ----------*/

div.subscribe-text {
    margin-bottom: 0;
}

div.subscribe-text p {
    margin-bottom: 0;
}

.RequiredField,
.RedStar {
    color: red;
}

.subscribe-text .ModuleOuterContainer {
    padding: 0;
}

.topText .ModuleOuterContainer {
    padding-top: 30px;
}

.PaneContent .GridActions {
    margin-top: 16px;
}

.MailingListSignupContainer ul.error-container {
    margin-bottom: 5px;
}

.MailingListSignupContainer label {
    vertical-align: middle;
}

.EditSubscriberConfirmation:not(:empty) {
    padding: 20px 0;
}

.MailingListSignupContainer .ModuleOuterContainer,
.MailingListUnsubscribeContainer .ModuleOuterContainer {
    padding-top: 0;
}

.MailingListSignupContainer table,
.MailingListUnsubscribeContainer table {
    width: 100%;
    max-width: 450px;
}

.MailingListSignupContainer table td,
.MailingListUnsubscribeContainer table td {
    padding: 5px 0;
}

.MailingListSignupContainer table td.MailingListCol1,
.MailingListSignupContainer table td.MailingListCol2,
.MailingListUnsubscribeContainer table td.MailingListCol1,
.MailingListUnsubscribeContainer table td.MailingListCol2 {
    float: left;
    display: block;
    width: 100%;
}


/*.MailingListSignupContainer table td.MailingListCol2,
.MailingListUnsubscribeContainer table td.MailingListCol2 {
    margin-bottom: 10px;
}*/

.MailingListUnsubscribeContainer table td.ButtonCell {
    padding: 15px 0 5px;
}

.MailingListSignupContainer table input[type="text"],
.MailingListUnsubscribeContainer table input[type="text"],
.MailingListSignupContainer table select {
    width: 100% !important;
}

.MailingListSignupContainer table input[type="checkbox"] {
    margin-right: 10px;
}

.MailingListSignupContainer table .RequiredField,
.MailingListUnsubscribeContainer table .RequiredField {
    width: 10%;
}

.MailingListSignupContainer table table {
    margin: 0;
}

.MailingListSignupContainer .NoBr {
    display: none;
}

.MailingListSignupContainer .CaptchaContainer {
    display: none;
}

@media screen and (max-width: 1274px) {
    .topText .ModuleOuterContainer {
        padding-top: 20px;
    }
}


/*====================== END MAIL ALERTS PAGE ==========================================*/


/*====================== DIVIDEND HISTORY PAGE ==========================================*/

.divHistory .table-responsive {
    overflow-x: auto;
}

.divHistory .table-responsive table {
    display: table;
    width: calc(100% - 1px);
    min-width: 700px;
}

.wrapper-calculate p {
    display: inline-block;
}

.calculate {
    margin-top: 10px;
    background: #F5F5F5;
    padding: 20px 10px;
}

.calculate p {
    margin: 5px;
}

@media screen and (max-width: 480px) {
    input[type="submit"].btn-calc {
        margin-top: 7px;
    }
}


/*=================== END DIVIDEND HISTORY PAGE =========================================*/


/*=================== CORPORATE GOVERNANCE PAGE =========================================*/


/*-------------- Person List --------------*/


/*.PersonGenericContainer .ModuleOuterContainer {
    padding: 0;
}

.PersonGenericContainer .ModuleInnerContainer .PersonContainer:first-child {
    margin-top: 30px;
}

.PersonGenericContainer .ModuleInnerContainer .PersonContainer:last-child {
    margin-bottom: 30px;
}*/

.PersonGenericContainer .personHeader {
    padding: 23px 10px 5px 85px;
    line-height: 1.3;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    background-color: #F6F6F6;
    font-weight: 500;
}
.PersonGenericContainer .PersonContainer:last-child .personHeader {
    margin-bottom: 0;
}

.personHeader .q4i-icon-expert {
    display: none;
}

.PersonGenericContainer .personHeader:after {
    font-family: "q4icons";
    position: absolute;
    left: 29px;
    top: 50%;
    content: "\e916";
    font-size: 30px;
    -ms-transform: translateY(-50%) rotate(90deg);
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    font-weight: 900;
}

.PersonContainer.accordion-active .personHeader {
    color: #002454;
}

.PersonContainer.accordion-active .personHeader:after {
    -ms-transform: translateY(-50%) rotate(270deg);
    -webkit-transform: translateY(-50%) rotate(270deg);
    transform: translateY(-50%) rotate(270deg);
}

.PersonGenericContainer .personHeader:hover {
    color: #002454;
}

.PersonGenericContainer a {
    position: relative;
    /*margin-left: 20px;*/
    display: inline-block;
    color: #002454;
    border-bottom: 1px solid transparent;
}

.PersonGenericContainer a:hover {
    border-bottom: 1px solid #002454;
}


/*.PersonGenericContainer a[href$=".pdf"]:before {
    font-family: "q4icons";
    content: "\e903";
    font-size: 16px;
    margin-right: 5px;
    color: #002454;
    position: absolute;
    left: -20px;
    top: -2px;
}*/

.PersonGenericContainer .committee-icons > span {
    display: block;
}

.PersonGenericContainer .committee-icons i {
    margin-right: 5px;
}

.PersonGenericContainer .committee-icons i.chair {
    color: #0f5ca3;
}

.PersonGenericContainer .PersonComma {
    display: none;
}

.PersonGenericContainer .PersonTitle {
    display: block;
    color: #3F5A7E;
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.4;
    font-weight: 600;
}

.personHeader:focus {
    outline: none;
}

.PersonGenericContainer .PersonDescription {
    padding: 15px 0 25px 90px;
}

.PersonGenericContainer .PersonDetailsContainer > div {
    vertical-align: middle;
}

.PersonGenericContainer .PersonPhoto img,
.PersonGenericDetailsContainer .PersonDetailsImageContainer img {
    display: inline-block;
    max-width: 100%;
    padding-bottom: 1rem;
}

.PersonGenericContainer h3,
.PersonGenericDetailsContainer .PersonDetailsNameContainer {
    margin-bottom: 25px;
}

.PersonGenericContainer p {
    margin-bottom: 0;
    padding-bottom: 25px;
}

.PersonGenericContainer .PersonDescription > span,
.PersonGenericDetailsContainer .PersonDetailsDescriptionContainer > span {
    /*line-height: 200%;*/
}

@media screen and (max-width: 768px) {
    .PersonGenericContainer .personHeader {
        padding: 20px 10px 5px 60px;
    }
    .PersonGenericContainer a {
        vertical-align: middle;
        width: 90%;
        border-bottom: 1px solid transparent;
    }
    .PersonGenericContainer a:hover {
        border-bottom: 1px solid transparent;
    }
    .PersonGenericContainer .personHeader:after {
        font-size: 25px;
        left: 19px;
    }
    .PersonGenericContainer .PersonDescription {
        padding-left: 60px;
    }
}


/*-------------------- Committee Composition Table --------------------------*/

.committee-composition .noColor {
    color: #444;
}

.committee-composition .person-header {
    background: #3F5A7E;
}

.committee-composition .person-header a {
    color: #fff;
    border-bottom: 1px solid transparent;
}

.committee-composition .person-header a:hover {
    border-bottom: 1px solid #fff;
}

.committee-composition .person-header {
    padding: 10px 5px;
}

.committee-composition .mobile .person-category {
    margin-bottom: 10px;
}

.committee-composition .mobile .person-header {
    padding-left: 10px;
    cursor: pointer;
}

.committee-composition .mobile .person-header > div {
    line-height: 20px;
}

.committee-composition .person-item > div {
    padding: 10px 5px;
}

.committee-composition .mobile .q4i-rounded-downchevon {
    color: #fff;
}

.committee-composition .person-header > div ~ div,
.committee-composition .person-item > div > div ~ div {
    text-align: center;
    line-height: 20px;
    position: relative;
}

.committee-composition .person-item {
    border-bottom: 1px solid #d8d8d8;
}

.committee-composition .person-item p {
    margin-bottom: 0;
}

.committee-composition .person-header i:before {
    content: "\e916";
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 17px;
    font-size: 20px;
    position: absolute;
}

.committee-composition .person-category[class*="active"] .person-header i:before {
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.committee-composition .person-item:nth-child(odd) {
    background-color: rgb(250, 250, 250);
}

.committee-composition .person-bio {
    text-align: left;
}

.committee-composition .person-item.active > div:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.committee-composition .chair {
    color: rgb(0, 204, 153);
}

.committee-composition .person-legend {
    margin-top: 20px;
}

.committee-composition .person-legend span {
    margin-right: 20px;
}

.committee-composition .mobile,
.committee-composition .person-bio,
.committee-composition .person-items {
    display: none;
}

.personFancy p {
    padding: 0 10px 20px;
    margin-bottom: 0;
}

.person-item a {
    color: #002454;
    border-bottom: 1px solid transparent;
}

.person-item a:hover {
    border-bottom: 1px solid #002454;
}

.personFancy .committee-icons {
    padding-left: 10px;
    display: none;
}

.personFancy .personName {
    font-weight: 700;
}

.govHotline ul li {
    padding: 5px 0;
}

@media screen and (max-width: 768px) {
    .committee-composition .person-header > div ~ div,
    .committee-composition .person-item > div > div ~ div {
        text-align: right;
        padding-right: 20px;
    }
    .personFancy .committee-icons {
        padding-left: 0;
    }
    .personFancy p {
        padding: 0 0 20px;
    }
    .person-bio.col {
        padding-left: 0;
    }
    .person-bio.col a {
        word-break: break-word;
    }
    .committee-composition .desktop {
        display: none;
    }
    .committee-composition .mobile {
        display: block;
    }
    .committee-composition .person-legend span {
        display: block;
        margin: 5px 0;
    }
}


/*================= END CORPORATE GOVERNANCE PAGE =======================================*/


/*===================== CONTACT THE BOARD PAGE ==========================================*/

.contactBoard .ModuleOuterContainer {
    padding-bottom: 0;
}

.contactBoard li {
    padding: 5px 0;
}


/*------------- Form Builder --------------*/

.FormBuilderContainer .ErrorContainer:not(:empty) {
    margin-bottom: 20px;
}

.FormBuilderContainer .ModuleOuterContainer {
    padding-top: 0;
}

.FormBuilderContainer textarea {
    min-height: 140px;
    max-width: 270px;
    width: 100%;
}

.FormBuilderContainer .Item {
    margin-bottom: 10px;
}

.FormBuilderContainer input[type="text"],
.FormBuilderContainer select {
    width: 100%;
}

.FormBuilderContainer select {
    border-radius: 0;
    background-color: #fff;
}

.FormBuilderContainer .label-wrap,
.FormBuilderContainer .field-wrap,
.FormBuilderContainer .error-wrap {
    display: inline-block;
    vertical-align: middle;
}

.FormBuilderContainer .label-wrap {
    min-width: 175px;
}

.FormBuilderContainer .field-wrap {
    width: 270px;
    margin-right: 10px;
}

.FormBuilderContainer .error-wrap {
    color: red;
    font-size: 0.8rem;
}

.FormBuilderContainer .CaptchaContainer table tr:first-child {
    display: none;
}

.FormBuilderContainer .CaptchaContainer table td {
    padding-bottom: 10px;
}

.FormBuilderContainer .CaptchaContainer img {
    width: 100%
}

.FormBuilderContainer .CaptchaContainer span {
    color: #FF0000;
}

.FormBuilderContainer input[type="submit"] {
    margin-left: 178px;
}

.ModuleItemRow .MessageSent {
    padding: 0;
}

.MessageSent,
.PaneContent .MailingListActivationMessage,
.PaneContent .MailingListUnsubscribeAction {
    color: green;
    font-weight: 700;
    padding: 10px 0 30px;
    display: inline-block;
}

.PaneContent .MailingListUnsubscribeAction,
.PaneContent .MailingListActivationMessage {
    padding: 5px 0 30px;
}

@media screen and (max-width: 502px) {
    .FormBuilderContainer input[type="submit"] {
        margin-left: 0;
    }
    .FormBuilderContainer .label-wrap {
        margin-bottom: 5px;
    }
}


/*==================== END CONTACT THE BOARD PAGE =======================================*/


/* Home page */
.acquisitions img {
 /*   max-width: 30%; */
}
.module-cta .module-cta_button {
    background-color: #002454 !important;
}
.module-back-top {
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 155px;
    right: 15%;
    z-index: 10;
    transform: rotate(180deg);
}
@media screen and (max-width: 1200px) {
    .module-back-top {
        bottom: 100px;
        right: 20px;
    }
}
.module-back-top.js--active {
    display: block;
}

.module-financial_year-text{
    font-size: 16px;
}

.person-legend-bod {
margin-right:20px;
}


/*Updates for #293127*/

.module-home-news .module_date-time {
    display: inline-block;
    margin-bottom: 3px;
    font-size: 11px;
    color: #002454;
    line-height: 19px;
}

.module-home-news .module_headline-link {
    display: inline;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 1rem;
}

.module-home-news .module_headline-link:hover {
    border-bottom: 1px solid #002454;
    color: #002454;
}

.module-home-news .ModuleMoreLink {
    margin-top: 5px;
    display: inline-block;
    font-size: 11.3px;
    border-bottom: 1px solid transparent;
}

.module-home-news .ModuleViewAll {
    padding: 10px 15px;
    font-size: 14px;
    color: rgb(0, 204, 153);
    font-weight: 700;
    line-height: 22px;
}

.module-home-news .ModuleViewAll:hover {
    background: #f7f5fe;
    color: #213268;
}

.module-home-news .ModuleViewAllContainer {
    position: relative;
    margin-top: 20px;
}

.module-home-news .ModuleViewAll:before {
    position: absolute;
    left: 0;
    top: 4px;
    content: "";
    display: block;
    border-left: 7px solid #dadada;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
