@import "heritage-fonts.css";
@import "heritage-icons.css";
@import "heritage-ar-icons.css";

@charset "UTF-8";

/* COLOR CODES */

/*
# White #fff, rgb(255,255,255)
# Black #111d22, rgb(17,29,34)
# XLight Gray #f3f5f8, rgb(243,245,248)
# Light Gray #c5d1d8, rgb(197,209,216)
# Dark Gray #464646, rgb(70,70,70)
# Red Web #da181a, rgb(218,24,26)
# Heritage Blue Web #004b8d, rgb(0,75,141)
# Navy Blue Web #061d46, rgb(6,29,70)
# Bluemine Light Web #386274, rgb(56,98,116)
# Bluemine Dark Web #264a59, rgb(38,74,89)
# Glacier Blue Web #75a5c0, rgb(117,165,192)
# Sail Blue Web #bee7f9, rgb(190,231,249)
# Cyan Web #0093d0, rgb(0,147,208)
# Lime Web #c4d82d, rgb(196,216,45)
# Yellow Web #fdb71a, rgb(253,183,26)
# Indicator #ee28c0, rgb(238,40,192)
*/

/* COMMON STYLES */

:root {
    --white: #fff;
    --black: #111d22;
    --xlightgray: #f3f5f8;
    --lightgray: #c5d1d8;
    --darkgray: #464646;
    --red-web: #da181a;
    --heritageblue-web: #004b8d;
    --navyblue-web: #061d46;
    --bluemine-light-web: #386274;
    --bluemine-dark-web: #264a59;
    --glacierblue-web: #75a5c0;
    --sailblue-web: #bee7f9;
    --cyan-web: #0093d0;
    --lime-web: #c4d82d;
    --yellow-web: #fdb71a;
    --indicator: #ee28c0;
    --font-family-sans-serif: 'gotham a', 'gotham b', 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif;
    --font-family-sans-serif-alt: 'gotham narrow a', 'gotham narrow b', arial, sans-serif;
    --font-family-serif: 'chronicle display a', 'chronicle display b', 'TimesNewRoman', 'Times New Roman', 'Times', 'Baskerville', 'Georgia', serif;
    --font-family-heritage-icons: 'heritage-icons'
}

/* DEBUG */
* {
    /* outline: 1px solid var(--red-web); */
}

/* PAGE STYLES */

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-sans-serif);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    color: var(--darkgray);
    text-align: left;
    background-color: var(--white);
}

a {
    -webkit-text-decoration-skip: objects;
    color: var(--cyan-web);
    text-decoration: none;
    transition: color .3s ease
}

a:active,
a:focus,
a:hover {
    color: var(--cyan-web);
    text-decoration: underline
}

ul,
li {
    list-style: none;
}

li {
    margin: 0;
    padding: 0;
}

.font-alt {
    font-family: var(--font-family-sans-serif);
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.font-alt.narrow {
    font-family: var(--font-family-sans-serif-alt);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.serif {
    font-family: var(--font-family-serif);
    font-weight: 400;
}

strong,
.strong,
.bold {
    font-weight: 700!important;
}

.serif.strong {
    font-weight: 600!important;
}

img:not([draggable]), embed, object, video {
    max-width: 100%;
    height: auto;
}

/* NORMALIZE BUTTONS */

/*
    1. Change the font styles in all browsers.
    2. Remove the margin and padding in Firefox and Safari.
    Show the overflow in IE.
    3. Show the overflow in Edge.
    Remove the inheritance of text transform in Edge, Firefox, and IE.
    4. Remove the inheritance of text transform in Firefox.
    5. Correct the inability to style clickable types in iOS and Safari.
*/

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
    padding: 0; /* 2 */
}

button,
input {
    overflow: visible; /* 3 */
}

button,
select {
    text-transform: none; /* 4 */
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; /* 5 */
}

input[type="button"] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* SCROLLTOP */

.scrollTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    z-index: 90;
    background: var(--glacierblue-web);
    border: transparent;
    border-radius: .375rem;
    opacity: 0.5;
    -webkit-box-shadow: 0 0 15px 1px rgb(0 147 208 / 20%);
    box-shadow: 0 0 15px 1px rgb(0 147 208 / 20%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.scrollTop::before {
    content: "\e901";
    font-family: var(--font-family-heritage-icons);
    font-weight: 500;
    font-size: .75rem;
    color: var(--navyblue-web);
    display: inline-block;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.scrollTop:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    right: -.2rem;
    bottom: -.2rem;
    border: 1px solid var(--yellow-web);
    border-radius: .375rem;
}

.scrollTop:hover {
    opacity: 1;
}

/* COLORS */

.white {color: var(--white)!important;}
.black {color: var(--black)!important;}
.xlightgray {color: var(--xlightgray)!important;}
.lightgray {color: var(--lightgray)!important;}
.darkgray {color: var(--darkgray)!important;}
.red-web {color: var(--red-web)!important;}
.heritageblue-web {color: var(--heritageblue-web)!important;}
.navyblue-web {color: var(--navyblue-web)!important;}
.bluemine-light-web {color: var(--bluemine-light-web)!important;}
.bluemine-dark-web {color: var(--bluemine-dark-web)!important;}
.glacierblue-web {color: var(--glacierblue-web)}
.sailblue-web {color: var(--sailblue-web)!important;}
.cyan-web {color: var(--cyan-web)!important;}
.lime-web {color: var(--lime-web)!important;}
.yellow-web {color: var(--yellow-web)!important;}
.indicator {color: var(--indicator)!important;}

.bg-xlightgray {background-color: var(--xlightgray)!important;}
.bg-lightgray {background-color: var(--lightgray)!important;}
.bg-darkgray {background-color: var(--darkgray)!important;}
.bg-red-web {background-color: var(--red-web)!important;}
.bg-heritageblue-web {background-color: var(--heritageblue-web)!important;}
.bg-navyblue-web {background-color: var(--navyblue-web)!important;}
.bg-bluemine-light-web {background-color: var(--bluemine-light-web)!important;}
.bg-bluemine-dark-web {background-color: var(--bluemine-dark-web)!important;}
.bg-glacierblue-web {background-color: var(--glacierblue-web)}
.bg-sailblue-web {background-color: var(--sailblue-web)!important;}
.bg-cyan-web {background-color: var(--cyan-web)!important;}
.bg-lime-web {background-color: var(--lime-web)!important;}
.bg-yellow-web {background-color: var(--yellow-web)!important;}
.bg-indicator {background-color: var(--indicator)!important;}

/* HORIZONTAL RULES */

hr {
    width: 100%;
    border: 2px solid var(--black);
}

hr.solid {border-top-style: solid!important;}
hr.dashed {border-top-style: dashed!important;}
hr.dotted {border-top-style: dotted!important;}

hr.hr-opacity_1 {border-color: rgba(0,0,0,.1)!important;}
hr.hr-opacity_2 {border-color: rgba(0,0,0,.2)!important;}
hr.hr-opacity_3 {border-color: rgba(0,0,0,.3)!important;}
hr.hr-opacity_4 {border-color: rgba(0,0,0,.4)!important;}
hr.hr-opacity_5 {border-color: rgba(0,0,0,.5)!important;}
hr.hr-opacity_6 {border-color: rgba(0,0,0,.6)!important;}
hr.hr-opacity_7 {border-color: rgba(0,0,0,.7)!important;}
hr.hr-opacity_8 {border-color: rgba(0,0,0,.8)!important;}
hr.hr-opacity_9 {border-color: rgba(0,0,0,.9)!important;}
hr.hr-white {border-color: var(--white)!important;}
hr.hr-xlightgray {border-color: var(--xlightgray)!important;}
hr.hr-lightgray {border-color: var(--lightgray)!important;}
hr.hr-darkgray {border-color: var(--darkgray)!important;}
hr.hr-red-web {border-color: var(--red-web)!important;}
hr.hr-heritageblue-web {border-color: var(--heritageblue-web)!important;}
hr.hr-navyblue-web {border-color: var(--navyblue-web)!important;}
hr.hr-bluemine-light-web {border-color: var(--bluemine-light-web)!important;}
hr.hr-bluemine-dark-web {border-color: var(--bluemine-dark-web)!important;}
hr.hr-glacierblue-web {border-color: var(--glacierblue-web)}
hr.hr-sailblue-web {border-color: var(--sailblue-web)!important;}
hr.hr-cyan-web {border-color: var(--cyan-web)!important;}
hr.hr-lime-web {border-color: var(--lime-web)!important;}
hr.hr-yellow-web {border-color: var(--yellow-web)!important;}
hr.hr-indicator {border-color: var(--indicator)!important;}

.hr_text_center {
    display: flex;
    align-items: center;
    width: 100%;
}

.hr_text_center::before,
.hr_text_center::after {
    flex: 1;
    background: rgba(0, 0, 0, .2);
    content: "";
    height: 1px;
}

.hr_text_center span {
    padding: 0 .75rem;
}

.hr_text_center.hr_text_center-sailblue-web::before,
.hr_text_center.hr_text_center-sailblue-web::after {
    background: var(--sailblue-web);
}

/* BELL BUG */

.heritage-icon-heritage_bell.bug {
    color: var(--black);
    opacity: .5;
    font-size: 1rem;
    padding-left: 0.5rem;
}

.bug.bug-black {color: var(--black)!important;}
.bug.bug-xlightgray {color: var(--xlightgray)!important;}
.bug.bug-lightgray {color: var(--lightgray)!important;}
.bug.bug-darkgray {color: var(--darkgray)!important;}
.bug.bug-red-web {color: var(--red-web)!important;}
.bug.bug-heritageblue-web {color: var(--heritageblue-web)!important;}
.bug.bug-navyblue-web {color: var(--navyblue-web)!important;}
.bug.bug-bluemine-light-web {color: var(--bluemine-light-web)!important;}
.bug.bug-bluemine-dark-web {color: var(--bluemine-dark-web)!important;}
.bug.bug-glacierblue-web {color: var(--glacierblue-web)}
.bug.bug-sailblue-web {color: var(--sailblue-web)!important;}
.bug.bug-cyan-web {color: var(--cyan-web)!important;}
.bug.bug-lime-web {color: var(--lime-web)!important;}
.bug.bug-yellow-web {color: var(--yellow-web)!important;}
.bug.bug-indicator {color: var(--indicator)!important;}

/* SHADOW EFFECTS */

.shadow_effect-1 {
    position: relative;
}

.shadow_effect-1::before,
.shadow_effect-1::after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #aaa;
    box-shadow: 0 15px 10px #aaa;
    transform: rotate(-3deg);
}

.shadow_effect-1::after {
    transform: rotate(3deg);
    right: 10px;
    left: auto;
}

.shadow_effect-2::before {
    position: absolute;
    content: "";
    z-index: -1;
    bottom: 5px;
    left: 30px;
    right: 30px;
    top: 80%;
    background: #aaa;
    box-shadow: 0 0 25px 17px #aaa;
    border-radius: 100px/10px;
}

.shadow_effect-3 {
    position: relative;
}

.shadow_effect-3::before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #aaa;
    box-shadow: 0 15px 10px #aaa;
    transform: rotate(-3deg);
}

.shadow_effect-4 {
    position: relative;
}

.shadow_effect-4::before {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    right: 10px;
    left: auto;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #aaa;
    box-shadow: 0 15px 10px #aaa;
    transform: rotate(3deg);
}

.shadow_effect-5::before {
    position: absolute;
    content: "";
    z-index: -1;
    bottom: 20px;
    left: 8px;
    right: 8px;
    top: 20px;
    background: #aaa;
    box-shadow: 0 0 25px 10px #aaa;
    border-radius: 10px/40px;
}

.shadow_effect-5::after {
    position: absolute;
    content: "";
    z-index: -1;
    bottom: 14px;
    left: 30px;
    right: 30px;
    top: 14px;
    background: #aaa;
    box-shadow: 0 0 25px 17px #aaa;
    border-radius: 100px/10px;
}

.shadow_effect-6 {
    position: relative;
}

.shadow_effect-6::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 26px;
    left: 12px;
    bottom: 50px;
    width: 20%;
    transform: rotate(-10deg);
    box-shadow: 0 10px 25px 10px #aaa;
}

.shadow_effect-6::after {
    position: absolute;
    content: "";
    z-index: -1;
    top: 26px;
    right: 10px;
    bottom: 50px;
    width: 20%;
    transform: rotate(8deg);
    box-shadow: 0 10px 25px 10px #aaa;
}

/* CONTAINERS */

.fixed-height-large,
.fixed-height-medium,
.fixed-height-small{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fixed-height-large{min-height: 800px;}
.fixed-height-medium{min-height: 700px;}
.fixed-height-small{min-height: 600px;}

/* MAIN NAV */

.main-nav {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    background-color: rgba(0, 0, 0, .8);
    height: 4.375rem;
}

.logo-cell {
    background-color: rgba(0, 0, 0, .5);
}

.logo-cell:focus,
.logo-cell:hover {
    color: var(--lime-web);
    text-decoration: none;
    transition: color .3s ease;
}

.heritage-brand {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    font-size: 1.3125rem;
    line-height: 1rem;
    height: auto;
    background-color: transparent;
}

.heritage-brand span {
    font-size: 1rem;
    margin-left: 1rem;
}

.page-title {
    background-color: transparent;
}

.page-title a {
    color: var(--white);
    text-decoration: none;
}

.page-title a:hover {
    border-bottom: 2px solid var(--lime-web);
    transition: color .3s ease;
}

.trigger-drawer {
    background-color: var(--bluemine-light-web);
    border: none !important;
    border-radius: 0 !important;
    transition: background .3s ease;
}

.trigger-drawer:hover {
    background-color: var(--bluemine-dark-web);
}

.heritage-hamburger-menu {
    background-color: transparent;
    font-size: 1.25rem;
}

.page-content {
    font-family: var(--font-family-sans-serif);
    font-size: 1.4375rem;
    color: var(--black);
}

/* NAV SIDEBAR */

#sidebar {
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    color: var(--white);
    position: fixed;
    width: 20.9375rem;
    right: -20.9375rem;
    height: 100vh;
    z-index: 9999;
    padding: 1.25rem 3.125rem 3.4375rem 1.25rem;
    background: #252a2f;
    transition: all 0.3s;
    overflow-y: scroll;
}

#sidebar.active {
    right: 0;
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#dismiss {
    color: var(--lime-web);
    font-size: 1.5rem;
    text-align: right;
    margin-bottom: 1.75rem;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    color: var(--white);
}

#sidebar .components {
    border-bottom: 2px solid rgba(97, 100, 105, .3);
    margin-bottom: 1.25rem;
    padding-bottom: .3125rem;
}

#sidebar .sidebar-header {
    font-size: .875rem;
    letter-spacing: -.00625rem;
    color: var(--lime-web);
    margin-bottom: 1.25rem;
    padding-top: .625rem;
}

#sidebar ul li a {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    list-style: none;
    margin-bottom: 1.5625rem;
}

#sidebar ul li a:hover,
#sidebar ul li a:active,
#sidebar ul li a.active {
    color: var(--lime-web);
    text-decoration: none;
}

#sidebar .microsite ul li a {
    display: block;
    font-weight: 500;
    font-size: .875rem;
    letter-spacing: -.00625rem;
    color: var(--sailblue-web);
    list-style: none;
    margin-bottom: 1.5625rem;
}

#sidebar .microsite ul li a:hover {
    color: var(--lime-web);
    text-decoration: none;
}

#sidebar .homelink {
    margin: 1.5625rem 0;
}

#sidebar .homelink a {
    color: var(--white);
}

#sidebar .homelink a:hover,
#sidebar .homelink a:active,
#sidebar .homelink a.active {
    border-bottom: 2px solid var(--lime-web);
    text-decoration: none;
    transition: color .3s ease;
}

#sidebar .homelink-circle {
    border: .09375rem solid rgba(229, 231, 232, .2);
    border-radius: 50%;
    text-align: center;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.05;
    display: inline-block;
}

#sidebar .homelink i {
    margin-right: .9375rem;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* BREADCRUMBS */

.breadcrumbs {
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: 0.075em;
    line-height: 1.25;
    text-indent: .25rem;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--navyblue-web);
    -webkit-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.3s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.breadcrumbs a {
    font-weight: 600;
    color: var(--navyblue-web);
    text-decoration: none;
}

.breadcrumbs a:active,
.breadcrumbs a:focus,
.breadcrumbs a:hover {
    color: var(--cyan-web);
    text-decoration: none;
}

.breadcrumbs.breadcrumbs-white,
.breadcrumbs.breadcrumbs-white a {
    color: var(--white);
}

.breadcrumbs.breadcrumbs-white a:active,
.breadcrumbs.breadcrumbs-white a:focus,
.breadcrumbs.breadcrumbs-white a:hover {
    color: var(--cyan-web);
}

/* SOCIAL ICONS */

.social_icon-container {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    width: auto;
}

.social_icon-container.highlight {
    padding: 0 15px;
}

.social_icon-container span.highlight-white {
    display: inline;
    box-shadow: 8px 0 0 7px var(--white), -8px 0 0 7px var(--white);
    background: var(--white);
    opacity: 1;
}

.social_icon-container span.highlight-lime {
    display: inline;
    box-shadow: 8px 0 0 7px var(--lime-web), -8px 0 0 7px var(--lime-web);
    background: var(--lime-web);
    opacity: 1;
}

.social_icon-container  span.highlight-bluemine-light {
    display: inline;
    box-shadow: 8px 0 0 7px var(--bluemine-light-web), -8px 0 0 7px var(--bluemine-light-web);
    background: var(--bluemine-light-web);
    opacity: 1;
}

.social_icon-container  span.highlight-bluemine-dark {
    display: inline;
    box-shadow: 8px 0 0 7px var(--bluemine-dark-web), -8px 0 0 7px var(--bluemine-dark-web);
    background: var(--bluemine-dark-web);
    opacity: 1;
}

.social_icon-container  span.highlight-navy {
    display: inline;
    box-shadow: 8px 0 0 7px var(--navyblue-web), -8px 0 0 7px var(--navyblue-web);
    background: var(--navyblue-web);
    opacity: 1;
}

.social_icon {
    position: relative;
    display: inline-block;
    height: 3.125rem;
    width: 3.125rem;
    background-color: transparent;
    border: .09375rem solid #ebeff3;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 2.5;
    color: var(--glacierblue-web);
    text-align: center;
    transition: border-color .3s ease;
    cursor: pointer;
    z-index: 999;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.social_icon.mobile {
    height: 2.8125rem;
    width: 2.8125rem;
    font-size: 1.15rem;
}

.social_icon:hover,
.social_icon.mobile:hover {
    text-decoration: none;
    color: var(--cyan-web);
    transition: color .3s ease;
}

.social_icon:active,
.social_icon.mobile:active {
    animation: animate-article-icon_gradient 25ms;
    background: var(--lime-web);
    color: var(--white);
}

.social_icon.white,
.social_icon.white.mobile {
    border: .09375rem solid rgba(255,255, 255, .4);
    color: var(--white);
    transition: border-color .3s ease;
}

.social_icon.white:hover,
.social_icon.white.mobile:hover {
    border-color: var(--white);
    text-decoration: none;
}

.social_icon.xlightgray-bg, 
.social_icon.mobile.xlightgray-bg {
    background-color: rgba(243, 245, 248, .5); /* XLight Gray #f3f5f8, rgb(243,245,248) @50% opacity */
}

.social_icon.xlightgray-bg:hover, 
.social_icon.mobile.xlightgray-bg:hover {
    background-color: var(--xlightgray);
}

.social_icon.lime,
.social_icon.lime.mobile {
    border: .09375rem solid rgba(196,216, 45, .4);
    color: var(--lime-web);
    transition: border-color .3s ease;
}

.social_icon.lime:hover,
.social_icon.lime.mobile:hover {
    border-color: var(--lime-web);
    text-decoration: none;
}

.social_icon.navy,
.social_icon.navy.mobile {
    border: .09375rem solid rgba(6, 29, 70, .4);
    color: var(--navyblue-web);
    transition: border-color .3s ease;
}

.social_icon.navy:hover,
.social_icon.navy.mobile:hover {
    border-color: var(--navyblue-web);
    text-decoration: none;
}

@keyframes animate-article-icon_gradient {
    0% {
        background: radial-gradient(circle at center, rgba(196, 216, 45, 0) 0%, var(--white) 0%, var(--white) 100%);
    }

    25% {
        background: radial-gradient(circle at center, rgba(196, 216, 45, 0.3) 24%, var(--white) 25%, var(--white) 100%);
    }

    50% {
        background: radial-gradient(circle at center, rgba(196, 216, 45, 0.5) 49%, var(--white) 50%, var(--white) 100%);
    }

    75% {
        background: radial-gradient(circle at center, rgba(196, 216, 45, 0.8) 74%, var(--white) 75%, var(--white) 100%);
    }

    100% {
        color: var(--white);
        background: radial-gradient(circle at center, rgba(196, 216, 45, 1) 99%, var(--white) 100%, var(--white) 100%);
    }
}

/* FOOTER */

.global-footer {
    font-family: var(--font-family-sans-serif);
    font-size: 1.4375rem;
    color: var(--white);
    background-color: #2a2f36;
}

.global-footer .secondary-navigation {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 2rem;
}

.global-footer .subscribe-title {
    font-family: var(--font-family-serif);
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 200;
    line-height: 2rem;
    color: var(--lime-web);
}

.global-footer .subscribe-button {
    font-family: var(--font-family-sans-serif);
    font-size: .875rem;
    font-weight: 400;
    color: var(--white);
    background-color: var(--bluemine-light-web);
    height: 3.125rem;
    border-radius: 0;
    border-style: none;
    transition: background-color .3s ease;
}

.global-footer #Email,
.global-footer .subscribe-email-input {
    font-family: var(--font-family-sans-serif);
    font-size: .875rem;
    font-weight: 400;
    line-height: 50px;
    color: var(--white);
    background-color: transparent;
    height: 50px;
    border-radius: 0;
    border-style: none;
    border-bottom: .125rem Solid var(--bluemine-light-web);
    transition: border-color .3s ease;
}

.subscribe-email-input::placeholder {
    color: var(--lightgray);
}

.global-footer .subscribe-button:hover {
    background-color: #2e647b;
}

.global-footer .privacy-copyright {
    font-size: .6875rem;
    font-weight: 500;
    line-height: 1.5rem;
    padding-right: .75rem;
}

.global-footer .privacy-copyright .copyright-text {
    font-weight: 100;
    color: var(--lightgray);
}

* .secondary-navigation a,
.privacy-copyright a,
a.global-footer:before,
a.secondary-navigation:before,
a.privacy-copyright:before,
a.social-circle:before,
a.heritage-icon-social_twitter:before,
a.heritage-icon-social_facebook:before,
a.social-circle:focus,
a.heritage-icon-social_twitter:focus,
a.heritage-icon-social_facebook:focus,
a.social-circle:hover,
a.heritage-icon-social_twitter:hover,
a.heritage-icon-social_facebook:hover {
    color: var(--white);
    text-decoration: none;
}

.secondary-navigation a:focus,
.secondary-navigation a:hover,
.privacy-copyright a:focus,
.privacy-copyright a:hover {
    color: var(--lime-web);
    text-decoration: none;
    transition: color .3s ease;
}

.global-footer .social-circle {
    font-size: 1.25rem;
    line-height: 50px;
    text-align: center;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border: .09375rem solid rgba(229, 231, 232, .4);
    border-radius: 50%;
    text-decoration: none;
    transition: border-color .3s ease-in-out;
}

.global-footer .social-circle:focus,
.global-footer .social-circle:hover {
    border-color: var(--white);
    text-decoration: none;
    transition: color .3s ease-in-out;
}

.global-footer .heritage-bell {
    font-size: 1.875rem;
    line-height: 3.25rem;
    color: var(--white);
}

/* ARTICLE STYLES */

.article_eyebrow {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-start;
    width: auto;
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    font-size: .6875rem;
    text-transform: uppercase;
    padding: 1.0625rem 0 0;
    color: rgba(38, 74, 89, 1);
}

.article_eyebrow::before {
    content: '';
    position: absolute;
    display: block;
    width: 13.125rem;
    height: .125rem;
    background-color: var(--red-web);
    top: 0;
    left: 0;
    transition: background .3s ease;
}

.article_eyebrow a {
    text-transform: capitalize;
    font-size: .875rem;
    color: var(--cyan-web);
    letter-spacing: -.0125rem;
}

.article_eyebrow a::before {
    content: '';
    position: absolute;
    display: block;
    width: 13.125rem;
    height: .125rem;
    background-color: var(--red-web);
    top: 0;
    left: 0;
    transition: background .3s ease;
}

.article_eyebrow a:focus,
.article_eyebrow a:hover {
    text-decoration: none;
    color: var(--cyan-web);
    cursor: pointer
}

.article_eyebrow a:hover::before {
    background-color: var(--cyan-web);
}

.article_headline {
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    font-size: 3.25rem;
    line-height: 3.75rem;
    color: var(--navyblue-web);
}

.article_headline.highlight {
    padding: 0 15px;
}

.article_headline h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    margin: 0;
}

.article_headline h2.highlight {
    line-height: 1.2;
}

.article_byline {
    font-family: var(--font-family-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.25;
    color: var(--navyblue-web);
}

.article_headline.white,
.article_byline.white {
    color: var(--white);
}

.article_headline.cyan,
.article_byline.cyan {
    color: var(--cyan-web);
}

.article_headline.navy,
.article_byline.navy {
    color: var(--navyblue-web);
}

.article_headline span.highlight-white {
    display: inline;
    -webkit-box-shadow: 8px 0 0 7px var(--white), -8px 0 0 7px var(--white);
    -moz-box-shadow: 8px 0 0 7px var(--white), -8px 0 0 7px var(--white);
    box-shadow: 8px 0 0 7px var(--white), -8px 0 0 7px var(--white);
    background: var(--white);
    opacity: .95;
}

.article_headline span.highlight-lime {
    display: inline;
    -webkit-box-shadow: 8px 0 0 7px var(--lime-web), -8px 0 0 7px var(--lime-web);
    -moz-box-shadow: 8px 0 0 7px var(--lime-web), -8px 0 0 7px var(--lime-web);
    box-shadow: 8px 0 0 7px var(--lime-web), -8px 0 0 7px var(--lime-web);
    background: var(--lime-web);
}

.article_headline span.highlight-sailblue {
    display: inline;
    -webkit-box-shadow: 8px 0 0 7px var(--sailblue-web), -8px 0 0 7px var(--sailblue-web);
    -moz-box-shadow: 8px 0 0 7px var(--sailblue-web), -8px 0 0 7px var(--sailblue-web);
    box-shadow: 8px 0 0 7px var(--sailblue-web), -8px 0 0 7px var(--sailblue-web);
    background: var(--sailblue-web);
}

.article_headline span.highlight-glacierblue {
    display: inline;
    -webkit-box-shadow: 8px 0 0 7px var(--glacierblue-web), -8px 0 0 7px var(--glacierblue-web);
    -moz-box-shadow: 8px 0 0 7px var(--glacierblue-web), -8px 0 0 7px var(--glacierblue-web);
    box-shadow: 8px 0 0 7px var(--glacierblue-web), -8px 0 0 7px var(--glacierblue-web);
    background: var(--glacierblue-web);
}

.article_headline span.highlight-bluemine-light {
    display: inline;
    -webkit-box-shadow: 8px 0 0 7px var(--bluemine-light-web), -8px 0 0 7px var(--bluemine-light-web);
    -moz-box-shadow: 8px 0 0 7px var(--bluemine-light-web), -8px 0 0 7px var(--bluemine-light-web);
    box-shadow: 8px 0 0 7px var(--bluemine-light-web), -8px 0 0 7px var(--bluemine-light-web);
    background: var(--bluemine-light-web);
}

.article_headline span.highlight-bluemine-dark {
    display: inline;
    -webkit-box-shadow: 8px 0 0 7px var(--bluemine-dark-web), -8px 0 0 7px var(--bluemine-dark-web);
    -moz-box-shadow: 8px 0 0 7px var(--bluemine-dark-web), -8px 0 0 7px var(--bluemine-dark-web);
    box-shadow: 8px 0 0 7px var(--bluemine-dark-web), -8px 0 0 7px var(--bluemine-dark-web);
    background: var(--bluemine-dark-web);
}

.article_headline span.highlight-navy {
    display: inline;
    -webkit-box-shadow: 8px 0 0 7px var(--navyblue-web), -8px 0 0 7px var(--navyblue-web);
    -moz-box-shadow: 8px 0 0 7px var(--navyblue-web), -8px 0 0 7px var(--navyblue-web);
    box-shadow: 8px 0 0 7px var(--navyblue-web), -8px 0 0 7px var(--navyblue-web);
    background: var(--navyblue-web);
}

.article_headline h2 > span.highlight-white {
    display: inline;
    -webkit-box-shadow: 13px 0 0 2px var(--white), -13px 0 0 2px var(--white);
    -moz-box-shadow: 13px 0 0 2px var(--white), -13px 0 0 2px var(--white);
    box-shadow: 13px 0 0 2px var(--white), -13px 0 0 2px var(--white);
    background: var(--white);
    opacity: .95;
}

.article_headline h2 > span.highlight-lime {
    display: inline;
    -webkit-box-shadow: 13px 0 0 2px var(--lime-web), -13px 0 0 2px var(--lime-web);
    -moz-box-shadow: 13px 0 0 2px var(--lime-web), -13px 0 0 2px var(--lime-web);
    box-shadow: 13px 0 0 2px var(--lime-web), -13px 0 0 2px var(--lime-web);
    background: var(--lime-web);
}

.article_headline h2 > span.highlight-sailblue {
    display: inline;
    -webkit-box-shadow: 13px 0 0 2px var(--sailblue-web), -13px 0 0 2px var(--sailblue-web);
    -moz-box-shadow: 13px 0 0 2px var(--sailblue-web), -13px 0 0 2px var(--sailblue-web);
    box-shadow: 13px 0 0 2px var(--sailblue-web), -13px 0 0 2px var(--sailblue-web);
    background: var(--sailblue-web);
}

.article_headline h2 > span.highlight-glacierblue {
    display: inline;
    -webkit-box-shadow: 13px 0 0 2px var(--glacierblue-web), -13px 0 0 2px var(--glacierblue-web);
    -moz-box-shadow: 13px 0 0 2px var(--glacierblue-web), -13px 0 0 2px var(--glacierblue-web);
    box-shadow: 13px 0 0 2px var(--glacierblue-web), -13px 0 0 2px var(--glacierblue-web);
    background: var(--glacierblue-web);
}

.article_headline h2 > span.highlight-bluemine-light {
    display: inline;
    -webkit-box-shadow: 13px 0 0 2px var(--bluemine-light-web), -13px 0 0 2px var(--bluemine-light-web);
    -moz-box-shadow: 13px 0 0 2px var(--bluemine-light-web), -13px 0 0 2px var(--bluemine-light-web);
    box-shadow: 13px 0 0 2px var(--bluemine-light-web), -13px 0 0 2px var(--bluemine-light-web);
    background: var(--bluemine-light-web);
}

.article_headline h2 > span.highlight-bluemine-dark {
    display: inline;
    -webkit-box-shadow: 13px 0 0 2px var(--bluemine-dark-web), -13px 0 0 2px var(--bluemine-dark-web);
    -moz-box-shadow: 13px 0 0 2px var(--bluemine-dark-web), -13px 0 0 2px var(--bluemine-dark-web);
    box-shadow: 13px 0 0 2px var(--bluemine-dark-web), -13px 0 0 2px var(--bluemine-dark-web);
    background: var(--bluemine-dark-web);
}

.article_headline h2 > span.highlight-navy {
    display: inline;
    -webkit-box-shadow: 13px 0 0 2px var(--navyblue-web), -13px 0 0 2px var(--navyblue-web);
    -moz-box-shadow: 13px 0 0 2px var(--navyblue-web), -13px 0 0 2px var(--navyblue-web);
    box-shadow: 13px 0 0 2px var(--navyblue-web), -13px 0 0 2px var(--navyblue-web);
    background: var(--navyblue-web);
}

.article_general-info {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: auto;
    font-family: var(--font-family-sans-serif);
    font-weight: 500;
    font-size: .75rem;
    line-height: 1.25rem;
    letter-spacing: -.1px;
    margin: 1rem 0 1.4375rem;
    color: var(--bluemine-dark-web);
}

.article_general-info a {
    color: var(--glacierblue-web);
    transition: color .3s ease;
}

.article_general-info a:hover {
    text-decoration: none;
    color: var(--cyan-web);
}

.article_body-copy {
    width: auto;
    font-family: var(--font-family-sans-serif);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
}

.article_body-copy p,
.article_body-copy li {
    list-style: disc;
    margin-bottom: 1.25rem;
}

.article_body-copy ol.mb-none li, 
.article_body-copy ul.mb-none li {
    margin-bottom: 0;
}

.article_body-copy a {
    color: var(--cyan-web);
}

.article_body-copy a:active,
.article_body-copy a:focus,
.article_body-copy a:hover {
    color: var(--cyan-web);
}

.article_body-copy a.contributors {
    font-weight: 500;
    color: var(--bluemine-light-web);
    border-bottom: 2px solid var(--lime-web);
    transition: all .3s ease;
}

.article_body-copy a.contributors:active, 
.article_body-copy a.contributors:focus, 
.article_body-copy a.contributors:hover {
    color: var(--cyan-web);
    text-decoration: none;
}

.article_body-copy h3 {
    font-weight: 500;
    font-size: 1.3125rem;
}

.article_body-copy .dropcap {
    font-family: var(--font-family-serif);
    font-size: 3.675rem;
    font-weight: 300;
    line-height: .9;
    letter-spacing: .075em;
    text-transform: uppercase;
    float: left;
    color: var(--bluemine-dark-web);
    margin: 2.5px 2.5px 0 0;
    padding: 0;
}

.article_body-copy blockquote > p {
    font-size: 1rem;
    line-height: 1.875rem;
    color: var(--bluemine-dark-web);
    margin: 3.125rem 0;
    margin-left: 15%;
    border-left: 1px solid var(--lightgray);
    padding-left: 2.5rem;
}

.article_body-copy .pullquote-container {
    position: relative;
    background-color: var(--glacierblue-web);
    border-radius: .375rem;
}

.article_body-copy .pullquote-container:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    right: -.25rem;
    bottom: -.25rem;
    border: 1px solid var(--yellow-web);
    border-radius: .375rem;
}

.article_body-copy .pullquote {
    position: relative;
    font-family: var(--font-family-sans-serif);
    font-weight: 300;
    font-size: 1.75rem;
    line-height: 1.35;
    color: var(--white);
    border: none;
    background: 0 0;
    margin: 1em 0;
    padding: 0 1.25rem 0 6.25rem;
}

.article_body-copy .pullquote:before {
    display: block;
    position: absolute;
    content: "\201C";
    font-size: 9.375rem;
    font-weight: 500;
    left: 15px;
    top: -50px;
    color: var(--navyblue-web);
    opacity: 1;
    z-index: 2;
}

.article_body-copy .pullquote footer {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: right;
    letter-spacing: .175rem;
}

.article_body-copy .axis-label {
    font-family: var(--font-family-sans-serif-alt);
    font-size: 1.25rem;
}

.article_body-copy .note {
    font-family: var(--font-family-sans-serif-alt);
    color: rgba(38, 74, 89, .75);
}

.article_body-copy .note span {
    text-transform: uppercase;
    font-weight: 700;
}

.article_body-copy .annotation_highlight {
    font-weight: 400;
    font-size: .6875rem;
    line-height: .6875rem;
    color: var(--cyan-web);
    vertical-align: super;
}

.article_body-copy .annotation_highlight:before {
    content: '[';
}

.article_body-copy .annotation_highlight:after {
    content: ']';
}

.article_body-copy .accordion .card {
    background: none;
    border: none;
    border-bottom: 1px solid var(--lightgray);
}

.article_body-copy .accordion .card:last-of-type {
    border-bottom: none;
}

.article_body-copy .accordion .card .card-header {
    background: none;
    border: none;
    padding: 1rem 0;
}

.article_body-copy .accordion .card .card-header a {
    text-decoration: none;
}

.article_body-copy .accordion .card-header .btn {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    text-align: left;
    color: var(--bluemine-light-web);
    padding: 0;
}

.article_body-copy .accordion .card-header .btn span {
    font-family: var(--font-family-sans-serif-alt);  
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 700;
    white-space: nowrap;
}

.article_body-copy .accordion .card-header .btn div.methodology-score {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    max-width: 120px;
    font-family: var(--font-family-sans-serif-alt);
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25;
    letter-spacing: .05rem;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    color: var(--navyblue-web);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: rgba(243, 245, 248, .5); /* XLight Gray #f3f5f8, rgb(243,245,248) @50% opacity */
    border: .09375rem solid rgba(6, 29, 70, .4);
    border-radius: .125rem;
    padding: .65rem .75rem;
    background-position: center;
    transition: all .3s ease;
}

.article_body-copy .accordion .card-header .btn div.methodology-score.small {
    min-width: 70px;
    max-width: 70px;
    font-size: .875rem;
    line-height: 1.25;
    letter-spacing: .05rem;
    padding: .5rem;
}

.article_body-copy .accordion .card-header i {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--cyan-web);
    transition: all .3s ease;
}

.article_body-copy .accordion .card-header .btn:hover {
    color: var(--cyan-web);
    text-decoration: none;
}

.article_body-copy .accordion .btn div.methodology-score:active, .article_body-copy .accordion .btn div.methodology-score:hover, a.article_body-copy .accordion .btn div.methodology-score:active, a.article_body-copy .accordion .btn div.methodology-score:hover {
    color: var(--navyblue-web);
    background-color: var(--xlightgray);
    border: .09375rem solid var(--navyblue-web);
    text-decoration: none;
}

.article_body-copy .accordion .btn div.methodology-score:focus {
    color: var(--navyblue-web);
    background-color: var(--white);
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    outline: none;
}

.article_body-copy .accordion .card-body {
    color: var(--black);
    max-height: 460px;
    overflow: scroll;
    padding: 0 3.3rem;
}

.article_body-copy .accordion .card-body p:last-child {
    margin-bottom: 0;
}

.article_body-copy .accordion .highlight .btn div.methodology-score {
    color: var(--navyblue-web);
    background-color: var(--lime-web);
    border: .09375rem solid var(--navyblue-web);
    text-decoration: none;
}

.article_body-copy .accordion .highlight i {
    transform: rotate(180deg);
    color: var(--lime-web);
}

.article_body-copy .accordion .card-header div.download {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 150px;
    font-family: var(--font-family-sans-serif-alt);
    font-weight: 400;
    font-size: .875rem;
    letter-spacing: .05rem;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    color: var(--white);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--bluemine-light-web);
    border: .09375rem solid var(--white);
    border-radius: 0.125rem;
    padding: 0.375rem 0.75rem;
    background-position: center;
    transition: all .3s ease;
}

.article_body-copy .accordion .card-header div.download.round {
    height: 2.8125rem;
    width: 2.8125rem;
    letter-spacing: 0;
    border-radius: 50%;
}

.article_body-copy .accordion .card-header div.download:hover, .article_body-copy .accordion .card-header div.download:active, a.article_body-copy .accordion .card-header div.download:hover, a.article_body-copy .accordion .card-header div.download:active {
    color: var(--white);
    background-color: var(--cyan-web);
    text-decoration: none;
}

.article_body-copy .accordion .card-header div.download:focus {
    color: var(--white);    
    border-color: var(--cyan-web);
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    outline: none;
}

.article_body-copy .accordion .card-header .download i {
    font-size: 1.5rem;
    line-height: 0;
    color: var(--white);
    transition: all .3s ease;
}

.article_body-copy .accordion .card-header .download.round i {
    font-size: 1.75rem;
}

.article_body-copy .accordion .highlight .download i {
    transform: none;
    color: var(--lime-web);
}

.article_body-copy .accordion .card .card-body.model-legislation p.indent {
    padding-left: 2.5rem;
}

.article_body-copy .accordion .card .card-body.model-legislation ol {
    margin-bottom: 1.25rem;
    padding-inline-start: 0;
}

.article_body-copy .accordion .card .card-body.model-legislation ol.level-one {
    padding-left: 1.375rem;
}

.article_body-copy .accordion .card .card-body.model-legislation ol.level-two {
    padding-left: 3.75rem;
}

.article_body-copy .accordion .card .card-body.model-legislation ol.level-three {
    padding-left: 6.125rem;
}

.article_body-copy .accordion .card .card-body.model-legislation ol.decimal li {list-style-type: decimal;}
.article_body-copy .accordion .card .card-body.model-legislation ol.lower-alpha li {list-style-type: lower-alpha;}
.article_body-copy .accordion .card .card-body.model-legislation ol.upper-alpha li {list-style-type: upper-alpha;}
.article_body-copy .accordion .card .card-body.model-legislation ol.lower-roman li {list-style-type: lower-roman;}
.article_body-copy .accordion .card .card-body.model-legislation ol.upper-roman li {list-style-type: upper-roman;}
.article_body-copy .accordion .card .card-body.model-legislation ol.none li {list-style-type: none;}

/* BUTTONS */

.THF_button {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    font-family: var(--font-family-sans-serif-alt);
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.25;
    letter-spacing: .05rem;
    text-transform: uppercase;
    text-align: center;
    vertical-align: middle;
    color: var(--white);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--bluemine-light-web);
    border: .09375rem solid var(--white);
    border-radius: 0.125rem;
    padding: 0.65rem 0.75rem;
    background-position: center;
    transition: all .3s ease;
}

.THF_button:hover,
.THF_button:active,
a.THF_button:hover,
a.THF_button:active {
    color: var(--white);
    background-color: var(--cyan-web);
    text-decoration: none;
}

.THF_button:focus {
    color: var(--white);    
    border-color: var(--cyan-web);
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    outline: none;
}

.THF_button.outline {
    font-weight: 500;
    color: var(--navyblue-web);
    background-color: var(--white);
    border: .09375rem solid rgba(6, 29, 70, .4);
    transition: all .3s ease;
}

.THF_button.outline:hover,
.THF_button.outline:active,
a.THF_button.outline:hover,
a.THF_button.outline:active {
    color: var(--navyblue-web);
    background-color: var(--white);
    border: .09375rem solid var(--navyblue-web);
    text-decoration: none;
}

.THF_button.outline:focus {
    color: var(--navyblue-web);
    background-color: var(--white);
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    outline: none;
}

.THF_button.outline.xlightgray-bg {
    background-color: rgba(243, 245, 248, .5); /* XLight Gray #f3f5f8, rgb(243,245,248) @50% opacity */
}

.THF_button.outline.xlightgray-bg:hover,
.THF_button.outline.xlightgray-bg:active,
a.THF_button.outline.xlightgray-bg:hover,
a.THF_button.outline.xlightgray-bg:active {
    background-color: var(--xlightgray);
}

/* CHECKBOXES */

#checkboxOptions {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.heritage-icon-copy_clipboard {
    color: var(--white);
}

.heritage-checkbox * {
    box-sizing: border-box;
}

.heritage-checkbox input:not([type=checkbox]):not([type=radio]) {
    display: none;
}

.heritage-checkbox {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
}

.heritage-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 1em;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.heritage-checkbox .state label {
    position: initial;
    display: inline-block;
    font-weight: 500;
    letter-spacing: .05rem;
    text-transform: uppercase;
    vertical-align: baseline;
    margin: 0;
    text-indent: 1.75em;
    min-width: calc(1em + 2px);
    color: var(--black);
}

.heritage-checkbox .state label:after,
.heritage-checkbox .state label:before {
    content: '';
    width: calc(1em + 2px);
    height: calc(1em + 2px);
    display: block;
    box-sizing: border-box;
    border-radius: 0;
    border: .109375rem solid transparent;
    z-index: 0;
    position: absolute;
    left: 0;
    top: calc((0% - (100% - 1em)) - 8%);
    background-color: transparent;
}

.heritage-checkbox .state label:before {
    border-color: rgba(38, 74, 89, .4);
}

.heritage-checkbox .incidents label {
    position: initial;
    display: inline-block;
    font-weight: 500;
    letter-spacing: .05rem;
    text-transform: uppercase;
    vertical-align: baseline;
    margin: 0;
    min-width: calc(1em + 2px);
    color: var(--black);
}

.heritage-checkbox .state.thf-is-hover,
.heritage-checkbox .state.thf-is-indeterminate {
    display: none;
}

.heritage-checkbox.thf-icon .state .icon {
    position: absolute;
    font-size: 1em;
    width: calc(1em + 2px);
    height: calc(1em + 2px);
    left: 0;
    z-index: 1;
    text-align: center;
    line-height: normal;
    top: calc((0% - (100% - 1em)) - 8%);
    border: 1px solid transparent;
    background-color: var(--lime-web);
    opacity: 0;
}

.heritage-checkbox.thf-icon .state .icon:before {
    margin: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .7rem;
    line-height: 1;
}

.heritage-checkbox.thf-icon input:checked ~ .state .icon {
    opacity: 1;
}

.heritage-checkbox.thf-icon input:checked ~ .state label:before {
    border-color: rgba(38, 74, 89, .4);
}

.heritage-checkbox.thf-plain.thf-plain .icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.heritage-checkbox.thf-round .state label:after,
.heritage-checkbox.thf-round .state label:before {
    border-radius: 100%;
}

.heritage-checkbox.thf-round.thf-icon .state .icon {
    border-radius: 100%;
    overflow: hidden;
}

.heritage-checkbox.thf-round.thf-icon .state .icon:before {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
}

.heritage-checkbox.thf-smooth .icon,
.heritage-checkbox.thf-smooth label:after,
.heritage-checkbox.thf-smooth label:before {
    transition: all .5s ease;
}

.heritage-checkbox.thf-smooth input:checked + .state label:after {
    transition: all .3s ease;
}

.heritage-checkbox.thf-smooth input:checked + .state .icon {
    -webkit-animation: zoom .2s ease;
    animation: zoom .2s ease;
}

.heritage-checkbox.thf-smooth.thf-default input:checked + .state label:after {
    -webkit-animation: zoom .2s ease;
    animation: zoom .2s ease;
}

.heritage-checkbox.thf-smooth.thf-plain input:checked + .state label:before {
    content: '';
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: all .5s ease;
}

/* SELECT BOX */

/* id applies to select element itself, not a wrapper element */
.selectState {
    display: block;
    font-family: var(--font-family-sans-serif);
    font-weight: 400;
    font-size: 1rem;
    color: var(--black);
    line-height: 1.3;
    padding: .6em 1.4em .5em .8em;
    width: 100%;
    max-width: 100%; /* useful when width is set to anything other than 100% */
    box-sizing: border-box;
    margin: 0;
    border: .0625rem solid rgba(0, 0, 0, .25);
    border-radius: .125em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    user-select: none;
    background-color: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 0.5) 47%, rgba(237, 237, 237, 0.5) 100%);
    /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient. for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23c4d82d%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 0.5) 47%, rgba(237, 237, 237, 0.5) 100%);
    background-repeat: no-repeat, repeat;
    /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
    background-position: right .7em top 50%, 0 0;
    /* icon size, then gradient */
    background-size: .65em auto, 100%;
    transition: all .3s ease-in-out;
}

/* Hide arrow icon in IE browsers */
.selectState::-ms-expand {
    display: none;
}

/* Hover style */
.selectState:hover {
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .1);
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23111d22%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Focus style */
.selectState:focus {
    border-color: rgba(0, 0, 0, .25);
    -webkit-box-shadow: 0px 0px 3px 1px rgba(196, 216, 45, .7);
    -moz-box-shadow: 0px 0px 3px 1px rgba(196, 216, 45, .7);
    box-shadow: 0px 0px 3px 1px rgba(196, 216, 45, .7);
    outline: none;
}

/* Set options to normal weight */
.selectState option {
    font-weight: normal;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] .selectState,
:root:lang(ar) .selectState,
:root:lang(iw) .selectState {
    background-position: left .7em top 50%, 0 0;
    padding: .6em .8em .5em 1.4em;
}

/* Disabled styles */
.selectState:disabled,
.selectState[aria-disabled=true] {
    color: graytext;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
        linear-gradient(to bottom, rgba(38, 74, 89, .1) 0%, rgba(38, 74, 89, .1) 100%);
}

.selectState:disabled:hover,
.selectState[aria-disabled=true] {
    border-color: #aaa;
}

.selectLabel {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: .5rem;
}

/* FORM */

.formInput {
    display: block;
    width: 100%;
    max-width: 100%; /* useful when width is set to anything other than 100% */
    height: calc(1.5em + 0.75rem + 2px);
    font-size: 1rem;
    line-height: 1.25;
    color: var(--black);
    background-color: var(--white);
    background-clip: padding-box;
    border: .0625rem solid rgba(0, 0, 0, .25);
    border-radius: .125em;
    padding: .375rem .75rem;
    box-sizing: border-box;
    margin: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 0.5) 47%, rgba(237, 237, 237, 0.5) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 0.5) 47%, rgba(237, 237, 237, 0.5) 100%);
    background-repeat: repeat;
    background-position: 0 0;
    background-size: 100%;
    transition: all .3s ease-in-out;
}

.formInput:hover {
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .1);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.formInput:focus {
    border-color: rgba(0, 0, 0, .25);
    -webkit-box-shadow: 0px 0px 3px 1px rgba(196, 216, 45, .7);
    -moz-box-shadow: 0px 0px 3px 1px rgba(196, 216, 45, .7);
    box-shadow: 0px 0px 3px 1px rgba(196, 216, 45, .7);
    outline: none;
}

.formButton {
    width: auto;
    font-family: var(--font-family-sans-serif-alt);
    font-weight: 400;
    font-size: .625rem;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
    background-color: rgba(38, 74, 89, .1);
    border: .09375rem solid rgba(0, 147, 208, .25);
    border-radius: .125rem;
    padding: .535rem 0.75rem;
    background-position: center;
    transition: background 0.8s;
}

.formButton:hover,
.formButton button:hover {
    background: rgba(38, 74, 89, .075) radial-gradient(circle, transparent 1%, rgba(38, 74, 89, .075) 1%) center/15000%;
}

.formButton:active,
.formButton button:active {
    color: rgba(17, 29, 34, .8);
    background-color: var(--lime-web);
    background-size: 100%;
    transition: background 0s;
}

/* RANGE SLIDERS */

input[type=range] {
    height: 25px;
    -webkit-appearance: none;
    width: 100%;
    background-color: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000;
    background: var(--lightgray);
    border-radius: 5px;
    border: .0625rem solid rgba(0, 0, 0, .25);
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px var(--black);
    border: .0625rem solid var(--red-web);
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: rgba(237, 237, 237, 1);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7.5px;
}

input[type=range]::-webkit-slider-thumb:hover {
    background: var(--white);
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .15);
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .15);
    transition: all .1s ease-in-out;
}

input[type=range]::-webkit-slider-thumb:active {
    background: var(--lime-web);
    border-color: rgba(0, 0, 0, .25);
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: var(--lightgray);
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000;
    background: var(--lightgray);
    border-radius: 5px;
    border: .0625rem solid rgba(0, 0, 0, .25);
}

input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px var(--black);
    border: .0625rem solid var(--red-web);
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: rgba(237, 237, 237, 1);
    cursor: pointer;
}

input[type=range]::-moz-range-thumb:hover {
    background: var(--white);
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .15);
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .15);
    transition: all .1s ease-in-out;
}

input[type=range]::-moz-range-thumb:active {
    background: var(--lime-web);
    border-color: rgba(0, 0, 0, .25);
}

input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: var(--lightgray);
    border: .0625rem solid rgba(0, 0, 0, .25);
    border-radius: 10px;
    box-shadow: 0px 0px 0px #000;
}

input[type=range]::-ms-fill-upper {
    background: var(--lightgray);
    border: .0625rem solid rgba(0, 0, 0, .25);
    border-radius: 10px;
    box-shadow: 0px 0px 0px #000;
}

input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px var(--black);
    border: 1px solid var(--red-web);
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: rgba(237, 237, 237, 1);
    cursor: pointer;
}

input[type=range]::-ms-thumb:hover {
    background: var(--white);
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .15);
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .15);
    transition: all .1s ease-in-out;
}

input[type=range]::-ms-thumb:active {
    background: var(--lime-web);
    border-color: rgba(0, 0, 0, .25);
}

input[type=range]:focus::-ms-fill-lower {
    background: var(--lightgray);
}

input[type=range]:focus::-ms-fill-upper {
    background: var(--lightgray);
}

/* TABLE STYLES THF */

.THFtable {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-sans-serif);
    text-align: center;
}

.THFtable-cell {
    box-sizing: border-box;
    -webkit-box-flex: 1;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.75em .75em;
    overflow: hidden;
    list-style: none;
}

.THFtable-cell.source {
    display: block;
    margin: 0;
    padding: 0;
    font-family: var(--font-family-sans-serif-alt);
    font-weight: 400;
    font-size: .875rem;
    line-height: 1.25;
    color: rgba(38, 74, 89, .75);
    background-color: transparent;
}

.THFtable-cell.source p {
    margin-bottom: .5rem;
}

.THFtable-cell.source span {
    text-transform: uppercase;
    font-weight: 700;
}

.THFtable-cell.source a {
    color: var(--cyan-web);
}

.THFtable-cell.source a:focus,
.THFtable-cell.source a:hover {
    color: var(--cyan-web);
}

/* TABLE COLUMN SIZING */

.THFtable-1col > .THFtable-cell {
    width: 100%;
}

.THFtable-2cols > .THFtable-cell {
    width: 50%;
}

.THFtable-3cols > .THFtable-cell {
    width: 33.33%;
}

.THFtable-4cols > .THFtable-cell {
    width: 25%;
}

.THFtable-5cols > .THFtable-cell {
    width: 20%;
}

.THFtable-6cols > .THFtable-cell {
    width: 16.6%;
}

.THFtable-7cols > .THFtable-cell {
    width: 14.29%;
}

.THFtable-8cols > .THFtable-cell {
    width: 12.5%;
}

/* TABLE ORDER */

.THFtable-cell.order-0 {
    order: 0;
}

.THFtable-cell.order-1 {
    order: 1;
}

.THFtable-cell.order-2 {
    order: 2;
}

.THFtable-cell.order-3 {
    order: 3;
}

/* AR TEMPLATE STYLES */

/* AR TEMPLATE BACKGROUNDS */

.ar-template_hero-section {
    position: relative;
}

.ar-template_hero-section .ar-icon-container_thf-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}

.ar-template_hero-section .ar-icon_thf-logo-cell {
    background-color: transparent;
    transition: color .3s ease-in-out;
}

.ar-template_hero-section .ar-icon_thf-logo-cell a:active,
.ar-template_hero-section .ar-icon_thf-logo-cell a:focus,
.ar-template_hero-section .ar-icon_thf-logo-cell a:hover {
    color: var(--white);
    text-decoration: none;
}

.ar-template_hero-section .ar-icon_thf-logo {
    font-size: 3.75rem;
    color: var(--white);
}

.hero-section_bg-cover {
    width: 100%;
    display: block;
    position: relative;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover!important;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
    background-color: var(--navyblue-web);
    background-blend-mode: difference;
}

.hero-section_bg-cover.cover_front {
    background-image: url("/annual-report-2021/assets/images/sections/ar2021_section_front-cover.jpg");
    background-position: bottom;
}

.hero-section_bg-cover.bg-fixed {
    background-attachment: fixed;
}

.bg-cover {
    width: 100%;
    position: relative;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover!important;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 4.125rem;
}
.bg-cover.bg-color-blend {
    background-color: var(--yellow-web);
    background-blend-mode: luminosity;
}

.bg-cover.bg-fixed {
    background-attachment: fixed;
}

.bg-cover.cover_01 {
    background-image: url("/annual-report-2021/assets/images/sections/ar2021_section_01.jpg");
}
.bg-cover.cover_02 {
    background-image: url("/annual-report-2021/assets/images/sections/ar2021_section_02.jpg");
    background-position: top;
}
.bg-cover.cover_03 {
    background-image: url("/annual-report-2021/assets/images/sections/ar2021_section_03.jpg");
}

.bg-overlay-color,
.bg-overlay-color:after,
.bg-overlay-texture,
.bg-overlay-texture:after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.bg-overlay-color.overlay-color-navyblue-web {
    background-color: var(--navyblue-web);
}

.bg-overlay-color.overlay-color-glacierblue-web {
    background-color: var(--glacierblue-web);
}

.bg-overlay-color.overlay-color-sailblue-web {
    background-color: var(--sailblue-web);
}

.bg-overlay-color.overlay-color-yellow-web {
    background-color: var(--yellow-web);
}

.bg-overlay-texture.noise-texture_01 {
    background-image: url("/annual-report-2021/assets/images/backgrounds/noisy-texture-01.png");
}

.bg-overlay-texture.noise-texture_02 {
    background-image: url("/annual-report-2021/assets/images/backgrounds/noisy-texture-02.png");
}

.bg-overlay-color.color-opacity_0, 
.bg-overlay-texture.texture-opacity_0 {
    opacity: 0;
}

.bg-overlay-color.color-opacity_1, 
.bg-overlay-texture.texture-opacity_1 {
    opacity: .1;
}
.bg-overlay-color.color-opacity_2, 
.bg-overlay-texture.texture-opacity_2 {
    opacity: .2;
}
.bg-overlay-color.color-opacity_3, 
.bg-overlay-texture.texture-opacity_3 {
    opacity: .3;
}
.bg-overlay-color.color-opacity_4, 
.bg-overlay-texture.texture-opacity_4 {
    opacity: .4;
}
.bg-overlay-color.color-opacity_5, 
.bg-overlay-texture.texture-opacity_5 {
    opacity: .5;
}
.bg-overlay-color.color-opacity_6, 
.bg-overlay-texture.texture-opacity_6 {
    opacity: .6;
}
.bg-overlay-color.color-opacity_7, 
.bg-overlay-texture.texture-opacity_7 {
    opacity: .7;
}
.bg-overlay-color.color-opacity_8, 
.bg-overlay-texture.texture-opacity_8 {
    opacity: .8;
}
.bg-overlay-color.color-opacity_9, 
.bg-overlay-texture.texture-opacity_9 {
    opacity: .9;
}
.bg-overlay-color.color-opacity_10, 
.bg-overlay-texture.texture-opacity_10 {
    opacity: 1;
}

/* AR TEMPLATE: PAGE STYLES */

.ar-template_page-section,
.ar-template_body-section, 
.ar-template_small-section, {
    width: auto;
    position: relative;
    overflow: hidden;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 9rem 0;
}

.ar-template_body-section {
    padding: 0 0 9rem 0;
}

.ar-template_small-section {
    padding: 4.5rem 0;
}

.ar-template_body-copy {
    width: auto;
    font-family: var(--font-family-sans-serif);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
}

.ar-template_body-copy p,
.ar-template_body-copy li {
    list-style: disc;
    margin-bottom: 1.25rem;
}

.ar-template_body-copy ol.mb-none li, 
.ar-template_body-copy ul.mb-none li {
    margin-bottom: 0;
}

.ar-template_body-copy a {
    color: var(--cyan-web);
}

.ar-template_body-copy a:active,
.ar-template_body-copy a:focus,
.ar-template_body-copy a:hover {
    color: var(--cyan-web);
}

.ar-template_body-copy .dropcap {
    font-family: var(--font-family-serif);
    font-size: 3.675rem;
    font-weight: 300;
    line-height: .9;
    letter-spacing: .075em;
    text-transform: uppercase;
    float: left;
    color: var(--bluemine-dark-web);
    margin: 2.5px 2.5px 0 0;
    padding: 0;
}

.ar-template_body-copy blockquote > p {
    font-size: 1rem;
    line-height: 1.875rem;
    color: var(--bluemine-dark-web);
    margin: 3.125rem 0;
    margin-left: 15%;
    border-left: 1px solid var(--lightgray);
    padding-left: 2.5rem;
}

.ar-template_body-copy .pullquote-container {
    position: relative;
    background-color: var(--glacierblue-web);
    border-radius: .375rem;
}

.ar-template_body-copy .pullquote-container:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    right: -.25rem;
    bottom: -.25rem;
    border: 1px solid var(--yellow-web);
    border-radius: .375rem;
}

.ar-template_body-copy .pullquote {
    position: relative;
    font-family: var(--font-family-sans-serif);
    font-weight: 300;
    font-size: 1.75rem;
    line-height: 1.35;
    color: var(--white);
    border: none;
    background: 0 0;
    margin: 1em 0;
    padding: 0 1.25rem 0 6.25rem;
}

.ar-template_body-copy .pullquote:before {
    display: block;
    position: absolute;
    content: "\201C";
    font-size: 9.375rem;
    font-weight: 500;
    left: 15px;
    top: -50px;
    color: var(--navyblue-web);
    opacity: 1;
    z-index: 2;
}

.ar-template_body-copy .pullquote footer {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: right;
    letter-spacing: .175rem;
}

/* AR TEMPLATE: TYPOGRAPHY */

.typography_hero-section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.typography_hero-section {
    font-family: var(--font-family-sans-serif);
    font-size: 7.875rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: .05em;
    color: var(--sailblue-web);
}

.typography_hero-section div.outline {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.125rem;
    -webkit-text-stroke-color: var(--yellow-web);
}

.typography_hero-section div.ar-year {
    font-size: 3.275rem;
    font-weight: 600;
    letter-spacing: -.025em;
    color: var(--white);
}
.typography_hero-section div.ar-line {
    font-size: 1.5rem;
    font-weight: 200;
    line-height: .875;
    letter-spacing: .25em;
    color: var(--white);
}

.typography_hero-section-icon-container {
    position: absolute;
    top: 45px;
    z-index: 1;
}
.typography_hero-section-icon-container.chevron_00 {left: -1800px;}
.typography_hero-section-icon-container.chevron_01 {left: -1650px;}
.typography_hero-section-icon-container.chevron_02 {left: -1500px;}
.typography_hero-section-icon-container.chevron_03 {left: -1350px;}
.typography_hero-section-icon-container.chevron_04 {left: -1200px;}
.typography_hero-section-icon-container.chevron_05 {left: -1050px;}
.typography_hero-section-icon-container.chevron_06 {left: -900px;}
.typography_hero-section-icon-container.chevron_07 {left: -750px;}
.typography_hero-section-icon-container.chevron_08 {left: -600px;}
.typography_hero-section-icon-container.chevron_09 {left: -450px;}
.typography_hero-section-icon-container.chevron_10 {left: -300px;}
.typography_hero-section-icon-container.chevron_11 {left: -150px;}
.typography_hero-section-icon-container.chevron_12 {left: 0px;}
.typography_hero-section-icon-container.chevron_13 {left: 150px;}
.typography_hero-section-icon-container.chevron_14 {left: 300px;}
.typography_hero-section-icon-container.chevron_15 {left: 450px;}
.typography_hero-section-icon-container.chevron_16 {left: 600px;}
.typography_hero-section-icon-container.chevron_17 {left: 750px;}
.typography_hero-section-icon-container.chevron_18 {left: 900px;}
.typography_hero-section-icon-container.chevron_19 {left: 1050px;}
.typography_hero-section-icon-container.chevron_20 {left: 1200px;}
.typography_hero-section-icon-container.chevron_21 {left: 1350px;}
.typography_hero-section-icon-container.chevron_22 {left: 1500px;}
.typography_hero-section-icon-container.chevron_23 {left: 1650px;}
.typography_hero-section-icon-container.chevron_24 {left: 1800px;}
.typography_hero-section-icon-container.chevron_25 {left: 1950px;}
.typography_hero-section-icon-container.chevron_26 {left: 2100px;}

.typography_hero-section-icon {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
}
.typography_hero-section-icon {
    height: 275px;
    width: 275px;
}

.typography_section-opener {
    font-family: var(--font-family-sans-serif);
    font-weight: 600;
    letter-spacing: .05em;
    margin: 0;
}

.typography_section-opener div {
    font-size: 5.5rem;
    color: var(--white);
}

.typography_section-opener div.outline {
    font-size: 7.875rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: .125rem;
    -webkit-text-stroke-color: var(--navyblue-web);
    text-shadow: -4px -4px var(--white);
}

div.typography_section-header {
    font-family: var(--font-family-sans-serif);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--glacierblue-web);
    margin: 0 0 .5em 0;
}

div.typography_section-header.two-lines {margin-left: 3.75rem;}
div.typography_section-header.three-lines {margin-left: 5.75rem;}
div.typography_section-header.four-lines {margin-left: 6.25rem;}
div.typography_section-header.five-lines {margin-left: 6.25rem;}

.typography_section-header-icon-container {
    position: absolute;
    top: -3px;
    left: 0;
    z-index: -1;
}
.typography_section-header-icon-container.chevron-yellow_01.two-lines {left: -45px;}
.typography_section-header-icon-container.chevron-sailblue_02.two-lines {left: 0px;}
.typography_section-header-icon-container.chevron-sailblue_03.two-lines {left: 45px;}
.typography_section-header-icon-container.chevron-yellow_01.three-lines {left: -65px;}
.typography_section-header-icon-container.chevron-sailblue_02.three-lines {left: 0px;}
.typography_section-header-icon-container.chevron-sailblue_03.three-lines {left: 65px;}
.typography_section-header-icon-container.chevron-yellow_01.four-lines {left: -65px;}
.typography_section-header-icon-container.chevron-sailblue_02.four-lines {left: 0px;}
.typography_section-header-icon-container.chevron-sailblue_03.four-lines {left: 65px;}
.typography_section-header-icon-container.chevron-yellow_01.five-lines {left: -65px;}
.typography_section-header-icon-container.chevron-sailblue_02.five-lines {left: 0px;}
.typography_section-header-icon-container.chevron-sailblue_03.five-lines {left: 65px;}

.typography_section-header-icon {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
}
.typography_section-header-icon.two-lines {
    height: 100px;
    width: 100px;
}
.typography_section-header-icon.three-lines {
    height: 150px;
    width: 150px;
}
.typography_section-header-icon.four-lines {
    height: 150px;
    width: 150px;
}
.typography_section-header-icon.five-lines {
    height: 150px;
    width: 150px;
}
.typography_section-header-icon.chevron-right-yellow-web {
    background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 89.88 122.4'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fdb71a;opacity:1;%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='1.11 0 50.94 60.52 0 122.4 39.83 122.4 89.88 60.74 89.88 60.31 40.93 0 1.11 0'/%3E%3C/svg%3E");
}
.typography_section-header-icon.chevron-right-sailblue-web {
    background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 89.88 122.4'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23bee7f9;%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='1.11 0 50.94 60.52 0 122.4 39.83 122.4 89.88 60.74 89.88 60.31 40.93 0 1.11 0'/%3E%3C/svg%3E");
    opacity: .75;
}
.typography_hero-section-icon.chevron-right-sailblue-web {
    background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 89.88 122.4'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23bee7f9;%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='1.11 0 50.94 60.52 0 122.4 39.83 122.4 89.88 60.74 89.88 60.31 40.93 0 1.11 0'/%3E%3C/svg%3E");
    opacity: .075;
}

div.typography_section-subhead {
    font-family: var(--font-family-sans-serif);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1;
    color: var(--glacierblue-web);
    margin: 0 0 .5em 0;
}

.typography_footer-section {
    font-size: .625rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.typography_footer-section span {
    font-size: .6875rem;
    font-weight: 300;
    letter-spacing: normal;
    text-transform: none;
}

.typography_footer-section a {
    color: var(--cyan-web);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.typography_footer-section a:active,
.typography_footer-section a:focus,
.typography_footer-section a:hover {
    color: var(--cyan-web);
}

/* AR TEMPLATE: BUTTONS */

.ar-template_btn, a.ar-template_btn {
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--navyblue-web);
    background: rgba(253,183,26,.8);
    border: 2px solid transparent;
    font-size: .6875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .075em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: .5rem 1rem;
    -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

.ar-template_btn.ar-template_btn-round {
    -webkit-border-radius: .375rem;
    -moz-border-radius: .375rem;
    border-radius: .375rem;
}

.ar-template_btn:hover, 
.ar-template_btn:active, 
a.ar-template_btn:hover, 
a.ar-template_btn:active {
    background-color: rgba(253,183,26,1);
    text-decoration: none;
}

.ar-template_btn:focus {    
    border-color: var(--cyan-web);
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    -moz-box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    box-shadow: 0px 0px 3px 1px rgba(0, 147, 208, .7);
    outline: none;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .ar-template_btn, 
.ar-template_item-body .ar-template_item-sidebar-wrapper a.ar-template_btn {
    color: var(--navyblue-web);
    background: rgba(253,183,26,.8);
    font-weight: 400;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .ar-template_btn:hover, 
.ar-template_item-body .ar-template_item-sidebar-wrapper .ar-template_btn:active, 
.ar-template_item-body .ar-template_item-sidebar-wrapper a.ar-template_btn:hover, 
.ar-template_item-body .ar-template_item-sidebar-wrapper a.ar-template_btn:active {
    color: var(--navyblue-web);
    background-color: rgba(253,183,26,1);
    text-decoration: none;
}

/* AR TEMPLATE: ITEM */

.ar-template_item {
    position: relative;
}

.ar-template_item-body {
    width: auto;
    font-family: var(--font-family-sans-serif);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
}

.ar-template_item-body h1, .ar-template_item-body h2, .ar-template_item-body h3, .ar-template_item-body h4, .ar-template_item-body h5, .ar-template_item-body h6 {
    margin: 0 0 .5em 0;
}

.ar-template_item-body .dropcap {
    font-family: var(--font-family-sans-serif-alt);
    font-size: 3.675rem;
    font-weight: 200;
    line-height: .9;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    float: left;
    margin: 0;
    padding: 0;
}

.ar-template_item-body .dropcap.glacierblue-web {
    color: var(--glacierblue-web);
}
.ar-template_item-body .dropcap.sailblue-web {
    color: var(--sailblue-web);
}
.ar-template_item-body .dropcap.yellow-web {
    color: var(--yellow-web);
}

.ar-template_item-body .ar-template_item-sidebar-wrapper a {
    font-weight: 500;
    color: var(--yellow-web);
    text-decoration: none;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper a:active,
.ar-template_item-body .ar-template_item-sidebar-wrapper a:focus,
.ar-template_item-body .ar-template_item-sidebar-wrapper a:hover {
    color: var(--cyan-web);
    text-decoration: none;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-yellow-web a {
    font-weight: 500;
    text-transform: lowercase;
    color: var(--sailblue-web);
    text-decoration: none;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-yellow-web a:active,
.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-yellow-web a:focus,
.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-yellow-web a:hover {
    color: var(--cyan-web);
    text-decoration: none;
}

.ar-template_item-body .chevron-list ul, 
.ar-template_item-body .chevron-list li {
    list-style: none;
    padding-inline-start: 0;
    padding-left: 15px ;
    text-indent: -18px ;
}

.ar-template_item-body .chevron-list > ul > li::before {
    content: "\e901";
    font-family: var(--font-family-heritage-icons);
    font-weight: 500;
    font-size: .75rem;
    color: var(--yellow-web);
    padding-right: 10px;
}

.ar-template_item-body .chevron-list.navyblue-web > ul > li::before {
    color: var(--navyblue-web);
}

.ar-template_item-body .ar-template_item-img-wrapper {
    display: block;
}

.ar-template_item-body .ar-template_item-img-fullwidth {
    border: 1px solid var(--sailblue-web);
    max-width: 100%;
}

.ar-template_item-body .ar-template_item-img-cutline {
    font-size: .9375rem;
    line-height: 1.35;
    padding: 1em 0.75em;
    border-bottom: 2px solid var(--sailblue-web);
}

/* ITEM SIDEBARS */

.ar-template_item-body .ar-template_item-sidebar-wrapper {
    overflow: hidden;
    padding: 24px;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .ar-template_item-img-wrapper {
    display: block;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .ar-template_item-img-fullwidth {
    border: none;
    max-width: 100%;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .ar-template_item-img-cutline {
    font-size: .9375rem;
    line-height: 1.35;
    border-bottom: 2px solid var(--yellow-web);
    padding: 1em 0.75em;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-navyblue-web .ar-template_item-img-cutline {
    border-bottom: 2px solid var(--glacierblue-web);
}

.ar-template_item-body .ar-template_item-sidebar-wrapper div.typography_sidebar-header {
    font-family: var(--font-family-sans-serif);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1;
    color: var(--glacierblue-web);
    margin: 0 0 .5em 0;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.ar-template_item-img-offset {
    margin: 13rem 0 0 0;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.overflow-visible {
    overflow: visible;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.overflow-visible .ar-template_item-img-wrapper .ar-template_item-img-fullwidth.banner-image {
    margin: -13rem 0 0 0;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini div.ar-icon {
    height: 75px;
    width: 75px;
    margin: 0 0 1rem 0;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini {
    text-align: center;
    text-transform: uppercase;
    line-height: 1.25;
    margin: 0;
    color: var(--navyblue-web);
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini p {
    margin: 0;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini span.outline-yellow {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: .125rem;
    -webkit-text-stroke-color: var(--yellow-web);
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini span.heavy {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1;
}

/* ITEM PIE CHART */

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart_headline {
    font-size: 1.25rem;
    color: var(--glacierblue-web);
}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart_headline span {
    font-size: 2rem;
    font-weight: 600;
}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart {
    position: relative;
    min-height: 250px;
    margin: 0;
}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart.pie-chart_revenues {
    background: 
        radial-gradient(
            circle closest-side,
            var(--sailblue-web) 0,
            var(--sailblue-web) 60%,
            transparent 60%,
            transparent 99%,
            var(--sailblue-web) 0
        ), 
        conic-gradient(
            from 135deg,
            var(--glacierblue-web) 0,
            var(--glacierblue-web) 76%,
            var(--heritageblue-web) 0,
            var(--heritageblue-web) 82%,
            var(--yellow-web) 0,
            var(--yellow-web) 94%,
            var(--navyblue-web) 0,
            var(--navyblue-web) 95%,
            var(--lightgray) 0,
            var(--lightgray) 100%
        );
}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart.pie-chart_expenses {
    background: 
        radial-gradient(
            circle closest-side,
            var(--sailblue-web) 0,
            var(--sailblue-web) 60%,
            transparent 60%,
            transparent 99%,
            var(--sailblue-web) 0
        ),    
        conic-gradient(
            from 130deg,
            var(--glacierblue-web) 0,
            var(--glacierblue-web) 80%,
            var(--yellow-web) 0,
            var(--yellow-web) 98%,
            var(--lightgray) 0,
            var(--lightgray) 100%
        );
}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini figcaption.pie-chart_legend {
    font-size: .75rem;
    letter-spacing: 0.075em;
    line-height: 1.25;
}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini figcaption.pie-chart_legend span:after {
    display: inline-block;
    content: "";
    width: 0.8em;
    height: 0.8em;
    margin-right: 0.4em;
    border-radius: 0.2em;
    background: currentColor;
}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini figcaption.pie-chart_legend span.pie-chart_glacierblue-web:after {background-color: var(--glacierblue-web);}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini figcaption.pie-chart_legend span.pie-chart_heritageblue-web:after {background-color: var(--heritageblue-web);}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini figcaption.pie-chart_legend span.pie-chart_yellow-web:after {background-color: var(--yellow-web);}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini figcaption.pie-chart_legend span.pie-chart_navyblue-web:after {background-color: var(--navyblue-web);}
.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini figcaption.pie-chart_legend span.pie-chart_lightgray:after {background-color: var(--lightgray);}

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart_container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    width: 100px;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart.revenues {
    background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 131.25 131.25'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23061d46;%7D.cls-2%7Bfill:%23fdb71a;%7D.cls-3%7Bfill:%23004b8d;%7D.cls-4%7Bfill:%2375a5c0;%7D.cls-5%7Bfill:%23c5d1d8;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M127.09,42.64,94.19,55c-.25-.67-.52-1.33-.81-2l32-14.57c.6,1.32,1.25,2.88,1.75,4.23'/%3E%3Cpath class='cls-2' d='M93.38,53A30.46,30.46,0,0,0,77.3,37.45L90.74,5c16.07,6.66,27.39,17.58,34.6,33.41Z'/%3E%3Cpath class='cls-3' d='M77.3,37.45a30.37,30.37,0,0,0-11.41-2.33L66.2,0A63.7,63.7,0,0,1,90.74,5Z'/%3E%3Cpath class='cls-4' d='M68.49,131.19A65.62,65.62,0,1,1,62.76.07C64.21,0,64.75,0,66.2,0l-.31,35.12A30.51,30.51,0,1,0,96.1,64.3l35.08-1.54a65.62,65.62,0,0,1-62.69,68.43'/%3E%3Cpath class='cls-5' d='M131.19,62.76,96.1,64.3A30.61,30.61,0,0,0,94.19,55l32.9-12.31a62.47,62.47,0,0,1,4.1,20.12'/%3E%3C/svg%3E");
}

.ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart.expenses {
    background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 131.25 132.07'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fdb71a;%7D.cls-2%7Bfill:%23c5d1d8;%7D.cls-3%7Bfill:%2375a5c0;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M128.32,46.86,94.77,57.12a30.72,30.72,0,0,0-25-21.48l4.82-35c25.84,3.71,46,21.07,53.7,46.2'/%3E%3Cpath class='cls-2' d='M69.8,35.64a30.43,30.43,0,0,0-3.71-.31L66.63,0a61.19,61.19,0,0,1,8,.65Z'/%3E%3Cpath class='cls-3' d='M84.94,129.21c-34.63,10.58-71.35-9.12-82-44S11.68,13.43,46.31,2.85A61.6,61.6,0,0,1,66.63,0l-.54,35.31a30.26,30.26,0,0,0-9.44,1.33A30.71,30.71,0,1,0,94.77,57.11l33.55-10.25c10.67,34.89-8.75,71.76-43.38,82.35'/%3E%3C/svg%3E");
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-sidebar-cover {
    position: relative;
    overflow: hidden;
    background-size: cover!important;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-sidebar-cover.btn_01 {
    background-image: url("/annual-report-2021/assets/images/sidebars/ar2021_sidebar_btn-01.jpg");
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-sidebar-cover.btn_02 {
    background-image: url("/annual-report-2021/assets/images/sidebars/ar2021_sidebar_btn-02.jpg");
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-sidebar-cover.btn_03 {
    background-image: url("/annual-report-2021/assets/images/sidebars/ar2021_sidebar_btn-03.jpg");
    background-position: top center;
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-sidebar-cover.btn_04 {
    background-image: url("/annual-report-2021/assets/images/sidebars/ar2021_sidebar_btn-04.jpg");
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-sidebar-cover.btn_05 {
    background-image: url("/annual-report-2021/assets/images/sidebars/ar2021_sidebar_btn-05.jpg");
}

.ar-template_item-body .ar-template_item-sidebar-wrapper.bg-sidebar-cover.kcj-krh {
    background-image: url("/annual-report-2021/assets/images/sidebars/ar2021_sidebar_kcj-krh_bg.jpg");
    background-blend-mode: normal;
}

/* ITEM TIMELINE STYLES */

.ar-template_item-body .timeline {
    position: relative;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.ar-template_item-body .timeline:after {
    content: "";
    display: table;
    width: 100%;
    clear: both;
}
.ar-template_item-body .timeline .timeline-icon-connector { 
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 80%;
    background: var(--glacierblue-web);
}
.ar-template_item-body .timeline .timeline-item {
    position: relative;
}
.ar-template_item-body .timeline .timeline-item:after,
.ar-template_item-body .timeline .timeline-item:before {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}
.ar-template_item-body .timeline .timeline-item .timeline-icon {                                
    position: absolute;
    top: 0;
    left: 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
    background: var(--yellow-web);
    margin-left: -22.5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.ar-template_item-body .timeline .timeline-item .timeline-icon i {
    position: relative;
    font-size: 2rem;
    top: 8px;
    left: 10px;
    color: var(--white);
}
.ar-template_item-body .timeline .timeline-item .timeline-content {
    width: 45%;
    text-align: center;
    background: var(--white);
    padding: 20px;
    border: transparent;
    -webkit-border-radius: .375rem;
    -moz-border-radius: .375rem;
    -ms-border-radius: .375rem;
    border-radius: .375rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;                               
}
.ar-template_item-body .timeline .timeline-item .timeline-content div {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--white);
    background: var(--glacierblue-web);
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    margin: -20px -20px 0 -20px;
    padding: 10px;
}
.ar-template_item-body .timeline .timeline-item .timeline-content p {
    font-size: 1rem;
    line-height: 1.25;
    margin: 0;
    padding: 20px 0 0 0;
}
.ar-template_item-body .timeline .timeline-item .timeline-content:before {
    content: "";
    position: absolute;
    left: 45%;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid var(--glacierblue-web);
}
.ar-template_item-body .timeline .timeline-item .timeline-content.right {
    float: right;
}
.ar-template_item-body .timeline .timeline-item .timeline-content.right:before {
    content: "";
    right: 45%;
    left: inherit;
    border-left: 0;
    border-right: 7px solid var(--glacierblue-web);
}

/* STAFF AWARDS, INTERNS, FELLOWS, BOARD, & FINANCIALS */

.staff-awards, .named-interns, .named-fellows, .thf-board, .financials {
    font-size: .875rem;
    line-height: 1.25;
}

.staff-awards h6, .named-interns h6, .thf-board h6, .financials h6 {
    font-weight: 400;
    color: var(--glacierblue-web);
    margin: 1.3em 0 .5em 0;
}

.staff-awards p, .named-interns p, .thf-board p, .financials p {
    margin-bottom: 0.25em;
}

.staff-awards p span, .named-interns p span, .thf-board p span, .financials p span {
    font-style: italic;
    color: var(--darkgray);
}

.named-fellows p {
    font-size: .875rem;
    line-height: 1.25;
    margin-bottom: 0.25em;
}

.named-fellows p span {
    font-family: var(--font-family-serif);
    font-size: 1rem;
    font-weight: 600;                
}

.named-interns_grid {
    column-width: 13em;
    -moz-column-width: 13em;
    -webkit-column-width: 13em;
    column-gap: 1em;
    -moz-column-gap: 1em;
    -webkit-column-gap: 1em;
}

.named-interns_grid-item {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid var(--yellow-web);
    padding-bottom: 0.75em;
}

.thf-board.disclaimer {
    font-size: .75rem;
    color: var(--darkgray)
}

/* OWL CAROUSEL CUSTOM STYLES */
 
.owl-carousel {  
    overflow: hidden;
}
.owl-buttons {  
    position: static;
}
.owl-prev,
.owl-next {  
    opacity: 0;
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    width: 105px;
    height: 105px;
    line-height: 105px;
    font-size: 2rem;
    text-align: center;
    color: var(--yellow-web);

    z-index: 6;

    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.owl-prev {  
    left: -50px;
}
.owl-next {  
    right: -50px;
}
.owl-prev:before,
.owl-next:before {  
    content: "";
    display: block;
    width: 66%;
    height: 66%;
    position: absolute;
    top: 17px;
    left: 0;

    background: rgba(255,255,255,0);

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

    -webkit-box-shadow: 1px 1px 0px rgba(0,0,0,0);
    -moz-box-shadow: 1px 1px 0px rgba(0,0,0,0);
    box-shadow: 1px 1px 0px rgba(0,0,0,0);

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);

    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.owl-next:before {  
    left: auto;
    right: 0;
}
.owl-prev:hover,
.owl-next:hover {
    -webkit-transition: 0 none !important;
    -moz-transition: 0 none !important;
    -ms-transition: 0 none !important;
    -o-transition: 0 none !important;
    transition:0 none !important;
}
.owl-prev:hover:before,
.owl-next:hover:before {
    opacity: .5;
}
.owl-prev:active:before,
.owl-next:active:before {
    opacity: .25;
}
.owl-carousel:hover .owl-prev {
    opacity: .75;
    left: -35px;
}
.owl-carousel:hover .owl-next {
    opacity: .75;
    right: -35px;
}
.owl-pagination {  
    display: block;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
    text-align: center;
}
.owl-page {  
    display: inline-block;
    padding: 6px 4px;
    position: relative;
}
.owl-page span {  
    width: 6px;
    height: 6px;
    display: block;
    background: rgba(253,183,26,.7);
    position: relative;
    z-index: 1000 !important;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    -webkit-box-shadow: 1px 1px 0px rgba(0,0,0,.1);
    -moz-box-shadow: 1px 1px 0px rgba(0,0,0,.1);
    box-shadow: 1px 1px 0px rgba(0,0,0,.1);

    -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.owl-page:hover span {
    background: rgba(253,183,26,1);
}
.owl-page.active span {  
    background: transparent;
    border: 1px solid rgba(253,183,26,.8);

    -webkit-transform: scale(1.3333333);
    -moz-transform: scale(1.3333333);
    -o-transform: scale(1.3333333);
    -ms-transform: scale(1.3333333);
    transform: scale(1.3333333);
}

/* RESPONSIVE STYLES */

@media all and (max-width: 1200px) {

    /* AR TEMPLATE */

    .ar-template_item-body .ar-template_item-sidebar-wrapper.ar-template_item-img-offset {
        margin: 11rem 0 0 0;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper.overflow-visible .ar-template_item-img-wrapper .ar-template_item-img-fullwidth.banner-image {
        margin: -11rem 0 0 0;
    }
    
    .ar-template_item-body .timeline .timeline-item .timeline-content {
        width: 44%;
    }

    .ar-template_item-body .timeline .timeline-item .timeline-content:before {
        left: 44%;
    }

    .ar-template_item-body .timeline .timeline-item .timeline-content.right:before {
        right: 44%;
    }

}

@media all and (max-width: 1024px) {

    /* AR TEMPLATE */

    .ar-template_item-body .ar-template_item-sidebar-wrapper.ar-template_item-img-offset {
        margin: 10rem 0 0 0;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper.overflow-visible .ar-template_item-img-wrapper .ar-template_item-img-fullwidth.banner-image {
        margin: -10rem 0 0 0;
    }

    .ar-template_item-body .timeline .timeline-item .timeline-content {
        width: 43%;
    }

    .ar-template_item-body .timeline .timeline-item .timeline-content:before {
        left: 43%;
    }

    .ar-template_item-body .timeline .timeline-item .timeline-content.right:before {
        right: 43%;
    }

}

@media all and (max-width: 992px) {

    /* AR TEMPLATE */

    .ar-template_body-section {
        padding: 0 0 7.5rem 0;
    }
    
}

@media all and (max-width: 767px) {

    /* TEMPLATE */

    .main-nav {
        height: 3.125rem;
    }

    .main-nav .heritage-brand span {
        display: none !important;
    }

    .main-nav .heritage-hamburger-menu {
        font-size: 1rem;
    }

    .global-footer .heritage-bell {
        font-size: 1.4375rem;
    }

    .article_headline {
        font-size: 3rem;
        line-height: 3.25rem;
    }

    .article_headline h2 {
        font-size: 2.25rem;
        line-height: 2.25rem;
    }

    .article_byline {
        font-size: 1.25rem;
    }

    .article_body-copy .pullquote {
        font-size: 1.5rem;
        line-height: 1.25;
    }
    
    .article_body-copy .pullquote:before {
        font-size: 9rem;
        left: 15px;
        top: -40px;
    }
    
    .article_body-copy .pullquote footer {
        font-size: .875rem;
    }

    .collection-card-description h3 {
        font-size: 1.5rem;
    }

    /* AR TEMPLATE */

    .ar-template_body-section {
        padding: 0 0 7rem 0;
    }

    .ar-template_body-copy .pullquote {
        font-size: 1.5rem;
        line-height: 1.25;
    }
    
    .ar-template_body-copy .pullquote:before {
        font-size: 9rem;
        left: 15px;
        top: -40px;
    }
    
    .ar-template_body-copy .pullquote footer {
        font-size: .875rem;
    }

    .typography_hero-section {
        font-size: 6rem;
    }    
    .typography_hero-section div.ar-year {
        font-size: 2.675rem;
    }
    .typography_hero-section div.ar-line {
        font-size: 1.125rem;
        line-height: .925;
    }

    .typography_hero-section-icon-container {
        top: 35px;
    }
    .typography_hero-section-icon-container.chevron_10 {left: -240px;}
    .typography_hero-section-icon-container.chevron_11 {left: -120px;}
    .typography_hero-section-icon-container.chevron_12 {left: 0px;}
    .typography_hero-section-icon-container.chevron_13 {left: 120px;}
    .typography_hero-section-icon-container.chevron_14 {left: 240px;}
    .typography_hero-section-icon-container.chevron_15 {left: 360px;}
    .typography_hero-section-icon-container.chevron_16 {left: 480px;}
    .typography_hero-section-icon-container.chevron_17 {left: 600px;}
    
    .typography_hero-section-icon {
        height: 210px;
        width: 210px;
    }

    .typography_section-opener div {
        font-size: 4.125rem;
    }

    .typography_section-opener div.outline {
        font-size: 5.875rem;
        text-shadow: -3px -3px var(--white);
    }

    div.typography_section-header {
        font-size: 2.25rem;
    }

    div.typography_section-header.two-lines {
        margin-left: 3rem;
    }
    div.typography_section-header.three-lines {
        margin-left: 4.25rem;
    }

    .typography_section-header-icon-container {
        top: -4px;
    }
    .typography_section-header-icon-container.chevron-yellow_01.two-lines {left: -35px;}
    .typography_section-header-icon-container.chevron-sailblue_03.two-lines {left: 35px;}
    .typography_section-header-icon-container.chevron-yellow_01.three-lines {left: -50px;}
    .typography_section-header-icon-container.chevron-sailblue_03.three-lines {left: 50px;}

    .typography_section-header-icon.two-lines {
        height: 80px;
        width: 80px;
    }
    .typography_section-header-icon.three-lines {
        height: 115px;
        width: 115px;
    }

    div.typography_section-subhead {
        font-size: 1.75rem;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper div.typography_sidebar-header {
        font-size: 1.75rem;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper.ar-template_item-img-offset {
        margin: 8rem 0 0 0;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper.overflow-visible .ar-template_item-img-wrapper .ar-template_item-img-fullwidth.banner-image {
        margin: -8rem 0 0 0;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart_headline {
        font-size: 1rem;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper .sidebar-mini .pie-chart_headline span {
        font-size: 1.5rem;
    }

    .ar-template_item-body .timeline {
        margin: 30px;
        padding: 0px;
        width: 90%;
    }
    .ar-template_item-body .timeline .timeline-icon-connector {
        left: 0;
        height: 80%;
    }
    .ar-template_item-body .timeline .timeline-item .timeline-content {
        width: 90%;
        float: right;
    }
    .ar-template_item-body .timeline .timeline-item .timeline-content:before, 
    .ar-template_item-body .timeline .timeline-item .timeline-content.right:before {
        left: 10%;
        margin-left: -6px;
        border-left: 0;
        border-right: 7px solid var(--glacierblue-web);
    }
    .ar-template_item-body .timeline .timeline-item .timeline-icon {
        left: 0;
    }    

}

@media all and (max-width: 576px) {

    /* TEMPLATE */

    .fixed-height-large{min-height: 700px;}
    .fixed-height-medium{min-height: 600px;}
    .fixed-height-small{min-height: 500px;}

    .global-footer .privacy-copyright {
        line-height: 1.15rem;
    }

    .article_headline {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    .article_headline h2 {
        font-size: 2rem;
        line-height: 2rem;
    }

    .article_byline {
        font-size: 1.125rem;
    }

    .article_body-copy .pullquote {
        font-size: 1.25rem;
    }
    
    .article_body-copy .pullquote footer {
        font-size: .75rem;
    }

    .article_body-copy .accordion .card-body {
        padding: 0 1.9375rem;
    }

    .collection-card-description h3 {
        font-size: 1.5rem;
    }

    .heritage-checkbox {
        font-size: .75rem;
    }

    .heritage-checkbox .state label {
        font-weight: 500;
        letter-spacing: normal;
        text-indent: 1.25rem;
        min-width: calc(1em + 2px);
    }

    .heritage-checkbox .state label:after,
    .heritage-checkbox .state label:before {
        border: 2 solid transparent;
    }

    .heritage-checkbox.thf-icon .state .icon {
        font-size: 1em;
        width: calc(1em + 2px);
        height: calc(1em + 2px);
        text-align: center;
        line-height: normal;
        top: calc((0% - (100% - 1em)) - 8%);
    }

    .heritage-checkbox.thf-icon .state .icon:before {
        width: 100%;
        height: 100%;
    }

    .heritage-checkbox.thf-round.thf-icon .state .icon:before {
        -webkit-transform: scale(.6);
        -ms-transform: scale(.6);
        transform: scale(.6);
    }

    .THFtable-cell.order-0 {
        max-width: 35%;
    }

    .THFtable-cell.order-1 {
        order: 0;
        min-width: 65%;
    }

    .THFtable-4cols > .THFtable-cell {
        width: 50% !important;
    }

    .THFtable-cell {
        min-height: 3rem;
        padding: .25rem;
        max-width: 50;
    }

    .THFtable-cell.source {
        font-weight: 400;
        font-size: .75rem;
        line-height: 1.25;
    }

    .THFtable-cell.source p {
        margin-bottom: .25rem;
    }

    .dataviz-source {
        font-size: .75rem;
    }

    .dataviz-source p {
        margin-bottom: .25rem;
    }

    /* AR TEMPLATE */

    .ar-template_body-section {
        padding: 0 0 6rem 0;
    }

    .ar-template_body-copy .pullquote {
        font-size: 1.25rem;
    }
    
    .ar-template_body-copy .pullquote footer {
        font-size: .75rem;
    }

    .ar-template_hero-section .ar-icon-container_thf-logo {
        top: 35px;
        left: 35px;
    }
    .ar-template_hero-section .ar-icon_thf-logo {
        font-size: 3.25rem;
    }

    .typography_hero-section {
        font-size: 3.875rem;
    }
    .typography_hero-section div.outline {
        -webkit-text-stroke-width: 0.1rem;
    }
    .typography_hero-section div.ar-year {
        font-size: 1.75rem;
    }
    .typography_hero-section div.ar-line {
        font-size: .75rem;
        line-height: .95;
    }

    .typography_hero-section-icon-container {
        top: 22.5px;
    }
    .typography_hero-section-icon-container.chevron_10 {left: -70px;}
    .typography_hero-section-icon-container.chevron_11 {left: 10px;}
    .typography_hero-section-icon-container.chevron_12 {left: 90px;}
    .typography_hero-section-icon-container.chevron_13 {left: 170px;}
    .typography_hero-section-icon-container.chevron_14 {left: 250px;}
    .typography_hero-section-icon-container.chevron_15 {left: 330px;}
    .typography_hero-section-icon-container.chevron_16 {left: 410px;}
    .typography_hero-section-icon-container.chevron_17 {left: 490px;}
    
    .typography_hero-section-icon {
        height: 135px;
        width: 135px;
    }

    .typography_section-opener div {
        font-size: 2.875rem;
    }

    .typography_section-opener div.outline {
        font-size: 4.125rem;
        text-shadow: -2px -2px var(--white);
    }

    div.typography_section-header {
        font-size: 1.9375rem;
    }

    div.typography_section-header.two-lines {
        margin-left: 2.625rem;
    }
    div.typography_section-header.three-lines {
        margin-left: 3.75rem;
    }
    div.typography_section-header.four-lines {
        margin-left: 4.25rem;
    }
    div.typography_section-header.five-lines {
        margin-left: 4.875rem;
    }

    .typography_section-header-icon-container {
        top: -5px;
    }
    .typography_section-header-icon-container.chevron-yellow_01.two-lines {left: -30px;}
    .typography_section-header-icon-container.chevron-sailblue_03.two-lines {left: 30px;}
    .typography_section-header-icon-container.chevron-yellow_01.three-lines {left: -40px;}
    .typography_section-header-icon-container.chevron-sailblue_03.three-lines {left: 40px;}
    .typography_section-header-icon-container.chevron-yellow_01.four-lines {left: -60px;}
    .typography_section-header-icon-container.chevron-sailblue_02.four-lines {left: -8px;}
    .typography_section-header-icon-container.chevron-sailblue_03.four-lines {left: 44px;}
    .typography_section-header-icon-container.chevron-yellow_01.five-lines {left: -75px;}
    .typography_section-header-icon-container.chevron-sailblue_02.five-lines {left: -15px;}
    .typography_section-header-icon-container.chevron-sailblue_03.five-lines {left: 45px;}

    .typography_section-header-icon.two-lines {
        height: 70px;
        width: 70px;
    }
    .typography_section-header-icon.three-lines {
        height: 100px;
        width: 100px;
    }
    .typography_section-header-icon.four-lines {
        height: 135px;
        width: 135px;
    }
    .typography_section-header-icon.five-lines {
        height: 165px;
        width: 165px;
    }

    div.typography_section-subhead {
        font-size: 1.5rem;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper div.typography_sidebar-header {
        font-size: 1.5rem;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper.ar-template_item-img-offset {
        margin: 5rem 0 0 0;
    }

    .ar-template_item-body .ar-template_item-sidebar-wrapper.overflow-visible .ar-template_item-img-wrapper .ar-template_item-img-fullwidth.banner-image {
        margin: -5rem 0 0 0;
    }

    .ar-template_item-body .timeline .timeline-item .timeline-content {
        width: 85%;
    } 
    .ar-template_item-body .timeline .timeline-item .timeline-content div {
        font-size: 1rem;
    }
    .ar-template_item-body .timeline .timeline-item .timeline-content:before, 
    .ar-template_item-body .timeline .timeline-item .timeline-content.right:before {
        left: 15%;
    } 

}

@media all and (max-width: 365px){

    .page-title {
        font-size: .8125rem;
    }

}

/* PRINT STYLESHEET */

@media print {

    /* Remove unneeded page elements */
    nav, footer, .navbar, .main-nav, .social_icon-container, {
        display: none;
    }

    /* Set page width & margins */
    @page {
        size: Letter;
        margin: .5in .75in; /* Use centimeters or inches, not pixels  */
    }

    html, body {
        width: 216mm;
        height: 279mm;
    }

    .ar-template_text-section {
        margin-bottom: 1rem!important;
        margin-top: 1rem!important;
    }

    /* Make color changes explicit and set page width & margins */
    body {
        background: var(--white);
        color: var(--black);
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Avoid odd page breaks */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid; /* Prevent headings from being printed at the bottom of the page  */
    }

    article {
        page-break-before: always; /* Always start new articles on a new page  */
    }

    /* Stlye text for print */
    .article_headline {
        font-size: 2rem;
        line-height: normal;
    }

    .article_body-copy h3 {
        margin-top: 1rem;
    }

    .article_body-copy p {
        /*font-family: var(--font-family-sans-serif);*/
        font-size: .875rem;
        line-height: normal;
        margin-bottom: .5rem;
    }

    img {
        page-break-inside: avoid; /* Prevent images from being split up  */
    }

    /* Force background images & colors */
    @media print and (color) {
        * {
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }
    }

    /* Display link URLs */                                
    .article_body-copy ul li a:after {
        content: " [" attr(href) "] "; /* Displays the URL after each anchor text */
        font-size: 80%;
    }

    .article_body-copy ul li a[href^="http://"]:after, a[href^="https://"]:after {
        content: " [" attr(href) "] "; /* Show only the URLs of external links */
        font-size: 80%;
        color: var(--cyan-web);
    }

    .article_body-copy ul li a[href^="#"]:after {
        display: none; /* Hide internal links */
    }

    .article_body-copy ul li a {
        word-wrap: break-word; /* Break long URLs */
    }

    .article_body-copy ul li a {
        color: var(--black);
        text-decoration: none;
    }

    a.THF_button,
    .ar-template_btn, 
    a.ar-template_btn, {
        text-decoration: none;
    }

}