/*-----------------------------------------*\
------------------ 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 */


/*html,
.col {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1;
}
*/

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}


/* Preview Override */

body.PreviewBody {
    margin: 0;
    background-position: 0 0;
}

.PreviewToolBar {
    display: none;
}

.hidden {
    display: none !important;
}


/*-----------------------------------------*\
--------------- Accessibility ---------------
\*-----------------------------------------*/


/*------------ Default Styles -------------*/


/*a:focus {
    text-decoration: underline !important;
}
*/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/*--- Accessibility Skip Navigation Link --*/

.accSkipLink a {
    position: absolute;
    top: -40px;
    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: 'icomoon';
    font-size: 80px;
    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: '\e90f';
}

[dir="rtl"] .slick-prev:before {
    content: '\e90f';
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: '\e910';
}

[dir="rtl"] .slick-next:before {
    content: '\e910';
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 17px;
    width: 17px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    border-radius: 100%;
    position: relative;
}

.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: 8px;
    left: 5px;
    content: "\e907";
    /*width: 20px;
    height: 20px;*/
    font-family: 'q4icons';
    font-size: 5px;
    /*line-height: 1;*/
    vertical-align: middle;
    text-align: center;
    color: #fff;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

.slick-dots li.slick-active button {
    border: 1px solid #fff;
}


/*--------------- 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;
    color: #444;
    text-shadow: none;
    background: #f9f9f9;
    -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-close::before {
    font-size: 1.125rem;
}

#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: -25px;
    right: -25px;
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 8040;
    color: #fff;
}

.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');*/
    background-color: rgba(44, 62, 80, 0.98);
}

.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 {
        background-size: 44px 152px;
    }
    .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*/
    }
}

#fancybox-loading div {
    /*    margin: -.3125rem .25rem;
    top: 50%;
    left: 50%;*/
    -webkit-animation-name: secondcrawler;
    animation-name: secondcrawler;
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

#fancybox-loading div::before,
#fancybox-loading div::after {
    content: '';
    display: block;
    top: 0;
    -webkit-animation-name: firstcrawler;
    animation-name: firstcrawler
}

#fancybox-loading div::before {
    left: -.25rem;
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

#fancybox-loading div::after {
    right: -.25rem;
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

#fancybox-loading div,
#fancybox-loading div::before,
#fancybox-loading div::after {
    position: absolute;
    width: .125rem;
    height: .625rem;
    border-radius: .25rem;
    background-color: #22a7f0;
    will-change: transform, opacity;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: .66s;
    animation-duration: .66s
}

@-webkit-keyframes firstcrawler {
    0%,
    80%,
    100% {
        -webkit-transform: scaleY(0.9);
        transform: scaleY(0.9);
        opacity: .5
    }
    40% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
        opacity: 1
    }
}

@keyframes firstcrawler {
    0%,
    80%,
    100% {
        -webkit-transform: scaleY(0.9);
        transform: scaleY(0.9);
        opacity: .5
    }
    40% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
        opacity: 1
    }
}

@-webkit-keyframes secondcrawler {
    0%,
    80%,
    100% {
        -webkit-transform: scaleY(1.2);
        transform: scaleY(1.2);
        opacity: .5
    }
    40% {
        -webkit-transform: scaleY(1.6);
        transform: scaleY(1.6);
        opacity: 1
    }
}

@keyframes secondcrawler {
    0%,
    80%,
    100% {
        -webkit-transform: scaleY(1.2);
        transform: scaleY(1.2);
        opacity: .5
    }
    40% {
        -webkit-transform: scaleY(1.6);
        transform: scaleY(1.6);
        opacity: 1
    }
}


/*--------------- SelectBox  --------------*/

.sbHolder {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #CDD2D5;
    vertical-align: middle;
    /*from client*/
    /*float: left;*/
    height: 44px;
    border-radius: .1875rem;
}

.PaneContentInner .sbHolder a,
.PaneContentInner .sbHolder .sbOptions a {
    color: #2c3e50;
}

.sbHolder:focus .sbSelector {}

.sbSelector {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    /*width: 70px;*/
    /*height: 30px;*/
    outline: none;
    overflow: hidden;
    text-indent: 10px;
    line-height: 30px;
    /*fron client*/
    font-size: 14px;
    width: 100%;
    height: 100%;
    padding-top: 6px;
}

.sbSelector:link,
.sbSelector:visited,
.sbSelector:hover {
    outline: none;
    text-decoration: none;
}

.sbToggle {
    /*background: url('../design/select-icons.png') 0 -116px no-repeat;*/
    background: url('../design/select-icons.png') -2px -116px no-repeat;
    margin-top: 6px;
    display: block;
    height: 30px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
}

.sbToggle:hover {
    background: url('../design/select-icons.png') -2px -167px no-repeat;
    margin-top: 6px;
}

.sbToggleOpen {
    background: url('../design/select-icons.png') -2px -16px no-repeat;
    margin-top: 6px;
}

.sbToggleOpen:hover {
    background: url('../design/select-icons.png') -2px -66px no-repeat;
    margin-top: 6px;
}

.sbHolderDisabled {
    background-color: #3C3C3C;
    border: 1px solid #CDD2D5;
}

.sbHolderDisabled .sbHolder {}

.sbHolderDisabled .sbToggle {}

.sbOptions {
    background-color: #fff;
    border: 1px solid #CDD2D5;
    list-style: none;
    left: -1px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%!important;
    width: 200px;
    z-index: 1;
    overflow-y: auto;
    /*from client*/
    margin-top: 0!important;
    width: 100px;
}

.sbOptions li {
    padding: 0 7px;
}

.sbOptions a {
    border-bottom: dotted 1px rgba(0, 0, 0, 0.1);
    display: block;
    outline: none;
    padding: 7px 0 7px 3px;
}

.sbOptions a:link,
.sbOptions a:visited {
    text-decoration: none;
}

.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus {
    color: #EBB52D;
}

.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 -------------
\*-----------------------------------------*/


/*-------- Download List with Tags --------*/

.ModuleDownloadListWithTags .ModuleItemRow {
    padding: 10px 0;
}

.ModuleDownloadListWithTags .ModuleItemRow ~ .ModuleItemRow {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ModuleDownloadListWithTags .ModuleHeadlineLink:after {
    font-family: "q4icons";
    content: "\e62a";
    display: inline-block;
    float: right;
    cursor: pointer;
    font-size: 18px;
}

.ModuleDownloadListWithTags .ModuleHeadlineLink[href*=".html"]:after {
    content: "\e638";
}

.ModuleDownloadListWithTags .ModuleHeadlineLink[href*=".xls"]:after,
.ModuleDownloadListWithTags .ModuleHeadlineLink[href*=".xlsx"]:after {
    content: "\e90b";
}

.ModuleDownloadListWithTags .ModuleHeader,
.ModuleDownloadListWithTags .ModuleDate,
.ModuleDownloadListWithTags .ModuleFileSizeText,
.ModuleDownloadListWithTags .ModuleIcon {
    display: none;
}


/*------------- Event Modules -------------*/

.ModuleEvent .ModuleYearNavContainer,
.ModuleEvent .ModuleHeader,
.ModuleEventLatest .ModuleYearNavContainer,
.ModuleEventLatest .ModuleHeader {
    margin-bottom: 10px;
}

.ModuleEvent .ModuleItemRow,
.ModuleEventLatest .ModuleItemRow {
    margin-bottom: 25px;
}

.ModuleEvent .ModuleHeadlineLink,
.ModuleEvent .ModuleDateContainer span,
.ModuleEvent .ModuleLocation,
.ModuleEvent .ModuleSpeakers h3,
.ModuleEventLatest .ModuleHeadlineLink,
.ModuleEventLatest .ModuleDateContainer span,
.ModuleEventLatest .ModuleLocation,
.ModuleEventLatest .ModuleSpeakers h3,
.ModuleEventDetails .ModuleDateContainer span,
.ModuleEventDetails .ModuleLocation,
.ModuleEventDetails .ModuleSpeakers,
.ModuleEventDetails .ModuleSpeakers h3 {
    display: block;
    margin-bottom: 5px;
}

.ModuleEvent .ModuleSpeakers li,
.ModuleEventLatest .ModuleSpeakers li,
.ModuleEventDetails .ModuleSpeakers li {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
}


/*.ModuleEvent .ModuleYearNavContainer a,*/

.ModuleEvent .WebcastLink a,
.ModuleEvent .PressRelease a,
.ModuleEvent .ModuleLinks a,
.ModuleEvent .presentation a,
.ModuleEvent .FinancialReport a,
.ModuleEvent .AddToCalendar,
.ModuleEvent .ModuleMore a,

/*.ModuleEventLatest .ModuleYearNavContainer a,*/

.ModuleEventLatest .WebcastLink a,
.ModuleEventLatest .PressRelease a,
.ModuleEventLatest .ModuleLinks a,
.ModuleEventLatest .presentation a,
.ModuleEventLatest .FinancialReport a,
.ModuleEventLatest .AddToCalendar,

/*.ModuleEventDetails .ModuleYearNavContainer a,*/

.ModuleEventDetails .WebcastLink a,
.ModuleEventDetails .PressRelease a,
.ModuleEventDetails .ModuleLinks a,
.ModuleEventDetails .presentation a,
.ModuleEventDetails .FinancialReport a,
.ModuleEventDetails .AddToCalendar {
    display: inline-block;
    /*padding: 10px;*/
    /*margin-bottom: 5px;*/
    /*background-color: rgba(0, 0, 0, 0.1);*/
    color: rgb(34, 167, 240);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

.ModuleEvent .ModuleBody:not(:empty),
.ModuleEventLatest .ModuleBody:not(:empty),
.ModuleEventDetails .ModuleBody:not(:empty) {
    /*border: 1px solid rgba(0, 0, 0, 0.1);*/
    padding: 15px 0;
    margin: 10px 0 15px;
}

.ModuleEvent .AddToCalendar div,
.ModuleEventLatest .AddToCalendar div,
.ModuleEventDetails .AddToCalendar div {
    display: inline-block;
}

.ModuleEvent .ModuleHeadlineLink,
.ModuleEventLatest .ModuleHeadlineLink {
    /*font-size: 1.5rem;*/
    margin-bottom: 1rem;
}

.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;
}

.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 {
    color: #22a7f0;
}


/*------ Frequently Asked Questions -------*/

.FaqContainer .ModuleItemRow {
    padding: 20px 0;
}

.FaqContainer .ModuleItemRow ~ .ModuleItemRow {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.FaqContainer .FaqQuestion {
    font-weight: bold;
}

.FaqContainer .FaqAnswer {
    margin-top: 1rem;
}

.FaqContainer .FaqQuestionList,
.FaqContainer .FaqAnswerLink,
.FaqContainer .FaqAnswer,
.FaqContainer .BackToTopLink {
    display: none;
}


/*------- 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;
}


/*------------- Form Builder --------------*/

.FormBuilderContainer .ErrorContainer {
    margin-bottom: 20px;
}

.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"] {
    ]
}


/*---------------- 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;
}


/*--------- Mailing List Modules ----------*/

div.subscribe-text {
    margin-bottom: 0;
}

.MailingListSignupContainer table,
.MailingListUnsubscribeContainer table {
    width: 100%;
    max-width: 450px;
    margin: 10px 0;
}

.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: 90% !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 input[type="submit"],
.MailingListUnsubscribeContainer input[type="submit"] {}

.MailingListSignupContainer .CaptchaContainer {
    display: none;
}


/*-------------- Person List --------------*/

.PersonGenericContainer .PersonItem {
    margin-bottom: 25px;
}

.PersonGenericContainer .PersonDetailsContainer > div {
    vertical-align: middle;
}

.PersonGenericContainer .PersonPhoto img {
    display: inline-block;
    max-width: 100%;
}

.PersonGenericContainer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.PersonGenericContainer .PersonDescription > span {
    line-height: 200%;
}

@media screen and (max-width: 768px) {
    .PersonGenericContainer .PersonPhoto {
        margin-bottom: 25px;
    }
    .PersonGenericContainer .PersonPhoto,
    .PersonGenericContainer h3 {
        text-align: center;
    }
}


/*---------  Presentation Module ----------*/

.ModulePresentation .ModuleHeader {
    display: none;
}

.ModulePresentation .ModuleHeadline,
.ModulePresentation .ModuleHeadlineLink {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ModulePresentation .ModuleDateContainer {
    margin-bottom: 10px;
}

.ModulePresentation .ModuleItemRow {
    margin-bottom: 25px;
}

.ModulePresentation .PresentationLinks {
    display: inline-block;
}

.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;
    }
}


/*--------- Press Release Modules ---------*/

.ModulePressRelease .ModuleYearNavContainer,
.ModulePressReleaseLatest .ModuleYearNavContainer {
    margin-bottom: 10px;
}

.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,
.ModulePressReleaseLatest .ModuleDate,
.ModulePressReleaseDetails .ModuleDateContainer,
.ModulePressReleaseDetails .ModuleLinks {
    margin-bottom: 10px;
}

.ModulePressRelease .ModuleHeadlineLink,
.ModulePressReleaseLatest .ModuleHeadlineLink,
.ModulePressReleaseDetails .ModuleDetailHeadline {
    /*font-size: 1.5rem;*/
    margin-bottom: 1rem;
}

.ModulePressReleaseLatest .ModuleHeadlineLink {
    display: block;
}

.ModulePressRelease .ModuleItemRow,
.ModulePressReleaseLatest .ModuleItemRow {
    margin-bottom: 25px;
}

.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: 18px;
}

.ModulePressRelease .ModuleBody,
.ModulePressReleaseLatest .ModuleBody {
    margin: 1rem 0;
    line-height: 1.5rem;
}

.RssLinkTopContainer,
.RssLinkBottomContainer {
    margin-top: 18px;
}


/*div.prDetails .PageDefaultInner .PaneContent {
    width: auto;
    padding: 20px;
}*/

div.prDetails .PageDefaultInner .PaneLeft,
div.prDetails .PageDefaultInner .PaneRight {
    display: none;
}

.ModulePressReleaseDetails ul {
    list-style: inside;
}

.ModulePressReleaseDetails ul ul {
    margin-left: 1rem;
}

.ModulePressReleaseDetails ul li {
    line-height: 1.5rem;
}


/*---------- Quick Links Modules ----------*/

.RightColumnBlock {
    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: "...";
}

.SearchResultsContainer .SearchResultUrl {
    display: none;
}

.SearchResultsContainer .SearchResultsPaging a {
    font-weight: bold;
}

.SearchResultsContainer .SearchResultsPaging a:link {
    font-weight: inherit;
}


/*----------- 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 .ModuleContainerInner > div {
    padding: 10px;
}

.ModuleSECFilingDetails [class^="q4i-"]:before {
    font-size: 18px;
    margin-right: 6px;
}

.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: 2rem;
}

@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;
}

.SiteMapContainer .SiteMapList li.SiteMap-Level3 {
    padding: 10px;
}


/*---------- Stock Quote Modules ----------*/

.StockQuoteContainer .StockPage,
.StockQuoteContainer .ModuleContainerInnerTop ul li,
.stock-historical ul li,
.stock-historical .stock-selects {
    padding: 10px;
}

.StockQuoteContainer .StockPage,
.stock-historical .stock-selects {
    background-color: rgba(0, 0, 0, 0.1);
}

.stock-historical .stock-selects > span,
.stock-historical .stock-selects > select,
.stock-historical .stock-selects > div {
    margin-right: 10px;
}

.stock-historical .stock-selects button {
    border: 1px solid #fff;
}

.stock-historical .stock-selects button.disabled {
    opacity: 0.5;
    cursor: default;
}

.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);
}

.StockQuoteContainer p {
    padding: 10px 0;
    font-size: 0.8rem;
    text-align: right;
}

.StockQuoteContainer p span {
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    .stock-historical li span {
        margin: 5px 0;
    }
    .stock-historical .stock-selects > span,
    .stock-historical .stock-selects > div,
    .stock-historical button,
    .stock-historical select {
        display: block;
        margin: 5px 0;
    }
}


/*----------- Stock Quote Header ----------*/

.StockQuoteHeaderContainer .StockPrice {
    font-weight: normal;
}

.StockQuoteHeaderContainer .StockChange,
.StockQuoteHeaderContainer .StockPChange {
    font-size: 0.8rem;
    vertical-align: top;
}

.StockQuoteHeaderContainer .StockChange {
    display: none;
}

.StockQuoteHeaderContainer .StockChange:before,
.StockQuoteHeaderContainer .StockPChange:before {
    content: "(";
}

.StockQuoteHeaderContainer .StockChange:after,
.StockQuoteHeaderContainer .StockPChange:after {
    content: ")";
}

.StockQuoteHeaderContainer .StockPriceDown {
    color: #FF0000;
}

.StockQuoteHeaderContainer .StockPriceUp {
    color: #00FF00;
}

.StockQuoteHeaderContainer .StockVolumeText,
.StockQuoteHeaderContainer .StockDate {
    margin-left: 5px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 10px;
}

@media screen and (max-width: 1024px) {
    .StockQuoteHeaderContainer .StockDate,
    .StockQuoteHeaderContainer .StockVolumeText,
    .StockQuoteHeaderContainer .StockVolume {
        display: none;
    }
}


/*-----------------------------------------*\
----------- Default Widget Styling ----------
\*-----------------------------------------*/


/*-------- 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: 200px;*/
}

.q4-atc-wrapper .q4-atc-button {
    cursor: pointer;
    -webkit-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;
    min-width: 250px;
}

.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: 56px;
    height: 56px;
    margin-right: 6px;
    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: '\e908';
}

.q4-atc-wrapper .q4-atc-links li.google a:before {
    content: '\e90a';
}

.q4-atc-wrapper .q4-atc-links li.outlook a:before {
    content: '\e909';
}

.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;
}


/*----- Committee Composition Table -----*/

.committee-composition .person-header,
.committee-composition .person-item > div {
    padding: 15px 5px;
}

.committee-composition .person-header > div ~ div,
.committee-composition .person-item > div > div ~ div {
    text-align: center;
}

.committee-composition .person-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.committee-composition .person-category.active .person-header i:before {
    content: "\e650";
}

.committee-composition .person-item:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.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 .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;
}

@media screen and (max-width: 768px) {
    .committee-composition .desktop {
        display: none;
    }
    .committee-composition .mobile {
        display: block;
    }
    /*    .committee-composition .person-legend span {
        display: block;
        margin: 5px 0;
    }*/
}


/*----------- Events Calendar -----------*/

#event-container {
    display: table;
    width: 100%;
}

#events-calendar,
#latest-events {
    display: table-cell;
}

#events-calendar {
    padding-right: 20px;
}

#latest-events {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#events-calendar.loading {
    background-image: url(../images/loader.gif);
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

#events-calendar .controls {
    display: table;
    width: 100%;
}

#events-calendar .controls div {
    display: table-cell;
    text-align: center;
    padding: 20px 0;
}

#events-calendar .controls .month {
    width: 70%;
    font-size: 24px;
}

#events-calendar .clndr-previous-button,
#events-calendar .clndr-next-button {
    width: 15%;
    text-align: center;
    cursor: pointer;
}

#events-calendar .days-container {
    position: relative;
}

#events-calendar .day-header,
#events-calendar .day {
    display: inline-block;
    padding: 5px;
    width: 14.285%;
    padding: 20px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.05);
}

#events-calendar .day.adjacent-month,
#events-calendar .empty.adjacent-month {
    opacity: .5;
    background-color: transparent;
}

#events-calendar .days-container .days .day.today,
#events-calendar .days-container .days .empty.today {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}

#events-calendar .day.event,
#events-calendar .empty.event {
    cursor: pointer;
    opacity: 1;
    background-color: #FFC36A;
}

#events-calendar .day-header {
    text-align: center;
    background-color: transparent;
}

#latest-events .ModuleEvent {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#latest-events .ModuleEvent .date {
    width: 90%;
    margin: 0 auto;
    padding: 5%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#latest-events .ModuleEvent .date h5,
#latest-events .ModuleEvent .date h4 {
    display: block;
}

#latest-events .ModuleEvent .date h5 {
    font-size: 25px;
}

#latest-events .ModuleEvent .date h4 {
    font-size: 50px;
}

#latest-events .ModuleEvent > ul {
    padding: 10% 5%;
}

#latest-events .AddToCalendar a {
    color: #000;
}

@media screen and (max-width: 768px) {
    #events-calendar,
    #latest-events {
        display: inline-block;
    }
}


/*---------- 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;
    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;
    appearance: none;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}


/*------- Financial Quarterly Widget ------*/

.q4-quarterly-widget .q4-items-container {
    display: none;
}

.q4-quarterly-widget .q4-year-container i {
    margin-left: 10px;
}

.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;
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.q4-quarterly-widget .q4-financial-item {
    margin: 10px 0 10px 10px;
}

.q4-quarterly-widget .q4-financial-documents {
    margin: 10px 0;
}

.q4-quarterly-widget .q4-financial-document i[class*="q4i-"]:before {
    margin-right: 10px;
}

.q4-quarterly-widget .q4-financial-document i.PDF:before {
    content: "\e902";
}

.q4-quarterly-widget .q4-financial-document i.XLSX:before,
.q4-quarterly-widget .q4-financial-document i.XLS:before {
    content: "\e90b";
}


/*-------- 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: #2c3e50;
}

.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 ----------*/

@media screen and (max-width: 768px) {
    .stock-chart .highcharts-input-group {
        display: none;
    }
}


/*-------------- Slider Widget ---------------*/

.slider {
    height: 470px;
}

.slider .slider-item {
    position: relative;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    overflow: hidden;
}

.slider .slider-item .content-container {}

.slider .spacer {
    display: block;
    /*padding-top: 22.916%;*/
    /* Image (height / width * 100) */
    width: 100%;
}

.slider .content-container {
    height: 470px;
    margin: 0 auto;
    width: 100%;
    padding: 57px 350px 20px 40px;
    max-width: 1268px;
    transition: padding 0.2s ease-in-out 0s;
}

.slider .content-container h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: #fff;
}

.slider .content-container h2 .Title {
    margin-bottom: 3px;
}

.slider .content-container h2 .Subtitle {
    line-height: 1.5;
    font-size: 32px;
    margin-bottom: 20px;
}

.slider .content-container .Description {
    font-size: 24px;
}

.slider .content-container p {
    font-size: 24px;
    line-height: 1.2;
    margin: 20px 0 0;
}

.slider .slick-arrow {
    /*font-size: 6rem;*/
    line-height: 1;
    color: #fff;
    position: absolute;
    top: calc(50% + 20px);
    width: auto;
    height: auto;
    z-index: 1;
    height: 50px;
    width: 30px;
}

.slider .slick-arrow:before {
    display: none;
}

.slider .slick-prev {
    left: calc(50% - 635px);
    background: url(../design/arrow-left.svg) no-repeat center center;
    background-size: auto 50px;
}

.slider .slick-next {
    right: calc(50% - 635px);
    background: url(../design/arrow-right.svg) no-repeat center center;
    background-size: auto 50px;
}

.slider .btn-primary + .btn-primary {
    margin-left: 12px;
    margin-right: 12px;
}

@media screen and (max-width: 1360px) {
    .slider .slick-prev {
        left: 15px;
    }
    .slider .slick-next {
        right: 15px;
    }
}

@media screen and (max-width: 1280px) {
    .slider .content-container {
        padding: 57px 350px 20px 70px;
    }
}

@media screen and (max-width: 1200px) {
    .slider .slider-item {
        height: auto;
    }
    .slider .content-container {
        left: 0;
        margin-left: 0;
    }
}

@media screen and (max-width: 1023px) {
    .slider {
        height: 450px;
    }
    .slider .content-container {
        height: 450px;
    }
    /*  .slider .content-container {
        padding: 20px 50px;
    }*/
    .slider .content-container h2 {
        font-size: 2rem;
        line-height: 0.95;
        margin-top: 30px
    }
    .slider .content-container p {
        font-size: 1rem;
        line-height: 1.1;
    }
    .slider .slick-arrow {
        font-size: 3.6rem;
    }
    .slider .slick-prev {
        left: 5px;
    }
    .slider .slick-next {
        right: 5px;
    }
}

@media screen and (max-width: 900px) {
    .slider .btn-primary + .btn-primary {
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px
    }
}

@media screen and (max-width: 767px) {
    .slider .content-container {
        padding: 57px 70px 100px;
    }
    .slider .vertical-center {
        text-align: center;
    }
    .slider .slick-dots {
        bottom: 75px;
    }
}


/*-----------------------------------------*\
------------- HTML Specific Parts -----------
\*-----------------------------------------*/


/*---------- Default Table Style ----------*/

.custom-table {
    width: 100%;
}

.custom-table thead {
    background-color: rgba(0, 0, 0, 0.1);
}

.custom-table td,
.custom-table th {
    padding: 10px 5px;
}

.custom-table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}

.custom-table th span,
.custom-table td span {
    padding: 0;
}


/*----- 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;
    }
}


/*------ 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 ---------------
\*-----------------------------------------*/


/*=====================CLIENT ICON FONTS======================*/

@font-face {
    font-family: 'icomoon';
    src: url("data:application/x-font-ttf;charset=utf-8;base64,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") format("truetype");
    font-weight: normal;
    font-style: normal
}

ins {
    text-decoration: none
}

[class^='icon-']::before,
[class*=' icon-']::before,
.cta-more::before,
.pricing-package-cta ins::before,
.cta-less::before,
.pricing-package-features-active .pricing-package-cta ins::before,
.cta-learn-more::before,
.cta-learn-less::before,
.video-icon-light::before,
.video-icon-dark::before,
.video-link-light ins::before,
.video-link-dark ins::before,
.video-link::before,
.fancybox-close::before,
.ad-banner-close::before,
.contact-sales::after,
.check-list li::before,
.contact-form-error::before,
.main-navigation-toggler::before,
.main-menu_has-child .main-menu_parent-item::after,
.main-menu_child_active .main-menu_parent-item::before,
.user-menu_log-in::before {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-caution::before,
.contact-form-error::before {
    content: '\e919'
}

.icon-linkedin::before {
    content: '\e918'
}

.icon-check::before,
.check-list li::before {
    content: '\e917'
}

.icon-download::before {
    content: '\e906'
}

.icon-preview::before {
    content: '\e907'
}

.icon-search::before {
    content: '\e915'
}

.icon-questions::before,
.contact-sales::after {
    content: '\e916'
}

.icon-dropdown-angle::before,
.main-menu_has-child .main-menu_parent-item::after {
    content: '\e914'
}

.icon-plus::before,
.cta-more::before,
.pricing-package-cta ins::before {
    content: '\e912'
}

.icon-minus::before,
.cta-less::before,
.pricing-package-features-active .pricing-package-cta ins::before {
    content: '\e913'
}

.icon-play-button::before,
.video-icon-light::before,
.video-icon-dark::before,
.video-link-light ins::before,
.video-link-dark ins::before,
.video-link::before {
    content: '\e911'
}

.icon-menu::before,
.main-navigation-toggler::before {
    content: '\e900'
}

.icon-close::before,
.fancybox-close::before,
.ad-banner-close::before,
.mobile-menu-active .main-navigation-toggler::before {
    content: '\e901'
}

.icon-go-back::before,
.main-menu_child_active .main-menu_parent-item::before {
    content: '\e902'
}

.icon-arrow-link::before,
.cta-learn-more::before,
.cta-learn-less::before {
    content: '\e903'
}

.icon-triangle::before {
    content: '\e904'
}

.icon-youtube::before {
    content: '\e905'
}

.icon-rss::before {
    content: '\e908'
}

.icon-twitter::before {
    content: '\e909'
}

.icon-facebook::before {
    content: '\e90a'
}

.icon-person::before,
.user-menu_log-in::before {
    content: '\e90b'
}

.icon-phone::before {
    content: '\e90c'
}

.icon-bottom-arrow::before {
    content: '\e90d'
}

.icon-top-arrow::before {
    content: '\e90e'
}

.icon-left-arrow::before {
    content: '\e90f'
}

.icon-right-arrow::before {
    content: '\e910'
}


/*===================END CLIENT ICON FONTS====================*/


/*=======================GLOBAL STYLES========================*/


/*clearfiv*/

.cf:after,
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}


/*----------------Global Elements-------------------*/

* {
    /*prevent text zoom on ios when rotating from portrait to landscape*/
    -webkit-text-size-adjust: 100%;
}

@viewport {
    zoom: 1;
    width: extend-to-zoom
}

@-ms-viewport {
    width: extend-to-zoom;
    zoom: 1
}

html {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    line-height: 1.4;
    color: #2c3e50;
}

html.mobile-menu-active {
    overflow: hidden;
}

.col {
    font-weight: 400;
    /*color: #2c3e50;*/
    line-height: 1.4;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #2c3e50;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

h1,
h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-top: 80px;
    margin-bottom: 80px;
    font-weight: 700;
    color: #2d3d4f;
}

h3 {
    font-size: 22px;
    font-weight: 700;
    padding: 10px 0;
}

h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.34;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 100ms ease-in-out 0s;
}

.PaneContentInner a {
    color: #22a7f0;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    vertical-align: top;
    border: none;
}

@media screen and (max-width: 767px) {
    h1,
    h2 {
        font-size: 28px;
        line-height: 1.4;
        margin-top: 60px;
        margin-bottom: 40px;
        font-weight: 700;
        color: #2d3d4f;
    }
    h3 {
        font-size: 18px;
        font-weight: 700;
        padding: 10px 0;
    }
    h4 {
        font-weight: 700;
        font-size: 16px;
        line-height: 1.34;
    }
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

input[type="text"],
input[type="submit"],
input[type="file"],
input[type="search"],
input[type="password"],
input[type="email"],
select,
button,
textarea {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    /*reset browser styling*/
    display: inline-block;
    padding: 5px 8px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

input[type="submit"] {
    cursor: pointer;
}

input[type="checkbox"],
input[type="checkbox"] + label {
    cursor: pointer;
}

select {
    background-image: url('../design/select-icons.png');
    background-repeat: no-repeat;
    background-position: 90% -115px;
    padding-right: 50px;
}


/*--------------End Global Elements-----------------*/


/*-------------------Container----------------------*/

.container,
.PaneFooter > span.FooterPaneDiv,
.PaneContent > span.ContentPaneDiv,
.setContainer .innerContainer,
.ir-mainNav .level1 {
    display: block;
    max-width: 79.25rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1300px) {
    .container,
    .PaneFooter > span.FooterPaneDiv,
    .PaneContent > span.ContentPaneDiv,
    .setContainer .innerContainer,
    .ir-mainNav .level1 {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}


/*-----------------End Container--------------------*/


/*--------------------Layouts-----------------------*/


/*general layout styles*/

.PaneBreadcrumb:empty,
.LayoutTwoColumn .PaneLeft {
    display: none;
}

.PaneContentInner h2 {
    text-align: center;
}

.PaneFooter {
    background: #2d3d4f;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.PaneFooter > span.FooterPaneDiv:after {
    content: "";
    display: table;
    clear: both;
}

.PaneContent > span:not(:empty) {
    padding-bottom: 60px;
}


/*end general layout styles*/


/*home page layout*/

.LayoutHomePage .PaneNavigation {
    position: relative;
}


/*------------------End Layouts---------------------*/


/*-------------General style clases-----------------*/

.PaneContentInner a[href^=tel] {
    color: #2c3e50;
    text-decoration: none;
}

[class*="<span>EventsPresentations"] ~ .fancybox-overlay .fancybox-skin,
.Sectionevents-and-presentations ~ .fancybox-overlay .fancybox-skin,
.PageHome ~ .fancybox-overlay .fancybox-skin {
    margin: 15px;
}

.EditSubscriberConfirmation:not(:empty) {
    margin-top: 50px;
}

.blue {
    color: #22a7f0;
}

.centerText {
    text-align: center;
}

.PageDefaultInner .btn-primary,
.PageDefaultInner .btn-secondary {
    font-family: inherit;
    font-size: .875rem;
    line-height: 2.75rem;
    border-radius: .1875rem;
    border: 0;
    outline: none;
    padding: 0 .9375rem;
    background-color: #22a7f0;
    color: #fff;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    min-width: 8.5rem;
    cursor: pointer;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    letter-spacing: .0125rem;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #22a7f0
}

.btn-primary + .btn-primary {
    margin-left: 25px;
}

.btn-primary:hover,
.btn-secondary:hover {
    background-color: #2399e5
}


/*-----------End General style clases---------------*/

.ModulePressReleaseDetails a {
    word-wrap: break-word;
}

.ModulePressReleaseDetails table {
    display: block;
    overflow-x: auto;
}

.ModulePressReleaseDetails table tbody {
    display: table;
    width: calc(100% - 1px);
    min-width: 680px;
}

@media screen and (max-width:767px) {
    .ModulePressReleaseDetails table {
        font-size: 14px;
    }
}


/*-------------Place Holder Styling-----------------*/

::-webkit-input-placeholder {
    color: #666;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #666;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #666;
}

:-ms-input-placeholder {
    color: #666;
}


/*-----------End Place Holder Styling---------------*/


/*-------------Text selection Styling---------------*/


/*::-moz-selection {
    color: #fff;
    background: #39f none repeat scroll 0 0;
    text-shadow: none;
}

::selection {
    color: #39f none repeat scroll 0 0;
    background: #fff;
    text-shadow: none;
}

*/


/*-----------End Text selection Styling-------------*/


/*-------Force scrollbar to show on osx/ios---------*/

.sbOptions::-webkit-scrollbar,
.ModulePressReleaseDetails table::-webkit-scrollbar {
    -webkit-appearance: none;
}

.sbOptions::-webkit-scrollbar:vertical,
.ModulePressReleaseDetails table::-webkit-scrollbar:vertical {
    width: 11px;
}

.sbOptions::-webkit-scrollbar:horizontal,
.ModulePressReleaseDetails table::-webkit-scrollbar:horizontal {
    height: 11px;
}

.sbOptions::-webkit-scrollbar-thumb,
.ModulePressReleaseDetails table::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, .5);
}


/*-----End Force scrollbar to show on osx/ios-------*/


/*----------------Vertical Center-------------------*/

.vertical-center {
    height: 100%;
    white-space: nowrap;
    /*text-align: center;*/
}

.vertical-center:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    /* adjust for white space between pseudo element and next sibling */
    margin-right: -.25em;
    /* stretch line height */
    height: 100%;
}

.vertical-center-inner {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
}


/*--------------End Vertical Center-----------------*/


/*-----------------Responsive Embed Video----------------*/

.responsive-slideshare {
    position: relative;
    /*max-width: 640px;*/
    width: 100%;
}

.responsive-slideshare-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.responsive-slideshare-inner iframe,
.responsive-slideshare-inner object,
.responsive-slideshare-inner embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*---------------End Responsive Embed Video--------------*/


/*------------- Miscellaneous -------------*/

.menu-close {
    display: none;
}


/* RSS */

.rss-icons {
    margin-bottom: 50px;
}

div.pre-module-text {
    margin-bottom: 0;
}

.ModuleFileText,
.ModuleFileSpacer {
    display: none;
}

.ErrorContainer {
    color: #ff0000;
}


/*=====================END GLOBAL STYLES======================*/


/*==========================HEADER============================*/


/*-------------------Header Image-------------------*/

.headerImage {
    font-size: 44px;
    font-weight: 700;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    text-transform: capitalize;
}

.headerImage a,
.headerImage .BreadcrumbSeparator {
    display: none;
}

.headerImage .innerContainer {
    height: 350px;
    padding-top: 57px;
    padding-bottom: 20px;
    /*text-align: center;*/
    padding-left: 30px;
}

@media screen and (max-width: 767px) {
    .headerImage {
        font-size: 25px;
    }
}


/* default image */

.headerImage {
/*    background-image: url(../design/header-image.jpg);*/
    background-image: url(../design/slider/Introduction-to-Box.jpg); 
}


/* header images */


/*-----------------End Header Image-----------------*/


/*--------------General Corporate css---------------*/

.heading-h10 {
    font-size: 1rem;
    line-height: 2.375rem;
    color: #2c3e50
}

.heading-h11 {
    font-size: .8125rem;
    color: #bdc3c7
}

.heading-h12 {
    font-size: .75rem;
    color: #bdc3c7;
    text-transform: uppercase;
    line-height: .9375rem
}

.heading-h13 {
    font-size: .8125rem;
    line-height: 1rem;
    color: #737f8b;
    text-transform: uppercase
}

.heading-h14 {
    font-weight: 400;
    font-style: normal;
    font-size: .875rem;
    color: #2c3e50
}

.heading-h15 {
    font-weight: 400;
    font-style: normal;
    font-size: .875rem;
    color: #737f8b
}

.cta-small {
    font-size: .75rem;
    text-transform: uppercase;
    color: #22a7f0;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    position: relative;
    margin-bottom: .5625rem;
    padding-bottom: .5rem;
    line-height: 1.125rem;
    cursor: pointer
}

@media (min-width:48em) {
    .cta-small {
        font-size: .875rem
    }
}

.centered .cta-small:hover::after {
    width: 50%
}

.cta-small:hover::before {
    width: 100%
}

.centered .cta-small:hover::before {
    width: 50%
}

.cta-small:hover::after,
.cta-small:hover::before {
    transition: width 0.5s cubic-bezier(0, 0, 0.2, 1)
}

.cta-small::after,
.cta-small::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: .1875rem;
    transition: width 0.2s cubic-bezier(0.4, 0, 1, 1);
    background-color: #22a7f0
}

.centered .cta-small::after {
    right: 50%
}

.cta-small::before {
    left: 0
}

.centered .cta-small::before {
    left: 50%
}


/*------------End General Corporate css-------------*/


/*-------------------Stiky Header-------------------*/

.sticky-header {
    height: 3.125rem;
    position: fixed;
    width: 100%;
    z-index: 10;
    left: 0
}

@media (min-width:64em) {
    .sticky-header {
        height: 3.5625rem
    }
}

.sticky-header a {
    text-decoration: none
}

@media (min-width:64em) {
    .sticky-header a {
        font-weight: 700;
        font-style: normal
    }
}

.sticky-mode-active .sticky-header {
    box-shadow: 0 1px 3px 0 rgba(44, 62, 80, 0.15);
    background-color: #fff
}

.sticky-header .container {
    position: relative
}


/*-----------------End Stiky Header-----------------*/


/*----------------------Logo------------------------*/

.box-logo-dev {
    float: left;
    margin-top: .8125rem;
    position: relative;
    z-index: 1
}

@media (min-width:64em) {
    .box-logo-dev {
        margin-right: 1.9375rem
    }
}

.box-logo-dev svg {
    width: 11.8125rem;
    display: inline-block;
    height: 1.59375rem
}

@media (min-width:64em) {
    .box-logo-dev svg {
        width: 14.0625rem;
        height: 1.9rem
    }
}

.box-logo-dev-box,
.box-logo-dev-text {
    fill: #fff
}

.mobile-menu-active .box-logo-dev-box,
.mobile-menu-active .box-logo-dev-text {
    fill: #fff !important
}

.sticky-mode-active .box-logo-dev-icon {
    fill: #22a7f0
}

.sticky-mode-active .box-logo-dev-box,
.sticky-mode-active .box-logo-dev-text {
    fill: #2c3e50
}

.mobile-menu-active .box-logo-dev-box,
.mobile-menu-active .box-logo-dev-text {
    display: none
}

@media (min-width:30em) {
    .mobile-menu-active .box-logo-dev-box,
    .mobile-menu-active .box-logo-dev-text {
        display: inline
    }
}

.box-logo {
    float: left;
    margin-top: .8125rem;
    position: relative;
    z-index: 10
}

@media (min-width:64em) {
    .box-logo {
        margin-right: .9375rem
    }
}

@media (min-width:64em) {
    .box-logo {
        margin-right: 1.9375rem
    }
}

.box-logo svg {
    width: 2.5rem;
    v display: inline-block;
    height: 1.375rem
}

@media (min-width:64em) {
    .box-logo svg {
        width: 3.25rem;
        height: 1.75rem
    }
}

.box-logo-svg {
    fill: #22a7f0
}

.box-logo-svg {
    fill: #fff
}

.sticky-mode-active .box-logo-svg {
    fill: #22a7f0
}

.mobile-menu-active .box-logo-svg {
    fill: #fff !important
}

.toolbar-fixed .box-logo-svg {
    fill: #22a7f0
}

.box-logo-org svg {
    width: 5.4375rem;
    height: 1.375rem
}

@media (min-width:64em) {
    .box-logo-org svg {
        width: 6.875rem;
        height: 1.75rem
    }
}


/*--------------------End Logo----------------------*/


/*------------------Main Corp Nav-------------------*/

.btn-secondary,
.user-menu_sign-up {
    background-color: transparent;
    border: 1px solid #22a7f0;
    font-family: inherit;
    font-size: .875rem;
    line-height: 2.75rem;
    border-radius: .1875rem;
    padding: 0 .9375rem;
    color: #fff;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    min-width: 8.5rem;
    cursor: pointer;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    letter-spacing: .0125rem;
}

.user-menu_sign-up:hover {
    background-color: #2399e5;
}

.nav ul {
    margin-bottom: .625rem
}

.main-navigation {
    font-size: 0;
    padding-top: 3.125rem;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
    display: block !important;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity 200ms ease-in;
    overflow-x: hidden
}

@media (min-width:64em) {
    .main-navigation {
        color: inherit;
        position: static;
        padding-top: 0;
        background-color: transparent;
        width: auto;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        transition: none
    }
}

.animated-nav .main-navigation {
    visibility: visible !important
}

.mobile-menu-active .main-navigation::before {
    content: '';
    background-color: #2c3e50;
    width: 100%;
    height: 3.125rem;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    position: fixed
}

@media (min-width:64em) {
    .mobile-menu-active .main-navigation::before {
        display: none
    }
}

#main-navigation-toggler {
    visibility: hidden;
    position: absolute;
    top: -9999em;
    left: -9999em
}

#main-navigation-toggler:checked ~ .main-navigation {
    visibility: visible;
    opacity: 1;
    transition: opacity 200ms ease-in
}

.main-navigation-toggler {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 1.125rem;
    z-index: 10
}

@media (min-width:64em) {
    .main-navigation-toggler {
        display: none
    }
}

.main-navigation-toggler::before {
    font-size: 1.0625rem
}

.main-navigation-toggler::before {
    color: #fff
}

.sticky-mode-active .main-navigation-toggler::before {
    color: #2c3e50
}

.masthead-present-light .main-navigation-toggler::before {
    color: inherit
}

.mobile-menu-active .main-navigation-toggler::before {
    color: #fff !important
}

.mobile-menu-active .main-navigation-toggler {
    color: #fff
}


/* more menu */

.main-menu {
    padding-left: .75rem;
    padding-right: .75rem;
    padding-top: 3.625rem;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: -webkit-transform 0.2s cubic-bezier(0, 0, 0.28, 1);
    transition: transform 0.2s cubic-bezier(0, 0, 0.28, 1);
    transition: transform 0.2s cubic-bezier(0, 0, 0.28, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.28, 1)
}

@media (min-width:48em) {
    .main-menu {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

@media (min-width:64em) {
    .main-menu {
        float: left;
        padding: 0
    }
}

@media (min-width:48em) {
    .main-menu>ul {
        width: 30.67047%
    }
}

@media (min-width:64em) {
    .main-menu>ul {
        width: auto
    }
}

.main-menu_first-level_active .main-menu {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    transition: -webkit-transform 0.2s cubic-bezier(0.28, 0, 1, 1);
    transition: transform 0.2s cubic-bezier(0.28, 0, 1, 1);
    transition: transform 0.2s cubic-bezier(0.28, 0, 1, 1), -webkit-transform 0.2s cubic-bezier(0.28, 0, 1, 1);
    position: relative
}

@media (min-width:64em) {
    .main-menu_first-level_active .main-menu {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        position: static
    }
}

.main-menu .main-menu_child_active {
    position: absolute;
    left: 100%;
    top: 0;
    border-bottom: 0;
    width: 100%;
    padding-left: .75rem;
    padding-right: .75rem
}

@media (min-width:48em) {
    .main-menu .main-menu_child_active {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

@media (min-width:64em) {
    .main-menu .main-menu_child_active {
        padding: 0;
        width: auto;
        position: relative;
        left: auto
    }
}

.main-menu a {
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.main-menu a.cta-small {
    display: inline-block;
    padding-top: 1rem;
    font-size: 1rem;
    letter-spacing: .01875rem
}

@media (min-width:64em) {
    .main-menu a.cta-small {
        font-size: .8125rem;
        padding-top: .6875rem
    }
}

.main-menu .heading-h12 {
    font-size: .9375rem;
    margin-bottom: 1.25rem;
    color: #737f8b;
    letter-spacing: .0225rem;
    margin-top: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width:64em) {
    .main-menu .heading-h12 {
        font-size: .75rem;
        margin-bottom: 0;
        margin-top: 0;
        line-height: 3.125rem
    }
}

.main-menu_first-level {
    border-bottom: 1px solid #737f8b
}

@media (min-width:64em) {
    .main-menu_first-level {
        display: inline-block;
        border: 0
    }
}

.main-menu_first-level:last-child {
    border-bottom: 0
}

.main-menu_has-child .main-menu_parent-item::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    /*display: inline-block;*/
    font-size: .5rem;
    position: absolute;
    margin-top: -.1875rem;
    top: 50%;
    right: 0;
    width: .5rem;
    height: .5625rem
}

@media (min-width:64em) {
    .main-menu_has-child .main-menu_parent-item::after {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        position: relative;
        margin-top: 0;
        padding-left: .625rem
    }
}

.main-menu_has-child.main-menu_child_active .main-menu_child-group {
    max-height: 125rem;
    padding-top: 3.625rem;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

@media (min-width:64em) {
    .main-menu_has-child.main-menu_child_active .main-menu_child-group {
        overflow: visible;
        padding-top: 0;
        visibility: visible;
        opacity: 1;
        transition: opacity 200ms cubic-bezier(0, 0, 0.5, 1)
    }
}

.main-menu .main-menu_child-group {
    display: block !important;
    overflow: hidden;
    max-height: 0;
    font-size: 1.125rem;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

@media (min-width:64em) {
    .main-menu .main-menu_child-group {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 .1875rem .375rem 0 rgba(44, 62, 80, 0.25);
        border-radius: 0 0 .125rem .125rem;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        width: auto;
        visibility: hidden;
        opacity: 0;
        transition: opacity 200ms cubic-bezier(0.5, 0, 1, 1)
    }
}

.main-menu_parent-item {
    font-size: 1.125rem;
    padding: .875rem 0;
    position: relative
}

@media (min-width:64em) {
    .main-menu_parent-item {
        font-size: .875rem;
        letter-spacing: .01937rem;
        padding: 1.1875rem
    }
}

@media (min-width:64em) {
    .main-menu_parent-item {
        color: #fff
    }
}

.toolbar-fixed .main-menu_parent-item {
    color: #2c3e50
}

@media (min-width:64em) {
    .masthead-present-light .main-menu_parent-item {
        color: inherit
    }
}

@media (min-width:64em) {
    .sticky-mode-active .main-menu_parent-item {
        color: inherit
    }
}

@media (min-width:64em) {
    .main-menu_parent-item:hover {
        color: #22a7f0
    }
}

.main-menu_parent-item-active {
    color: #22a7f0 !important
}

.main-menu_child_active .main-menu_parent-item {
    font-size: 0;
    position: absolute;
    top: .375rem;
    z-index: 1
}

@media (min-width:64em) {
    .main-menu_child_active .main-menu_parent-item {
        position: relative;
        top: auto;
        font-size: .875rem;
        background-color: #22a7f0;
        color: #fff !important
    }
}

.main-menu_child_active .main-menu_parent-item::after {
    display: none
}

@media (min-width:64em) {
    .main-menu_child_active .main-menu_parent-item::after {
        display: inline
    }
}

.main-menu_child_active .main-menu_parent-item::before {
    font-size: 1.375rem
}

@media (min-width:64em) {
    .main-menu_child_active .main-menu_parent-item::before {
        display: none
    }
}

.main-menu_parent-item.icon-phone::before {
    font-size: .875rem;
    color: #22a7f0;
    margin-right: .5rem
}

@media (min-width:64em) {
    .main-menu_parent-item.icon-phone::before {
        color: inherit
    }
}

.main-menu_columns {
    margin-bottom: .625rem
}

@media (min-width:48em) {
    .main-menu_columns {
        width: 30.67047%;
        float: left
    }
    .main-menu_columns:nth-child(3n+1) {
        margin-left: 0;
        margin-right: -100%;
        clear: both;
        margin-left: 0
    }
    .main-menu_columns:nth-child(3n+2) {
        margin-left: 34.66476%;
        margin-right: -100%;
        clear: none
    }
    .main-menu_columns:nth-child(3n+3) {
        margin-left: 69.32953%;
        margin-right: -100%;
        clear: none
    }
}

@media (min-width:64em) {
    .main-menu_columns {
        padding: .5rem 1.1875rem;
        min-width: 13.125rem;
        max-width: 15.625rem;
        width: auto;
        border-right: 1px solid rgba(189, 195, 199, 0.2);
        margin: 0 !important
    }
}

@media (min-width:64em) {
    .main-menu_columns:last-child {
        border-right: 0
    }
}

.main-menu_child-item li {
    border-bottom: 1px solid #737f8b
}

@media (min-width:64em) {
    .main-menu_child-item li {
        border-bottom: 0
    }
}

.main-menu_child-item li:last-child {
    border-bottom: 0
}

.main-menu_child-item a {
    padding: .875rem 0;
    font-weight: normal;
}

@media (min-width:64em) {
    .main-menu_child-item a {
        font-size: .875rem;
        padding: .59375rem 1.1875rem;
        white-space: nowrap;
        margin-left: -1.1875rem;
        margin-right: -1.1875rem
    }
}

@media (min-width:64em) {
    .main-menu_child-item a:hover {
        background-color: #eef0f1
    }
}

.user-menu {
    position: fixed;
    top: .5625rem;
    right: 3.9375rem;
    z-index: 1
}

@media (min-width:64em) {
    .user-menu {
        float: right;
        text-align: right;
        position: static;
        margin: .75rem 0
    }
}

.user-menu_first-level {
    display: inline-block;
    margin-left: .5rem
}

@media (min-width:64em) {
    .user-menu_first-level {
        margin-left: 1.375rem
    }
}

.user-menu_first-level:first-child {
    margin-left: 0
}

.user-menu_parent-item {
    line-height: 1;
    font-size: .875rem
}

@media (min-width:64em) {
    .user-menu_parent-item {
        color: #fff
    }
}

@media (min-width:64em) {
    .masthead-present-light .user-menu_parent-item {
        color: inherit
    }
}

@media (min-width:64em) {
    .sticky-mode-active .user-menu_parent-item {
        color: inherit
    }
}

.toolbar-fixed .user-menu_parent-item {
    color: #2c3e50
}

@media (min-width:64em) {
    .user-menu_parent-item:hover {
        color: #22a7f0
    }
}

.user-menu_sign-up {
    min-width: inherit;
    line-height: 34px;
    /*color: inherit*/
}

.user-menu_sign-up:hover {
    color: #fff
}

.user-menu_log-in {
    padding: .4375rem 1.125rem
}

.user-menu_log-in::before {
    margin-right: .5rem;
    position: relative;
    top: .125rem
}

.cta-small-wrapper {
    display: block;
    border-top: 1px solid #737f8b
}

@media (min-width:64em) {
    .cta-small-wrapper {
        border-top: 0
    }
}

@media screen and (min-width:64em) and (max-width:81.1875em) {
    .tablet-hide-only {
        display: none !important
    }
}


/*----------------End Corp Main Nav-----------------*/


/*------------------IR Main Nav---------------------*/


/*toglee menu*/

.mobile-toggle {
    display: none;
    padding: 10px 20px;
}

.mobile-toggle button {
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
}

.mobile-toggle .icon-menu {
    margin-right: 10px
}

@media screen and (max-width: 1023px) {
    .mobile-toggle {
        display: block;
    }
}


/*end toggle menu*/

.ir-nav-sticky {
    border-bottom: 1px solid #e4e6e9;
    background: #fff;
    z-index: 9;
    position: relative;
}

.js_nav-stuck {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
}

.ir-mainNav {
    font-size: 14px;
}

.ir-mainNav .level1 > li {
    padding: 0 10px
}

.ir-mainNav .level1 > li > a {
    float: left;
}

.ir-mainNav .level1 {
    padding-top: 27px;
    padding-bottom: 6px;
}


/* justify elements */

.ir-mainNav .level2 {
    display: block;
    text-align: justify;
}

.ir-mainNav .level2 > li {
    display: inline;
    text-align: justify;
    position: relative;
}

.ir-mainNav .level2 > li:after {
    content: " ";
    display: inline;
    /*font-size:0 breaks the justification on IE*/
    font-size: 1px;
    line-height: 0;
    height: 0;
}

.ir-mainNav .level2 > li:last-child:after {
    display: inline-block;
    margin-left: 100%;
    content: " ";
}


/* prevent text with more than one word (text must be wrapped in a inline-block elem) */

.ir-mainNav .level2 > li > a > span {
    display: inline-block;
}


/*reset justify*/

@media screen and (max-width: 1023px) {
    .ir-mainNav {
        display: none;
    }
    .ir-mainNav .level2 {
        text-align: left;
    }
    .ir-mainNav .level2 > li {
        display: block;
        text-align: left;
    }
    .ir-mainNav .level2 > li:after {
        display: none;
    }
    .ir-mainNav .level2 > li:last-child:after {
        display: none;
    }
}


/* end justify elements */

.ir-mainNav .level2 a:hover,
.ir-mainNav .level2 > li.selected > a,
.ir-mainNav .level2 > li.expanded > a {
    color: #22a7f0;
}

.ir-mainNav .level2 > li.selected > a,
.ir-mainNav .level2 > li.expanded > a {
    position: relative;
}

.ir-mainNav .level2 > li.selected > a:before,
.ir-mainNav .level2 > li.expanded > a:before {
    content: "";
    height: 4px;
    position: absolute;
    bottom: -27px;
    right: -10px;
    left: -10px;
    background: #22a7f0;
}

.ir-mainNav .level3 {
    text-align: left;
    display: none;
    position: absolute;
    left: -20px;
    /*right: 0;*/
    top: 100%;
    width: 210px;
    /* Standard syntax */
    z-index: 1;
    padding-top: 30px;
    border-radius: 0 0 .125rem
}

.ir-mainNav .level2 > li:last-child > ul {
    top: 18px;
}

.ir-mainNav .level3 > li {
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 .1875rem .375rem 0 rgba(44, 62, 80, 0.25);
    margin-top: -1px;
}

.ir-mainNav .level3 > li:last-child {
    border-bottom-left-radius: 0 0 .125rem;
    border-bottom-right-radius: 0 0 .125rem;
}

@media screen and (max-width: 1400px) {
    .ir-mainNav .level2 > li:last-child > ul {
        left: -74px;
    }
}

@media screen and (max-width: 1023px) {
    .ir-mainNav {
        font-size: 18px;
        color: #fff;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        overflow-x: auto;
    }
    .js_nav-stuck {
        top: 50px;
    }
    .ir-mainNav .level1 {
        padding-top: 0;
        background-color: #2c3e50;
        padding-bottom: 26px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .ir-mainNav .level2 > li.selected > a:before,
    .ir-mainNav .level2 > li.expanded > a:before {
        display: none;
    }
    .ir-mainNav a {
        padding: 14px 0;
        display: block;
    }
    .ir-mainNav .level2 > li {
        border-bottom: 1px solid #737f8b;
    }
    .ir-mainNav .level2 > li.has-children:after {
        content: '\e914';
        display: inline-block;
        font-size: .5rem;
        position: absolute;
        margin-top: -.1875rem;
        top: 26px;
        right: 0;
        width: .5rem;
        height: .5625rem;
        font-family: 'icomoon';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    .ir-mainNav .level2 {
        width: 30.67047%;
    }
    .ir-mainNav .level1 > li {
        padding: 0;
    }
    .ir-mainNav .level3 {
        text-align: left;
        display: none;
        position: static;
        padding-top: 0;
        padding-left: 10px
    }
    .ir-mainNav .level3 a {
        padding: 10px 0;
        font-size: 16px
    }
    .ir-mainNav .level3 > li {
        background: transparent;
        padding: 10px 20px;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .ir-mainNav .level2 {
        width: auto;
    }
}


/*----------------End IR Main Nav-------------------*/


/*========================END HEADER==========================*/


/*==========================FOOTER============================*/


/*-----------------Footer Contact-------------------*/

.footer-contact h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 30px;
}

.footer-contact {
    float: left;
    width: 50%;
}

.footer-contact .col + .col {
    padding-left: 30px
}

.footer-contact p {
    font-size: 14px;
    line-height: 30px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer-contact .col + .col {
        padding-left: 0
    }
}

@media screen and (max-width: 550px) {
    .footer-contact {
        float: none;
        width: auto;
        max-width: 220px;
        margin: 0 auto;
    }
}


/*---------------End Footer Contact-----------------*/


/*------------------Footer Links--------------------*/

div.FooterLinks {
    float: left;
    width: 50%;
}

div.FooterLinks a {
    font-size: 14px;
    line-height: 30px;
}

div.FooterLinks h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 30px;
}

div.FooterLinks li {
    display: inline-block;
}

div.FooterLinks ul {
    max-width: 430px;
}

div.FooterLinks li:first-child {
    margin-right: 41px;
}

div.FooterLinks li:nth-child(2) {
    margin-right: 56px;
}

div.FooterLinks li:nth-child(4) {
    margin-right: 47px;
}

div.FooterLinks li:nth-child(5) {
    margin-right: 28px;
}

@media screen and (max-width: 1024px) {
    div.FooterLinks li:first-child {
        margin-right: 18px;
    }
    div.FooterLinks li:nth-child(2) {
        margin-right: 45px;
    }
    div.FooterLinks li:nth-child(3) {
        margin-right: 25px;
    }
    div.FooterLinks li:nth-child(4) {
        margin-right: 23px;
    }
    div.FooterLinks li:nth-child(5) {
        margin-right: 18px;
    }
}

@media screen and (max-width: 768px) {
    div.FooterLinks li {
        display: block;
    }
    div.FooterLinks li:first-child,
    div.FooterLinks li:nth-child(2),
    div.FooterLinks li:nth-child(4),
    div.FooterLinks li:nth-child(5) {
        margin-right: 0;
    }
}

@media screen and (max-width: 550px) {
    div.FooterLinks {
        padding-top: 30px;
        max-width: 220px;
        margin: 0 auto;
        float: none;
        width: auto;
    }
}


/*----------------End Footer Links------------------*/

.footer {
    padding-top: 1.5625rem
}

@media (min-width:48em) {
    .footer {
        padding-top: 2.1875rem;
        border-top: 1px solid #e5e7e9
    }
}

@media (min-width:64em) {
    .footer {
        padding-top: 5rem
    }
}

.footer a:hover {
    color: #22a7f0
}

.footer-top {
    padding: 0 0 1.875rem
}

@media (min-width:30em) {
    .footer-top {
        padding-bottom: .9375rem
    }
}

@media (min-width:48em) {
    .footer-top {
        padding-bottom: 1.6875rem
    }
}

@media (min-width:64em) {
    .footer-top {
        padding: 0 0 1.75rem
    }
}

html[lang='es-419'] .footer-top,
html[lang='de'] .footer-top,
html[lang='it'] .footer-top,
html[lang='ja'] .footer-top,
html[lang='ko'] .footer-top,
html[lang='sv'] .footer-top,
html[lang='nl'] .footer-top {
    display: none !important
}

.footer-top-mobile {
    text-align: center
}

@media (min-width:64em) {
    .footer-top-mobile {
        display: none
    }
}

@media (min-width:64em) {
    .footer-top-desktop {
        display: block !important
    }
}

.footer-column {
    width: 45.27027%;
    float: left
}

.footer-column:nth-child(2n+1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0
}

.footer-column:nth-child(2n+2) {
    margin-left: 54.72973%;
    margin-right: -100%;
    clear: none
}

@media (min-width:30em) {
    .footer-column {
        width: 30.67047%;
        float: left;
        margin-bottom: 1.25rem
    }
    .footer-column:nth-child(3n+1) {
        margin-left: 0;
        margin-right: -100%;
        clear: both;
        margin-left: 0
    }
    .footer-column:nth-child(3n+2) {
        margin-left: 34.66476%;
        margin-right: -100%;
        clear: none
    }
    .footer-column:nth-child(3n+3) {
        margin-left: 69.32953%;
        margin-right: -100%;
        clear: none
    }
}

@media (min-width:48em) {
    .footer-column {
        width: 21.6129%;
        float: left
    }
    .footer-column:nth-child(4n+1) {
        margin-left: 0;
        margin-right: -100%;
        clear: both;
        margin-left: 0
    }
    .footer-column:nth-child(4n+2) {
        margin-left: 26.12903%;
        margin-right: -100%;
        clear: none
    }
    .footer-column:nth-child(4n+3) {
        margin-left: 52.25806%;
        margin-right: -100%;
        clear: none
    }
    .footer-column:nth-child(4n+4) {
        margin-left: 78.3871%;
        margin-right: -100%;
        clear: none
    }
}

@media (min-width:64em) {
    .footer-column {
        width: 14.19492%;
        float: left
    }
    .footer-column:nth-child(6n+1) {
        margin-left: 0;
        margin-right: -100%;
        clear: both;
        margin-left: 0
    }
    .footer-column:nth-child(6n+2) {
        margin-left: 17.16102%;
        margin-right: -100%;
        clear: none
    }
    .footer-column:nth-child(6n+3) {
        margin-left: 34.32203%;
        margin-right: -100%;
        clear: none
    }
    .footer-column:nth-child(6n+4) {
        margin-left: 51.48305%;
        margin-right: -100%;
        clear: none
    }
    .footer-column:nth-child(6n+5) {
        margin-left: 68.64407%;
        margin-right: -100%;
        clear: none
    }
    .footer-column:nth-child(6n+6) {
        margin-left: 85.80508%;
        margin-right: -100%;
        clear: none
    }
}

.footer-top-mobile .footer-column {
    width: 8.125rem;
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    text-align: left
}

.footer-top-mobile .footer-column:first-child {
    margin-right: 1.25rem
}

@media (min-width:64em) {
    .footer-column-links {
        margin-top: .625rem;
        display: inline-block
    }
}

.footer-column-links li {
    margin: 1.25rem 0
}

.footer-column-links a {
    font-size: .875rem;
    text-decoration: none;
    line-height: 1.125rem
}

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid #e5e7e9;
    clear: both;
    text-align: center
}

@media (min-width:48em) {
    .footer-bottom {
        text-align: left;
        padding: 2.1875rem 0
    }
}

@media (min-width:64em) {
    .footer-copyright {
        width: 73.87097%;
        float: left;
        margin-right: 4.51613%
    }
}

.footer-copyright p {
    float: left;
    margin-right: 1.5625rem
}

.footer-social-icons {
    margin-bottom: 1.5rem;
    padding-bottom: 1.125rem;
    border-bottom: 1px solid #e5e7e9
}

@media (min-width:48em) {
    .footer-social-icons {
        width: 21.6129%;
        float: right;
        margin-right: 0;
        text-align: right;
        margin-bottom: 0;
        border: 0;
        padding-bottom: 0
    }
}

.footer-social-icons a {
    color: #22a7f0
}

.footer-social-icons a:hover {
    color: #2c3e50
}

.footer-menu {
    font-size: 0;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7e9
}

@media (min-width:64em) {
    .footer-menu {
        margin-bottom: 0;
        border: 0;
        padding-bottom: 0;
        display: inline-block
    }
}

.footer-menu li {
    display: inline-block;
    margin: 0 .4375rem
}

@media (min-width:48em) {
    .footer-menu li {
        margin-left: 0;
        margin-right: 2.6875rem
    }
}

.footer-menu a,
.footer-menu span {
    text-decoration: none;
    font-size: .9375rem
}

@media (min-width:48em) {
    .footer-menu a,
    .footer-menu span {
        font-size: .875rem
    }
}

.language-dropdown {
    height: 1.375rem;
    border: 0;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE0IDIyIiB3aWR0aD0iMTQiIGhlaWdodD0iMjIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+LnN0MHtmaWxsOiMyQzNFNTA7ZmlsbC1vcGFjaXR5OjAuMTt9LnN0MXtmaWxsOiMyMkE3RjA7fTwvc3R5bGU+PHRpdGxlPkdyb3VwIDI8L3RpdGxlPjxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPjxnIGlkPSJQYWdlLTEiIHNrZXRjaDp0eXBlPSJNU1BhZ2UiPjxnIGlkPSJUYWJsZXRfZm9vdGVyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzU2LjAwMDAwMCwgLTU2NC4wMDAwMDApIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIj48ZyBpZD0iR3JvdXAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNi4wMDAwMDAsIDAuMDAwMDAwKSIgc2tldGNoOnR5cGU9Ik1TTGF5ZXJHcm91cCI+PGcgaWQ9Ikdyb3VwLTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM3Mi4wMDAwMDAsIDU2NC4wMDAwMDApIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48ZWxsaXBzZSBpZD0iT3ZhbC0zNyIgY2xhc3M9InN0MCIgY3g9IjciIGN5PSIyMC4yIiByeD0iNiIgcnk9IjEiLz48cGF0aCBpZD0iU2hhcGUtQ29weS0xNyIgY2xhc3M9InN0MSIgZD0iTTcsMC4yYy0zLjksMC03LDMuMS03LDdjMCw1LjIsNywxMyw3LDEzczctNy44LDctMTNDMTQsMy4zLDEwLjksMC4yLDcsMC4yTDcsMC4yeiBNNyw5LjdjLTEuNCwwLTIuNS0xLjEtMi41LTIuNVM1LjYsNC43LDcsNC43czIuNSwxLjEsMi41LDIuNVM4LjQsOS43LDcsOS43TDcsOS43eiIvPjwvZz48L2c+PC9nPjwvZz48L3N2Zz4=);
    background-size: .875rem 1.375rem;
    background-position: left center;
    outline: 0;
    text-overflow: '';
    background-origin: initial;
    width: auto;
    padding: 0 0 0 1.25rem
}

@media (min-width:64em) {
    .language-dropdown {
        font-size: .75rem
    }
}

.language-dropdown::-ms-expand {
    display: none
}


/*social footer links*/

.social-links,
.footer-social-icons {
    font-size: 0
}

.social-links li,
.footer-social-icons li {
    display: inline-block;
    margin: 0 .875rem
}

@media (min-width:48em) {
    .social-links li,
    .footer-social-icons li {
        margin: 0 .375rem
    }
}

.social-links li:first-child,
.footer-social-icons li:first-child {
    margin-left: 0
}

.social-links li:last-child,
.footer-social-icons li:last-child {
    margin-right: 0
}

.social-links li a,
.footer-social-icons li a {
    text-decoration: none
}

.social-links li a::before,
.footer-social-icons li a::before {
    font-size: 1.5rem
}

@media (min-width:48em) {
    .social-links li a::before,
    .footer-social-icons li a::before {
        font-size: 1rem
    }
}


/*========================END FOOTER==========================*/


/*===========================HOME=============================*/


/*------------------Stock Home----------------------*/


/*----------------End Stock Home--------------------*/

.homeStock {
    text-align: center;
    font-size: 18px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    /*font-weight: 600;*/
    position: absolute;
    top: 80px;
    bottom: 60px;
    right: calc(50% - 634px);
    width: 250px;
    /*z-index: 10;*/
    margin-right: 50px;
    padding: 20px 20px;
}

.homeStock a {
    color: #fff;
}

.homeStock .innerContainer > div {
    margin-top: 10px;
}

.homeStock .StockDescription1,
.homeStock .price,
.homeStock .change,
.homeStock .volume,
.homeStock .StockDate {
    padding: 0 10px;
    display: block;
}

.homeStock .StockDescription1 {
    color: #22a7f0;
    padding-bottom: 20px;
    font-size: 30px
}

.homeStock .StockPriceDown {
    color: red;
}

.homeStock .StockPriceUp {
    color: #b6ff00
}

.homeStock .StockPChange:before {
    content: "("
}

.homeStock .StockPChange:after {
    content: ")"
}

.homeStock .volume {
    margin: 30px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 10px 0;
}

.homeStock .StockDate,
.homeStock .StockDescription3 {
    font-size: 16px;
}

@media screen and (max-width: 1268px) {
    .homeStock {
        right: 20px;
    }
}

@media screen and (max-width: 1023px) {
    .homeStock {
        top: 60px;
        padding: 20px;
    }
    .homeStock .volume {
        margin: 20px 0;
    }
    .homeStock .StockDate,
    .homeStock .StockDescription3 {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .homeStock {
        width: auto;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        height: 65px;
        margin: 0;
        padding: 20px;
    }
    .homeStock .StockDescription1,
    .homeStock .price,
    .homeStock .change,
    .homeStock .volume,
    .homeStock .StockDate {
        padding: 0 5px;
        display: inline-block;
        font-size: 16px;
    }
    .homeStock .StockDescription3,
    .homeStock .StockDate {
        display: none;
    }
    .homeStock .StockDescription1 {
        padding-bottom: 0;
        font-size: 16px
    }
    .homeStock .volume {
        margin: 0;
        border: none;
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .homeStock {
        padding: 10px;
    }
    .homeStock .volume {
        display: block;
    }
}


/*------------Home Investors Relations--------------*/

.homeInvest {
    padding-bottom: 50px;
    background: #f8f9f9;
}

.homeInvest h2 {
    text-align: left;
    margin-bottom: 30px;
}

.homeInvest .col {
    padding-right: 40px;
}


/*.homeInvest .col + .col {
    padding-top: 80px;
}*/

@media screen and (max-width: 768px) {
    .homeInvest h2 {
        text-align: center;
    }
    .homeInvest .col {
        padding-right: 0;
    }
    .homeInvest .col + .col {
        padding-top: 30px;
    }
}


/*----------End Home Investors Relations------------*/


/*----------------Home SlideShare-------------------*/

.homeSlideshare {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f8f9f9;
}

.homeSlideshare h2 {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 35px;
}

.homeSlideshare .col {
    float: right;
}

.homeSlideshare h2 + p {
    font-size: 18px;
    font-weight: 700;
    color: #2d3d4f;
    margin-bottom: 25px;
}

.homeSlideshare .presentation-wrap a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.homeSlideshare .presenHome {
    padding-left: 50px;
}

@media screen and (max-width: 768px) {
    .homeSlideshare {
        padding-top: 0;
        text-align: center;
    }
    .homeSlideshare h2 {
        text-align: center;
    }
    .homeSlideshare .col {
        float: none;
    }
    .homeSlideshare .presenHome {
        padding-bottom: 40px;
        padding-left: 20px;
    }
}


/*--------------End Home SlideShare-----------------*/


/*------------------Events Home---------------------*/

.ir-events {
    padding-bottom: 80px;
}

.ir-events .ModuleItemRow {
    padding-bottom: 40px;
}

.ir-events .ModuleHeadlineLink {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 12px;
}

.ir-events .ModuleHeadlineLink a {
    color: #2d3d4f;
}

.ir-events .RelatedDocuments {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 30px;
    text-transform: uppercase;
}

.ir-events .center-btn {
    text-align: center;
}

.ir-events .center-btn .btn-primary {
    min-width: 200px;
}


/*
@media screen and (max-width: 768px) {
    .ir-events .center-btn {
        text-align: left;
    }
}
*/


/*----------------End Events Home-------------------*/


/*-------------------News Home----------------------*/

.ir-press {
    border-top: 1px solid #f8f9f9;
    background: #f8f9f9;
    padding-bottom: 80px;
}

.ir-press .ModuleItemRow {
    padding-bottom: 40px;
}

.ir-press .ModuleHeadlineLink {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 12px;
}

.ir-press .ModuleHeadlineLink a {
    color: #2d3d4f;
}

.ir-press .readmore {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 30px;
    text-transform: uppercase;
}

.ir-press .center-btn {
    text-align: center;
}

.ir-press .center-btn .btn-primary {
    min-width: 200px;
}

@media screen and (max-width: 768px) {
    .ir-press.center-btn {
        text-align: left;
    }
}


/*-----------------End News Home--------------------*/


/*------------------Social Feeds--------------------*/

.socialFeeds {
    padding-bottom: 40px;
}

.tabs-wrap {
    text-align: center;
    max-width: 525px;
    margin: 0 auto 50px;
    /*padding: 0 0 25px 0;*/
    position: relative;
    overflow: hidden;
}


/* justify elements */

.socialTabs {
    display: block;
    text-align: justify;
    padding: 0 10px;
    border-bottom: 1px solid #e4e6e9;
}

.socialTabs > li {
    display: inline;
    text-align: justify;
    position: relative;
}

.socialTabs > li:after {
    content: " ";
    display: inline;
    font-size: 1px;
    line-height: 0;
    height: 0;
}

.socialTabs > li:last-child:after {
    display: inline-block;
    margin-left: 100%;
    content: " ";
}


/*reset justify*/

@media screen and (max-width: 767px) {
    .socialTabs {
        /*text-align: left;*/
        font-size: 14px;
    }
    /*    .socialTabs > li {
        display: block;
        text-align: left;
    }
    .socialTabs > li:after {
        display: none;
    }
    .socialTabs > li:last-child:after {
        display: none;
    }*/
}


/* end justify elements */

.socialTabs > li span {
    position: relative;
    cursor: pointer;
}

.socialTabs > li.js_active > span:before {
    content: "";
    height: 4px;
    position: absolute;
    bottom: -25px;
    right: -10px;
    left: -10px;
    background: #22a7f0;
}

.socialTabs > li span:hover {
    color: #22a7f0;
}

.SocialFeed .item-sizer,
.SocialFeed .item {
    width: 31.33%;
    background: #fff;
}

.SocialFeed .item-gutter {
    width: 3%;
}

.SocialFeed .item {
    margin-bottom: 3%;
}

@media screen and (max-width: 768px) {
    .SocialFeed .item-sizer,
    .SocialFeed .item {
        width: 48%;
    }
    .SocialFeed .item-gutter {
        width: 4%;
    }
    .SocialFeed .item {
        margin-bottom: 4%;
    }
}

@media screen and (max-width: 500px) {
    .SocialFeed .item-sizer,
    .SocialFeed .item {
        width: 100%;
    }
    .SocialFeed .item-gutter {
        width: 0;
    }
    .SocialFeed .item {
        margin-bottom: 1rem;
    }
}

.SocialFeed.hide-items .item {
    display: none;
}

.SocialFeed .item-inner {
    border: 1px solid #eeeeee;
}

.SocialFeed .item-inner .content-wrap {
    padding: 25px;
}

.SocialFeed .item-inner img {
    width: 100%
}

.SocialFeed .item-inner p {
    margin-bottom: 0;
}

.SocialFeed .icon-logo {
    font-size: 26px;
    vertical-align: middle;
    margin-right: 20px;
}

.item-twitter .icon-logo {
    color: #65ccef;
}

.item-youtube .icon-logo {
    color: #ed6c53;
}

.item-facebook .icon-logo {
    color: #517cbe;
    font-size: 22px;
}

.item-blog .icon-logo {
    color: #22a7f0;
    font-size: 22px;
}

@media screen and (max-width: 770px) {
    .SocialFeed .item-inner .content-wrap {
        padding: 10%;
    }
}

@media screen and (max-width: 767px) {
    .socialTabs > li.js_active > span:before {
        content: "";
        height: 4px;
        position: absolute;
        bottom: -21px;
        right: -10px;
        left: -10px;
        background: #22a7f0;
    }
}

@media screen and (max-width: 500px) {
    .SocialFeed .item-inner .content-wrap {
        padding: 5%;
    }
}


/*----------------End Social Feeds------------------*/


/*=========================END HOME===========================*/


/*==========================VIDEOS============================*/

.videosFancy.ModuleDownloadListWithTags .ModuleContainerInner {
    margin-left: -3%;
}

.videosFancy.ModuleDownloadListWithTags .ModuleContainerInner:after {
    content: "";
    display: table;
    clear: both;
}

.videosFancy.ModuleDownloadListWithTags img {
    width: 100%;
}

.videosFancy.ModuleDownloadListWithTags .ModuleHeader,
.videosFancy.ModuleDownloadListWithTags .ModuleSeparator,
.videosFancy.ModuleDownloadListWithTags .ModuleHeadlineLink:after {
    display: none;
}

.videosFancy.ModuleDownloadListWithTags .ModuleItemRow {
    width: 33.33%;
    float: left;
    border: none;
    padding: 0;
    padding-left: 2.5%;
    margin-bottom: 2.5%;
}

.videosFancy.ModuleDownloadListWithTags .ModuleItemRow .sameHeight {
    border: 1px solid #eeeeee;
}

.videosFancy.ModuleDownloadListWithTags .ModuleThumbnail {
    display: block;
    position: relative;
}

.videosFancy.ModuleDownloadListWithTags .ModuleThumbnail:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3) url(../design/play.png) no-repeat center center;
    z-index: 2;
    transition: background-color 200ms ease-in-out 0s;
}

.videosFancy.ModuleDownloadListWithTags .ModuleThumbnail:hover:after {
    background-color: rgba(0, 0, 0, .1);
}

.videosFancy.ModuleDownloadListWithTags .ModuleHeadlineLink {
    display: block;
    color: #2d3d4f;
    font-weight: 700;
    font-size: 18px;
    padding: 9%;
}

@media screen and (max-width: 768px) {
    .videosFancy.ModuleDownloadListWithTags .ModuleContainerInner {
        margin-left: 0;
    }
    .videosFancy.ModuleDownloadListWithTags .ModuleItemRow {
        width: auto;
        float: none;
        padding-left: 0;
        padding-bottom: 50px;
        font-size: 16px;
    }
    .videosFancy.ModuleDownloadListWithTags .ModuleHeadlineLink {
        padding: 20px;
    }
}


/*========================END VIDEOS==========================*/


/*---------------START FINANCIAL INFORMATION - FINANCIAL REPORTS PAGE---------------------*/


/*start reset table*/

.financialReports {
    display: inline-block;
    width: 100%;
}

.financialReports .financial-document-list .slick-list {
    margin: 0;
}

.financialReports .financial-document-category,
.financialReports .financial-year-list,
.financialReports .financial-category-text {
    background: none;
}

.financialReports .financial-document-category,
.financialReports .financial-year-list .slick-list,
.financialReports .financial-category-text {
    padding: 0;
    margin: 0;
}

.financialReports .financial-documents span.empty {
    opacity: 1;
    margin: 0;
    line-height: 1.4;
    width: auto;
    height: auto;
    padding: 0 5px;
}

.financialReports .financial-documents span + span {
    margin-left: 10px;
}

.financialReports .financial-documents span {
    background: none;
    color: #2c3e50;
    vertical-align: middle;
    width: auto;
    height: auto;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}


/*end reset table*/

.financialReports .financial-table {
    position: relative;
    overflow: hidden;
}

.financialReports .slick-slider {
    position: static;
}

.financialReports .financial-document-category {}

.financialReports .slick-prev::before,
.financialReports .slick-next::before,
.financialReports .slick-prev.slick-disabled::before,
.financialReports .slick-next.slick-disabled::before {
    opacity: 1;
    color: #22a7f0;
    font-size: 40px;
}

.financialReports .financial-year-list .slick-arrow {
    border: none;
    height: 45px;
    position: absolute;
    left: 0;
    top: 38px;
}

.financialReports .slick-prev.slick-disabled::before,
.financialReports .slick-next.slick-disabled::before {
    color: #CDD2D5;
}

.financialReports .financial-year-list .slick-next {
    margin-left: 30px;
}

.financialReports .financial-table-header {
    padding: 25px;
    border: 1px solid #CDD2D5;
}

.financialReports .financial-category-row {
    padding: 25px;
    border: 1px solid #CDD2D5;
    border-top: none;
}

.financialReports .financial-documents span.annual a.quarter-doc-link {
    font-size: 0;
}

.financialReports .financial-documents span.annual a.quarter-doc-link:after {
    content: "\e62a";
    font-family: 'q4icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    color: #DD2A2A;
    padding: 0 5px;
}

@media screen and (max-width: 767px) {
    .financialReports .financial-document-category {
        padding-left: 60px;
    }
}

@media screen and (max-width: 600px) {
    .financialReports .financial-table-header {
        padding: 15px;
    }
    .financialReports .financial-category-row {
        padding: 15px;
    }
    .financialReports .financial-year-list .slick-arrow {
        top: 28px;
    }
}


/*---------------END FINANCIAL INFORMATION - FINANCIAL REPORTS PAGE---------------------*/


/*---------------START NEWS & MEDIA - NEWS PAGE---------------------*/


/*start select box*/

.newsPressRelease .ModuleYearNavContainerInner {
    display: none;
}


/*.newsPressRelease .sbHolder {
    border: 1px solid #CDD2D5;
    float: none;
}

.newsPressRelease .sbOptions {
    border: 1px solid #CDD2D5;
    margin-top: 19px;
}
*/

.ModulePressRelease .ModuleYearNavContainer a,
.ModulePressReleaseLatest .ModuleYearNavContainer a {
    background-color: transparent;
}

.newsPressRelease .ModuleYearNavContainer a {
    color: #22a7f0;
    font-size: 14px;
    border: none;
}


/*end select box*/

.newsPressRelease .ModuleItemRow,
.newsPressRelease .ModulePressReleaseLatest .ModuleItemRow {
    margin: 0;
}

.newsPressRelease .ModuleDate,
.newsPressRelease .ModulePressReleaseLatest .ModuleDate,
.newsPressRelease .ModulePressReleaseDetails .ModuleDateContainer,
.newsPressRelease .ModulePressReleaseDetails .ModuleLinks {
    margin: 0;
    padding: 0;
}

.newsPressRelease .ModuleHeadlineLink,
.newsPressRelease .ModulePressReleaseLatest .ModuleHeadlineLink,
.newsPressRelease .ModulePressReleaseDetails .ModuleDetailHeadline {
    margin: 0;
    padding: 0;
}

.newsPressRelease .ModuleHeadlineLink a {
    color: #2c3e50;
    font-weight: 700;
}

.newsPressRelease .ModuleBody,
.newsPressRelease .ModulePressReleaseLatest .ModuleBody {
    margin: 0;
}

.newsPressRelease .ModuleReleasePDF {
    margin: 0;
    padding: 0;
    text-align: right;
}

.newsPressRelease .ModuleItemRow {
    padding: 25px;
    border-bottom: 1px solid #CDD2D5;
    border-left: 1px solid #CDD2D5;
    border-right: 1px solid #CDD2D5;
}

.newsPressRelease .ModuleItemRow:first-child {
    border-top: 1px solid #CDD2D5;
}

.newsPressRelease .catSelect + .sbHolder {
    margin-left: 10px;
    width: 120px;
}

.newsPressRelease .catSelect + .sbHolder .sbOptions {
    width: 120px;
}

@media screen and (max-width: 768px) {
    .newsPressRelease .ModuleItemRow {
        padding: 15px;
    }
    .newsPressRelease .ModuleReleasePDF {
        text-align: left;
        margin-top: 10px;
    }
}


/*---------------END NEWS & MEDIA - NEWS PAGE---------------------*/

.featurePresentation .ContentContainer {
    max-width: 700px;
    margin: 0 auto;
}
