@import url(https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@700&family=Merriweather:wght@700&display=swap);
@charset "UTF-8";
/**
 * Breakpoints
 */
/**
 * Spacings in PX
 */
/**
 * Icon Sizes
 */
/**
 * Font Sizes in PX
 */
/*
 * FONT SIZE CURVES
 */
/** Font-Families
 */
/**
 * Line-Height
 */
/**
 * COLORS
 */
/**
 * GRADIENTS
 */
/*
 TRANSITIONS
*/
/**
 Z-INDEXES
 */
/**
* iFrame Aspect Ratios
*/
/**
 GRID
 */
/**
 BOX SHADOWS
 */
/**
 MODULES
*/
/**
* Borders (Inputs, Dropdowns, Buttons and Links)
*/
/**
* INPUT SIZES
*/
/**
* Button
*/
/**
 * Skeletons
 */
/**
 * Helper functions
 */
/**
 * Returns the next element of a map.
 *
 * https://stackoverflow.com/questions/58330977/sass-loop-on-map-get-next-iteration
 */
/**
 * Returns thee class name without context
 */
/**
 * Returns thee context
 */
/**
 * URL Encodes a HEX color.
 * For SVG background image usw. e.g.
 */
/**
 * Hide visually
 *
 * See http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 * for discussion of different solutions
 */
/**
 *
 */
/**
 *
 */
/**
 * Contain floats with clearfix
 *
 * http://nicolasgallagher.com/micro-clearfix-hack/
 */
/**
 * Lists with layout purpose
 */
/**
 * Clear input appearance
 */
/**
 * Lists with layout purpose
 */
/**
 * Replace text
 */
/**
 * Better font rendering (on OS X)
 * http://maximilianhoffmann.com/posts/better-font-rendering-on-osx
 *
 * Usage:
 *
 * .xy--dark-on-light {
 * 	@include fontSmoothing;
 * }
 * .xy--light-on-dark {
 * 	@include fontSmoothingReset;
 * }
 */
/**
 *
 */
/**
 * Placeholder in input fields
 */
/**
 * Generate linear interpolated size values through multiple break points
 * https://www.smashingmagazine.com/2017/05/fluid-responsive-typography-css-poly-fluid-sizing/
 *
 * @param $property - A string CSS property name
 * @param $map - A SASS map of viewport unit and size value pairs
 * @requires function linearInterpolation
 * @example
 *   @include polyFluidSizing('font-size', (small: 22px, medium: 24px, large: 34px));
 * @author Jake Wilson <jake.e.wilson@gmail.com>
 */
/**
 * Calculate the definition of a line between two points
 *
 * @param $map - A SASS map of viewport widths and size value pairs
 * @returns A linear equation as a calc() function
 * @example
 *   font-size: linearInterpolation((tiny: 18px, medium: 26px));
 * @author Jake Wilson <jake.e.wilson@gmail.com>
 */
/**
 * Generate CSS by giving a list or string and a value
 *
 * @param $listOrString - Either a list or a astring
 * @param $value - String, can be whatever value you like
 */
/**
 * Gets the according values from the sizeCurves and maps it to the wanted attributes
 *
 * @param $attributes - A list or a string of attributes (if string, there is only one)
 * @param $curve - The key value of the curve, e.g. regular
 * @param $map- The Map with all the wanted size curves inside - default: $sizeCurves
 */
/**
 * Resets the button no styling
 */
/**
 * Transition Creator Mixin, default is set to create the default hover transition
 *
 */
/**
 * To set the object fit including the polyfill for ie
 */
/**
 * Icon Sizes
 */
/**
 * First Type Of
 */
/**
 * Last Type Of
 */
/**
 * Removes the Grid Layout.
 */
/**
 * Handles configurable input widths
 */
/**
 * Creates a box-header
 * A title with with seperation lines left and right from the title.
 * The top-element needs the __box-header as child-element-selector to be applied. E.g.:
 * <div class="module">
 *   <h3 class="module__box-header">Heading</h3>
 *    ...
 */
/**
 * Loading spinner
 */
/**
 * This mixin is for a single gradient
 * Supported colors:
 * See $gradients map in _variables partial
 * Supported directions:
 * - diagonal (default)
 * - vertical
 * - horizontal
 *
 * Usage: @include gradient(darkgrey, vertical);
 */
/* This mixins creats all available gradients from the $gradients map
* in _variables partial as modifiers
*
* Supported directions:
* - diagonal (default)
* - vertical
* - horizontal
*
* Usage: @include gradients(vertical);
*/
/**
 * This mixin is able to overwrite styling and coloring of the richtext
 */
/**
 * Form Fields
 */
/**
 * Skeletons
 */
@keyframes skeleton-shimmer {
    100% {
        transform: translateX(100%);
    }
}
/**
 * Inspired from https://github.com/guardian/sass-mq.git
 */
/**
 * // To enable support for browsers that do not support @media queries,
 * (IE <= 8, Firefox <= 3, Opera <= 9) set $mqResponsive to false
 * Create a separate stylesheet served exclusively to these browsers,
 * meaning @media queries will be rasterized, relying on the cascade itself
 */
/**
 * Name your breakpoints in a way that creates a ubiquitous language
 * across team members. It will improve communication between
 * stakeholders, designers, developers, and testers.
 */
/**
 * Define the breakpoint from the $mqBreakpoints list that should
 * be used as the target width when outputting a static stylesheet
 * (i.e. when $mqResponsive is set to 'false').
 */
/**
 * If you want to display the currently active breakpoint in the top
 * right corner of your site during development, add the breakpoints
 * to this list, ordered by width, e.g. (mobile, tablet, desktop).
 */
/**
 * Media Query mixin
 * Usage:
 * .element {
 *     @include mq($from: mobile) {
 *         color: red;
 *     }
 *     @include mq($to: tablet) {
 *         color: blue;
 *     }
 *     @include mq(mobile, tablet) {
 *         color: green;
 *     }
 *     @include mq($from: tablet, $and: '(orientation: landscape)') {
 *         color: teal;
 *     }
 *     @include mq(950px) {
 *         color: hotpink;
 *     }
 * }
 */
/**
 * Add a breakpoint
 * Usage: $mqBreakpoints: mqAddBreakpoint(tvscreen, 1920px);
 */
/**
 * Create JSON string of map of breakpoints
 */
/**
 * Create JSON string of single breakpoint
 */
.hidden-by-rule.hidden-by-rule {
    display: none;
}

[class^=context] [class^=mdl] .no-bttom-space {
    margin-bottom: 0;
}

.mdl-form__row, .mdl-duplication-block__element-row, .mdl-cta_form__row {
    margin-bottom: 1rem;
}
@media all and (min-width: 100em) {
    .mdl-form__row, .mdl-duplication-block__element-row, .mdl-cta_form__row {
        margin-bottom: 2.1666666667rem;
    }
}
.mdl-form__row > div:not(:last-child), .mdl-duplication-block__element-row > div:not(:last-child), .mdl-cta_form__row > div:not(:last-child),
.mdl-form__row > fieldset:not(:last-child),
.mdl-duplication-block__element-row > fieldset:not(:last-child),
.mdl-cta_form__row > fieldset:not(:last-child) {
    margin-bottom: 0.5rem;
}
@media all and (min-width: 100em) {
    .mdl-form__row > div:not(:last-child), .mdl-duplication-block__element-row > div:not(:last-child), .mdl-cta_form__row > div:not(:last-child),
    .mdl-form__row > fieldset:not(:last-child),
    .mdl-duplication-block__element-row > fieldset:not(:last-child),
    .mdl-cta_form__row > fieldset:not(:last-child) {
        margin-bottom: 1rem;
    }
}
.mdl-form__label {
    color: #282625;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
    /* stylelint-disable custom-property-empty-line-before */
    --scrollbar-wd: 0.9444444444rem;
    --color-oxide-red: #A61711;
    --color-oxide-red--dark: #771511;
    --color-oxide-red--alert: #9E0008;
    --color-orange: #FF8F18;
    --color-red: #EE000C;
    --color-red--shine: #CF0018;
    --color-red--blood: #FF5041;
    --color-red--alert: #F9001D;
    --color-purple: #831080;
    --color-white: #FFF;
    --color-black: #282625;
    --color-grey: #767675;
    --color-grey--dark: #403F3F;
    --color-grey--light: #9D9F9D;
    --color-grey--slightly-light: #EAE3E3;
    --color-grey--lighter: #CDCDCD;
    --color-grey--lightest: #F1F1F1;
    --color-mid-grey: #CBCBCB;
    --color-grey-blue: #687286;
    --color-grey-blue--light: #98A4B4;
    --color-grey-blue--dark: #353F4B;
    --color-orange--alert: #FF9100;
    --color-orange--light: #F57D10;
    --color-orange--mid: #F59A26;
    --color-yellow--alert: #FFC015;
    --color-green--alert: #74D943;
    --color-olive: #4B6A33;
    --primary-color: #A61711;
    --primary-color-darken-1: #771511;
    --large-atm-heading-color: inherit;
    --small-atm-heading-color: inherit;
    --atm-link-inline-underline-color: #771511;
    --atm-button-background-color: #A61711;
    --atm-button-hover-color: #771511;
    --atm-button-text-hover-color: #FFF;
    --header-navigation-active-color: #FF8F18;
    /* stylelint-enable custom-property-empty-line-before */
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1, .mdl-form_step__heading {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

/**
 * Susy 3 Grid
 * https://www.oddbird.net/susy/docs/index.html
 *
 * Susy is an "on demand" grid. This means, there aren't predefined containers with gutters already.
 * Usually the gutters will be set by flexbox with space-between.
 * But in some cases you have to add them manually to an span element. For example if you want to shrink elements.
 * This makes it easier to handle span elements and you don't have to reset those for each use-case.
 *
 * In general there are three methods define columns.
 *    narrow (default) - ignores any gutter between the columns
 *    wide - adds a space of the size of a gutter (e.g. if you want no space between elements)
 *    wider - adds a doulbe space of the size of a gutter
 * There is a great example of the keywords narrow, wide and wider on the Susy website - just check it out:
 *    https://www.oddbird.net/2017/06/13/susy-spread/#spread-on-spans
 *
 * It's easy possible to nest grids. For example if you have a parent container with 6 columns and the nested grid
 * should have 3 columns, you can tell Susy the context with '3 of 6' columns.
 */
/**
 * Grid Configuration
 *
 * The config maps the different viewports.
 * totalColumns - The number of all columns for that breakpoint.
 * columns - The calculated columns (e.g. 1 1 1 1 1 1 for six equal sized columns).
 * gutters - Gutters are defined as a single width, or fluid ratio, similar to the native-CSS grid-column-gap syntax.
 *           Similar to columns, gutters can use any valid CSS length unit, or unitless numbers to define a relative
 *           fraction.
 */
/**
 * Replaces susy-span and includes a normalization for the additional gutter of the grid.
 * Usually Susy doesn't calculate a gutter for the last column. But we have one...
 */
/**
 * Calculates the value of the additional gutter in relation of the number of columns.
 */
/**
 * Returns only the number of columns and removes the 'wide' and 'wider' keywords.
 */
/**
 * Returns the total number of columns if there was a definition with the "of" keyword.
 * Example: 6 wide of 12 -> will return 12.
 */
/*
 * Creates a row container for span elements.
 *
 * @param $wrap - A boolean to allow wrapping of elements into the next row or shrink all elements into one row.
 */
/**
 * Creates a gutter space width for all breakpoints.
 *
 * @param $property - A string for the CSS property which should get the gutter. Default is 'margin-right'.
 */
/**
 * Creates a span element with a number of defined columns for all breakpoints.
 *
 * @param $spanTiny - The number of columns for the tiny breakpoint for this element.
 * @param $spanSmall - The number of columns for the small breakpoint for this element.
 * @param $spanMedium - The number of columns for the medium breakpoint for this element.
 * @param $spanLarge - The number of columns for the large breakpoint for this element.
 * @param $spread - Adds an outer half gutter to be able to use flex wrap. This can be removed while setting to false.
 */
/**
 * Pushes an element for the amount of columns to the right.
 */
/**
 * This mixin should be used on a container for elements.
 * It's moved out of the content container / grid over the full width of the viewport.
 */
/**
 * This mixin is just a container with all properties to bleed an module.
 */
/**
 * Grid bleeding
 */
/**
 * Just a helper to avoid repeating span and push for content elements.
 */
/*
 * This row shouldn't be used anywhere in a component!
 * The row should be the content container of a component itself!
 */
.grid-row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    margin-bottom: 5.2631578947%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .grid-row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .grid-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .grid-row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .grid-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.grid-row--nowrap {
    display: flex;
    flex: 0 1 auto;
    flex-wrap: nowrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .grid-row--nowrap {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .grid-row--nowrap {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .grid-row--nowrap {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .grid-row--nowrap {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.grid-row > *:not([class^=mdl]) {
    max-width: 100%;
    width: 100%;
    flex-grow: 1;
}

/**
 * This shouldn't be used directly!
 * The module should have a wrapping DIV which is creating the "content-cell" for the module content itself.
 */
.grid-base-content-cell {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .grid-base-content-cell {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .grid-base-content-cell {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .grid-base-content-cell {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .grid-base-content-cell {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .grid-base-content-cell {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .grid-base-content-cell {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .grid-base-content-cell {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .grid-base-content-cell {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    float: right;
    opacity: 0.75;
    transition: opacity 0.2s;
    box-shadow: none;
}
.pswp__button:focus, .pswp__button:hover {
    opacity: 1;
}
.pswp__button:active {
    outline: none;
    opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
    opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background: url(default-skin.png) 0 0 no-repeat;
    background-size: 264px 88px;
    width: 44px;
    height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
    /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
    .pswp--svg .pswp__button,
    .pswp--svg .pswp__button--arrow--left:before,
    .pswp--svg .pswp__button--arrow--right:before {
        background-image: url(default-skin.svg);
    }
    .pswp--svg .pswp__button--arrow--left,
    .pswp--svg .pswp__button--arrow--right {
        background: none;
    }
}
.pswp__button--close {
    background-position: 0 -44px;
}

.pswp__button--share {
    background-position: -44px -44px;
}

.pswp__button--fs {
    display: none;
}

.pswp--supports-fs .pswp__button--fs {
    display: block;
}

.pswp--fs .pswp__button--fs {
    background-position: -44px 0;
}

.pswp__button--zoom {
    display: none;
    background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
    display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
    background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
    background: none;
    top: 50%;
    margin-top: -50px;
    width: 70px;
    height: 100px;
    position: absolute;
}

.pswp__button--arrow--left {
    left: 0;
}

.pswp__button--arrow--right {
    right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    content: "";
    top: 35px;
    background-color: rgba(0, 0, 0, 0.3);
    height: 30px;
    width: 32px;
    position: absolute;
}

.pswp__button--arrow--left:before {
    left: 6px;
    background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
    right: 6px;
    background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pswp__share-modal {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    z-index: 1600;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    -webkit-backface-visibility: hidden;
    will-change: opacity;
}

.pswp__share-modal--hidden {
    display: none;
}

.pswp__share-tooltip {
    z-index: 1620;
    position: absolute;
    background: #FFF;
    top: 56px;
    border-radius: 2px;
    display: block;
    width: auto;
    right: 44px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    transform: translateY(6px);
    transition: transform 0.25s;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}
.pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
}
.pswp__share-tooltip a:hover {
    text-decoration: none;
    color: #000;
}
.pswp__share-tooltip a:first-child {
    /* round corners on the first/last list item */
    border-radius: 2px 2px 0 0;
}
.pswp__share-tooltip a:last-child {
    border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
    opacity: 1;
}
.pswp__share-modal--fade-in .pswp__share-tooltip {
    transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
    padding: 16px 12px;
}

a.pswp__share--facebook:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -12px;
    right: 15px;
    border: 6px solid rgba(0, 0, 0, 0);
    border-bottom-color: #FFF;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
}
a.pswp__share--facebook:hover {
    background: #3E5C9A;
    color: #FFF;
}
a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
    background: #55ACEE;
    color: #FFF;
}

a.pswp__share--pinterest:hover {
    background: #CCC;
    color: #CE272D;
}

a.pswp__share--download:hover {
    background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    color: #FFF;
    opacity: 0.75;
    padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px;
}
.pswp__caption small {
    font-size: 11px;
    color: #BBB;
}

.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: #CCC;
}

.pswp__caption--empty {
    display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
    visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    will-change: opacity;
    direction: ltr;
}

.pswp__preloader__icn {
    width: 20px;
    height: 20px;
    margin: 12px;
}

.pswp__preloader--active {
    opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
    opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
    background: none;
    opacity: 0.75;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
    /* 
    	The idea of animating inner circle is based on Polymer ("material") loading indicator 
    	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
    */
    position: relative;
    width: 7px;
    height: 14px;
    overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 2px solid #FFF;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right;
    }
}
@keyframes clockwise {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes donut-rotate {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(-140deg);
    }
    100% {
        transform: rotate(0);
    }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
    background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
    background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
    opacity: 0;
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
    /* Force paint & create composition layer for controls. */
    opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
    display: none;
}

.pswp__element--disabled {
    display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
    background: none;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
    -webkit-backface-visibility: hidden;
    outline: none;
}
.pswp * {
    box-sizing: border-box;
}
.pswp img {
    max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
    /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
    opacity: 0.001;
    will-change: opacity;
    /* for open/close transition */
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
    display: block;
}

.pswp--zoom-allowed .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.pswp--dragging .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    will-change: opacity;
}

.pswp__scroll-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
    -ms-touch-action: none;
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
    position: absolute;
    width: 100%;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    /* for open/close transition */
    transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
    will-change: opacity;
    /* for open/close transition */
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
    -webkit-transition: none;
    transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
    -webkit-backface-visibility: hidden;
}

.pswp__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

.pswp__img {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
    -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
    background: #222;
}

.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #CCC;
}

.pswp__error-msg a {
    color: #CCC;
    text-decoration: underline;
}

@keyframes splide-loading {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(1turn);
    }
}
.splide__track--draggable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
    margin: 0 !important;
    opacity: 0;
    z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.splide--rtl {
    direction: rtl;
}

.splide__track--ttb > .splide__list {
    display: block;
}

.splide__container {
    box-sizing: border-box;
    position: relative;
}

.splide__list {
    backface-visibility: hidden;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
    display: block;
}

.splide__pagination {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    pointer-events: none;
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
    display: none;
}

.splide__progress__bar {
    width: 0;
}

.splide {
    position: relative;
    visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
    visibility: visible;
}

.splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative;
}

.splide__slide img {
    vertical-align: bottom;
}

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
}

.splide__sr {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
    display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
    display: inline;
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.pswp__bg {
    background-color: rgba(40, 38, 37, 0.8);
}
.pswp__top-bar {
    padding: 1rem 1rem 0;
    height: 3.1111111111rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
@media all and (min-width: 48em) {
    .pswp__top-bar {
        padding: 0 2.1666666667rem;
    }
}
@media all and (min-width: 48em) {
    .pswp__top-bar {
        height: 8rem;
    }
}
.pswp__button {
    width: 2.2222222222rem;
    height: 2.2222222222rem;
    z-index: 1;
}
@media all and (min-width: 48em) {
    .pswp__button {
        width: 2.8888888889rem;
    }
}
@media all and (min-width: 48em) {
    .pswp__button {
        height: 2.8888888889rem;
    }
}
.pswp__button:before {
    content: none;
}
.pswp__button .atm-icon, .pswp__button .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .pswp__button a.atm-link--external > svg,
.pswp__button .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .pswp__button a.atm-link--external > svg,
.pswp__button .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .pswp__button a.atm-link--external > svg, .pswp__button .mdl-richtext a[download] > svg, .mdl-richtext .pswp__button a[download] > svg {
    fill: #FFF;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
@media only screen and (max-width: 1023px) {
    .pswp__button--arrow--right, .pswp__button--arrow--left {
        bottom: 1rem;
        top: unset;
    }
}
.pswp__button--arrow--right {
    right: 1rem;
}
@media all and (min-width: 48em) {
    .pswp__button--arrow--right {
        right: 2.1666666667rem;
    }
}
@media all and (min-width: 100em) {
    .pswp__button--arrow--right {
        right: 5%;
    }
}
@media all and (min-width: 48em) and (max-width: 99.99em) {
    .pswp__button--arrow--right {
        right: 1%;
    }
}
.pswp__button--arrow--left {
    left: 1rem;
}
@media all and (min-width: 48em) {
    .pswp__button--arrow--left {
        left: 2.1666666667rem;
    }
}
@media all and (min-width: 100em) {
    .pswp__button--arrow--left {
        left: 5%;
    }
}
@media all and (min-width: 48em) and (max-width: 99.99em) {
    .pswp__button--arrow--left {
        left: 1%;
    }
}
.pswp__button--arrow--left .atm-icon, .pswp__button--arrow--left .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .pswp__button--arrow--left a.atm-link--external > svg,
.pswp__button--arrow--left .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .pswp__button--arrow--left a.atm-link--external > svg,
.pswp__button--arrow--left .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .pswp__button--arrow--left a.atm-link--external > svg, .pswp__button--arrow--left .mdl-richtext a[download] > svg, .mdl-richtext .pswp__button--arrow--left a[download] > svg {
    transform: rotate(180deg);
}
.pswp__caption {
    min-height: 5.5555555556rem;
    display: flex;
    justify-content: center;
    background-color: none;
    flex-direction: column;
}
.pswp__caption__center {
    padding: 1rem 4rem;
    display: flex;
    max-width: 33.3333333333rem;
    width: 100%;
    align-items: center;
    min-height: inherit;
}
@media all and (min-width: 48em) {
    .pswp__caption__center {
        padding: 1rem;
    }
}
.pswp__caption-wrapper {
    display: flex;
}
@media all and (max-width: 47.99em) {
    .pswp__caption-wrapper {
        flex-wrap: wrap;
    }
}
.pswp__caption--custom {
    font-size: 0.8333333333rem;
    flex-grow: 0;
    flex-shrink: 1;
}
.pswp__counter--custom {
    font-size: calc(24 * 1px);
    margin-right: 1rem;
    display: flex !important;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 0;
}
@media (min-width: 0px) {
    .pswp__counter--custom {
        font-size: calc(2.34375vw + 24px);
    }
}
@media (min-width: 768px) {
    .pswp__counter--custom {
        font-size: calc(42 * 1px);
    }
}
@media all and (max-width: 47.99em) {
    .pswp__counter--custom {
        width: 100%;
        margin-bottom: 1rem;
    }
}
.pswp__preloader:not(.pswp__preloader--active) {
    display: none;
}

.pswp__ui--fit .pswp__caption,
.pswp__top-bar .pswp__caption {
    background-color: transparent;
}

.pswp__ui--fit .pswp__top-bar {
    background-color: transparent;
}

.pswp--touch .pswp__top-bar {
    background-color: transparent;
}
.pswp--touch .pswp__button--arrow--right {
    visibility: visible;
}
.pswp--touch .pswp__button--arrow--left {
    visibility: visible;
}

.tippy-box[data-animation=fade][data-state=hidden] {
    opacity: 0;
}

[data-tippy-root] {
    max-width: calc(100vw - 10px);
}

.tippy-box {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    outline: 0;
    transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
    bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
    bottom: -7px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
    top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
    top: -7px;
    left: 0;
    border-width: 0 8px 8px;
    border-bottom-color: initial;
    transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
    right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
    border-width: 8px 0 8px 8px;
    border-left-color: initial;
    right: -7px;
    transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
    left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
    left: -7px;
    border-width: 8px 8px 8px 0;
    border-right-color: initial;
    transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
    transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
    width: 16px;
    height: 16px;
    color: #333;
}

.tippy-arrow:before {
    content: "";
    position: absolute;
    border-color: transparent;
    border-style: solid;
}

.tippy-content {
    position: relative;
    padding: 5px 9px;
    z-index: 1;
}

.tippy-box[data-theme~=light-border] {
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 8, 16, 0.15);
    color: #333;
    box-shadow: 0 4px 14px -2px rgba(0, 8, 16, 0.08);
}

.tippy-box[data-theme~=light-border] > .tippy-backdrop {
    background-color: #fff;
}

.tippy-box[data-theme~=light-border] > .tippy-arrow:after, .tippy-box[data-theme~=light-border] > .tippy-svg-arrow:after {
    content: "";
    position: absolute;
    z-index: -1;
}

.tippy-box[data-theme~=light-border] > .tippy-arrow:after {
    border-color: transparent;
    border-style: solid;
}

.tippy-box[data-theme~=light-border][data-placement^=top] > .tippy-arrow:before {
    border-top-color: #fff;
}

.tippy-box[data-theme~=light-border][data-placement^=top] > .tippy-arrow:after {
    border-top-color: rgba(0, 8, 16, 0.2);
    border-width: 7px 7px 0;
    top: 17px;
    left: 1px;
}

.tippy-box[data-theme~=light-border][data-placement^=top] > .tippy-svg-arrow > svg {
    top: 16px;
}

.tippy-box[data-theme~=light-border][data-placement^=top] > .tippy-svg-arrow:after {
    top: 17px;
}

.tippy-box[data-theme~=light-border][data-placement^=bottom] > .tippy-arrow:before {
    border-bottom-color: #fff;
    bottom: 16px;
}

.tippy-box[data-theme~=light-border][data-placement^=bottom] > .tippy-arrow:after {
    border-bottom-color: rgba(0, 8, 16, 0.2);
    border-width: 0 7px 7px;
    bottom: 17px;
    left: 1px;
}

.tippy-box[data-theme~=light-border][data-placement^=bottom] > .tippy-svg-arrow > svg {
    bottom: 16px;
}

.tippy-box[data-theme~=light-border][data-placement^=bottom] > .tippy-svg-arrow:after {
    bottom: 17px;
}

.tippy-box[data-theme~=light-border][data-placement^=left] > .tippy-arrow:before {
    border-left-color: #fff;
}

.tippy-box[data-theme~=light-border][data-placement^=left] > .tippy-arrow:after {
    border-left-color: rgba(0, 8, 16, 0.2);
    border-width: 7px 0 7px 7px;
    left: 17px;
    top: 1px;
}

.tippy-box[data-theme~=light-border][data-placement^=left] > .tippy-svg-arrow > svg {
    left: 11px;
}

.tippy-box[data-theme~=light-border][data-placement^=left] > .tippy-svg-arrow:after {
    left: 12px;
}

.tippy-box[data-theme~=light-border][data-placement^=right] > .tippy-arrow:before {
    border-right-color: #fff;
    right: 16px;
}

.tippy-box[data-theme~=light-border][data-placement^=right] > .tippy-arrow:after {
    border-width: 7px 7px 7px 0;
    right: 17px;
    top: 1px;
    border-right-color: rgba(0, 8, 16, 0.2);
}

.tippy-box[data-theme~=light-border][data-placement^=right] > .tippy-svg-arrow > svg {
    right: 11px;
}

.tippy-box[data-theme~=light-border][data-placement^=right] > .tippy-svg-arrow:after {
    right: 12px;
}

.tippy-box[data-theme~=light-border] > .tippy-svg-arrow {
    fill: #fff;
}

.tippy-box[data-theme~=light-border] > .tippy-svg-arrow:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA2czEuNzk2LS4wMTMgNC42Ny0zLjYxNUM1Ljg1MS45IDYuOTMuMDA2IDggMGMxLjA3LS4wMDYgMi4xNDguODg3IDMuMzQzIDIuMzg1QzE0LjIzMyA2LjAwNSAxNiA2IDE2IDZIMHoiIGZpbGw9InJnYmEoMCwgOCwgMTYsIDAuMikiLz48L3N2Zz4=);
    background-size: 16px 6px;
    width: 16px;
    height: 6px;
}

.tippy-box,
.tippy-box[data-theme~=light-border] {
    border: 2px solid #767675;
    box-shadow: none;
    color: #282625;
    padding: 0.5rem 0.6111111111rem 0.5rem;
    font-size: 0.8333333333rem;
    line-height: 2;
    font-family: "Frutiger LT W01_45 Light", Frutiger, sans-serif;
}
.tippy-box b,
.tippy-box[data-theme~=light-border] b {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}

.tippy-box[data-theme~=light-border][data-placement^=top] > .tippy-arrow:after {
    border-top-color: #767675;
    top: 18px;
}

.tippy-box[data-theme~=light-border][data-placement^=bottom] > .tippy-arrow:after {
    bottom: 18px;
    border-bottom-color: #767675;
}

.tippy-box[data-theme~=light-border][data-placement^=left] > .tippy-arrow:after {
    border-left-color: #767675;
    left: 18px;
}

.tippy-box[data-theme~=light-border][data-placement^=right] > .tippy-arrow:after {
    border-right-color: #767675;
    right: 18px;
}

.tippy-content {
    overflow-wrap: break-word;
}

.flatpickr-calendar {
    background: transparent;
    opacity: 0;
    display: none;
    text-align: center;
    visibility: hidden;
    padding: 0;
    -webkit-animation: none;
    animation: none;
    direction: ltr;
    border: 0;
    font-size: 14px;
    line-height: 24px;
    border-radius: 5px;
    position: absolute;
    width: 307.875px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    background: #fff;
    -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
    box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
    opacity: 1;
    max-height: 640px;
    visibility: visible;
}

.flatpickr-calendar.open {
    display: inline-block;
    z-index: 99999;
}

.flatpickr-calendar.animate.open {
    -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
    animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
    display: block;
    position: relative;
    top: 2px;
}

.flatpickr-calendar.static {
    position: absolute;
    top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
    z-index: 999;
    display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
    -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
    box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
    border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
    height: 40px;
    border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
    height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
    position: absolute;
    display: block;
    pointer-events: none;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.arrowRight:before, .flatpickr-calendar.rightMost:after, .flatpickr-calendar.arrowRight:after {
    left: auto;
    right: 22px;
}

.flatpickr-calendar.arrowCenter:before, .flatpickr-calendar.arrowCenter:after {
    left: 50%;
    right: 50%;
}

.flatpickr-calendar:before {
    border-width: 5px;
    margin: 0 -5px;
}

.flatpickr-calendar:after {
    border-width: 4px;
    margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
    bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
    border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
    top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
    border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
    border-top-color: #fff;
}

.flatpickr-calendar:focus {
    outline: 0;
}

.flatpickr-wrapper {
    position: relative;
    display: inline-block;
}

.flatpickr-months {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flatpickr-months .flatpickr-month {
    background: transparent;
    color: rgba(0, 0, 0, 0.9);
    fill: rgba(0, 0, 0, 0.9);
    height: 34px;
    line-height: 1;
    text-align: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    height: 34px;
    padding: 10px;
    z-index: 3;
    color: rgba(0, 0, 0, 0.9);
    fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
    display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
    position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month { /*
/*rtl:begin:ignore*/
    left: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month { /*
/*rtl:begin:ignore*/
    right: 0;
} /*
/*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
    color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
    fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
    width: 14px;
    height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
    -webkit-transition: fill 0.1s;
    transition: fill 0.1s;
    fill: inherit;
}

.numInputWrapper {
    position: relative;
    height: auto;
}

.numInputWrapper input, .numInputWrapper span {
    display: inline-block;
}

.numInputWrapper input {
    width: 100%;
}

.numInputWrapper input::-ms-clear {
    display: none;
}

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.numInputWrapper span {
    position: absolute;
    right: 0;
    width: 14px;
    padding: 0 4px 0 2px;
    height: 50%;
    line-height: 50%;
    opacity: 0;
    cursor: pointer;
    border: 1px solid rgba(57, 57, 57, 0.15);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.numInputWrapper span:hover {
    background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
    background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
    display: block;
    content: "";
    position: absolute;
}

.numInputWrapper span.arrowUp {
    top: 0;
    border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(57, 57, 57, 0.6);
    top: 26%;
}

.numInputWrapper span.arrowDown {
    top: 50%;
}

.numInputWrapper span.arrowDown:after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(57, 57, 57, 0.6);
    top: 40%;
}

.numInputWrapper span svg {
    width: inherit;
    height: auto;
}

.numInputWrapper span svg path {
    fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
    background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
    opacity: 1;
}

.flatpickr-current-month {
    font-size: 135%;
    line-height: inherit;
    font-weight: 300;
    color: inherit;
    position: absolute;
    width: 75%;
    left: 12.5%;
    padding: 7.48px 0 0 0;
    line-height: 1;
    height: 34px;
    display: inline-block;
    text-align: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
    font-family: inherit;
    font-weight: 700;
    color: inherit;
    display: inline-block;
    margin-left: 0.5ch;
    padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
    background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
    width: 6ch;
    width: 7ch\0 ;
    display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    cursor: text;
    padding: 0 0 0 0.5ch;
    margin: 0;
    display: inline-block;
    font-size: inherit;
    font-family: inherit;
    font-weight: 300;
    line-height: inherit;
    height: auto;
    border: 0;
    border-radius: 0;
    vertical-align: initial;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
    outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
    font-size: 100%;
    color: rgba(0, 0, 0, 0.5);
    background: transparent;
    pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    appearance: menulist;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    color: inherit;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    font-weight: 300;
    height: auto;
    line-height: inherit;
    margin: -1px 0 0 0;
    outline: none;
    padding: 0 0 0 0.5ch;
    position: relative;
    vertical-align: initial;
    -webkit-box-sizing: border-box;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
    outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: transparent;
    outline: none;
    padding: 0;
}

.flatpickr-weekdays {
    background: transparent;
    text-align: center;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

span.flatpickr-weekday {
    cursor: default;
    font-size: 90%;
    background: transparent;
    color: rgba(0, 0, 0, 0.54);
    line-height: 1;
    margin: 0;
    text-align: center;
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: bolder;
}

.dayContainer, .flatpickr-weeks {
    padding: 1px 0 0 0;
}

.flatpickr-days {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 307.875px;
}

.flatpickr-days:focus {
    outline: 0;
}

.dayContainer {
    padding: 0;
    outline: 0;
    text-align: left;
    width: 307.875px;
    min-width: 307.875px;
    max-width: 307.875px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.dayContainer + .dayContainer {
    -webkit-box-shadow: -1px 0 0 #e6e6e6;
    box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
    background: none;
    border: 1px solid transparent;
    border-radius: 150px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #393939;
    cursor: pointer;
    font-weight: 400;
    width: 14.2857143%;
    -webkit-flex-basis: 14.2857143%;
    -ms-flex-preferred-size: 14.2857143%;
    flex-basis: 14.2857143%;
    max-width: 39px;
    height: 39px;
    line-height: 39px;
    margin: 0;
    display: inline-block;
    position: relative;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
    cursor: pointer;
    outline: 0;
    background: #e6e6e6;
    border-color: #e6e6e6;
}

.flatpickr-day.today {
    border-color: #959ea9;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
    border-color: #959ea9;
    background: #959ea9;
    color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: #569ff7;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: #569ff7;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
    border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
    border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
    -webkit-box-shadow: -10px 0 0 #569ff7;
    box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
    border-radius: 50px;
}

.flatpickr-day.inRange {
    border-radius: 0;
    -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
    box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
    color: rgba(57, 57, 57, 0.3);
    background: transparent;
    border-color: transparent;
    cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
    cursor: not-allowed;
    color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
    border-radius: 0;
    -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
    box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
    visibility: hidden;
}

.rangeMode .flatpickr-day {
    margin-top: 1px;
}

.flatpickr-weekwrapper {
    float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
    padding: 0 12px;
    -webkit-box-shadow: 1px 0 0 #e6e6e6;
    box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
    float: none;
    width: 100%;
    line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
    display: block;
    width: 100%;
    max-width: none;
    color: rgba(57, 57, 57, 0.3);
    background: transparent;
    cursor: default;
    border: none;
}

.flatpickr-innerContainer {
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.flatpickr-rContainer {
    display: inline-block;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.flatpickr-time {
    text-align: center;
    outline: 0;
    display: block;
    height: 0;
    line-height: 40px;
    max-height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flatpickr-time:after {
    content: "";
    display: table;
    clear: both;
}

.flatpickr-time .numInputWrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 40%;
    height: 40px;
    float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
    border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
    border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
    width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
    width: 49%;
}

.flatpickr-time input {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    text-align: center;
    margin: 0;
    padding: 0;
    height: inherit;
    line-height: inherit;
    color: #393939;
    font-size: 14px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
    font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
    font-weight: 400;
}

.flatpickr-time input:focus {
    outline: 0;
    border: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
    height: inherit;
    float: left;
    line-height: inherit;
    color: #393939;
    font-weight: bold;
    width: 2%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
    outline: 0;
    width: 18%;
    cursor: pointer;
    text-align: center;
    font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
    background: #eee;
}

.flatpickr-input[readonly] {
    cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fpFadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.numInputWrapper span.arrowDown,
.numInputWrapper span.arrowUp {
    display: none;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #A61711;
}

.flatpickr-day.today {
    border-color: #767675;
}
.flatpickr-day.today:hover {
    background: #F1F1F1;
    border-color: #F1F1F1;
    color: #282625;
}

.flatpickr-day.selected {
    background: #403F3F;
    border-color: #403F3F;
}

.flatpickr-day:hover {
    background: #F1F1F1;
    border-color: #F1F1F1;
}

/**
 * Sync breakpoints with JavaScript
 *
 * font-family property of title element contains the current breakpoint
 * font-family property of head element contains all breakpoints
 */
@media all and (min-width: 0em) {
    title {
        font-family: '{"name":"tiny","value":"0px"}';
    }
}
@media all and (min-width: 0em) {
    title {
        font-family: '{"name":"zero","value":"0"}';
    }
}
@media all and (min-width: 20em) {
    title {
        font-family: '{"name":"tiny","value":"320"}';
    }
}
@media all and (min-width: 48em) {
    title {
        font-family: '{"name":"small","value":"768"}';
    }
}
@media all and (min-width: 64em) {
    title {
        font-family: '{"name":"medium","value":"1024"}';
    }
}
@media all and (min-width: 100em) {
    title {
        font-family: '{"name":"large","value":"1600"}';
    }
}
head {
    font-family: '{"zero":"0","tiny":"320","small":"768","medium":"1024","large":"1600"}';
    display: none;
}

/**
 * Generic classes
 */
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    width: 1px;
}
br.visuallyhidden {
    content: "";
}

.display-none {
    display: none;
}

.flex-end {
    justify-content: flex-end;
}

.clearfix {
    *zoom: 1;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}

.no-scroll {
    overflow: hidden;
}

.no-margin-top {
    margin-top: 0;
}

.no-margin-right {
    margin-right: 0;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.no-margin-left {
    margin-left: 0;
}

@media only screen and (max-width: 767px) {
    .hide-component-mobile {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .hide-component-tablet-portrait {
        display: none !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
    .hide-component-tablet-landscape {
        display: none !important;
    }
}

@media only screen and (min-width: 1280px) {
    .hide-component-desktop {
        display: none !important;
    }
}

.margin-top-xsmall {
    margin-top: 0.5rem;
}

.margin-top-small {
    margin-top: 1rem;
}
@media all and (max-width: 99.99em) {
    .margin-top-small {
        margin-top: 0.5rem;
    }
}

.margin-top-medium {
    margin-top: 2.1666666667rem;
}
@media all and (max-width: 99.99em) {
    .margin-top-medium {
        margin-top: 1rem;
    }
}

.margin-top-large {
    margin-top: 4rem;
}
@media all and (max-width: 99.99em) {
    .margin-top-large {
        margin-top: 2.1666666667rem;
    }
}

.margin-top-xlarge {
    margin-top: 6.2222222222rem;
}
@media all and (max-width: 99.99em) {
    .margin-top-xlarge {
        margin-top: 4rem;
    }
}

.chat-widget {
    z-index: 90;
    position: fixed;
    left: calc(50% - 1.9444444444rem);
    bottom: 2.2222222222rem;
    border-radius: 50%;
    box-shadow: 0 0.3333333333rem 0.4444444444rem rgba(0, 0, 0, 0.3);
}
@media all and (min-width: 100em) {
    .chat-widget {
        left: calc(50% - 2.7777777778rem);
        z-index: 1000;
    }
}
.chat-widget img[slot=trigger-icon] {
    width: 3.8888888889rem;
    height: 3.8888888889rem;
}
@media all and (min-width: 100em) {
    .chat-widget img[slot=trigger-icon] {
        width: 5.5555555556rem;
        height: 5.5555555556rem;
    }
}

.chat-disclaimer-title {
    color: #818289;
    font-size: 0.8333333333rem;
}

.chat-disclaimer-text {
    color: #818289;
    font-size: 0.8333333333rem;
}

* {
    box-sizing: border-box;
}

html {
    background: #FFF;
    color: #282625;
    font-family: "Frutiger LT W01_45 Light", Frutiger, sans-serif;
    font-size: 112.5%;
    line-height: 1.5;
}

html,
body {
    overflow-x: hidden;
}
html.locked,
body.locked {
    overflow: hidden;
}

form {
    flex-basis: 100%;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

nav ul,
nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

hr {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: none;
    max-width: none !important;
    flex-grow: unset !important;
    margin-top: 2.1666666667rem;
    margin-bottom: 2.1666666667rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    hr {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    hr {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    hr {
        flex-basis: 79.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 79.6296296296%;
    }
}
@media all and (min-width: 100em) {
    hr {
        flex-basis: 80.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 80.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    hr {
        margin-left: 10.1851851852%;
    }
}
@media all and (min-width: 100em) {
    hr {
        margin-left: 9.6607669617%;
    }
}
@media all and (min-width: 64em) {
    hr {
        display: block;
    }
}

.content--header {
    padding-top: 3rem;
}
@media all and (min-width: 64em) {
    .content--header {
        padding-top: 4.1111111111rem;
    }
}

.content, .context-ghi .mdl-ghi-footer__reference-content, .context-ghi .mdl-ghi-footer-navigation, .context-ghi .mdl-ghi-socialnavigation__content, .mdl-checkbox_carousel__content, .mdl-carousel__arrows-layout, .mdl-carousel__content, .mdl-notification-banner__wrapper, .mdl-profile_navigation-menu-list, .mdl-notifications__content, .mdl-directions__content, .mdl-tablist__controls-wrapper-outer, .mdl-modal__content, .mdl-offcanvas-navigation-menu .mdl-linklist, .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-iconlist__link, .mdl-footer__bottom-content, .mdl-footer__content, .mdl-header-container {
    width: calc(284 * 1px);
    min-width: calc(284 * 1px);
    margin: 0 auto;
}
@media (min-width: 320px) {
    .content, .context-ghi .mdl-ghi-footer__reference-content, .context-ghi .mdl-ghi-footer-navigation, .context-ghi .mdl-ghi-socialnavigation__content, .mdl-checkbox_carousel__content, .mdl-carousel__arrows-layout, .mdl-carousel__content, .mdl-notification-banner__wrapper, .mdl-profile_navigation-menu-list, .mdl-notifications__content, .mdl-directions__content, .mdl-tablist__controls-wrapper-outer, .mdl-modal__content, .mdl-offcanvas-navigation-menu .mdl-linklist, .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-iconlist__link, .mdl-footer__bottom-content, .mdl-footer__content, .mdl-header-container {
        width: calc(91.9642857143vw - 10.2857142857px);
    }
}
@media (min-width: 768px) {
    .content, .context-ghi .mdl-ghi-footer__reference-content, .context-ghi .mdl-ghi-footer-navigation, .context-ghi .mdl-ghi-socialnavigation__content, .mdl-checkbox_carousel__content, .mdl-carousel__arrows-layout, .mdl-carousel__content, .mdl-notification-banner__wrapper, .mdl-profile_navigation-menu-list, .mdl-notifications__content, .mdl-directions__content, .mdl-tablist__controls-wrapper-outer, .mdl-modal__content, .mdl-offcanvas-navigation-menu .mdl-linklist, .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-iconlist__link, .mdl-footer__bottom-content, .mdl-footer__content, .mdl-header-container {
        width: calc(100vw - 72px);
    }
}
@media (min-width: 1024px) {
    .content, .context-ghi .mdl-ghi-footer__reference-content, .context-ghi .mdl-ghi-footer-navigation, .context-ghi .mdl-ghi-socialnavigation__content, .mdl-checkbox_carousel__content, .mdl-carousel__arrows-layout, .mdl-carousel__content, .mdl-notification-banner__wrapper, .mdl-profile_navigation-menu-list, .mdl-notifications__content, .mdl-directions__content, .mdl-tablist__controls-wrapper-outer, .mdl-modal__content, .mdl-offcanvas-navigation-menu .mdl-linklist, .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-iconlist__link, .mdl-footer__bottom-content, .mdl-footer__content, .mdl-header-container {
        width: calc(87.5vw + 56px);
    }
}
@media (min-width: 1600px) {
    .content, .context-ghi .mdl-ghi-footer__reference-content, .context-ghi .mdl-ghi-footer-navigation, .context-ghi .mdl-ghi-socialnavigation__content, .mdl-checkbox_carousel__content, .mdl-carousel__arrows-layout, .mdl-carousel__content, .mdl-notification-banner__wrapper, .mdl-profile_navigation-menu-list, .mdl-notifications__content, .mdl-directions__content, .mdl-tablist__controls-wrapper-outer, .mdl-modal__content, .mdl-offcanvas-navigation-menu .mdl-linklist, .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-iconlist__link, .mdl-footer__bottom-content, .mdl-footer__content, .mdl-header-container {
        width: calc(1456 * 1px);
        max-width: calc(1456 * 1px);
    }
}

.hidden {
    display: none;
}

.show {
    display: block;
}

.iframe-context {
    overflow: hidden;
}

.hyphens {
    hyphens: auto;
}

.atm-image {
    width: 100%;
    height: auto;
}

.atm-icon, .mdl-richtext p a[download] > svg,
.mdl-richtext ul a[download] > svg,
.mdl-richtext ol a[download] > svg, .mdl-richtext p a.atm-link--external > svg,
.mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ol a.atm-link--external > svg, .mdl-richtext a[download] > svg {
    height: 2.2222222222rem;
    width: 2.2222222222rem;
    min-width: 2.2222222222rem;
    min-height: 2.2222222222rem;
    fill: #282625;
}
.atm-icon--hidden {
    display: none;
}
.atm-icon--xxsmall {
    height: 1.1111111111rem;
    width: 1.1111111111rem;
    min-width: 1.1111111111rem;
    min-height: 1.1111111111rem;
}
.atm-icon--xsmall {
    height: 1.3333333333rem;
    width: 1.3333333333rem;
    min-width: 1.3333333333rem;
    min-height: 1.3333333333rem;
}
.atm-icon--small, .mdl-richtext p a[download] > svg,
.mdl-richtext ul a[download] > svg,
.mdl-richtext ol a[download] > svg, .mdl-richtext p a.atm-link--external > svg,
.mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ol a.atm-link--external > svg, .mdl-richtext a[download] > svg {
    height: 1.8888888889rem;
    width: 1.8888888889rem;
    min-width: 1.8888888889rem;
    min-height: 1.8888888889rem;
}
.atm-icon--medium {
    height: 2.2222222222rem;
    width: 2.2222222222rem;
    min-width: 2.2222222222rem;
    min-height: 2.2222222222rem;
}
.atm-icon--large {
    height: 2.8888888889rem;
    width: 2.8888888889rem;
    min-width: 2.8888888889rem;
    min-height: 2.8888888889rem;
}
.atm-icon--xxlarge {
    width: 4.2222222222rem;
    height: 4.2222222222rem;
}
.atm-icon--xxlarge.atm-icon--forecast {
    height: 3.5185185185rem;
    transform: translateY(4px);
}
.atm-icon--xlarge {
    height: 3.3333333333rem;
    width: 3.3333333333rem;
    min-width: 3.3333333333rem;
    min-height: 3.3333333333rem;
}
.atm-icon--input {
    height: 1.6111111111rem;
    width: 1.6111111111rem;
    min-width: 1.6111111111rem;
    min-height: 1.6111111111rem;
}
@media all and (min-width: 64em) {
    .atm-icon--mobile-only {
        display: none;
    }
    .atm-icon--large {
        height: 2.8888888889rem;
        width: 2.8888888889rem;
        min-width: 2.8888888889rem;
        min-height: 2.8888888889rem;
    }
}
.atm-icon--rotate-90, .atm-icon--rotate-down {
    transform: rotate(90deg);
}
.atm-icon--rotate-180 {
    transform: rotate(180deg);
}
.atm-icon--rotate-up {
    transform: rotate(-90deg);
}
.atm-icon--red use,
.atm-icon--red path {
    fill: #A61711;
}
.atm-icon--darkRed use,
.atm-icon--darkRed path {
    fill: #771511;
}
.atm-icon--orange use,
.atm-icon--orange path {
    fill: #FF8F18;
}
.atm-icon--grey use,
.atm-icon--grey path {
    fill: #767675;
}
.atm-icon--darkGrey use,
.atm-icon--darkGrey path {
    fill: #403F3F;
}
.atm-icon--white use,
.atm-icon--white path {
    fill: #FFF;
}
.atm-icon--lightGrey use,
.atm-icon--lightGrey path {
    fill: #767675;
}
.atm-icon--black use,
.atm-icon--black path {
    fill: #282625;
}

.atm-list, .mdl-richtext ul,
.mdl-richtext ol {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 1.8888888889rem;
    margin-bottom: 2.1666666667rem;
}
.atm-list li, .mdl-richtext ul li,
.mdl-richtext ol li {
    font-size: calc(18 * 1px);
    display: block;
    line-height: 1.7;
    position: relative;
    margin-bottom: 0.3333333333rem;
}
@media (min-width: 320px) {
    .atm-list li, .mdl-richtext ul li,
    .mdl-richtext ol li {
        font-size: calc(0vw + 18px);
    }
}
@media (min-width: 768px) {
    .atm-list li, .mdl-richtext ul li,
    .mdl-richtext ol li {
        font-size: calc(18 * 1px);
    }
}
.atm-list li:before, .mdl-richtext ul li:before,
.mdl-richtext ol li:before {
    display: inline-block;
    position: absolute;
    top: 0;
    left: -1.8888888889rem;
}
.atm-list li b, .mdl-richtext ul li b,
.mdl-richtext ol li b {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}
.atm-list ul, .mdl-richtext ul ul,
.mdl-richtext ol ul,
.atm-list ol,
.mdl-richtext ul ol,
.mdl-richtext ol ol {
    margin-top: 0.3333333333rem;
    margin-bottom: 0;
}
ol.atm-list,
.mdl-richtext ol {
    counter-reset: item;
}
ol.atm-list > li:before,
.mdl-richtext ol > li:before {
    content: counters(item, "") ".";
    counter-increment: item;
}
ol.atm-list > li ul.atm-list > li:before, ol.atm-list > li .mdl-richtext ul > li:before,
.mdl-richtext ol > li ul > li:before {
    width: 0.5555555556rem;
}
ol.atm-list > li ol.atm-list > li:before,
ol.atm-list > li .mdl-richtext ol > li:before,
.mdl-richtext ol > li ol > li:before {
    content: counters(item, ".") "";
    counter-increment: item;
}

ul.atm-list > li:before, .mdl-richtext ul > li:before {
    background-color: #282625;
    content: "";
    height: 0.1111111111rem;
    top: 0.7777777778rem;
    width: 1rem;
}
ul.atm-list > li ul.atm-list > li:before, ul.atm-list > li .mdl-richtext ul > li:before, .mdl-richtext ul > li ul > li:before {
    width: 0.5555555556rem;
}
ul.atm-list > li ol.atm-list > li:before,
ul.atm-list > li .mdl-richtext ol > li:before,
.mdl-richtext ul > li ol > li:before {
    content: counters(item, ".") ".";
}

.atm-paragraph, .mdl-plain-text-accordion__height-representation, .mdl-plain-text-accordion__text, .mdl-filter__label, .mdl-dropdown__title, .mdl-input-list__label, .mdl-richtext p {
    font-size: calc(18 * 1px);
    margin: 0 0 1rem 0;
    line-height: 1.7;
}
@media (min-width: 320px) {
    .atm-paragraph, .mdl-plain-text-accordion__height-representation, .mdl-plain-text-accordion__text, .mdl-filter__label, .mdl-dropdown__title, .mdl-input-list__label, .mdl-richtext p {
        font-size: calc(0vw + 18px);
    }
}
@media (min-width: 768px) {
    .atm-paragraph, .mdl-plain-text-accordion__height-representation, .mdl-plain-text-accordion__text, .mdl-filter__label, .mdl-dropdown__title, .mdl-input-list__label, .mdl-richtext p {
        font-size: calc(18 * 1px);
    }
}
.atm-paragraph b, .mdl-plain-text-accordion__height-representation b, .mdl-plain-text-accordion__text b, .mdl-filter__label b, .mdl-dropdown__title b, .mdl-input-list__label b, .mdl-richtext p b {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}
.atm-paragraph b i, .mdl-plain-text-accordion__height-representation b i, .mdl-plain-text-accordion__text b i, .mdl-filter__label b i, .mdl-dropdown__title b i, .mdl-input-list__label b i, .mdl-richtext p b i,
.atm-paragraph i b,
.mdl-plain-text-accordion__height-representation i b,
.mdl-plain-text-accordion__text i b,
.mdl-filter__label i b,
.mdl-dropdown__title i b,
.mdl-input-list__label i b,
.mdl-richtext p i b {
    font-family: "Frutiger LT W02_66 Bold Italic", Frutiger, sans-serif;
}
.atm-paragraph .atm-link, .atm-paragraph .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .atm-paragraph a, .atm-paragraph .context-ghi .atm-ghi-link, .context-ghi .atm-paragraph .atm-ghi-link, .mdl-plain-text-accordion__height-representation .atm-link, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .atm-ghi-link, .context-ghi .mdl-plain-text-accordion__height-representation .atm-ghi-link, .mdl-plain-text-accordion__text .atm-link, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .atm-ghi-link, .context-ghi .mdl-plain-text-accordion__text .atm-ghi-link, .atm-paragraph .mdl-promo-textteaser__description, .mdl-plain-text-accordion__height-representation .mdl-promo-textteaser__description, .mdl-plain-text-accordion__text .mdl-promo-textteaser__description, .mdl-filter__label .atm-link, .mdl-filter__label .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-filter__label a, .mdl-filter__label .context-ghi .atm-ghi-link, .context-ghi .mdl-filter__label .atm-ghi-link, .mdl-filter__label .mdl-promo-textteaser__description, .mdl-dropdown__title .atm-link, .mdl-dropdown__title .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .atm-ghi-link, .context-ghi .mdl-dropdown__title .atm-ghi-link, .mdl-dropdown__title .mdl-promo-textteaser__description, .mdl-input-list__label .atm-link, .mdl-input-list__label .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-input-list__label a, .mdl-input-list__label .context-ghi .atm-ghi-link, .context-ghi .mdl-input-list__label .atm-ghi-link, .mdl-input-list__label .mdl-promo-textteaser__description,
.atm-paragraph .mdl-richtext ul a[download],
.mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download],
.mdl-plain-text-accordion__text .mdl-richtext ul a[download],
.mdl-filter__label .mdl-richtext ul a[download],
.mdl-dropdown__title .mdl-richtext ul a[download],
.mdl-input-list__label .mdl-richtext ul a[download],
.mdl-richtext ul .atm-paragraph a[download],
.mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download],
.mdl-richtext ul .mdl-plain-text-accordion__text a[download],
.mdl-richtext ul .mdl-filter__label a[download],
.mdl-richtext ul .mdl-dropdown__title a[download],
.mdl-richtext ul .mdl-input-list__label a[download],
.atm-paragraph .mdl-richtext ol a[download],
.mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download],
.mdl-plain-text-accordion__text .mdl-richtext ol a[download],
.mdl-filter__label .mdl-richtext ol a[download],
.mdl-dropdown__title .mdl-richtext ol a[download],
.mdl-input-list__label .mdl-richtext ol a[download],
.mdl-richtext ol .atm-paragraph a[download],
.mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download],
.mdl-richtext ol .mdl-plain-text-accordion__text a[download],
.mdl-richtext ol .mdl-filter__label a[download],
.mdl-richtext ol .mdl-dropdown__title a[download],
.mdl-richtext ol .mdl-input-list__label a[download], .mdl-richtext p .atm-link, .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a, .mdl-richtext p .context-ghi .atm-ghi-link, .context-ghi .mdl-richtext p .atm-ghi-link, .mdl-richtext p .mdl-promo-textteaser__description, .mdl-richtext p a[download], .mdl-richtext p a, .atm-paragraph .mdl-iconlist__link, .mdl-plain-text-accordion__height-representation .mdl-iconlist__link, .mdl-plain-text-accordion__text .mdl-iconlist__link, .mdl-filter__label .mdl-iconlist__link, .mdl-dropdown__title .mdl-iconlist__link, .mdl-input-list__label .mdl-iconlist__link, .mdl-richtext p .mdl-iconlist__link, .atm-paragraph a, .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__text a, .mdl-filter__label a, .mdl-dropdown__title a, .mdl-input-list__label a {
    font-size: inherit;
}
.atm-paragraph--lead {
    font-size: calc(18 * 1px);
    line-height: 1.4;
}
@media (min-width: 0px) {
    .atm-paragraph--lead {
        font-size: calc(0.5859375vw + 18px);
    }
}
@media (min-width: 1024px) {
    .atm-paragraph--lead {
        font-size: calc(24 * 1px);
    }
}
@media all and (min-width: 64em) {
    .atm-paragraph--lead {
        line-height: 1.5;
    }
}

.atm-heading, .context-ghi .mdl-offer_card__lead, .mdl-sub-navigation__title, .mdl-richtext h2,
.mdl-richtext h3,
.mdl-richtext h4 {
    font-family: "Frutiger LT W01_45 Light", Frutiger, sans-serif;
    hyphens: auto;
    word-break: break-word;
    margin-bottom: 1rem;
    margin-top: 0;
    font-weight: 400;
}
@media all and (max-width: 63.99em) {
    .atm-heading, .context-ghi .mdl-offer_card__lead, .mdl-sub-navigation__title, .mdl-richtext h2,
    .mdl-richtext h3,
    .mdl-richtext h4 {
        -webkit-font-smoothing: antialiased;
    }
}
h1.atm-heading, .context-ghi h1.mdl-offer_card__lead, h1.mdl-sub-navigation__title, .atm-heading.mdl-form_step__heading, .context-ghi .mdl-form_step__heading.mdl-offer_card__lead, .mdl-form_step__heading.mdl-sub-navigation__title, .atm-heading.atm-heading--visual-level-1, .context-ghi .atm-heading--visual-level-1.mdl-offer_card__lead, .atm-heading--visual-level-1.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-1,
.mdl-richtext h3.atm-heading--visual-level-1,
.mdl-richtext h4.atm-heading--visual-level-1 {
    font-size: calc(30 * 1px);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--large-atm-heading-color);
}
@media (min-width: 0px) {
    h1.atm-heading, .context-ghi h1.mdl-offer_card__lead, h1.mdl-sub-navigation__title, .atm-heading.mdl-form_step__heading, .context-ghi .mdl-form_step__heading.mdl-offer_card__lead, .mdl-form_step__heading.mdl-sub-navigation__title, .atm-heading.atm-heading--visual-level-1, .context-ghi .atm-heading--visual-level-1.mdl-offer_card__lead, .atm-heading--visual-level-1.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-1,
    .mdl-richtext h3.atm-heading--visual-level-1,
    .mdl-richtext h4.atm-heading--visual-level-1 {
        font-size: calc(2.734375vw + 30px);
    }
}
@media (min-width: 768px) {
    h1.atm-heading, .context-ghi h1.mdl-offer_card__lead, h1.mdl-sub-navigation__title, .atm-heading.mdl-form_step__heading, .context-ghi .mdl-form_step__heading.mdl-offer_card__lead, .mdl-form_step__heading.mdl-sub-navigation__title, .atm-heading.atm-heading--visual-level-1, .context-ghi .atm-heading--visual-level-1.mdl-offer_card__lead, .atm-heading--visual-level-1.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-1,
    .mdl-richtext h3.atm-heading--visual-level-1,
    .mdl-richtext h4.atm-heading--visual-level-1 {
        font-size: calc(-1.171875vw + 60px);
    }
}
@media (min-width: 1024px) {
    h1.atm-heading, .context-ghi h1.mdl-offer_card__lead, h1.mdl-sub-navigation__title, .atm-heading.mdl-form_step__heading, .context-ghi .mdl-form_step__heading.mdl-offer_card__lead, .mdl-form_step__heading.mdl-sub-navigation__title, .atm-heading.atm-heading--visual-level-1, .context-ghi .atm-heading--visual-level-1.mdl-offer_card__lead, .atm-heading--visual-level-1.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-1,
    .mdl-richtext h3.atm-heading--visual-level-1,
    .mdl-richtext h4.atm-heading--visual-level-1 {
        font-size: calc(0.5208333333vw + 42.6666666667px);
    }
}
@media (min-width: 1600px) {
    h1.atm-heading, .context-ghi h1.mdl-offer_card__lead, h1.mdl-sub-navigation__title, .atm-heading.mdl-form_step__heading, .context-ghi .mdl-form_step__heading.mdl-offer_card__lead, .mdl-form_step__heading.mdl-sub-navigation__title, .atm-heading.atm-heading--visual-level-1, .context-ghi .atm-heading--visual-level-1.mdl-offer_card__lead, .atm-heading--visual-level-1.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-1,
    .mdl-richtext h3.atm-heading--visual-level-1,
    .mdl-richtext h4.atm-heading--visual-level-1 {
        font-size: calc(51 * 1px);
    }
}
@media all and (min-width: 48em) {
    h1.atm-heading, .context-ghi h1.mdl-offer_card__lead, h1.mdl-sub-navigation__title, .atm-heading.mdl-form_step__heading, .context-ghi .mdl-form_step__heading.mdl-offer_card__lead, .mdl-form_step__heading.mdl-sub-navigation__title, .atm-heading.atm-heading--visual-level-1, .context-ghi .atm-heading--visual-level-1.mdl-offer_card__lead, .atm-heading--visual-level-1.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-1,
    .mdl-richtext h3.atm-heading--visual-level-1,
    .mdl-richtext h4.atm-heading--visual-level-1 {
        line-height: 1.2;
    }
}
@media all and (min-width: 64em) {
    h1.atm-heading, .context-ghi h1.mdl-offer_card__lead, h1.mdl-sub-navigation__title, .atm-heading.mdl-form_step__heading, .context-ghi .mdl-form_step__heading.mdl-offer_card__lead, .mdl-form_step__heading.mdl-sub-navigation__title, .atm-heading.atm-heading--visual-level-1, .context-ghi .atm-heading--visual-level-1.mdl-offer_card__lead, .atm-heading--visual-level-1.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-1,
    .mdl-richtext h3.atm-heading--visual-level-1,
    .mdl-richtext h4.atm-heading--visual-level-1 {
        line-height: 1.3;
    }
}
@media all and (min-width: 100em) {
    h1.atm-heading, .context-ghi h1.mdl-offer_card__lead, h1.mdl-sub-navigation__title, .atm-heading.mdl-form_step__heading, .context-ghi .mdl-form_step__heading.mdl-offer_card__lead, .mdl-form_step__heading.mdl-sub-navigation__title, .atm-heading.atm-heading--visual-level-1, .context-ghi .atm-heading--visual-level-1.mdl-offer_card__lead, .atm-heading--visual-level-1.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-1,
    .mdl-richtext h3.atm-heading--visual-level-1,
    .mdl-richtext h4.atm-heading--visual-level-1 {
        line-height: 1.2;
    }
}
@media all and (min-width: 48em) {
    h1.atm-heading, .context-ghi h1.mdl-offer_card__lead, h1.mdl-sub-navigation__title, .atm-heading.mdl-form_step__heading, .context-ghi .mdl-form_step__heading.mdl-offer_card__lead, .mdl-form_step__heading.mdl-sub-navigation__title, .atm-heading.atm-heading--visual-level-1, .context-ghi .atm-heading--visual-level-1.mdl-offer_card__lead, .atm-heading--visual-level-1.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-1,
    .mdl-richtext h3.atm-heading--visual-level-1,
    .mdl-richtext h4.atm-heading--visual-level-1 {
        margin-bottom: 2.1666666667rem;
    }
}

h2.atm-heading, .context-ghi h2.mdl-offer_card__lead, h2.mdl-sub-navigation__title, .mdl-richtext h2, .atm-heading.atm-heading--visual-level-2, .context-ghi .atm-heading--visual-level-2.mdl-offer_card__lead, .atm-heading--visual-level-2.mdl-sub-navigation__title,
.mdl-richtext h3.atm-heading--visual-level-2,
.mdl-richtext h4.atm-heading--visual-level-2 {
    font-size: calc(24 * 1px);
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--large-atm-heading-color);
}
@media (min-width: 0px) {
    h2.atm-heading, .context-ghi h2.mdl-offer_card__lead, h2.mdl-sub-navigation__title, .mdl-richtext h2, .atm-heading.atm-heading--visual-level-2, .context-ghi .atm-heading--visual-level-2.mdl-offer_card__lead, .atm-heading--visual-level-2.mdl-sub-navigation__title,
    .mdl-richtext h3.atm-heading--visual-level-2,
    .mdl-richtext h4.atm-heading--visual-level-2 {
        font-size: calc(2.34375vw + 24px);
    }
}
@media (min-width: 768px) {
    h2.atm-heading, .context-ghi h2.mdl-offer_card__lead, h2.mdl-sub-navigation__title, .mdl-richtext h2, .atm-heading.atm-heading--visual-level-2, .context-ghi .atm-heading--visual-level-2.mdl-offer_card__lead, .atm-heading--visual-level-2.mdl-sub-navigation__title,
    .mdl-richtext h3.atm-heading--visual-level-2,
    .mdl-richtext h4.atm-heading--visual-level-2 {
        font-size: calc(42 * 1px);
    }
}
@media all and (min-width: 48em) {
    h2.atm-heading, .context-ghi h2.mdl-offer_card__lead, h2.mdl-sub-navigation__title, .mdl-richtext h2, .atm-heading.atm-heading--visual-level-2, .context-ghi .atm-heading--visual-level-2.mdl-offer_card__lead, .atm-heading--visual-level-2.mdl-sub-navigation__title,
    .mdl-richtext h3.atm-heading--visual-level-2,
    .mdl-richtext h4.atm-heading--visual-level-2 {
        line-height: 1.2;
    }
}
@media all and (min-width: 100em) {
    h2.atm-heading, .context-ghi h2.mdl-offer_card__lead, h2.mdl-sub-navigation__title, .mdl-richtext h2, .atm-heading.atm-heading--visual-level-2, .context-ghi .atm-heading--visual-level-2.mdl-offer_card__lead, .atm-heading--visual-level-2.mdl-sub-navigation__title,
    .mdl-richtext h3.atm-heading--visual-level-2,
    .mdl-richtext h4.atm-heading--visual-level-2 {
        margin-bottom: 2.1666666667rem;
    }
}

h3.atm-heading, .context-ghi h3.mdl-offer_card__lead, h3.mdl-sub-navigation__title,
.mdl-richtext h3, h4.atm-heading, .context-ghi h4.mdl-offer_card__lead, h4.mdl-sub-navigation__title,
.mdl-richtext h4, .atm-heading.atm-heading--visual-level-3, .context-ghi .atm-heading--visual-level-3.mdl-offer_card__lead, .atm-heading--visual-level-3.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-3, .atm-heading.atm-heading--visual-level-4, .context-ghi .atm-heading--visual-level-4.mdl-offer_card__lead, .atm-heading--visual-level-4.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-4 {
    margin-bottom: 1rem;
}

h3.atm-heading, .context-ghi h3.mdl-offer_card__lead, h3.mdl-sub-navigation__title,
.mdl-richtext h3, .atm-heading.h3, .context-ghi .h3.mdl-offer_card__lead, .h3.mdl-sub-navigation__title, .mdl-richtext h2.h3,
.mdl-richtext h4.h3, .atm-heading.atm-heading--visual-level-3, .context-ghi .atm-heading--visual-level-3.mdl-offer_card__lead, .atm-heading--visual-level-3.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-3,
.mdl-richtext h4.atm-heading--visual-level-3 {
    font-size: calc(27 * 1px);
    line-height: 1.4;
    color: var(--large-atm-heading-color);
}
@media (min-width: 0px) {
    h3.atm-heading, .context-ghi h3.mdl-offer_card__lead, h3.mdl-sub-navigation__title,
    .mdl-richtext h3, .atm-heading.h3, .context-ghi .h3.mdl-offer_card__lead, .h3.mdl-sub-navigation__title, .mdl-richtext h2.h3,
    .mdl-richtext h4.h3, .atm-heading.atm-heading--visual-level-3, .context-ghi .atm-heading--visual-level-3.mdl-offer_card__lead, .atm-heading--visual-level-3.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-3,
    .mdl-richtext h4.atm-heading--visual-level-3 {
        font-size: calc(0.1302083333vw + 27px);
    }
}
@media (min-width: 768px) {
    h3.atm-heading, .context-ghi h3.mdl-offer_card__lead, h3.mdl-sub-navigation__title,
    .mdl-richtext h3, .atm-heading.h3, .context-ghi .h3.mdl-offer_card__lead, .h3.mdl-sub-navigation__title, .mdl-richtext h2.h3,
    .mdl-richtext h4.h3, .atm-heading.atm-heading--visual-level-3, .context-ghi .atm-heading--visual-level-3.mdl-offer_card__lead, .atm-heading--visual-level-3.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-3,
    .mdl-richtext h4.atm-heading--visual-level-3 {
        font-size: calc(28 * 1px);
    }
}
@media all and (min-width: 48em) {
    h3.atm-heading, .context-ghi h3.mdl-offer_card__lead, h3.mdl-sub-navigation__title,
    .mdl-richtext h3, .atm-heading.h3, .context-ghi .h3.mdl-offer_card__lead, .h3.mdl-sub-navigation__title, .mdl-richtext h2.h3,
    .mdl-richtext h4.h3, .atm-heading.atm-heading--visual-level-3, .context-ghi .atm-heading--visual-level-3.mdl-offer_card__lead, .atm-heading--visual-level-3.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-3,
    .mdl-richtext h4.atm-heading--visual-level-3 {
        line-height: 1.3;
    }
}

h4.atm-heading, .context-ghi h4.mdl-offer_card__lead, h4.mdl-sub-navigation__title,
.mdl-richtext h4, .atm-heading.h4, .context-ghi .h4.mdl-offer_card__lead, .h4.mdl-sub-navigation__title, .mdl-richtext h2.h4,
.mdl-richtext h3.h4, .atm-heading.atm-heading--visual-level-4, .context-ghi .atm-heading--visual-level-4.mdl-offer_card__lead, .atm-heading--visual-level-4.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-4,
.mdl-richtext h3.atm-heading--visual-level-4 {
    font-size: calc(18 * 1px);
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
    line-height: 1.7;
    color: var(--small-atm-heading-color);
}
@media (min-width: 320px) {
    h4.atm-heading, .context-ghi h4.mdl-offer_card__lead, h4.mdl-sub-navigation__title,
    .mdl-richtext h4, .atm-heading.h4, .context-ghi .h4.mdl-offer_card__lead, .h4.mdl-sub-navigation__title, .mdl-richtext h2.h4,
    .mdl-richtext h3.h4, .atm-heading.atm-heading--visual-level-4, .context-ghi .atm-heading--visual-level-4.mdl-offer_card__lead, .atm-heading--visual-level-4.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-4,
    .mdl-richtext h3.atm-heading--visual-level-4 {
        font-size: calc(0vw + 18px);
    }
}
@media (min-width: 768px) {
    h4.atm-heading, .context-ghi h4.mdl-offer_card__lead, h4.mdl-sub-navigation__title,
    .mdl-richtext h4, .atm-heading.h4, .context-ghi .h4.mdl-offer_card__lead, .h4.mdl-sub-navigation__title, .mdl-richtext h2.h4,
    .mdl-richtext h3.h4, .atm-heading.atm-heading--visual-level-4, .context-ghi .atm-heading--visual-level-4.mdl-offer_card__lead, .atm-heading--visual-level-4.mdl-sub-navigation__title, .mdl-richtext h2.atm-heading--visual-level-4,
    .mdl-richtext h3.atm-heading--visual-level-4 {
        font-size: calc(18 * 1px);
    }
}

h2.atm-heading--infobox {
    font-size: 1.5555555556rem;
}
@media all and (min-width: 64em) {
    h2.atm-heading--infobox {
        font-size: 1.3333333333rem;
    }
}

.atm-heading--with-icon {
    display: flex;
    align-items: center;
}
.atm-heading--with-icon img {
    margin-right: 30px;
    width: 6.5555555556rem;
    height: 6.5555555556rem;
}
h1.atm-heading--mb, .atm-heading--mb.mdl-form_step__heading,
h2.atm-heading--mb,
h3.atm-heading--mb,
h4.atm-heading--mb {
    color: #A31812;
    font-family: "TT Milks Casual", Frutiger, sans-serif;
}

.atm-infotext, .mdl-infotext {
    line-height: 0;
    cursor: pointer;
}
.atm-infotext use, .mdl-infotext use {
    fill: #767675;
}
.atm-infotext:hover svg use, .mdl-infotext:hover svg use {
    fill: #A61711;
}
.atm-infotext--red .atm-icon use, .atm-infotext--red .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-infotext--red a.atm-link--external > svg use,
.atm-infotext--red .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-infotext--red a.atm-link--external > svg use,
.atm-infotext--red .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-infotext--red a.atm-link--external > svg use, .atm-infotext--red .mdl-richtext a[download] > svg use, .mdl-richtext .atm-infotext--red a[download] > svg use {
    fill: #A61711;
}
.atm-infotext--red:hover .atm-icon use, .atm-infotext--red:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-infotext--red:hover a.atm-link--external > svg use,
.atm-infotext--red:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-infotext--red:hover a.atm-link--external > svg use,
.atm-infotext--red:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-infotext--red:hover a.atm-link--external > svg use, .atm-infotext--red:hover .mdl-richtext a[download] > svg use, .mdl-richtext .atm-infotext--red:hover a[download] > svg use {
    fill: #771511;
}

.gradient_block--orange {
    background: linear-gradient(to bottom right, #FFBA62, #FF8F18);
}
.gradient_block--red {
    background: linear-gradient(to bottom right, #FF5041, #C40017);
}
.gradient_block--oxide-red {
    background: linear-gradient(to bottom right, #A61711, #771511);
}
.gradient_block--purple {
    background: linear-gradient(to bottom right, #9E0090, #500049);
}
.gradient_block--dark-grey {
    background: linear-gradient(to bottom right, #767675, #363331);
}
.gradient_block--light-grey {
    background: linear-gradient(to bottom right, #D1D1D1, #767675);
}
.gradient_block--olive {
    background: linear-gradient(to bottom right, #6F8D59, #404A38);
}
.gradient_block--white-inverted {
    background: linear-gradient(to bottom right, #F1F1F1, #FFF);
}

.atm-radio-button {
    position: relative;
    display: inline-flex;
    font-size: 1rem;
    line-height: 1.7;
    /**
    * Checked
    */
    /**
    * Hover & focus
    */
    /**
    * Disabled
    */
}
.atm-radio-button__input {
    border: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 1.6666666667rem;
    height: 1.6666666667rem;
    margin-right: 0.5rem;
    appearance: none;
}
.atm-radio-button__input::-ms-check {
    display: none;
}
.atm-radio-button__input:focus {
    outline: none;
}
.atm-radio-button__label {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 1.6666666667rem;
    color: #767675;
    padding-left: calc(1.6666666667rem + 0.5rem);
    cursor: pointer;
}
.atm-radio-button__circles {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.6666666667rem;
    height: 1.6666666667rem;
}
.atm-radio-button__circles:before, .atm-radio-button__circles:after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.atm-radio-button__circles:before {
    width: 0.9444444444rem;
    height: 0.9444444444rem;
    border: calc(2 * 1px) solid rgba(118, 118, 117, 0.4);
    background: #FFF;
}
.atm-radio-button__circles:after {
    width: 0.5555555556rem;
    height: 0.5555555556rem;
    background-color: #282625;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s transform ease;
}
.atm-radio-button .atm-infotext, .atm-radio-button .mdl-infotext {
    margin-left: 0.5rem;
}
.atm-radio-button--filter .atm-radio-button__input {
    width: 100%;
    height: 100%;
}
.atm-radio-button--filter .atm-radio-button__input:checked + .atm-radio-button__label {
    background-color: #282625;
    border-color: #282625;
}
.atm-radio-button--filter .atm-radio-button__input:checked + .atm-radio-button__label,
.atm-radio-button--filter .atm-radio-button__label:hover {
    color: #FFF;
}
.atm-radio-button--filter .atm-radio-button__label {
    padding: 0.5555555556rem 2rem;
}
.atm-radio-button--filter .atm-radio-button__circles {
    display: none;
}
.atm-radio-button__input:checked + .atm-radio-button__label .atm-radio-button__circles:before {
    border-color: #282625;
}
.atm-radio-button__input:checked + .atm-radio-button__label .atm-radio-button__circles:after {
    transform: translate(-50%, -50%) scale(1);
}
.atm-radio-button__input:focus + .atm-radio-button__label .atm-radio-button__circles:before, .atm-radio-button__input:checked + .atm-radio-button__label:hover .atm-radio-button__circles:before, .atm-radio-button__label:hover .atm-radio-button__circles:before {
    border-color: var(--primary-color);
}
.atm-radio-button__input:checked + .atm-radio-button__label, .atm-radio-button__label:hover {
    color: #282625;
}
.atm-radio-button__input:disabled + label {
    cursor: auto;
    color: rgba(118, 118, 117, 0.6);
}
.atm-radio-button__input:disabled + label:hover .atm-radio-button__circles:before,
.atm-radio-button__input:disabled + label .atm-radio-button__circles:before {
    border-color: rgba(118, 118, 117, 0.6);
}

.atm-loading {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    background: #A61711;
}
.atm-loading__bubble {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.atm-loading__bubble:nth-child(1) {
    left: 16px;
    animation: loading1 0.6s infinite;
}
.atm-loading__bubble:nth-child(2) {
    left: 16px;
    animation: loading2 0.6s infinite;
}
.atm-loading__bubble:nth-child(3) {
    left: 40px;
    animation: loading2 0.6s infinite;
}
.atm-loading__bubble:nth-child(4) {
    left: 64px;
    animation: loading3 0.6s infinite;
}

@keyframes loading1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes loading2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
@keyframes loading3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
.atm-link, .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .atm-ghi-link, .mdl-promo-textteaser__description, .mdl-richtext p a[download],
.mdl-richtext ul a[download],
.mdl-richtext ol a[download], .mdl-richtext a, .mdl-iconlist--horizontal .mdl-iconlist__link, .mdl-iconlist__link, .atm-paragraph a, .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__text a, .mdl-filter__label a, .mdl-dropdown__title a, .mdl-input-list__label a {
    font-size: calc(18 * 1px);
    text-decoration: none;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    position: relative;
    word-break: break-word;
    line-height: 1;
    overflow: visible;
    transition: color 0.2s ease;
    transition-property: color, text-decoration-color, border-color;
    background: none;
}
@media (min-width: 320px) {
    .atm-link, .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .atm-ghi-link, .mdl-promo-textteaser__description, .mdl-richtext p a[download],
    .mdl-richtext ul a[download],
    .mdl-richtext ol a[download], .mdl-richtext a, .mdl-iconlist--horizontal .mdl-iconlist__link, .mdl-iconlist__link, .atm-paragraph a, .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__text a, .mdl-filter__label a, .mdl-dropdown__title a, .mdl-input-list__label a {
        font-size: calc(0vw + 18px);
    }
}
@media (min-width: 768px) {
    .atm-link, .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .atm-ghi-link, .mdl-promo-textteaser__description, .mdl-richtext p a[download],
    .mdl-richtext ul a[download],
    .mdl-richtext ol a[download], .mdl-richtext a, .mdl-iconlist--horizontal .mdl-iconlist__link, .mdl-iconlist__link, .atm-paragraph a, .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__text a, .mdl-filter__label a, .mdl-dropdown__title a, .mdl-input-list__label a {
        font-size: calc(18 * 1px);
    }
}
.tippy-content .atm-link, .tippy-content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .tippy-content a, .tippy-content .context-ghi .atm-ghi-link, .context-ghi .tippy-content .atm-ghi-link, .tippy-content .mdl-promo-textteaser__description, .tippy-content .mdl-richtext p a[download], .mdl-richtext p .tippy-content a[download],
.tippy-content .mdl-richtext ul a[download],
.mdl-richtext ul .tippy-content a[download],
.tippy-content .mdl-richtext ol a[download],
.mdl-richtext ol .tippy-content a[download], .tippy-content .mdl-richtext a, .mdl-richtext .tippy-content a, .tippy-content .mdl-iconlist__link, .tippy-content .atm-paragraph a, .tippy-content .mdl-plain-text-accordion__height-representation a, .tippy-content .mdl-plain-text-accordion__text a, .tippy-content .mdl-filter__label a, .tippy-content .mdl-dropdown__title a, .tippy-content .mdl-input-list__label a, .atm-paragraph .tippy-content a, .mdl-plain-text-accordion__height-representation .tippy-content a, .mdl-plain-text-accordion__text .tippy-content a, .mdl-filter__label .tippy-content a, .mdl-dropdown__title .tippy-content a, .mdl-input-list__label .tippy-content a {
    font-size: 0.8333333333rem;
}
.atm-link .atm-icon, .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon, .context-ghi .atm-ghi-link .atm-icon, .mdl-promo-textteaser__description .atm-icon, .mdl-richtext p a[download] .atm-icon, .mdl-richtext p a[download] > svg,
.mdl-richtext ul a[download] .atm-icon,
.mdl-richtext ul a[download] > svg,
.mdl-richtext ol a[download] .atm-icon,
.mdl-richtext ol a[download] > svg, .mdl-richtext a .atm-icon, .mdl-richtext p a.atm-link--external > svg,
.mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ol a.atm-link--external > svg, .mdl-richtext a[download] > svg, .mdl-iconlist__link .atm-icon, .atm-paragraph a .atm-icon, .mdl-plain-text-accordion__height-representation a .atm-icon, .mdl-plain-text-accordion__text a .atm-icon, .mdl-filter__label a .atm-icon, .mdl-dropdown__title a .atm-icon, .mdl-input-list__label a .atm-icon {
    flex-shrink: 0;
    margin-left: auto;
}
.atm-link .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .atm-ghi-link .atm-icon use, .mdl-promo-textteaser__description .atm-icon use, .mdl-richtext a .atm-icon use, .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ol a.atm-link--external > svg use, .mdl-richtext a[download] > svg use, .mdl-iconlist__link .atm-icon use, .atm-paragraph a .atm-icon use, .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-plain-text-accordion__text a .atm-icon use, .mdl-filter__label a .atm-icon use, .mdl-dropdown__title a .atm-icon use, .mdl-input-list__label a .atm-icon use {
    fill: var(--primary-color);
}
.atm-link:hover, .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .atm-ghi-link:hover, .mdl-promo-textteaser__description:hover, .mdl-richtext p a[download]:hover,
.mdl-richtext ul a[download]:hover,
.mdl-richtext ol a[download]:hover, .mdl-richtext a:hover, .mdl-iconlist__link:hover, .atm-paragraph a:hover, .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__text a:hover, .mdl-filter__label a:hover, .mdl-dropdown__title a:hover, .mdl-input-list__label a:hover {
    color: var(--primary-color-darken-1);
    text-decoration-color: var(--atm-link-inline-underline-color);
}
.atm-link:hover .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use, .context-ghi .atm-ghi-link:hover .atm-icon use, .mdl-promo-textteaser__description:hover .atm-icon use, .atm-link:hover .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a[download] > svg use, .context-ghi .atm-ghi-link:hover .mdl-richtext p a[download] > svg use, .mdl-promo-textteaser__description:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-link:hover a[download] > svg use, .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a:hover a[download] > svg use, .mdl-richtext p .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext p .atm-ghi-link:hover a[download] > svg use, .mdl-richtext p .mdl-promo-textteaser__description:hover a[download] > svg use,
.atm-link:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .atm-ghi-link:hover .mdl-richtext ul a[download] > svg use,
.mdl-promo-textteaser__description:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-link:hover a[download] > svg use,
.mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a:hover a[download] > svg use,
.mdl-richtext ul .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ul .atm-ghi-link:hover a[download] > svg use,
.mdl-richtext ul .mdl-promo-textteaser__description:hover a[download] > svg use,
.atm-link:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .atm-ghi-link:hover .mdl-richtext ol a[download] > svg use,
.mdl-promo-textteaser__description:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-link:hover a[download] > svg use,
.mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a:hover a[download] > svg use,
.mdl-richtext ol .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ol .atm-ghi-link:hover a[download] > svg use,
.mdl-richtext ol .mdl-promo-textteaser__description:hover a[download] > svg use, .mdl-richtext p a[download]:hover .atm-icon use, .mdl-richtext p a[download]:hover a[download] > svg use,
.mdl-richtext p a[download]:hover ul a[download] > svg use,
.mdl-richtext ul p a[download]:hover a[download] > svg use,
.mdl-richtext p a[download]:hover ol a[download] > svg use,
.mdl-richtext ol p a[download]:hover a[download] > svg use,
.mdl-richtext ul a[download]:hover .atm-icon use,
.mdl-richtext ul a[download]:hover p a[download] > svg use,
.mdl-richtext p ul a[download]:hover a[download] > svg use,
.mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ul a[download]:hover ol a[download] > svg use,
.mdl-richtext ol ul a[download]:hover a[download] > svg use,
.mdl-richtext ol a[download]:hover .atm-icon use,
.mdl-richtext ol a[download]:hover p a[download] > svg use,
.mdl-richtext p ol a[download]:hover a[download] > svg use,
.mdl-richtext ol a[download]:hover ul a[download] > svg use,
.mdl-richtext ul ol a[download]:hover a[download] > svg use,
.mdl-richtext ol a[download]:hover a[download] > svg use, .atm-link:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-promo-textteaser__description:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p a[download]:hover .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext ul a[download]:hover .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext ol a[download]:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-link:hover a.atm-link--external > svg use, .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-richtext p .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use, .context-ghi .mdl-richtext p .atm-ghi-link:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-promo-textteaser__description:hover a.atm-link--external > svg use, .mdl-richtext p a[download]:hover a.atm-link--external > svg use,
.mdl-richtext p ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul p a[download]:hover a.atm-link--external > svg use,
.mdl-richtext p ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol p a[download]:hover a.atm-link--external > svg use,
.atm-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-promo-textteaser__description:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext p a[download]:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul a[download]:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ol a[download]:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-richtext ul .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-richtext ul p a[download]:hover a.atm-link--external > svg use,
.mdl-richtext p ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol ul a[download]:hover a.atm-link--external > svg use,
.atm-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-promo-textteaser__description:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext p a[download]:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ul a[download]:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol a[download]:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-richtext ol .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-richtext ol p a[download]:hover a.atm-link--external > svg use,
.mdl-richtext p ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol a[download]:hover a.atm-link--external > svg use, .atm-link:hover .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext a[download] > svg use, .context-ghi .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .mdl-promo-textteaser__description:hover .mdl-richtext a[download] > svg use, .mdl-richtext p a[download]:hover .mdl-richtext a[download] > svg use,
.mdl-richtext ul a[download]:hover .mdl-richtext a[download] > svg use,
.mdl-richtext ol a[download]:hover .mdl-richtext a[download] > svg use, .mdl-richtext .atm-link:hover a[download] > svg use, .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a:hover a[download] > svg use, .mdl-richtext .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext .atm-ghi-link:hover a[download] > svg use, .mdl-richtext .mdl-promo-textteaser__description:hover a[download] > svg use, .mdl-richtext p a[download]:hover a[download] > svg use,
.mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ol a[download]:hover a[download] > svg use, .mdl-richtext a:hover .atm-icon use, .mdl-richtext a:hover p a[download] > svg use, .mdl-richtext p a:hover a[download] > svg use,
.mdl-richtext a:hover ul a[download] > svg use,
.mdl-richtext ul a:hover a[download] > svg use,
.mdl-richtext a:hover ol a[download] > svg use,
.mdl-richtext ol a:hover a[download] > svg use, .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-richtext ol a:hover a.atm-link--external > svg use, .mdl-richtext a:hover a[download] > svg use, .mdl-iconlist__link:hover .atm-icon use, .mdl-iconlist__link:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist__link:hover a[download] > svg use,
.mdl-iconlist__link:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist__link:hover a[download] > svg use,
.mdl-iconlist__link:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist__link:hover a[download] > svg use, .mdl-iconlist__link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-iconlist__link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-iconlist__link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist__link:hover a.atm-link--external > svg use, .mdl-iconlist__link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist__link:hover a[download] > svg use, .atm-paragraph a:hover .atm-icon use, .mdl-plain-text-accordion__height-representation a:hover .atm-icon use, .mdl-plain-text-accordion__text a:hover .atm-icon use, .mdl-filter__label a:hover .atm-icon use, .mdl-dropdown__title a:hover .atm-icon use, .mdl-input-list__label a:hover .atm-icon use, .atm-paragraph a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text a:hover .mdl-richtext p a[download] > svg use, .mdl-filter__label a:hover .mdl-richtext p a[download] > svg use, .mdl-dropdown__title a:hover .mdl-richtext p a[download] > svg use, .mdl-input-list__label a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text a:hover a[download] > svg use, .mdl-richtext p .mdl-filter__label a:hover a[download] > svg use, .mdl-richtext p .mdl-dropdown__title a:hover a[download] > svg use, .mdl-richtext p .mdl-input-list__label a:hover a[download] > svg use,
.atm-paragraph a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text a:hover .mdl-richtext ul a[download] > svg use,
.mdl-filter__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-dropdown__title a:hover .mdl-richtext ul a[download] > svg use,
.mdl-input-list__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.mdl-richtext ul .mdl-filter__label a:hover a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label a:hover a[download] > svg use,
.atm-paragraph a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text a:hover .mdl-richtext ol a[download] > svg use,
.mdl-filter__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-dropdown__title a:hover .mdl-richtext ol a[download] > svg use,
.mdl-input-list__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.mdl-richtext ol .mdl-filter__label a:hover a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label a:hover a[download] > svg use, .atm-paragraph a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-filter__label a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-dropdown__title a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-input-list__label a:hover .mdl-richtext p a.atm-link--external > svg use,
.atm-paragraph a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-filter__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-dropdown__title a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-input-list__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.atm-paragraph a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-filter__label a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-dropdown__title a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-input-list__label a:hover .mdl-richtext ol a.atm-link--external > svg use, .atm-paragraph a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text a:hover .mdl-richtext a[download] > svg use, .mdl-filter__label a:hover .mdl-richtext a[download] > svg use, .mdl-dropdown__title a:hover .mdl-richtext a[download] > svg use, .mdl-input-list__label a:hover .mdl-richtext a[download] > svg use,
.atm-link:hover .atm-icon path,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon path,
.context-ghi .atm-ghi-link:hover .atm-icon path,
.mdl-promo-textteaser__description:hover .atm-icon path,
.atm-link:hover .mdl-richtext p a[download] > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a[download] > svg path,
.context-ghi .atm-ghi-link:hover .mdl-richtext p a[download] > svg path,
.mdl-promo-textteaser__description:hover .mdl-richtext p a[download] > svg path,
.mdl-richtext p .atm-link:hover a[download] > svg path,
.mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a:hover a[download] > svg path,
.mdl-richtext p .context-ghi .atm-ghi-link:hover a[download] > svg path,
.context-ghi .mdl-richtext p .atm-ghi-link:hover a[download] > svg path,
.mdl-richtext p .mdl-promo-textteaser__description:hover a[download] > svg path,
.atm-link:hover .mdl-richtext ul a[download] > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a[download] > svg path,
.context-ghi .atm-ghi-link:hover .mdl-richtext ul a[download] > svg path,
.mdl-promo-textteaser__description:hover .mdl-richtext ul a[download] > svg path,
.mdl-richtext ul .atm-link:hover a[download] > svg path,
.mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a:hover a[download] > svg path,
.mdl-richtext ul .context-ghi .atm-ghi-link:hover a[download] > svg path,
.context-ghi .mdl-richtext ul .atm-ghi-link:hover a[download] > svg path,
.mdl-richtext ul .mdl-promo-textteaser__description:hover a[download] > svg path,
.atm-link:hover .mdl-richtext ol a[download] > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a[download] > svg path,
.context-ghi .atm-ghi-link:hover .mdl-richtext ol a[download] > svg path,
.mdl-promo-textteaser__description:hover .mdl-richtext ol a[download] > svg path,
.mdl-richtext ol .atm-link:hover a[download] > svg path,
.mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a:hover a[download] > svg path,
.mdl-richtext ol .context-ghi .atm-ghi-link:hover a[download] > svg path,
.context-ghi .mdl-richtext ol .atm-ghi-link:hover a[download] > svg path,
.mdl-richtext ol .mdl-promo-textteaser__description:hover a[download] > svg path,
.mdl-richtext p a[download]:hover .atm-icon path,
.mdl-richtext p a[download]:hover a[download] > svg path,
.mdl-richtext p a[download]:hover ul a[download] > svg path,
.mdl-richtext ul p a[download]:hover a[download] > svg path,
.mdl-richtext p a[download]:hover ol a[download] > svg path,
.mdl-richtext ol p a[download]:hover a[download] > svg path,
.mdl-richtext ul a[download]:hover .atm-icon path,
.mdl-richtext ul a[download]:hover p a[download] > svg path,
.mdl-richtext p ul a[download]:hover a[download] > svg path,
.mdl-richtext ul a[download]:hover a[download] > svg path,
.mdl-richtext ul a[download]:hover ol a[download] > svg path,
.mdl-richtext ol ul a[download]:hover a[download] > svg path,
.mdl-richtext ol a[download]:hover .atm-icon path,
.mdl-richtext ol a[download]:hover p a[download] > svg path,
.mdl-richtext p ol a[download]:hover a[download] > svg path,
.mdl-richtext ol a[download]:hover ul a[download] > svg path,
.mdl-richtext ul ol a[download]:hover a[download] > svg path,
.mdl-richtext ol a[download]:hover a[download] > svg path,
.atm-link:hover .mdl-richtext p a.atm-link--external > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a.atm-link--external > svg path,
.context-ghi .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-promo-textteaser__description:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-richtext p a[download]:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-richtext ul a[download]:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-richtext ol a[download]:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-richtext p .atm-link:hover a.atm-link--external > svg path,
.mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a:hover a.atm-link--external > svg path,
.mdl-richtext p .context-ghi .atm-ghi-link:hover a.atm-link--external > svg path,
.context-ghi .mdl-richtext p .atm-ghi-link:hover a.atm-link--external > svg path,
.mdl-richtext p .mdl-promo-textteaser__description:hover a.atm-link--external > svg path,
.mdl-richtext p a[download]:hover a.atm-link--external > svg path,
.mdl-richtext p ul a[download]:hover a.atm-link--external > svg path,
.mdl-richtext ul p a[download]:hover a.atm-link--external > svg path,
.mdl-richtext p ol a[download]:hover a.atm-link--external > svg path,
.mdl-richtext ol p a[download]:hover a.atm-link--external > svg path,
.atm-link:hover .mdl-richtext ul a.atm-link--external > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a.atm-link--external > svg path,
.context-ghi .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-promo-textteaser__description:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-richtext p a[download]:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-richtext ul a[download]:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-richtext ol a[download]:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-richtext ul .atm-link:hover a.atm-link--external > svg path,
.mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a:hover a.atm-link--external > svg path,
.mdl-richtext ul .context-ghi .atm-ghi-link:hover a.atm-link--external > svg path,
.context-ghi .mdl-richtext ul .atm-ghi-link:hover a.atm-link--external > svg path,
.mdl-richtext ul .mdl-promo-textteaser__description:hover a.atm-link--external > svg path,
.mdl-richtext ul p a[download]:hover a.atm-link--external > svg path,
.mdl-richtext p ul a[download]:hover a.atm-link--external > svg path,
.mdl-richtext ul a[download]:hover a.atm-link--external > svg path,
.mdl-richtext ul ol a[download]:hover a.atm-link--external > svg path,
.mdl-richtext ol ul a[download]:hover a.atm-link--external > svg path,
.atm-link:hover .mdl-richtext ol a.atm-link--external > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a.atm-link--external > svg path,
.context-ghi .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-promo-textteaser__description:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-richtext p a[download]:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-richtext ul a[download]:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-richtext ol a[download]:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-richtext ol .atm-link:hover a.atm-link--external > svg path,
.mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a:hover a.atm-link--external > svg path,
.mdl-richtext ol .context-ghi .atm-ghi-link:hover a.atm-link--external > svg path,
.context-ghi .mdl-richtext ol .atm-ghi-link:hover a.atm-link--external > svg path,
.mdl-richtext ol .mdl-promo-textteaser__description:hover a.atm-link--external > svg path,
.mdl-richtext ol p a[download]:hover a.atm-link--external > svg path,
.mdl-richtext p ol a[download]:hover a.atm-link--external > svg path,
.mdl-richtext ol ul a[download]:hover a.atm-link--external > svg path,
.mdl-richtext ul ol a[download]:hover a.atm-link--external > svg path,
.mdl-richtext ol a[download]:hover a.atm-link--external > svg path,
.atm-link:hover .mdl-richtext a[download] > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext a[download] > svg path,
.context-ghi .atm-ghi-link:hover .mdl-richtext a[download] > svg path,
.mdl-promo-textteaser__description:hover .mdl-richtext a[download] > svg path,
.mdl-richtext p a[download]:hover .mdl-richtext a[download] > svg path,
.mdl-richtext ul a[download]:hover .mdl-richtext a[download] > svg path,
.mdl-richtext ol a[download]:hover .mdl-richtext a[download] > svg path,
.mdl-richtext .atm-link:hover a[download] > svg path,
.mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg path,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a:hover a[download] > svg path,
.mdl-richtext .context-ghi .atm-ghi-link:hover a[download] > svg path,
.context-ghi .mdl-richtext .atm-ghi-link:hover a[download] > svg path,
.mdl-richtext .mdl-promo-textteaser__description:hover a[download] > svg path,
.mdl-richtext p a[download]:hover a[download] > svg path,
.mdl-richtext ul a[download]:hover a[download] > svg path,
.mdl-richtext ol a[download]:hover a[download] > svg path,
.mdl-richtext a:hover .atm-icon path,
.mdl-richtext a:hover p a[download] > svg path,
.mdl-richtext p a:hover a[download] > svg path,
.mdl-richtext a:hover ul a[download] > svg path,
.mdl-richtext ul a:hover a[download] > svg path,
.mdl-richtext a:hover ol a[download] > svg path,
.mdl-richtext ol a:hover a[download] > svg path,
.mdl-richtext a:hover p a.atm-link--external > svg path,
.mdl-richtext p a:hover a.atm-link--external > svg path,
.mdl-richtext a:hover ul a.atm-link--external > svg path,
.mdl-richtext ul a:hover a.atm-link--external > svg path,
.mdl-richtext a:hover ol a.atm-link--external > svg path,
.mdl-richtext ol a:hover a.atm-link--external > svg path,
.mdl-richtext a:hover a[download] > svg path,
.mdl-iconlist__link:hover .atm-icon path,
.mdl-iconlist__link:hover .mdl-richtext p a[download] > svg path,
.mdl-richtext p .mdl-iconlist__link:hover a[download] > svg path,
.mdl-iconlist__link:hover .mdl-richtext ul a[download] > svg path,
.mdl-richtext ul .mdl-iconlist__link:hover a[download] > svg path,
.mdl-iconlist__link:hover .mdl-richtext ol a[download] > svg path,
.mdl-richtext ol .mdl-iconlist__link:hover a[download] > svg path,
.mdl-iconlist__link:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-richtext p .mdl-iconlist__link:hover a.atm-link--external > svg path,
.mdl-iconlist__link:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-richtext ul .mdl-iconlist__link:hover a.atm-link--external > svg path,
.mdl-iconlist__link:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-richtext ol .mdl-iconlist__link:hover a.atm-link--external > svg path,
.mdl-iconlist__link:hover .mdl-richtext a[download] > svg path,
.mdl-richtext .mdl-iconlist__link:hover a[download] > svg path,
.atm-paragraph a:hover .atm-icon path,
.mdl-plain-text-accordion__height-representation a:hover .atm-icon path,
.mdl-plain-text-accordion__text a:hover .atm-icon path,
.mdl-filter__label a:hover .atm-icon path,
.mdl-dropdown__title a:hover .atm-icon path,
.mdl-input-list__label a:hover .atm-icon path,
.atm-paragraph a:hover .mdl-richtext p a[download] > svg path,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a[download] > svg path,
.mdl-plain-text-accordion__text a:hover .mdl-richtext p a[download] > svg path,
.mdl-filter__label a:hover .mdl-richtext p a[download] > svg path,
.mdl-dropdown__title a:hover .mdl-richtext p a[download] > svg path,
.mdl-input-list__label a:hover .mdl-richtext p a[download] > svg path,
.mdl-richtext p .atm-paragraph a:hover a[download] > svg path,
.mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a[download] > svg path,
.mdl-richtext p .mdl-plain-text-accordion__text a:hover a[download] > svg path,
.mdl-richtext p .mdl-filter__label a:hover a[download] > svg path,
.mdl-richtext p .mdl-dropdown__title a:hover a[download] > svg path,
.mdl-richtext p .mdl-input-list__label a:hover a[download] > svg path,
.atm-paragraph a:hover .mdl-richtext ul a[download] > svg path,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a[download] > svg path,
.mdl-plain-text-accordion__text a:hover .mdl-richtext ul a[download] > svg path,
.mdl-filter__label a:hover .mdl-richtext ul a[download] > svg path,
.mdl-dropdown__title a:hover .mdl-richtext ul a[download] > svg path,
.mdl-input-list__label a:hover .mdl-richtext ul a[download] > svg path,
.mdl-richtext ul .atm-paragraph a:hover a[download] > svg path,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a[download] > svg path,
.mdl-richtext ul .mdl-plain-text-accordion__text a:hover a[download] > svg path,
.mdl-richtext ul .mdl-filter__label a:hover a[download] > svg path,
.mdl-richtext ul .mdl-dropdown__title a:hover a[download] > svg path,
.mdl-richtext ul .mdl-input-list__label a:hover a[download] > svg path,
.atm-paragraph a:hover .mdl-richtext ol a[download] > svg path,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a[download] > svg path,
.mdl-plain-text-accordion__text a:hover .mdl-richtext ol a[download] > svg path,
.mdl-filter__label a:hover .mdl-richtext ol a[download] > svg path,
.mdl-dropdown__title a:hover .mdl-richtext ol a[download] > svg path,
.mdl-input-list__label a:hover .mdl-richtext ol a[download] > svg path,
.mdl-richtext ol .atm-paragraph a:hover a[download] > svg path,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a[download] > svg path,
.mdl-richtext ol .mdl-plain-text-accordion__text a:hover a[download] > svg path,
.mdl-richtext ol .mdl-filter__label a:hover a[download] > svg path,
.mdl-richtext ol .mdl-dropdown__title a:hover a[download] > svg path,
.mdl-richtext ol .mdl-input-list__label a:hover a[download] > svg path,
.atm-paragraph a:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-plain-text-accordion__text a:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-filter__label a:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-dropdown__title a:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-input-list__label a:hover .mdl-richtext p a.atm-link--external > svg path,
.atm-paragraph a:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-plain-text-accordion__text a:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-filter__label a:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-dropdown__title a:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-input-list__label a:hover .mdl-richtext ul a.atm-link--external > svg path,
.atm-paragraph a:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-plain-text-accordion__text a:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-filter__label a:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-dropdown__title a:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-input-list__label a:hover .mdl-richtext ol a.atm-link--external > svg path,
.atm-paragraph a:hover .mdl-richtext a[download] > svg path,
.mdl-plain-text-accordion__height-representation a:hover .mdl-richtext a[download] > svg path,
.mdl-plain-text-accordion__text a:hover .mdl-richtext a[download] > svg path,
.mdl-filter__label a:hover .mdl-richtext a[download] > svg path,
.mdl-dropdown__title a:hover .mdl-richtext a[download] > svg path,
.mdl-input-list__label a:hover .mdl-richtext a[download] > svg path {
    fill: var(--primary-color-darken-1);
}
.atm-link--download__meta, .mdl-richtext p a[download] > span,
.mdl-richtext ul a[download] > span,
.mdl-richtext ol a[download] > span {
    white-space: nowrap;
}
.atm-link--external, .atm-link--internal {
    padding: calc(1rem - 2px) 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.3333333333rem;
}
.atm-link--external:hover, .atm-link--internal:hover {
    border-color: var(--primary-color-darken-1);
}
.atm-link--external .atm-icon, .mdl-richtext p a.atm-link--external > svg,
.mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ol a.atm-link--external > svg, .atm-link--download .atm-icon, .mdl-richtext a[download] .atm-icon, .mdl-richtext p a[download] > svg,
.mdl-richtext ul a[download] > svg,
.mdl-richtext ol a[download] > svg, .mdl-richtext a[download] > svg {
    position: absolute;
    top: 50%;
}
.atm-link--external {
    padding-right: calc(0.5rem + 1rem + 1.3333333333rem);
    text-decoration: underline;
}
.atm-link--external .atm-icon, .mdl-richtext p a.atm-link--external > svg,
.mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ol a.atm-link--external > svg, .atm-link--external .mdl-richtext a[download] > svg, .mdl-richtext .atm-link--external a[download] > svg {
    right: 0.5rem;
    transform: translateY(-50%) rotate(-45deg);
}
.atm-link--back {
    margin-bottom: 2.1666666667rem;
}
.atm-link--back .atm-icon, .atm-link--back .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-link--back a.atm-link--external > svg,
.atm-link--back .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-link--back a.atm-link--external > svg,
.atm-link--back .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-link--back a.atm-link--external > svg, .atm-link--back .mdl-richtext a[download] > svg, .mdl-richtext .atm-link--back a[download] > svg {
    margin-right: 1em;
}
@media all and (min-width: 64em) {
    .atm-link--back {
        margin-bottom: 3.2222222222rem;
    }
}
.atm-link--download, .mdl-richtext p a[download],
.mdl-richtext ul a[download],
.mdl-richtext ol a[download], .mdl-richtext a[download] {
    padding-left: 2.3888888889rem;
    align-items: baseline;
}
.atm-link--download .atm-icon, .atm-link--download .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-link--download a.atm-link--external > svg, .mdl-richtext p a[download] a.atm-link--external > svg,
.atm-link--download .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-link--download a.atm-link--external > svg,
.mdl-richtext ul a[download] a.atm-link--external > svg,
.atm-link--download .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-link--download a.atm-link--external > svg,
.mdl-richtext ol a[download] a.atm-link--external > svg, .mdl-richtext a[download] .atm-icon, .mdl-richtext p a[download] > svg,
.mdl-richtext ul a[download] > svg,
.mdl-richtext ol a[download] > svg, .mdl-richtext a[download] p a.atm-link--external > svg,
.mdl-richtext a[download] ul a.atm-link--external > svg,
.mdl-richtext a[download] ol a.atm-link--external > svg, .mdl-richtext a[download] > svg {
    left: 0;
    transform: translateY(-50%);
}
.atm-link--navigation {
    color: #767675;
}
.atm-link--navigation:hover {
    color: #282625;
}
.atm-link--navigation-active {
    color: #282625;
}
.atm-link--inline, .context-ghi .mdl-ghi_pdf_download_form-intro a, .mdl-richtext a:not([class]), .mdl-richtext a.atm-link--inline, .mdl-richtext .atm-paragraph a, .mdl-richtext .mdl-plain-text-accordion__height-representation a, .mdl-richtext .mdl-plain-text-accordion__text a, .mdl-richtext .mdl-filter__label a, .mdl-richtext .mdl-dropdown__title a, .mdl-richtext .mdl-input-list__label a, .atm-paragraph .mdl-richtext a, .mdl-plain-text-accordion__height-representation .mdl-richtext a, .mdl-plain-text-accordion__text .mdl-richtext a, .mdl-filter__label .mdl-richtext a, .mdl-dropdown__title .mdl-richtext a, .mdl-input-list__label .mdl-richtext a, .atm-paragraph a, .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__text a, .mdl-filter__label a, .mdl-dropdown__title a, .mdl-input-list__label a, .mdl-richtext p a {
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-color: var(--atm-link-inline-underline-color);
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    color: #282625;
    padding: 0;
    border-radius: 0;
}
.atm-link--inline.atm-link--external, .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--external, .mdl-richtext a.atm-link--external:not([class]), .mdl-richtext a.atm-link--external.atm-link--inline, .atm-paragraph a.atm-link--external, .mdl-plain-text-accordion__height-representation a.atm-link--external, .mdl-plain-text-accordion__text a.atm-link--external, .mdl-filter__label a.atm-link--external, .mdl-dropdown__title a.atm-link--external, .mdl-input-list__label a.atm-link--external, .mdl-richtext p a.atm-link--external {
    padding-right: 1.1333333333rem;
    border: 0;
    color: inherit;
}
.atm-link--inline.atm-link--external .atm-icon, .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--external .atm-icon,
.atm-link--inline.atm-link--external .mdl-richtext ul a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--external .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-link--inline.atm-link--external a.atm-link--external > svg,
.mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--external a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a.atm-link--external a.atm-link--external > svg,
.atm-link--inline.atm-link--external .mdl-richtext ol a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--external .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-link--inline.atm-link--external a.atm-link--external > svg,
.mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--external a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a.atm-link--external a.atm-link--external > svg, .mdl-richtext a.atm-link--external:not([class]) .atm-icon, .mdl-richtext p a.atm-link--external:not([class]) a.atm-link--external > svg,
.mdl-richtext a.atm-link--external:not([class]) ul a.atm-link--external > svg,
.mdl-richtext ul a.atm-link--external:not([class]) a.atm-link--external > svg,
.mdl-richtext a.atm-link--external:not([class]) ol a.atm-link--external > svg,
.mdl-richtext ol a.atm-link--external:not([class]) a.atm-link--external > svg, .atm-link--inline.atm-link--external .mdl-richtext a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--external .mdl-richtext a[download] > svg, .mdl-richtext .atm-link--inline.atm-link--external a[download] > svg, .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--external a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a.atm-link--external a[download] > svg, .mdl-richtext a.atm-link--external:not([class]) a[download] > svg, .atm-paragraph a.atm-link--external .atm-icon, .mdl-plain-text-accordion__height-representation a.atm-link--external .atm-icon, .mdl-plain-text-accordion__text a.atm-link--external .atm-icon, .mdl-filter__label a.atm-link--external .atm-icon, .mdl-dropdown__title a.atm-link--external .atm-icon, .mdl-input-list__label a.atm-link--external .atm-icon,
.atm-paragraph .mdl-richtext ul a.atm-link--external > svg,
.mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg,
.mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg,
.mdl-filter__label .mdl-richtext ul a.atm-link--external > svg,
.mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg,
.mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-paragraph a.atm-link--external > svg,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg,
.mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg,
.mdl-richtext ul .mdl-filter__label a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg,
.mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg,
.atm-paragraph .mdl-richtext ol a.atm-link--external > svg,
.mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg,
.mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg,
.mdl-filter__label .mdl-richtext ol a.atm-link--external > svg,
.mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg,
.mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-paragraph a.atm-link--external > svg,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg,
.mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg,
.mdl-richtext ol .mdl-filter__label a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg,
.mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg, .atm-paragraph a.atm-link--external .mdl-richtext a[download] > svg, .mdl-plain-text-accordion__height-representation a.atm-link--external .mdl-richtext a[download] > svg, .mdl-plain-text-accordion__text a.atm-link--external .mdl-richtext a[download] > svg, .mdl-filter__label a.atm-link--external .mdl-richtext a[download] > svg, .mdl-dropdown__title a.atm-link--external .mdl-richtext a[download] > svg, .mdl-input-list__label a.atm-link--external .mdl-richtext a[download] > svg, .mdl-richtext .atm-paragraph a.atm-link--external a[download] > svg, .mdl-richtext .mdl-plain-text-accordion__height-representation a.atm-link--external a[download] > svg, .mdl-richtext .mdl-plain-text-accordion__text a.atm-link--external a[download] > svg, .mdl-richtext .mdl-filter__label a.atm-link--external a[download] > svg, .mdl-richtext .mdl-dropdown__title a.atm-link--external a[download] > svg, .mdl-richtext .mdl-input-list__label a.atm-link--external a[download] > svg, .mdl-richtext p a.atm-link--external .atm-icon, .mdl-richtext p a.atm-link--external a[download] > svg, .mdl-richtext p a.atm-link--external > svg {
    fill: var(--primary-color);
    right: 0;
    transform: scale(0.8) translateX(30%) translateY(-60%) rotate(-45deg);
}
.atm-link--more {
    color: #282625;
}
.atm-link--more:hover {
    color: var(--primary-color-darken-1);
}
.atm-link--more .atm-icon, .atm-link--more .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-link--more a.atm-link--external > svg,
.atm-link--more .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-link--more a.atm-link--external > svg,
.atm-link--more .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-link--more a.atm-link--external > svg, .atm-link--more .mdl-richtext a[download] > svg, .mdl-richtext .atm-link--more a[download] > svg {
    margin-left: 0.5rem;
}
.atm-link--breadcrumb {
    color: var(--atm-link-inline-hover-color);
}
.atm-link--breadcrumb-active {
    color: var(--primary-color);
}
.atm-link--linklist {
    font-size: calc(24 * 1px);
    line-height: 1.5;
}
@media (min-width: 0px) {
    .atm-link--linklist {
        font-size: calc(0vw + 24px);
    }
}
@media (min-width: 768px) {
    .atm-link--linklist {
        font-size: calc(1.5625vw + 12px);
    }
}
@media (min-width: 1024px) {
    .atm-link--linklist {
        font-size: calc(28 * 1px);
    }
}
.atm-link--anchor {
    font-size: calc(18 * 1px);
}
@media (min-width: 0px) {
    .atm-link--anchor {
        font-size: calc(0.5859375vw + 18px);
    }
}
@media (min-width: 1024px) {
    .atm-link--anchor {
        font-size: calc(24 * 1px);
    }
}
.atm-link--solo {
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.atm-link--disabled {
    color: #767675;
    border-color: #767675;
    text-decoration-color: #767675;
    cursor: default;
}
.atm-link--disabled .atm-icon use, .atm-link--disabled .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-link--disabled a.atm-link--external > svg use,
.atm-link--disabled .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-link--disabled a.atm-link--external > svg use,
.atm-link--disabled .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-link--disabled a.atm-link--external > svg use, .atm-link--disabled .mdl-richtext a[download] > svg use, .mdl-richtext .atm-link--disabled a[download] > svg use,
.atm-link--disabled .atm-icon path,
.atm-link--disabled .mdl-richtext p a.atm-link--external > svg path,
.mdl-richtext p .atm-link--disabled a.atm-link--external > svg path,
.atm-link--disabled .mdl-richtext ul a.atm-link--external > svg path,
.mdl-richtext ul .atm-link--disabled a.atm-link--external > svg path,
.atm-link--disabled .mdl-richtext ol a.atm-link--external > svg path,
.mdl-richtext ol .atm-link--disabled a.atm-link--external > svg path,
.atm-link--disabled .mdl-richtext a[download] > svg path,
.mdl-richtext .atm-link--disabled a[download] > svg path {
    fill: #767675;
}
.atm-link--disabled:hover {
    color: #767675;
    border-color: #767675;
    text-decoration-color: #767675;
}
.atm-link--disabled:hover .atm-icon use, .atm-link--disabled:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-link--disabled:hover a.atm-link--external > svg use,
.atm-link--disabled:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-link--disabled:hover a.atm-link--external > svg use,
.atm-link--disabled:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-link--disabled:hover a.atm-link--external > svg use, .atm-link--disabled:hover .mdl-richtext a[download] > svg use, .mdl-richtext .atm-link--disabled:hover a[download] > svg use,
.atm-link--disabled:hover .atm-icon path,
.atm-link--disabled:hover .mdl-richtext p a.atm-link--external > svg path,
.mdl-richtext p .atm-link--disabled:hover a.atm-link--external > svg path,
.atm-link--disabled:hover .mdl-richtext ul a.atm-link--external > svg path,
.mdl-richtext ul .atm-link--disabled:hover a.atm-link--external > svg path,
.atm-link--disabled:hover .mdl-richtext ol a.atm-link--external > svg path,
.mdl-richtext ol .atm-link--disabled:hover a.atm-link--external > svg path,
.atm-link--disabled:hover .mdl-richtext a[download] > svg path,
.mdl-richtext .atm-link--disabled:hover a[download] > svg path {
    fill: #767675;
}
.atm-link--small-font {
    font-size: 0.8333333333rem;
}

@media all and (max-width: 63.99em) {
    .atm-breadcrumb {
        margin-top: 1rem;
    }
}
.atm-breadcrumb li {
    display: flex;
}
.atm-breadcrumb li a:link,
.atm-breadcrumb li a:visited {
    font-size: 1rem;
    color: #767675;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    white-space: nowrap;
}
.atm-breadcrumb li:not(:first-child) a:hover {
    text-decoration: underline;
}
.atm-breadcrumb li:not(:last-child):after {
    display: inline-block;
    margin: 0 0.5rem;
    content: "/";
}
.atm-breadcrumb li:last-child {
    padding-right: 1.1111111111rem;
}
.atm-breadcrumb__links-container {
    overflow-y: scroll;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    --mask: linear-gradient(to right, rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0) 100% 50% / 100% 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.atm-figcaption {
    font-size: 0.8333333333rem;
    line-height: 1.7;
    color: #403F3F;
}

.atm-button, .context-ghi .atm-ghi-button, .context-ghi .mdl-documentsend, .atm-link--btn {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    font-size: calc(18 * 1px);
    position: relative;
    background-color: var(--primary-color);
    border-radius: 5px;
    line-height: 1;
    padding: 1rem 2rem;
    display: inline-flex;
    color: #FFF;
    transition: background-color 0.2s ease-in;
}
.atm-button:focus, .context-ghi .atm-ghi-button:focus, .context-ghi .mdl-documentsend:focus, .atm-link--btn:focus {
    outline: none;
}
@media (min-width: 320px) {
    .atm-button, .context-ghi .atm-ghi-button, .context-ghi .mdl-documentsend, .atm-link--btn {
        font-size: calc(0vw + 18px);
    }
}
@media (min-width: 768px) {
    .atm-button, .context-ghi .atm-ghi-button, .context-ghi .mdl-documentsend, .atm-link--btn {
        font-size: calc(18 * 1px);
    }
}
.atm-button:hover, .context-ghi .atm-ghi-button:hover, .context-ghi .mdl-documentsend:hover, .atm-link--btn:hover {
    background-color: var(--primary-color-darken-1);
    color: #FFF;
}
.atm-button:disabled, .context-ghi .atm-ghi-button:disabled, .context-ghi .mdl-documentsend:disabled, .atm-link--btn:disabled, .atm-button[disabled], .context-ghi [disabled].atm-ghi-button, .context-ghi [disabled].mdl-documentsend, [disabled].atm-link--btn {
    background-color: #767675;
}
.atm-button:disabled:hover, .context-ghi .atm-ghi-button:disabled:hover, .context-ghi .mdl-documentsend:disabled:hover, .atm-link--btn:disabled:hover, .atm-button[disabled]:hover, .context-ghi [disabled].atm-ghi-button:hover, .context-ghi [disabled].mdl-documentsend:hover, [disabled].atm-link--btn:hover {
    cursor: default;
}
.atm-button__spinner {
    display: none;
    position: absolute;
    left: calc(50% - calc(18 * 1px));
    top: calc(50% - calc(18 * 1px));
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-indent: -9999em;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
    border-right: 0.1rem solid rgba(255, 255, 255, 0.2);
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
    border-left: 0.1rem solid #FFF;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
.atm-button__spinner:after {
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.atm-button--spinner .atm-button__spinner {
    display: block;
}
.atm-button--spinner .atm-button__label {
    opacity: 0;
}
.atm-button--cta, .atm-button--secondary, .context-ghi .atm-ghi-button, .context-ghi .mdl-documentsend {
    background-color: #FFF;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8888888889rem 1rem;
}
.atm-button--cta.atm-button--spinner .atm-button__spinner, .atm-button--secondary.atm-button--spinner .atm-button__spinner, .context-ghi .atm-button--spinner.atm-ghi-button .atm-button__spinner, .context-ghi .atm-button--spinner.mdl-documentsend .atm-button__spinner {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-indent: -9999em;
    border-top: 0.1rem solid rgba(var(--primary-color), 0.2);
    border-right: 0.1rem solid rgba(var(--primary-color), 0.2);
    border-bottom: 0.1rem solid rgba(var(--primary-color), 0.2);
    border-left: 0.1rem solid var(--primary-color);
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
.atm-button--cta.atm-button--spinner .atm-button__spinner:after, .atm-button--secondary.atm-button--spinner .atm-button__spinner:after, .context-ghi .atm-button--spinner.atm-ghi-button .atm-button__spinner:after, .context-ghi .atm-button--spinner.mdl-documentsend .atm-button__spinner:after {
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.atm-button--cta.atm-button--spinner:hover .atm-button__spinner, .atm-button--secondary.atm-button--spinner:hover .atm-button__spinner, .context-ghi .atm-button--spinner.atm-ghi-button:hover .atm-button__spinner, .context-ghi .atm-button--spinner.mdl-documentsend:hover .atm-button__spinner {
    border-left-color: var(--primary-color-darken-1);
}
.atm-button--cta:hover, .atm-button--cta:disabled, .atm-button--cta[disabled], .atm-button--secondary:hover, .context-ghi .atm-ghi-button:hover, .context-ghi .mdl-documentsend:hover, .atm-button--secondary:disabled, .context-ghi .atm-ghi-button:disabled, .context-ghi .mdl-documentsend:disabled, .atm-button--secondary[disabled], .context-ghi [disabled].atm-ghi-button, .context-ghi [disabled].mdl-documentsend {
    background-color: #FFF;
}
.atm-button--cta:hover, .atm-button--secondary:hover, .context-ghi .atm-ghi-button:hover, .context-ghi .mdl-documentsend:hover {
    color: var(--primary-color-darken-1);
    border-color: var(--primary-color-darken-1);
}
.atm-button--cta:hover svg use, .atm-button--secondary:hover svg use, .context-ghi .atm-ghi-button:hover svg use, .context-ghi .mdl-documentsend:hover svg use {
    fill: var(--primary-color-darken-1);
}
.atm-button--cta:disabled, .atm-button--cta[disabled], .atm-button--secondary:disabled, .context-ghi .atm-ghi-button:disabled, .context-ghi .mdl-documentsend:disabled, .atm-button--secondary[disabled], .context-ghi [disabled].atm-ghi-button, .context-ghi [disabled].mdl-documentsend {
    color: #767675;
    border-color: #767675;
}
.atm-button--cta:disabled svg use, .atm-button--cta[disabled] svg use, .atm-button--secondary:disabled svg use, .context-ghi .atm-ghi-button:disabled svg use, .context-ghi .mdl-documentsend:disabled svg use, .atm-button--secondary[disabled] svg use, .context-ghi [disabled].atm-ghi-button svg use, .context-ghi [disabled].mdl-documentsend svg use {
    fill: #767675;
}
.atm-button--secondary, .context-ghi .atm-ghi-button, .context-ghi .mdl-documentsend {
    background: transparent;
}
.atm-button--secondary:disabled, .context-ghi .atm-ghi-button:disabled, .context-ghi .mdl-documentsend:disabled, .atm-button--secondary[disabled], .context-ghi [disabled].atm-ghi-button, .context-ghi [disabled].mdl-documentsend {
    background: transparent;
}
.atm-button--secondary:hover, .context-ghi .atm-ghi-button:hover, .context-ghi .mdl-documentsend:hover {
    background: transparent;
}
.atm-button--cta {
    padding-right: 2.8333333333rem;
}
.atm-button--cta .atm-button__label {
    margin: auto;
}
.atm-button--cta svg {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.atm-button--cta svg use {
    fill: var(--primary-color);
}
.atm-button--icon__right {
    padding-right: 2.8333333333rem;
}
.atm-button--icon__right .atm-button__label {
    margin: auto;
}
.atm-button--icon__right svg {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.atm-button--icon__left {
    padding-left: 2.8333333333rem;
}
.atm-button--icon__left .atm-button__label {
    margin: auto;
}
.atm-button--icon__left svg {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.atm-button--filter, .atm-radio-button--filter .atm-radio-button__label {
    background-color: #FFF;
    color: #282625;
    border-radius: 29px;
    border: calc(2 * 1px) solid #403F3F;
    padding: 0.8888888889rem 2rem;
}
.atm-button--filter .atm-button__spinner, .atm-radio-button--filter .atm-radio-button__label .atm-button__spinner {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    text-indent: -9999em;
    border-top: 0.1em solid rgba(40, 38, 37, 0.2);
    border-right: 0.1em solid rgba(40, 38, 37, 0.2);
    border-bottom: 0.1em solid rgba(40, 38, 37, 0.2);
    border-left: 0.1em solid #282625;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
.atm-button--filter .atm-button__spinner:after, .atm-radio-button--filter .atm-radio-button__label .atm-button__spinner:after {
    border-radius: 50%;
    width: 2em;
    height: 2em;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.atm-button--filter:hover, .atm-radio-button--filter .atm-radio-button__label:hover, .atm-button--filter:focus, .atm-radio-button--filter .atm-radio-button__label:focus {
    border-color: #403F3F;
    background-color: #403F3F;
    color: #FFF;
}
.atm-button--filter.atm-button--secondary, .context-ghi .atm-button--filter.atm-ghi-button, .context-ghi .atm-button--filter.mdl-documentsend, .atm-radio-button--filter .atm-button--secondary.atm-radio-button__label, .atm-radio-button--filter .context-ghi .atm-radio-button__label.atm-ghi-button, .atm-radio-button--filter .context-ghi .atm-radio-button__label.mdl-documentsend, .context-ghi .atm-radio-button--filter .atm-radio-button__label.atm-ghi-button, .context-ghi .atm-radio-button--filter .atm-radio-button__label.mdl-documentsend, .atm-button--filter:disabled, .atm-radio-button--filter .atm-radio-button__label:disabled, .atm-button--filter[disabled], .atm-radio-button--filter [disabled].atm-radio-button__label {
    color: #767675;
    border-color: #767675;
    background-color: #FFF;
}
.atm-button--loading {
    padding: 0.5555555556rem 2rem;
}
@media all and (max-width: 63.99em) {
    .atm-button__label, .atm-button__spinner {
        text-align: center;
    }
}
.atm-button--link {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    background: none;
    color: var(--primary-color);
    padding: 0 0 0 2.3888888889rem;
}
.atm-button--link:focus {
    outline: none;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.atm-notification {
    font-size: calc(13 * 1px);
    pointer-events: all;
    border-radius: 0.1666666667rem;
    width: 100%;
    color: #FFF;
    display: flex;
    flex-direction: row;
    animation: fadein 0.5s;
    font-family: "Frutiger LT W02_55 Roman", Frutiger, sans-serif;
}
@media all and (min-width: 0em) {
    .atm-notification {
        margin-bottom: 0.6666666667rem;
    }
}
@media all and (min-width: 64em) {
    .atm-notification {
        margin-bottom: 1rem;
    }
}
@media all and (min-width: 0em) {
    .atm-notification {
        padding-top: 0.6666666667rem;
        padding-left: 0.6666666667rem;
        padding-bottom: 0.6666666667rem;
    }
}
@media all and (min-width: 64em) {
    .atm-notification {
        padding-top: 1rem;
        padding-left: 1rem;
        padding-bottom: 1rem;
    }
}
@media all and (min-width: 0em) {
    .atm-notification {
        line-height: 1.1666666667rem;
    }
}
@media all and (min-width: 64em) {
    .atm-notification {
        line-height: 1.3888888889rem;
    }
}
@media (min-width: 0px) {
    .atm-notification {
        font-size: calc(0.1953125vw + 13px);
    }
}
@media (min-width: 1024px) {
    .atm-notification {
        font-size: calc(15 * 1px);
    }
}
.atm-notification--error {
    background: linear-gradient(to bottom right, #CF0018, #FF5041);
}
.atm-notification__text {
    width: 100%;
}
.atm-notification__close {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: flex;
}
.atm-notification__close:focus {
    outline: none;
}
@media all and (min-width: 0em) {
    .atm-notification__close {
        padding-right: 0.6666666667rem;
        padding-left: 0.6666666667rem;
    }
}
@media all and (min-width: 64em) {
    .atm-notification__close {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
@media all and (min-width: 0em) {
    .atm-notification__close {
        width: 2.6666666667rem;
    }
}
@media all and (min-width: 64em) {
    .atm-notification__close {
        width: 3.3333333333rem;
    }
}
.atm-notification__close .atm-icon use, .atm-notification__close .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-notification__close a.atm-link--external > svg use,
.atm-notification__close .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-notification__close a.atm-link--external > svg use,
.atm-notification__close .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-notification__close a.atm-link--external > svg use, .atm-notification__close .mdl-richtext a[download] > svg use, .mdl-richtext .atm-notification__close a[download] > svg use {
    fill: #FFF;
}

.atm-checkbox {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    font-size: 1rem;
    line-height: 1.7;
    /** ERROR MESSAGES **/
    /**
    * Checked
    */
    /**
    * Hover & focus
    */
    /**
    * Disabled
    */
}
.atm-checkbox__wrapper {
    display: inline-flex;
}
.atm-checkbox__input {
    border: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 1.6666666667rem;
    height: 1.6666666667rem;
    margin-right: 0.3333333333rem;
    appearance: none;
}
.atm-checkbox__input::-ms-check {
    display: none;
}
.atm-checkbox__input:focus {
    outline: none;
}
.atm-checkbox__label {
    position: relative;
    display: inline;
    align-items: center;
    min-height: 1.6666666667rem;
    color: #767675;
    padding-left: calc(1.6666666667rem + 0.3333333333rem);
    cursor: pointer;
}
.atm-checkbox__box {
    position: absolute;
    left: calc(0.3333333333rem / 2);
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    width: 1.3333333333rem;
    height: 1.3333333333rem;
    border: 2px solid #767675;
    padding: 0 calc(0.3333333333rem / 2);
    background: #FFF;
}
.atm-checkbox__box .atm-icon, .atm-checkbox__box .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-checkbox__box a.atm-link--external > svg,
.atm-checkbox__box .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-checkbox__box a.atm-link--external > svg,
.atm-checkbox__box .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-checkbox__box a.atm-link--external > svg, .atm-checkbox__box .mdl-richtext a[download] > svg, .mdl-richtext .atm-checkbox__box a[download] > svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transition: transform 100ms ease-in-out;
    transform: translate(-50%, -50%) scale(0);
}
.atm-checkbox__box .atm-icon use, .atm-checkbox__box .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-checkbox__box a.atm-link--external > svg use,
.atm-checkbox__box .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-checkbox__box a.atm-link--external > svg use,
.atm-checkbox__box .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-checkbox__box a.atm-link--external > svg use, .atm-checkbox__box .mdl-richtext a[download] > svg use, .mdl-richtext .atm-checkbox__box a[download] > svg use {
    fill: #282625;
}
.atm-checkbox--hidden {
    display: none;
}
.atm-checkbox .atm-infotext, .atm-checkbox .mdl-infotext {
    margin-left: 0.5rem;
}
.atm-checkbox__message {
    padding-left: calc(1.6666666667rem + 0.3333333333rem);
}
.atm-checkbox.invalid .atm-checkbox__box {
    border-color: #EE000C;
}
.atm-checkbox__input:checked + .atm-checkbox__label {
    color: #282625;
}
.atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box {
    border-color: #282625;
}
.atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box .atm-icon, .atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box a.atm-link--external > svg,
.atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box a.atm-link--external > svg,
.atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box a.atm-link--external > svg, .atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box .mdl-richtext a[download] > svg, .mdl-richtext .atm-checkbox__input:checked + .atm-checkbox__label .atm-checkbox__box a[download] > svg {
    transform: translate(-50%, -50%) scale(0.75);
}
.atm-checkbox__input:focus + .atm-checkbox__label .atm-checkbox__box, .atm-checkbox__input:checked + .atm-checkbox__label:hover .atm-checkbox__box, .atm-checkbox__label:hover .atm-checkbox__box {
    border-color: var(--primary-color);
}
.atm-checkbox__input:checked + .atm-checkbox__label, .atm-checkbox__input:focus + .atm-checkbox__label, .atm-checkbox__label:hover {
    color: #282625;
}
.atm-checkbox__input:disabled + label {
    cursor: auto;
    color: rgba(118, 118, 117, 0.6);
}
.atm-checkbox__input:disabled + label:hover .atm-checkbox__box,
.atm-checkbox__input:disabled + label .atm-checkbox__box {
    border-color: rgba(118, 118, 117, 0.6);
}

.mdl-header {
    height: 3rem;
    width: 100%;
    z-index: 100;
    background: #FFF;
    position: fixed;
    top: 0;
    /*********************
    *    MEDIAQUERIES    *
    **********************/
    /*********************
    *    Variants        *
    **********************/
}
.mdl-header--safet .mdl-header__logo {
    height: 1.9444444444rem;
}
.mdl-header--sticky {
    position: fixed;
    top: 0;
    box-shadow: 0 2px 20px 0 rgba(75, 58, 42, 0.25);
    transition: top 0.2s ease;
}
.mdl-header--sticky.mdl-header--hidden {
    top: -6rem;
}
.mdl-header-container {
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.mdl-header-container__right-align .mdl-header__logo {
    margin-left: 0;
    margin-right: auto;
}
.mdl-header-container__right-align .mdl-header__navigation {
    margin-left: 0;
    margin-right: 0;
}
.mdl-header-container .layout-overlay {
    visibility: hidden;
    display: block;
    position: fixed;
    inset: 4.1111111111rem 0 0 0;
    z-index: 0;
    background: #282625;
    opacity: 0;
}
.mdl-header-container .layout-overlay.active {
    visibility: visible;
    opacity: 0.5;
    animation: fade-in-overlay 0.5s;
}
@keyframes fade-in-overlay {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 0.5;
        visibility: visible;
    }
}
.mdl-header__logo {
    display: block;
}
@media all and (min-width: 0em) {
    .mdl-header__logo {
        height: 1.3333333333rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-header__logo {
        height: 1.1111111111rem;
    }
}
@media all and (min-width: 0em) {
    .mdl-header__logo--medium {
        height: 2.3333333333rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-header__logo--medium {
        height: 2.8888888889rem;
    }
}
.mdl-header__logo img {
    width: auto;
    height: 100%;
}
.mdl-header__navigation {
    display: none;
    margin: auto;
    justify-self: center;
}
.mdl-header__navigation-main-item > .atm-link--navigation {
    width: max-content;
}
.mdl-header__navigation-list {
    display: flex;
    flex-direction: row;
}
.mdl-header__navigation-main-item {
    margin-right: 1.3888888889rem;
    display: flex;
    align-items: center;
}
.mdl-header__navigation-main-item:last-of-type {
    margin-right: 0;
}
.mdl-header__navigation-main-item button {
    background: none;
    border: none;
    cursor: pointer;
}
.mdl-header__navigation-main-item button .atm-icon, .mdl-header__navigation-main-item button .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-header__navigation-main-item button a.atm-link--external > svg,
.mdl-header__navigation-main-item button .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-header__navigation-main-item button a.atm-link--external > svg,
.mdl-header__navigation-main-item button .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-header__navigation-main-item button a.atm-link--external > svg, .mdl-header__navigation-main-item button .mdl-richtext a[download] > svg, .mdl-richtext .mdl-header__navigation-main-item button a[download] > svg {
    transform: translateY(0.2777777778rem);
}
.mdl-header__navigation-main-item button .atm-icon use, .mdl-header__navigation-main-item button .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-header__navigation-main-item button a.atm-link--external > svg use,
.mdl-header__navigation-main-item button .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-header__navigation-main-item button a.atm-link--external > svg use,
.mdl-header__navigation-main-item button .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-header__navigation-main-item button a.atm-link--external > svg use, .mdl-header__navigation-main-item button .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-header__navigation-main-item button a[download] > svg use {
    fill: #767675;
}
.mdl-header__navigation-main-item .wrapper {
    display: none;
    margin-left: 0.8333333333rem;
}
.mdl-header__navigation-main-item > .wrapper {
    width: 23.1666666667rem;
    position: absolute;
    top: 4.1111111111rem;
    margin-left: 0;
    background: #FFF;
    transform: translateX(-30px);
    padding: 0 1.1111111111rem 1.1111111111rem 1.6666666667rem;
}
.mdl-header__navigation-main-item > .wrapper > .inner-wrapper > ul {
    overflow-y: auto;
    padding-right: 0.5555555556rem;
}
.mdl-header__navigation-main-item > .atm-link--navigation-active {
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-color: var(--atm-link-inline-underline-color);
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    text-decoration-color: var(--header-navigation-active-color);
}
.mdl-header__navigation-main-item .mdl-header_item .atm-link, .mdl-header__navigation-main-item .mdl-header_item .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-header__navigation-main-item .mdl-header_item a, .mdl-header__navigation-main-item .mdl-header_item .context-ghi .atm-ghi-link, .context-ghi .mdl-header__navigation-main-item .mdl-header_item .atm-ghi-link, .mdl-header__navigation-main-item .mdl-header_item .mdl-promo-textteaser__description, .mdl-header__navigation-main-item .mdl-header_item .mdl-richtext a, .mdl-richtext .mdl-header__navigation-main-item .mdl-header_item a, .mdl-header__navigation-main-item .mdl-header_item .mdl-iconlist__link, .mdl-header__navigation-main-item .mdl-header_item .atm-paragraph a, .mdl-header__navigation-main-item .mdl-header_item .mdl-plain-text-accordion__height-representation a, .mdl-header__navigation-main-item .mdl-header_item .mdl-plain-text-accordion__text a, .mdl-header__navigation-main-item .mdl-header_item .mdl-filter__label a, .mdl-header__navigation-main-item .mdl-header_item .mdl-dropdown__title a, .mdl-header__navigation-main-item .mdl-header_item .mdl-input-list__label a, .atm-paragraph .mdl-header__navigation-main-item .mdl-header_item a, .mdl-plain-text-accordion__height-representation .mdl-header__navigation-main-item .mdl-header_item a, .mdl-plain-text-accordion__text .mdl-header__navigation-main-item .mdl-header_item a, .mdl-filter__label .mdl-header__navigation-main-item .mdl-header_item a, .mdl-dropdown__title .mdl-header__navigation-main-item .mdl-header_item a, .mdl-input-list__label .mdl-header__navigation-main-item .mdl-header_item a {
    position: unset;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8333333333rem 1.3333333333rem 0.8333333333rem 0;
    line-height: 1.2;
}
.mdl-header__navigation-main-item .mdl-header_item button {
    padding: 0.5555555556rem 0 0;
    position: absolute;
    right: 0;
}
.mdl-header__navigation-main-item [data-list-item] {
    position: relative;
}
.mdl-header__navigation [data-list-item].opened > .wrapper {
    display: block;
}
.mdl-header__navigation [data-list-item].opened > [data-nav-toggle] .atm-icon, .mdl-header__navigation [data-list-item].opened > [data-nav-toggle] .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-header__navigation [data-list-item].opened > [data-nav-toggle] a.atm-link--external > svg,
.mdl-header__navigation [data-list-item].opened > [data-nav-toggle] .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-header__navigation [data-list-item].opened > [data-nav-toggle] a.atm-link--external > svg,
.mdl-header__navigation [data-list-item].opened > [data-nav-toggle] .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-header__navigation [data-list-item].opened > [data-nav-toggle] a.atm-link--external > svg, .mdl-header__navigation [data-list-item].opened > [data-nav-toggle] .mdl-richtext a[download] > svg, .mdl-richtext .mdl-header__navigation [data-list-item].opened > [data-nav-toggle] a[download] > svg {
    transform: rotate(180deg);
}
.mdl-header__navigation [data-list-item].opened > .atm-link, .mdl-header__navigation .context-ghi .mdl-ghi_pdf_download_form-intro [data-list-item].opened > a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-header__navigation [data-list-item].opened > a, .mdl-header__navigation .context-ghi [data-list-item].opened > .atm-ghi-link, .context-ghi .mdl-header__navigation [data-list-item].opened > .atm-ghi-link, .mdl-header__navigation [data-list-item].opened > .mdl-promo-textteaser__description, .mdl-header__navigation .mdl-richtext [data-list-item].opened > a, .mdl-richtext .mdl-header__navigation [data-list-item].opened > a, .mdl-header__navigation [data-list-item].opened > .mdl-iconlist__link, .mdl-header__navigation .atm-paragraph [data-list-item].opened > a, .mdl-header__navigation .mdl-plain-text-accordion__height-representation [data-list-item].opened > a, .mdl-header__navigation .mdl-plain-text-accordion__text [data-list-item].opened > a, .mdl-header__navigation .mdl-filter__label [data-list-item].opened > a, .mdl-header__navigation .mdl-dropdown__title [data-list-item].opened > a, .mdl-header__navigation .mdl-input-list__label [data-list-item].opened > a, .atm-paragraph .mdl-header__navigation [data-list-item].opened > a, .mdl-plain-text-accordion__height-representation .mdl-header__navigation [data-list-item].opened > a, .mdl-plain-text-accordion__text .mdl-header__navigation [data-list-item].opened > a, .mdl-filter__label .mdl-header__navigation [data-list-item].opened > a, .mdl-dropdown__title .mdl-header__navigation [data-list-item].opened > a, .mdl-input-list__label .mdl-header__navigation [data-list-item].opened > a {
    color: #282625;
}
.mdl-header__navigation hr {
    margin: 0;
    background-color: #9D9F9D;
    height: 1px;
    border: 0;
}
@media all and (min-width: 48em) and (max-width: 99.99em) {
    .mdl-header__navigation {
        padding-left: 0.5555555556rem;
    }
    .mdl-header__navigation-main-item .atm-link--navigation {
        word-break: normal;
    }
}
.mdl-header-controls {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-self: flex-end;
    align-items: center;
}
.mdl-header__mygvb {
    align-items: center;
    height: 100%;
    padding: 0 0.5rem;
    justify-self: flex-end;
    display: flex;
    color: #767675;
    text-decoration: none;
}
.mdl-header__mygvb .atm-icon, .mdl-header__mygvb .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-header__mygvb a.atm-link--external > svg,
.mdl-header__mygvb .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-header__mygvb a.atm-link--external > svg,
.mdl-header__mygvb .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-header__mygvb a.atm-link--external > svg, .mdl-header__mygvb .mdl-richtext a[download] > svg, .mdl-richtext .mdl-header__mygvb a[download] > svg {
    margin-bottom: 0.3333333333rem;
    margin-left: 0.3333333333rem;
}
.mdl-header__mygvb .atm-icon use, .mdl-header__mygvb .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-header__mygvb a.atm-link--external > svg use,
.mdl-header__mygvb .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-header__mygvb a.atm-link--external > svg use,
.mdl-header__mygvb .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-header__mygvb a.atm-link--external > svg use, .mdl-header__mygvb .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-header__mygvb a[download] > svg use {
    fill: #767675;
}
.mdl-header__mygvb:hover {
    color: #282625;
}
.mdl-header__mygvb:hover .atm-icon use, .mdl-header__mygvb:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-header__mygvb:hover a.atm-link--external > svg use,
.mdl-header__mygvb:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-header__mygvb:hover a.atm-link--external > svg use,
.mdl-header__mygvb:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-header__mygvb:hover a.atm-link--external > svg use, .mdl-header__mygvb:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-header__mygvb:hover a[download] > svg use {
    fill: #282625;
}
.mdl-header__search {
    display: none;
}
.mdl-header__shop {
    display: flex;
}
.mdl-header__search, .mdl-header__shop {
    align-items: center;
    height: 100%;
    padding: 0 0.5rem;
    justify-self: flex-end;
}
.mdl-header__search .atm-icon use, .mdl-header__search .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-header__search a.atm-link--external > svg use,
.mdl-header__search .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-header__search a.atm-link--external > svg use,
.mdl-header__search .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-header__search a.atm-link--external > svg use, .mdl-header__search .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-header__search a[download] > svg use, .mdl-header__shop .atm-icon use, .mdl-header__shop .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-header__shop a.atm-link--external > svg use,
.mdl-header__shop .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-header__shop a.atm-link--external > svg use,
.mdl-header__shop .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-header__shop a.atm-link--external > svg use, .mdl-header__shop .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-header__shop a[download] > svg use {
    fill: #767675;
}
.mdl-header__search:hover .atm-icon use, .mdl-header__search:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-header__search:hover a.atm-link--external > svg use,
.mdl-header__search:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-header__search:hover a.atm-link--external > svg use,
.mdl-header__search:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-header__search:hover a.atm-link--external > svg use, .mdl-header__search:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-header__search:hover a[download] > svg use, .mdl-header__shop:hover .atm-icon use, .mdl-header__shop:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-header__shop:hover a.atm-link--external > svg use,
.mdl-header__shop:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-header__shop:hover a.atm-link--external > svg use,
.mdl-header__shop:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-header__shop:hover a.atm-link--external > svg use, .mdl-header__shop:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-header__shop:hover a[download] > svg use {
    fill: #282625;
}
@media all and (min-width: 48em) {
    .mdl-header__shop {
        display: flex;
        height: 3rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-header--sticky + main {
        margin-top: 3.5555555556rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-header {
        height: 4.1111111111rem;
    }
    .mdl-header__search, .mdl-header__shop {
        display: flex;
        padding: 0 0.5rem;
    }
    .mdl-header__navigation {
        display: flex;
    }
    .mdl-header .mdl-burger {
        display: none;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-header-controls > .mdl-language-selector {
        display: none;
    }
}
.mdl-header--red .mdl-header__navigation-main-item .atm-link--navigation-active {
    border-color: #A61711;
}
.mdl-header--show-hamburger-navigation .mdl-burger {
    display: block;
}
@media all and (min-width: 64em) {
    .mdl-header--show-hamburger-navigation .mdl-language-selector--offcanvas {
        padding: 1.4444444444rem 4rem;
    }
    .mdl-header--show-hamburger-navigation .mdl-language-selector--offcanvas .mdl-language-selector__list-item {
        padding: 0.8333333333rem 2.9444444444rem;
    }
}
.mdl-header--modern .mdl-header__logo {
    height: 1.6666666667rem;
}
.mdl-header--modern .mdl-header__search,
.mdl-header--modern .mdl-header__shop {
    display: flex;
    padding: 0 0.5rem;
}
.mdl-header--modern .mdl-header__search .atm-icon, .mdl-header--modern .mdl-header__search .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-header--modern .mdl-header__search a.atm-link--external > svg,
.mdl-header--modern .mdl-header__search .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-header--modern .mdl-header__search a.atm-link--external > svg,
.mdl-header--modern .mdl-header__search .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-header--modern .mdl-header__search a.atm-link--external > svg, .mdl-header--modern .mdl-header__search .mdl-richtext a[download] > svg, .mdl-richtext .mdl-header--modern .mdl-header__search a[download] > svg,
.mdl-header--modern .mdl-header__shop .atm-icon,
.mdl-header--modern .mdl-header__shop .mdl-richtext p a.atm-link--external > svg,
.mdl-richtext p .mdl-header--modern .mdl-header__shop a.atm-link--external > svg,
.mdl-header--modern .mdl-header__shop .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-header--modern .mdl-header__shop a.atm-link--external > svg,
.mdl-header--modern .mdl-header__shop .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-header--modern .mdl-header__shop a.atm-link--external > svg,
.mdl-header--modern .mdl-header__shop .mdl-richtext a[download] > svg,
.mdl-richtext .mdl-header--modern .mdl-header__shop a[download] > svg {
    height: 1.3333333333rem;
    width: 1.3333333333rem;
}
@media all and (min-width: 64em) {
    .mdl-header--modern {
        height: 4.1111111111rem;
    }
    .mdl-header--modern .mdl-header__logo {
        height: 1.6666666667rem;
    }
    .mdl-header--modern .mdl-header__search,
    .mdl-header--modern .mdl-header__shop {
        padding: 0 0.5rem;
    }
    .mdl-header--modern .mdl-header__search .atm-icon, .mdl-header--modern .mdl-header__search .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-header--modern .mdl-header__search a.atm-link--external > svg,
    .mdl-header--modern .mdl-header__search .mdl-richtext ul a.atm-link--external > svg,
    .mdl-richtext ul .mdl-header--modern .mdl-header__search a.atm-link--external > svg,
    .mdl-header--modern .mdl-header__search .mdl-richtext ol a.atm-link--external > svg,
    .mdl-richtext ol .mdl-header--modern .mdl-header__search a.atm-link--external > svg, .mdl-header--modern .mdl-header__search .mdl-richtext a[download] > svg, .mdl-richtext .mdl-header--modern .mdl-header__search a[download] > svg,
    .mdl-header--modern .mdl-header__shop .atm-icon,
    .mdl-header--modern .mdl-header__shop .mdl-richtext p a.atm-link--external > svg,
    .mdl-richtext p .mdl-header--modern .mdl-header__shop a.atm-link--external > svg,
    .mdl-header--modern .mdl-header__shop .mdl-richtext ul a.atm-link--external > svg,
    .mdl-richtext ul .mdl-header--modern .mdl-header__shop a.atm-link--external > svg,
    .mdl-header--modern .mdl-header__shop .mdl-richtext ol a.atm-link--external > svg,
    .mdl-richtext ol .mdl-header--modern .mdl-header__shop a.atm-link--external > svg,
    .mdl-header--modern .mdl-header__shop .mdl-richtext a[download] > svg,
    .mdl-richtext .mdl-header--modern .mdl-header__shop a[download] > svg {
        height: 1.3333333333rem;
        width: 1.3333333333rem;
    }
    .mdl-header--modern .mdl-profile_navigation {
        top: 4.1111111111rem;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-header--modern .mdl-burger {
        display: block;
    }
}
@media all and (min-width: 0em) {
    .mdl-header--semi .mdl-header__logo {
        height: 2.3333333333rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-header--semi .mdl-header__logo {
        height: 2.8888888889rem;
    }
}
.mdl-header--semi .mdl-header__search,
.mdl-header--semi .mdl-header__shop {
    display: flex;
}
.mdl-header--semi .mdl-header__search .atm-icon, .mdl-header--semi .mdl-header__search .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-header--semi .mdl-header__search a.atm-link--external > svg,
.mdl-header--semi .mdl-header__search .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-header--semi .mdl-header__search a.atm-link--external > svg,
.mdl-header--semi .mdl-header__search .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-header--semi .mdl-header__search a.atm-link--external > svg, .mdl-header--semi .mdl-header__search .mdl-richtext a[download] > svg, .mdl-richtext .mdl-header--semi .mdl-header__search a[download] > svg,
.mdl-header--semi .mdl-header__shop .atm-icon,
.mdl-header--semi .mdl-header__shop .mdl-richtext p a.atm-link--external > svg,
.mdl-richtext p .mdl-header--semi .mdl-header__shop a.atm-link--external > svg,
.mdl-header--semi .mdl-header__shop .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-header--semi .mdl-header__shop a.atm-link--external > svg,
.mdl-header--semi .mdl-header__shop .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-header--semi .mdl-header__shop a.atm-link--external > svg,
.mdl-header--semi .mdl-header__shop .mdl-richtext a[download] > svg,
.mdl-richtext .mdl-header--semi .mdl-header__shop a[download] > svg {
    height: 1.3333333333rem;
    width: 1.3333333333rem;
}
@media all and (min-width: 64em) {
    .mdl-header--semi {
        height: 4.1111111111rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-header--semi .mdl-header__search,
    .mdl-header--semi .mdl-header__shop {
        padding: 0 0.5rem;
    }
    .mdl-header--semi .mdl-profile_navigation {
        top: 4.1111111111rem;
    }
}
.mdl-header--show-hamburger .mdl-burger {
    display: block;
}
.mdl-header--show-hamburger .mdl-header__navigation {
    display: none;
}
.mdl-header--show-hamburger .mdl-header-controls > .mdl-language-selector {
    display: none;
}

.mdl-footer {
    margin-top: 1rem;
}
.mdl-footer__content .grid-row {
    margin-bottom: 0;
}
@media all and (max-width: 47.99em) {
    .mdl-footer__content .mdl-service-list__item {
        flex-basis: auto;
        margin-left: auto;
        margin-right: auto;
        max-width: unset;
    }
}
.mdl-footer__bottom {
    background: linear-gradient(to bottom right, #767675, #363331);
    display: flex;
    align-items: center;
    color: #FFF;
    padding-top: 2.1666666667rem;
    padding-bottom: 2.1666666667rem;
}
.mdl-footer__bottom-content {
    z-index: 1;
    display: flex;
    justify-content: space-between;
}
.mdl-footer__bottom-content .mdl-footer__links .atm-link, .mdl-footer__bottom-content .mdl-footer__links .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-footer__bottom-content .mdl-footer__links a, .mdl-footer__bottom-content .mdl-footer__links .context-ghi .atm-ghi-link, .context-ghi .mdl-footer__bottom-content .mdl-footer__links .atm-ghi-link, .mdl-footer__bottom-content .mdl-footer__links .mdl-promo-textteaser__description, .mdl-footer__bottom-content .mdl-footer__links .mdl-richtext a, .mdl-richtext .mdl-footer__bottom-content .mdl-footer__links a, .mdl-footer__bottom-content .mdl-footer__links .mdl-iconlist__link, .mdl-footer__bottom-content .mdl-footer__links .atm-paragraph a, .mdl-footer__bottom-content .mdl-footer__links .mdl-plain-text-accordion__height-representation a, .mdl-footer__bottom-content .mdl-footer__links .mdl-plain-text-accordion__text a, .mdl-footer__bottom-content .mdl-footer__links .mdl-filter__label a, .mdl-footer__bottom-content .mdl-footer__links .mdl-dropdown__title a, .mdl-footer__bottom-content .mdl-footer__links .mdl-input-list__label a, .atm-paragraph .mdl-footer__bottom-content .mdl-footer__links a, .mdl-plain-text-accordion__height-representation .mdl-footer__bottom-content .mdl-footer__links a, .mdl-plain-text-accordion__text .mdl-footer__bottom-content .mdl-footer__links a, .mdl-filter__label .mdl-footer__bottom-content .mdl-footer__links a, .mdl-dropdown__title .mdl-footer__bottom-content .mdl-footer__links a, .mdl-input-list__label .mdl-footer__bottom-content .mdl-footer__links a {
    background: none;
}
.mdl-footer__copyright {
    line-height: 1.5;
}
.mdl-footer__social-media {
    display: flex;
    gap: 0.3333333333rem;
}
.mdl-footer__social-media-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.mdl-footer__social-media-icon use {
    fill: #FFF;
}
.mdl-footer__social-media-icon svg:has(use#\#youtube):not(.atm-icon--xxsmall):not(.atm-icon--xsmall):not(.atm-icon--small):not(.atm-icon--medium):not(.atm-icon--large):not(.atm-icon--xxlarge):not(.atm-icon--xlarge) {
    height: 2.5rem;
    width: 2.5rem;
    min-height: 2.5rem;
    min-width: 2.5rem;
}
.mdl-footer__social-media-icon svg:has(use#\#instagram):not(.atm-icon--xxsmall):not(.atm-icon--xsmall):not(.atm-icon--small):not(.atm-icon--medium):not(.atm-icon--large):not(.atm-icon--xxlarge):not(.atm-icon--xlarge) {
    height: 2.5rem;
    width: 2.5rem;
    min-height: 2.5rem;
    min-width: 2.5rem;
}
.mdl-footer__social-media-icon svg:has(use#\#tiktok):not(.atm-icon--xxsmall):not(.atm-icon--xsmall):not(.atm-icon--small):not(.atm-icon--medium):not(.atm-icon--large):not(.atm-icon--xxlarge):not(.atm-icon--xlarge) {
    height: 2.5rem;
    width: 2.5rem;
    min-height: 2.5rem;
    min-width: 2.5rem;
}
@media all and (max-width: 63.99em) {
    .mdl-footer__bottom-content {
        flex-wrap: wrap;
    }
    .mdl-footer__left {
        order: 2;
    }
    .mdl-footer__social-media {
        margin-top: 0.5rem;
    }
    .mdl-footer__links {
        width: 100%;
        margin-bottom: 2.1666666667rem;
    }
}
@media all and (max-width: 99.99em) {
    .mdl-footer {
        margin-top: 2.1666666667rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-footer {
        padding-bottom: 0 !important;
    }
    .mdl-footer__bottom {
        height: 12.7777777778rem;
    }
    .mdl-footer__copyright {
        line-height: 2;
    }
}

.mdl-card_list {
    margin-bottom: 2.1666666667rem;
    width: 100%;
}
.mdl-card_list .mdl-card_list__heading {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-card_list .mdl-card_list__heading {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-card_list .mdl-card_list__heading {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-card_list .mdl-card_list__heading {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-card_list .mdl-card_list__heading {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-card_list .mdl-card_list__heading {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-card_list .mdl-card_list__heading {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-card_list .mdl-card_list__heading {
        margin-left: 17.994100295%;
    }
}
.mdl-card_list .mdl-card_list__list {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-card_list .mdl-card_list__list {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-card_list .mdl-card_list__list {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-card_list .mdl-card_list__list {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 96.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-card_list .mdl-card_list__list {
        flex-basis: 69.3215339233%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 69.3215339233%;
    }
}
@media all and (min-width: 100em) {
    .mdl-card_list .mdl-card_list__list {
        margin-left: 15.3392330383%;
    }
}
.mdl-card_list__heading {
    font-size: calc(27 * 1px);
    line-height: 1.4;
    margin-bottom: 1.6666666667rem;
    margin-top: 0;
    font-weight: 400;
}
@media (min-width: 0px) {
    .mdl-card_list__heading {
        font-size: calc(0.1302083333vw + 27px);
    }
}
@media (min-width: 768px) {
    .mdl-card_list__heading {
        font-size: calc(28 * 1px);
    }
}
@media all and (min-width: 48em) {
    .mdl-card_list__heading {
        line-height: 1.3;
    }
}
@media all and (min-width: 48em) {
    .mdl-card_list__heading {
        margin-bottom: 2.1666666667rem;
    }
}
.mdl-card_list__item {
    padding: 1rem 1rem 2.7222222222rem;
    margin-bottom: 2.1666666667rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 30px 0 rgba(54, 51, 49, 0.15);
    cursor: pointer;
}
@media all and (min-width: 48em) {
    .mdl-card_list__item {
        padding: 0.8333333333rem 1rem 1.2777777778rem 6%;
    }
}
@media all and (min-width: 64em) {
    .mdl-card_list__item {
        padding: 0.3333333333rem 3.7%;
    }
}
@media all and (min-width: 100em) {
    .mdl-card_list__item {
        margin-bottom: 1rem;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-card_list__item {
        flex-wrap: wrap;
    }
}
.mdl-card_list__item .atm-icon, .mdl-card_list__item .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-card_list__item a.atm-link--external > svg,
.mdl-card_list__item .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-card_list__item a.atm-link--external > svg,
.mdl-card_list__item .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-card_list__item a.atm-link--external > svg, .mdl-card_list__item .mdl-richtext a[download] > svg, .mdl-richtext .mdl-card_list__item a[download] > svg {
    height: 1.6666666667rem;
    width: 1.6666666667rem;
}
@media all and (min-width: 48em) {
    .mdl-card_list__item .atm-icon, .mdl-card_list__item .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-card_list__item a.atm-link--external > svg,
    .mdl-card_list__item .mdl-richtext ul a.atm-link--external > svg,
    .mdl-richtext ul .mdl-card_list__item a.atm-link--external > svg,
    .mdl-card_list__item .mdl-richtext ol a.atm-link--external > svg,
    .mdl-richtext ol .mdl-card_list__item a.atm-link--external > svg, .mdl-card_list__item .mdl-richtext a[download] > svg, .mdl-richtext .mdl-card_list__item a[download] > svg {
        height: 2.2222222222rem;
        width: 2.2222222222rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-card_list__item .atm-icon, .mdl-card_list__item .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-card_list__item a.atm-link--external > svg,
    .mdl-card_list__item .mdl-richtext ul a.atm-link--external > svg,
    .mdl-richtext ul .mdl-card_list__item a.atm-link--external > svg,
    .mdl-card_list__item .mdl-richtext ol a.atm-link--external > svg,
    .mdl-richtext ol .mdl-card_list__item a.atm-link--external > svg, .mdl-card_list__item .mdl-richtext a[download] > svg, .mdl-richtext .mdl-card_list__item a[download] > svg {
        height: 3.3333333333rem;
        width: 3.3333333333rem;
    }
}
.mdl-card_list__item .atm-icon use, .mdl-card_list__item .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-card_list__item a.atm-link--external > svg use,
.mdl-card_list__item .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-card_list__item a.atm-link--external > svg use,
.mdl-card_list__item .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-card_list__item a.atm-link--external > svg use, .mdl-card_list__item .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-card_list__item a[download] > svg use {
    transition: fill 0.2s ease-in-out;
    fill: var(--primary-color);
}
.mdl-card_list__item-heading {
    margin: 0;
    margin-bottom: 0.3888888889rem;
    min-width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    font-family: "Frutiger LT W01_45 Light", Frutiger, sans-serif;
    font-size: 1.3333333333rem;
    line-height: 2;
}
@media all and (min-width: 48em) {
    .mdl-card_list__item-heading {
        margin-bottom: 0.7777777778rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-card_list__item-heading {
        margin-bottom: 0rem;
    }
}
@media all and (min-width: 48em) {
    .mdl-card_list__item-heading {
        min-width: calc(100% - calc(40 * 1px));
    }
}
@media all and (min-width: 64em) {
    .mdl-card_list__item-heading {
        min-width: 26%;
    }
}
@media all and (min-width: 48em) {
    .mdl-card_list__item-heading {
        max-width: calc(100% - calc(40 * 1px));
    }
}
@media all and (min-width: 64em) {
    .mdl-card_list__item-heading {
        max-width: 26%;
    }
}
@media all and (min-width: 64em) {
    .mdl-card_list__item-heading {
        padding-right: 4.1%;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-card_list__item-heading {
        font-size: 1.2222222222rem;
        order: 1;
        min-width: unset;
        max-width: unset;
    }
}
.mdl-card_list__item-description {
    min-width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    margin: 0;
    line-height: 1.7;
}
@media all and (min-width: 48em) {
    .mdl-card_list__item-description {
        min-width: calc(100% - calc(40 * 1px));
    }
}
@media all and (min-width: 64em) {
    .mdl-card_list__item-description {
        min-width: 69.5%;
    }
}
@media all and (min-width: 100em) {
    .mdl-card_list__item-description {
        min-width: 66.5%;
    }
}
@media all and (min-width: 48em) {
    .mdl-card_list__item-description {
        max-width: calc(100% - calc(40 * 1px));
    }
}
@media all and (min-width: 64em) {
    .mdl-card_list__item-description {
        max-width: 69.5%;
    }
}
@media all and (min-width: 100em) {
    .mdl-card_list__item-description {
        max-width: 66.5%;
    }
}
@media all and (min-width: 64em) {
    .mdl-card_list__item-description {
        padding-right: 4.1%;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-card_list__item-description {
        order: 3;
    }
}
.mdl-card_list__item-icon {
    display: flex;
    justify-content: center;
    align-self: flex-start;
}
@media all and (max-width: 63.99em) {
    .mdl-card_list__item-icon {
        order: 2;
    }
}
.mdl-card_list__item:hover .atm-icon use, .mdl-card_list__item:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-card_list__item:hover a.atm-link--external > svg use,
.mdl-card_list__item:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-card_list__item:hover a.atm-link--external > svg use,
.mdl-card_list__item:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-card_list__item:hover a.atm-link--external > svg use, .mdl-card_list__item:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-card_list__item:hover a[download] > svg use, .mdl-card_list__item:focus .atm-icon use, .mdl-card_list__item:focus .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-card_list__item:focus a.atm-link--external > svg use,
.mdl-card_list__item:focus .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-card_list__item:focus a.atm-link--external > svg use,
.mdl-card_list__item:focus .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-card_list__item:focus a.atm-link--external > svg use, .mdl-card_list__item:focus .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-card_list__item:focus a[download] > svg use {
    fill: var(--primary-color-darken-1);
}

.atm-form_input--wide {
    width: 100%;
}
@media all and (min-width: 48em) {
    .atm-form_input--wide {
        width: 78%;
    }
}
@media all and (min-width: 64em) {
    .atm-form_input--wide {
        width: 100%;
    }
}
@media all and (min-width: 100em) {
    .atm-form_input--wide {
        width: 74.358974359%;
    }
}
.atm-form_input--medium {
    width: 100%;
}
@media all and (min-width: 48em) {
    .atm-form_input--medium {
        width: 78%;
    }
}
@media all and (min-width: 64em) {
    .atm-form_input--medium {
        width: 74.358974359%;
    }
}
@media all and (min-width: 100em) {
    .atm-form_input--medium {
        width: 47.5%;
    }
}
.atm-form_input--narrow {
    width: 65.5172413793%;
}
@media all and (min-width: 48em) {
    .atm-form_input--narrow {
        width: 58%;
    }
}
@media all and (min-width: 64em) {
    .atm-form_input--narrow {
        width: 48.7179487179%;
    }
}
@media all and (min-width: 100em) {
    .atm-form_input--narrow {
        width: 35.8974358974%;
    }
}
.atm-form_input--small {
    width: 65.5172413793%;
}
@media all and (min-width: 48em) {
    .atm-form_input--small {
        width: 28.5714285714%;
    }
}
@media all and (min-width: 64em) {
    .atm-form_input--small {
        width: 35.8974358974%;
    }
}
@media all and (min-width: 100em) {
    .atm-form_input--small {
        width: 20.2898550725%;
    }
}
.atm-form_input--hidden {
    display: none;
}
.atm-form_input-container {
    position: relative;
    display: flex;
    flex-direction: row;
    border-radius: 5px;
    border: calc(2 * 1px) solid #9D9F9D;
    background: #FFF;
}
.atm-form_input-container:hover, .focus .atm-form_input-container {
    outline: none;
    border-color: #767675;
}
.disabled .atm-form_input-container {
    outline: none;
    border-color: rgba(157, 159, 157, 0.4);
    background: rgba(241, 241, 241, 0.4);
}
.invalid .atm-form_input-container {
    border-color: #EE000C;
}
.atm-form_input__input {
    transition: border-color 0.2s ease-in-out;
    display: block;
    height: 4rem;
    width: 100%;
    color: #282625;
    padding: 1.5555555556rem 1.5555555556rem 0 1.5555555556rem;
    border: none;
    background: transparent;
}
.atm-form_input__input:focus, .atm-form_input__input:hover, .atm-form_input__input:disabled, .atm-form_input__input[readonly] {
    outline: none;
    border: none;
}
.atm-form_input__input:not(.flatpickr-input):-ms-input-placeholder {
    color: transparent !important;
}
.atm-form_input__input:not(.flatpickr-input)::placeholder {
    color: transparent;
}
.atm-form_input__input.flatpickr-input:-ms-input-placeholder {
    color: #282625 !important;
}
.atm-form_input__input.flatpickr-input::placeholder {
    color: #282625;
}
.atm-form_input__input::-webkit-inner-spin-button, .atm-form_input__input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}
.atm-form_input__input::-webkit-calendar-picker-indicator {
    display: none;
}
.atm-form_input__input::-ms-clear {
    display: none;
}
.atm-form_input__input[type=number] {
    -moz-appearance: textfield;
}
.atm-form_input__input.flatpickr-mobile {
    display: flex;
}
.atm-form_input__label {
    position: absolute;
    left: 1.5555555556rem;
    top: 2rem;
    transform: translateY(-50%);
    color: #767675;
    pointer-events: none;
    width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.atm-form_input.dirty .atm-form_input__label {
    animation: floatingLabelActive 0.2s forwards;
}
@keyframes floatingLabelActive {
    10% {
        opacity: 0;
        font-size: 0.7222222222rem;
    }
    50% {
        transform: translateY(0);
    }
    75% {
        opacity: 1;
    }
    100% {
        top: 0.7222222222rem;
        font-size: 0.7222222222rem;
        transform: translateY(0);
        opacity: 1;
    }
}
.atm-form_input__input:focus + .atm-form_input__label, .atm-form_input--prefixed .atm-form_input__label, .atm-form_input--suffixed .atm-form_input__label, .atm-form_input__input.flatpickr-input + .atm-form_input__label {
    animation: floatingLabelActive 0.2s forwards;
}
@keyframes floatingLabelActive {
    10% {
        opacity: 0;
        font-size: 0.7222222222rem;
    }
    50% {
        transform: translateY(0);
    }
    75% {
        opacity: 1;
    }
    100% {
        top: 0.7222222222rem;
        font-size: 0.7222222222rem;
        transform: translateY(0);
        opacity: 1;
    }
}
.atm-form_input__prefix {
    display: block;
    padding-top: 1.5555555556rem;
    padding-left: 1.5555555556rem;
    line-height: 2.5;
    pointer-events: none;
}
.atm-form_input__suffix {
    display: block;
    padding-right: 1.5555555556rem;
    padding-top: 1.5555555556rem;
    line-height: 2.5;
    pointer-events: none;
    order: 2;
}
.atm-form_input__message, .mdl-hcaptcha__message {
    color: #EE000C;
    font-size: 0.8333333333rem;
    padding-left: 1.5555555556rem;
    line-height: 1.3;
    margin-top: 0.5rem;
    transform: translateY(-40%);
    display: none;
}
.atm-form_input__message--visible {
    display: block;
    animation: showErrorMessage 0.2s forwards;
}
.atm-form_input--info .atm-infotext, .atm-form_input--info .mdl-infotext, .atm-form_input--suffixed .atm-infotext, .atm-form_input--suffixed .mdl-infotext {
    align-self: center;
    margin-right: 1.5555555556rem;
    order: 3;
}
.atm-form_input--info .atm-infotext svg use, .atm-form_input--info .mdl-infotext svg use, .atm-form_input--suffixed .atm-infotext svg use, .atm-form_input--suffixed .mdl-infotext svg use {
    fill: #767675;
}
.atm-form_input--info .atm-infotext:hover use, .atm-form_input--info .mdl-infotext:hover use, .atm-form_input--suffixed .atm-infotext:hover use, .atm-form_input--suffixed .mdl-infotext:hover use {
    fill: #A61711;
}
.atm-form_input .atm-infotext, .atm-form_input .mdl-infotext {
    margin-right: 1.5555555556rem;
}
.atm-form_input .atm-infotext .atm-icon, .atm-form_input .mdl-infotext .atm-icon, .atm-form_input .atm-infotext .mdl-richtext p a.atm-link--external > svg, .atm-form_input .mdl-infotext .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-form_input .atm-infotext a.atm-link--external > svg, .mdl-richtext p .atm-form_input .mdl-infotext a.atm-link--external > svg,
.atm-form_input .atm-infotext .mdl-richtext ul a.atm-link--external > svg,
.atm-form_input .mdl-infotext .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-form_input .atm-infotext a.atm-link--external > svg,
.mdl-richtext ul .atm-form_input .mdl-infotext a.atm-link--external > svg,
.atm-form_input .atm-infotext .mdl-richtext ol a.atm-link--external > svg,
.atm-form_input .mdl-infotext .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-form_input .atm-infotext a.atm-link--external > svg,
.mdl-richtext ol .atm-form_input .mdl-infotext a.atm-link--external > svg, .atm-form_input .atm-infotext .mdl-richtext a[download] > svg, .atm-form_input .mdl-infotext .mdl-richtext a[download] > svg, .mdl-richtext .atm-form_input .atm-infotext a[download] > svg, .mdl-richtext .atm-form_input .mdl-infotext a[download] > svg {
    margin-right: 0;
}
.atm-form_input .atm-icon use, .atm-form_input .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-form_input a.atm-link--external > svg use,
.atm-form_input .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-form_input a.atm-link--external > svg use,
.atm-form_input .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-form_input a.atm-link--external > svg use, .atm-form_input .mdl-richtext a[download] > svg use, .mdl-richtext .atm-form_input a[download] > svg use {
    transition: fill 0.2s ease-in-out;
    fill: #767675;
}
.atm-form_input .atm-icon:hover use, .atm-form_input .mdl-richtext p a.atm-link--external > svg:hover use, .mdl-richtext p .atm-form_input a.atm-link--external > svg:hover use,
.atm-form_input .mdl-richtext ul a.atm-link--external > svg:hover use,
.mdl-richtext ul .atm-form_input a.atm-link--external > svg:hover use,
.atm-form_input .mdl-richtext ol a.atm-link--external > svg:hover use,
.mdl-richtext ol .atm-form_input a.atm-link--external > svg:hover use, .atm-form_input .mdl-richtext a[download] > svg:hover use, .mdl-richtext .atm-form_input a[download] > svg:hover use {
    fill: #A61711;
}
.atm-form_input .atm-icon--input {
    align-self: center;
    margin-right: 1.5555555556rem;
    order: 2;
}
.atm-form_input--search .atm-icon, .atm-form_input--search .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-form_input--search a.atm-link--external > svg,
.atm-form_input--search .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-form_input--search a.atm-link--external > svg,
.atm-form_input--search .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-form_input--search a.atm-link--external > svg, .atm-form_input--search .mdl-richtext a[download] > svg, .mdl-richtext .atm-form_input--search a[download] > svg {
    cursor: pointer;
    right: 0;
    top: 0;
    transform: none;
    width: 5.5555555556rem;
    height: 100%;
    max-height: 4rem;
    border-radius: 0 5px 5px 0;
    padding: 0.5555555556rem;
    margin-right: 0;
}
.atm-form_input--search .atm-icon:hover, .atm-form_input--search .mdl-richtext p a.atm-link--external > svg:hover, .mdl-richtext p .atm-form_input--search a.atm-link--external > svg:hover,
.atm-form_input--search .mdl-richtext ul a.atm-link--external > svg:hover,
.mdl-richtext ul .atm-form_input--search a.atm-link--external > svg:hover,
.atm-form_input--search .mdl-richtext ol a.atm-link--external > svg:hover,
.mdl-richtext ol .atm-form_input--search a.atm-link--external > svg:hover, .atm-form_input--search .mdl-richtext a[download] > svg:hover, .mdl-richtext .atm-form_input--search a[download] > svg:hover {
    background: #A61711;
}
.atm-form_input--search .atm-icon:hover use, .atm-form_input--search .mdl-richtext p a.atm-link--external > svg:hover use, .mdl-richtext p .atm-form_input--search a.atm-link--external > svg:hover use,
.atm-form_input--search .mdl-richtext ul a.atm-link--external > svg:hover use,
.mdl-richtext ul .atm-form_input--search a.atm-link--external > svg:hover use,
.atm-form_input--search .mdl-richtext ol a.atm-link--external > svg:hover use,
.mdl-richtext ol .atm-form_input--search a.atm-link--external > svg:hover use, .atm-form_input--search .mdl-richtext a[download] > svg:hover use, .mdl-richtext .atm-form_input--search a[download] > svg:hover use {
    fill: #FFF;
}
.atm-form_input--search.focus .atm-icon, .atm-form_input--search.focus .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-form_input--search.focus a.atm-link--external > svg,
.atm-form_input--search.focus .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-form_input--search.focus a.atm-link--external > svg,
.atm-form_input--search.focus .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-form_input--search.focus a.atm-link--external > svg, .atm-form_input--search.focus .mdl-richtext a[download] > svg, .mdl-richtext .atm-form_input--search.focus a[download] > svg {
    background: #A61711;
}
.atm-form_input--search.focus .atm-icon use, .atm-form_input--search.focus .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-form_input--search.focus a.atm-link--external > svg use,
.atm-form_input--search.focus .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-form_input--search.focus a.atm-link--external > svg use,
.atm-form_input--search.focus .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-form_input--search.focus a.atm-link--external > svg use, .atm-form_input--search.focus .mdl-richtext a[download] > svg use, .mdl-richtext .atm-form_input--search.focus a[download] > svg use {
    fill: #FFF;
}
.atm-form_input__additional-label {
    display: block;
    padding-left: 1.5555555556rem;
    margin-top: 0.6666666667rem;
    font-size: 0.8333333333rem;
    line-height: 1.3;
}
.atm-form_input__additional-label a {
    color: #282625;
    text-decoration: none;
}

@keyframes showErrorMessage {
    0% {
        transform: translateY(-40%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.atm-form_textarea {
    position: relative;
}
.atm-form_textarea--wide {
    width: 100%;
}
@media all and (min-width: 48em) {
    .atm-form_textarea--wide {
        width: 78%;
    }
}
@media all and (min-width: 64em) {
    .atm-form_textarea--wide {
        width: 100%;
    }
}
@media all and (min-width: 100em) {
    .atm-form_textarea--wide {
        width: 74.358974359%;
    }
}
.atm-form_textarea--medium {
    width: 100%;
}
@media all and (min-width: 48em) {
    .atm-form_textarea--medium {
        width: 78%;
    }
}
@media all and (min-width: 64em) {
    .atm-form_textarea--medium {
        width: 74.358974359%;
    }
}
@media all and (min-width: 100em) {
    .atm-form_textarea--medium {
        width: 47.5%;
    }
}
.atm-form_textarea--narrow {
    width: 65.5172413793%;
}
@media all and (min-width: 48em) {
    .atm-form_textarea--narrow {
        width: 58%;
    }
}
@media all and (min-width: 64em) {
    .atm-form_textarea--narrow {
        width: 48.7179487179%;
    }
}
@media all and (min-width: 100em) {
    .atm-form_textarea--narrow {
        width: 35.8974358974%;
    }
}
.atm-form_textarea--small {
    width: 65.5172413793%;
}
@media all and (min-width: 48em) {
    .atm-form_textarea--small {
        width: 28.5714285714%;
    }
}
@media all and (min-width: 64em) {
    .atm-form_textarea--small {
        width: 35.8974358974%;
    }
}
@media all and (min-width: 100em) {
    .atm-form_textarea--small {
        width: 20.2898550725%;
    }
}
.atm-form_textarea__textarea {
    display: block;
    width: 100%;
    border-radius: 0.2777777778rem;
    border: 1.5px solid #9D9F9D;
    resize: vertical;
    color: #282625;
    padding: 1.5555555556rem 1.5555555556rem 0 1.5555555556rem;
    transition: border-color 0.2s ease-in-out;
}
.atm-form_textarea__textarea:focus, .atm-form_textarea__textarea:hover {
    outline: none;
    border-color: #767675;
}
.atm-form_textarea__textarea:disabled {
    border-color: rgba(157, 159, 157, 0.4);
}
.atm-form_textarea__label {
    color: #767675;
    margin-bottom: 1rem;
    display: flex;
}
.atm-form_textarea .atm-infotext, .atm-form_textarea .mdl-infotext {
    margin-left: 0.5rem;
}
.atm-form_textarea.invalid .atm-form_textarea__label {
    color: #EE000C;
}
.atm-form_textarea.invalid .atm-form_textarea__textarea {
    border-color: #EE000C;
}

.mdl-quote {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    font-size: calc(24 * 1px);
    margin-top: 0;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-quote {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-quote {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 47.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-quote {
        flex-basis: 46.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 46.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-quote {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 47.3451327434%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-quote {
        margin-left: 26.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-quote {
        margin-left: 26.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-quote {
        margin-left: 26.3274336283%;
    }
}
@media (min-width: 0px) {
    .mdl-quote {
        font-size: calc(0.390625vw + 24px);
    }
}
@media (min-width: 1024px) {
    .mdl-quote {
        font-size: calc(28 * 1px);
    }
}
@media all and (min-width: 0em) {
    .mdl-quote {
        margin-bottom: 1.2777777778rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-quote {
        margin-bottom: 3.2222222222rem;
    }
}
.mdl-quote p {
    margin: 0;
}
.mdl-quote p:first-of-type:before {
    content: "«";
}
.mdl-quote p:last-of-type:after {
    content: "»";
}
.mdl-quote cite {
    font-style: normal;
}
.mdl-quote__reference {
    margin-top: 0.5rem;
    font-size: 0.8333333333rem;
}

.mdl-media {
    margin: 0 0 2.1666666667rem 0;
}
.mdl-media .atm-image,
.mdl-media .atm-video {
    display: block;
    margin-bottom: 0.5rem;
}
.mdl-media .atm-figcaption {
    margin-bottom: 1rem;
}
.mdl-media__content .mdl-richtext {
    margin-bottom: 4rem;
}
.mdl-media--fluid .mdl-media__content {
    justify-content: center;
}
@media all and (min-width: 64em) {
    .mdl-media--fluid .mdl-media__content .atm-image {
        object-fit: scale-down;
    }
}
:not([class^=mdl]) .mdl-media {
    display: flex;
    margin-block-end: 0;
}
:not([class^=mdl]) .mdl-media .mdl-media__content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
}
:not([class^=mdl]) .mdl-media:not(.mdl-media--wide, .mdl-media--portrait, .mdl-media--video, .mdl-media--fluid) .mdl-media__content {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    :not([class^=mdl]) .mdl-media:not(.mdl-media--wide, .mdl-media--portrait, .mdl-media--video, .mdl-media--fluid) .mdl-media__content {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-media:not(.mdl-media--wide, .mdl-media--portrait, .mdl-media--video, .mdl-media--fluid) .mdl-media__content {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    :not([class^=mdl]) .mdl-media:not(.mdl-media--wide, .mdl-media--portrait, .mdl-media--video, .mdl-media--fluid) .mdl-media__content {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    :not([class^=mdl]) .mdl-media:not(.mdl-media--wide, .mdl-media--portrait, .mdl-media--video, .mdl-media--fluid) .mdl-media__content {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-media:not(.mdl-media--wide, .mdl-media--portrait, .mdl-media--video, .mdl-media--fluid) .mdl-media__content {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    :not([class^=mdl]) .mdl-media:not(.mdl-media--wide, .mdl-media--portrait, .mdl-media--video, .mdl-media--fluid) .mdl-media__content {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    :not([class^=mdl]) .mdl-media:not(.mdl-media--wide, .mdl-media--portrait, .mdl-media--video, .mdl-media--fluid) .mdl-media__content {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] :not([class^=mdl]) .mdl-media:not(.mdl-media--wide, .mdl-media--portrait, .mdl-media--video, .mdl-media--fluid) .mdl-media__content {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
:not([class^=mdl]) .mdl-media--wide .mdl-media__content {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    :not([class^=mdl]) .mdl-media--wide .mdl-media__content {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-media--wide .mdl-media__content {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    :not([class^=mdl]) .mdl-media--wide .mdl-media__content {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    :not([class^=mdl]) .mdl-media--wide .mdl-media__content {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
:not([class^=mdl]) .mdl-media--wide .mdl-media__figcaption {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    :not([class^=mdl]) .mdl-media--wide .mdl-media__figcaption {
        flex-basis: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-media--wide .mdl-media__figcaption {
        flex-basis: 80.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    :not([class^=mdl]) .mdl-media--wide .mdl-media__figcaption {
        flex-basis: 66.6666666667%;
    }
}
@media all and (min-width: 100em) {
    :not([class^=mdl]) .mdl-media--wide .mdl-media__figcaption {
        flex-basis: 97.3451327434%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-media--wide .mdl-media__figcaption {
        margin-left: 6.853321127%;
    }
}
:not([class^=mdl]) .mdl-media--portrait .mdl-media__content {
    margin: auto;
}
:not([class^=mdl]) .mdl-media--video .mdl-media__content {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    :not([class^=mdl]) .mdl-media--video .mdl-media__content {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-media--video .mdl-media__content {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    :not([class^=mdl]) .mdl-media--video .mdl-media__content {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    :not([class^=mdl]) .mdl-media--video .mdl-media__content {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-media--video .mdl-media__content {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    :not([class^=mdl]) .mdl-media--video .mdl-media__content {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    :not([class^=mdl]) .mdl-media--video .mdl-media__content {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] :not([class^=mdl]) .mdl-media--video .mdl-media__content {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.mdl-linklist {
    /** SPECIAL STYLES USED FOR WHEN USED IN STAGE */
    /* FULL WIDTH VARIANT
    */
}
.mdl-linklist-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.mdl-linklist--meta .mdl-linklist-wrapper {
    align-items: flex-start;
}
.mdl-linklist--meta {
    justify-content: space-evenly;
}
.mdl-linklist--meta .mdl-linklist__item:last-child {
    margin-right: 0;
}
.mdl-linklist--meta .atm-link, .mdl-linklist--meta .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-linklist--meta a, .mdl-linklist--meta .context-ghi .atm-ghi-link, .context-ghi .mdl-linklist--meta .atm-ghi-link, .mdl-linklist--meta .mdl-promo-textteaser__description, .mdl-linklist--meta .mdl-richtext p a[download], .mdl-richtext p .mdl-linklist--meta a[download],
.mdl-linklist--meta .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-linklist--meta a[download],
.mdl-linklist--meta .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-linklist--meta a[download], .mdl-linklist--meta .mdl-richtext a, .mdl-richtext .mdl-linklist--meta a, .mdl-linklist--meta .mdl-iconlist__link, .mdl-linklist--meta .atm-paragraph a, .mdl-linklist--meta .mdl-plain-text-accordion__height-representation a, .mdl-linklist--meta .mdl-plain-text-accordion__text a, .mdl-linklist--meta .mdl-filter__label a, .mdl-linklist--meta .mdl-dropdown__title a, .mdl-linklist--meta .mdl-input-list__label a, .atm-paragraph .mdl-linklist--meta a, .mdl-plain-text-accordion__height-representation .mdl-linklist--meta a, .mdl-plain-text-accordion__text .mdl-linklist--meta a, .mdl-filter__label .mdl-linklist--meta a, .mdl-dropdown__title .mdl-linklist--meta a, .mdl-input-list__label .mdl-linklist--meta a {
    display: block;
    padding: 0.5rem 0.25rem 0.3333333333rem;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.mdl-linklist--meta .atm-link:hover, .mdl-linklist--meta .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-linklist--meta a:hover, .mdl-linklist--meta .context-ghi .atm-ghi-link:hover, .context-ghi .mdl-linklist--meta .atm-ghi-link:hover, .mdl-linklist--meta .mdl-promo-textteaser__description:hover, .mdl-linklist--meta .mdl-richtext a:hover, .mdl-richtext .mdl-linklist--meta a:hover, .mdl-linklist--meta .mdl-iconlist__link:hover, .mdl-linklist--meta .atm-paragraph a:hover, .mdl-linklist--meta .mdl-plain-text-accordion__height-representation a:hover, .mdl-linklist--meta .mdl-plain-text-accordion__text a:hover, .mdl-linklist--meta .mdl-filter__label a:hover, .mdl-linklist--meta .mdl-dropdown__title a:hover, .mdl-linklist--meta .mdl-input-list__label a:hover, .atm-paragraph .mdl-linklist--meta a:hover, .mdl-plain-text-accordion__height-representation .mdl-linklist--meta a:hover, .mdl-plain-text-accordion__text .mdl-linklist--meta a:hover, .mdl-filter__label .mdl-linklist--meta a:hover, .mdl-dropdown__title .mdl-linklist--meta a:hover, .mdl-input-list__label .mdl-linklist--meta a:hover {
    border-bottom: 1px solid #FF8F18;
    color: #FFF;
}
.mdl-linklist__item {
    margin-bottom: 1rem;
}
.mdl-linklist__item .atm-link, .mdl-linklist__item .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-linklist__item a, .mdl-linklist__item .context-ghi .atm-ghi-link, .context-ghi .mdl-linklist__item .atm-ghi-link, .mdl-linklist__item .mdl-promo-textteaser__description, .mdl-linklist__item .mdl-richtext p a[download], .mdl-richtext p .mdl-linklist__item a[download],
.mdl-linklist__item .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-linklist__item a[download],
.mdl-linklist__item .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-linklist__item a[download], .mdl-linklist__item .mdl-richtext a, .mdl-richtext .mdl-linklist__item a, .mdl-linklist__item .mdl-iconlist__link, .mdl-linklist__item .atm-paragraph a, .mdl-linklist__item .mdl-plain-text-accordion__height-representation a, .mdl-linklist__item .mdl-plain-text-accordion__text a, .mdl-linklist__item .mdl-filter__label a, .mdl-linklist__item .mdl-dropdown__title a, .mdl-linklist__item .mdl-input-list__label a, .atm-paragraph .mdl-linklist__item a, .mdl-plain-text-accordion__height-representation .mdl-linklist__item a, .mdl-plain-text-accordion__text .mdl-linklist__item a, .mdl-filter__label .mdl-linklist__item a, .mdl-dropdown__title .mdl-linklist__item a, .mdl-input-list__label .mdl-linklist__item a {
    width: 100%;
}
.mdl-linklist__item .atm-link:not(.atm-link--external).atm-icon, .mdl-linklist__item .context-ghi .mdl-ghi_pdf_download_form-intro a:not(.atm-link--external).atm-icon, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-linklist__item a:not(.atm-link--external).atm-icon, .mdl-linklist__item .context-ghi .atm-ghi-link:not(.atm-link--external).atm-icon, .context-ghi .mdl-linklist__item .atm-ghi-link:not(.atm-link--external).atm-icon, .mdl-linklist__item .mdl-promo-textteaser__description:not(.atm-link--external).atm-icon, .mdl-linklist__item .mdl-richtext p a.atm-link--external > svg.atm-link:not(.atm-link--external), .mdl-linklist__item .mdl-richtext p .context-ghi a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external), .context-ghi .mdl-linklist__item .mdl-richtext p a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external), .mdl-linklist__item .mdl-richtext p a.atm-link--external > svg.mdl-promo-textteaser__description:not(.atm-link--external), .mdl-richtext p .mdl-linklist__item a.atm-link--external > svg.atm-link:not(.atm-link--external), .mdl-richtext p .mdl-linklist__item .context-ghi a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external), .context-ghi .mdl-richtext p .mdl-linklist__item a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external), .mdl-richtext p .mdl-linklist__item a.atm-link--external > svg.mdl-promo-textteaser__description:not(.atm-link--external),
.mdl-linklist__item .mdl-richtext ul a.atm-link--external > svg.atm-link:not(.atm-link--external),
.mdl-linklist__item .mdl-richtext ul .context-ghi a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external),
.context-ghi .mdl-linklist__item .mdl-richtext ul a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external),
.mdl-linklist__item .mdl-richtext ul a.atm-link--external > svg.mdl-promo-textteaser__description:not(.atm-link--external),
.mdl-richtext ul .mdl-linklist__item a.atm-link--external > svg.atm-link:not(.atm-link--external),
.mdl-richtext ul .mdl-linklist__item .context-ghi a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external),
.context-ghi .mdl-richtext ul .mdl-linklist__item a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external),
.mdl-richtext ul .mdl-linklist__item a.atm-link--external > svg.mdl-promo-textteaser__description:not(.atm-link--external),
.mdl-linklist__item .mdl-richtext ol a.atm-link--external > svg.atm-link:not(.atm-link--external),
.mdl-linklist__item .mdl-richtext ol .context-ghi a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external),
.context-ghi .mdl-linklist__item .mdl-richtext ol a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external),
.mdl-linklist__item .mdl-richtext ol a.atm-link--external > svg.mdl-promo-textteaser__description:not(.atm-link--external),
.mdl-richtext ol .mdl-linklist__item a.atm-link--external > svg.atm-link:not(.atm-link--external),
.mdl-richtext ol .mdl-linklist__item .context-ghi a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external),
.context-ghi .mdl-richtext ol .mdl-linklist__item a.atm-link--external > svg.atm-ghi-link:not(.atm-link--external),
.mdl-richtext ol .mdl-linklist__item a.atm-link--external > svg.mdl-promo-textteaser__description:not(.atm-link--external), .mdl-linklist__item .mdl-richtext a[download] > svg.atm-link:not(.atm-link--external), .mdl-linklist__item .mdl-richtext .context-ghi a[download] > svg.atm-ghi-link:not(.atm-link--external), .context-ghi .mdl-linklist__item .mdl-richtext a[download] > svg.atm-ghi-link:not(.atm-link--external), .mdl-linklist__item .mdl-richtext a[download] > svg.mdl-promo-textteaser__description:not(.atm-link--external), .mdl-richtext .mdl-linklist__item a[download] > svg.atm-link:not(.atm-link--external), .mdl-richtext .mdl-linklist__item .context-ghi a[download] > svg.atm-ghi-link:not(.atm-link--external), .context-ghi .mdl-richtext .mdl-linklist__item a[download] > svg.atm-ghi-link:not(.atm-link--external), .mdl-richtext .mdl-linklist__item a[download] > svg.mdl-promo-textteaser__description:not(.atm-link--external), .mdl-linklist__item .mdl-richtext a:not(.atm-link--external).atm-icon, .mdl-richtext .mdl-linklist__item a:not(.atm-link--external).atm-icon, .mdl-linklist__item .mdl-iconlist__link:not(.atm-link--external).atm-icon, .mdl-linklist__item .mdl-richtext p a.atm-link--external > svg.mdl-iconlist__link:not(.atm-link--external), .mdl-richtext p .mdl-linklist__item a.atm-link--external > svg.mdl-iconlist__link:not(.atm-link--external),
.mdl-linklist__item .mdl-richtext ul a.atm-link--external > svg.mdl-iconlist__link:not(.atm-link--external),
.mdl-richtext ul .mdl-linklist__item a.atm-link--external > svg.mdl-iconlist__link:not(.atm-link--external),
.mdl-linklist__item .mdl-richtext ol a.atm-link--external > svg.mdl-iconlist__link:not(.atm-link--external),
.mdl-richtext ol .mdl-linklist__item a.atm-link--external > svg.mdl-iconlist__link:not(.atm-link--external), .mdl-linklist__item .mdl-richtext a[download] > svg.mdl-iconlist__link:not(.atm-link--external), .mdl-richtext .mdl-linklist__item a[download] > svg.mdl-iconlist__link:not(.atm-link--external), .mdl-linklist__item .atm-paragraph a:not(.atm-link--external).atm-icon, .mdl-linklist__item .mdl-plain-text-accordion__height-representation a:not(.atm-link--external).atm-icon, .mdl-linklist__item .mdl-plain-text-accordion__text a:not(.atm-link--external).atm-icon, .mdl-linklist__item .mdl-filter__label a:not(.atm-link--external).atm-icon, .mdl-linklist__item .mdl-dropdown__title a:not(.atm-link--external).atm-icon, .mdl-linklist__item .mdl-input-list__label a:not(.atm-link--external).atm-icon, .atm-paragraph .mdl-linklist__item a:not(.atm-link--external).atm-icon, .mdl-plain-text-accordion__height-representation .mdl-linklist__item a:not(.atm-link--external).atm-icon, .mdl-plain-text-accordion__text .mdl-linklist__item a:not(.atm-link--external).atm-icon, .mdl-filter__label .mdl-linklist__item a:not(.atm-link--external).atm-icon, .mdl-dropdown__title .mdl-linklist__item a:not(.atm-link--external).atm-icon, .mdl-input-list__label .mdl-linklist__item a:not(.atm-link--external).atm-icon {
    width: 2.8888888889rem;
}
.mdl-linklist__item .atm-link .atm-icon, .mdl-linklist__item .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-linklist__item a .atm-icon, .mdl-linklist__item .context-ghi .atm-ghi-link .atm-icon, .context-ghi .mdl-linklist__item .atm-ghi-link .atm-icon, .mdl-linklist__item .mdl-promo-textteaser__description .atm-icon, .mdl-linklist__item .mdl-richtext a .atm-icon, .mdl-linklist__item .mdl-richtext p a.atm-link--external > svg,
.mdl-linklist__item .mdl-richtext ul a.atm-link--external > svg,
.mdl-linklist__item .mdl-richtext ol a.atm-link--external > svg, .mdl-linklist__item .mdl-richtext a[download] > svg, .mdl-richtext .mdl-linklist__item a .atm-icon, .mdl-richtext .mdl-linklist__item p a.atm-link--external > svg, .mdl-richtext p .mdl-linklist__item a.atm-link--external > svg,
.mdl-richtext .mdl-linklist__item ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-linklist__item a.atm-link--external > svg,
.mdl-richtext .mdl-linklist__item ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-linklist__item a.atm-link--external > svg, .mdl-richtext .mdl-linklist__item a[download] > svg, .mdl-linklist__item .mdl-iconlist__link .atm-icon, .mdl-linklist__item .atm-paragraph a .atm-icon, .mdl-linklist__item .mdl-plain-text-accordion__height-representation a .atm-icon, .mdl-linklist__item .mdl-plain-text-accordion__text a .atm-icon, .mdl-linklist__item .mdl-filter__label a .atm-icon, .mdl-linklist__item .mdl-dropdown__title a .atm-icon, .mdl-linklist__item .mdl-input-list__label a .atm-icon, .atm-paragraph .mdl-linklist__item a .atm-icon, .mdl-plain-text-accordion__height-representation .mdl-linklist__item a .atm-icon, .mdl-plain-text-accordion__text .mdl-linklist__item a .atm-icon, .mdl-filter__label .mdl-linklist__item a .atm-icon, .mdl-dropdown__title .mdl-linklist__item a .atm-icon, .mdl-input-list__label .mdl-linklist__item a .atm-icon {
    display: block;
}
.mdl-linklist__item .atm-link--inline, .mdl-linklist__item .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-linklist__item a, .mdl-linklist__item .mdl-richtext a:not([class]), .mdl-richtext .mdl-linklist__item a:not([class]), .mdl-linklist__item .mdl-richtext a.atm-link--inline, .mdl-richtext .mdl-linklist__item a.atm-link--inline, .mdl-linklist__item .atm-paragraph a, .mdl-linklist__item .mdl-plain-text-accordion__height-representation a, .mdl-linklist__item .mdl-plain-text-accordion__text a, .mdl-linklist__item .mdl-filter__label a, .mdl-linklist__item .mdl-dropdown__title a, .mdl-linklist__item .mdl-input-list__label a, .mdl-linklist__item .mdl-richtext p a, .mdl-richtext .mdl-linklist__item p a, .atm-paragraph .mdl-linklist__item a, .mdl-plain-text-accordion__height-representation .mdl-linklist__item a, .mdl-plain-text-accordion__text .mdl-linklist__item a, .mdl-filter__label .mdl-linklist__item a, .mdl-dropdown__title .mdl-linklist__item a, .mdl-input-list__label .mdl-linklist__item a, .mdl-richtext p .mdl-linklist__item a {
    width: auto;
}
.mdl-linklist--meta .mdl-linklist__item {
    display: inline-block;
    font-size: 1rem;
    margin-bottom: 0;
}
.mdl-linklist__item-active .atm-link, .mdl-linklist__item-active .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-linklist__item-active a, .mdl-linklist__item-active .context-ghi .atm-ghi-link, .context-ghi .mdl-linklist__item-active .atm-ghi-link, .mdl-linklist__item-active .mdl-promo-textteaser__description, .mdl-linklist__item-active .mdl-richtext p a[download], .mdl-richtext p .mdl-linklist__item-active a[download],
.mdl-linklist__item-active .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-linklist__item-active a[download],
.mdl-linklist__item-active .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-linklist__item-active a[download], .mdl-linklist__item-active .mdl-richtext a, .mdl-richtext .mdl-linklist__item-active a, .mdl-linklist__item-active .mdl-iconlist__link, .mdl-linklist__item-active .atm-paragraph a, .mdl-linklist__item-active .mdl-plain-text-accordion__height-representation a, .mdl-linklist__item-active .mdl-plain-text-accordion__text a, .mdl-linklist__item-active .mdl-filter__label a, .mdl-linklist__item-active .mdl-dropdown__title a, .mdl-linklist__item-active .mdl-input-list__label a, .atm-paragraph .mdl-linklist__item-active a, .mdl-plain-text-accordion__height-representation .mdl-linklist__item-active a, .mdl-plain-text-accordion__text .mdl-linklist__item-active a, .mdl-filter__label .mdl-linklist__item-active a, .mdl-dropdown__title .mdl-linklist__item-active a, .mdl-input-list__label .mdl-linklist__item-active a {
    color: #FFF;
    border-bottom: 1px solid #FF8F18;
}
.mdl-stage .mdl-linklist {
    padding-top: 5.2631578947%;
}
.mdl-linklist--fullwidth {
    width: 100%;
}
.mdl-linklist--fullwidth .mdl-linklist-wrapper {
    width: 100%;
}
.mdl-linklist--fullwidth .atm-link .atm-icon:first-child, .mdl-linklist--fullwidth .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon:first-child, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-linklist--fullwidth a .atm-icon:first-child, .mdl-linklist--fullwidth .context-ghi .atm-ghi-link .atm-icon:first-child, .context-ghi .mdl-linklist--fullwidth .atm-ghi-link .atm-icon:first-child, .mdl-linklist--fullwidth .mdl-promo-textteaser__description .atm-icon:first-child, .mdl-linklist--fullwidth .mdl-richtext a .atm-icon:first-child, .mdl-linklist--fullwidth .mdl-richtext p a.atm-link--external > svg:first-child,
.mdl-linklist--fullwidth .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-linklist--fullwidth .mdl-richtext ol a.atm-link--external > svg:first-child, .mdl-linklist--fullwidth .mdl-richtext a[download] > svg:first-child, .mdl-richtext .mdl-linklist--fullwidth a .atm-icon:first-child, .mdl-richtext .mdl-linklist--fullwidth p a.atm-link--external > svg:first-child, .mdl-richtext p .mdl-linklist--fullwidth a.atm-link--external > svg:first-child,
.mdl-richtext .mdl-linklist--fullwidth ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .mdl-linklist--fullwidth a.atm-link--external > svg:first-child,
.mdl-richtext .mdl-linklist--fullwidth ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .mdl-linklist--fullwidth a.atm-link--external > svg:first-child, .mdl-richtext .mdl-linklist--fullwidth a[download] > svg:first-child, .mdl-linklist--fullwidth .mdl-iconlist__link .atm-icon:first-child, .mdl-linklist--fullwidth .atm-paragraph a .atm-icon:first-child, .mdl-linklist--fullwidth .mdl-plain-text-accordion__height-representation a .atm-icon:first-child, .mdl-linklist--fullwidth .mdl-plain-text-accordion__text a .atm-icon:first-child, .mdl-linklist--fullwidth .mdl-filter__label a .atm-icon:first-child, .mdl-linklist--fullwidth .mdl-dropdown__title a .atm-icon:first-child, .mdl-linklist--fullwidth .mdl-input-list__label a .atm-icon:first-child, .atm-paragraph .mdl-linklist--fullwidth a .atm-icon:first-child, .mdl-plain-text-accordion__height-representation .mdl-linklist--fullwidth a .atm-icon:first-child, .mdl-plain-text-accordion__text .mdl-linklist--fullwidth a .atm-icon:first-child, .mdl-filter__label .mdl-linklist--fullwidth a .atm-icon:first-child, .mdl-dropdown__title .mdl-linklist--fullwidth a .atm-icon:first-child, .mdl-input-list__label .mdl-linklist--fullwidth a .atm-icon:first-child {
    margin-right: 0.25rem;
}
@media all and (min-width: 64em) {
    .mdl-linklist--meta {
        justify-content: normal;
        margin-left: 1.0833333333rem;
    }
    .mdl-linklist--meta .mdl-linklist__item {
        margin: 0 0.8333333333rem;
    }
    .mdl-linklist--half {
        width: 50%;
    }
}

/**
Mobile 13/20px = 1.5
Desktop 18/22px = 1.2
 */
.mdl-iconlist {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    font-size: calc(18 * 1px);
    line-height: 1.7;
    transition: background 0.2s ease-in;
    /**
     * Dynamic sizes & spaces on breakpoints
     */
    /**
     * Alignment Vertical
     */
    /**
     * Alignment Horizontal
     */
    /**
     * ViewPort Medium
     */
    /**
     * ViewPort Large
     */
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-iconlist {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-iconlist {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-iconlist {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-iconlist {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-iconlist {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-iconlist {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-iconlist {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-iconlist {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-iconlist__item {
    display: flex;
    margin-bottom: 1rem;
}
.mdl-iconlist__link {
    display: flex;
}
.mdl-iconlist .atm-icon, .mdl-iconlist .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-iconlist a.atm-link--external > svg,
.mdl-iconlist .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-iconlist a.atm-link--external > svg,
.mdl-iconlist .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-iconlist a.atm-link--external > svg, .mdl-iconlist .mdl-richtext a[download] > svg, .mdl-richtext .mdl-iconlist a[download] > svg {
    height: 1.8888888889rem;
    width: 1.8888888889rem;
    min-width: 1.8888888889rem;
    min-height: 1.8888888889rem;
    flex-shrink: 0;
    margin-right: auto;
}
.mdl-iconlist .atm-icon svg use path, .mdl-iconlist .mdl-richtext p a.atm-link--external > svg svg use path, .mdl-richtext p .mdl-iconlist a.atm-link--external > svg svg use path,
.mdl-iconlist .mdl-richtext ul a.atm-link--external > svg svg use path,
.mdl-richtext ul .mdl-iconlist a.atm-link--external > svg svg use path,
.mdl-iconlist .mdl-richtext ol a.atm-link--external > svg svg use path,
.mdl-richtext ol .mdl-iconlist a.atm-link--external > svg svg use path, .mdl-iconlist .mdl-richtext a[download] > svg svg use path, .mdl-richtext .mdl-iconlist a[download] > svg svg use path {
    fill: #771511;
}
.mdl-iconlist .mdl-richtext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    margin-left: 0;
    flex-basis: 100%;
    margin-right: 0;
}
.mdl-iconlist--compressed {
    font-size: calc(13 * 1px);
    line-height: 1.5;
}
@media (min-width: 0px) {
    .mdl-iconlist--compressed {
        font-size: calc(0.1953125vw + 13px);
    }
}
@media (min-width: 1024px) {
    .mdl-iconlist--compressed {
        font-size: calc(0.5208333333vw + 9.6666666667px);
    }
}
@media (min-width: 1600px) {
    .mdl-iconlist--compressed {
        font-size: calc(18 * 1px);
    }
}
.mdl-iconlist--vertical .mdl-iconlist__item > .atm-icon, .mdl-iconlist--vertical .mdl-richtext p a.atm-link--external.mdl-iconlist__item > svg, .mdl-richtext p .mdl-iconlist--vertical a.atm-link--external.mdl-iconlist__item > svg,
.mdl-iconlist--vertical .mdl-richtext ul a.atm-link--external.mdl-iconlist__item > svg,
.mdl-richtext ul .mdl-iconlist--vertical a.atm-link--external.mdl-iconlist__item > svg,
.mdl-iconlist--vertical .mdl-richtext ol a.atm-link--external.mdl-iconlist__item > svg,
.mdl-richtext ol .mdl-iconlist--vertical a.atm-link--external.mdl-iconlist__item > svg, .mdl-iconlist--vertical .mdl-richtext a[download].mdl-iconlist__item > svg, .mdl-richtext .mdl-iconlist--vertical a[download].mdl-iconlist__item > svg {
    margin-right: 1rem;
}
.mdl-iconlist--horizontal {
    flex-direction: row;
    justify-content: space-between;
}
.mdl-iconlist--horizontal .atm-icon--iconlist {
    margin-right: auto;
    margin-bottom: 0.5rem;
    margin-left: auto;
}
.mdl-iconlist--horizontal .mdl-iconlist__item {
    width: 33%;
    text-align: center;
}
.mdl-iconlist--horizontal .mdl-iconlist__link {
    width: 100%;
    flex-direction: column;
    align-items: center;
}
.mdl-iconlist--oxide-red .mdl-iconlist__item {
    background: #A61711;
}
.mdl-iconlist--oxide-red .mdl-iconlist__item:hover {
    background: #771511;
}
.mdl-iconlist--dark-gray .mdl-iconlist__item {
    background: #403F3F;
}
.mdl-iconlist--dark-gray .mdl-iconlist__item:hover {
    background: #262626;
}
.mdl-iconlist--light-gray .mdl-iconlist__item {
    background: #9D9F9D;
}
.mdl-iconlist--light-gray .mdl-iconlist__item:hover {
    background: #838683;
}
.mdl-iconlist--orange .mdl-iconlist__item {
    background: #FF8F18;
}
.mdl-iconlist--orange .mdl-iconlist__item:hover {
    background: #e47500;
}
.mdl-iconlist--violet .mdl-iconlist__item {
    background: #831080;
}
.mdl-iconlist--violet .mdl-iconlist__item:hover {
    background: #560a54;
}
.mdl-iconlist--red .mdl-iconlist__item {
    background: #EE000C;
}
.mdl-iconlist--red .mdl-iconlist__item:hover {
    background: #bb0009;
}
.mdl-iconlist--green .mdl-iconlist__item {
    background: #4B6A33;
}
.mdl-iconlist--green .mdl-iconlist__item:hover {
    background: #334822;
}
@media all and (min-width: 64em) {
    .mdl-iconlist--compressed {
        line-height: 1.2;
    }
    .mdl-iconlist .atm-icon--iconlist {
        height: 2.2222222222rem;
        width: 2.2222222222rem;
        min-width: 2.2222222222rem;
        min-height: 2.2222222222rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-iconlist .atm-icon--iconlist {
        height: 2.8888888889rem;
        width: 2.8888888889rem;
        min-width: 2.8888888889rem;
        min-height: 2.8888888889rem;
    }
    .mdl-iconlist--horizontal .atm-icon--iconlist {
        margin-bottom: 1rem;
    }
}

.mdl-richtext {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    word-break: break-word;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-richtext {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-richtext {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-richtext {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-richtext {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-richtext {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-richtext {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-richtext {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-richtext {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-richtext a:before {
    background: inherit;
}
.mdl-richtext ul > li:before {
    background-color: #282625;
}
.mdl-richtext p a[download] > svg use,
.mdl-richtext ul a[download] > svg use,
.mdl-richtext ol a[download] > svg use,
.mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ol a.atm-link--external > svg use {
    fill: var(--primary-color);
}
.mdl-richtext p a[download]:hover > svg use,
.mdl-richtext ul a[download]:hover > svg use,
.mdl-richtext ol a[download]:hover > svg use,
.mdl-richtext p a.atm-link--external:hover > svg use,
.mdl-richtext ul a.atm-link--external:hover > svg use,
.mdl-richtext ol a.atm-link--external:hover > svg use {
    fill: var(--primary-color-darken-1);
}
.mdl-richtext h2,
.mdl-richtext h3,
.mdl-richtext h4 {
    margin-top: 1.5555555556rem;
    -webkit-font-smoothing: antialiased;
}
.mdl-richtext h2 a,
.mdl-richtext h3 a,
.mdl-richtext h4 a {
    font-size: inherit;
}
@media all and (max-width: 63.99em) {
    .mdl-richtext p b {
        -webkit-font-smoothing: antialiased;
    }
}
.mdl-richtext a[download] {
    padding-left: 2.3888888889rem;
}
.mdl-richtext > *:last-child {
    margin-bottom: 0;
}
.mdl-richtext--space-top {
    padding-top: 2.1666666667rem;
}
.mdl-richtext--space-bottom {
    margin-bottom: 2.1666666667rem;
}
.mdl-richtext--no-space-top *:first-child {
    margin-top: 0;
}

/*
* Style inspired by https://codepen.io/PingVoid/pen/bQBmxE
*/
.mdl-burger {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    min-width: 2.3333333333rem;
    height: 2.3333333333rem;
    position: relative;
}
.mdl-burger:focus {
    outline: none;
}
.mdl-burger__bar {
    height: 2px;
    width: 58%;
    background-color: #A61711;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-play-state: paused;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: ease;
}
.mdl-burger__bar:nth-child(1) {
    top: 36%;
}
.mdl-burger__bar:nth-child(2) {
    top: 50%;
}
.mdl-burger__bar:nth-child(3) {
    bottom: 36%;
    transform: translate(-50%, 50%);
}
.mdl-burger--close .mdl-burger__bar {
    animation-direction: reverse;
}
.mdl-burger--open .mdl-burger__bar {
    animation-direction: normal;
}
.mdl-burger--animate .mdl-burger__bar {
    animation-play-state: running;
}
.mdl-burger--animate .mdl-burger__bar:nth-child(1) {
    animation-name: merge-top;
}
.mdl-burger--animate .mdl-burger__bar:nth-child(2) {
    animation-name: merge-middle;
}
.mdl-burger--animate .mdl-burger__bar:nth-child(3) {
    animation-name: merge-bottom;
}

/*
* Merging the top bar of the burger, by moving it first down to the center
* than scale it smaller, rotate it to 45 degree and scale it to normal again
* to form one part/bar of the X-Cross
*/
@keyframes merge-top {
    0% {
        top: 36%;
    }
    20% {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -50%) rotate(0) scale(0.2, 1);
    }
    60% {
        transform: translate(-50%, -50%) rotate(-45deg) scale(0.2, 1);
    }
    100% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg) scale(1, 1);
    }
}
/*
* Merging the middle bar of the burger, by moving it first to the center
* than scale it smaller and hide it completly
*/
@keyframes merge-middle {
    0% {
        transform: translate(-50%, -50%) scale(1, 1);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.2, 1);
        visibility: hidden;
    }
    100% {
        visibility: hidden;
    }
}
/*
* Merging the bottom bar of the burger, by moving it first up to the center
* than scale it smaller, rotate it to 45 degree and scale it to normal again
* to form one part/bar of the X-Cross
*/
@keyframes merge-bottom {
    0% {
        bottom: 36%;
    }
    20% {
        bottom: 50%;
        transform: translate(-50%, 50%) rotate(0deg) scale(1, 1);
    }
    50% {
        transform: translate(-50%, 50%) rotate(0deg) scale(0.2, 1);
    }
    60% {
        transform: translate(-50%, 50%) rotate(45deg) scale(0.2, 1);
    }
    100% {
        bottom: 50%;
        transform: translate(-50%, 50%) rotate(45deg) scale(1, 1);
    }
}
.mdl-offcanvas-navigation {
    z-index: 999;
    /*********************
    *    MEDIAQUERIES    *
    **********************/
    /*********************
    *    Variants        *
    **********************/
}
.mdl-offcanvas-navigation .invisible {
    visibility: hidden;
}
.mdl-offcanvas-navigation-menu {
    background: linear-gradient(to bottom, #FFF, #F1F1F1);
    position: fixed;
    top: 3rem;
    right: 0;
    width: 100%;
    height: 0;
    transition: height 0.5s ease;
    overflow: hidden scroll;
}
.mdl-offcanvas-navigation-menu--active {
    height: calc(100% - (54 * 1px));
    width: 100%;
}
.mdl-offcanvas-navigation-menu__close {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: none;
    flex-direction: row-reverse;
    width: 100%;
    padding-right: 4rem;
}
.mdl-offcanvas-navigation-menu__close:focus {
    outline: none;
}
.mdl-offcanvas-navigation-menu__close .atm-icon use, .mdl-offcanvas-navigation-menu__close .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-offcanvas-navigation-menu__close a[download] > svg use, .mdl-offcanvas-navigation-menu__close .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-offcanvas-navigation-menu__close a.atm-link--external > svg use,
.mdl-offcanvas-navigation-menu__close .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-offcanvas-navigation-menu__close a.atm-link--external > svg use,
.mdl-offcanvas-navigation-menu__close .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-offcanvas-navigation-menu__close a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-offcanvas-navigation-menu__list {
    padding: 1.1111111111rem 0.5555555556rem;
}
.mdl-offcanvas-navigation-menu__list__item-link {
    z-index: 999;
}
.mdl-offcanvas-navigation-menu__list__item-link .wrapper .inner-wrapper .mdl-header_item .atm-link--navigation {
    z-index: 999;
}
.mdl-offcanvas-navigation-menu__item {
    overflow: hidden;
    border-bottom: 1px solid #9D9F9D;
    margin: 0 0.5rem;
}
@media all and (min-width: 64em) {
    .mdl-offcanvas-navigation-menu__item {
        display: flex;
        align-items: center;
        justify-content: start;
        padding: 0.5555555556rem 0;
    }
    .mdl-offcanvas-navigation-menu__item .mdl-offcanvas-navigation-menu__item-link {
        padding: 0 1.3333333333rem 0 0;
    }
}
.mdl-offcanvas-navigation-menu__item-link {
    color: #767675;
    text-decoration: none;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.mdl-offcanvas-navigation-menu__item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mdl-offcanvas-navigation-menu__item button {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    width: 100%;
}
@media all and (max-width: 63.99em) {
    .mdl-offcanvas-navigation-menu__item button {
        padding: 0.5555555556rem 0 0;
    }
}
.mdl-offcanvas-navigation-menu__item button .atm-icon, .mdl-offcanvas-navigation-menu__item button .mdl-richtext a[download] > svg, .mdl-richtext .mdl-offcanvas-navigation-menu__item button a[download] > svg, .mdl-offcanvas-navigation-menu__item button .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-offcanvas-navigation-menu__item button a.atm-link--external > svg,
.mdl-offcanvas-navigation-menu__item button .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-offcanvas-navigation-menu__item button a.atm-link--external > svg,
.mdl-offcanvas-navigation-menu__item button .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-offcanvas-navigation-menu__item button a.atm-link--external > svg {
    float: right;
}
.mdl-offcanvas-navigation-menu__item button .atm-icon use, .mdl-offcanvas-navigation-menu__item button .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-offcanvas-navigation-menu__item button a[download] > svg use, .mdl-offcanvas-navigation-menu__item button .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-offcanvas-navigation-menu__item button a.atm-link--external > svg use,
.mdl-offcanvas-navigation-menu__item button .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-offcanvas-navigation-menu__item button a.atm-link--external > svg use,
.mdl-offcanvas-navigation-menu__item button .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-offcanvas-navigation-menu__item button a.atm-link--external > svg use {
    fill: #767675;
}
.mdl-offcanvas-navigation-menu__item hr {
    margin: 0;
    display: block;
    opacity: 0.5;
    border-bottom: 0;
    border-color: #9D9F9D;
}
.mdl-offcanvas-navigation-menu__item .wrapper {
    display: none;
    padding-left: 1.1111111111rem;
}
.mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .atm-link, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item a, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .context-ghi .atm-ghi-link, .context-ghi .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .atm-ghi-link, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .mdl-promo-textteaser__description, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .atm-paragraph a, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .mdl-plain-text-accordion__height-representation a, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .mdl-plain-text-accordion__text a, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .mdl-filter__label a, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .mdl-dropdown__title a, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .mdl-input-list__label a, .atm-paragraph .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item a, .mdl-plain-text-accordion__height-representation .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item a, .mdl-plain-text-accordion__text .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item a, .mdl-filter__label .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item a, .mdl-dropdown__title .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item a, .mdl-input-list__label .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item a, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .mdl-iconlist__link, .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .mdl-richtext a, .mdl-richtext .mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item a {
    background: none;
}
.mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item .atm-link--navigation {
    z-index: 999;
}
.mdl-offcanvas-navigation-menu__item .wrapper .mdl-header_item button {
    padding: 0.5555555556rem 0 0;
}
.mdl-offcanvas-navigation-menu__item a {
    padding: 0.5555555556rem 1.3333333333rem 0.5555555556rem 0;
}
.mdl-offcanvas-navigation-menu__item a:hover {
    color: inherit;
}
.mdl-offcanvas-navigation-menu__item.opened {
    display: block;
}
.mdl-offcanvas-navigation-menu [data-list-item] {
    position: relative;
}
.mdl-offcanvas-navigation-menu [data-list-item].opened > .wrapper {
    display: block;
}
.mdl-offcanvas-navigation-menu [data-list-item].opened > [data-nav-toggle] .atm-icon, .mdl-offcanvas-navigation-menu [data-list-item].opened > [data-nav-toggle] .mdl-richtext a[download] > svg, .mdl-richtext .mdl-offcanvas-navigation-menu [data-list-item].opened > [data-nav-toggle] a[download] > svg, .mdl-offcanvas-navigation-menu [data-list-item].opened > [data-nav-toggle] .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-offcanvas-navigation-menu [data-list-item].opened > [data-nav-toggle] a.atm-link--external > svg,
.mdl-offcanvas-navigation-menu [data-list-item].opened > [data-nav-toggle] .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-offcanvas-navigation-menu [data-list-item].opened > [data-nav-toggle] a.atm-link--external > svg,
.mdl-offcanvas-navigation-menu [data-list-item].opened > [data-nav-toggle] .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-offcanvas-navigation-menu [data-list-item].opened > [data-nav-toggle] a.atm-link--external > svg {
    transform: rotate(180deg);
}
.mdl-offcanvas-navigation-menu [data-list-item].opened > .mdl-offcanvas-navigation-menu__item-link, .mdl-offcanvas-navigation-menu [data-list-item].opened > .atm-link, .mdl-offcanvas-navigation-menu .context-ghi .mdl-ghi_pdf_download_form-intro [data-list-item].opened > a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-offcanvas-navigation-menu [data-list-item].opened > a, .mdl-offcanvas-navigation-menu .context-ghi [data-list-item].opened > .atm-ghi-link, .context-ghi .mdl-offcanvas-navigation-menu [data-list-item].opened > .atm-ghi-link, .mdl-offcanvas-navigation-menu [data-list-item].opened > .mdl-promo-textteaser__description, .mdl-offcanvas-navigation-menu .atm-paragraph [data-list-item].opened > a, .mdl-offcanvas-navigation-menu .mdl-plain-text-accordion__height-representation [data-list-item].opened > a, .mdl-offcanvas-navigation-menu .mdl-plain-text-accordion__text [data-list-item].opened > a, .mdl-offcanvas-navigation-menu .mdl-filter__label [data-list-item].opened > a, .mdl-offcanvas-navigation-menu .mdl-dropdown__title [data-list-item].opened > a, .mdl-offcanvas-navigation-menu .mdl-input-list__label [data-list-item].opened > a, .atm-paragraph .mdl-offcanvas-navigation-menu [data-list-item].opened > a, .mdl-plain-text-accordion__height-representation .mdl-offcanvas-navigation-menu [data-list-item].opened > a, .mdl-plain-text-accordion__text .mdl-offcanvas-navigation-menu [data-list-item].opened > a, .mdl-filter__label .mdl-offcanvas-navigation-menu [data-list-item].opened > a, .mdl-dropdown__title .mdl-offcanvas-navigation-menu [data-list-item].opened > a, .mdl-input-list__label .mdl-offcanvas-navigation-menu [data-list-item].opened > a, .mdl-offcanvas-navigation-menu [data-list-item].opened > .mdl-iconlist__link, .mdl-offcanvas-navigation-menu .mdl-richtext [data-list-item].opened > a, .mdl-richtext .mdl-offcanvas-navigation-menu [data-list-item].opened > a {
    color: #282625;
}
@media all and (min-width: 64em) {
    .mdl-offcanvas-navigation-menu [data-list-item].opened > .mdl-offcanvas-navigation-menu__item-link {
        padding-bottom: 0.3333333333rem;
    }
}
.mdl-offcanvas-navigation-menu .mdl-iconlist {
    flex-basis: 100%;
}
.mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-iconlist__link {
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1.3333333333rem;
    background: none;
}
.mdl-offcanvas-navigation-menu .mdl-iconlist .atm-icon, .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-richtext a[download] > svg, .mdl-richtext .mdl-offcanvas-navigation-menu .mdl-iconlist a[download] > svg, .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-offcanvas-navigation-menu .mdl-iconlist a.atm-link--external > svg,
.mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-offcanvas-navigation-menu .mdl-iconlist a.atm-link--external > svg,
.mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-offcanvas-navigation-menu .mdl-iconlist a.atm-link--external > svg {
    height: 2.2222222222rem;
    width: 2.2222222222rem;
    min-width: 2.2222222222rem;
    min-height: 2.2222222222rem;
    margin: 0 0.5rem 0 0;
}
.mdl-offcanvas-navigation-menu .mdl-linklist {
    margin-top: 4rem;
}
@media all and (min-width: 48em) {
    .mdl-offcanvas-navigation-menu .atm-link, .mdl-offcanvas-navigation-menu .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-offcanvas-navigation-menu a, .mdl-offcanvas-navigation-menu .context-ghi .atm-ghi-link, .context-ghi .mdl-offcanvas-navigation-menu .atm-ghi-link, .mdl-offcanvas-navigation-menu .mdl-promo-textteaser__description, .mdl-offcanvas-navigation-menu .atm-paragraph a, .mdl-offcanvas-navigation-menu .mdl-plain-text-accordion__height-representation a, .mdl-offcanvas-navigation-menu .mdl-plain-text-accordion__text a, .mdl-offcanvas-navigation-menu .mdl-filter__label a, .mdl-offcanvas-navigation-menu .mdl-dropdown__title a, .mdl-offcanvas-navigation-menu .mdl-input-list__label a, .atm-paragraph .mdl-offcanvas-navigation-menu a, .mdl-plain-text-accordion__height-representation .mdl-offcanvas-navigation-menu a, .mdl-plain-text-accordion__text .mdl-offcanvas-navigation-menu a, .mdl-filter__label .mdl-offcanvas-navigation-menu a, .mdl-dropdown__title .mdl-offcanvas-navigation-menu a, .mdl-input-list__label .mdl-offcanvas-navigation-menu a, .mdl-offcanvas-navigation-menu .mdl-iconlist__link, .mdl-offcanvas-navigation-menu .mdl-richtext a, .mdl-richtext .mdl-offcanvas-navigation-menu a,
    .mdl-offcanvas-navigation-menu .mdl-richtext ul a[download],
    .mdl-richtext ul .mdl-offcanvas-navigation-menu a[download],
    .mdl-offcanvas-navigation-menu .mdl-richtext ol a[download],
    .mdl-richtext ol .mdl-offcanvas-navigation-menu a[download] {
        line-height: 1.3;
    }
}
@media all and (min-width: 64em) {
    .mdl-offcanvas-navigation-menu__item-link {
        font-size: 1.5555555556rem;
    }
    .mdl-offcanvas-navigation-menu__item > .wrapper {
        margin-left: 4rem;
    }
    .mdl-offcanvas-navigation-menu__item.opened > button {
        padding: 0.5555555556rem 0 0;
    }
    .mdl-offcanvas-navigation-menu .mdl-iconlist__item {
        height: 5.5555555556rem;
    }
    .mdl-offcanvas-navigation-menu .mdl-iconlist__link {
        font-size: 1.5555555556rem;
    }
}
.mdl-offcanvas-navigation--modern .mdl-offcanvas-navigation-menu__list {
    margin-top: 2.1666666667rem;
}
.mdl-offcanvas-navigation--modern .mdl-offcanvas-navigation-menu__item:first-of-type {
    border-top: 1px solid #9D9F9D;
}
@media all and (min-width: 64em) {
    .mdl-offcanvas-navigation--modern .mdl-offcanvas-navigation-menu__item > button {
        padding: inherit;
    }
}
@media all and (min-width: 64em) {
    .mdl-offcanvas-navigation--side-shift .mdl-offcanvas-navigation-menu {
        padding-top: 2.1666666667rem;
        top: 0;
        height: 100%;
        width: 0;
        max-width: 36.6666666667rem;
        transition: width 0.5s ease;
        box-shadow: 0 2px 20px 0 rgba(75, 58, 42, 0.25);
    }
    .mdl-offcanvas-navigation--side-shift .mdl-offcanvas-navigation-menu__close {
        display: flex;
    }
    .mdl-offcanvas-navigation--side-shift .mdl-offcanvas-navigation-menu--active {
        width: 36.6666666667rem;
    }
    .mdl-offcanvas-navigation--side-shift .mdl-offcanvas-navigation-menu__item-link {
        margin-left: 4rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mdl-offcanvas-navigation--side-shift .mdl-offcanvas-navigation-menu .mdl-iconlist,
    .mdl-offcanvas-navigation--side-shift .mdl-offcanvas-navigation-menu .mdl-linklist {
        margin-right: 4rem;
        margin-left: 4rem;
        margin-bottom: 4rem;
    }
}

.mdl-accordion {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    position: relative;
    margin-bottom: 2.1666666667rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-accordion {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-accordion {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-accordion {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-accordion {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-accordion {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-accordion {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-accordion {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-accordion {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-accordion:before {
    content: "";
    display: block;
    width: 100%;
    height: 0.0555555556rem;
    background-color: #9D9F9D;
}
.mdl-accordion__item {
    border-bottom: 0.0555555556rem solid #9D9F9D;
}
.mdl-accordion__item:focus {
    outline: none;
}
.mdl-accordion__item--active .mdl-accordion__icon, .mdl-accordion__item--active .mdl-form_accordion-panel__icon, .mdl-form_accordion-panel--opened .mdl-accordion__icon, .mdl-form_accordion-panel--opened .mdl-form_accordion-panel__icon {
    transform: rotate(0deg);
}
.mdl-accordion__item--active .mdl-accordion__icon--plus, .mdl-form_accordion-panel--opened .mdl-accordion__icon--plus {
    opacity: 0;
}
.mdl-accordion__item--active .mdl-accordion__icon--minus, .mdl-form_accordion-panel--opened .mdl-accordion__icon--minus {
    opacity: 1;
}
.mdl-accordion__item--active .my-transition, .mdl-form_accordion-panel--opened .my-transition {
    transition: opacity 0.5s ease-in-out, margin-top 0.5s ease-in-out, height 0.5s ease-in-out, margin-bottom 0.5s ease-in-out;
    opacity: 1;
    margin-bottom: 2.1666666667rem;
}
.mdl-accordion__item--active .mdl-accordion__content, .mdl-form_accordion-panel--opened .mdl-accordion__content {
    opacity: 1;
    margin-bottom: 2.1666666667rem;
}
.mdl-accordion__header, .mdl-form_accordion-panel__header {
    display: flex;
    flex: 0 1 auto;
    flex-wrap: nowrap;
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    flex-wrap: nowrap;
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
    color: #282625;
    width: 100%;
    margin: 0;
    align-items: center;
    min-height: auto;
    line-height: 1.66;
}
.mdl-accordion__header:focus, .mdl-form_accordion-panel__header:focus {
    outline: none;
}
@media all and (min-width: 0em) {
    .mdl-accordion__header, .mdl-form_accordion-panel__header {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
@media all and (min-width: 48em) {
    .mdl-accordion__header, .mdl-form_accordion-panel__header {
        padding-top: 1.5555555556rem;
        padding-bottom: 1.5555555556rem;
    }
}
.mdl-accordion__header:hover .mdl-accordion__icon .atm-icon, .mdl-accordion__header:hover .mdl-form_accordion-panel__icon .atm-icon, .mdl-form_accordion-panel__header:hover .mdl-accordion__icon .atm-icon, .mdl-form_accordion-panel__header:hover .mdl-form_accordion-panel__icon .atm-icon, .mdl-accordion__header:hover .mdl-accordion__icon .mdl-richtext a[download] > svg, .mdl-accordion__header:hover .mdl-form_accordion-panel__icon .mdl-richtext a[download] > svg, .mdl-form_accordion-panel__header:hover .mdl-accordion__icon .mdl-richtext a[download] > svg, .mdl-form_accordion-panel__header:hover .mdl-form_accordion-panel__icon .mdl-richtext a[download] > svg, .mdl-richtext .mdl-accordion__header:hover .mdl-accordion__icon a[download] > svg, .mdl-richtext .mdl-accordion__header:hover .mdl-form_accordion-panel__icon a[download] > svg, .mdl-richtext .mdl-form_accordion-panel__header:hover .mdl-accordion__icon a[download] > svg, .mdl-richtext .mdl-form_accordion-panel__header:hover .mdl-form_accordion-panel__icon a[download] > svg, .mdl-accordion__header:hover .mdl-accordion__icon .mdl-richtext p a.atm-link--external > svg, .mdl-accordion__header:hover .mdl-form_accordion-panel__icon .mdl-richtext p a.atm-link--external > svg, .mdl-form_accordion-panel__header:hover .mdl-accordion__icon .mdl-richtext p a.atm-link--external > svg, .mdl-form_accordion-panel__header:hover .mdl-form_accordion-panel__icon .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-accordion__header:hover .mdl-accordion__icon a.atm-link--external > svg, .mdl-richtext p .mdl-accordion__header:hover .mdl-form_accordion-panel__icon a.atm-link--external > svg, .mdl-richtext p .mdl-form_accordion-panel__header:hover .mdl-accordion__icon a.atm-link--external > svg, .mdl-richtext p .mdl-form_accordion-panel__header:hover .mdl-form_accordion-panel__icon a.atm-link--external > svg,
.mdl-accordion__header:hover .mdl-accordion__icon .mdl-richtext ul a.atm-link--external > svg,
.mdl-accordion__header:hover .mdl-form_accordion-panel__icon .mdl-richtext ul a.atm-link--external > svg,
.mdl-form_accordion-panel__header:hover .mdl-accordion__icon .mdl-richtext ul a.atm-link--external > svg,
.mdl-form_accordion-panel__header:hover .mdl-form_accordion-panel__icon .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-accordion__header:hover .mdl-accordion__icon a.atm-link--external > svg,
.mdl-richtext ul .mdl-accordion__header:hover .mdl-form_accordion-panel__icon a.atm-link--external > svg,
.mdl-richtext ul .mdl-form_accordion-panel__header:hover .mdl-accordion__icon a.atm-link--external > svg,
.mdl-richtext ul .mdl-form_accordion-panel__header:hover .mdl-form_accordion-panel__icon a.atm-link--external > svg,
.mdl-accordion__header:hover .mdl-accordion__icon .mdl-richtext ol a.atm-link--external > svg,
.mdl-accordion__header:hover .mdl-form_accordion-panel__icon .mdl-richtext ol a.atm-link--external > svg,
.mdl-form_accordion-panel__header:hover .mdl-accordion__icon .mdl-richtext ol a.atm-link--external > svg,
.mdl-form_accordion-panel__header:hover .mdl-form_accordion-panel__icon .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-accordion__header:hover .mdl-accordion__icon a.atm-link--external > svg,
.mdl-richtext ol .mdl-accordion__header:hover .mdl-form_accordion-panel__icon a.atm-link--external > svg,
.mdl-richtext ol .mdl-form_accordion-panel__header:hover .mdl-accordion__icon a.atm-link--external > svg,
.mdl-richtext ol .mdl-form_accordion-panel__header:hover .mdl-form_accordion-panel__icon a.atm-link--external > svg {
    fill: #771511;
}
.mdl-accordion__header .mdl-accordion__suptitle, .mdl-form_accordion-panel__header .mdl-accordion__suptitle {
    font-size: 0.8333333333rem;
    color: var(--color-grey--light);
    font-family: "Frutiger LT W01_45 Light", Frutiger, sans-serif;
    align-self: flex-start;
}
.mdl-accordion__header > *, .mdl-form_accordion-panel__header > * {
    pointer-events: none;
}
.mdl-accordion__title, .mdl-form_accordion-panel__title {
    width: 90%;
}
@media all and (max-width: 63.99em) {
    .mdl-accordion__title, .mdl-form_accordion-panel__title {
        -webkit-font-smoothing: antialiased;
    }
}
.mdl-accordion__icon, .mdl-form_accordion-panel__icon {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    height: 100%;
    transform: rotate(-90deg);
    position: absolute;
}
.mdl-accordion__icon--plus {
    opacity: 1;
}
.mdl-accordion__icon--minus {
    opacity: 0;
}
.mdl-accordion__icon-wrapper, .mdl-form_accordion-panel__icon-wrapper {
    position: relative;
}
@media all and (min-width: 0em) {
    .mdl-accordion__icon-wrapper, .mdl-form_accordion-panel__icon-wrapper {
        height: 2.2222222222rem;
        width: 2.2222222222rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-accordion__icon-wrapper, .mdl-form_accordion-panel__icon-wrapper {
        height: 3.3333333333rem;
        width: 3.3333333333rem;
    }
}
.mdl-accordion__icon .atm-icon, .mdl-form_accordion-panel__icon .atm-icon, .mdl-accordion__icon .mdl-richtext a[download] > svg, .mdl-form_accordion-panel__icon .mdl-richtext a[download] > svg, .mdl-richtext .mdl-accordion__icon a[download] > svg, .mdl-richtext .mdl-form_accordion-panel__icon a[download] > svg, .mdl-accordion__icon .mdl-richtext p a.atm-link--external > svg, .mdl-form_accordion-panel__icon .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-accordion__icon a.atm-link--external > svg, .mdl-richtext p .mdl-form_accordion-panel__icon a.atm-link--external > svg,
.mdl-accordion__icon .mdl-richtext ul a.atm-link--external > svg,
.mdl-form_accordion-panel__icon .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-accordion__icon a.atm-link--external > svg,
.mdl-richtext ul .mdl-form_accordion-panel__icon a.atm-link--external > svg,
.mdl-accordion__icon .mdl-richtext ol a.atm-link--external > svg,
.mdl-form_accordion-panel__icon .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-accordion__icon a.atm-link--external > svg,
.mdl-richtext ol .mdl-form_accordion-panel__icon a.atm-link--external > svg {
    transition: fill 0.5s ease-in-out;
}
@media all and (min-width: 0em) {
    .mdl-accordion__icon .atm-icon, .mdl-form_accordion-panel__icon .atm-icon, .mdl-accordion__icon .mdl-richtext a[download] > svg, .mdl-form_accordion-panel__icon .mdl-richtext a[download] > svg, .mdl-richtext .mdl-accordion__icon a[download] > svg, .mdl-richtext .mdl-form_accordion-panel__icon a[download] > svg, .mdl-accordion__icon .mdl-richtext p a.atm-link--external > svg, .mdl-form_accordion-panel__icon .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-accordion__icon a.atm-link--external > svg, .mdl-richtext p .mdl-form_accordion-panel__icon a.atm-link--external > svg,
    .mdl-accordion__icon .mdl-richtext ul a.atm-link--external > svg,
    .mdl-form_accordion-panel__icon .mdl-richtext ul a.atm-link--external > svg,
    .mdl-richtext ul .mdl-accordion__icon a.atm-link--external > svg,
    .mdl-richtext ul .mdl-form_accordion-panel__icon a.atm-link--external > svg,
    .mdl-accordion__icon .mdl-richtext ol a.atm-link--external > svg,
    .mdl-form_accordion-panel__icon .mdl-richtext ol a.atm-link--external > svg,
    .mdl-richtext ol .mdl-accordion__icon a.atm-link--external > svg,
    .mdl-richtext ol .mdl-form_accordion-panel__icon a.atm-link--external > svg {
        height: 2.2222222222rem;
        width: 2.2222222222rem;
        min-width: 2.2222222222rem;
        min-height: 2.2222222222rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-accordion__icon .atm-icon, .mdl-form_accordion-panel__icon .atm-icon, .mdl-accordion__icon .mdl-richtext a[download] > svg, .mdl-form_accordion-panel__icon .mdl-richtext a[download] > svg, .mdl-richtext .mdl-accordion__icon a[download] > svg, .mdl-richtext .mdl-form_accordion-panel__icon a[download] > svg, .mdl-accordion__icon .mdl-richtext p a.atm-link--external > svg, .mdl-form_accordion-panel__icon .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-accordion__icon a.atm-link--external > svg, .mdl-richtext p .mdl-form_accordion-panel__icon a.atm-link--external > svg,
    .mdl-accordion__icon .mdl-richtext ul a.atm-link--external > svg,
    .mdl-form_accordion-panel__icon .mdl-richtext ul a.atm-link--external > svg,
    .mdl-richtext ul .mdl-accordion__icon a.atm-link--external > svg,
    .mdl-richtext ul .mdl-form_accordion-panel__icon a.atm-link--external > svg,
    .mdl-accordion__icon .mdl-richtext ol a.atm-link--external > svg,
    .mdl-form_accordion-panel__icon .mdl-richtext ol a.atm-link--external > svg,
    .mdl-richtext ol .mdl-accordion__icon a.atm-link--external > svg,
    .mdl-richtext ol .mdl-form_accordion-panel__icon a.atm-link--external > svg {
        height: 3.3333333333rem;
        width: 3.3333333333rem;
        min-width: 3.3333333333rem;
        min-height: 3.3333333333rem;
    }
}
.mdl-accordion__icon .atm-icon use, .mdl-form_accordion-panel__icon .atm-icon use, .mdl-accordion__icon .mdl-richtext a[download] > svg use, .mdl-form_accordion-panel__icon .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-accordion__icon a[download] > svg use, .mdl-richtext .mdl-form_accordion-panel__icon a[download] > svg use, .mdl-accordion__icon .mdl-richtext p a.atm-link--external > svg use, .mdl-form_accordion-panel__icon .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-accordion__icon a.atm-link--external > svg use, .mdl-richtext p .mdl-form_accordion-panel__icon a.atm-link--external > svg use,
.mdl-accordion__icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-form_accordion-panel__icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-accordion__icon a.atm-link--external > svg use,
.mdl-richtext ul .mdl-form_accordion-panel__icon a.atm-link--external > svg use,
.mdl-accordion__icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-form_accordion-panel__icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-accordion__icon a.atm-link--external > svg use,
.mdl-richtext ol .mdl-form_accordion-panel__icon a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-accordion__content {
    transition: opacity 0.5s ease-in-out, margin-top 0.5s ease-in-out, max-height 0.5s ease-in-out, margin-bottom 0.5s ease-in-out;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}
.mdl-accordion__content > *:last-of-type, .mdl-accordion__content > div:not([class^=mdl]) > *:last-of-type, .mdl-accordion__content > div:not([class^=mdl]) > div:not([class^=mdl]) > *:last-of-type, .mdl-accordion__content > div:not([class^=atm]) > *:last-of-type, .mdl-accordion__content > div:not([class^=atm]) > div:not([class^=atm]) > *:last-of-type {
    margin-bottom: 0;
}
.mdl-accordion__content .iconlist .grid-row {
    margin-left: unset;
    margin-right: unset;
}
.mdl-accordion .mdl-media--video .mdl-media__content {
    flex-basis: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
}
.mdl-accordion .mdl-spike {
    pointer-events: none;
}

@media only screen and (max-width: 768px) {
    .solid-accordion .mdl-accordion__header, .solid-accordion .mdl-form_accordion-panel__header {
        align-items: flex-start;
    }
    .solid-accordion .mdl-accordion__header .mdl-accordion__title, .solid-accordion .mdl-accordion__header .mdl-form_accordion-panel__title, .solid-accordion .mdl-form_accordion-panel__header .mdl-accordion__title, .solid-accordion .mdl-form_accordion-panel__header .mdl-form_accordion-panel__title {
        width: calc(100% - (40px + 0.75rem));
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}
.mdl-spike {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
}
.mdl-spike__spike {
    right: 1.1111111111rem;
    position: absolute;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    width: 100%;
    height: 200%;
    top: 0;
    background: #FFF;
    transform: translate3d(0, 0, 0) rotate(-3.6deg);
    transform-origin: right top;
}
@media all and (min-width: 64em) {
    .mdl-spike__spike {
        right: 1.6666666667rem;
    }
}
.mdl-spike__wrapper {
    width: calc(142 * 1px);
    min-width: calc(142 * 1px);
}
@media (min-width: 320px) {
    .mdl-spike__wrapper {
        width: calc(45.9821428571vw - 5.1428571429px);
    }
}
@media (min-width: 768px) {
    .mdl-spike__wrapper {
        width: calc(50vw - 36px);
    }
}
@media (min-width: 1024px) {
    .mdl-spike__wrapper {
        width: calc(43.75vw + 28px);
    }
}
@media (min-width: 1600px) {
    .mdl-spike__wrapper {
        width: calc(728 * 1px);
        max-width: calc(728 * 1px);
    }
}
.mdl-spike__content {
    padding-top: 2.6111111111rem;
    padding-bottom: 1.4444444444rem;
    z-index: 1;
    position: relative;
    margin: 0;
    box-sizing: border-box;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-spike__content {
        margin-right: 5.0931677019%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-spike__content {
        margin-right: 2.6548672566%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-spike__content {
        margin-right: 3.7037037037%;
    }
}
@media all and (min-width: 100em) {
    .mdl-spike__content {
        margin-right: 2.6548672566%;
    }
}
@media all and (min-width: 64em) {
    .mdl-spike__content {
        padding-top: 4rem;
    }
}
.mdl-spike--arrow .mdl-spike__content {
    padding-top: 2.6111111111rem;
}
.mdl-spike__content use {
    fill: #A61711;
}
.mdl-spike__row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    display: flex;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-spike__row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-spike__row {
        margin-left: -2.7272727273%;
        margin-right: -2.7272727273%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-spike__row {
        margin-left: -3.8461538462%;
        margin-right: -3.8461538462%;
    }
}
@media all and (min-width: 100em) {
    .mdl-spike__row {
        margin-left: -2.7272727273%;
        margin-right: -2.7272727273%;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-spike__row {
        display: none;
    }
}
.mdl-spike .mdl-infobox {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-spike .mdl-infobox {
        flex-basis: 0;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-spike .mdl-infobox {
        flex-basis: 0;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-spike .mdl-infobox {
        flex-basis: 58.9743589744%;
        margin-left: 3.8461538462%;
        margin-right: 3.8461538462%;
    }
}
@media all and (min-width: 100em) {
    .mdl-spike .mdl-infobox {
        flex-basis: 61.2121212121%;
        margin-left: 2.7272727273%;
        margin-right: 2.7272727273%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-spike .mdl-infobox {
        margin-left: 20.5128205128%;
    }
}
@media all and (min-width: 100em) {
    .mdl-spike .mdl-infobox {
        margin-left: 19.3939393939%;
    }
}
.mdl-spike__icon {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: flex;
    justify-content: center;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-spike__icon {
        flex-basis: 0;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-spike__icon {
        flex-basis: 0;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-spike__icon {
        flex-basis: 8.9743589744%;
        margin-left: 3.8461538462%;
        margin-right: 3.8461538462%;
    }
}
@media all and (min-width: 100em) {
    .mdl-spike__icon {
        flex-basis: 11.2121212121%;
        margin-left: 2.7272727273%;
        margin-right: 2.7272727273%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-spike__icon {
        margin-left: 79.4871794872%;
    }
}
@media all and (min-width: 100em) {
    .mdl-spike__icon {
        margin-left: 86.0606060606%;
    }
}

/** Styles for spike in Offer Card (GVBDEV-86) */
.mdl-offer_card .mdl-spike__spike {
    transform: translate3d(0, 0, 0) rotate(-3.6deg) skew(4.25deg, 0);
}
@media all and (min-width: 64em) {
    .mdl-offer_card .mdl-spike__spike {
        transform: translate3d(4%, 0, 0) rotate(-3.6deg) skew(4.25deg, 0);
    }
}
.mdl-offer_card .mdl-spike__content {
    padding-top: 2.8333333333rem;
}

/** Styles for spike in product */
.mdl-product .mdl-spike__spike,
.mdl-gap-product .mdl-spike__spike {
    transform: translate3d(0, 0, 0) rotate(-3.6deg) skew(4.25deg, 0);
    width: 105%;
}
@media all and (min-width: 64em) {
    .mdl-product .mdl-spike__spike,
    .mdl-gap-product .mdl-spike__spike {
        transform: translate3d(3%, 0, 0) rotate(-3.6deg) skew(4.25deg, 0);
    }
}
.mdl-product .mdl-spike__content,
.mdl-gap-product .mdl-spike__content {
    padding-top: 1.6666666667rem;
}

/** Styles for spike in teaser (GVBDEV-88) */
.mdl-teaser .mdl-spike__spike {
    transform: translate3d(0, 0, 0) rotate(-3.6deg) skew(4.25deg, 0);
    width: 105%;
}
@media all and (min-width: 64em) {
    .mdl-teaser .mdl-spike__spike {
        transform: translate3d(3%, 0, 0) rotate(-3.6deg) skew(4.25deg, 0);
    }
}
.mdl-teaser .mdl-spike__content {
    padding-top: 2.7222222222rem;
}
@media all and (min-width: 48em) {
    .mdl-teaser .mdl-spike__content {
        padding-top: 2.8888888889rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-teaser .mdl-spike__content {
        padding-top: 3.1111111111rem;
    }
}
.mdl-teaser--small .mdl-spike__content {
    padding-top: 1.6666666667rem;
}
.mdl-teaser--medium .mdl-spike__content {
    padding-top: 1.6666666667rem;
}
@media all and (min-width: 64em) {
    .mdl-teaser--medium .mdl-spike__content {
        padding-top: 1.1666666667rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser--medium .mdl-spike__content {
        padding-top: 2.8333333333rem;
    }
}

.mdl-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    /**
     * MIRRORED VERSION
     */
}
.mdl-stage--first .mdl-stage__content {
    z-index: 5;
}
.mdl-stage--video {
    min-height: fit-content !important;
}
.mdl-stage--video .mdl-media__figcaption {
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}
.mdl-stage--no-media {
    min-height: fit-content !important;
}
.mdl-stage--no-media .mdl-stage__cell {
    height: auto;
}
@media all and (max-width: 63.99em) {
    .mdl-stage {
        flex-direction: column-reverse;
    }
    .mdl-stage--has-infobox .mdl-stage__cell--media {
        position: absolute;
        width: 100%;
        z-index: 5;
    }
    .mdl-scrollytelling .mdl-stage--has-infobox .mdl-stage__cell--media {
        position: relative;
    }
    .mdl-stage--has-infobox .mdl-stage__cell:last-of-type {
        box-sizing: content-box;
        z-index: 5;
    }
    .mdl-stage [data-stage=imageCell] {
        bottom: auto !important;
    }
}
@media all and (max-width: 63.99em) and (min-width: 0em) {
    .mdl-stage--has-spike [data-stage=content] {
        margin-top: -2.1666666667rem;
    }
}
@media all and (max-width: 63.99em) and (min-width: 48em) {
    .mdl-stage--has-spike [data-stage=content] {
        margin-top: -1rem;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-stage--has-spike .mdl-stage__content:has(.mdl-quick-navigation) {
        z-index: 6;
    }
    .mdl-stage--no-media {
        min-height: fit-content;
        padding-top: 1rem;
    }
    .mdl-stage--no-media .mdl-stage__cell {
        height: auto;
    }
    .mdl-stage--no-media .mdl-stage__cell--media {
        height: min-content;
        display: none;
    }
    .mdl-stage .mdl-stage__inside {
        max-width: calc(284 * 1px);
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 63.99em) and (min-width: 320px) {
    .mdl-stage .mdl-stage__inside {
        max-width: calc(91.9642857143vw - 10.2857142857px);
    }
}
@media (max-width: 63.99em) and (min-width: 768px) {
    .mdl-stage .mdl-stage__inside {
        max-width: calc(100vw - 72px);
    }
}
@media (max-width: 63.99em) and (min-width: 1024px) {
    .mdl-stage .mdl-stage__inside {
        max-width: calc(87.5vw + 56px);
    }
}
@media (max-width: 63.99em) and (min-width: 1600px) {
    .mdl-stage .mdl-stage__inside {
        max-width: calc(1456 * 1px);
    }
}
.mdl-stage--img-bottom {
    margin-bottom: 2rem;
}
.mdl-stage__cell {
    position: relative;
}
.mdl-stage__cell--image, .mdl-stage__cell--video {
    flex-direction: column;
    background: #FFF;
}
.mdl-stage__cell--media {
    display: flex;
}
.mdl-stage__cell--media .mdl-media--video {
    width: 50vw;
}
@media all and (min-width: 64em) {
    .mdl-stage__cell--media {
        max-height: 60vh;
        height: 100vh;
    }
}
.mdl-stage__cell--scrollable {
    position: relative;
}
.mdl-stage__img {
    object-fit: cover;
    font-family: "object-fit: cover";
    display: block;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    image-rendering: -webkit-optimize-contrast;
}
.mdl-stage__img--fit-image {
    object-fit: contain;
    font-family: "object-fit: contain";
}
.mdl-stage__inside {
    max-height: 100%;
}
.mdl-stage__content {
    position: relative;
    z-index: 1;
}
@media all and (max-width: 63.99em) {
    .mdl-stage__content {
        margin-top: 1rem;
    }
}
.mdl-stage__content h1, .mdl-stage__content .mdl-form_step__heading,
.mdl-stage__content h2,
.mdl-stage__content h3,
.mdl-stage__content h4,
.mdl-stage__content h5 {
    font-weight: 100;
}
.mdl-stage__infobox {
    position: relative;
    z-index: 1;
}
.mdl-stage .mdl-infobox .atm-paragraph, .mdl-stage .mdl-infobox .mdl-plain-text-accordion__height-representation, .mdl-stage .mdl-infobox .mdl-plain-text-accordion__text, .mdl-stage .mdl-infobox .mdl-filter__label, .mdl-stage .mdl-infobox .mdl-dropdown__title, .mdl-stage .mdl-infobox .mdl-input-list__label, .mdl-stage .mdl-infobox .mdl-richtext p, .mdl-richtext .mdl-stage .mdl-infobox p {
    word-break: break-word;
}
.mdl-stage .mdl-stage__cell:first-of-type {
    justify-content: flex-end;
}
.mdl-stage--mirrored .mdl-stage__cell:first-of-type {
    justify-content: flex-start;
}

@media all and (min-width: 48em) {
    .mdl-stage__cell--image, .mdl-stage__cell--video {
        background: #FFF;
    }
}
/** DESKTOP AND TABLET HORIZONTAL STYLES */
@media all and (min-width: 64em) {
    .mdl-stage {
        flex-direction: row;
        min-height: 100vh;
    }
    .mdl-stage--first {
        margin-bottom: 2.1666666667rem;
        min-height: calc(100vh - 3.5555555556rem);
    }
    .mdl-stage--first .mdl-stage__img {
        height: calc(100vh - 3.5555555556rem);
    }
    /* SPECIAL STYLES FOR CHILDREN */
}
@media all and (min-width: 64em) and (min-width: 162.5em) {
    .mdl-stage--first .mdl-stage__img {
        object-fit: contain;
        font-family: "object-fit: contain";
    }
}
@media all and (min-width: 64em) {
    .mdl-stage--first .mdl-stage__cell--media {
        max-height: calc(100vh - 3.5555555556rem);
    }
    .mdl-stage--no-space {
        margin-bottom: 0;
    }
    .mdl-stage__cell {
        width: 50vw;
        position: relative;
    }
    .mdl-stage__cell--media {
        height: 100vh;
        max-height: none;
    }
    .mdl-stage__cell:not(.mdl-stage__cell--media) {
        display: flex;
        align-items: center;
        padding-top: 0;
    }
    .mdl-stage__cell--image, .mdl-stage__cell--video {
        background: #FFF;
        display: flex;
        flex-direction: column;
    }
    .mdl-stage__cell--image .mdl-media__figcaption, .mdl-stage__cell--video .mdl-media__figcaption {
        align-self: start;
    }
    .mdl-stage__cell--video {
        height: min-content;
    }
    .mdl-stage__cell--content-cell-video, .mdl-stage__cell--content-cell-img {
        margin: unset;
        align-self: center !important;
    }
    .mdl-stage__inside {
        width: 100%;
        max-width: calc(728 * 1px);
        overflow-y: auto;
        overflow-x: hidden;
    }
    .mdl-stage--has-spike:not(.mdl-stage--has-infobox) .mdl-stage__inside {
        margin-top: 0;
    }
    .mdl-stage__inside .mdl-infobox {
        display: none;
    }
    .mdl-stage__content {
        box-sizing: content-box;
        box-sizing: content-box;
        box-sizing: content-box;
        box-sizing: content-box;
    }
}
@media all and (min-width: 64em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-stage__content {
        padding-left: 15.2795031056%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-stage__content {
        padding-left: 7.9646017699%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-stage__content {
        padding-left: 11.1111111111%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-stage__content {
        padding-left: 7.9646017699%;
    }
}
@media all and (min-width: 64em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-stage__content {
        padding-right: 15.2795031056%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-stage__content {
        padding-right: 7.9646017699%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-stage__content {
        padding-right: 11.1111111111%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-stage__content {
        padding-right: 7.9646017699%;
    }
}
@media all and (min-width: 64em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-stage__content {
        padding-top: 15.2795031056%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-stage__content {
        padding-top: 7.9646017699%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-stage__content {
        padding-top: 11.1111111111%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-stage__content {
        padding-top: 7.9646017699%;
    }
}
@media all and (min-width: 64em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-stage__content {
        padding-bottom: 15.2795031056%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-stage__content {
        padding-bottom: 7.9646017699%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-stage__content {
        padding-bottom: 11.1111111111%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-stage__content {
        padding-bottom: 7.9646017699%;
    }
}
@media all and (min-width: 64em) {
    .mdl-stage__content > :first-child {
        padding-right: 0;
    }
    .mdl-stage--no-media .mdl-stage__content {
        box-sizing: content-box;
        box-sizing: content-box;
    }
}
@media all and (min-width: 64em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-stage--no-media .mdl-stage__content {
        padding-top: 30.5590062112%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-stage--no-media .mdl-stage__content {
        padding-top: 15.9292035398%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-stage--no-media .mdl-stage__content {
        padding-top: 22.2222222222%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-stage--no-media .mdl-stage__content {
        padding-top: 15.9292035398%;
    }
}
@media all and (min-width: 64em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-stage--no-media .mdl-stage__content {
        padding-bottom: 30.5590062112%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-stage--no-media .mdl-stage__content {
        padding-bottom: 15.9292035398%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-stage--no-media .mdl-stage__content {
        padding-bottom: 22.2222222222%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-stage--no-media .mdl-stage__content {
        padding-bottom: 15.9292035398%;
    }
}
@media all and (min-width: 64em) {
    .mdl-stage--fixed-img .mdl-stage__cell--media {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        height: 100vh;
    }
    .mdl-stage--img-bottom .mdl-stage__cell--media {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        left: auto;
        height: 100vh;
    }
    .mdl-stage--img-bottom .atm-video {
        position: absolute;
        right: 0;
        bottom: 0;
        left: auto;
    }
    .mdl-stage--img-bottom .mdl-media__figcaption,
    .mdl-stage--img-bottom .mdl-stage__figcaption {
        position: absolute;
        right: 0;
        bottom: -1.6666666667rem;
        left: auto;
    }
    .mdl-stage--mirrored {
        flex-direction: row-reverse;
    }
    .mdl-stage--mirrored.mdl-stage--fixed-img .mdl-stage__cell--media {
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        height: 100vh;
    }
    .mdl-stage--mirrored.mdl-stage--img-bottom .mdl-stage__cell--media {
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        height: 100vh;
    }
    .mdl-stage--mirrored.mdl-stage--img-bottom .atm-video {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
    }
    .mdl-stage--mirrored.mdl-stage--img-bottom .mdl-media__figcaption,
    .mdl-stage--mirrored.mdl-stage--img-bottom .mdl-stage__figcaption {
        position: absolute;
        top: auto;
        right: auto;
        bottom: -1.6666666667rem;
        left: 0;
    }
    .mdl-linklist-wrapper {
        width: 100%;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-infobox {
        min-width: 100vw;
        position: relative;
        margin-left: 50%;
        left: -50vw;
        display: flex;
        position: relative;
        padding-top: 1.7222222222rem;
        padding-bottom: 2.2222222222rem;
    }
    .is-ie .mdl-infobox {
        max-width: calc(100vw - calc(17 * 1px));
        margin-left: calc(50% + (calc(8.5 * 1px)));
    }
    .mdl-infobox:before {
        background: linear-gradient(to bottom right, #D1D1D1, #767675);
        position: absolute;
        inset: 0;
        display: block;
        content: " ";
        opacity: 0.3;
    }
    .mdl-infobox__row {
        flex-grow: inherit;
        flex-shrink: inherit;
        max-width: 100%;
        display: flex;
        text-align: center;
    }
}
@media all and (max-width: 63.99em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-infobox__row {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-infobox__row {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-infobox__row {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 100em) {
    .mdl-infobox__row {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-infobox__cell {
        flex-grow: inherit;
        flex-shrink: inherit;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }
}
@media all and (max-width: 63.99em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-infobox__cell {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-infobox__cell {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-infobox__cell {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 100em) {
    .mdl-infobox__cell {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
.mdl-gallery {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin-bottom: 2.1666666667rem;
}
.mdl-gallery__tile {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: flex;
    margin-bottom: 2.1666666667rem;
    position: relative;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-gallery__tile {
        flex-basis: 44.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-gallery__tile {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-gallery__tile {
        flex-basis: 21.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-gallery__tile {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
.mdl-gallery__tile .atm-image {
    pointer-events: none;
}
.mdl-gallery__trigger {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    flex: 1 1 auto;
}
.mdl-gallery__trigger:focus {
    outline: none;
}

.pswp__counter--custom {
    display: none;
}
.pswp__button use {
    fill: #FFF;
}

.mdl-input-list__label {
    display: flex;
}
.mdl-input-list--no-padding .mdl-input-list__list {
    padding-left: 0;
    padding-right: 0;
}
.mdl-input-list__list {
    font-size: 0;
    padding-left: 1.5555555556rem;
}
.mdl-input-list__item {
    display: flex;
    margin-bottom: 1rem;
}
.mdl-input-list__item:last-of-type, .mdl-input-list__list > *:last-of-type .mdl-input-list__item {
    margin-bottom: 0;
}
.mdl-input-list--disabled .mdl-input-list__label {
    color: rgba(118, 118, 117, 0.6);
}
.mdl-input-list--horizontal .mdl-input-list__item {
    display: inline-flex;
    margin-right: 1rem;
}
.mdl-input-list--marginless .mdl-input-list__list {
    padding-left: 0;
}
.mdl-input-list.invalid legend {
    color: #EE000C;
}
.mdl-input-list .atm-infotext, .mdl-input-list .mdl-infotext {
    margin-left: 0.5rem;
    display: inline-flex;
    vertical-align: middle;
}

.mdl-numeric-facts {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 4rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-numeric-facts {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-numeric-facts {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-numeric-facts {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-numeric-facts {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-numeric-facts {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-numeric-facts {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-numeric-facts {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-numeric-facts {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-numeric-facts > .mdl-numeric-facts__box:last-of-type, .mdl-numeric-facts > div:not([class^=mdl]) > .mdl-numeric-facts__box:last-of-type, .mdl-numeric-facts > div:not([class^=mdl]) > div:not([class^=mdl]) > .mdl-numeric-facts__box:last-of-type, .mdl-numeric-facts > div:not([class^=atm]) > .mdl-numeric-facts__box:last-of-type, .mdl-numeric-facts > div:not([class^=atm]) > div:not([class^=atm]) > .mdl-numeric-facts__box:last-of-type {
    border-right: 0;
    border-bottom: 0;
}
@media all and (min-width: 48em) {
    .mdl-numeric-facts {
        flex-direction: row;
        margin-bottom: 2.1666666667rem;
    }
}
.mdl-numeric-facts__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #9D9F9D;
    flex: 0 0 33.3333%;
    padding: 1rem 0;
    margin: 0;
    text-align: center;
}
@media all and (min-width: 48em) {
    .mdl-numeric-facts__box {
        border-bottom: 0;
        border-right: 1px solid #9D9F9D;
    }
}
@media all and (min-width: 48em) and (max-width: 99.99em) {
    .mdl-numeric-facts__box {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.mdl-numeric-facts__title {
    font-size: calc(24 * 1px);
    line-height: 1.3;
}
@media (min-width: 0px) {
    .mdl-numeric-facts__title {
        font-size: calc(2.34375vw + 24px);
    }
}
@media (min-width: 768px) {
    .mdl-numeric-facts__title {
        font-size: calc(42 * 1px);
    }
}
.mdl-numeric-facts__description {
    margin-top: 0.5rem;
    font-size: 0.8333333333rem;
    line-height: 1.7;
    text-align: center;
    padding: 0 1rem 0 1rem;
    max-width: 100%;
}
@media all and (min-width: 48em) {
    .mdl-numeric-facts__description {
        margin-top: 1rem;
    }
}

.mdl-table {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 2.1666666667rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-table {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-table {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-table {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-table {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-table {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-table {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-table {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-table {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-table:not(.mdl-table--with-header) .mdl-table__scroll-area {
    border-top: 1px solid rgba(157, 159, 157, 0.6);
    border-bottom: 1px solid rgba(157, 159, 157, 0.6);
}
.mdl-table .atm-paragraph, .mdl-table .mdl-plain-text-accordion__height-representation, .mdl-table .mdl-plain-text-accordion__text, .mdl-table .mdl-filter__label, .mdl-table .mdl-dropdown__title, .mdl-table .mdl-richtext p, .mdl-richtext .mdl-table p, .mdl-table .mdl-input-list__label {
    margin-bottom: 0;
}
.mdl-table .atm-link, .mdl-table .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-table a, .mdl-table .context-ghi .atm-ghi-link, .context-ghi .mdl-table .atm-ghi-link, .mdl-table .mdl-promo-textteaser__description, .mdl-table .atm-paragraph a, .mdl-table .mdl-plain-text-accordion__height-representation a, .mdl-table .mdl-plain-text-accordion__text a, .mdl-table .mdl-filter__label a, .mdl-table .mdl-dropdown__title a, .atm-paragraph .mdl-table a, .mdl-plain-text-accordion__height-representation .mdl-table a, .mdl-plain-text-accordion__text .mdl-table a, .mdl-filter__label .mdl-table a, .mdl-dropdown__title .mdl-table a, .mdl-table .mdl-iconlist__link, .mdl-table .mdl-richtext a, .mdl-richtext .mdl-table a,
.mdl-table .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-table a[download],
.mdl-table .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-table a[download], .mdl-table .mdl-input-list__label a, .mdl-input-list__label .mdl-table a {
    word-break: normal;
}
.mdl-table__figure {
    margin: 0;
}
.mdl-table__figure .atm-figcaption {
    margin-top: 1rem;
}
.mdl-table__scroll-area {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.mdl-table__wrapper {
    width: 100%;
    overflow-x: auto;
}
.mdl-table__table {
    width: 100%;
    border-spacing: 0;
}
.mdl-table__cell {
    padding: 1rem;
    vertical-align: top;
}
.mdl-table__cell--header {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
    text-align: left;
}
.mdl-table__cell b {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}
.mdl-table__caption {
    text-align: left;
    font-size: 0.8333333333rem;
    margin-top: 1rem;
}
.mdl-table__shadow {
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    opacity: 0;
    position: absolute;
    width: 0.5rem;
    height: 100%;
    top: 0;
}
.mdl-table__shadow--left {
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(270deg, rgba(40, 38, 37, 0) 0, rgba(40, 38, 37, 0.3) 100%);
}
.mdl-table__shadow--right {
    right: 0;
    transform: translateX(100%);
    background: linear-gradient(90deg, rgba(40, 38, 37, 0) 0, rgba(40, 38, 37, 0.3) 100%);
}
.mdl-table--with-header .mdl-table__cell {
    border-bottom: 1px solid rgba(157, 159, 157, 0.6);
}
.mdl-table--shadow-left {
    overflow-x: scroll;
}
.mdl-table--shadow-left .mdl-table__shadow--left {
    opacity: 1;
    transform: translateX(0);
}
.mdl-table--shadow-right {
    overflow-x: scroll;
}
.mdl-table--shadow-right .mdl-table__shadow--right {
    opacity: 1;
    transform: translateX(0);
}

.mdl-layout-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}
@media all and (max-width: 47.99em) {
    .mdl-layout-container__col-25:not(:last-of-type), .mdl-layout-container__col-75:not(:last-of-type) {
        margin-bottom: 2.1666666667rem;
    }
}
.mdl-layout-container__col-25 {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-layout-container__col-25 {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-layout-container__col-25 {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-layout-container__col-25 {
        flex-basis: 21.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-layout-container__col-25 {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
.mdl-layout-container__col-50 {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 1rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-layout-container__col-50 {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-layout-container__col-50 {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-layout-container__col-50 {
        flex-basis: 46.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-layout-container__col-50 {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
.mdl-layout-container:not(.mdl-layout-container--full-width) .mdl-layout-container__col-50 {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-layout-container:not(.mdl-layout-container--full-width) .mdl-layout-container__col-50 {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-layout-container:not(.mdl-layout-container--full-width) .mdl-layout-container__col-50 {
        flex-basis: 41.6666666667%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-layout-container:not(.mdl-layout-container--full-width) .mdl-layout-container__col-50 {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-layout-container:not(.mdl-layout-container--full-width) .mdl-layout-container__col-50 {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
.mdl-layout-container:not(.mdl-layout-container--full-width) .mdl-layout-container__col-50:first-of-type {
    margin-bottom: 2.1666666667rem;
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-layout-container:not(.mdl-layout-container--full-width) .mdl-layout-container__col-50:first-of-type {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-layout-container:not(.mdl-layout-container--full-width) .mdl-layout-container__col-50:first-of-type {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-layout-container:not(.mdl-layout-container--full-width) .mdl-layout-container__col-50:first-of-type {
        margin-left: 17.994100295%;
    }
}
.mdl-layout-container__col-75 {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-layout-container__col-75 {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-layout-container__col-75 {
        flex-basis: 72.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-layout-container__col-75 {
        flex-basis: 71.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-layout-container__col-75 {
        flex-basis: 72.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 48em) {
    .mdl-layout-container {
        flex-direction: row;
    }
}

.mdl-image_text {
    display: flex;
    flex-basis: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    margin-bottom: 2.1666666667rem;
}
.mdl-image_text__heading {
    font-weight: 400;
}
.mdl-image_text__heading:not(.mdl-image_text__heading--rich-text) {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-image_text__heading:not(.mdl-image_text__heading--rich-text) {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text__heading:not(.mdl-image_text__heading--rich-text) {
        flex-basis: 80.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 80.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-image_text__heading:not(.mdl-image_text__heading--rich-text) {
        flex-basis: 79.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 79.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .mdl-image_text__heading:not(.mdl-image_text__heading--rich-text) {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text__heading:not(.mdl-image_text__heading--rich-text) {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-image_text__heading:not(.mdl-image_text__heading--rich-text) {
        margin-left: 6.4814814815%;
    }
}
@media all and (min-width: 64em) {
    .mdl-image_text__heading {
        display: none;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-image_text__heading--rich-text {
        display: none;
    }
}
@media all and (min-width: 64em) {
    .mdl-image_text__heading--rich-text {
        display: block;
    }
}
[class^=mdl] .mdl-image_text__text .mdl-accordion {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
@media all and (max-width: 63.99em) {
    .mdl-image_text__text {
        margin-top: 1rem;
    }
}
.mdl-image_text > .mdl-richtext:last-of-type, .mdl-image_text > div:not([class^=mdl]) > .mdl-richtext:last-of-type, .mdl-image_text > div:not([class^=mdl]) > div:not([class^=mdl]) > .mdl-richtext:last-of-type, .mdl-image_text > div:not([class^=atm]) > .mdl-richtext:last-of-type, .mdl-image_text > div:not([class^=atm]) > div:not([class^=atm]) > .mdl-richtext:last-of-type {
    margin-bottom: 0;
}
.mdl-image_text:not(.mdl-image_text--wide) {
    justify-content: flex-end;
}
.mdl-image_text:not(.mdl-image_text--wide) .mdl-media {
    margin-bottom: 1rem;
}
@media all and (min-width: 100em) {
    .mdl-image_text:not(.mdl-image_text--wide):not(.mdl-image_text--inverted) {
        justify-content: center;
    }
}
@media all and (max-width: 99.99em) {
    .mdl-image_text:not(.mdl-image_text--wide):not(.mdl-image_text--inverted) {
        justify-content: flex-start;
    }
}
.mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__image-wrapper {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__image-wrapper {
        flex-basis: 61.5734989648%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 61.5734989648%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__image-wrapper {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__image-wrapper {
        flex-basis: 12.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 12.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__image-wrapper {
        flex-basis: 14.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 14.01179941%;
    }
}
@media all and (max-width: 99.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__image-wrapper {
        flex-basis: unset;
    }
}
@media all and (min-width: 100em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__image-wrapper {
        margin-left: 19.2132505176%;
    }
}
@media all and (min-width: 100em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__image-wrapper {
        margin-left: 34.6607669617%;
    }
}
.mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__text {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__text {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__text {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__text {
        flex-basis: 46.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 46.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__text {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 47.3451327434%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text:not(.mdl-image_text--wide) .mdl-image_text__text {
        margin-left: 6.853321127%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text:not(.mdl-image_text--wide).mdl-image_text--inverted .mdl-image_text__text {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-image_text:not(.mdl-image_text--wide).mdl-image_text--inverted .mdl-image_text__text {
        margin-left: 14.8148148148%;
    }
}
@media all and (min-width: 100em) {
    .mdl-image_text:not(.mdl-image_text--wide).mdl-image_text--inverted .mdl-image_text__text {
        margin-left: 15.3392330383%;
    }
}
@media all and (min-width: 64em) {
    .mdl-image_text:not(.mdl-image_text--wide).mdl-image_text--inverted .mdl-image_text__text {
        order: 1;
    }
}
@media all and (min-width: 100em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-image_text:not(.mdl-image_text--wide).mdl-image_text--inverted .mdl-image_text__image-wrapper {
        margin-left: 14.1200828157%;
    }
}
@media all and (min-width: 100em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text:not(.mdl-image_text--wide).mdl-image_text--inverted .mdl-image_text__image-wrapper {
        margin-left: 32.005899705%;
    }
}
@media all and (min-width: 64em) {
    .mdl-image_text:not(.mdl-image_text--wide).mdl-image_text--inverted .mdl-image_text__image-wrapper {
        order: 2;
    }
}
.mdl-image_text--wide:not(.mdl-image_text--inverted) {
    justify-content: flex-start;
}
.mdl-image_text--wide .mdl-image_text__image-wrapper {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-image_text--wide .mdl-image_text__image-wrapper {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text--wide .mdl-image_text__image-wrapper {
        flex-basis: 52.6548672566%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 52.6548672566%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-image_text--wide .mdl-image_text__image-wrapper {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 29.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .mdl-image_text--wide .mdl-image_text__image-wrapper {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text--wide .mdl-image_text__image-wrapper {
        margin-left: 23.6725663717%;
    }
}
.mdl-image_text--wide .mdl-image_text__text {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-image_text--wide .mdl-image_text__text {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text--wide .mdl-image_text__text {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-image_text--wide .mdl-image_text__text {
        flex-basis: 46.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 46.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-image_text--wide .mdl-image_text__text {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 47.3451327434%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text--wide .mdl-image_text__text {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-image_text--wide.mdl-image_text--inverted .mdl-image_text__text {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-image_text--wide.mdl-image_text--inverted .mdl-image_text__text {
        margin-left: 14.8148148148%;
    }
}
@media all and (min-width: 100em) {
    .mdl-image_text--wide.mdl-image_text--inverted .mdl-image_text__text {
        margin-left: 15.3392330383%;
    }
}
@media all and (min-width: 64em) {
    .mdl-image_text--wide.mdl-image_text--inverted .mdl-image_text__text {
        order: 1;
    }
}
@media all and (min-width: 64em) {
    .mdl-image_text--wide.mdl-image_text--inverted .mdl-image_text__image-wrapper {
        order: 2;
    }
}

.context-mb .mdl-image_text__heading .atm-heading, .context-mb .mdl-image_text__heading .context-ghi .mdl-offer_card__lead, .context-ghi .context-mb .mdl-image_text__heading .mdl-offer_card__lead, .context-mb .mdl-image_text__heading .mdl-sub-navigation__title, .context-mb .mdl-image_text__heading .mdl-richtext h2, .mdl-richtext .context-mb .mdl-image_text__heading h2,
.context-mb .mdl-image_text__heading .mdl-richtext h3,
.mdl-richtext .context-mb .mdl-image_text__heading h3,
.context-mb .mdl-image_text__heading .mdl-richtext h4,
.mdl-richtext .context-mb .mdl-image_text__heading h4 {
    font-family: "TT Milks Casual", Frutiger, sans-serif;
}

/*
* Minimum height - with 2 option items
*/
/**
* Medium height - with 3 Option Items
*/
/**
* Maximum height - with 4 or more option items
*
* (Magic value from Design a bit adjusted)
*/
.mdl-dropdown--wide {
    width: 100%;
}
@media all and (min-width: 48em) {
    .mdl-dropdown--wide {
        width: 78%;
    }
}
@media all and (min-width: 64em) {
    .mdl-dropdown--wide {
        width: 100%;
    }
}
@media all and (min-width: 100em) {
    .mdl-dropdown--wide {
        width: 74.358974359%;
    }
}
.mdl-dropdown--medium {
    width: 100%;
}
@media all and (min-width: 48em) {
    .mdl-dropdown--medium {
        width: 78%;
    }
}
@media all and (min-width: 64em) {
    .mdl-dropdown--medium {
        width: 74.358974359%;
    }
}
@media all and (min-width: 100em) {
    .mdl-dropdown--medium {
        width: 47.5%;
    }
}
.mdl-dropdown--narrow {
    width: 65.5172413793%;
}
@media all and (min-width: 48em) {
    .mdl-dropdown--narrow {
        width: 58%;
    }
}
@media all and (min-width: 64em) {
    .mdl-dropdown--narrow {
        width: 48.7179487179%;
    }
}
@media all and (min-width: 100em) {
    .mdl-dropdown--narrow {
        width: 35.8974358974%;
    }
}
.mdl-dropdown--small {
    width: 65.5172413793%;
}
@media all and (min-width: 48em) {
    .mdl-dropdown--small {
        width: 28.5714285714%;
    }
}
@media all and (min-width: 64em) {
    .mdl-dropdown--small {
        width: 35.8974358974%;
    }
}
@media all and (min-width: 100em) {
    .mdl-dropdown--small {
        width: 20.2898550725%;
    }
}
.mdl-dropdown__title {
    position: relative;
    padding-right: 1.8888888889rem;
    margin-bottom: 1rem;
}
.mdl-dropdown__title .atm-infotext, .mdl-dropdown__title .mdl-infotext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.mdl-dropdown__content {
    position: relative;
}
.mdl-dropdown__content .atm-loading {
    position: absolute;
    z-index: 1;
    right: 2px;
    top: 0;
    height: 4rem;
    background: #fff;
    border-radius: 0 5px 5px 0;
}
.mdl-dropdown__content .atm-loading__bubble {
    background: #A61711;
    top: 1.5555555556rem;
    margin-left: -0.2777777778rem;
}
.mdl-dropdown__trigger-wrapper {
    position: relative;
    display: flex;
    height: 4rem;
    align-items: flex-end;
    background-color: #FFF;
    margin: 0.1111111111rem;
}
.mdl-dropdown__trigger-wrapper, .mdl-dropdown__options-wrapper {
    border-radius: 5px;
}
.mdl-dropdown__trigger, .mdl-dropdown__clear {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: inline-flex;
}
.mdl-dropdown__trigger:focus, .mdl-dropdown__clear:focus {
    outline: none;
}
.mdl-dropdown__trigger {
    width: 100%;
    height: 100%;
}
.mdl-dropdown__trigger .atm-icon, .mdl-dropdown__trigger .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown__trigger a[download] > svg, .mdl-dropdown__trigger .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown__trigger a.atm-link--external > svg,
.mdl-dropdown__trigger .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__trigger a.atm-link--external > svg,
.mdl-dropdown__trigger .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__trigger a.atm-link--external > svg {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%) rotate(0deg);
    transition: 300ms transform ease-in-out;
}
.mdl-dropdown__trigger .atm-icon use, .mdl-dropdown__trigger .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__trigger a[download] > svg use, .mdl-dropdown__trigger .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__trigger a.atm-link--external > svg use,
.mdl-dropdown__trigger .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__trigger a.atm-link--external > svg use,
.mdl-dropdown__trigger .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__trigger a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-dropdown__trigger-value {
    position: absolute;
    left: 1.5555555556rem;
    top: 2.1111111111rem;
    transform: translateY(-50%);
    display: inline-flex;
    flex-basis: 100%;
    line-height: 1.2;
    width: calc(100% - (1.5555555556rem + 1.8888888889rem + 1rem));
}
.mdl-dropdown__trigger-value span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mdl-dropdown--disabled .mdl-dropdown__options-wrapper, .mdl-dropdown--readonly .mdl-dropdown__options-wrapper {
    outline: none;
    border-color: rgba(157, 159, 157, 0.4);
}
.mdl-dropdown--disabled .mdl-dropdown__trigger-wrapper, .mdl-dropdown--readonly .mdl-dropdown__trigger-wrapper {
    background: rgba(241, 241, 241, 0.4);
}
.mdl-dropdown--disabled .atm-icon use, .mdl-dropdown--disabled .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown--disabled a[download] > svg use, .mdl-dropdown--disabled .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown--disabled a.atm-link--external > svg use,
.mdl-dropdown--disabled .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown--disabled a.atm-link--external > svg use,
.mdl-dropdown--disabled .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown--disabled a.atm-link--external > svg use, .mdl-dropdown--readonly .atm-icon use, .mdl-dropdown--readonly .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown--readonly a[download] > svg use, .mdl-dropdown--readonly .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown--readonly a.atm-link--external > svg use,
.mdl-dropdown--readonly .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown--readonly a.atm-link--external > svg use,
.mdl-dropdown--readonly .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown--readonly a.atm-link--external > svg use {
    fill: #767675;
}
.mdl-dropdown--disabled .mdl-dropdown__trigger, .mdl-dropdown--readonly .mdl-dropdown__trigger {
    cursor: default;
}
.mdl-dropdown--disabled .mdl-dropdown__trigger-value span, .mdl-dropdown--readonly .mdl-dropdown__trigger-value span {
    color: #767675;
}
.mdl-dropdown--phone .mdl-dropdown__trigger {
    padding-left: 1.5555555556rem;
    padding-right: 1.8333333333rem;
    width: auto;
    align-items: center;
}
.mdl-dropdown--phone .mdl-dropdown__trigger .atm-icon, .mdl-dropdown--phone .mdl-dropdown__trigger .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown--phone .mdl-dropdown__trigger a[download] > svg, .mdl-dropdown--phone .mdl-dropdown__trigger .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown--phone .mdl-dropdown__trigger a.atm-link--external > svg,
.mdl-dropdown--phone .mdl-dropdown__trigger .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown--phone .mdl-dropdown__trigger a.atm-link--external > svg,
.mdl-dropdown--phone .mdl-dropdown__trigger .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown--phone .mdl-dropdown__trigger a.atm-link--external > svg {
    right: 0;
}
.mdl-dropdown--phone .mdl-dropdown__trigger-value {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}
.mdl-dropdown--phone .mdl-dropdown__trigger,
.mdl-dropdown--phone .mdl-dropdown__input {
    height: calc(100% - (0.7222222222rem + 1.0555555556rem));
}
.mdl-dropdown--phone .mdl-dropdown__input {
    -webkit-appearance: none;
    margin: 0;
}
.mdl-dropdown--phone .mdl-dropdown__input[type=number] {
    -moz-appearance: textfield;
}
.mdl-dropdown--phone .atm-infotext, .mdl-dropdown--phone .mdl-infotext {
    align-self: center;
    margin-right: 1rem;
}
.mdl-dropdown__trigger-value, .mdl-dropdown__input, .mdl-dropdown__option-label {
    color: #9D9F9D;
}
.mdl-dropdown__trigger:hover .mdl-dropdown__trigger-value, .mdl-dropdown__trigger:focus .mdl-dropdown__trigger-value, .mdl-dropdown__input:focus, .mdl-dropdown__input:hover, .mdl-dropdown__input:hover::placeholder, .mdl-dropdown__option-input:checked + .mdl-dropdown__option-label, .mdl-dropdown__option-input:focus + .mdl-dropdown__option-label, .mdl-dropdown__option-label:hover {
    color: #282625;
}
.mdl-dropdown__trigger:hover .atm-icon, .mdl-dropdown__trigger:hover .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown__trigger:hover a[download] > svg, .mdl-dropdown__trigger:hover .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown__trigger:hover a.atm-link--external > svg,
.mdl-dropdown__trigger:hover .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__trigger:hover a.atm-link--external > svg,
.mdl-dropdown__trigger:hover .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__trigger:hover a.atm-link--external > svg, .mdl-dropdown__trigger:focus .atm-icon, .mdl-dropdown__trigger:focus .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown__trigger:focus a[download] > svg, .mdl-dropdown__trigger:focus .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown__trigger:focus a.atm-link--external > svg,
.mdl-dropdown__trigger:focus .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__trigger:focus a.atm-link--external > svg,
.mdl-dropdown__trigger:focus .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__trigger:focus a.atm-link--external > svg, .mdl-dropdown__clear:focus .atm-icon, .mdl-dropdown__clear:focus .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown__clear:focus a[download] > svg, .mdl-dropdown__clear:focus .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown__clear:focus a.atm-link--external > svg,
.mdl-dropdown__clear:focus .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__clear:focus a.atm-link--external > svg,
.mdl-dropdown__clear:focus .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__clear:focus a.atm-link--external > svg, .mdl-dropdown__clear:hover .atm-icon, .mdl-dropdown__clear:hover .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown__clear:hover a[download] > svg, .mdl-dropdown__clear:hover .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown__clear:hover a.atm-link--external > svg,
.mdl-dropdown__clear:hover .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__clear:hover a.atm-link--external > svg,
.mdl-dropdown__clear:hover .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__clear:hover a.atm-link--external > svg {
    fill: #A61711;
}
.mdl-dropdown__input {
    appearance: none;
    border: none;
    flex: 1;
    padding: 0 0 0 0.5rem;
    outline: none;
    width: 100%;
}
.mdl-dropdown__input::-ms-clear {
    display: none;
}
.mdl-dropdown__input::-webkit-outer-spin-button, .mdl-dropdown__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.mdl-dropdown__clear {
    height: 100%;
    padding-right: 1rem;
    align-items: center;
}
.mdl-dropdown__inner-label {
    position: absolute;
    left: 1.5555555556rem;
    top: 0.7222222222rem;
    font-size: 0.7222222222rem;
    color: #767675;
}
.mdl-dropdown__options-wrapper {
    position: absolute;
    overflow: hidden;
    top: calc(-2 * 1px);
    left: 0;
    width: 100%;
    border: #9D9F9D solid calc(2 * 1px);
    height: 4.2222222222rem;
    transition: 300ms height ease-in-out;
    background-color: #FFF;
}
.mdl-dropdown__indicator {
    background: none;
    border: none;
    left: 0;
    z-index: 2;
}
.mdl-dropdown__indicator-down {
    bottom: 0;
}
.mdl-dropdown__indicator .atm-icon, .mdl-dropdown__indicator .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown__indicator a[download] > svg, .mdl-dropdown__indicator .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown__indicator a.atm-link--external > svg,
.mdl-dropdown__indicator .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__indicator a.atm-link--external > svg,
.mdl-dropdown__indicator .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__indicator a.atm-link--external > svg {
    height: 1.3333333333rem;
    width: 1.3333333333rem;
}
.mdl-dropdown .mdl-dropdown__indicator-wrapper {
    display: none;
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
}
.mdl-dropdown .mdl-dropdown__indicator-wrapper--bottom {
    bottom: 0;
}
.mdl-dropdown .mdl-dropdown__indicator {
    position: relative;
    pointer-events: auto;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
}
.mdl-dropdown__options {
    max-height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: #FFF;
}
.mdl-dropdown__options::-webkit-scrollbar {
    display: none;
}
.mdl-dropdown__options--scroll-top .mdl-dropdown__indicator-wrapper--top {
    box-shadow: inset 0 15px 10px -10px #9D9F9D;
    display: block;
}
.mdl-dropdown__options--scroll-down .mdl-dropdown__indicator-wrapper--bottom {
    box-shadow: inset 0 -15px 10px -10px #9D9F9D;
    display: block;
}
.mdl-dropdown__options--scroll-topdown .mdl-dropdown__indicator-wrapper--top {
    box-shadow: inset 0 15px 10px -10px #9D9F9D;
    display: block;
}
.mdl-dropdown__options--scroll-topdown .mdl-dropdown__indicator-wrapper--bottom {
    box-shadow: inset 0 -15px 10px -10px #9D9F9D;
    display: block;
}
.mdl-dropdown__option-item {
    display: none;
    opacity: 0;
    transition: 300ms opacity ease-in-out 200ms;
}
.mdl-dropdown__option-input {
    appearance: none;
    width: 0;
    height: 0;
    border: none;
}
.mdl-dropdown__option-input::-ms-check {
    display: none;
}
.mdl-dropdown__option-label {
    padding: 0.3333333333rem 1.5555555556rem 0.3333333333rem 1.5555555556rem;
    display: flex;
    width: 100%;
    line-height: 1.7;
    cursor: pointer;
}
.mdl-dropdown--filter .mdl-dropdown__trigger:hover .mdl-dropdown__trigger-value {
    color: #FFF;
    border-color: #403F3F;
    background-color: #403F3F;
}
.mdl-dropdown--filter .mdl-dropdown__trigger:focus .mdl-dropdown__trigger-value,
.mdl-dropdown--filter .mdl-dropdown__trigger-value {
    color: #FFF;
}
.mdl-dropdown--filter .mdl-dropdown__trigger-value {
    transform: none;
    top: 0.4444444444rem;
    background-color: #282625;
    border-radius: 29px;
    border: calc(2 * 1px) solid #282625;
    padding: 0.8888888889rem 2rem;
    max-width: calc(100% - (88 * 1px));
    width: auto;
}
.mdl-dropdown--filter .mdl-dropdown__option-item {
    padding: 0.4444444444rem 1.5555555556rem 0.4444444444rem 1.5555555556rem;
}
.mdl-dropdown--open .mdl-dropdown__trigger .atm-icon, .mdl-dropdown--open .mdl-dropdown__trigger .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown--open .mdl-dropdown__trigger a[download] > svg, .mdl-dropdown--open .mdl-dropdown__trigger .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown--open .mdl-dropdown__trigger a.atm-link--external > svg,
.mdl-dropdown--open .mdl-dropdown__trigger .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown--open .mdl-dropdown__trigger a.atm-link--external > svg,
.mdl-dropdown--open .mdl-dropdown__trigger .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown--open .mdl-dropdown__trigger a.atm-link--external > svg {
    transform: translateY(-50%) rotate(180deg);
}
.mdl-dropdown--open .mdl-dropdown__options {
    border-top: #9D9F9D solid 1px;
}
.mdl-dropdown--open .mdl-dropdown__options-wrapper {
    max-height: 13.4444444444rem;
    height: 13.4444444444rem;
    padding-top: 4rem;
}
.mdl-dropdown--open .mdl-dropdown__option-item {
    display: flex;
    opacity: 1;
}
.mdl-dropdown--open .mdl-dropdown__options-wrapper,
.mdl-dropdown--open .mdl-dropdown__trigger-wrapper {
    z-index: 1;
}
.mdl-dropdown--open .mdl-dropdown__options-wrapper--min {
    height: 8.9555555556rem;
}
.mdl-dropdown--open .mdl-dropdown__options-wrapper--med {
    height: 11.3222222222rem;
}
.mdl-dropdown--open.mdl-dropdown--filter .mdl-dropdown__options-wrapper {
    max-height: 19.5555555556rem;
    height: 19.5555555556rem;
}
.mdl-dropdown--open.mdl-dropdown--filter .mdl-dropdown__options-wrapper--min {
    height: 12.2222222222rem;
}
.mdl-dropdown--open.mdl-dropdown--filter .mdl-dropdown__options-wrapper--med {
    height: 16.2222222222rem;
}
.mdl-dropdown.dirty:not(.mdl-dropdown--filter) .mdl-dropdown__trigger-value,
.mdl-dropdown.dirty:not(.mdl-dropdown--filter) .mdl-dropdown__input {
    color: #282625;
}
.mdl-dropdown.invalid .mdl-dropdown__options-wrapper {
    border-color: #EE000C;
}
.mdl-dropdown.invalid .mdl-dropdown__title {
    color: #EE000C;
}
.mdl-dropdown__additional-label {
    display: block;
    padding-left: 1.5555555556rem;
    margin-top: 0.6666666667rem;
    font-size: 0.8333333333rem;
    line-height: 1.3;
}
.mdl-dropdown__additional-label a {
    color: #282625;
    text-decoration: none;
}

@keyframes hideAnimation {
    from {
        width: auto;
        height: auto;
        overflow: auto;
    }
    to {
        width: 0;
        height: 0;
        overflow: hidden;
    }
}
@keyframes showAnimation {
    from {
        width: 0;
        height: 0;
        overflow: hidden;
    }
    to {
        width: auto;
        height: auto;
        overflow: auto;
    }
}
.mdl-cta_form {
    width: 100%;
    position: relative;
    z-index: 2;
}
.mdl-cta_form__item {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: padding 0.2s ease-in-out;
    opacity: 1;
    display: none;
}
@media all and (min-width: 100em) {
    .mdl-cta_form__item {
        padding-top: 2.1666666667rem;
        padding-bottom: 2.1666666667rem;
    }
}
.mdl-cta_form--cta .mdl-cta_form__item {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
@media all and (min-width: 100em) {
    .mdl-cta_form--cta .mdl-cta_form__item {
        padding-top: 2.1666666667rem;
        padding-bottom: 2.1666666667rem;
    }
}
.mdl-cta_form__item-suptitle {
    padding-bottom: 0.5rem;
    font-size: 0.8333333333rem;
    color: var(--color-grey--light);
    font-family: "Frutiger LT W01_45 Light", Frutiger, sans-serif;
}
@media all and (min-width: 100em) {
    .mdl-cta_form__item-suptitle {
        padding-bottom: 1rem;
    }
}
.mdl-cta_form__item-title {
    padding-bottom: 2.1666666667rem;
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
    padding-right: calc(2.2222222222rem + 0.75rem);
    color: #282625;
}
@media all and (min-width: 100em) {
    .mdl-cta_form__item-title {
        padding-bottom: 4rem;
    }
}
.mdl-cta_form--cta .mdl-cta_form__item-title {
    padding-bottom: 1.5rem;
}
@media all and (min-width: 100em) {
    .mdl-cta_form--cta .mdl-cta_form__item-title {
        padding-bottom: 2.1666666667rem;
    }
}
.mdl-cta_form__item-inside {
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    padding-top: 0;
    opacity: 0;
    overflow-x: visible;
    -ms-overflow-style: none;
    pointer-events: none;
}
.mdl-cta_form__trigger {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    transition: max-height 0.5s ease-in-out, transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    flex-direction: column;
    display: flex;
    max-height: none;
    position: relative;
    width: 100%;
    transition-delay: 0.5s;
}
.mdl-cta_form__trigger:focus {
    outline: none;
}
.mdl-cta_form__item--non-collapsible .mdl-cta_form__trigger {
    transform: none;
    max-height: none;
    opacity: 1;
    transition: none;
    transition-delay: 0s;
}
.mdl-cta_form__item-subheading {
    display: block;
    opacity: 1;
    line-height: 1.3;
    color: #282625;
    word-break: break-all;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    -moz-animation: showAnimation 0s ease-in 0.2s forwards;
    /* Firefox */
    -webkit-animation: showAnimation 0s ease-in 0.2s forwards;
    /* Safari and Chrome */
    -o-animation: showAnimation 0s ease-in 0.2s forwards;
    /* Opera */
    animation: showAnimation 0s ease-in 0.2s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    transition-delay: 0.5s;
}
.mdl-cta_form__item-visible {
    max-height: 0;
}
.mdl-cta_form__item-visible > .mdl-cta_form__row:last-of-type, .mdl-cta_form__item-visible > div:not([class^=mdl]) > .mdl-cta_form__row:last-of-type, .mdl-cta_form__item-visible > div:not([class^=mdl]) > div:not([class^=mdl]) > .mdl-cta_form__row:last-of-type, .mdl-cta_form__item-visible > div:not([class^=atm]) > .mdl-cta_form__row:last-of-type, .mdl-cta_form__item-visible > div:not([class^=atm]) > div:not([class^=atm]) > .mdl-cta_form__row:last-of-type {
    margin-bottom: 0;
}
.mdl-cta_form__item-visible .mdl-richtext {
    margin-bottom: 0;
}
.mdl-cta_form__icon-wrapper {
    position: absolute;
    display: none;
    top: 0;
    right: 0.75rem;
    transform: translateY(-30%);
}
@media all and (min-width: 0em) {
    .mdl-cta_form__icon-wrapper {
        height: 2.2222222222rem;
        width: 2.2222222222rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-cta_form__icon-wrapper {
        height: 3.3333333333rem;
        width: 3.3333333333rem;
    }
}
.mdl-cta_form__item--finished {
    border-bottom: 2px solid #9D9F9D;
    opacity: 1;
    display: inherit;
}
.mdl-cta_form__item--finished.mdl-cta_form__item--first {
    border-top: 2px solid #9D9F9D;
    margin-top: 2.1666666667rem;
}
.mdl-cta_form__item--finished .mdl-cta_form__trigger {
    transform: translateX(0);
    opacity: 1;
}
.mdl-cta_form__item--finished .mdl-cta_form__icon-wrapper {
    display: block;
}
.mdl-cta_form__item--finished button.atm-button, .mdl-cta_form__item--finished .context-ghi button.atm-ghi-button, .mdl-cta_form__item--finished .context-ghi button.mdl-documentsend, .context-ghi .mdl-cta_form__item--finished button.atm-ghi-button, .context-ghi .mdl-cta_form__item--finished button.mdl-documentsend, .mdl-cta_form__item--finished button.atm-link--btn {
    display: none;
}
.mdl-cta_form__item--finished .mdl-cta_form__item-visible {
    margin-top: 0.5rem;
}
@media all and (min-width: 100em) {
    .mdl-cta_form__item--finished .mdl-cta_form__item-visible {
        margin-top: 1rem;
    }
}
.mdl-cta_form__item--changed button.atm-button, .mdl-cta_form__item--changed .context-ghi button.atm-ghi-button, .mdl-cta_form__item--changed .context-ghi button.mdl-documentsend, .context-ghi .mdl-cta_form__item--changed button.atm-ghi-button, .context-ghi .mdl-cta_form__item--changed button.mdl-documentsend, .mdl-cta_form__item--changed button.atm-link--btn {
    display: flex;
}
.mdl-cta_form__item--expanded {
    opacity: 1;
}
.mdl-cta_form__item--expanded .mdl-cta_form__item-subheading {
    transform: translate3d(-25%, 0, 0);
    transition-delay: 0s;
    opacity: 0;
    -moz-animation: hideAnimation 0s ease-in 0.2s forwards;
    /* Firefox */
    -webkit-animation: hideAnimation 0s ease-in 0.2s forwards;
    /* Safari and Chrome */
    -o-animation: hideAnimation 0s ease-in 0.2s forwards;
    /* Opera */
    animation: hideAnimation 0s ease-in 0.2s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.mdl-cta_form__item--expanded .mdl-cta_form__item-inside {
    transition-delay: 0.2s;
}
.mdl-cta_form__item--expanded .mdl-accordion__icon--plus {
    opacity: 0;
}
.mdl-cta_form__item--expanded .mdl-accordion__icon--minus {
    opacity: 1;
    transform: rotate(0deg);
}
.mdl-cta_form__item--visible {
    opacity: 1;
    display: inherit;
}
.mdl-cta_form__item--visible .mdl-cta_form__item-visible {
    max-height: none;
    margin-bottom: 0.5rem;
}
@media all and (min-width: 100em) {
    .mdl-cta_form__item--visible .mdl-cta_form__item-visible {
        margin-bottom: 1rem;
    }
}
.mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background {
    margin-top: 2.1666666667rem;
    margin-bottom: 2.1666666667rem;
    min-width: 100vw;
    position: relative;
    margin-left: 50%;
    left: -50vw;
    display: flex;
    background: linear-gradient(to bottom right, rgba(118, 118, 117, 0.3), rgba(209, 209, 209, 0.3));
}
.is-ie .mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background {
    max-width: calc(100vw - calc(17 * 1px));
    margin-left: calc(50% + (calc(8.5 * 1px)));
}
.mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background.mdl-cta_form__item--finished {
    border-bottom: 0;
}
.mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background .mdl-cta_form__item-container {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background .mdl-cta_form__item-container {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background .mdl-cta_form__item-container {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background .mdl-cta_form__item-container {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background .mdl-cta_form__item-container {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background .mdl-cta_form__item-container {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background .mdl-cta_form__item-container {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-cta_form__item--visible.mdl-cta_form__item--with-grey-background .mdl-cta_form__item-container {
        margin-left: 17.994100295%;
    }
}
.mdl-cta_form__item--expanded, .mdl-cta_form__item--focused {
    display: inherit;
}
.mdl-cta_form__item--expanded .mdl-cta_form__item-inside, .mdl-cta_form__item--focused .mdl-cta_form__item-inside {
    opacity: 1;
    pointer-events: all;
}
.mdl-cta_form__item--focused .mdl-cta_form__trigger {
    pointer-events: none;
    max-height: none;
}
.mdl-cta_form__cancel {
    margin-top: 1rem;
}
@media all and (min-width: 48em) {
    .mdl-cta_form__cancel {
        margin-top: 0;
        padding: 0 2.1666666667rem;
    }
}

.mdl-backbutton {
    margin-bottom: 1rem;
    line-height: 0;
}
@media all and (min-width: 100em) {
    .mdl-backbutton {
        margin-bottom: 2.1666666667rem;
    }
}
.mdl-backbutton--content {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-backbutton--content {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-backbutton--content {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-backbutton--content {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-backbutton--content {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-backbutton--content {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-backbutton--content {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-backbutton--content {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-backbutton--content {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-backbutton--top {
    margin-top: 2.1666666667rem;
}
@media all and (min-width: 100em) {
    .mdl-backbutton--top {
        margin-top: 4rem;
    }
}
.mdl-backbutton .atm-link .atm-icon, .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-backbutton a .atm-icon, .mdl-backbutton .context-ghi .atm-ghi-link .atm-icon, .context-ghi .mdl-backbutton .atm-ghi-link .atm-icon, .mdl-backbutton .mdl-promo-textteaser__description .atm-icon, .mdl-backbutton .atm-paragraph a .atm-icon, .mdl-backbutton .mdl-plain-text-accordion__height-representation a .atm-icon, .mdl-backbutton .mdl-plain-text-accordion__text a .atm-icon, .mdl-backbutton .mdl-filter__label a .atm-icon, .atm-paragraph .mdl-backbutton a .atm-icon, .mdl-plain-text-accordion__height-representation .mdl-backbutton a .atm-icon, .mdl-plain-text-accordion__text .mdl-backbutton a .atm-icon, .mdl-filter__label .mdl-backbutton a .atm-icon, .mdl-backbutton .mdl-iconlist__link .atm-icon, .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon, .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link .atm-icon, .mdl-backbutton .mdl-richtext p a .atm-icon, .mdl-richtext p .mdl-backbutton a .atm-icon, .mdl-backbutton .mdl-richtext a .atm-icon, .mdl-richtext .mdl-backbutton a .atm-icon, .mdl-backbutton .mdl-richtext p a[download] .atm-icon, .mdl-richtext p .mdl-backbutton a[download] .atm-icon,
.mdl-backbutton .mdl-richtext ul a[download] .atm-icon,
.mdl-richtext ul .mdl-backbutton a[download] .atm-icon,
.mdl-backbutton .mdl-richtext ol a[download] .atm-icon,
.mdl-richtext ol .mdl-backbutton a[download] .atm-icon, .mdl-backbutton .mdl-input-list__label a .atm-icon, .mdl-input-list__label .mdl-backbutton a .atm-icon, .mdl-backbutton .mdl-dropdown__title a .atm-icon, .mdl-dropdown__title .mdl-backbutton a .atm-icon, .mdl-backbutton .atm-link .mdl-richtext a[download] > svg, .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-backbutton a .mdl-richtext a[download] > svg, .mdl-backbutton .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg, .context-ghi .mdl-backbutton .atm-ghi-link .mdl-richtext a[download] > svg, .mdl-backbutton .mdl-promo-textteaser__description .mdl-richtext a[download] > svg, .mdl-richtext .mdl-backbutton .atm-link a[download] > svg, .mdl-richtext .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-backbutton a a[download] > svg, .mdl-richtext .mdl-backbutton .context-ghi .atm-ghi-link a[download] > svg, .context-ghi .mdl-richtext .mdl-backbutton .atm-ghi-link a[download] > svg, .mdl-richtext .mdl-backbutton .mdl-promo-textteaser__description a[download] > svg, .mdl-backbutton .atm-paragraph .mdl-richtext a[download] > svg, .mdl-backbutton .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg, .mdl-backbutton .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg, .mdl-backbutton .mdl-filter__label .mdl-richtext a[download] > svg, .mdl-richtext .mdl-backbutton .atm-paragraph a[download] > svg, .mdl-richtext .mdl-backbutton .mdl-plain-text-accordion__height-representation a[download] > svg, .mdl-richtext .mdl-backbutton .mdl-plain-text-accordion__text a[download] > svg, .mdl-richtext .mdl-backbutton .mdl-filter__label a[download] > svg, .atm-paragraph .mdl-backbutton .mdl-richtext a[download] > svg, .mdl-plain-text-accordion__height-representation .mdl-backbutton .mdl-richtext a[download] > svg, .mdl-plain-text-accordion__text .mdl-backbutton .mdl-richtext a[download] > svg, .mdl-filter__label .mdl-backbutton .mdl-richtext a[download] > svg, .mdl-richtext .atm-paragraph .mdl-backbutton a[download] > svg, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-backbutton a[download] > svg, .mdl-richtext .mdl-plain-text-accordion__text .mdl-backbutton a[download] > svg, .mdl-richtext .mdl-filter__label .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-iconlist__link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-backbutton .mdl-iconlist__link a[download] > svg, .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg, .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link a[download] > svg, .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-richtext a[download] > svg, .mdl-richtext .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-input-list__label .mdl-richtext a[download] > svg, .mdl-richtext .mdl-backbutton .mdl-input-list__label a[download] > svg, .mdl-input-list__label .mdl-backbutton .mdl-richtext a[download] > svg, .mdl-richtext .mdl-input-list__label .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-dropdown__title .mdl-richtext a[download] > svg, .mdl-richtext .mdl-backbutton .mdl-dropdown__title a[download] > svg, .mdl-dropdown__title .mdl-backbutton .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown__title .mdl-backbutton a[download] > svg, .mdl-backbutton .atm-link .mdl-richtext p a.atm-link--external > svg, .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-backbutton a .mdl-richtext p a.atm-link--external > svg, .mdl-backbutton .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg, .context-ghi .mdl-backbutton .atm-ghi-link .mdl-richtext p a.atm-link--external > svg, .mdl-backbutton .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .atm-link a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-backbutton a a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .context-ghi .atm-ghi-link a.atm-link--external > svg, .context-ghi .mdl-richtext p .mdl-backbutton .atm-ghi-link a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .mdl-promo-textteaser__description a.atm-link--external > svg, .mdl-backbutton .atm-paragraph .mdl-richtext p a.atm-link--external > svg, .mdl-backbutton .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg, .mdl-backbutton .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg, .mdl-backbutton .mdl-filter__label .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .atm-paragraph a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .mdl-plain-text-accordion__height-representation a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .mdl-plain-text-accordion__text a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .mdl-filter__label a.atm-link--external > svg, .atm-paragraph .mdl-backbutton .mdl-richtext p a.atm-link--external > svg, .mdl-plain-text-accordion__height-representation .mdl-backbutton .mdl-richtext p a.atm-link--external > svg, .mdl-plain-text-accordion__text .mdl-backbutton .mdl-richtext p a.atm-link--external > svg, .mdl-filter__label .mdl-backbutton .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-paragraph .mdl-backbutton a.atm-link--external > svg, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-backbutton a.atm-link--external > svg, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-backbutton a.atm-link--external > svg, .mdl-richtext p .mdl-filter__label .mdl-backbutton a.atm-link--external > svg, .mdl-backbutton .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .mdl-iconlist__link a.atm-link--external > svg, .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg, .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link a.atm-link--external > svg, .mdl-backbutton .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton a.atm-link--external > svg, .mdl-backbutton .mdl-richtext p a.atm-link--external > svg, .mdl-richtext .mdl-backbutton p a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton a.atm-link--external > svg, .mdl-backbutton .mdl-richtext p a[download] a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton a[download] a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ul a[download] p a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext p ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton a[download] p a.atm-link--external > svg,
.mdl-richtext p ul .mdl-backbutton a[download] a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ol a[download] p a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext p ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton a[download] p a.atm-link--external > svg,
.mdl-richtext p ol .mdl-backbutton a[download] a.atm-link--external > svg, .mdl-backbutton .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .mdl-input-list__label a.atm-link--external > svg, .mdl-input-list__label .mdl-backbutton .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-input-list__label .mdl-backbutton a.atm-link--external > svg, .mdl-backbutton .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-backbutton .mdl-dropdown__title a.atm-link--external > svg, .mdl-dropdown__title .mdl-backbutton .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown__title .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .atm-link .mdl-richtext ul a.atm-link--external > svg,
.mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-backbutton a .mdl-richtext ul a.atm-link--external > svg,
.mdl-backbutton .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg,
.context-ghi .mdl-backbutton .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg,
.mdl-backbutton .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .atm-link a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-backbutton a a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .context-ghi .atm-ghi-link a.atm-link--external > svg,
.context-ghi .mdl-richtext ul .mdl-backbutton .atm-ghi-link a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .mdl-promo-textteaser__description a.atm-link--external > svg,
.mdl-backbutton .atm-paragraph .mdl-richtext ul a.atm-link--external > svg,
.mdl-backbutton .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg,
.mdl-backbutton .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg,
.mdl-backbutton .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .atm-paragraph a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .mdl-plain-text-accordion__height-representation a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .mdl-plain-text-accordion__text a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .mdl-filter__label a.atm-link--external > svg,
.atm-paragraph .mdl-backbutton .mdl-richtext ul a.atm-link--external > svg,
.mdl-plain-text-accordion__height-representation .mdl-backbutton .mdl-richtext ul a.atm-link--external > svg,
.mdl-plain-text-accordion__text .mdl-backbutton .mdl-richtext ul a.atm-link--external > svg,
.mdl-filter__label .mdl-backbutton .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-paragraph .mdl-backbutton a.atm-link--external > svg,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-backbutton a.atm-link--external > svg,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-backbutton a.atm-link--external > svg,
.mdl-richtext ul .mdl-filter__label .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .mdl-iconlist__link a.atm-link--external > svg,
.mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg,
.mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext p ul a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ul p a.atm-link--external > svg,
.mdl-richtext p .mdl-backbutton ul a.atm-link--external > svg,
.mdl-richtext ul p .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext .mdl-backbutton ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext p a[download] ul a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ul p a[download] a.atm-link--external > svg,
.mdl-richtext p .mdl-backbutton a[download] ul a.atm-link--external > svg,
.mdl-richtext ul p .mdl-backbutton a[download] a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton a[download] a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ol a[download] ul a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ul ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton a[download] ul a.atm-link--external > svg,
.mdl-richtext ul ol .mdl-backbutton a[download] a.atm-link--external > svg,
.mdl-backbutton .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .mdl-input-list__label a.atm-link--external > svg,
.mdl-input-list__label .mdl-backbutton .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-input-list__label .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton .mdl-dropdown__title a.atm-link--external > svg,
.mdl-dropdown__title .mdl-backbutton .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__title .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .atm-link .mdl-richtext ol a.atm-link--external > svg,
.mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-backbutton a .mdl-richtext ol a.atm-link--external > svg,
.mdl-backbutton .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg,
.context-ghi .mdl-backbutton .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg,
.mdl-backbutton .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .atm-link a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-backbutton a a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .context-ghi .atm-ghi-link a.atm-link--external > svg,
.context-ghi .mdl-richtext ol .mdl-backbutton .atm-ghi-link a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .mdl-promo-textteaser__description a.atm-link--external > svg,
.mdl-backbutton .atm-paragraph .mdl-richtext ol a.atm-link--external > svg,
.mdl-backbutton .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg,
.mdl-backbutton .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg,
.mdl-backbutton .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .atm-paragraph a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .mdl-plain-text-accordion__height-representation a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .mdl-plain-text-accordion__text a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .mdl-filter__label a.atm-link--external > svg,
.atm-paragraph .mdl-backbutton .mdl-richtext ol a.atm-link--external > svg,
.mdl-plain-text-accordion__height-representation .mdl-backbutton .mdl-richtext ol a.atm-link--external > svg,
.mdl-plain-text-accordion__text .mdl-backbutton .mdl-richtext ol a.atm-link--external > svg,
.mdl-filter__label .mdl-backbutton .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-paragraph .mdl-backbutton a.atm-link--external > svg,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-backbutton a.atm-link--external > svg,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-backbutton a.atm-link--external > svg,
.mdl-richtext ol .mdl-filter__label .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .mdl-iconlist__link a.atm-link--external > svg,
.mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg,
.mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext p ol a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ol p a.atm-link--external > svg,
.mdl-richtext p .mdl-backbutton ol a.atm-link--external > svg,
.mdl-richtext ol p .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext .mdl-backbutton ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext p a[download] ol a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ol p a[download] a.atm-link--external > svg,
.mdl-richtext p .mdl-backbutton a[download] ol a.atm-link--external > svg,
.mdl-richtext ol p .mdl-backbutton a[download] a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ul a[download] ol a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ol ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-backbutton a[download] ol a.atm-link--external > svg,
.mdl-richtext ol ul .mdl-backbutton a[download] a.atm-link--external > svg,
.mdl-backbutton .mdl-richtext ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton a[download] a.atm-link--external > svg,
.mdl-backbutton .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .mdl-input-list__label a.atm-link--external > svg,
.mdl-input-list__label .mdl-backbutton .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-input-list__label .mdl-backbutton a.atm-link--external > svg,
.mdl-backbutton .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-backbutton .mdl-dropdown__title a.atm-link--external > svg,
.mdl-dropdown__title .mdl-backbutton .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__title .mdl-backbutton a.atm-link--external > svg, .mdl-backbutton .atm-link .mdl-richtext p a[download] > svg, .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-backbutton a .mdl-richtext p a[download] > svg, .mdl-backbutton .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg, .context-ghi .mdl-backbutton .atm-ghi-link .mdl-richtext p a[download] > svg, .mdl-backbutton .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton .atm-link a[download] > svg, .mdl-richtext p .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-backbutton a a[download] > svg, .mdl-richtext p .mdl-backbutton .context-ghi .atm-ghi-link a[download] > svg, .context-ghi .mdl-richtext p .mdl-backbutton .atm-ghi-link a[download] > svg, .mdl-richtext p .mdl-backbutton .mdl-promo-textteaser__description a[download] > svg, .mdl-backbutton .atm-paragraph .mdl-richtext p a[download] > svg, .mdl-backbutton .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg, .mdl-backbutton .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg, .mdl-backbutton .mdl-filter__label .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton .atm-paragraph a[download] > svg, .mdl-richtext p .mdl-backbutton .mdl-plain-text-accordion__height-representation a[download] > svg, .mdl-richtext p .mdl-backbutton .mdl-plain-text-accordion__text a[download] > svg, .mdl-richtext p .mdl-backbutton .mdl-filter__label a[download] > svg, .atm-paragraph .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-plain-text-accordion__height-representation .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-plain-text-accordion__text .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-filter__label .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-richtext p .atm-paragraph .mdl-backbutton a[download] > svg, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-backbutton a[download] > svg, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-backbutton a[download] > svg, .mdl-richtext p .mdl-filter__label .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-iconlist__link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton .mdl-iconlist__link a[download] > svg, .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg, .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link a[download] > svg, .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-richtext .mdl-backbutton p a[download] > svg, .mdl-richtext p .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ul p a[download] > svg,
.mdl-backbutton .mdl-richtext p ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton p a[download] > svg,
.mdl-richtext p ul .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ol p a[download] > svg,
.mdl-backbutton .mdl-richtext p ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton p a[download] > svg,
.mdl-richtext p ol .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-input-list__label .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton .mdl-input-list__label a[download] > svg, .mdl-input-list__label .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-input-list__label .mdl-backbutton a[download] > svg, .mdl-backbutton .mdl-dropdown__title .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-backbutton .mdl-dropdown__title a[download] > svg, .mdl-dropdown__title .mdl-backbutton .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-dropdown__title .mdl-backbutton a[download] > svg,
.mdl-backbutton .atm-link .mdl-richtext ul a[download] > svg,
.mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-backbutton a .mdl-richtext ul a[download] > svg,
.mdl-backbutton .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg,
.context-ghi .mdl-backbutton .atm-ghi-link .mdl-richtext ul a[download] > svg,
.mdl-backbutton .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton .atm-link a[download] > svg,
.mdl-richtext ul .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-backbutton a a[download] > svg,
.mdl-richtext ul .mdl-backbutton .context-ghi .atm-ghi-link a[download] > svg,
.context-ghi .mdl-richtext ul .mdl-backbutton .atm-ghi-link a[download] > svg,
.mdl-richtext ul .mdl-backbutton .mdl-promo-textteaser__description a[download] > svg,
.mdl-backbutton .atm-paragraph .mdl-richtext ul a[download] > svg,
.mdl-backbutton .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg,
.mdl-backbutton .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg,
.mdl-backbutton .mdl-filter__label .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton .atm-paragraph a[download] > svg,
.mdl-richtext ul .mdl-backbutton .mdl-plain-text-accordion__height-representation a[download] > svg,
.mdl-richtext ul .mdl-backbutton .mdl-plain-text-accordion__text a[download] > svg,
.mdl-richtext ul .mdl-backbutton .mdl-filter__label a[download] > svg,
.atm-paragraph .mdl-backbutton .mdl-richtext ul a[download] > svg,
.mdl-plain-text-accordion__height-representation .mdl-backbutton .mdl-richtext ul a[download] > svg,
.mdl-plain-text-accordion__text .mdl-backbutton .mdl-richtext ul a[download] > svg,
.mdl-filter__label .mdl-backbutton .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .atm-paragraph .mdl-backbutton a[download] > svg,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-backbutton a[download] > svg,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-backbutton a[download] > svg,
.mdl-richtext ul .mdl-filter__label .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-iconlist__link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton .mdl-iconlist__link a[download] > svg,
.mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg,
.mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link a[download] > svg,
.mdl-backbutton .mdl-richtext p ul a[download] > svg,
.mdl-backbutton .mdl-richtext ul p a[download] > svg,
.mdl-richtext p .mdl-backbutton ul a[download] > svg,
.mdl-richtext ul p .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ul a[download] > svg,
.mdl-richtext .mdl-backbutton ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext p ul a[download] > svg,
.mdl-backbutton .mdl-richtext ul p a[download] > svg,
.mdl-richtext p .mdl-backbutton ul a[download] > svg,
.mdl-richtext ul p .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ol ul a[download] > svg,
.mdl-backbutton .mdl-richtext ul ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton ul a[download] > svg,
.mdl-richtext ul ol .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-input-list__label .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton .mdl-input-list__label a[download] > svg,
.mdl-input-list__label .mdl-backbutton .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-input-list__label .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-dropdown__title .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton .mdl-dropdown__title a[download] > svg,
.mdl-dropdown__title .mdl-backbutton .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-dropdown__title .mdl-backbutton a[download] > svg,
.mdl-backbutton .atm-link .mdl-richtext ol a[download] > svg,
.mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-backbutton a .mdl-richtext ol a[download] > svg,
.mdl-backbutton .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg,
.context-ghi .mdl-backbutton .atm-ghi-link .mdl-richtext ol a[download] > svg,
.mdl-backbutton .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton .atm-link a[download] > svg,
.mdl-richtext ol .mdl-backbutton .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-backbutton a a[download] > svg,
.mdl-richtext ol .mdl-backbutton .context-ghi .atm-ghi-link a[download] > svg,
.context-ghi .mdl-richtext ol .mdl-backbutton .atm-ghi-link a[download] > svg,
.mdl-richtext ol .mdl-backbutton .mdl-promo-textteaser__description a[download] > svg,
.mdl-backbutton .atm-paragraph .mdl-richtext ol a[download] > svg,
.mdl-backbutton .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg,
.mdl-backbutton .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg,
.mdl-backbutton .mdl-filter__label .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton .atm-paragraph a[download] > svg,
.mdl-richtext ol .mdl-backbutton .mdl-plain-text-accordion__height-representation a[download] > svg,
.mdl-richtext ol .mdl-backbutton .mdl-plain-text-accordion__text a[download] > svg,
.mdl-richtext ol .mdl-backbutton .mdl-filter__label a[download] > svg,
.atm-paragraph .mdl-backbutton .mdl-richtext ol a[download] > svg,
.mdl-plain-text-accordion__height-representation .mdl-backbutton .mdl-richtext ol a[download] > svg,
.mdl-plain-text-accordion__text .mdl-backbutton .mdl-richtext ol a[download] > svg,
.mdl-filter__label .mdl-backbutton .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .atm-paragraph .mdl-backbutton a[download] > svg,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-backbutton a[download] > svg,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-backbutton a[download] > svg,
.mdl-richtext ol .mdl-filter__label .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-iconlist__link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton .mdl-iconlist__link a[download] > svg,
.mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg,
.mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-backbutton .mdl-iconlist__link a[download] > svg,
.mdl-backbutton .mdl-richtext p ol a[download] > svg,
.mdl-backbutton .mdl-richtext ol p a[download] > svg,
.mdl-richtext p .mdl-backbutton ol a[download] > svg,
.mdl-richtext ol p .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ol a[download] > svg,
.mdl-richtext .mdl-backbutton ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext p ol a[download] > svg,
.mdl-backbutton .mdl-richtext ol p a[download] > svg,
.mdl-richtext p .mdl-backbutton ol a[download] > svg,
.mdl-richtext ol p .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ul ol a[download] > svg,
.mdl-backbutton .mdl-richtext ol ul a[download] > svg,
.mdl-richtext ul .mdl-backbutton ol a[download] > svg,
.mdl-richtext ol ul .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-input-list__label .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton .mdl-input-list__label a[download] > svg,
.mdl-input-list__label .mdl-backbutton .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-input-list__label .mdl-backbutton a[download] > svg,
.mdl-backbutton .mdl-dropdown__title .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-backbutton .mdl-dropdown__title a[download] > svg,
.mdl-dropdown__title .mdl-backbutton .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-dropdown__title .mdl-backbutton a[download] > svg {
    transform: scaleX(-1);
    margin-right: 0.5em;
}

.mdl-publications-list {
    margin: 2.1666666667rem auto;
}
.mdl-publications-list__items {
    padding: 0;
    margin: 1.5555555556rem auto;
}
.mdl-publications-list .mdl-filter {
    margin-bottom: 1.5555555556rem;
}
.mdl-publications-list .mdl-publications-list-item {
    padding: 1.5555555556rem 0 1rem 0;
    border-bottom: 1px solid rgba(157, 159, 157, 0.6);
}
.mdl-publications-list .mdl-publications-list-item:first-of-type {
    border-top: 1px solid rgba(157, 159, 157, 0.6);
}
.mdl-publications-list__more--is-hidden {
    display: none;
}

.mdl-publications-list-item {
    list-style-type: none;
    max-width: 61.1111111111rem;
}
.mdl-publications-list-item__content {
    display: grid;
}
@media all and (min-width: 64em) {
    .mdl-publications-list-item__content {
        column-gap: 4rem;
        grid-template: "image description links" "image description links";
        grid-template-columns: 15% 55% 20%;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-publications-list-item__content {
        column-gap: 4rem;
        grid-template: "image description" "image links";
        grid-template-columns: 130px auto;
    }
}
@media all and (min-width: 48em) and (max-width: 99.99em) {
    .mdl-publications-list-item__content {
        padding-right: 4rem;
    }
}
.mdl-publications-list-item__image {
    grid-area: image;
    max-width: 130px;
}
.mdl-publications-list-item__image .atm-image {
    display: block;
    max-width: 7rem;
    box-shadow: 0 8px 30px 0 rgba(54, 51, 49, 0.15);
}
.mdl-publications-list-item__description {
    grid-area: description;
    word-break: break-word;
}
.mdl-publications-list-item__links {
    grid-area: links;
}
@media all and (max-width: 63.99em) {
    .mdl-publications-list-item__links {
        padding-top: 1rem;
    }
}
.mdl-publications-list-item__links .atm-link, .mdl-publications-list-item__links .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-publications-list-item__links a, .mdl-publications-list-item__links .context-ghi .atm-ghi-link, .context-ghi .mdl-publications-list-item__links .atm-ghi-link, .mdl-publications-list-item__links .mdl-promo-textteaser__description, .mdl-publications-list-item__links .atm-paragraph a, .mdl-publications-list-item__links .mdl-plain-text-accordion__height-representation a, .mdl-publications-list-item__links .mdl-plain-text-accordion__text a, .mdl-publications-list-item__links .mdl-filter__label a, .atm-paragraph .mdl-publications-list-item__links a, .mdl-plain-text-accordion__height-representation .mdl-publications-list-item__links a, .mdl-plain-text-accordion__text .mdl-publications-list-item__links a, .mdl-filter__label .mdl-publications-list-item__links a, .mdl-publications-list-item__links .mdl-iconlist__link, .mdl-publications-list-item__links .mdl-richtext a, .mdl-richtext .mdl-publications-list-item__links a,
.mdl-publications-list-item__links .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-publications-list-item__links a[download],
.mdl-publications-list-item__links .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-publications-list-item__links a[download], .mdl-publications-list-item__links .mdl-input-list__label a, .mdl-input-list__label .mdl-publications-list-item__links a, .mdl-publications-list-item__links .mdl-dropdown__title a, .mdl-dropdown__title .mdl-publications-list-item__links a {
    display: block;
    margin-bottom: 1rem;
    flex-basis: 100%;
    margin-left: unset;
}
.mdl-publications-list-item__links .atm-link--download, .mdl-publications-list-item__links .mdl-richtext a[download], .mdl-richtext .mdl-publications-list-item__links a[download] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: unset;
    margin-left: -0.3888888889rem;
}
.mdl-publications-list-item__links .atm-link--download .atm-icon, .mdl-publications-list-item__links .mdl-richtext a[download] .atm-icon, .mdl-richtext .mdl-publications-list-item__links a[download] .atm-icon, .mdl-publications-list-item__links .mdl-richtext p a[download] .atm-icon, .mdl-richtext p .mdl-publications-list-item__links a[download] .atm-icon,
.mdl-publications-list-item__links .mdl-richtext ul a[download] .atm-icon,
.mdl-richtext ul .mdl-publications-list-item__links a[download] .atm-icon,
.mdl-publications-list-item__links .mdl-richtext ol a[download] .atm-icon,
.mdl-richtext ol .mdl-publications-list-item__links a[download] .atm-icon, .mdl-publications-list-item__links .atm-link--download .mdl-richtext a[download] > svg, .mdl-richtext .mdl-publications-list-item__links .atm-link--download a[download] > svg, .mdl-publications-list-item__links .mdl-richtext a[download] > svg, .mdl-richtext .mdl-publications-list-item__links a[download] > svg, .mdl-publications-list-item__links .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-publications-list-item__links a[download] > svg, .mdl-publications-list-item__links .atm-link--download .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-publications-list-item__links .atm-link--download a.atm-link--external > svg, .mdl-publications-list-item__links .mdl-richtext a[download] p a.atm-link--external > svg, .mdl-publications-list-item__links .mdl-richtext p a[download] a.atm-link--external > svg, .mdl-richtext .mdl-publications-list-item__links a[download] p a.atm-link--external > svg, .mdl-richtext p .mdl-publications-list-item__links a[download] a.atm-link--external > svg, .mdl-publications-list-item__links .mdl-richtext p a[download] a.atm-link--external > svg, .mdl-richtext p .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ul a[download] p a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext p ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-publications-list-item__links a[download] p a.atm-link--external > svg,
.mdl-richtext p ul .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ol a[download] p a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext p ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-publications-list-item__links a[download] p a.atm-link--external > svg,
.mdl-richtext p ol .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .atm-link--download .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-publications-list-item__links .atm-link--download a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext a[download] ul a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ul a[download] a.atm-link--external > svg,
.mdl-richtext .mdl-publications-list-item__links a[download] ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext p a[download] ul a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ul p a[download] a.atm-link--external > svg,
.mdl-richtext p .mdl-publications-list-item__links a[download] ul a.atm-link--external > svg,
.mdl-richtext ul p .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ol a[download] ul a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ul ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-publications-list-item__links a[download] ul a.atm-link--external > svg,
.mdl-richtext ul ol .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .atm-link--download .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-publications-list-item__links .atm-link--download a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext a[download] ol a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ol a[download] a.atm-link--external > svg,
.mdl-richtext .mdl-publications-list-item__links a[download] ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext p a[download] ol a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ol p a[download] a.atm-link--external > svg,
.mdl-richtext p .mdl-publications-list-item__links a[download] ol a.atm-link--external > svg,
.mdl-richtext ol p .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ul a[download] ol a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ol ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-publications-list-item__links a[download] ol a.atm-link--external > svg,
.mdl-richtext ol ul .mdl-publications-list-item__links a[download] a.atm-link--external > svg,
.mdl-publications-list-item__links .mdl-richtext ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-publications-list-item__links a[download] a.atm-link--external > svg, .mdl-publications-list-item__links .atm-link--download .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-publications-list-item__links .atm-link--download a[download] > svg, .mdl-publications-list-item__links .mdl-richtext p a[download] > svg, .mdl-richtext .mdl-publications-list-item__links p a[download] > svg, .mdl-richtext p .mdl-publications-list-item__links a[download] > svg, .mdl-publications-list-item__links .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ul p a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext p ul a[download] > svg,
.mdl-richtext ul .mdl-publications-list-item__links p a[download] > svg,
.mdl-richtext p ul .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ol p a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext p ol a[download] > svg,
.mdl-richtext ol .mdl-publications-list-item__links p a[download] > svg,
.mdl-richtext p ol .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .atm-link--download .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-publications-list-item__links .atm-link--download a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ul a[download] > svg,
.mdl-richtext .mdl-publications-list-item__links ul a[download] > svg,
.mdl-richtext ul .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext p ul a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ul p a[download] > svg,
.mdl-richtext p .mdl-publications-list-item__links ul a[download] > svg,
.mdl-richtext ul p .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ol ul a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ul ol a[download] > svg,
.mdl-richtext ol .mdl-publications-list-item__links ul a[download] > svg,
.mdl-richtext ul ol .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .atm-link--download .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-publications-list-item__links .atm-link--download a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ol a[download] > svg,
.mdl-richtext .mdl-publications-list-item__links ol a[download] > svg,
.mdl-richtext ol .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext p ol a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ol p a[download] > svg,
.mdl-richtext p .mdl-publications-list-item__links ol a[download] > svg,
.mdl-richtext ol p .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ul ol a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ol ul a[download] > svg,
.mdl-richtext ul .mdl-publications-list-item__links ol a[download] > svg,
.mdl-richtext ol ul .mdl-publications-list-item__links a[download] > svg,
.mdl-publications-list-item__links .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-publications-list-item__links a[download] > svg {
    position: unset;
    transform: none;
    margin-left: unset;
}
.mdl-publications-list-item__links .atm-link .atm-button__label, .mdl-publications-list-item__links .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-button__label, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-publications-list-item__links a .atm-button__label, .mdl-publications-list-item__links .context-ghi .atm-ghi-link .atm-button__label, .context-ghi .mdl-publications-list-item__links .atm-ghi-link .atm-button__label, .mdl-publications-list-item__links .mdl-promo-textteaser__description .atm-button__label, .mdl-publications-list-item__links .atm-paragraph a .atm-button__label, .mdl-publications-list-item__links .mdl-plain-text-accordion__height-representation a .atm-button__label, .mdl-publications-list-item__links .mdl-plain-text-accordion__text a .atm-button__label, .mdl-publications-list-item__links .mdl-filter__label a .atm-button__label, .atm-paragraph .mdl-publications-list-item__links a .atm-button__label, .mdl-plain-text-accordion__height-representation .mdl-publications-list-item__links a .atm-button__label, .mdl-plain-text-accordion__text .mdl-publications-list-item__links a .atm-button__label, .mdl-filter__label .mdl-publications-list-item__links a .atm-button__label, .mdl-publications-list-item__links .mdl-iconlist__link .atm-button__label, .mdl-publications-list-item__links .mdl-richtext a .atm-button__label, .mdl-richtext .mdl-publications-list-item__links a .atm-button__label, .mdl-publications-list-item__links .mdl-input-list__label a .atm-button__label, .mdl-input-list__label .mdl-publications-list-item__links a .atm-button__label, .mdl-publications-list-item__links .mdl-dropdown__title a .atm-button__label, .mdl-dropdown__title .mdl-publications-list-item__links a .atm-button__label {
    width: unset;
    text-align: left;
}
.mdl-publications-list-item__links > a,
.mdl-publications-list-item__links button {
    margin-left: 0.3888888889rem;
}
.mdl-publications-list-item--is-hidden {
    display: none;
}

.mdl-filter {
    flex-basis: 100%;
    flex-grow: 1;
}
.mdl-filter:not(.mdl-filter--two-col) .mdl-filter__head-wrapper {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-filter:not(.mdl-filter--two-col) .mdl-filter__head-wrapper {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-filter:not(.mdl-filter--two-col) .mdl-filter__head-wrapper {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-filter:not(.mdl-filter--two-col) .mdl-filter__head-wrapper {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-filter:not(.mdl-filter--two-col) .mdl-filter__head-wrapper {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-filter:not(.mdl-filter--two-col) .mdl-filter__head-wrapper {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-filter:not(.mdl-filter--two-col) .mdl-filter__head-wrapper {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-filter:not(.mdl-filter--two-col) .mdl-filter__head-wrapper {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-filter:not(.mdl-filter--two-col) .mdl-filter__head-wrapper {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-filter__label {
    margin-bottom: 1rem;
    display: flex;
}
.mdl-filter .mdl-input-list {
    display: none;
}
.mdl-filter .mdl-input-list__list {
    padding-left: 0;
}
.mdl-filter__content {
    margin-top: 2.1666666667rem;
    display: flex;
    flex-wrap: wrap;
}
.mdl-filter .mdl-layout-container__col-50 {
    min-height: calc(4rem + 1rem + (1rem * 1.7));
}
@media all and (min-width: 64em) {
    .mdl-filter .mdl-dropdown {
        display: none;
    }
    .mdl-filter .mdl-input-list {
        display: flex;
    }
}
@media all and (min-width: 100em) {
    .mdl-filter__content {
        margin-top: 2.1666666667rem;
    }
}

.mdl-file_upload {
    position: relative;
}
.mdl-file_upload__label {
    display: flex;
    margin: 0.5rem 0;
}
.mdl-file_upload__label .atm-infotext, .mdl-file_upload__label .mdl-infotext {
    padding-left: 0.5rem;
}
.invalid .mdl-file_upload {
    border-color: #EE000C;
}
.mdl-file_upload-input-container {
    display: flex;
    flex-direction: row;
}
.mdl-file_upload-input-container__label {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 0.2222222222rem;
}
.mdl-file_upload-input-container__label .atm-icon, .mdl-file_upload-input-container__label .mdl-richtext a[download] > svg, .mdl-richtext .mdl-file_upload-input-container__label a[download] > svg, .mdl-file_upload-input-container__label .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-file_upload-input-container__label a.atm-link--external > svg,
.mdl-file_upload-input-container__label .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-file_upload-input-container__label a.atm-link--external > svg,
.mdl-file_upload-input-container__label .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-file_upload-input-container__label a.atm-link--external > svg {
    margin-right: 0.3333333333rem;
    margin-bottom: -0.5555555556rem;
}
.mdl-file_upload-input-container--file-selected .mdl-file_upload__label {
    padding: 0.5rem 0;
}
.mdl-file_upload-input-container--file-selected .mdl-file_upload__delete-button {
    display: block;
    padding: 0.5rem 0.6666666667rem;
}
.mdl-file_upload-input-container__input {
    display: none;
}
.mdl-file_upload__add-button, .mdl-file_upload__delete-button {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #A61711;
}
.mdl-file_upload__add-button:focus, .mdl-file_upload__delete-button:focus {
    outline: none;
}
.mdl-file_upload__add-button .atm-icon, .mdl-file_upload__add-button .mdl-richtext a[download] > svg, .mdl-richtext .mdl-file_upload__add-button a[download] > svg, .mdl-file_upload__add-button .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-file_upload__add-button a.atm-link--external > svg,
.mdl-file_upload__add-button .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-file_upload__add-button a.atm-link--external > svg,
.mdl-file_upload__add-button .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-file_upload__add-button a.atm-link--external > svg, .mdl-file_upload__delete-button .atm-icon, .mdl-file_upload__delete-button .mdl-richtext a[download] > svg, .mdl-richtext .mdl-file_upload__delete-button a[download] > svg, .mdl-file_upload__delete-button .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-file_upload__delete-button a.atm-link--external > svg,
.mdl-file_upload__delete-button .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-file_upload__delete-button a.atm-link--external > svg,
.mdl-file_upload__delete-button .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-file_upload__delete-button a.atm-link--external > svg {
    margin-right: 0.3333333333rem;
}
.mdl-file_upload__add-button .atm-icon use, .mdl-file_upload__add-button .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__add-button a[download] > svg use, .mdl-file_upload__add-button .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__add-button a.atm-link--external > svg use,
.mdl-file_upload__add-button .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__add-button a.atm-link--external > svg use,
.mdl-file_upload__add-button .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__add-button a.atm-link--external > svg use, .mdl-file_upload__delete-button .atm-icon use, .mdl-file_upload__delete-button .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__delete-button a[download] > svg use, .mdl-file_upload__delete-button .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__delete-button a.atm-link--external > svg use,
.mdl-file_upload__delete-button .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__delete-button a.atm-link--external > svg use,
.mdl-file_upload__delete-button .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__delete-button a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-file_upload__add-button:focus, .mdl-file_upload__add-button:hover, .mdl-file_upload__delete-button:focus, .mdl-file_upload__delete-button:hover {
    color: #771511;
}
.mdl-file_upload__add-button:focus .atm-icon use, .mdl-file_upload__add-button:focus .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__add-button:focus a[download] > svg use, .mdl-file_upload__add-button:focus .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__add-button:focus a.atm-link--external > svg use,
.mdl-file_upload__add-button:focus .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__add-button:focus a.atm-link--external > svg use,
.mdl-file_upload__add-button:focus .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__add-button:focus a.atm-link--external > svg use, .mdl-file_upload__add-button:hover .atm-icon use, .mdl-file_upload__add-button:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__add-button:hover a[download] > svg use, .mdl-file_upload__add-button:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__add-button:hover a.atm-link--external > svg use,
.mdl-file_upload__add-button:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__add-button:hover a.atm-link--external > svg use,
.mdl-file_upload__add-button:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__add-button:hover a.atm-link--external > svg use, .mdl-file_upload__delete-button:focus .atm-icon use, .mdl-file_upload__delete-button:focus .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__delete-button:focus a[download] > svg use, .mdl-file_upload__delete-button:focus .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__delete-button:focus a.atm-link--external > svg use,
.mdl-file_upload__delete-button:focus .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__delete-button:focus a.atm-link--external > svg use,
.mdl-file_upload__delete-button:focus .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__delete-button:focus a.atm-link--external > svg use, .mdl-file_upload__delete-button:hover .atm-icon use, .mdl-file_upload__delete-button:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__delete-button:hover a[download] > svg use, .mdl-file_upload__delete-button:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__delete-button:hover a.atm-link--external > svg use,
.mdl-file_upload__delete-button:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__delete-button:hover a.atm-link--external > svg use,
.mdl-file_upload__delete-button:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__delete-button:hover a.atm-link--external > svg use {
    fill: #771511;
}
.mdl-file_upload__add-button {
    padding: 0.5rem 0;
}
.mdl-file_upload__add-button:disabled, .mdl-file_upload__add-button[disabled] {
    color: #9D9F9D;
    cursor: unset;
}
.mdl-file_upload__add-button:disabled .atm-icon use, .mdl-file_upload__add-button:disabled .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__add-button:disabled a[download] > svg use, .mdl-file_upload__add-button:disabled .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__add-button:disabled a.atm-link--external > svg use,
.mdl-file_upload__add-button:disabled .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__add-button:disabled a.atm-link--external > svg use,
.mdl-file_upload__add-button:disabled .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__add-button:disabled a.atm-link--external > svg use, .mdl-file_upload__add-button[disabled] .atm-icon use, .mdl-file_upload__add-button[disabled] .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__add-button[disabled] a[download] > svg use, .mdl-file_upload__add-button[disabled] .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__add-button[disabled] a.atm-link--external > svg use,
.mdl-file_upload__add-button[disabled] .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__add-button[disabled] a.atm-link--external > svg use,
.mdl-file_upload__add-button[disabled] .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__add-button[disabled] a.atm-link--external > svg use {
    fill: #9D9F9D;
}
.mdl-file_upload__add-button:disabled:hover, .mdl-file_upload__add-button[disabled]:hover {
    color: #9D9F9D;
}
.mdl-file_upload__add-button:disabled:hover .atm-icon use, .mdl-file_upload__add-button:disabled:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__add-button:disabled:hover a[download] > svg use, .mdl-file_upload__add-button:disabled:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__add-button:disabled:hover a.atm-link--external > svg use,
.mdl-file_upload__add-button:disabled:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__add-button:disabled:hover a.atm-link--external > svg use,
.mdl-file_upload__add-button:disabled:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__add-button:disabled:hover a.atm-link--external > svg use, .mdl-file_upload__add-button[disabled]:hover .atm-icon use, .mdl-file_upload__add-button[disabled]:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-file_upload__add-button[disabled]:hover a[download] > svg use, .mdl-file_upload__add-button[disabled]:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-file_upload__add-button[disabled]:hover a.atm-link--external > svg use,
.mdl-file_upload__add-button[disabled]:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-file_upload__add-button[disabled]:hover a.atm-link--external > svg use,
.mdl-file_upload__add-button[disabled]:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-file_upload__add-button[disabled]:hover a.atm-link--external > svg use {
    fill: #9D9F9D;
}
.mdl-file_upload__delete-button {
    display: none;
}
.mdl-file_upload .atm-form_input__message, .mdl-file_upload .mdl-hcaptcha__message {
    margin-top: 0;
}

.mdl-duplication-block {
    flex-grow: 1;
    padding: 0 1.1111111111rem;
}
.mdl-duplication-block--has-duplication .mdl-duplication-block__remove {
    display: inline-flex;
}
.mdl-duplication-block--limit-reached .mdl-duplication-block__controls {
    display: none;
}
.mdl-duplication-block__label {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}
.mdl-duplication-block__element {
    box-shadow: 0 2px 20px 0 rgba(75, 58, 42, 0.25);
    margin-bottom: 2.1666666667rem;
    padding: 2.1666666667rem 2.1666666667rem 1rem 2.1666666667rem;
    min-width: 0;
}
@media all and (max-width: 63.99em) {
    .mdl-duplication-block__element {
        padding: 1rem;
    }
}
.mdl-duplication-block__element-head {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 1rem;
}
.mdl-duplication-block__element-row {
    margin-bottom: 1rem;
}
.mdl-duplication-block__remove, .mdl-duplication-block__controls {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: inline-flex;
}
.mdl-duplication-block__remove:focus, .mdl-duplication-block__controls:focus {
    outline: none;
}
.mdl-duplication-block__remove:focus, .mdl-duplication-block__remove:hover, .mdl-duplication-block__controls:focus, .mdl-duplication-block__controls:hover {
    color: #771511;
}
.mdl-duplication-block__remove:focus .atm-icon use, .mdl-duplication-block__remove:focus .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-duplication-block__remove:focus a[download] > svg use, .mdl-duplication-block__remove:focus .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-duplication-block__remove:focus a.atm-link--external > svg use,
.mdl-duplication-block__remove:focus .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-duplication-block__remove:focus a.atm-link--external > svg use,
.mdl-duplication-block__remove:focus .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-duplication-block__remove:focus a.atm-link--external > svg use, .mdl-duplication-block__remove:hover .atm-icon use, .mdl-duplication-block__remove:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-duplication-block__remove:hover a[download] > svg use, .mdl-duplication-block__remove:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-duplication-block__remove:hover a.atm-link--external > svg use,
.mdl-duplication-block__remove:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-duplication-block__remove:hover a.atm-link--external > svg use,
.mdl-duplication-block__remove:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-duplication-block__remove:hover a.atm-link--external > svg use, .mdl-duplication-block__controls:focus .atm-icon use, .mdl-duplication-block__controls:focus .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-duplication-block__controls:focus a[download] > svg use, .mdl-duplication-block__controls:focus .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-duplication-block__controls:focus a.atm-link--external > svg use,
.mdl-duplication-block__controls:focus .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-duplication-block__controls:focus a.atm-link--external > svg use,
.mdl-duplication-block__controls:focus .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-duplication-block__controls:focus a.atm-link--external > svg use, .mdl-duplication-block__controls:hover .atm-icon use, .mdl-duplication-block__controls:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-duplication-block__controls:hover a[download] > svg use, .mdl-duplication-block__controls:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-duplication-block__controls:hover a.atm-link--external > svg use,
.mdl-duplication-block__controls:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-duplication-block__controls:hover a.atm-link--external > svg use,
.mdl-duplication-block__controls:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-duplication-block__controls:hover a.atm-link--external > svg use {
    fill: #771511;
}
.mdl-duplication-block__remove {
    margin-left: auto;
    display: none;
}
.mdl-duplication-block--no-default-block .mdl-duplication-block__remove {
    display: inline-flex;
}
.mdl-duplication-block__remove .atm-icon, .mdl-duplication-block__remove .mdl-richtext a[download] > svg, .mdl-richtext .mdl-duplication-block__remove a[download] > svg, .mdl-duplication-block__remove .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-duplication-block__remove a.atm-link--external > svg,
.mdl-duplication-block__remove .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-duplication-block__remove a.atm-link--external > svg,
.mdl-duplication-block__remove .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-duplication-block__remove a.atm-link--external > svg {
    /*
    Ensure svg will never be the target of mouse or keyboard event.
    */
    pointer-events: none;
}
.mdl-duplication-block__remove .atm-icon use, .mdl-duplication-block__remove .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-duplication-block__remove a[download] > svg use, .mdl-duplication-block__remove .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-duplication-block__remove a.atm-link--external > svg use,
.mdl-duplication-block__remove .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-duplication-block__remove a.atm-link--external > svg use,
.mdl-duplication-block__remove .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-duplication-block__remove a.atm-link--external > svg use {
    fill: #767675;
}
.mdl-duplication-block__controls {
    align-items: center;
    color: #A61711;
}
.mdl-duplication-block__controls .atm-icon, .mdl-duplication-block__controls .mdl-richtext a[download] > svg, .mdl-richtext .mdl-duplication-block__controls a[download] > svg, .mdl-duplication-block__controls .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-duplication-block__controls a.atm-link--external > svg,
.mdl-duplication-block__controls .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-duplication-block__controls a.atm-link--external > svg,
.mdl-duplication-block__controls .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-duplication-block__controls a.atm-link--external > svg {
    margin-right: 1rem;
}
.mdl-duplication-block__controls .atm-icon use, .mdl-duplication-block__controls .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-duplication-block__controls a[download] > svg use, .mdl-duplication-block__controls .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-duplication-block__controls a.atm-link--external > svg use,
.mdl-duplication-block__controls .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-duplication-block__controls a.atm-link--external > svg use,
.mdl-duplication-block__controls .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-duplication-block__controls a.atm-link--external > svg use {
    fill: #A61711;
}
@media all and (max-width: 63.99em) {
    .mdl-duplication-block .atm-form_input {
        width: 100%;
    }
}

.mdl-form_stepper {
    width: 100%;
    padding-bottom: 0 !important;
    position: relative;
    padding: 0rem 0rem 4rem;
    margin-bottom: 4rem;
}
@media all and (min-width: 64em) {
    .mdl-form_stepper {
        padding: 0rem 0rem 5rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_stepper {
        margin-bottom: 6.2222222222rem;
    }
}
.mdl-form_stepper--no-top-space {
    padding-top: 0;
}
.mdl-form_stepper--no-top-space .mdl-cta_form__item:first-of-type {
    padding-top: 0;
}
.mdl-form_stepper__heading {
    font-weight: 400;
}
.mdl-form_stepper__heading.atm-heading, .context-ghi .mdl-form_stepper__heading.mdl-offer_card__lead, .mdl-form_stepper__heading.mdl-sub-navigation__title, .mdl-richtext h2.mdl-form_stepper__heading,
.mdl-richtext h3.mdl-form_stepper__heading,
.mdl-richtext h4.mdl-form_stepper__heading {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 0;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form_stepper__heading.atm-heading, .context-ghi .mdl-form_stepper__heading.mdl-offer_card__lead, .mdl-form_stepper__heading.mdl-sub-navigation__title, .mdl-richtext h2.mdl-form_stepper__heading,
    .mdl-richtext h3.mdl-form_stepper__heading,
    .mdl-richtext h4.mdl-form_stepper__heading {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_stepper__heading.atm-heading, .context-ghi .mdl-form_stepper__heading.mdl-offer_card__lead, .mdl-form_stepper__heading.mdl-sub-navigation__title, .mdl-richtext h2.mdl-form_stepper__heading,
    .mdl-richtext h3.mdl-form_stepper__heading,
    .mdl-richtext h4.mdl-form_stepper__heading {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_stepper__heading.atm-heading, .context-ghi .mdl-form_stepper__heading.mdl-offer_card__lead, .mdl-form_stepper__heading.mdl-sub-navigation__title, .mdl-richtext h2.mdl-form_stepper__heading,
    .mdl-richtext h3.mdl-form_stepper__heading,
    .mdl-richtext h4.mdl-form_stepper__heading {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_stepper__heading.atm-heading, .context-ghi .mdl-form_stepper__heading.mdl-offer_card__lead, .mdl-form_stepper__heading.mdl-sub-navigation__title, .mdl-richtext h2.mdl-form_stepper__heading,
    .mdl-richtext h3.mdl-form_stepper__heading,
    .mdl-richtext h4.mdl-form_stepper__heading {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_stepper__heading.atm-heading, .context-ghi .mdl-form_stepper__heading.mdl-offer_card__lead, .mdl-form_stepper__heading.mdl-sub-navigation__title, .mdl-richtext h2.mdl-form_stepper__heading,
    .mdl-richtext h3.mdl-form_stepper__heading,
    .mdl-richtext h4.mdl-form_stepper__heading {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_stepper__heading.atm-heading, .context-ghi .mdl-form_stepper__heading.mdl-offer_card__lead, .mdl-form_stepper__heading.mdl-sub-navigation__title, .mdl-richtext h2.mdl-form_stepper__heading,
    .mdl-richtext h3.mdl-form_stepper__heading,
    .mdl-richtext h4.mdl-form_stepper__heading {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_stepper__heading.atm-heading, .context-ghi .mdl-form_stepper__heading.mdl-offer_card__lead, .mdl-form_stepper__heading.mdl-sub-navigation__title, .mdl-richtext h2.mdl-form_stepper__heading,
    .mdl-richtext h3.mdl-form_stepper__heading,
    .mdl-richtext h4.mdl-form_stepper__heading {
        margin-left: 17.994100295%;
    }
}
.mdl-form_stepper--cta .mdl-form_stepper__heading {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    padding-top: 2.1666666667rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form_stepper--cta .mdl-form_stepper__heading {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_stepper--cta .mdl-form_stepper__heading {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_stepper--cta .mdl-form_stepper__heading {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_stepper--cta .mdl-form_stepper__heading {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_stepper--cta .mdl-form_stepper__heading {
        margin-left: 17.994100295%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_stepper--cta .mdl-form_stepper__heading {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_stepper--cta .mdl-form_stepper__heading {
        margin-left: 17.994100295%;
    }
}
.mdl-form_stepper__cell form {
    display: flex;
}
.mdl-form_stepper--cta:before {
    min-width: 100vw;
    position: relative;
    margin-left: 50%;
    left: -50vw;
    display: flex;
    content: "";
    display: block;
    height: 100%;
    top: 0;
    background: linear-gradient(to bottom right, rgba(209, 209, 209, 0.3), rgba(118, 118, 117, 0.3));
    position: absolute;
}
.is-ie .mdl-form_stepper--cta:before {
    max-width: calc(100vw - calc(17 * 1px));
    margin-left: calc(50% + (calc(8.5 * 1px)));
}
.mdl-form_stepper--cta .atm-button:not(.atm-link--btn), .mdl-form_stepper--cta .context-ghi .atm-ghi-button:not(.atm-link--btn), .mdl-form_stepper--cta .context-ghi .mdl-documentsend:not(.atm-link--btn), .context-ghi .mdl-form_stepper--cta .atm-ghi-button:not(.atm-link--btn), .context-ghi .mdl-form_stepper--cta .mdl-documentsend:not(.atm-link--btn), .mdl-form_stepper--cta .atm-link--btn:not(.atm-link--btn) {
    width: 100%;
    justify-content: center;
}
.mdl-form_stepper--cta .atm-heading, .mdl-form_stepper--cta .context-ghi .mdl-offer_card__lead, .context-ghi .mdl-form_stepper--cta .mdl-offer_card__lead, .mdl-form_stepper--cta .mdl-sub-navigation__title, .mdl-form_stepper--cta .mdl-richtext h2, .mdl-richtext .mdl-form_stepper--cta h2,
.mdl-form_stepper--cta .mdl-richtext h3,
.mdl-richtext .mdl-form_stepper--cta h3,
.mdl-form_stepper--cta .mdl-richtext h4,
.mdl-richtext .mdl-form_stepper--cta h4 {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form_stepper--cta .atm-heading, .mdl-form_stepper--cta .context-ghi .mdl-offer_card__lead, .context-ghi .mdl-form_stepper--cta .mdl-offer_card__lead, .mdl-form_stepper--cta .mdl-sub-navigation__title, .mdl-form_stepper--cta .mdl-richtext h2, .mdl-richtext .mdl-form_stepper--cta h2,
    .mdl-form_stepper--cta .mdl-richtext h3,
    .mdl-richtext .mdl-form_stepper--cta h3,
    .mdl-form_stepper--cta .mdl-richtext h4,
    .mdl-richtext .mdl-form_stepper--cta h4 {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_stepper--cta .atm-heading, .mdl-form_stepper--cta .context-ghi .mdl-offer_card__lead, .context-ghi .mdl-form_stepper--cta .mdl-offer_card__lead, .mdl-form_stepper--cta .mdl-sub-navigation__title, .mdl-form_stepper--cta .mdl-richtext h2, .mdl-richtext .mdl-form_stepper--cta h2,
    .mdl-form_stepper--cta .mdl-richtext h3,
    .mdl-richtext .mdl-form_stepper--cta h3,
    .mdl-form_stepper--cta .mdl-richtext h4,
    .mdl-richtext .mdl-form_stepper--cta h4 {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_stepper--cta .atm-heading, .mdl-form_stepper--cta .context-ghi .mdl-offer_card__lead, .context-ghi .mdl-form_stepper--cta .mdl-offer_card__lead, .mdl-form_stepper--cta .mdl-sub-navigation__title, .mdl-form_stepper--cta .mdl-richtext h2, .mdl-richtext .mdl-form_stepper--cta h2,
    .mdl-form_stepper--cta .mdl-richtext h3,
    .mdl-richtext .mdl-form_stepper--cta h3,
    .mdl-form_stepper--cta .mdl-richtext h4,
    .mdl-richtext .mdl-form_stepper--cta h4 {
        flex-basis: 46.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 46.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_stepper--cta .atm-heading, .mdl-form_stepper--cta .context-ghi .mdl-offer_card__lead, .context-ghi .mdl-form_stepper--cta .mdl-offer_card__lead, .mdl-form_stepper--cta .mdl-sub-navigation__title, .mdl-form_stepper--cta .mdl-richtext h2, .mdl-richtext .mdl-form_stepper--cta h2,
    .mdl-form_stepper--cta .mdl-richtext h3,
    .mdl-richtext .mdl-form_stepper--cta h3,
    .mdl-form_stepper--cta .mdl-richtext h4,
    .mdl-richtext .mdl-form_stepper--cta h4 {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_stepper--cta .atm-heading, .mdl-form_stepper--cta .context-ghi .mdl-offer_card__lead, .context-ghi .mdl-form_stepper--cta .mdl-offer_card__lead, .mdl-form_stepper--cta .mdl-sub-navigation__title, .mdl-form_stepper--cta .mdl-richtext h2, .mdl-richtext .mdl-form_stepper--cta h2,
    .mdl-form_stepper--cta .mdl-richtext h3,
    .mdl-richtext .mdl-form_stepper--cta h3,
    .mdl-form_stepper--cta .mdl-richtext h4,
    .mdl-richtext .mdl-form_stepper--cta h4 {
        margin-left: 17.994100295%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_stepper--cta .atm-heading, .mdl-form_stepper--cta .context-ghi .mdl-offer_card__lead, .context-ghi .mdl-form_stepper--cta .mdl-offer_card__lead, .mdl-form_stepper--cta .mdl-sub-navigation__title, .mdl-form_stepper--cta .mdl-richtext h2, .mdl-richtext .mdl-form_stepper--cta h2,
    .mdl-form_stepper--cta .mdl-richtext h3,
    .mdl-richtext .mdl-form_stepper--cta h3,
    .mdl-form_stepper--cta .mdl-richtext h4,
    .mdl-richtext .mdl-form_stepper--cta h4 {
        margin-left: 26.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_stepper--cta .atm-heading, .mdl-form_stepper--cta .context-ghi .mdl-offer_card__lead, .context-ghi .mdl-form_stepper--cta .mdl-offer_card__lead, .mdl-form_stepper--cta .mdl-sub-navigation__title, .mdl-form_stepper--cta .mdl-richtext h2, .mdl-richtext .mdl-form_stepper--cta h2,
    .mdl-form_stepper--cta .mdl-richtext h3,
    .mdl-richtext .mdl-form_stepper--cta h3,
    .mdl-form_stepper--cta .mdl-richtext h4,
    .mdl-richtext .mdl-form_stepper--cta h4 {
        margin-left: 34.6607669617%;
    }
}
.mdl-form_stepper__goto {
    margin-top: 1rem;
}
@media all and (min-width: 100em) {
    .mdl-form_stepper__goto {
        margin-top: 2.1666666667rem;
    }
}
.mdl-form_stepper__error {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    display: none;
    color: #EE000C;
}
@media all and (min-width: 100em) {
    .mdl-form_stepper__error {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
.mdl-form_stepper__error--visible {
    display: block;
}
.mdl-form_stepper__controls {
    display: flex;
    gap: 2.1666666667rem;
    align-items: center;
}
.mdl-form_stepper__controls--wrap {
    flex-wrap: wrap;
}

.mdl-form_step {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form_step {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_step {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_step {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_step {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_step {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_step {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_step {
        margin-left: 17.994100295%;
    }
}
.mdl-form_step .atm-heading, .mdl-form_step .context-ghi .mdl-offer_card__lead, .context-ghi .mdl-form_step .mdl-offer_card__lead, .mdl-form_step .mdl-sub-navigation__title, .mdl-form_step .mdl-richtext h2, .mdl-richtext .mdl-form_step h2,
.mdl-form_step .mdl-richtext h3,
.mdl-richtext .mdl-form_step h3,
.mdl-form_step .mdl-richtext h4,
.mdl-richtext .mdl-form_step h4 {
    margin: 0;
    max-width: max-content;
}
.mdl-form_step--wide {
    margin: 0;
    width: 100%;
    max-width: 100%;
    flex-grow: 1;
}
.mdl-form_step--grid-width {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form_step--grid-width {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_step--grid-width {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_step--grid-width {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_step--grid-width {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
.mdl-form_step--content-aligned {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form_step--content-aligned {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_step--content-aligned {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_step--content-aligned {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_step--content-aligned {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_step--content-aligned {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_step--content-aligned {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_step--content-aligned {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-form_step--content-aligned {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-form_step__heading {
    margin-top: 2.1666666667rem;
    font-weight: 400;
}
.mdl-form_step--wide .mdl-form_step__heading {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form_step--wide .mdl-form_step__heading {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_step--wide .mdl-form_step__heading {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_step--wide .mdl-form_step__heading {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_step--wide .mdl-form_step__heading {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_step--wide .mdl-form_step__heading {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_step--wide .mdl-form_step__heading {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_step--wide .mdl-form_step__heading {
        margin-left: 17.994100295%;
    }
}
.mdl-form_stepper--cta .mdl-form_step {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    justify-self: center;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form_stepper--cta .mdl-form_step {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_stepper--cta .mdl-form_step {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_stepper--cta .mdl-form_step {
        flex-basis: 46.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 46.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_stepper--cta .mdl-form_step {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_stepper--cta .mdl-form_step {
        margin-left: 17.994100295%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_stepper--cta .mdl-form_step {
        margin-left: 26.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_stepper--cta .mdl-form_step {
        margin-left: 34.6607669617%;
    }
}
.mdl-form_step--hidden {
    display: none;
}
@media all and (min-width: 64em) {
    .mdl-form_step__heading {
        margin-top: 2.6666666667rem;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-form_step .atm-button:not(.atm-link--btn), .mdl-form_step .context-ghi .atm-ghi-button:not(.atm-link--btn), .mdl-form_step .context-ghi .mdl-documentsend:not(.atm-link--btn), .context-ghi .mdl-form_step .atm-ghi-button:not(.atm-link--btn), .context-ghi .mdl-form_step .mdl-documentsend:not(.atm-link--btn), .mdl-form_step .atm-link--btn:not(.atm-link--btn) {
        width: 100%;
        justify-content: center;
    }
}
.mdl-form_step--success {
    padding: 2.1666666667rem 0;
}

.mdl-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.mdl-modal--narrow .mdl-modal__wrapper {
    max-height: 55%;
}
.mdl-modal--narrow .mdl-modal__layout {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-modal--narrow .mdl-modal__layout {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-modal--narrow .mdl-modal__layout {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-modal--narrow .mdl-modal__layout {
        flex-basis: 79.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-modal--narrow .mdl-modal__layout {
        flex-basis: 72.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-modal--narrow .mdl-modal__layout {
        margin-left: 10.1851851852%;
    }
}
@media all and (min-width: 100em) {
    .mdl-modal--narrow .mdl-modal__layout {
        margin-left: 17.994100295%;
    }
}
.mdl-modal--narrow .mdl-modal__cell {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-modal--narrow .mdl-modal__cell {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-modal--narrow .mdl-modal__cell {
        flex-basis: 80.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-modal--narrow .mdl-modal__cell {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-modal--narrow .mdl-modal__cell {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-modal--narrow .mdl-modal__cell {
        margin-left: 9.6607669617%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-modal--narrow .mdl-modal__cell {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-modal--narrow .mdl-modal__cell {
        margin-left: 26.3274336283%;
    }
}
.mdl-modal--visible {
    visibility: visible;
    opacity: 1;
}
.mdl-modal--visible .mdl-modal__cell {
    opacity: 1;
    transform: translateY(0);
}
.mdl-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: rgba(64, 63, 63, 0.4);
}
.mdl-modal__wrapper {
    max-height: 75%;
    margin-bottom: auto;
    margin-top: auto;
    height: inherit;
}
.mdl-modal__overlay, .mdl-modal__background, .mdl-modal__close, .mdl-modal__cell {
    z-index: 1;
}
.mdl-modal__layout, .mdl-modal__layout-content, .mdl-modal__background, .mdl-modal__content, .mdl-modal__row {
    height: inherit;
}
.mdl-modal__layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-modal__layout {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-modal__layout {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-modal__layout {
        flex-basis: 79.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 79.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .mdl-modal__layout {
        flex-basis: 80.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 80.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-modal__layout {
        margin-left: 10.1851851852%;
    }
}
@media all and (min-width: 100em) {
    .mdl-modal__layout {
        margin-left: 9.6607669617%;
    }
}
.mdl-modal__layout-content, .mdl-modal__content, .mdl-modal__row, .mdl-modal__cell {
    position: relative;
}
.mdl-modal__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0 9px 29px 0 rgba(0, 0, 0, 0.35);
}
.mdl-modal__close {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: inline-flex;
    overflow: hidden;
    position: absolute;
    top: 2.1666666667rem;
    right: 1rem;
    z-index: 2;
}
.mdl-modal__close:focus {
    outline: none;
}
.mdl-modal__close .atm-icon use, .mdl-modal__close .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-modal__close a[download] > svg use, .mdl-modal__close .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-modal__close a.atm-link--external > svg use,
.mdl-modal__close .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-modal__close a.atm-link--external > svg use,
.mdl-modal__close .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-modal__close a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-modal__bleed {
    min-width: 100vw;
    position: relative;
    margin-left: 50%;
    left: -50vw;
    display: flex;
    height: 100%;
    margin-left: 50%;
    min-width: 100vw;
}
.is-ie .mdl-modal__bleed {
    max-width: calc(100vw - calc(17 * 1px));
    margin-left: calc(50% + (calc(8.5 * 1px)));
}
.mdl-modal__row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-modal__row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-modal__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-modal__row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-modal__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.mdl-modal__cell {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    overflow: auto;
    margin-top: 2.1666666667rem;
    margin-bottom: 2.1666666667rem;
    padding-right: 0.0227777778rem;
    padding-left: 0.0227777778rem;
    height: 100%;
    max-height: calc(100% - 4.3333333333rem);
    transform: translateY(-20px);
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out 0.1s;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-modal__cell {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-modal__cell {
        flex-basis: 80.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 80.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-modal__cell {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-modal__cell {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-modal__cell {
        margin-left: 9.6607669617%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-modal__cell {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-modal__cell {
        margin-left: 17.994100295%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-modal__cell {
        padding-left: 0.25rem;
    }
}
.mdl-modal__cell[data-modal=content] main.content, .mdl-modal__cell[data-modal=content] .context-ghi main.mdl-ghi-footer__reference-content, .context-ghi .mdl-modal__cell[data-modal=content] main.mdl-ghi-footer__reference-content, .mdl-modal__cell[data-modal=content] .context-ghi main.mdl-ghi-footer-navigation, .context-ghi .mdl-modal__cell[data-modal=content] main.mdl-ghi-footer-navigation, .mdl-modal__cell[data-modal=content] .context-ghi main.mdl-ghi-socialnavigation__content, .context-ghi .mdl-modal__cell[data-modal=content] main.mdl-ghi-socialnavigation__content, .mdl-modal__cell[data-modal=content] main.mdl-checkbox_carousel__content, .mdl-modal__cell[data-modal=content] main.mdl-carousel__arrows-layout, .mdl-modal__cell[data-modal=content] main.mdl-carousel__content, .mdl-modal__cell[data-modal=content] main.mdl-notification-banner__wrapper, .mdl-modal__cell[data-modal=content] main.mdl-profile_navigation-menu-list, .mdl-modal__cell[data-modal=content] main.mdl-notifications__content, .mdl-modal__cell[data-modal=content] main.mdl-directions__content, .mdl-modal__cell[data-modal=content] main.mdl-tablist__controls-wrapper-outer, .mdl-modal__cell[data-modal=content] main.mdl-header-container, .mdl-modal__cell[data-modal=content] main.mdl-footer__content, .mdl-modal__cell[data-modal=content] main.mdl-footer__bottom-content, .mdl-modal__cell[data-modal=content] .mdl-offcanvas-navigation-menu .mdl-iconlist main.mdl-iconlist__link, .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-modal__cell[data-modal=content] main.mdl-iconlist__link, .mdl-modal__cell[data-modal=content] .mdl-offcanvas-navigation-menu main.mdl-linklist, .mdl-offcanvas-navigation-menu .mdl-modal__cell[data-modal=content] main.mdl-linklist, .mdl-modal__cell[data-modal=content] main.mdl-modal__content {
    width: 100%;
}
.mdl-modal__cell .mdl-richtext:first-of-type h1:first-of-type, .mdl-modal__cell .mdl-richtext:first-of-type .mdl-form_step__heading:first-of-type,
.mdl-modal__cell .mdl-richtext:first-of-type h2:first-of-type,
.mdl-modal__cell .mdl-richtext:first-of-type h3:first-of-type,
.mdl-modal__cell .mdl-richtext:first-of-type h4:first-of-type,
.mdl-modal__cell .mdl-richtext:first-of-type h5:first-of-type {
    margin-top: 0;
}
.mdl-modal .mdl-form_step--wide .mdl-form_step__heading {
    margin: 0;
    max-width: 100%;
    flex-basis: 100%;
}
.mdl-modal .mdl-loading_spinner {
    z-index: 1;
}
@media all and (max-width: 47.99em) {
    .mdl-modal__cell {
        padding-right: 1rem;
        padding-left: 1rem;
        margin-top: 3.2222222222rem;
    }
    .mdl-modal__close {
        top: 1.5555555556rem;
    }
}

.mdl-scrollytelling {
    min-width: 100vw;
    position: relative;
    margin-left: 50%;
    left: -50vw;
    display: flex;
    display: block;
}
.is-ie .mdl-scrollytelling {
    max-width: calc(100vw - calc(17 * 1px));
    margin-left: calc(50% + (calc(8.5 * 1px)));
}

.mdl-skiplinks {
    position: fixed;
    top: 0;
}
.mdl-skiplinks__link {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    width: 1px;
    color: #A61711;
}
br.mdl-skiplinks__link {
    content: "";
}

.mdl-skiplinks__link:focus, .mdl-skiplinks__link:active {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.mdl-page-header {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    padding-top: 1rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-page-header {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-page-header {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-page-header {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-page-header {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-page-header {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-page-header {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-page-header {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-page-header {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
@media all and (min-width: 64em) {
    .mdl-page-header {
        padding-top: 2.1666666667rem;
    }
}
.mdl-page-header .atm-link--breadcrumb {
    margin-bottom: 1rem;
}
.mdl-page-header + .grid-base-content-cell {
    margin-top: 1rem;
}
@media all and (min-width: 100em) {
    .mdl-page-header + .grid-base-content-cell {
        margin-top: 2.1666666667rem;
    }
}
@media all and (min-width: 48em) {
    .mdl-page-header .atm-link--breadcrumb {
        margin-bottom: 2.1666666667rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-page-header {
        padding-top: 4rem;
    }
    .mdl-page-header .atm-link--breadcrumb {
        margin-bottom: 1rem;
    }
}

.mdl-text_accordion {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 2.1666666667rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-text_accordion {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-text_accordion {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-text_accordion {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-text_accordion {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-text_accordion {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-text_accordion {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-text_accordion {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-text_accordion {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-text_accordion__item {
    margin-bottom: 1rem;
}
.mdl-text_accordion__item--open .mdl-text_accordion__trigger-label {
    display: none;
}
.mdl-text_accordion__item--open .mdl-text_accordion__trigger-label--open {
    display: inline;
}
.mdl-text_accordion__item--open .mdl-text_accordion__icon {
    transform: rotate(0);
}
.mdl-text_accordion__item--open .mdl-text_accordion__icon--expand {
    opacity: 0;
}
.mdl-text_accordion__item--open .mdl-text_accordion__icon--collapse {
    opacity: 1;
}
.mdl-text_accordion__text {
    margin-bottom: 0;
}
.mdl-text_accordion__text > :last-child {
    margin-bottom: 0;
}
.mdl-text_accordion__text--expandable {
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
    max-height: 0;
}
.mdl-text_accordion__text--expandable .mdl-richtext > :first-child, .mdl-text_accordion__text--expandable .mdl-richtext:first-child {
    margin-top: 1rem;
}
.mdl-text_accordion__trigger {
    transition: color 0.5s ease-in-out;
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    color: #A61711;
    display: inline-flex;
    align-items: center;
    margin-top: 0.6666666667rem;
}
.mdl-text_accordion__trigger:focus {
    outline: none;
}
.mdl-text_accordion__trigger use {
    fill: #A61711;
}
.mdl-text_accordion__trigger:hover {
    color: #771511;
}
.mdl-text_accordion__trigger:hover .atm-icon, .mdl-text_accordion__trigger:hover .mdl-richtext a[download] > svg, .mdl-richtext .mdl-text_accordion__trigger:hover a[download] > svg, .mdl-text_accordion__trigger:hover .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-text_accordion__trigger:hover a.atm-link--external > svg,
.mdl-text_accordion__trigger:hover .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-text_accordion__trigger:hover a.atm-link--external > svg,
.mdl-text_accordion__trigger:hover .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-text_accordion__trigger:hover a.atm-link--external > svg {
    fill: #771511;
}
.mdl-text_accordion__trigger-label {
    display: inline;
    font-size: 0.8333333333rem;
    line-height: 1.7;
    margin-left: 0.5rem;
    pointer-events: none;
}
.mdl-text_accordion__trigger-label--open {
    display: none;
}
.mdl-text_accordion__icon {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.mdl-text_accordion__icon .atm-icon, .mdl-text_accordion__icon .mdl-richtext a[download] > svg, .mdl-richtext .mdl-text_accordion__icon a[download] > svg, .mdl-text_accordion__icon .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-text_accordion__icon a.atm-link--external > svg,
.mdl-text_accordion__icon .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-text_accordion__icon a.atm-link--external > svg,
.mdl-text_accordion__icon .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-text_accordion__icon a.atm-link--external > svg {
    transition: fill 0.5s ease-in-out;
    fill: #A61711;
}
.mdl-text_accordion__icon-wrapper {
    position: relative;
    width: 1.8888888889rem;
    height: 1.8888888889rem;
    pointer-events: none;
}
.mdl-text_accordion__icon--collapse {
    opacity: 0;
}
.mdl-text_accordion__icon--expand {
    opacity: 1;
}

.mdl-quick-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    box-shadow: 0 2px 20px 0 rgba(75, 58, 42, 0.25);
    z-index: 99;
    /**
     * ViewPort Large
     */
}
.mdl-quick-navigation .mdl-iconlist {
    gap: 1px;
}
.mdl-quick-navigation .mdl-iconlist .mdl-iconlist__item {
    margin-bottom: 0;
}
.mdl-quick-navigation .mdl-iconlist .mdl-iconlist__item .mdl-iconlist__link {
    padding: 0.5555555556rem 1.1111111111rem 0.8333333333rem 1.1111111111rem;
    line-height: 1.2222222222rem;
    justify-content: center;
}
.mdl-quick-navigation .mdl-iconlist .mdl-iconlist__item .mdl-iconlist__link svg {
    margin-bottom: 0.3333333333rem;
}
.mdl-quick-navigation .mdl-iconlist--red .mdl-iconlist__link,
.mdl-quick-navigation .mdl-iconlist--dark-gray .mdl-iconlist__link,
.mdl-quick-navigation .mdl-iconlist--light-gray .mdl-iconlist__link,
.mdl-quick-navigation .mdl-iconlist--violet .mdl-iconlist__link,
.mdl-quick-navigation .mdl-iconlist--orange .mdl-iconlist__link,
.mdl-quick-navigation .mdl-iconlist--oxide-red .mdl-iconlist__link,
.mdl-quick-navigation .mdl-iconlist--green .mdl-iconlist__link {
    color: #FFF;
}
.mdl-quick-navigation .mdl-iconlist--red .mdl-iconlist__link svg use,
.mdl-quick-navigation .mdl-iconlist--dark-gray .mdl-iconlist__link svg use,
.mdl-quick-navigation .mdl-iconlist--light-gray .mdl-iconlist__link svg use,
.mdl-quick-navigation .mdl-iconlist--violet .mdl-iconlist__link svg use,
.mdl-quick-navigation .mdl-iconlist--orange .mdl-iconlist__link svg use,
.mdl-quick-navigation .mdl-iconlist--oxide-red .mdl-iconlist__link svg use,
.mdl-quick-navigation .mdl-iconlist--green .mdl-iconlist__link svg use {
    fill: #FFF;
}
@media all and (min-width: 64em) {
    .mdl-quick-navigation {
        position: relative;
        box-shadow: none;
        padding-top: 1rem;
    }
    .mdl-quick-navigation--standalone {
        flex-grow: inherit;
        flex-shrink: inherit;
        max-width: 100%;
    }
}
@media all and (min-width: 64em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-quick-navigation--standalone {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-quick-navigation--standalone {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-quick-navigation--standalone {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-quick-navigation--standalone {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-quick-navigation--standalone {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-quick-navigation--standalone {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-quick-navigation--standalone {
        margin-left: 17.994100295%;
    }
}
@media all and (min-width: 64em) {
    [class^=mdl] .mdl-quick-navigation--standalone {
        width: 100%;
        max-width: 100%;
        flex-basis: unset;
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0;
    }
    .mdl-quick-navigation--no-stage {
        display: none;
    }
    .mdl-quick-navigation .mdl-iconlist {
        gap: 2.6666666667rem;
    }
    .mdl-quick-navigation .mdl-iconlist .mdl-iconlist__item .mdl-iconlist__link {
        padding: 1.3333333333rem;
    }
}

.mdl-tablist {
    margin-bottom: 2.1666666667rem;
    width: 100%;
    /*
    // KEEP FOR LATER USE (if switch to tablist contains the specific styles if child modules)
    &__panel > .mdl-richtext,
    .mdl-accordion,
    .mdl-table {
      // Default width for content elements
      @include span($columnsContentTiny, $columnsContentSmall wider, $columnsContentMedium, $columnsContentLarge, $force: true);
      // Push the span element to its correct position
      @include push(0, 1, 2 wide, 2 wide);
    }
    */
}
[class^=mdl] .mdl-tablist {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-tablist > .mdl-tablist__item:first-of-type label, .mdl-tablist > div:not([class^=mdl]) > .mdl-tablist__item:first-of-type label, .mdl-tablist > div:not([class^=mdl]) > div:not([class^=mdl]) > .mdl-tablist__item:first-of-type label, .mdl-tablist > div:not([class^=atm]) > .mdl-tablist__item:first-of-type label, .mdl-tablist > div:not([class^=atm]) > div:not([class^=atm]) > .mdl-tablist__item:first-of-type label {
    padding-left: 0;
}
@media all and (min-width: 64em) {
    .mdl-tablist {
        margin-bottom: 6.2222222222rem;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-tablist .grid-row {
        justify-content: unset;
        flex-wrap: nowrap;
        overflow-y: auto;
    }
    .mdl-tablist .mdl-offer_card {
        width: 100%;
        padding-left: 0.5555555556rem;
        padding-right: 0.5555555556rem;
    }
}
.mdl-tablist__panel-wrapper {
    position: relative;
}
.mdl-tablist__controls-wrapper {
    position: relative;
    z-index: 1;
}
.mdl-tablist__controls-wrapper:before {
    content: "";
    display: block;
    height: 100%;
    min-width: 100vw;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.mdl-tablist__controls-wrapper-inner {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    margin: 0 auto;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-tablist__controls-wrapper-inner {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tablist__controls-wrapper-inner {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tablist__controls-wrapper-inner {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tablist__controls-wrapper-inner {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.mdl-tablist__controls-wrapper--leftaligned .mdl-tablist__controls {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-tablist__controls-wrapper--leftaligned .mdl-tablist__controls {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tablist__controls-wrapper--leftaligned .mdl-tablist__controls {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tablist__controls-wrapper--leftaligned .mdl-tablist__controls {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tablist__controls-wrapper--leftaligned .mdl-tablist__controls {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
.mdl-tablist__controls {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow: auto hidden;
    transition: top 0.2s ease-out;
    position: relative;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(157, 159, 157, 0.6);
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-tablist__controls {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tablist__controls {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tablist__controls {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tablist__controls {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tablist__controls {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tablist__controls {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tablist__controls {
        margin-left: 17.994100295%;
    }
}
.mdl-tablist__controls::-webkit-scrollbar {
    display: none;
}
.mdl-tablist__item {
    flex: 0 0 auto;
}
.mdl-tablist__item.mdl-tablist__item--first > label {
    padding-left: 0;
}
.mdl-tablist__item > label {
    cursor: pointer;
    padding: 1rem;
    color: #767675;
}
.mdl-tablist__item > label:hover {
    color: #282625;
}
.mdl-tablist__item-radiobtn {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    width: 1px;
}
br.mdl-tablist__item-radiobtn {
    content: "";
}

.mdl-tablist__item--active label {
    color: #282625;
}
.mdl-tablist__panel {
    transition: transform 0.2s, opacity 0.5s;
    display: none;
    padding-top: 1rem;
    transform: translateX(0);
    opacity: 0;
}
.mdl-tablist__panel > [class^=mdl]:last-of-type, .mdl-tablist__panel > [class^=atm]:last-of-type, .mdl-tablist__panel > div:not([class^=mdl]) > [class^=mdl]:last-of-type, .mdl-tablist__panel > div:not([class^=mdl]) > div:not([class^=mdl]) > [class^=mdl]:last-of-type, .mdl-tablist__panel > div:not([class^=atm]) > [class^=atm]:last-of-type, .mdl-tablist__panel > div:not([class^=atm]) > div:not([class^=atm]) > [class^=atm]:last-of-type {
    margin-bottom: 0;
}
.mdl-tablist__panel--from-right, .mdl-tablist__panel--from-left, .mdl-tablist__panel--active {
    display: block;
}
.mdl-tablist__panel--active {
    opacity: 1;
}
.mdl-tablist__panel--from-right {
    transform: translateX(20%);
}
.mdl-tablist__panel--from-left {
    transform: translateX(-20%);
}
.mdl-tablist__panel--contentlimit {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-tablist__panel--contentlimit {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tablist__panel--contentlimit {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tablist__panel--contentlimit {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tablist__panel--contentlimit {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tablist__panel--contentlimit {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tablist__panel--contentlimit {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tablist__panel--contentlimit {
        margin-left: 17.994100295%;
    }
}
.mdl-tablist__indicator {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    min-width: 0;
    background: #FF8F18;
    z-index: 1;
    transition: left 0.2s ease-in-out, width 0.2s ease-in-out;
}
.mdl-tablist__arrow {
    background: none;
    border: none;
    z-index: 2;
}
.mdl-tablist__arrow .atm-icon, .mdl-tablist__arrow .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tablist__arrow a[download] > svg, .mdl-tablist__arrow .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tablist__arrow a.atm-link--external > svg,
.mdl-tablist__arrow .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tablist__arrow a.atm-link--external > svg,
.mdl-tablist__arrow .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tablist__arrow a.atm-link--external > svg {
    height: 1.3333333333rem;
    width: 1.3333333333rem;
}
.mdl-tablist .mdl-tablist__arrow {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    top: 0;
    bottom: 0;
    padding: 0;
}
.mdl-tablist .mdl-tablist__arrow-left {
    left: 0;
    background: linear-gradient(transparent, #FFF 40%);
    display: block;
    transform: rotate(90deg);
}
@media all and (min-width: 64em) {
    .mdl-tablist .mdl-tablist__arrow-left {
        left: 15%;
    }
}
@media only screen and (max-width: 600px) {
    .mdl-tablist .mdl-tablist__arrow-left {
        left: -5%;
    }
}
.mdl-tablist .mdl-tablist__arrow-right {
    right: 0;
    background: linear-gradient(180deg, transparent, #FFF 40%);
    display: block;
    transform: rotate(270deg);
}
@media all and (min-width: 64em) {
    .mdl-tablist .mdl-tablist__arrow-right {
        right: 15%;
    }
}
@media only screen and (max-width: 600px) {
    .mdl-tablist .mdl-tablist__arrow-right {
        right: -5%;
    }
}

.mdl-gradient-container {
    background: linear-gradient(to top, #FFF, #F1F1F1);
    min-width: 100vw;
    position: relative;
    margin-left: 50%;
    left: -50vw;
    display: flex;
    padding-top: 5.2631578947%;
}
.is-ie .mdl-gradient-container {
    max-width: calc(100vw - calc(17 * 1px));
    margin-left: calc(50% + (calc(8.5 * 1px)));
}
.mdl-gradient-container .grid-row {
    margin-bottom: 0;
}
.mdl-gradient-container--greybluelight {
    background: linear-gradient(to top, #525E74, #7F879B);
}
.mdl-gradient-container--mediumgrey {
    background: linear-gradient(to top, rgba(118, 118, 117, 0.3), rgba(209, 209, 209, 0.3));
}
.mdl-gradient-container--whitegrey {
    background: linear-gradient(to top, #F1F1F1, #FFF);
}
.mdl-gradient-container--no-top-space {
    padding-top: 0;
}
.mdl-gradient-container--bottom-space {
    padding-bottom: 4rem;
}
.mdl-gradient-container--transparent-space {
    padding-top: 0;
    margin-top: 5.2631578947%;
}

.mdl-directions {
    margin-bottom: 2.1666666667rem;
}
:not([class^=mdl]) .mdl-directions {
    min-width: 100vw;
    position: relative;
    margin-left: 50%;
    left: -50vw;
    display: flex;
}
.is-ie :not([class^=mdl]) .mdl-directions {
    max-width: calc(100vw - calc(17 * 1px));
    margin-left: calc(50% + (calc(8.5 * 1px)));
}
:not([class^=mdl]) .mdl-directions .mdl-directions__maps {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    :not([class^=mdl]) .mdl-directions .mdl-directions__maps {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-directions .mdl-directions__maps {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    :not([class^=mdl]) .mdl-directions .mdl-directions__maps {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    :not([class^=mdl]) .mdl-directions .mdl-directions__maps {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-directions .mdl-directions__maps {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    :not([class^=mdl]) .mdl-directions .mdl-directions__maps {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    :not([class^=mdl]) .mdl-directions .mdl-directions__maps {
        margin-left: 17.994100295%;
    }
}
:not([class^=mdl]) .mdl-directions__row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    :not([class^=mdl]) .mdl-directions__row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    :not([class^=mdl]) .mdl-directions__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    :not([class^=mdl]) .mdl-directions__row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    :not([class^=mdl]) .mdl-directions__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
:not([class^=mdl]) .mdl-directions__maps {
    height: 11.7777777778rem;
    margin-bottom: 2.1666666667rem;
}
@media all and (min-width: 48em) {
    :not([class^=mdl]) .mdl-directions__maps {
        height: 33.3333333333rem;
    }
}
@media all and (min-width: 64em) {
    :not([class^=mdl]) .mdl-directions__maps {
        margin-bottom: 4rem;
    }
}
.mdl-directions__text-wrapper {
    width: 100%;
}

.mdl-search {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-top: 2.7777777778rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-search {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-search {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-search {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-search {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-search {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-search {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-search {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-search {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-search__no-results, .mdl-search__results, .mdl-search__counter, .mdl-search__more {
    display: none;
}
.mdl-search--no-results .mdl-search__no-results, .mdl-search--has-results .mdl-search__counter, .mdl-search--has-results .mdl-search__results, .mdl-search--has-more .mdl-search__more, .mdl-search--is-loading .mdl-search__input .atm-loading {
    display: block;
}
.mdl-search--is-loading .mdl-search__input .atm-loading {
    height: 100%;
}
.mdl-search__input {
    position: relative;
    margin-bottom: 2.1666666667rem;
}
.mdl-search__input .atm-loading {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 4rem;
    width: 5.5555555556rem;
    border-radius: 0 5px 5px 0;
}
.mdl-search__input .atm-loading .mdl-search__bubble {
    top: 1.5555555556rem;
    margin-left: 0.5555555556rem;
}
.mdl-search__counter {
    margin-bottom: 1rem;
}
.mdl-search__no-results .query {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}
.mdl-search__no-results .atm-link, .mdl-search__no-results .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-search__no-results a, .mdl-search__no-results .context-ghi .atm-ghi-link, .context-ghi .mdl-search__no-results .atm-ghi-link, .mdl-search__no-results .mdl-promo-textteaser__description, .mdl-search__no-results .atm-paragraph a, .mdl-search__no-results .mdl-plain-text-accordion__height-representation a, .mdl-search__no-results .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-search__no-results a, .mdl-plain-text-accordion__height-representation .mdl-search__no-results a, .mdl-plain-text-accordion__text .mdl-search__no-results a, .mdl-search__no-results .mdl-iconlist__link, .mdl-search__no-results .mdl-richtext a, .mdl-richtext .mdl-search__no-results a,
.mdl-search__no-results .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-search__no-results a[download],
.mdl-search__no-results .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-search__no-results a[download], .mdl-search__no-results .mdl-input-list__label a, .mdl-input-list__label .mdl-search__no-results a, .mdl-search__no-results .mdl-dropdown__title a, .mdl-dropdown__title .mdl-search__no-results a, .mdl-search__no-results .mdl-filter__label a, .mdl-filter__label .mdl-search__no-results a {
    margin-top: 1rem;
}
.mdl-search__results {
    margin-bottom: 2.1666666667rem;
    border-top: 1px solid #9D9F9D;
}
.mdl-search__result {
    padding: 2.1666666667rem 0;
    border-bottom: 1px solid #9D9F9D;
}
.mdl-search__result strong {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}
.mdl-search__result .atm-paragraph, .mdl-search__result .mdl-plain-text-accordion__height-representation, .mdl-search__result .mdl-plain-text-accordion__text, .mdl-search__result .mdl-richtext p, .mdl-richtext .mdl-search__result p, .mdl-search__result .mdl-input-list__label, .mdl-search__result .mdl-dropdown__title, .mdl-search__result .mdl-filter__label {
    margin: 0;
}
.mdl-search__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 1rem;
    list-style: none;
    line-height: 0;
}
.mdl-search__breadcrumb-item {
    display: flex;
    align-items: center;
    height: 1.8888888889rem;
}
.mdl-search__breadcrumb-item:last-child .atm-icon, .mdl-search__breadcrumb-item:last-child .mdl-richtext a[download] > svg, .mdl-richtext .mdl-search__breadcrumb-item:last-child a[download] > svg, .mdl-search__breadcrumb-item:last-child .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-search__breadcrumb-item:last-child a.atm-link--external > svg,
.mdl-search__breadcrumb-item:last-child .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-search__breadcrumb-item:last-child a.atm-link--external > svg,
.mdl-search__breadcrumb-item:last-child .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-search__breadcrumb-item:last-child a.atm-link--external > svg {
    display: none;
}
.mdl-search__breadcrumb-item .atm-link, .mdl-search__breadcrumb-item .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-search__breadcrumb-item a, .mdl-search__breadcrumb-item .context-ghi .atm-ghi-link, .context-ghi .mdl-search__breadcrumb-item .atm-ghi-link, .mdl-search__breadcrumb-item .mdl-promo-textteaser__description, .mdl-search__breadcrumb-item .atm-paragraph a, .mdl-search__breadcrumb-item .mdl-plain-text-accordion__height-representation a, .mdl-search__breadcrumb-item .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-search__breadcrumb-item a, .mdl-plain-text-accordion__height-representation .mdl-search__breadcrumb-item a, .mdl-plain-text-accordion__text .mdl-search__breadcrumb-item a, .mdl-search__breadcrumb-item .mdl-iconlist__link, .mdl-search__breadcrumb-item .mdl-richtext a, .mdl-richtext .mdl-search__breadcrumb-item a,
.mdl-search__breadcrumb-item .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-search__breadcrumb-item a[download],
.mdl-search__breadcrumb-item .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-search__breadcrumb-item a[download], .mdl-search__breadcrumb-item .mdl-input-list__label a, .mdl-input-list__label .mdl-search__breadcrumb-item a, .mdl-search__breadcrumb-item .mdl-dropdown__title a, .mdl-dropdown__title .mdl-search__breadcrumb-item a, .mdl-search__breadcrumb-item .mdl-filter__label a, .mdl-filter__label .mdl-search__breadcrumb-item a {
    font-size: 0.8333333333rem;
}
.mdl-search__breadcrumb-item .atm-icon, .mdl-search__breadcrumb-item .mdl-richtext a[download] > svg, .mdl-richtext .mdl-search__breadcrumb-item a[download] > svg, .mdl-search__breadcrumb-item .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-search__breadcrumb-item a.atm-link--external > svg,
.mdl-search__breadcrumb-item .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-search__breadcrumb-item a.atm-link--external > svg,
.mdl-search__breadcrumb-item .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-search__breadcrumb-item a.atm-link--external > svg {
    position: relative;
    width: 1rem;
    height: 1rem;
    transform: rotate(-90deg);
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
    .mdl-search__breadcrumb-item .atm-icon use, .mdl-search__breadcrumb-item .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-search__breadcrumb-item a[download] > svg use, .mdl-search__breadcrumb-item .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-search__breadcrumb-item a.atm-link--external > svg use,
    .mdl-search__breadcrumb-item .mdl-richtext ul a.atm-link--external > svg use,
    .mdl-richtext ul .mdl-search__breadcrumb-item a.atm-link--external > svg use,
    .mdl-search__breadcrumb-item .mdl-richtext ol a.atm-link--external > svg use,
    .mdl-richtext ol .mdl-search__breadcrumb-item a.atm-link--external > svg use {
        transform-origin: 0.9444444444rem;
        -webkit-transform-origin-x: 0.9444444444rem;
        -webkit-transform-origin-y: 0.8333333333rem;
    }
}
.mdl-search__breadcrumb-item .atm-icon use, .mdl-search__breadcrumb-item .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-search__breadcrumb-item a[download] > svg use, .mdl-search__breadcrumb-item .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-search__breadcrumb-item a.atm-link--external > svg use,
.mdl-search__breadcrumb-item .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-search__breadcrumb-item a.atm-link--external > svg use,
.mdl-search__breadcrumb-item .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-search__breadcrumb-item a.atm-link--external > svg use {
    transform: scale(0.5);
    -webkit-transform-origin-x: 0.9444444444rem;
    -webkit-transform-origin-y: 0.8333333333rem;
}
.mdl-search__title {
    margin: 0;
    font-size: calc(18 * 1px);
    line-height: 1.5;
}
.mdl-search__title-container {
    display: flex;
    margin: 0 0 0.5rem;
}
.mdl-search__logo {
    height: 1.3333333333rem;
    margin-top: 1rem;
}
.mdl-search__more {
    margin: 2.1666666667rem 0;
}

.mdl-teaser {
    text-decoration: none;
    color: inherit;
    outline: none;
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 2.1666666667rem;
    display: flex;
    flex-flow: column wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-teaser {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-teaser {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-teaser {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser {
        margin-bottom: 4rem;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-teaser {
        flex-basis: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
}
.mdl-teaser__background {
    height: 16.0555555556rem;
    background: linear-gradient(to bottom right, #D1D1D1, #767675);
    width: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}
@media all and (min-width: 100em) {
    .mdl-teaser__background {
        height: 16.7777777778rem;
    }
}
.mdl-teaser__background--orange {
    background: linear-gradient(to bottom right, #FFBA62, #FF8F18);
}
.mdl-teaser__background--darkred {
    background: linear-gradient(to bottom right, #A61711, #771511);
}
.mdl-teaser__background--red {
    background: linear-gradient(to bottom right, #FF5041, #C40017);
}
.mdl-teaser__background--purple {
    background: linear-gradient(to bottom right, #9E0090, #500049);
}
.mdl-teaser__background--oxide-red {
    background: linear-gradient(to bottom right, #C62b24, #9E0008);
}
.mdl-teaser__background--white-inverted {
    background: linear-gradient(to bottom right, #F1F1F1, #FFF);
}
.mdl-teaser__background--dark-grey {
    background: linear-gradient(to bottom right, #767675, #363331);
}
.mdl-teaser__background--olive {
    background: linear-gradient(to bottom right, #6F8D59, #404A38);
}
.mdl-teaser__background--light-grey {
    background: linear-gradient(to bottom right, #F1F1F1, #FFF);
}
.mdl-teaser__background--fit-image .atm-image {
    object-fit: cover;
    font-family: "object-fit: cover";
    position: absolute;
    transform: translate3d(0, 0, 0);
    width: 100%;
    height: 100%;
}
.mdl-teaser__content {
    padding: 0 1rem 1.6111111111rem 1rem;
    box-shadow: 0 8px 30px 0 rgba(54, 51, 49, 0.15);
    width: 100%;
    flex-grow: 1;
    margin-top: -1px;
}
@media all and (min-width: 64em) {
    .mdl-teaser__content {
        padding: 0 1rem 1.3888888889rem 1rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser__content {
        padding: 0.2777777778rem 2.1666666667rem 1.6111111111rem 2.1666666667rem;
    }
}
.mdl-teaser__content .atm-paragraph, .mdl-teaser__content .mdl-plain-text-accordion__height-representation, .mdl-teaser__content .mdl-plain-text-accordion__text, .mdl-teaser__content .mdl-richtext p, .mdl-richtext .mdl-teaser__content p, .mdl-teaser__content .mdl-input-list__label, .mdl-teaser__content .mdl-dropdown__title, .mdl-teaser__content .mdl-filter__label {
    margin-bottom: 0;
}
.mdl-teaser__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    height: 2.8888888889rem;
    margin-top: -2.8888888889rem;
}
@media all and (min-width: 100em) {
    .mdl-teaser__header {
        margin-right: 1rem;
    }
}
.mdl-teaser__cta {
    display: flex;
    align-items: center;
    transition: transform 0.5s, opacity 0.5s;
    transform: translateX(2.8888888889rem);
    opacity: 1;
}
@media all and (min-width: 100em) {
    .mdl-teaser__cta {
        transform: translateX(0);
        opacity: 0;
    }
}
.mdl-teaser__cta .atm-icon use, .mdl-teaser__cta .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-teaser__cta a[download] > svg use, .mdl-teaser__cta .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-teaser__cta a.atm-link--external > svg use,
.mdl-teaser__cta .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-teaser__cta a.atm-link--external > svg use,
.mdl-teaser__cta .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-teaser__cta a.atm-link--external > svg use {
    fill: #767675;
}
.mdl-teaser__label {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
    color: #767675;
}
.mdl-teaser__icon {
    display: flex;
    transition: transform 0.5s, opacity 0.5s;
    opacity: 0;
    z-index: 1;
}
@media all and (min-width: 100em) {
    .mdl-teaser__icon {
        transform: translateX(0);
        opacity: 1;
    }
}
.mdl-teaser__heading {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 0.3333333333rem;
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
    transition: color 0.5s;
}
@media all and (min-width: 48em) {
    .mdl-teaser__heading {
        font-size: 1rem;
    }
}
.mdl-teaser__logo {
    margin-top: 1.3333333333rem;
    transition: filter 0.5s ease-in-out;
    display: inline-flex;
    align-self: flex-start;
    width: 100%;
}
@media all and (min-width: 48em) {
    .mdl-teaser__logo {
        margin-top: 1.4444444444rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser__logo {
        margin-top: 1.5rem;
    }
}
.mdl-teaser__logo > .atm-image {
    width: auto;
    max-height: 1.6666666667rem;
    min-height: 1.6666666667rem;
}
@media all and (min-width: 100em) {
    .mdl-teaser__logo {
        filter: grayscale(100%);
    }
}
.mdl-teaser--small .mdl-teaser__background {
    height: 5rem;
}
.mdl-teaser--medium .mdl-teaser__background {
    height: 5rem;
}
@media all and (min-width: 64em) {
    .mdl-teaser--medium .mdl-teaser__background {
        height: 4.3333333333rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser--medium .mdl-teaser__background {
        height: 6.7222222222rem;
    }
}
.mdl-teaser--medium .mdl-teaser__content {
    display: flex;
    flex-direction: column;
    min-height: 9.4444444444rem;
}
.mdl-teaser--medium .mdl-teaser__content .atm-paragraph, .mdl-teaser--medium .mdl-teaser__content .mdl-plain-text-accordion__height-representation, .mdl-teaser--medium .mdl-teaser__content .mdl-plain-text-accordion__text, .mdl-teaser--medium .mdl-teaser__content .mdl-richtext p, .mdl-richtext .mdl-teaser--medium .mdl-teaser__content p, .mdl-teaser--medium .mdl-teaser__content .mdl-input-list__label, .mdl-teaser--medium .mdl-teaser__content .mdl-dropdown__title, .mdl-teaser--medium .mdl-teaser__content .mdl-filter__label {
    margin-bottom: auto;
}
.mdl-teaser--medium .mdl-teaser__logo {
    margin-top: 0.8888888889rem;
}
.mdl-teaser:not(.mdl-teaser--small):not(.mdl-teaser--medium) .mdl-teaser__content {
    padding: 0.7777777778rem 0.7777777778rem 1.9444444444rem 0.8888888889rem;
}
@media all and (min-width: 48em) {
    .mdl-teaser:not(.mdl-teaser--small):not(.mdl-teaser--medium) .mdl-teaser__content {
        padding: 2.1666666667rem 2.1666666667rem 1.6111111111rem 2.1666666667rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser:not(.mdl-teaser--small):not(.mdl-teaser--medium) .mdl-teaser__content {
        padding: 2.1666666667rem 2.1666666667rem 1.8333333333rem 2.1666666667rem;
    }
}
.mdl-teaser:not(.mdl-teaser--small):not(.mdl-teaser--medium) .mdl-teaser__heading {
    margin-bottom: 0.2777777778rem;
}
@media all and (min-width: 48em) {
    .mdl-teaser:not(.mdl-teaser--small):not(.mdl-teaser--medium) .mdl-teaser__heading {
        margin-bottom: 0.5rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser:hover .mdl-teaser__cta, .mdl-teaser:focus .mdl-teaser__cta {
        transform: translateX(2.8888888889rem);
        opacity: 1;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser:hover .mdl-teaser__icon, .mdl-teaser:focus .mdl-teaser__icon {
        transform: translateX(100%);
        opacity: 0;
        transition-delay: 0s;
    }
}
.mdl-teaser:hover .mdl-teaser__heading, .mdl-teaser:focus .mdl-teaser__heading {
    color: #767675;
}
.mdl-teaser:hover .mdl-teaser__logo, .mdl-teaser:focus .mdl-teaser__logo {
    filter: grayscale(0);
}

.mdl-teaser_list {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    margin-top: 1rem;
}

.mdl-teaser_scroll_list {
    margin-bottom: 1.8333333333rem;
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    max-width: 100%;
}
@media all and (min-width: 48em) {
    .mdl-teaser_scroll_list {
        margin-bottom: 1.5rem;
    }
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-teaser_scroll_list {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-teaser_scroll_list {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-teaser_scroll_list {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 96.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser_scroll_list {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
.mdl-teaser_scroll_list__wrapper {
    padding-bottom: 2.1666666667rem;
    padding-top: 1rem;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    scroll-snap-type: x mandatory;
    scroll-snap-points-x: repeat(25%);
    overflow-x: auto;
}
@media all and (min-width: 48em) and (max-width: 99.99em) {
    .mdl-teaser_scroll_list__wrapper {
        box-sizing: content-box;
    }
}
@media all and (min-width: 48em) and (max-width: 99.99em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-teaser_scroll_list__wrapper {
        scroll-padding: 5.0931677019%;
    }
}
@media all and (min-width: 48em) and (max-width: 99.99em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-teaser_scroll_list__wrapper {
        scroll-padding: 2.6548672566%;
    }
}
@media all and (min-width: 48em) and (max-width: 99.99em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-teaser_scroll_list__wrapper {
        scroll-padding: 3.7037037037%;
    }
}
@media all and (min-width: 48em) and (max-width: 99.99em) and (min-width: 100em) {
    .mdl-teaser_scroll_list__wrapper {
        scroll-padding: 2.6548672566%;
    }
}
.mdl-teaser_scroll_list__item:first-child {
    padding-left: 10px;
    margin-left: auto;
}
.mdl-teaser_scroll_list__item:last-child {
    padding-right: 10px;
    margin-right: auto;
}
.mdl-teaser_scroll_list__item {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-teaser_scroll_list__item {
        flex-basis: 86.2267080745%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-teaser_scroll_list__item {
        flex-basis: 44.505899705%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-teaser_scroll_list__item {
        flex-basis: 27.7777777778%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-teaser_scroll_list__item {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-teaser_scroll_list__item {
        margin: 0;
    }
}
.mdl-teaser_scroll_list__item-inner {
    height: 100%;
}
.mdl-teaser_scroll_list__heading {
    font-weight: 400;
    margin-top: 1.5555555556rem;
    font-size: 1.5rem;
}
@media all and (min-width: 48em) {
    .mdl-teaser_scroll_list__heading {
        font-size: 2.3333333333rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-teaser_scroll_list__heading {
        margin-top: 1rem;
    }
}
.mdl-teaser_scroll_list .mdl-teaser,
.mdl-teaser_scroll_list .mdl-offer_card {
    margin-bottom: 0;
    height: 100%;
    flex-basis: 100%;
    margin-left: 0;
    margin-right: 0;
}
@media all and (max-width: 63.99em) {
    .mdl-teaser_scroll_list .mdl-teaser,
    .mdl-teaser_scroll_list .mdl-offer_card {
        width: 100%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-teaser_scroll_list .mdl-teaser,
    .mdl-teaser_scroll_list .mdl-offer_card {
        scroll-snap-align: center;
    }
}
@media all and (min-width: 48em) and (max-width: 99.99em) {
    .mdl-teaser_scroll_list .mdl-teaser,
    .mdl-teaser_scroll_list .mdl-offer_card {
        scroll-snap-align: start;
    }
}
@media all and (max-width: 99.99em) {
    .mdl-teaser_scroll_list .mdl-teaser,
    .mdl-teaser_scroll_list .mdl-offer_card {
        transition: transform 0.5s ease-in-out;
    }
}
.mdl-teaser_scroll_list .mdl-teaser__content,
.mdl-teaser_scroll_list .mdl-offer_card__content {
    display: flex;
    flex-direction: column;
}
.mdl-teaser_scroll_list .mdl-teaser__content .atm-paragraph, .mdl-teaser_scroll_list .mdl-teaser__content .mdl-plain-text-accordion__height-representation, .mdl-teaser_scroll_list .mdl-teaser__content .mdl-plain-text-accordion__text, .mdl-teaser_scroll_list .mdl-teaser__content .mdl-richtext p, .mdl-richtext .mdl-teaser_scroll_list .mdl-teaser__content p, .mdl-teaser_scroll_list .mdl-teaser__content .mdl-input-list__label, .mdl-teaser_scroll_list .mdl-teaser__content .mdl-dropdown__title, .mdl-teaser_scroll_list .mdl-teaser__content .mdl-filter__label,
.mdl-teaser_scroll_list .mdl-offer_card__content .atm-paragraph,
.mdl-teaser_scroll_list .mdl-offer_card__content .mdl-plain-text-accordion__height-representation,
.mdl-teaser_scroll_list .mdl-offer_card__content .mdl-plain-text-accordion__text,
.mdl-teaser_scroll_list .mdl-offer_card__content .mdl-richtext p,
.mdl-richtext .mdl-teaser_scroll_list .mdl-offer_card__content p,
.mdl-teaser_scroll_list .mdl-offer_card__content .mdl-input-list__label,
.mdl-teaser_scroll_list .mdl-offer_card__content .mdl-dropdown__title,
.mdl-teaser_scroll_list .mdl-offer_card__content .mdl-filter__label {
    margin-bottom: auto;
}
.mdl-teaser_scroll_list .mdl-teaser__heading,
.mdl-teaser_scroll_list .mdl-offer_card__heading {
    padding-top: 10px;
}
@media all and (max-width: 63.99em) {
    .mdl-teaser_scroll_list .mdl-teaser {
        padding-left: 0.2777777778rem;
        padding-right: 0.2777777778rem;
    }
}

.mdl-loading_spinner {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.mdl-loading_spinner--scaled {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mdl-loading_spinner--dark {
    background: rgba(0, 0, 0, 0.6);
}
.mdl-loading_spinner--dark .mdl-loading_spinner__animation {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    text-indent: -9999em;
    border-top: 0.2em solid rgba(255, 255, 255, 0.2);
    border-right: 0.2em solid rgba(255, 255, 255, 0.2);
    border-bottom: 0.2em solid rgba(255, 255, 255, 0.2);
    border-left: 0.2em solid #FFF;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
.mdl-loading_spinner--dark .mdl-loading_spinner__animation:after {
    border-radius: 50%;
    width: 3em;
    height: 3em;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.mdl-loading_spinner--light {
    background: rgba(255, 255, 255, 0.6);
}
.mdl-loading_spinner--light .mdl-loading_spinner__animation {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    text-indent: -9999em;
    border-top: 0.2em solid rgba(40, 38, 37, 0.2);
    border-right: 0.2em solid rgba(40, 38, 37, 0.2);
    border-bottom: 0.2em solid rgba(40, 38, 37, 0.2);
    border-left: 0.2em solid #282625;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
.mdl-loading_spinner--light .mdl-loading_spinner__animation:after {
    border-radius: 50%;
    width: 3em;
    height: 3em;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.mdl-loading_spinner--icon-only {
    background: none;
}
.mdl-loading_spinner--icon-only .mdl-loading_spinner__animation {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    text-indent: -9999em;
    border-top: 0.2em solid rgba(40, 38, 37, 0.2);
    border-right: 0.2em solid rgba(40, 38, 37, 0.2);
    border-bottom: 0.2em solid rgba(40, 38, 37, 0.2);
    border-left: 0.2em solid #282625;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
.mdl-loading_spinner--icon-only .mdl-loading_spinner__animation:after {
    border-radius: 50%;
    width: 3em;
    height: 3em;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.mdl-loading_spinner--display {
    display: flex;
}
.mdl-loading_spinner--with-text {
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
}
.mdl-loading_spinner--with-text .mdl-loading_spinner__text {
    flex: auto 0 0;
    display: flex;
    text-align: center;
}
.mdl-loading_spinner--with-text .mdl-loading_spinner__text .atm-paragraph, .mdl-loading_spinner--with-text .mdl-loading_spinner__text .mdl-plain-text-accordion__height-representation, .mdl-loading_spinner--with-text .mdl-loading_spinner__text .mdl-plain-text-accordion__text, .mdl-loading_spinner--with-text .mdl-loading_spinner__text .mdl-richtext p, .mdl-richtext .mdl-loading_spinner--with-text .mdl-loading_spinner__text p, .mdl-loading_spinner--with-text .mdl-loading_spinner__text .mdl-input-list__label, .mdl-loading_spinner--with-text .mdl-loading_spinner__text .mdl-dropdown__title, .mdl-loading_spinner--with-text .mdl-loading_spinner__text .mdl-filter__label {
    margin: 0;
}
.mdl-loading_spinner--login-overlay {
    background-color: #FFF;
    flex-direction: column;
    z-index: 2;
}
.mdl-loading_spinner--login-overlay .mdl-loading_spinner__logo {
    margin-bottom: 2.1666666667rem;
}
@media all and (min-width: 0em) {
    .mdl-loading_spinner--login-overlay .mdl-loading_spinner__logo {
        height: 2.3333333333rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-loading_spinner--login-overlay .mdl-loading_spinner__logo {
        height: 2.8888888889rem;
    }
}
.mdl-loading_spinner--login-overlay .mdl-loading_spinner__logo img {
    width: auto;
    height: 100%;
}
.mdl-loading_spinner--login-overlay .mdl-loading_spinner__logo,
.mdl-loading_spinner--login-overlay .mdl-loading_spinner__text {
    flex: auto 0 0;
    display: flex;
}
.mdl-loading_spinner--login-overlay .mdl-loading_spinner__text {
    text-align: center;
    margin: 2.1666666667rem 0.5rem 0;
}
.mdl-loading_spinner--login-overlay .mdl-loading_spinner__animation {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    text-indent: -9999em;
    border-top: 0.2em solid rgba(40, 38, 37, 0.2);
    border-right: 0.2em solid rgba(40, 38, 37, 0.2);
    border-bottom: 0.2em solid rgba(40, 38, 37, 0.2);
    border-left: 0.2em solid #282625;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
.mdl-loading_spinner--login-overlay .mdl-loading_spinner__animation:after {
    border-radius: 50%;
    width: 3em;
    height: 3em;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.mdl-loading_spinner__animation {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    text-indent: -9999em;
    border-top: 0.2em solid rgba(255, 255, 255, 0.2);
    border-right: 0.2em solid rgba(255, 255, 255, 0.2);
    border-bottom: 0.2em solid rgba(255, 255, 255, 0.2);
    border-left: 0.2em solid #FFF;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
.mdl-loading_spinner__animation:after {
    border-radius: 50%;
    width: 3em;
    height: 3em;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.mdl-loading_spinner--small .mdl-loading_spinner__animation {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    text-indent: -9999em;
    border-top: 0.2em solid rgba(40, 38, 37, 0.2);
    border-right: 0.2em solid rgba(40, 38, 37, 0.2);
    border-bottom: 0.2em solid rgba(40, 38, 37, 0.2);
    border-left: 0.2em solid #282625;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
}
.mdl-loading_spinner--small .mdl-loading_spinner__animation:after {
    border-radius: 50%;
    width: 2em;
    height: 2em;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.mdl-user-menu {
    position: absolute;
    right: 0;
    display: none;
    background-color: #FFF;
    padding: 1.3333333333rem 1rem;
    width: 100%;
    /**
    * ViewPort Small
    */
    /**
    * ViewPort Large
    */
}
.mdl-user-menu .mdl-linklist {
    list-style: none;
    margin: 0;
    padding: 0;
    padding: 0;
}
.mdl-user-menu .mdl-linklist__item {
    margin-bottom: 0;
}
.mdl-user-menu .mdl-linklist__item:first-of-type {
    margin-bottom: 1rem;
}
.mdl-user-menu .mdl-linklist__item:last-of-type svg:first-of-type {
    margin-left: 0;
    margin-right: 0.5rem;
}
.mdl-user-menu .mdl-linklist__item .atm-link, .mdl-user-menu .mdl-linklist__item .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .context-ghi .atm-ghi-link, .context-ghi .mdl-user-menu .mdl-linklist__item .atm-ghi-link, .mdl-user-menu .mdl-linklist__item .mdl-promo-textteaser__description, .mdl-user-menu .mdl-linklist__item .atm-paragraph a, .mdl-user-menu .mdl-linklist__item .mdl-plain-text-accordion__height-representation a, .mdl-user-menu .mdl-linklist__item .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-user-menu .mdl-linklist__item a, .mdl-plain-text-accordion__height-representation .mdl-user-menu .mdl-linklist__item a, .mdl-plain-text-accordion__text .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-iconlist__link, .mdl-user-menu .mdl-linklist__item .mdl-richtext a, .mdl-richtext .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-input-list__label a, .mdl-input-list__label .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-dropdown__title a, .mdl-dropdown__title .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-filter__label a, .mdl-filter__label .mdl-user-menu .mdl-linklist__item a {
    font-size: calc(18 * 1px);
}
@media (min-width: 0px) {
    .mdl-user-menu .mdl-linklist__item .atm-link, .mdl-user-menu .mdl-linklist__item .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .context-ghi .atm-ghi-link, .context-ghi .mdl-user-menu .mdl-linklist__item .atm-ghi-link, .mdl-user-menu .mdl-linklist__item .mdl-promo-textteaser__description, .mdl-user-menu .mdl-linklist__item .atm-paragraph a, .mdl-user-menu .mdl-linklist__item .mdl-plain-text-accordion__height-representation a, .mdl-user-menu .mdl-linklist__item .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-user-menu .mdl-linklist__item a, .mdl-plain-text-accordion__height-representation .mdl-user-menu .mdl-linklist__item a, .mdl-plain-text-accordion__text .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-iconlist__link, .mdl-user-menu .mdl-linklist__item .mdl-richtext a, .mdl-richtext .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-input-list__label a, .mdl-input-list__label .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-dropdown__title a, .mdl-dropdown__title .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-filter__label a, .mdl-filter__label .mdl-user-menu .mdl-linklist__item a {
        font-size: calc(0.5859375vw + 18px);
    }
}
@media (min-width: 1024px) {
    .mdl-user-menu .mdl-linklist__item .atm-link, .mdl-user-menu .mdl-linklist__item .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .context-ghi .atm-ghi-link, .context-ghi .mdl-user-menu .mdl-linklist__item .atm-ghi-link, .mdl-user-menu .mdl-linklist__item .mdl-promo-textteaser__description, .mdl-user-menu .mdl-linklist__item .atm-paragraph a, .mdl-user-menu .mdl-linklist__item .mdl-plain-text-accordion__height-representation a, .mdl-user-menu .mdl-linklist__item .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-user-menu .mdl-linklist__item a, .mdl-plain-text-accordion__height-representation .mdl-user-menu .mdl-linklist__item a, .mdl-plain-text-accordion__text .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-iconlist__link, .mdl-user-menu .mdl-linklist__item .mdl-richtext a, .mdl-richtext .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-input-list__label a, .mdl-input-list__label .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-dropdown__title a, .mdl-dropdown__title .mdl-user-menu .mdl-linklist__item a, .mdl-user-menu .mdl-linklist__item .mdl-filter__label a, .mdl-filter__label .mdl-user-menu .mdl-linklist__item a {
        font-size: calc(24 * 1px);
    }
}
@media all and (min-width: 48em) {
    .mdl-user-menu {
        padding: 2.6666666667rem 1rem 2.9444444444rem 2.3333333333rem;
        width: 27.4444444444rem;
        margin-left: auto;
        margin-right: 0;
    }
    .mdl-user-menu .mdl-linklist__item:first-of-type {
        margin-bottom: 1.6111111111rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-user-menu {
        width: 29.5555555556rem;
        padding: 2.6666666667rem 4rem 2.9444444444rem 2.3333333333rem;
    }
}

.mdl-service-list {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    position: relative;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-service-list {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-service-list {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-service-list {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-service-list {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) {
    .mdl-service-list {
        flex-wrap: nowrap;
        margin-bottom: 0.2222222222rem;
        padding-top: 2.1666666667rem;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) {
    .mdl-service-list {
        margin-bottom: 0rem;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) {
    .mdl-service-list {
        padding-top: 0rem;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-service-list {
        padding: 1rem;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-service-list {
        padding-top: 2rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-service-list {
        margin-left: unset;
        margin-right: unset;
    }
}
.mdl-service-list:before {
    min-width: 100vw;
    position: relative;
    margin-left: 50%;
    left: -50vw;
    display: flex;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(157, 159, 157, 0.6);
}
.is-ie .mdl-service-list:before {
    max-width: calc(100vw - calc(17 * 1px));
    margin-left: calc(50% + (calc(8.5 * 1px)));
}
.mdl-service-list--colored .mdl-service-list__logo {
    filter: grayscale(0%);
}
.mdl-service-list__item {
    text-decoration: none;
    position: relative;
}
@media all and (max-width: 47.99em) {
    .mdl-service-list__item {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        margin-bottom: 1rem;
        word-break: break-word;
    }
    .mdl-service-list__item .mdl-service-list__text {
        margin: unset;
        width: 40%;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-service-list__item {
        flex-grow: inherit;
        flex-shrink: inherit;
        max-width: 100%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-service-list__item {
        flex-basis: 44.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 44.9068322981%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-service-list__item {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 47.3451327434%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-service-list__item {
        flex-basis: 21.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 21.2962962963%;
    }
}
@media all and (max-width: 63.99em) and (min-width: 100em) {
    .mdl-service-list__item {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 22.3451327434%;
    }
}
@media all and (min-width: 64em) {
    .mdl-service-list__item {
        box-sizing: content-box;
        box-sizing: content-box;
        flex-grow: 1;
        flex-basis: 0;
        margin-right: -1px;
        padding-top: 2.1666666667rem;
        border-right: 1px solid rgba(157, 159, 157, 0.6);
    }
}
@media all and (min-width: 64em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-service-list__item {
        padding-right: 2.5465838509%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-service-list__item {
        padding-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-service-list__item {
        padding-right: 1.8518518519%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-service-list__item {
        padding-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-service-list__item {
        padding-left: 2.5465838509%;
    }
}
@media all and (min-width: 64em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-service-list__item {
        padding-left: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-service-list__item {
        padding-left: 1.8518518519%;
    }
}
@media all and (min-width: 64em) and (min-width: 100em) {
    .mdl-service-list__item {
        padding-left: 1.3274336283%;
    }
}
@media all and (min-width: 100em) {
    .mdl-service-list__item {
        padding-top: 2.1666666667rem;
    }
    .mdl-service-list__item:first-of-type {
        padding-left: 0;
    }
    .mdl-service-list__item:last-of-type {
        padding-right: 0;
    }
}
.mdl-service-list__item:hover .mdl-service-list__logo {
    filter: grayscale(0%);
}
.mdl-service-list > .mdl-service-list__item:last-of-type, .mdl-service-list > div:not([class^=mdl]) > .mdl-service-list__item:last-of-type, .mdl-service-list > div:not([class^=mdl]) > div:not([class^=mdl]) > .mdl-service-list__item:last-of-type, .mdl-service-list > div:not([class^=atm]) > .mdl-service-list__item:last-of-type, .mdl-service-list > div:not([class^=atm]) > div:not([class^=atm]) > .mdl-service-list__item:last-of-type {
    border: none;
}
.mdl-service-list__title {
    font-size: calc(15 * 1px);
    display: none;
}
@media (min-width: 0px) {
    .mdl-service-list__title {
        font-size: calc(0vw + 15px);
    }
}
@media (min-width: 1024px) {
    .mdl-service-list__title {
        font-size: calc(0.5208333333vw + 9.6666666667px);
    }
}
@media (min-width: 1600px) {
    .mdl-service-list__title {
        font-size: calc(18 * 1px);
    }
}
@media all and (min-width: 64em) {
    .mdl-service-list__title {
        display: block;
        font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
        color: #767675;
        margin: 1.4444444444rem 0 0 0;
        line-height: 1.3;
    }
}
.mdl-service-list__text {
    font-size: calc(15 * 1px);
    display: block;
    color: #282625;
    margin: 1.1666666667rem 0 2.5rem 0;
    line-height: 1.4;
}
@media (min-width: 0px) {
    .mdl-service-list__text {
        font-size: calc(0vw + 15px);
    }
}
@media (min-width: 1024px) {
    .mdl-service-list__text {
        font-size: calc(0.5208333333vw + 9.6666666667px);
    }
}
@media (min-width: 1600px) {
    .mdl-service-list__text {
        font-size: calc(18 * 1px);
    }
}
@media all and (min-width: 64em) {
    .mdl-service-list__text {
        margin-bottom: 1.9444444444rem;
    }
}
.mdl-service-list__logo {
    display: inline-flex;
    transition: filter 0.2s ease-in-out;
    filter: grayscale(100%);
}
.mdl-service-list__logo .atm-image {
    height: 1.5555555556rem;
    width: auto;
}
@media all and (min-width: 64em) {
    .mdl-service-list__logo .atm-image {
        height: 1.9444444444rem;
    }
}

.mdl-sub-navigation {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 1.1111111111rem;
    width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-sub-navigation {
        flex-basis: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-sub-navigation {
        flex-basis: 97.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-sub-navigation {
        flex-basis: 96.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-sub-navigation {
        flex-basis: 97.3451327434%;
    }
}
@media all and (min-width: 64em) {
    .mdl-sub-navigation {
        margin-bottom: 2.8888888889rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-sub-navigation {
        margin-bottom: 2.3333333333rem;
    }
}
.mdl-sub-navigation__title {
    border-bottom: 1px solid rgba(157, 159, 157, 0.6);
    padding-bottom: 1rem;
}
.mdl-sub-navigation__list {
    padding-top: calc(6 * 1px);
    display: flex;
    flex-flow: column wrap;
}
@media all and (min-width: 48em) {
    .mdl-sub-navigation__list {
        flex-direction: row;
    }
}
@media all and (min-width: 64em) {
    .mdl-sub-navigation__list {
        width: 80%;
    }
}
@media all and (min-width: 100em) {
    .mdl-sub-navigation__list {
        width: 60%;
    }
}
.mdl-sub-navigation__item {
    flex: 0 0 33%;
    margin-bottom: 1rem;
}
.mdl-sub-navigation__item .atm-link, .mdl-sub-navigation__item .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-sub-navigation__item a, .mdl-sub-navigation__item .context-ghi .atm-ghi-link, .context-ghi .mdl-sub-navigation__item .atm-ghi-link, .mdl-sub-navigation__item .mdl-promo-textteaser__description, .mdl-sub-navigation__item .atm-paragraph a, .mdl-sub-navigation__item .mdl-plain-text-accordion__height-representation a, .mdl-sub-navigation__item .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-sub-navigation__item a, .mdl-plain-text-accordion__height-representation .mdl-sub-navigation__item a, .mdl-plain-text-accordion__text .mdl-sub-navigation__item a, .mdl-sub-navigation__item .mdl-iconlist__link, .mdl-sub-navigation__item .mdl-richtext a, .mdl-richtext .mdl-sub-navigation__item a,
.mdl-sub-navigation__item .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-sub-navigation__item a[download],
.mdl-sub-navigation__item .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-sub-navigation__item a[download], .mdl-sub-navigation__item .mdl-input-list__label a, .mdl-input-list__label .mdl-sub-navigation__item a, .mdl-sub-navigation__item .mdl-dropdown__title a, .mdl-dropdown__title .mdl-sub-navigation__item a, .mdl-sub-navigation__item .mdl-filter__label a, .mdl-filter__label .mdl-sub-navigation__item a {
    color: #767675;
    line-height: 1.3;
}
.mdl-sub-navigation__item .atm-link:hover, .mdl-sub-navigation__item .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-sub-navigation__item a:hover, .mdl-sub-navigation__item .context-ghi .atm-ghi-link:hover, .context-ghi .mdl-sub-navigation__item .atm-ghi-link:hover, .mdl-sub-navigation__item .mdl-promo-textteaser__description:hover, .mdl-sub-navigation__item .atm-paragraph a:hover, .mdl-sub-navigation__item .mdl-plain-text-accordion__height-representation a:hover, .mdl-sub-navigation__item .mdl-plain-text-accordion__text a:hover, .atm-paragraph .mdl-sub-navigation__item a:hover, .mdl-plain-text-accordion__height-representation .mdl-sub-navigation__item a:hover, .mdl-plain-text-accordion__text .mdl-sub-navigation__item a:hover, .mdl-sub-navigation__item .mdl-iconlist__link:hover, .mdl-sub-navigation__item .mdl-richtext a:hover, .mdl-richtext .mdl-sub-navigation__item a:hover, .mdl-sub-navigation__item .mdl-input-list__label a:hover, .mdl-input-list__label .mdl-sub-navigation__item a:hover, .mdl-sub-navigation__item .mdl-dropdown__title a:hover, .mdl-dropdown__title .mdl-sub-navigation__item a:hover, .mdl-sub-navigation__item .mdl-filter__label a:hover, .mdl-filter__label .mdl-sub-navigation__item a:hover {
    color: #282625;
}

.mdl-dropout {
    flex-direction: column;
    border: calc(2 * 1px) solid #FF8F18;
    padding: 1rem;
    display: none;
    width: 100%;
}
.mdl-dropout--active {
    display: flex;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.mdl-dropout__content {
    display: flex;
    align-items: flex-start;
}
.mdl-dropout__icon {
    line-height: normal;
}
.mdl-dropout__icon .atm-icon, .mdl-dropout__icon .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropout__icon a[download] > svg, .mdl-dropout__icon .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropout__icon a.atm-link--external > svg,
.mdl-dropout__icon .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropout__icon a.atm-link--external > svg,
.mdl-dropout__icon .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropout__icon a.atm-link--external > svg {
    margin-right: 0.5rem;
}
.mdl-dropout__icon .atm-icon use, .mdl-dropout__icon .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropout__icon a[download] > svg use, .mdl-dropout__icon .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropout__icon a.atm-link--external > svg use,
.mdl-dropout__icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropout__icon a.atm-link--external > svg use,
.mdl-dropout__icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropout__icon a.atm-link--external > svg use {
    fill: #FF8F18;
}
.mdl-dropout__text {
    font-size: calc(15 * 1px);
    margin: 0;
    max-width: 39.5555555556rem;
    padding-top: 0.1111111111rem;
}
@media (min-width: 0px) {
    .mdl-dropout__text {
        font-size: calc(0vw + 15px);
    }
}
@media (min-width: 1024px) {
    .mdl-dropout__text {
        font-size: calc(0.5208333333vw + 9.6666666667px);
    }
}
@media (min-width: 1600px) {
    .mdl-dropout__text {
        font-size: calc(18 * 1px);
    }
}
.mdl-dropout__link {
    text-align: center;
    display: none;
}
.mdl-dropout__link--show {
    display: block;
}
.mdl-dropout__link .atm-link, .mdl-dropout__link .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-dropout__link a, .mdl-dropout__link .context-ghi .atm-ghi-link, .context-ghi .mdl-dropout__link .atm-ghi-link, .mdl-dropout__link .mdl-promo-textteaser__description, .mdl-dropout__link .atm-paragraph a, .mdl-dropout__link .mdl-plain-text-accordion__height-representation a, .mdl-dropout__link .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-dropout__link a, .mdl-plain-text-accordion__height-representation .mdl-dropout__link a, .mdl-plain-text-accordion__text .mdl-dropout__link a, .mdl-dropout__link .mdl-iconlist__link, .mdl-dropout__link .mdl-richtext a, .mdl-richtext .mdl-dropout__link a,
.mdl-dropout__link .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-dropout__link a[download],
.mdl-dropout__link .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-dropout__link a[download], .mdl-dropout__link .mdl-input-list__label a, .mdl-input-list__label .mdl-dropout__link a, .mdl-dropout__link .mdl-dropdown__title a, .mdl-dropdown__title .mdl-dropout__link a, .mdl-dropout__link .mdl-filter__label a, .mdl-filter__label .mdl-dropout__link a {
    margin-top: 1rem;
    padding-left: 2.1666666667rem;
    padding-right: 2.1666666667rem;
}
@media all and (min-width: 48em) {
    .mdl-dropout {
        padding: 2.1666666667rem;
    }
    .mdl-dropout .mdl-dropout__icon {
        margin-right: 2.1666666667rem;
    }
    .mdl-dropout .mdl-dropout__text {
        padding-top: 0.4444444444rem;
    }
    .mdl-dropout .mdl-dropout__link {
        text-align: left;
        padding-left: 4.3888888889rem;
    }
}

.mdl-infotext--red .atm-icon use, .mdl-infotext--red .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-infotext--red a[download] > svg use, .mdl-infotext--red .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-infotext--red a.atm-link--external > svg use,
.mdl-infotext--red .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-infotext--red a.atm-link--external > svg use,
.mdl-infotext--red .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-infotext--red a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-infotext--red:hover .atm-icon use, .mdl-infotext--red:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-infotext--red:hover a[download] > svg use, .mdl-infotext--red:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-infotext--red:hover a.atm-link--external > svg use,
.mdl-infotext--red:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-infotext--red:hover a.atm-link--external > svg use,
.mdl-infotext--red:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-infotext--red:hover a.atm-link--external > svg use {
    fill: #771511;
}

.mdl-form {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-form {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-form_success--hidden {
    display: none;
}
.mdl-form_error {
    display: none;
    color: #F9001D;
}
.mdl-form_error--visible {
    display: inherit;
}
.mdl-form--hide-form form {
    display: none;
}
.mdl-form__message, .mdl-form__success-block {
    display: none;
}
.mdl-form--validation-error [data-message=validationError] {
    display: inherit;
}
.mdl-form--backend-error [data-message=backendError] {
    display: inherit;
}
.mdl-form--request-error [data-message=requestError] {
    display: inherit;
}
.mdl-form--success .mdl-form__success-block {
    display: inherit;
}

.hidden {
    display: none;
}
.hidden .atm-checkbox {
    display: none;
}

.mdl-autocomplete-input__suggestions {
    margin-top: -1.1666666667rem;
    display: none;
    border: #767675 solid calc(2 * 1px);
    border-radius: 0 0 5px 5px;
    border-top: 0;
    margin-top: -25px;
    background-color: #FFF;
    position: relative;
    padding: 0.7777777778rem 0.7777777778rem 1.5555555556rem 0.7777777778rem;
}
@media all and (min-width: 100em) {
    .mdl-autocomplete-input__suggestions {
        margin-top: -2.3333333333rem;
    }
}
.mdl-autocomplete-input__suggestions--show {
    display: block;
}
.mdl-autocomplete-input__suggestion {
    line-height: 2.6rem;
    list-style: none;
    padding: 0 0.7777777778rem;
    cursor: pointer;
}
.mdl-autocomplete-input__suggestion:hover, .mdl-autocomplete-input__suggestion--active {
    background-color: #F1F1F1;
}
.mdl-autocomplete-input__suggestion .highlighted {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}

.mdl-hcaptcha.invalid .mdl-hcaptcha__message-required {
    display: block;
}
.mdl-hcaptcha.error .mdl-hcaptcha__message-error {
    display: block;
}
.mdl-notifications {
    position: fixed;
    width: 100%;
    top: 80px;
    left: 0;
    pointer-events: none;
    z-index: 15001;
}
.mdl-notifications__content {
    pointer-events: none;
}
.mdl-notifications__row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-notifications__row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-notifications__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-notifications__row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-notifications__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.mdl-notifications__list {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-notifications__list {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-notifications__list {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-notifications__list {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-notifications__list {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}

.mdl-notification-box {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    border: calc(2 * 1px) solid #FF8F18;
    padding: 1rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-notification-box {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-notification-box {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-notification-box {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-notification-box {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-notification-box {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-notification-box {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-notification-box {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-notification-box {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-notification-box--dropout .mdl-notification-box__content {
    margin-bottom: 1rem;
}
.mdl-notification-box__content {
    display: flex;
    align-items: flex-start;
}
.mdl-notification-box__icon {
    line-height: normal;
    margin-right: 0.5rem;
}
.mdl-notification-box__icon .atm-icon use, .mdl-notification-box__icon .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-box__icon a[download] > svg use, .mdl-notification-box__icon .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-box__icon a.atm-link--external > svg use,
.mdl-notification-box__icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-box__icon a.atm-link--external > svg use,
.mdl-notification-box__icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-box__icon a.atm-link--external > svg use {
    fill: #FF8F18;
}
.mdl-notification-box__icon, .mdl-notification-box__text {
    flex: 0 1 auto;
}
.mdl-notification-box__text {
    font-size: calc(15 * 1px);
    margin: 0;
    padding-top: 0.1111111111rem;
    max-width: 39.5555555556rem;
}
@media (min-width: 0px) {
    .mdl-notification-box__text {
        font-size: calc(0vw + 15px);
    }
}
@media (min-width: 1024px) {
    .mdl-notification-box__text {
        font-size: calc(0.5208333333vw + 9.6666666667px);
    }
}
@media (min-width: 1600px) {
    .mdl-notification-box__text {
        font-size: calc(18 * 1px);
    }
}
.mdl-notification-box__text p {
    margin-top: 0;
    padding-top: 0.1111111111rem;
}
.mdl-notification-box__text b {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}
.mdl-notification-box__text b i,
.mdl-notification-box__text i b {
    font-family: "Frutiger LT W02_66 Bold Italic", Frutiger, sans-serif;
}
.mdl-notification-box__infotext {
    margin-left: auto;
    margin-top: 0.1111111111rem;
    padding-left: 2.1666666667rem;
}
.mdl-notification-box__link {
    text-align: center;
}
.mdl-notification-box__link .atm-link, .mdl-notification-box__link .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-box__link a, .mdl-notification-box__link .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-box__link .atm-ghi-link, .mdl-notification-box__link .mdl-promo-textteaser__description, .mdl-notification-box__link .atm-paragraph a, .mdl-notification-box__link .mdl-plain-text-accordion__height-representation a, .mdl-notification-box__link .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-box__link a, .mdl-plain-text-accordion__height-representation .mdl-notification-box__link a, .mdl-plain-text-accordion__text .mdl-notification-box__link a, .mdl-notification-box__link .mdl-iconlist__link, .mdl-notification-box__link .mdl-richtext a, .mdl-richtext .mdl-notification-box__link a,
.mdl-notification-box__link .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-notification-box__link a[download],
.mdl-notification-box__link .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-notification-box__link a[download], .mdl-notification-box__link .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-box__link a, .mdl-notification-box__link .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-box__link a, .mdl-notification-box__link .mdl-filter__label a, .mdl-filter__label .mdl-notification-box__link a {
    padding-left: 2.1666666667rem;
    padding-right: 2.1666666667rem;
}
@media all and (min-width: 64em) {
    .mdl-notification-box {
        padding: 2.1666666667rem;
    }
    .mdl-notification-box .mdl-notification-box__icon {
        margin-right: 2.1666666667rem;
    }
    .mdl-notification-box .mdl-notification-box__text {
        padding-top: 0.3333333333rem;
    }
    .mdl-notification-box .mdl-notification-box__infotext {
        margin-top: 0.3333333333rem;
    }
    .mdl-notification-box .mdl-notification-box__link {
        text-align: left;
        padding-left: 4.3888888889rem;
    }
}
.mdl-notification-box--highlighted {
    border-width: 3px;
    border-radius: 5px;
}
.mdl-notification-box--highlighted .mdl-notification-box__text {
    margin: auto 0;
}
.mdl-notification-box--highlighted .atm-link, .mdl-notification-box--highlighted .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-box--highlighted a, .mdl-notification-box--highlighted .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-box--highlighted .atm-ghi-link, .mdl-notification-box--highlighted .mdl-promo-textteaser__description, .mdl-notification-box--highlighted .atm-paragraph a, .mdl-notification-box--highlighted .mdl-plain-text-accordion__height-representation a, .mdl-notification-box--highlighted .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-box--highlighted a, .mdl-plain-text-accordion__height-representation .mdl-notification-box--highlighted a, .mdl-plain-text-accordion__text .mdl-notification-box--highlighted a, .mdl-notification-box--highlighted .mdl-iconlist__link, .mdl-notification-box--highlighted .mdl-richtext a, .mdl-richtext .mdl-notification-box--highlighted a,
.mdl-notification-box--highlighted .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-notification-box--highlighted a[download],
.mdl-notification-box--highlighted .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-notification-box--highlighted a[download], .mdl-notification-box--highlighted .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-box--highlighted a, .mdl-notification-box--highlighted .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-box--highlighted a, .mdl-notification-box--highlighted .mdl-filter__label a, .mdl-filter__label .mdl-notification-box--highlighted a {
    display: block;
    margin-top: 0.3333333333rem;
}
.mdl-notification-box--highlighted .mdl-notification-box__icon {
    margin: 0 1rem 0 0;
}
@media all and (min-width: 64em) {
    .mdl-notification-box--highlighted .mdl-notification-box__icon {
        margin: 0 2.1666666667rem 0 0;
    }
}
[class^=mdl] .mdl-notification-box--inline {
    margin-bottom: 0;
    margin-top: 0;
    padding: 1rem;
}
@media all and (min-width: 64em) {
    [class^=mdl] .mdl-notification-box--inline {
        padding: 2.1666666667rem;
    }
}
.mdl-notification-box--confirm {
    border-color: #47692E;
}
.mdl-notification-box--confirm .mdl-notification-box__icon .atm-icon use, .mdl-notification-box--confirm .mdl-notification-box__icon .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-box--confirm .mdl-notification-box__icon a[download] > svg use, .mdl-notification-box--confirm .mdl-notification-box__icon .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-box--confirm .mdl-notification-box__icon a.atm-link--external > svg use,
.mdl-notification-box--confirm .mdl-notification-box__icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-box--confirm .mdl-notification-box__icon a.atm-link--external > svg use,
.mdl-notification-box--confirm .mdl-notification-box__icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-box--confirm .mdl-notification-box__icon a.atm-link--external > svg use {
    fill: #47692E;
}
.mdl-notification-box--alert {
    border-color: #EE000C;
}
.mdl-notification-box--alert .mdl-notification-box__icon .atm-icon use, .mdl-notification-box--alert .mdl-notification-box__icon .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-box--alert .mdl-notification-box__icon a[download] > svg use, .mdl-notification-box--alert .mdl-notification-box__icon .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-box--alert .mdl-notification-box__icon a.atm-link--external > svg use,
.mdl-notification-box--alert .mdl-notification-box__icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-box--alert .mdl-notification-box__icon a.atm-link--external > svg use,
.mdl-notification-box--alert .mdl-notification-box__icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-box--alert .mdl-notification-box__icon a.atm-link--external > svg use {
    fill: #EE000C;
}
.mdl-notification-box--info {
    border-color: #143A5E;
}
.mdl-notification-box--info .mdl-notification-box__icon .atm-icon use, .mdl-notification-box--info .mdl-notification-box__icon .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-box--info .mdl-notification-box__icon a[download] > svg use, .mdl-notification-box--info .mdl-notification-box__icon .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-box--info .mdl-notification-box__icon a.atm-link--external > svg use,
.mdl-notification-box--info .mdl-notification-box__icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-box--info .mdl-notification-box__icon a.atm-link--external > svg use,
.mdl-notification-box--info .mdl-notification-box__icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-box--info .mdl-notification-box__icon a.atm-link--external > svg use {
    fill: #143A5E;
}
.mdl-notification-box--gradient {
    font-family: "Frutiger LT W02_55 Roman", Frutiger, sans-serif;
    background: linear-gradient(314.26deg, #FFB96F 0%, #FFE3B0 100%);
}

.mdl-profile_navigation {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.75rem;
}
.mdl-profile_navigation-name {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    color: var(--color-grey);
}
.mdl-profile_navigation-name:focus {
    outline: none;
}
.mdl-profile_navigation-name svg, .mdl-profile_navigation-name span {
    vertical-align: middle;
}
.mdl-profile_navigation-name svg {
    fill: var(--color-grey);
}
.mdl-profile_navigation-menu {
    position: absolute;
    inset: 2.9444444444rem 0 100% 0;
    transition: bottom 0.2s ease;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}
.mdl-header--sticky .mdl-profile_navigation-menu {
    position: fixed;
}
.mdl-profile_navigation-menu-container {
    width: 100%;
}
.mdl-profile_navigation-menu-content {
    background: #FFF;
    box-shadow: 0 20px 30px 0 rgba(75, 58, 42, 0.1);
    pointer-events: all;
}
@media all and (min-width: 48em) {
    .mdl-profile_navigation-menu-content {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-profile_navigation-menu-content {
        padding-top: 2.1666666667rem;
        padding-bottom: 2.1666666667rem;
    }
}
.mdl-profile_navigation-menu--active {
    bottom: 0;
}
.mdl-profile_navigation-menu-element {
    font-family: "Frutiger LT W02_55 Roman", Frutiger, sans-serif;
}
@media all and (min-width: 0em) {
    .mdl-profile_navigation-menu-element {
        font-size: 1rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-profile_navigation-menu-element {
        font-size: 1.3333333333rem;
    }
}
.mdl-profile_navigation-menu-element button {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #A61711;
    width: 100%;
    padding: 0.5rem 0;
}
.mdl-profile_navigation-menu-element button:focus {
    outline: none;
}
.mdl-profile_navigation-menu-element button .atm-icon, .mdl-profile_navigation-menu-element button .mdl-richtext a[download] > svg, .mdl-richtext .mdl-profile_navigation-menu-element button a[download] > svg, .mdl-profile_navigation-menu-element button .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-profile_navigation-menu-element button a.atm-link--external > svg,
.mdl-profile_navigation-menu-element button .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-profile_navigation-menu-element button a.atm-link--external > svg,
.mdl-profile_navigation-menu-element button .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-profile_navigation-menu-element button a.atm-link--external > svg {
    flex-shrink: 0;
    margin-left: auto;
}
.mdl-profile_navigation-menu-element button .atm-icon use, .mdl-profile_navigation-menu-element button .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-profile_navigation-menu-element button a[download] > svg use, .mdl-profile_navigation-menu-element button .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-profile_navigation-menu-element button a.atm-link--external > svg use,
.mdl-profile_navigation-menu-element button .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-profile_navigation-menu-element button a.atm-link--external > svg use,
.mdl-profile_navigation-menu-element button .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-profile_navigation-menu-element button a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-profile_navigation-menu-element-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #A61711;
    padding: 0.5rem 0;
}
.mdl-profile_navigation-menu-element-link .atm-icon, .mdl-profile_navigation-menu-element-link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-profile_navigation-menu-element-link a[download] > svg, .mdl-profile_navigation-menu-element-link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-profile_navigation-menu-element-link a.atm-link--external > svg,
.mdl-profile_navigation-menu-element-link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-profile_navigation-menu-element-link a.atm-link--external > svg,
.mdl-profile_navigation-menu-element-link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-profile_navigation-menu-element-link a.atm-link--external > svg {
    flex-shrink: 0;
    margin-left: auto;
}
.mdl-profile_navigation-menu-element-link .atm-icon use, .mdl-profile_navigation-menu-element-link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-profile_navigation-menu-element-link a[download] > svg use, .mdl-profile_navigation-menu-element-link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-profile_navigation-menu-element-link a.atm-link--external > svg use,
.mdl-profile_navigation-menu-element-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-profile_navigation-menu-element-link a.atm-link--external > svg use,
.mdl-profile_navigation-menu-element-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-profile_navigation-menu-element-link a.atm-link--external > svg use {
    fill: #A61711;
}
@media all and (min-width: 64em) {
    .mdl-profile_navigation-menu-content {
        width: 30rem;
        margin-left: auto;
    }
    .mdl-profile_navigation-menu-list {
        padding: 0 4rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-profile_navigation-menu-container {
        max-width: 80.8888888889rem;
        margin: 0 auto;
    }
    .mdl-profile_navigation-menu-content {
        margin-left: 54.8888888889rem;
    }
}

.mdl-notification-banner {
    min-width: 100vw;
    position: relative;
    margin-left: 50%;
    left: -50vw;
    display: flex;
    display: none;
    background: linear-gradient(135deg, #CF0018 0%, #FF5041 100%);
    padding: 1rem;
    margin-bottom: -3rem;
}
.is-ie .mdl-notification-banner {
    max-width: calc(100vw - calc(17 * 1px));
    margin-left: calc(50% + (calc(8.5 * 1px)));
}
.mdl-notification-banner--visible {
    display: block;
    z-index: 99;
}
.mdl-notification-banner__wrapper {
    display: flex;
}
.mdl-notification-banner--red {
    background: linear-gradient(to bottom right, #FF5041, #C40017);
}
.mdl-notification-banner--red .mdl-notification-banner__icon svg use,
.mdl-notification-banner--red .mdl-notification-banner__close svg use {
    fill: #FFF;
}
.mdl-notification-banner--red .mdl-notification-banner__content {
    color: #FFF;
}
.mdl-notification-banner--red .mdl-notification-banner__content .atm-link, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content a, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--red .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--red .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--red .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--red .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--red .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--red .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a[download] > svg use {
    fill: #FFF;
}
.mdl-notification-banner--red .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--red .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--red .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--red .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--red .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--red .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--red .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--red .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--red .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--red .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--red .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--red .mdl-notification-banner__close-button:focus {
    border: 1px solid #FFF;
}
.mdl-notification-banner--oxidred {
    background: #A61711;
}
.mdl-notification-banner--oxidred .mdl-notification-banner__icon svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__close svg use {
    fill: #FFF;
}
.mdl-notification-banner--oxidred .mdl-notification-banner__content {
    color: #FFF;
}
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content a, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--oxidred .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--oxidred .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a[download] > svg use {
    fill: #FFF;
}
.mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--oxidred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--oxidred .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--oxidred .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--oxidred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--oxidred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--oxidred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--oxidred .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--oxidred .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--oxidred .mdl-notification-banner__close-button:focus {
    border: 1px solid #FFF;
}
.mdl-notification-banner--orange {
    background: #FF8F18;
}
.mdl-notification-banner--orange .mdl-notification-banner__icon svg use,
.mdl-notification-banner--orange .mdl-notification-banner__close svg use {
    fill: #FFF;
}
.mdl-notification-banner--orange .mdl-notification-banner__content {
    color: #FFF;
}
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-link, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content a, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--orange .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--orange .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a[download] > svg use {
    fill: #FFF;
}
.mdl-notification-banner--orange .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--orange .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--orange .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--orange .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--orange .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--orange .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--orange .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--orange .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--orange .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--orange .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--orange .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--orange .mdl-notification-banner__close-button:focus {
    border: 1px solid #FFF;
}
.mdl-notification-banner--purple {
    background: #500049;
}
.mdl-notification-banner--purple .mdl-notification-banner__icon svg use,
.mdl-notification-banner--purple .mdl-notification-banner__close svg use {
    fill: #FFF;
}
.mdl-notification-banner--purple .mdl-notification-banner__content {
    color: #FFF;
}
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-link, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content a, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--purple .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--purple .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a[download] > svg use {
    fill: #FFF;
}
.mdl-notification-banner--purple .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--purple .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--purple .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--purple .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--purple .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--purple .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--purple .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--purple .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--purple .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--purple .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--purple .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--purple .mdl-notification-banner__close-button:focus {
    border: 1px solid #FFF;
}
.mdl-notification-banner--grey {
    background: #767675;
}
.mdl-notification-banner--grey .mdl-notification-banner__icon svg use,
.mdl-notification-banner--grey .mdl-notification-banner__close svg use {
    fill: #FFF;
}
.mdl-notification-banner--grey .mdl-notification-banner__content {
    color: #FFF;
}
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-link, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content a, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--grey .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--grey .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a[download] > svg use {
    fill: #FFF;
}
.mdl-notification-banner--grey .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--grey .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--grey .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--grey .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--grey .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--grey .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--grey .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--grey .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--grey .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--grey .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--grey .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--grey .mdl-notification-banner__close-button:focus {
    border: 1px solid #FFF;
}
.mdl-notification-banner--greybluedark {
    background: #0C263C;
}
.mdl-notification-banner--greybluedark .mdl-notification-banner__icon svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__close svg use {
    fill: #FFF;
}
.mdl-notification-banner--greybluedark .mdl-notification-banner__content {
    color: #FFF;
}
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content a, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--greybluedark .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a[download] > svg use {
    fill: #FFF;
}
.mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluedark .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--greybluedark .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluedark .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluedark .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--greybluedark .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--greybluedark .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluedark .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--greybluedark .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--greybluedark .mdl-notification-banner__close-button:focus {
    border: 1px solid #FFF;
}
.mdl-notification-banner--greybluelight {
    background: #525E74;
}
.mdl-notification-banner--greybluelight .mdl-notification-banner__icon svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__close svg use {
    fill: #FFF;
}
.mdl-notification-banner--greybluelight .mdl-notification-banner__content {
    color: #FFF;
}
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content a, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--greybluelight .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a[download] > svg use {
    fill: #FFF;
}
.mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--greybluelight .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--greybluelight .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--greybluelight .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--greybluelight .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--greybluelight .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--greybluelight .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--greybluelight .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--greybluelight .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--greybluelight .mdl-notification-banner__close-button:focus {
    border: 1px solid #FFF;
}
.mdl-notification-banner--green {
    background: #74D943;
}
.mdl-notification-banner--green .mdl-notification-banner__icon svg use,
.mdl-notification-banner--green .mdl-notification-banner__close svg use {
    fill: #282625;
}
.mdl-notification-banner--green .mdl-notification-banner__content {
    color: #282625;
}
.mdl-notification-banner--green .mdl-notification-banner__content .atm-link, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content a, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--green .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--green .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--green .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--green .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--green .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--green .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a[download] > svg use {
    fill: #282625;
}
.mdl-notification-banner--green .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--green .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--green .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--green .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--green .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--green .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--green .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--green .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--green .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--green .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--green .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--green .mdl-notification-banner__close-button:focus {
    border: 1px solid #282625;
}
.mdl-notification-banner--yellow {
    background: #FFC015;
}
.mdl-notification-banner--yellow .mdl-notification-banner__icon svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__close svg use {
    fill: #282625;
}
.mdl-notification-banner--yellow .mdl-notification-banner__content {
    color: #282625;
}
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content a, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--yellow .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--yellow .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a[download] > svg use {
    fill: #282625;
}
.mdl-notification-banner--yellow .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--yellow .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--yellow .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--yellow .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--yellow .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--yellow .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--yellow .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--yellow .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--yellow .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--yellow .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--yellow .mdl-notification-banner__close-button:focus {
    border: 1px solid #282625;
}
.mdl-notification-banner--darkred {
    background: #C62b24;
}
.mdl-notification-banner--darkred .mdl-notification-banner__icon svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__close svg use {
    fill: #FFF;
}
.mdl-notification-banner--darkred .mdl-notification-banner__content {
    color: #FFF;
}
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content a, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a {
    color: inherit;
    text-decoration-color: inherit;
    background: none;
}
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner--darkred .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner--darkred .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a[download] > svg use {
    fill: #FFF;
}
.mdl-notification-banner--darkred .mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner--darkred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner--darkred .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner--darkred .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner--darkred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner--darkred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner--darkred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner--darkred .mdl-notification-banner__content a:hover:before, .mdl-notification-banner--darkred .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner--darkred .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner--darkred .mdl-notification-banner__close-button:focus {
    border: 1px solid #FFF;
}
.mdl-notification-banner__icon svg use, .mdl-notification-banner__close svg use {
    fill: #FFF;
}
.mdl-notification-banner__icon, .mdl-notification-banner__content, .mdl-notification-banner__close {
    display: inline-flex;
}
.mdl-notification-banner__content {
    padding: 0 1rem;
    color: #FFF;
}
.mdl-notification-banner__content p {
    margin: 0;
    font-size: 0.8333333333rem;
    line-height: 1.7;
}
.mdl-notification-banner__content .atm-link, .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a, .mdl-notification-banner__content .context-ghi .atm-ghi-link, .context-ghi .mdl-notification-banner__content .atm-ghi-link, .mdl-notification-banner__content .mdl-promo-textteaser__description, .mdl-notification-banner__content .atm-paragraph a, .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a, .mdl-notification-banner__content .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-notification-banner__content a, .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a, .mdl-plain-text-accordion__text .mdl-notification-banner__content a, .mdl-notification-banner__content .mdl-iconlist__link, .mdl-notification-banner__content .mdl-richtext a, .mdl-richtext .mdl-notification-banner__content a,
.mdl-notification-banner__content .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-notification-banner__content a[download],
.mdl-notification-banner__content .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-notification-banner__content a[download], .mdl-notification-banner__content .mdl-input-list__label a, .mdl-input-list__label .mdl-notification-banner__content a, .mdl-notification-banner__content .mdl-dropdown__title a, .mdl-dropdown__title .mdl-notification-banner__content a, .mdl-notification-banner__content .mdl-filter__label a, .mdl-filter__label .mdl-notification-banner__content a {
    font-size: 0.8333333333rem;
    color: inherit;
    text-decoration-color: inherit;
}
.mdl-notification-banner__content .atm-link .atm-icon use, .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner__content .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-notification-banner__content .atm-ghi-link .atm-icon use, .mdl-notification-banner__content .mdl-promo-textteaser__description .atm-icon use, .mdl-notification-banner__content .atm-paragraph a .atm-icon use, .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-notification-banner__content .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a .atm-icon use, .mdl-plain-text-accordion__text .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link .atm-icon use, .mdl-notification-banner__content .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner__content .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner__content .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner__content .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-notification-banner__content a[download] .atm-icon use,
.mdl-notification-banner__content .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-notification-banner__content a[download] .atm-icon use, .mdl-notification-banner__content .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner__content .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner__content .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-notification-banner__content a .atm-icon use, .mdl-notification-banner__content .atm-link .mdl-richtext a[download] > svg use, .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a .mdl-richtext a[download] > svg use, .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-notification-banner__content .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner__content .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner__content .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner__content a a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-notification-banner__content p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-notification-banner__content a[download] a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-notification-banner__content .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner__content ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner__content .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner__content a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner__content .atm-ghi-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-notification-banner__content ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-notification-banner__content a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content a[download] a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner__content a.atm-link--external > svg use,
.mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-notification-banner__content .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner__content a.atm-link--external > svg use, .mdl-notification-banner__content .atm-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a .mdl-richtext p a[download] > svg use, .mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-notification-banner__content .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .atm-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-notification-banner__content a a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-notification-banner__content .atm-ghi-link a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use, .mdl-notification-banner__content .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use, .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-notification-banner__content p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ul .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content p a[download] > svg use,
.mdl-richtext p ol .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-notification-banner__content a[download] > svg use, .mdl-notification-banner__content .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-notification-banner__content .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-notification-banner__content .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner__content .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext p ul a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul p .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content ul a[download] > svg use,
.mdl-richtext ul ol .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner__content .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner__content .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-notification-banner__content .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner__content .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-notification-banner__content a a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-notification-banner__content .atm-ghi-link a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-promo-textteaser__description a[download] > svg use,
.mdl-notification-banner__content .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner__content .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-notification-banner__content .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-notification-banner__content .mdl-iconlist__link a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext p ol a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol p .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ul ol a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-notification-banner__content ol a[download] > svg use,
.mdl-richtext ol ul .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-notification-banner__content a[download] > svg use,
.mdl-notification-banner__content .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-notification-banner__content .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-notification-banner__content .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-notification-banner__content a[download] > svg use {
    fill: #FFF;
}
.mdl-notification-banner__content .atm-link:hover:before, .mdl-notification-banner__content .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-notification-banner__content a:hover:before, .mdl-notification-banner__content .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-notification-banner__content .atm-ghi-link:hover:before, .mdl-notification-banner__content .mdl-promo-textteaser__description:hover:before, .mdl-notification-banner__content .atm-paragraph a:hover:before, .mdl-notification-banner__content .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-notification-banner__content .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-notification-banner__content a:hover:before, .mdl-plain-text-accordion__text .mdl-notification-banner__content a:hover:before, .mdl-notification-banner__content .mdl-iconlist__link:hover:before, .mdl-notification-banner__content .mdl-richtext a:hover:before, .mdl-richtext .mdl-notification-banner__content a:hover:before, .mdl-notification-banner__content .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-notification-banner__content a:hover:before, .mdl-notification-banner__content .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-notification-banner__content a:hover:before, .mdl-notification-banner__content .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-notification-banner__content a:hover:before {
    text-decoration-color: inherit;
}
.mdl-notification-banner__close {
    margin-left: auto;
    margin-bottom: auto;
}
.mdl-notification-banner__close-button {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: inline-flex;
}
.mdl-notification-banner__close-button:focus {
    outline: none;
}
.mdl-notification-banner__close-button:focus {
    border: 1px solid #FFF;
}
@media all and (min-width: 64em) {
    .mdl-notification-banner {
        margin-bottom: -4.1111111111rem;
    }
}

.mdl-header ~ .mdl-notification-banner {
    margin-top: 3rem;
}
@media all and (min-width: 64em) {
    .mdl-header ~ .mdl-notification-banner {
        margin-top: 4.1111111111rem;
    }
}

.mdl-promo-textteaser, .mdl-promo-hint {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;
    text-decoration: none;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-promo-textteaser, .mdl-promo-hint {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-promo-textteaser, .mdl-promo-hint {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-promo-textteaser, .mdl-promo-hint {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-promo-textteaser, .mdl-promo-hint {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-promo-textteaser, .mdl-promo-hint {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-promo-textteaser, .mdl-promo-hint {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-promo-textteaser, .mdl-promo-hint {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-promo-textteaser, [class^=mdl] .mdl-promo-hint {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
@media all and (min-width: 100em) {
    .mdl-promo-textteaser, .mdl-promo-hint {
        padding-top: 2.1666666667rem;
        padding-bottom: 2.1666666667rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-promo-textteaser, .mdl-promo-hint {
        margin-top: 2.1666666667rem;
        margin-bottom: 2.1666666667rem;
    }
}
.mdl-promo-textteaser__subtitle, .mdl-promo-hint__subtitle, .mdl-promo-textteaser__description {
    line-height: 1.7;
}
.mdl-promo-textteaser__subtitle, .mdl-promo-hint__subtitle {
    margin-top: 0;
    color: #403F3F;
    font-size: 0.8333333333rem;
    margin-bottom: 1.33rem;
}
.mdl-promo-textteaser__description {
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #A61711;
    color: #282625;
}
.mdl-promo-textteaser__description:before {
    display: none;
}
.mdl-promo-textteaser__description:hover {
    color: #771511;
    text-decoration-color: #A61711;
}

.mdl-promo-hint .atm-link--inline, .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint a, .mdl-promo-hint .atm-paragraph a, .mdl-promo-hint .mdl-plain-text-accordion__height-representation a, .mdl-promo-hint .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-promo-hint a, .mdl-plain-text-accordion__height-representation .mdl-promo-hint a, .mdl-plain-text-accordion__text .mdl-promo-hint a, .mdl-promo-hint .mdl-richtext p a, .mdl-richtext p .mdl-promo-hint a, .mdl-promo-hint .mdl-richtext a.atm-link--inline, .mdl-richtext .mdl-promo-hint a.atm-link--inline, .mdl-promo-hint .mdl-richtext a:not([class]), .mdl-richtext .mdl-promo-hint a:not([class]), .mdl-promo-hint .mdl-input-list__label a, .mdl-input-list__label .mdl-promo-hint a, .mdl-promo-hint .mdl-dropdown__title a, .mdl-dropdown__title .mdl-promo-hint a, .mdl-promo-hint .mdl-filter__label a, .mdl-filter__label .mdl-promo-hint a {
    color: #A61711;
}
.mdl-promo-hint .atm-link.atm-link--inline:before, .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint a.atm-link:before, .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--inline:before, .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint a.atm-link--inline:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint a:before, .mdl-promo-hint .context-ghi .atm-link--inline.atm-ghi-link:before, .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .atm-link--inline.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-ghi_pdf_download_form-intro a.atm-ghi-link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph a.atm-link--inline:before, .mdl-promo-hint .atm-paragraph .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .atm-paragraph a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation a.atm-link--inline:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-plain-text-accordion__text a.atm-link--inline:before, .mdl-promo-hint .mdl-plain-text-accordion__text .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-plain-text-accordion__text a:before, .atm-paragraph .mdl-promo-hint a.atm-link--inline:before, .atm-paragraph .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .atm-paragraph .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.atm-link--inline:before, .mdl-plain-text-accordion__height-representation .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-promo-hint a.atm-link--inline:before, .mdl-plain-text-accordion__text .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .atm-link--inline.mdl-iconlist__link:before, .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-iconlist__link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .atm-link--inline.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-iconlist__link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-promo-hint .atm-link--inline.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-iconlist__link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext p a:before, .mdl-richtext p .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext p .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext a:before, .mdl-richtext .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p a.atm-link--inline[download]:before, .mdl-promo-hint .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext p a[download]:before, .mdl-richtext p .mdl-promo-hint a.atm-link--inline[download]:before, .mdl-richtext p .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul a.atm-link--inline[download]:before,
.mdl-promo-hint .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext ul a[download]:before,
.mdl-richtext ul .mdl-promo-hint a.atm-link--inline[download]:before,
.mdl-richtext ul .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol a.atm-link--inline[download]:before,
.mdl-promo-hint .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext ol a[download]:before,
.mdl-richtext ol .mdl-promo-hint a.atm-link--inline[download]:before,
.mdl-richtext ol .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label a.atm-link--inline:before, .mdl-promo-hint .mdl-input-list__label .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-input-list__label a:before, .mdl-input-list__label .mdl-promo-hint a.atm-link--inline:before, .mdl-input-list__label .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title a.atm-link--inline:before, .mdl-promo-hint .mdl-dropdown__title .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-dropdown__title a:before, .mdl-dropdown__title .mdl-promo-hint a.atm-link--inline:before, .mdl-dropdown__title .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label a.atm-link--inline:before, .mdl-promo-hint .mdl-filter__label .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-filter__label a:before, .mdl-filter__label .mdl-promo-hint a.atm-link--inline:before, .mdl-filter__label .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .atm-link--inline.mdl-promo-textteaser__description:before, .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-promo-textteaser__description:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .atm-paragraph a.atm-link:before, .mdl-promo-hint .atm-paragraph .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .atm-paragraph a:before, .mdl-promo-hint .atm-paragraph .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .atm-paragraph a.atm-ghi-link:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation a.atm-link:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-plain-text-accordion__height-representation a.atm-ghi-link:before, .mdl-promo-hint .mdl-plain-text-accordion__text a.atm-link:before, .mdl-promo-hint .mdl-plain-text-accordion__text .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-plain-text-accordion__text a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-plain-text-accordion__text a.atm-ghi-link:before, .atm-paragraph .mdl-promo-hint a.atm-link:before, .atm-paragraph .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .atm-paragraph .mdl-promo-hint a:before, .atm-paragraph .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .atm-paragraph .mdl-promo-hint a.atm-ghi-link:before, .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.atm-link:before, .mdl-plain-text-accordion__height-representation .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.atm-ghi-link:before, .mdl-plain-text-accordion__text .mdl-promo-hint a.atm-link:before, .mdl-plain-text-accordion__text .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-plain-text-accordion__text .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-plain-text-accordion__text a:before, .atm-paragraph .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-plain-text-accordion__text a.mdl-iconlist__link:before, .atm-paragraph .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-plain-text-accordion__text .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .atm-paragraph a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-plain-text-accordion__height-representation a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-plain-text-accordion__text a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .atm-paragraph .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-plain-text-accordion__text .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .atm-paragraph .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .atm-paragraph .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-plain-text-accordion__height-representation .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-plain-text-accordion__text .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__text a:before, .mdl-richtext p .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext p a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext p a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext p a:before, .atm-paragraph .mdl-richtext p .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext p .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a:before, .atm-paragraph .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .atm-paragraph a[download]:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download]:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__text a[download]:before, .mdl-richtext p .atm-paragraph .mdl-promo-hint a[download]:before, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-promo-hint a[download]:before, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-promo-hint a[download]:before, .mdl-promo-hint .atm-paragraph .mdl-richtext p a[download]:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download]:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext p a[download]:before, .atm-paragraph .mdl-richtext p .mdl-promo-hint a[download]:before, .mdl-plain-text-accordion__height-representation .mdl-richtext p .mdl-promo-hint a[download]:before, .mdl-plain-text-accordion__text .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul .atm-paragraph a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-plain-text-accordion__text a[download]:before,
.mdl-richtext ul .atm-paragraph .mdl-promo-hint a[download]:before,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-promo-hint a[download]:before,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-promo-hint a[download]:before,
.mdl-promo-hint .atm-paragraph .mdl-richtext ul a[download]:before,
.mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download]:before,
.mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext ul a[download]:before,
.atm-paragraph .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-plain-text-accordion__height-representation .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-plain-text-accordion__text .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol .atm-paragraph a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-plain-text-accordion__text a[download]:before,
.mdl-richtext ol .atm-paragraph .mdl-promo-hint a[download]:before,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-promo-hint a[download]:before,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-promo-hint a[download]:before,
.mdl-promo-hint .atm-paragraph .mdl-richtext ol a[download]:before,
.mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download]:before,
.mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext ol a[download]:before,
.atm-paragraph .mdl-richtext ol .mdl-promo-hint a[download]:before,
.mdl-plain-text-accordion__height-representation .mdl-richtext ol .mdl-promo-hint a[download]:before,
.mdl-plain-text-accordion__text .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .atm-paragraph a:before, .mdl-promo-hint .mdl-input-list__label .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-input-list__label .mdl-plain-text-accordion__text a:before, .mdl-input-list__label .atm-paragraph .mdl-promo-hint a:before, .mdl-input-list__label .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-input-list__label .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-input-list__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-input-list__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-input-list__label a:before, .atm-paragraph .mdl-input-list__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-input-list__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .atm-paragraph a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-plain-text-accordion__text a:before, .mdl-dropdown__title .atm-paragraph .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-dropdown__title a:before, .atm-paragraph .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .atm-paragraph a:before, .mdl-promo-hint .mdl-filter__label .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-filter__label .mdl-plain-text-accordion__text a:before, .mdl-filter__label .atm-paragraph .mdl-promo-hint a:before, .mdl-filter__label .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-filter__label .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-filter__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-filter__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-filter__label a:before, .atm-paragraph .mdl-filter__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-filter__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-plain-text-accordion__text a.mdl-promo-textteaser__description:before, .atm-paragraph .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-plain-text-accordion__text .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-richtext p a.atm-link:before, .mdl-promo-hint .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext p a:before, .mdl-promo-hint .mdl-richtext p .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-richtext p a.atm-ghi-link:before, .mdl-richtext p .mdl-promo-hint a.atm-link:before, .mdl-richtext p .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-promo-hint a:before, .mdl-richtext p .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-richtext p .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-richtext p a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext p a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext p a:before, .atm-paragraph .mdl-richtext p .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext p .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__text a:before, .mdl-richtext p .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p a.mdl-iconlist__link:before, .mdl-richtext p .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext p a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-richtext p .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-richtext p .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p a:before, .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p a:before, .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p a[download]:before, .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul p a[download]:before,
.mdl-richtext ul p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext p ul a[download]:before,
.mdl-richtext p ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol p a[download]:before,
.mdl-richtext ol p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext p ol a[download]:before,
.mdl-richtext p ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext p a:before, .mdl-input-list__label .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .mdl-input-list__label a:before, .mdl-richtext p .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext p a:before, .mdl-dropdown__title .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .mdl-dropdown__title a:before, .mdl-richtext p .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext p a:before, .mdl-filter__label .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .mdl-filter__label a:before, .mdl-richtext p .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p a.mdl-promo-textteaser__description:before, .mdl-richtext p .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-richtext a.atm-link.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext a.atm-link:before, .mdl-promo-hint .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext a.atm-link--inline:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext a:before, .mdl-promo-hint .mdl-richtext .context-ghi a.atm-link--inline.atm-ghi-link:before, .mdl-promo-hint .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-richtext a.atm-link--inline.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-richtext .mdl-ghi_pdf_download_form-intro a.atm-ghi-link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext a.atm-ghi-link:before, .mdl-richtext .mdl-promo-hint a.atm-link.atm-link--inline:before, .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-hint a.atm-link:before, .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-link--inline:before, .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-hint a.atm-link--inline:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-hint a:before, .mdl-richtext .mdl-promo-hint .context-ghi a.atm-link--inline.atm-ghi-link:before, .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.atm-ghi-link:before, .context-ghi .mdl-richtext .mdl-promo-hint a.atm-link--inline.atm-ghi-link:before, .context-ghi .mdl-richtext .mdl-promo-hint .mdl-ghi_pdf_download_form-intro a.atm-ghi-link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-richtext a.atm-link--inline:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .atm-paragraph .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a.atm-link--inline:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a.atm-link--inline:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a:before, .atm-paragraph .mdl-richtext .mdl-promo-hint a.atm-link--inline:before, .atm-paragraph .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .atm-paragraph .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a.atm-link--inline:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a.atm-link--inline:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .atm-paragraph .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-richtext .atm-paragraph .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext .atm-paragraph .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext a.mdl-iconlist__link.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-iconlist__link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext a.mdl-iconlist__link:before, .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link.atm-link--inline:before, .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-iconlist__link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext a.mdl-iconlist__link.atm-link--inline:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-iconlist__link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link.atm-link--inline:before, .mdl-iconlist--horizontal .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-iconlist__link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-iconlist--horizontal .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext .mdl-iconlist--horizontal a.mdl-iconlist__link.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .mdl-iconlist--horizontal .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-iconlist__link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link.atm-link--inline:before, .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-iconlist__link:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext p a:before, .mdl-richtext p .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext p .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext a:before, .mdl-richtext .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p a[download].atm-link--inline:before, .mdl-promo-hint .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext p a[download]:before, .mdl-richtext p .mdl-promo-hint a[download].atm-link--inline:before, .mdl-richtext p .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul a[download].atm-link--inline:before,
.mdl-promo-hint .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext ul a[download]:before,
.mdl-richtext ul .mdl-promo-hint a[download].atm-link--inline:before,
.mdl-richtext ul .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol a[download].atm-link--inline:before,
.mdl-promo-hint .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext ol a[download]:before,
.mdl-richtext ol .mdl-promo-hint a[download].atm-link--inline:before,
.mdl-richtext ol .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a[download]:before,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext a.atm-link--inline:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-input-list__label .mdl-richtext a:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint a.atm-link--inline:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-input-list__label a:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a.atm-link--inline:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a.atm-link--inline:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext a.atm-link--inline:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-filter__label .mdl-richtext a:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint a.atm-link--inline:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label a.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-filter__label a:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint a.atm-link--inline:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext a.mdl-promo-textteaser__description.atm-link--inline:before, .mdl-promo-hint .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-promo-textteaser__description:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext a.mdl-promo-textteaser__description:before, .mdl-richtext .mdl-promo-hint a.mdl-promo-textteaser__description.atm-link--inline:before, .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a.mdl-promo-textteaser__description:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-richtext .atm-paragraph a.atm-link:before, .mdl-promo-hint .mdl-richtext .atm-paragraph .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-richtext .atm-paragraph a.atm-ghi-link:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a.atm-link:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a.atm-ghi-link:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a.atm-link:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a.atm-ghi-link:before, .mdl-richtext .atm-paragraph .mdl-promo-hint a.atm-link:before, .mdl-richtext .atm-paragraph .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext .atm-paragraph .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-richtext .atm-paragraph .mdl-promo-hint a.atm-ghi-link:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.atm-link:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.atm-ghi-link:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a.atm-link:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a.mdl-iconlist__link:before, .mdl-richtext .atm-paragraph .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext .atm-paragraph a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext .mdl-plain-text-accordion__height-representation a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext .mdl-plain-text-accordion__text a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-richtext .atm-paragraph .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext .atm-paragraph .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-richtext .atm-paragraph .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__text a:before, .mdl-richtext p .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph p a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation p a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text p a:before, .mdl-richtext .atm-paragraph p .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__height-representation p .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__text p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .atm-paragraph a[download]:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download]:before, .mdl-promo-hint .mdl-richtext p .mdl-plain-text-accordion__text a[download]:before, .mdl-richtext p .atm-paragraph .mdl-promo-hint a[download]:before, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-promo-hint a[download]:before, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-richtext .atm-paragraph p a[download]:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download]:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text p a[download]:before, .mdl-richtext .atm-paragraph p .mdl-promo-hint a[download]:before, .mdl-richtext .mdl-plain-text-accordion__height-representation p .mdl-promo-hint a[download]:before, .mdl-richtext .mdl-plain-text-accordion__text p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul .atm-paragraph a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-plain-text-accordion__text a[download]:before,
.mdl-richtext ul .atm-paragraph .mdl-promo-hint a[download]:before,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-promo-hint a[download]:before,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext .atm-paragraph ul a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text ul a[download]:before,
.mdl-richtext .atm-paragraph ul .mdl-promo-hint a[download]:before,
.mdl-richtext .mdl-plain-text-accordion__height-representation ul .mdl-promo-hint a[download]:before,
.mdl-richtext .mdl-plain-text-accordion__text ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol .atm-paragraph a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-plain-text-accordion__text a[download]:before,
.mdl-richtext ol .atm-paragraph .mdl-promo-hint a[download]:before,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-promo-hint a[download]:before,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext .atm-paragraph ol a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text ol a[download]:before,
.mdl-richtext .atm-paragraph ol .mdl-promo-hint a[download]:before,
.mdl-richtext .mdl-plain-text-accordion__height-representation ol .mdl-promo-hint a[download]:before,
.mdl-richtext .mdl-plain-text-accordion__text ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-input-list__label .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-input-list__label .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-input-list__label .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph .mdl-input-list__label a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-input-list__label a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text .mdl-input-list__label a:before, .mdl-richtext .atm-paragraph .mdl-input-list__label .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-input-list__label .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-dropdown__title .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text .mdl-dropdown__title a:before, .mdl-richtext .atm-paragraph .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-filter__label .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-filter__label .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-filter__label .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph .mdl-filter__label a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-filter__label a:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text .mdl-filter__label a:before, .mdl-richtext .atm-paragraph .mdl-filter__label .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-filter__label .mdl-promo-hint a:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .atm-paragraph a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a.mdl-promo-textteaser__description:before, .mdl-richtext .atm-paragraph .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .atm-paragraph .mdl-richtext a.atm-link:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .atm-paragraph .mdl-richtext a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .atm-paragraph .mdl-richtext a.atm-ghi-link:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a.atm-link:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a.atm-ghi-link:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a.atm-link:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a.atm-ghi-link:before, .atm-paragraph .mdl-richtext .mdl-promo-hint a.atm-link:before, .atm-paragraph .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .atm-paragraph .mdl-richtext .mdl-promo-hint a:before, .atm-paragraph .mdl-richtext .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .atm-paragraph .mdl-richtext .mdl-promo-hint a.atm-ghi-link:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a.atm-link:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a.atm-ghi-link:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a.atm-link:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a:before, .atm-paragraph .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a.mdl-iconlist__link:before, .atm-paragraph .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .atm-paragraph .mdl-richtext a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-plain-text-accordion__height-representation .mdl-richtext a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-plain-text-accordion__text .mdl-richtext a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .atm-paragraph .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .atm-paragraph .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .atm-paragraph .mdl-richtext p a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext p a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext p a:before, .atm-paragraph .mdl-richtext p .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext p .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a:before, .atm-paragraph .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext p a[download]:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download]:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext p a[download]:before, .atm-paragraph .mdl-richtext p .mdl-promo-hint a[download]:before, .mdl-plain-text-accordion__height-representation .mdl-richtext p .mdl-promo-hint a[download]:before, .mdl-plain-text-accordion__text .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .atm-paragraph .mdl-richtext ul a[download]:before,
.mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download]:before,
.mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext ul a[download]:before,
.atm-paragraph .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-plain-text-accordion__height-representation .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-plain-text-accordion__text .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .atm-paragraph .mdl-richtext ol a[download]:before,
.mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download]:before,
.mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext ol a[download]:before,
.atm-paragraph .mdl-richtext ol .mdl-promo-hint a[download]:before,
.mdl-plain-text-accordion__height-representation .mdl-richtext ol .mdl-promo-hint a[download]:before,
.mdl-plain-text-accordion__text .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .atm-paragraph .mdl-richtext a:before, .mdl-promo-hint .mdl-input-list__label .mdl-plain-text-accordion__height-representation .mdl-richtext a:before, .mdl-promo-hint .mdl-input-list__label .mdl-plain-text-accordion__text .mdl-richtext a:before, .mdl-input-list__label .atm-paragraph .mdl-richtext .mdl-promo-hint a:before, .mdl-input-list__label .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a:before, .mdl-input-list__label .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .mdl-input-list__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-input-list__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .mdl-input-list__label a:before, .atm-paragraph .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .atm-paragraph .mdl-richtext a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-plain-text-accordion__height-representation .mdl-richtext a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-plain-text-accordion__text .mdl-richtext a:before, .mdl-dropdown__title .atm-paragraph .mdl-richtext .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .mdl-dropdown__title a:before, .atm-paragraph .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .atm-paragraph .mdl-richtext a:before, .mdl-promo-hint .mdl-filter__label .mdl-plain-text-accordion__height-representation .mdl-richtext a:before, .mdl-promo-hint .mdl-filter__label .mdl-plain-text-accordion__text .mdl-richtext a:before, .mdl-filter__label .atm-paragraph .mdl-richtext .mdl-promo-hint a:before, .mdl-filter__label .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a:before, .mdl-filter__label .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .mdl-filter__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-filter__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .mdl-filter__label a:before, .atm-paragraph .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .atm-paragraph .mdl-richtext a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a.mdl-promo-textteaser__description:before, .atm-paragraph .mdl-richtext .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-richtext a.atm-link:not([class]):before, .mdl-promo-hint .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:not([class]):before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext a:not([class]):before, .mdl-promo-hint .mdl-richtext .context-ghi a.atm-ghi-link:not([class]):before, .context-ghi .mdl-promo-hint .mdl-richtext a.atm-ghi-link:not([class]):before, .mdl-richtext .mdl-promo-hint a.atm-link:not([class]):before, .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:not([class]):before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-hint a:not([class]):before, .mdl-richtext .mdl-promo-hint .context-ghi a.atm-ghi-link:not([class]):before, .context-ghi .mdl-richtext .mdl-promo-hint a.atm-ghi-link:not([class]):before, .mdl-promo-hint .atm-paragraph .mdl-richtext a:not([class]):before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext a:not([class]):before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext a:not([class]):before, .atm-paragraph .mdl-richtext .mdl-promo-hint a:not([class]):before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-promo-hint a:not([class]):before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-richtext .atm-paragraph a:not([class]):before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__height-representation a:not([class]):before, .mdl-promo-hint .mdl-richtext .mdl-plain-text-accordion__text a:not([class]):before, .mdl-richtext .atm-paragraph .mdl-promo-hint a:not([class]):before, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:not([class]):before, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-richtext a.mdl-iconlist__link:not([class]):before, .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:not([class]):before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext a.mdl-iconlist__link:not([class]):before, .mdl-iconlist--horizontal .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:not([class]):before, .mdl-promo-hint .mdl-richtext .mdl-iconlist--horizontal a.mdl-iconlist__link:not([class]):before, .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:not([class]):before, .mdl-promo-hint .mdl-richtext p a:not([class]):before, .mdl-richtext p .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-richtext a:not([class]):before, .mdl-richtext .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-richtext p a[download]:not([class]):before, .mdl-richtext p .mdl-promo-hint a[download]:not([class]):before,
.mdl-promo-hint .mdl-richtext ul a[download]:not([class]):before,
.mdl-richtext ul .mdl-promo-hint a[download]:not([class]):before,
.mdl-promo-hint .mdl-richtext ol a[download]:not([class]):before,
.mdl-richtext ol .mdl-promo-hint a[download]:not([class]):before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext a:not([class]):before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label a:not([class]):before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a:not([class]):before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a:not([class]):before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-filter__label .mdl-richtext a:not([class]):before, .mdl-filter__label .mdl-richtext .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-richtext .mdl-filter__label a:not([class]):before, .mdl-richtext .mdl-filter__label .mdl-promo-hint a:not([class]):before, .mdl-promo-hint .mdl-richtext a.mdl-promo-textteaser__description:not([class]):before, .mdl-richtext .mdl-promo-hint a.mdl-promo-textteaser__description:not([class]):before, .mdl-promo-hint .mdl-input-list__label a.atm-link:before, .mdl-promo-hint .mdl-input-list__label .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-input-list__label a:before, .mdl-promo-hint .mdl-input-list__label .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-input-list__label a.atm-ghi-link:before, .mdl-input-list__label .mdl-promo-hint a.atm-link:before, .mdl-input-list__label .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-input-list__label .mdl-promo-hint a:before, .mdl-input-list__label .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-input-list__label .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-input-list__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-input-list__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-input-list__label a:before, .atm-paragraph .mdl-input-list__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-input-list__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .atm-paragraph a:before, .mdl-promo-hint .mdl-input-list__label .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-input-list__label .mdl-plain-text-accordion__text a:before, .mdl-input-list__label .atm-paragraph .mdl-promo-hint a:before, .mdl-input-list__label .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-input-list__label .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label a.mdl-iconlist__link:before, .mdl-input-list__label .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-input-list__label a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-input-list__label .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-input-list__label .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-input-list__label .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p .mdl-input-list__label a:before, .mdl-richtext p .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext p a:before, .mdl-input-list__label .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label a:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext a:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .mdl-input-list__label a[download]:before, .mdl-richtext p .mdl-input-list__label .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext p a[download]:before, .mdl-input-list__label .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-input-list__label a[download]:before,
.mdl-richtext ul .mdl-input-list__label .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-input-list__label .mdl-richtext ul a[download]:before,
.mdl-input-list__label .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-input-list__label a[download]:before,
.mdl-richtext ol .mdl-input-list__label .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-input-list__label .mdl-richtext ol a[download]:before,
.mdl-input-list__label .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label a:before, .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-input-list__label a:before, .mdl-dropdown__title .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-dropdown__title a:before, .mdl-input-list__label .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-input-list__label a:before, .mdl-filter__label .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-filter__label a:before, .mdl-input-list__label .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label a.mdl-promo-textteaser__description:before, .mdl-input-list__label .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label a.atm-link:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-input-list__label a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-richtext .mdl-input-list__label a.atm-ghi-link:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint a.atm-link:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-richtext .mdl-input-list__label .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .mdl-input-list__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-input-list__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .mdl-input-list__label a:before, .atm-paragraph .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label .mdl-plain-text-accordion__text a:before, .mdl-richtext .mdl-input-list__label .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext .mdl-input-list__label .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext .mdl-input-list__label .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label a.mdl-iconlist__link:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext .mdl-input-list__label a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-richtext .mdl-input-list__label .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-richtext .mdl-input-list__label .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p .mdl-input-list__label a:before, .mdl-richtext p .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label p a:before, .mdl-richtext .mdl-input-list__label p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label a:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .mdl-input-list__label a[download]:before, .mdl-richtext p .mdl-input-list__label .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label p a[download]:before, .mdl-richtext .mdl-input-list__label p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-input-list__label a[download]:before,
.mdl-richtext ul .mdl-input-list__label .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-input-list__label ul a[download]:before,
.mdl-richtext .mdl-input-list__label ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-input-list__label a[download]:before,
.mdl-richtext ol .mdl-input-list__label .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-input-list__label ol a[download]:before,
.mdl-richtext .mdl-input-list__label ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label a:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .mdl-input-list__label a:before, .mdl-dropdown__title .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label .mdl-dropdown__title a:before, .mdl-richtext .mdl-input-list__label .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .mdl-input-list__label a:before, .mdl-filter__label .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label .mdl-filter__label a:before, .mdl-richtext .mdl-input-list__label .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-input-list__label a.mdl-promo-textteaser__description:before, .mdl-richtext .mdl-input-list__label .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext a.atm-link:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-input-list__label .mdl-richtext a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-input-list__label .mdl-richtext a.atm-ghi-link:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint a.atm-link:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-input-list__label .mdl-richtext .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-input-list__label .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-input-list__label .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-input-list__label .mdl-richtext a:before, .atm-paragraph .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-input-list__label .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-input-list__label .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-input-list__label .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext a.mdl-iconlist__link:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-input-list__label .mdl-richtext a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-input-list__label .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-input-list__label .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext p a:before, .mdl-input-list__label .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext a:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext p a[download]:before, .mdl-input-list__label .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-input-list__label .mdl-richtext ul a[download]:before,
.mdl-input-list__label .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-input-list__label .mdl-richtext ol a[download]:before,
.mdl-input-list__label .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext a:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-input-list__label .mdl-richtext a:before, .mdl-dropdown__title .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .mdl-dropdown__title a:before, .mdl-input-list__label .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-input-list__label .mdl-richtext a:before, .mdl-filter__label .mdl-input-list__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .mdl-filter__label a:before, .mdl-input-list__label .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext a.mdl-promo-textteaser__description:before, .mdl-input-list__label .mdl-richtext .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-dropdown__title a.atm-link:before, .mdl-promo-hint .mdl-dropdown__title .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-dropdown__title .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-dropdown__title a.atm-ghi-link:before, .mdl-dropdown__title .mdl-promo-hint a.atm-link:before, .mdl-dropdown__title .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-dropdown__title .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-dropdown__title a:before, .atm-paragraph .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .atm-paragraph a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-plain-text-accordion__text a:before, .mdl-dropdown__title .atm-paragraph .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title a.mdl-iconlist__link:before, .mdl-dropdown__title .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-dropdown__title a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-dropdown__title .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-dropdown__title .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-dropdown__title .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p .mdl-dropdown__title a:before, .mdl-richtext p .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext p a:before, .mdl-dropdown__title .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .mdl-dropdown__title a[download]:before, .mdl-richtext p .mdl-dropdown__title .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext p a[download]:before, .mdl-dropdown__title .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-dropdown__title a[download]:before,
.mdl-richtext ul .mdl-dropdown__title .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-dropdown__title .mdl-richtext ul a[download]:before,
.mdl-dropdown__title .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-dropdown__title a[download]:before,
.mdl-richtext ol .mdl-dropdown__title .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-dropdown__title .mdl-richtext ol a[download]:before,
.mdl-dropdown__title .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-dropdown__title a:before, .mdl-input-list__label .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-input-list__label a:before, .mdl-dropdown__title .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title a:before, .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-dropdown__title a:before, .mdl-filter__label .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-filter__label a:before, .mdl-dropdown__title .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title a.mdl-promo-textteaser__description:before, .mdl-dropdown__title .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a.atm-link:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a.atm-ghi-link:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a.atm-link:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-dropdown__title a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .mdl-dropdown__title a:before, .atm-paragraph .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title .mdl-plain-text-accordion__text a:before, .mdl-richtext .mdl-dropdown__title .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext .mdl-dropdown__title .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext .mdl-dropdown__title .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a.mdl-iconlist__link:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext .mdl-dropdown__title a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-richtext .mdl-dropdown__title .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p .mdl-dropdown__title a:before, .mdl-richtext p .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title p a:before, .mdl-richtext .mdl-dropdown__title p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .mdl-dropdown__title a[download]:before, .mdl-richtext p .mdl-dropdown__title .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title p a[download]:before, .mdl-richtext .mdl-dropdown__title p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-dropdown__title a[download]:before,
.mdl-richtext ul .mdl-dropdown__title .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-dropdown__title ul a[download]:before,
.mdl-richtext .mdl-dropdown__title ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-dropdown__title a[download]:before,
.mdl-richtext ol .mdl-dropdown__title .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-dropdown__title ol a[download]:before,
.mdl-richtext .mdl-dropdown__title ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .mdl-dropdown__title a:before, .mdl-input-list__label .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title .mdl-input-list__label a:before, .mdl-richtext .mdl-dropdown__title .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .mdl-dropdown__title a:before, .mdl-filter__label .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title .mdl-filter__label a:before, .mdl-richtext .mdl-dropdown__title .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-dropdown__title a.mdl-promo-textteaser__description:before, .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a.atm-link:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a.atm-ghi-link:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a.atm-link:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-dropdown__title .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-dropdown__title .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-dropdown__title .mdl-richtext a:before, .atm-paragraph .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-dropdown__title .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-dropdown__title .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a.mdl-iconlist__link:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-dropdown__title .mdl-richtext a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-dropdown__title .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext p a:before, .mdl-dropdown__title .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext p a[download]:before, .mdl-dropdown__title .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-dropdown__title .mdl-richtext ul a[download]:before,
.mdl-dropdown__title .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-dropdown__title .mdl-richtext ol a[download]:before,
.mdl-dropdown__title .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-dropdown__title .mdl-richtext a:before, .mdl-input-list__label .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .mdl-input-list__label a:before, .mdl-dropdown__title .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-dropdown__title .mdl-richtext a:before, .mdl-filter__label .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .mdl-filter__label a:before, .mdl-dropdown__title .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext a.mdl-promo-textteaser__description:before, .mdl-dropdown__title .mdl-richtext .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-filter__label a.atm-link:before, .mdl-promo-hint .mdl-filter__label .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-filter__label a:before, .mdl-promo-hint .mdl-filter__label .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-filter__label a.atm-ghi-link:before, .mdl-filter__label .mdl-promo-hint a.atm-link:before, .mdl-filter__label .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-filter__label .mdl-promo-hint a:before, .mdl-filter__label .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-filter__label .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-filter__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-filter__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-filter__label a:before, .atm-paragraph .mdl-filter__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-filter__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .atm-paragraph a:before, .mdl-promo-hint .mdl-filter__label .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-filter__label .mdl-plain-text-accordion__text a:before, .mdl-filter__label .atm-paragraph .mdl-promo-hint a:before, .mdl-filter__label .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-filter__label .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label a.mdl-iconlist__link:before, .mdl-filter__label .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-filter__label a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-filter__label .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-filter__label .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-filter__label .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p .mdl-filter__label a:before, .mdl-richtext p .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext p a:before, .mdl-filter__label .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label a:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext a:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .mdl-filter__label a[download]:before, .mdl-richtext p .mdl-filter__label .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext p a[download]:before, .mdl-filter__label .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-filter__label a[download]:before,
.mdl-richtext ul .mdl-filter__label .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-filter__label .mdl-richtext ul a[download]:before,
.mdl-filter__label .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-filter__label a[download]:before,
.mdl-richtext ol .mdl-filter__label .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-filter__label .mdl-richtext ol a[download]:before,
.mdl-filter__label .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-filter__label a:before, .mdl-input-list__label .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-input-list__label a:before, .mdl-filter__label .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-filter__label a:before, .mdl-dropdown__title .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-dropdown__title a:before, .mdl-filter__label .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label a:before, .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label a.mdl-promo-textteaser__description:before, .mdl-filter__label .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label a.atm-link:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-richtext .mdl-filter__label a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-richtext .mdl-filter__label a.atm-ghi-link:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint a.atm-link:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-richtext .mdl-filter__label .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-richtext .mdl-filter__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-filter__label a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-richtext .mdl-filter__label a:before, .atm-paragraph .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label .atm-paragraph a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label .mdl-plain-text-accordion__text a:before, .mdl-richtext .mdl-filter__label .atm-paragraph .mdl-promo-hint a:before, .mdl-richtext .mdl-filter__label .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-richtext .mdl-filter__label .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label a.mdl-iconlist__link:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-richtext .mdl-filter__label a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-richtext .mdl-filter__label .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-richtext .mdl-filter__label .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-richtext p .mdl-filter__label a:before, .mdl-richtext p .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label p a:before, .mdl-richtext .mdl-filter__label p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label a:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext p .mdl-filter__label a[download]:before, .mdl-richtext p .mdl-filter__label .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label p a[download]:before, .mdl-richtext .mdl-filter__label p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ul .mdl-filter__label a[download]:before,
.mdl-richtext ul .mdl-filter__label .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-filter__label ul a[download]:before,
.mdl-richtext .mdl-filter__label ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext ol .mdl-filter__label a[download]:before,
.mdl-richtext ol .mdl-filter__label .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-richtext .mdl-filter__label ol a[download]:before,
.mdl-richtext .mdl-filter__label ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-richtext .mdl-filter__label a:before, .mdl-input-list__label .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label .mdl-input-list__label a:before, .mdl-richtext .mdl-filter__label .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-richtext .mdl-filter__label a:before, .mdl-dropdown__title .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label .mdl-dropdown__title a:before, .mdl-richtext .mdl-filter__label .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label a:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-richtext .mdl-filter__label a.mdl-promo-textteaser__description:before, .mdl-richtext .mdl-filter__label .mdl-promo-hint a.mdl-promo-textteaser__description:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext a.atm-link:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-hint .mdl-filter__label .mdl-richtext a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-promo-hint .mdl-filter__label .mdl-richtext a.atm-ghi-link:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint a.atm-link:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint .context-ghi a.atm-ghi-link:before, .context-ghi .mdl-filter__label .mdl-richtext .mdl-promo-hint a.atm-ghi-link:before, .mdl-promo-hint .atm-paragraph .mdl-filter__label .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__height-representation .mdl-filter__label .mdl-richtext a:before, .mdl-promo-hint .mdl-plain-text-accordion__text .mdl-filter__label .mdl-richtext a:before, .atm-paragraph .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__height-representation .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-plain-text-accordion__text .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .atm-paragraph a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .mdl-plain-text-accordion__height-representation a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .mdl-plain-text-accordion__text a:before, .mdl-filter__label .mdl-richtext .atm-paragraph .mdl-promo-hint a:before, .mdl-filter__label .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-hint a:before, .mdl-filter__label .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext a.mdl-iconlist__link:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-iconlist--horizontal .mdl-filter__label .mdl-richtext a.mdl-iconlist__link:before, .mdl-iconlist--horizontal .mdl-filter__label .mdl-richtext .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .mdl-iconlist--horizontal a.mdl-iconlist__link:before, .mdl-filter__label .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-hint a.mdl-iconlist__link:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext p a:before, .mdl-filter__label .mdl-richtext p .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext a:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext p a[download]:before, .mdl-filter__label .mdl-richtext p .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-filter__label .mdl-richtext ul a[download]:before,
.mdl-filter__label .mdl-richtext ul .mdl-promo-hint a[download]:before,
.mdl-promo-hint .mdl-filter__label .mdl-richtext ol a[download]:before,
.mdl-filter__label .mdl-richtext ol .mdl-promo-hint a[download]:before, .mdl-promo-hint .mdl-input-list__label .mdl-filter__label .mdl-richtext a:before, .mdl-input-list__label .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .mdl-input-list__label a:before, .mdl-filter__label .mdl-richtext .mdl-input-list__label .mdl-promo-hint a:before, .mdl-promo-hint .mdl-dropdown__title .mdl-filter__label .mdl-richtext a:before, .mdl-dropdown__title .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext .mdl-dropdown__title a:before, .mdl-filter__label .mdl-richtext .mdl-dropdown__title .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext a:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint a:before, .mdl-promo-hint .mdl-filter__label .mdl-richtext a.mdl-promo-textteaser__description:before, .mdl-filter__label .mdl-richtext .mdl-promo-hint a.mdl-promo-textteaser__description:before {
    display: none;
}
.mdl-promo-hint .mdl-linklist-wrapper {
    align-items: flex-start;
}

.mdl-promo-product-teaser {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    border-bottom: 1px solid #CDCDCD;
    border-top: 1px solid #CDCDCD;
    padding: 37px 0;
    text-decoration: none;
    margin-bottom: 2.1666666667rem;
    display: block;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-promo-product-teaser {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-promo-product-teaser {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-promo-product-teaser {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-promo-product-teaser {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-promo-product-teaser {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-promo-product-teaser {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-promo-product-teaser {
        margin-left: 17.994100295%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-promo-product-teaser {
        flex-basis: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
        max-width: 95%;
    }
}
.mdl-promo-product-teaser__grid {
    display: flex;
    flex-direction: row-reverse;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-promo-product-teaser__grid {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-promo-product-teaser__grid {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-promo-product-teaser__grid {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-promo-product-teaser__grid {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 48em) {
    .mdl-promo-product-teaser__grid {
        display: flex;
        flex: 0 0 auto;
        flex-wrap: wrap;
    }
}
@media all and (min-width: 48em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-promo-product-teaser__grid {
        margin-left: -1.885924563%;
        margin-right: -1.885924563%;
    }
}
@media all and (min-width: 48em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-promo-product-teaser__grid {
        margin-left: -2.0179372197%;
        margin-right: -2.0179372197%;
    }
}
@media all and (min-width: 48em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-promo-product-teaser__grid {
        margin-left: -2.8301886792%;
        margin-right: -2.8301886792%;
    }
}
@media all and (min-width: 48em) and (min-width: 100em) {
    .mdl-promo-product-teaser__grid {
        margin-left: -2.0179372197%;
        margin-right: -2.0179372197%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-promo-product-teaser__grid {
        margin-left: -2.5%;
        margin-right: -2.5%;
    }
}
.mdl-promo-product-teaser__content {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-promo-product-teaser__content {
        flex-basis: 61.5734989648%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-promo-product-teaser__content {
        flex-basis: 70.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-promo-product-teaser__content {
        flex-basis: 69.3396226415%;
        margin-left: 2.8301886792%;
        margin-right: 2.8301886792%;
    }
}
@media all and (min-width: 100em) {
    .mdl-promo-product-teaser__content {
        flex-basis: 70.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-promo-product-teaser__content {
        flex-basis: 61.5%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
}
.mdl-promo-product-teaser__image {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    line-height: 0;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-promo-product-teaser__image {
        flex-basis: 28.2401656315%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-promo-product-teaser__image {
        flex-basis: 20.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-promo-product-teaser__image {
        flex-basis: 19.3396226415%;
        margin-left: 2.8301886792%;
        margin-right: 2.8301886792%;
    }
}
@media all and (min-width: 100em) {
    .mdl-promo-product-teaser__image {
        flex-basis: 20.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-promo-product-teaser__image {
        flex-basis: 28%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
}
.mdl-promo-product-teaser__subtitle {
    font-size: 0.8333333333rem;
    color: #403F3F;
    font-family: "Frutiger LT W02_55 Roman", Frutiger, sans-serif;
    display: flex;
    flex-direction: column;
}
@media all and (min-width: 0em) {
    .mdl-promo-product-teaser__subtitle {
        margin-bottom: 0.5rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-promo-product-teaser__subtitle {
        margin-bottom: 1rem;
    }
}
.mdl-promo-product-teaser__title {
    font-size: calc(18 * 1px);
    color: #282625;
    margin-bottom: 0.5rem;
    margin-top: 0;
    word-break: break-word;
}
@media (min-width: 0px) {
    .mdl-promo-product-teaser__title {
        font-size: calc(0.9765625vw + 18px);
    }
}
@media (min-width: 1024px) {
    .mdl-promo-product-teaser__title {
        font-size: calc(28 * 1px);
    }
}
.mdl-promo-product-teaser .atm-link, .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-product-teaser a, .mdl-promo-product-teaser .context-ghi .atm-ghi-link, .context-ghi .mdl-promo-product-teaser .atm-ghi-link, .mdl-promo-product-teaser .atm-paragraph a, .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation a, .mdl-promo-product-teaser .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-promo-product-teaser a, .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser a, .mdl-plain-text-accordion__text .mdl-promo-product-teaser a, .mdl-promo-product-teaser .mdl-iconlist__link, .mdl-promo-product-teaser .mdl-richtext a, .mdl-richtext .mdl-promo-product-teaser a,
.mdl-promo-product-teaser .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-promo-product-teaser a[download],
.mdl-promo-product-teaser .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-promo-product-teaser a[download], .mdl-promo-product-teaser .mdl-input-list__label a, .mdl-input-list__label .mdl-promo-product-teaser a, .mdl-promo-product-teaser .mdl-dropdown__title a, .mdl-dropdown__title .mdl-promo-product-teaser a, .mdl-promo-product-teaser .mdl-filter__label a, .mdl-filter__label .mdl-promo-product-teaser a, .mdl-promo-product-teaser .mdl-promo-textteaser__description {
    margin-top: 0.5rem;
}
.mdl-promo-product-teaser .atm-link .atm-icon, .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-product-teaser a .atm-icon, .mdl-promo-product-teaser .context-ghi .atm-ghi-link .atm-icon, .context-ghi .mdl-promo-product-teaser .atm-ghi-link .atm-icon, .mdl-promo-product-teaser .atm-paragraph a .atm-icon, .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation a .atm-icon, .mdl-promo-product-teaser .mdl-plain-text-accordion__text a .atm-icon, .atm-paragraph .mdl-promo-product-teaser a .atm-icon, .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser a .atm-icon, .mdl-plain-text-accordion__text .mdl-promo-product-teaser a .atm-icon, .mdl-promo-product-teaser .mdl-iconlist__link .atm-icon, .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon, .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link .atm-icon, .mdl-promo-product-teaser .mdl-richtext p a .atm-icon, .mdl-richtext p .mdl-promo-product-teaser a .atm-icon, .mdl-promo-product-teaser .mdl-richtext a .atm-icon, .mdl-richtext .mdl-promo-product-teaser a .atm-icon, .mdl-promo-product-teaser .mdl-richtext p a[download] .atm-icon, .mdl-richtext p .mdl-promo-product-teaser a[download] .atm-icon,
.mdl-promo-product-teaser .mdl-richtext ul a[download] .atm-icon,
.mdl-richtext ul .mdl-promo-product-teaser a[download] .atm-icon,
.mdl-promo-product-teaser .mdl-richtext ol a[download] .atm-icon,
.mdl-richtext ol .mdl-promo-product-teaser a[download] .atm-icon, .mdl-promo-product-teaser .mdl-input-list__label a .atm-icon, .mdl-input-list__label .mdl-promo-product-teaser a .atm-icon, .mdl-promo-product-teaser .mdl-dropdown__title a .atm-icon, .mdl-dropdown__title .mdl-promo-product-teaser a .atm-icon, .mdl-promo-product-teaser .mdl-filter__label a .atm-icon, .mdl-filter__label .mdl-promo-product-teaser a .atm-icon, .mdl-promo-product-teaser .mdl-promo-textteaser__description .atm-icon, .mdl-promo-product-teaser .atm-link .mdl-richtext a[download] > svg, .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-product-teaser a .mdl-richtext a[download] > svg, .mdl-promo-product-teaser .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg, .context-ghi .mdl-promo-product-teaser .atm-ghi-link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .atm-link a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-promo-product-teaser a a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .context-ghi .atm-ghi-link a[download] > svg, .context-ghi .mdl-richtext .mdl-promo-product-teaser .atm-ghi-link a[download] > svg, .mdl-promo-product-teaser .atm-paragraph .mdl-richtext a[download] > svg, .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg, .mdl-promo-product-teaser .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .atm-paragraph a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .mdl-plain-text-accordion__text a[download] > svg, .atm-paragraph .mdl-promo-product-teaser .mdl-richtext a[download] > svg, .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser .mdl-richtext a[download] > svg, .mdl-plain-text-accordion__text .mdl-promo-product-teaser .mdl-richtext a[download] > svg, .mdl-richtext .atm-paragraph .mdl-promo-product-teaser a[download] > svg, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser a[download] > svg, .mdl-richtext .mdl-plain-text-accordion__text .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .mdl-iconlist__link a[download] > svg, .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg, .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link a[download] > svg, .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-input-list__label .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .mdl-input-list__label a[download] > svg, .mdl-input-list__label .mdl-promo-product-teaser .mdl-richtext a[download] > svg, .mdl-richtext .mdl-input-list__label .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-dropdown__title .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .mdl-dropdown__title a[download] > svg, .mdl-dropdown__title .mdl-promo-product-teaser .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown__title .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-filter__label .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .mdl-filter__label a[download] > svg, .mdl-filter__label .mdl-promo-product-teaser .mdl-richtext a[download] > svg, .mdl-richtext .mdl-filter__label .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-promo-textteaser__description .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-product-teaser .mdl-promo-textteaser__description a[download] > svg, .mdl-promo-product-teaser .atm-link .mdl-richtext p a.atm-link--external > svg, .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-product-teaser a .mdl-richtext p a.atm-link--external > svg, .mdl-promo-product-teaser .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg, .context-ghi .mdl-promo-product-teaser .atm-ghi-link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .atm-link a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-promo-product-teaser a a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .context-ghi .atm-ghi-link a.atm-link--external > svg, .context-ghi .mdl-richtext p .mdl-promo-product-teaser .atm-ghi-link a.atm-link--external > svg, .mdl-promo-product-teaser .atm-paragraph .mdl-richtext p a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .atm-paragraph a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-plain-text-accordion__text a.atm-link--external > svg, .atm-paragraph .mdl-promo-product-teaser .mdl-richtext p a.atm-link--external > svg, .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser .mdl-richtext p a.atm-link--external > svg, .mdl-plain-text-accordion__text .mdl-promo-product-teaser .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-paragraph .mdl-promo-product-teaser a.atm-link--external > svg, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser a.atm-link--external > svg, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-promo-product-teaser a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-iconlist__link a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg, .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-richtext p a.atm-link--external > svg, .mdl-richtext .mdl-promo-product-teaser p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-richtext p a[download] a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser a[download] a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ul a[download] p a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext p ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser a[download] p a.atm-link--external > svg,
.mdl-richtext p ul .mdl-promo-product-teaser a[download] a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ol a[download] p a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext p ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser a[download] p a.atm-link--external > svg,
.mdl-richtext p ol .mdl-promo-product-teaser a[download] a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-input-list__label a.atm-link--external > svg, .mdl-input-list__label .mdl-promo-product-teaser .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-input-list__label .mdl-promo-product-teaser a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-dropdown__title a.atm-link--external > svg, .mdl-dropdown__title .mdl-promo-product-teaser .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown__title .mdl-promo-product-teaser a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-filter__label .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-filter__label a.atm-link--external > svg, .mdl-filter__label .mdl-promo-product-teaser .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-filter__label .mdl-promo-product-teaser a.atm-link--external > svg, .mdl-promo-product-teaser .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-promo-textteaser__description a.atm-link--external > svg,
.mdl-promo-product-teaser .atm-link .mdl-richtext ul a.atm-link--external > svg,
.mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-product-teaser a .mdl-richtext ul a.atm-link--external > svg,
.mdl-promo-product-teaser .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg,
.context-ghi .mdl-promo-product-teaser .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .atm-link a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-promo-product-teaser a a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .context-ghi .atm-ghi-link a.atm-link--external > svg,
.context-ghi .mdl-richtext ul .mdl-promo-product-teaser .atm-ghi-link a.atm-link--external > svg,
.mdl-promo-product-teaser .atm-paragraph .mdl-richtext ul a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .atm-paragraph a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-plain-text-accordion__text a.atm-link--external > svg,
.atm-paragraph .mdl-promo-product-teaser .mdl-richtext ul a.atm-link--external > svg,
.mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser .mdl-richtext ul a.atm-link--external > svg,
.mdl-plain-text-accordion__text .mdl-promo-product-teaser .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-paragraph .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-iconlist__link a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg,
.mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext p ul a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ul p a.atm-link--external > svg,
.mdl-richtext p .mdl-promo-product-teaser ul a.atm-link--external > svg,
.mdl-richtext ul p .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext .mdl-promo-product-teaser ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext p a[download] ul a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ul p a[download] a.atm-link--external > svg,
.mdl-richtext p .mdl-promo-product-teaser a[download] ul a.atm-link--external > svg,
.mdl-richtext ul p .mdl-promo-product-teaser a[download] a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser a[download] a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ol a[download] ul a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ul ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser a[download] ul a.atm-link--external > svg,
.mdl-richtext ul ol .mdl-promo-product-teaser a[download] a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-input-list__label a.atm-link--external > svg,
.mdl-input-list__label .mdl-promo-product-teaser .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-input-list__label .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-dropdown__title a.atm-link--external > svg,
.mdl-dropdown__title .mdl-promo-product-teaser .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__title .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-filter__label a.atm-link--external > svg,
.mdl-filter__label .mdl-promo-product-teaser .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-filter__label .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-promo-textteaser__description a.atm-link--external > svg,
.mdl-promo-product-teaser .atm-link .mdl-richtext ol a.atm-link--external > svg,
.mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-product-teaser a .mdl-richtext ol a.atm-link--external > svg,
.mdl-promo-product-teaser .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg,
.context-ghi .mdl-promo-product-teaser .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .atm-link a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-promo-product-teaser a a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .context-ghi .atm-ghi-link a.atm-link--external > svg,
.context-ghi .mdl-richtext ol .mdl-promo-product-teaser .atm-ghi-link a.atm-link--external > svg,
.mdl-promo-product-teaser .atm-paragraph .mdl-richtext ol a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .atm-paragraph a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-plain-text-accordion__text a.atm-link--external > svg,
.atm-paragraph .mdl-promo-product-teaser .mdl-richtext ol a.atm-link--external > svg,
.mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser .mdl-richtext ol a.atm-link--external > svg,
.mdl-plain-text-accordion__text .mdl-promo-product-teaser .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-paragraph .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-iconlist__link a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg,
.mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext p ol a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ol p a.atm-link--external > svg,
.mdl-richtext p .mdl-promo-product-teaser ol a.atm-link--external > svg,
.mdl-richtext ol p .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext .mdl-promo-product-teaser ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext p a[download] ol a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ol p a[download] a.atm-link--external > svg,
.mdl-richtext p .mdl-promo-product-teaser a[download] ol a.atm-link--external > svg,
.mdl-richtext ol p .mdl-promo-product-teaser a[download] a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ul a[download] ol a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ol ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-product-teaser a[download] ol a.atm-link--external > svg,
.mdl-richtext ol ul .mdl-promo-product-teaser a[download] a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-richtext ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser a[download] a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-input-list__label a.atm-link--external > svg,
.mdl-input-list__label .mdl-promo-product-teaser .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-input-list__label .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-dropdown__title a.atm-link--external > svg,
.mdl-dropdown__title .mdl-promo-product-teaser .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__title .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-filter__label a.atm-link--external > svg,
.mdl-filter__label .mdl-promo-product-teaser .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-filter__label .mdl-promo-product-teaser a.atm-link--external > svg,
.mdl-promo-product-teaser .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-promo-textteaser__description a.atm-link--external > svg, .mdl-promo-product-teaser .atm-link .mdl-richtext p a[download] > svg, .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-product-teaser a .mdl-richtext p a[download] > svg, .mdl-promo-product-teaser .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg, .context-ghi .mdl-promo-product-teaser .atm-ghi-link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .atm-link a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-promo-product-teaser a a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .context-ghi .atm-ghi-link a[download] > svg, .context-ghi .mdl-richtext p .mdl-promo-product-teaser .atm-ghi-link a[download] > svg, .mdl-promo-product-teaser .atm-paragraph .mdl-richtext p a[download] > svg, .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg, .mdl-promo-product-teaser .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .atm-paragraph a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-plain-text-accordion__text a[download] > svg, .atm-paragraph .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-plain-text-accordion__text .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-richtext p .atm-paragraph .mdl-promo-product-teaser a[download] > svg, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser a[download] > svg, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-iconlist__link a[download] > svg, .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg, .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link a[download] > svg, .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-richtext .mdl-promo-product-teaser p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ul p a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext p ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser p a[download] > svg,
.mdl-richtext p ul .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ol p a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext p ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser p a[download] > svg,
.mdl-richtext p ol .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-input-list__label .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-input-list__label a[download] > svg, .mdl-input-list__label .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-input-list__label .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-dropdown__title .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-dropdown__title a[download] > svg, .mdl-dropdown__title .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-dropdown__title .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-filter__label .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-filter__label a[download] > svg, .mdl-filter__label .mdl-promo-product-teaser .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-filter__label .mdl-promo-product-teaser a[download] > svg, .mdl-promo-product-teaser .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-promo-product-teaser .mdl-promo-textteaser__description a[download] > svg,
.mdl-promo-product-teaser .atm-link .mdl-richtext ul a[download] > svg,
.mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-product-teaser a .mdl-richtext ul a[download] > svg,
.mdl-promo-product-teaser .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg,
.context-ghi .mdl-promo-product-teaser .atm-ghi-link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .atm-link a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-promo-product-teaser a a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .context-ghi .atm-ghi-link a[download] > svg,
.context-ghi .mdl-richtext ul .mdl-promo-product-teaser .atm-ghi-link a[download] > svg,
.mdl-promo-product-teaser .atm-paragraph .mdl-richtext ul a[download] > svg,
.mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg,
.mdl-promo-product-teaser .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .atm-paragraph a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-plain-text-accordion__text a[download] > svg,
.atm-paragraph .mdl-promo-product-teaser .mdl-richtext ul a[download] > svg,
.mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser .mdl-richtext ul a[download] > svg,
.mdl-plain-text-accordion__text .mdl-promo-product-teaser .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .atm-paragraph .mdl-promo-product-teaser a[download] > svg,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser a[download] > svg,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-iconlist__link a[download] > svg,
.mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg,
.mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext p ul a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ul p a[download] > svg,
.mdl-richtext p .mdl-promo-product-teaser ul a[download] > svg,
.mdl-richtext ul p .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ul a[download] > svg,
.mdl-richtext .mdl-promo-product-teaser ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext p ul a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ul p a[download] > svg,
.mdl-richtext p .mdl-promo-product-teaser ul a[download] > svg,
.mdl-richtext ul p .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ol ul a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ul ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser ul a[download] > svg,
.mdl-richtext ul ol .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-input-list__label .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-input-list__label a[download] > svg,
.mdl-input-list__label .mdl-promo-product-teaser .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-input-list__label .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-dropdown__title .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-dropdown__title a[download] > svg,
.mdl-dropdown__title .mdl-promo-product-teaser .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-dropdown__title .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-filter__label .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-filter__label a[download] > svg,
.mdl-filter__label .mdl-promo-product-teaser .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-filter__label .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser .mdl-promo-textteaser__description a[download] > svg,
.mdl-promo-product-teaser .atm-link .mdl-richtext ol a[download] > svg,
.mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-product-teaser a .mdl-richtext ol a[download] > svg,
.mdl-promo-product-teaser .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg,
.context-ghi .mdl-promo-product-teaser .atm-ghi-link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .atm-link a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-promo-product-teaser a a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .context-ghi .atm-ghi-link a[download] > svg,
.context-ghi .mdl-richtext ol .mdl-promo-product-teaser .atm-ghi-link a[download] > svg,
.mdl-promo-product-teaser .atm-paragraph .mdl-richtext ol a[download] > svg,
.mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg,
.mdl-promo-product-teaser .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .atm-paragraph a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-plain-text-accordion__height-representation a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-plain-text-accordion__text a[download] > svg,
.atm-paragraph .mdl-promo-product-teaser .mdl-richtext ol a[download] > svg,
.mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser .mdl-richtext ol a[download] > svg,
.mdl-plain-text-accordion__text .mdl-promo-product-teaser .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .atm-paragraph .mdl-promo-product-teaser a[download] > svg,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-promo-product-teaser a[download] > svg,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-iconlist__link a[download] > svg,
.mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg,
.mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-promo-product-teaser .mdl-iconlist__link a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext p ol a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ol p a[download] > svg,
.mdl-richtext p .mdl-promo-product-teaser ol a[download] > svg,
.mdl-richtext ol p .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ol a[download] > svg,
.mdl-richtext .mdl-promo-product-teaser ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext p ol a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ol p a[download] > svg,
.mdl-richtext p .mdl-promo-product-teaser ol a[download] > svg,
.mdl-richtext ol p .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ul ol a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ol ul a[download] > svg,
.mdl-richtext ul .mdl-promo-product-teaser ol a[download] > svg,
.mdl-richtext ol ul .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-input-list__label .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-input-list__label a[download] > svg,
.mdl-input-list__label .mdl-promo-product-teaser .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-input-list__label .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-dropdown__title .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-dropdown__title a[download] > svg,
.mdl-dropdown__title .mdl-promo-product-teaser .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-dropdown__title .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-filter__label .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-filter__label a[download] > svg,
.mdl-filter__label .mdl-promo-product-teaser .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-filter__label .mdl-promo-product-teaser a[download] > svg,
.mdl-promo-product-teaser .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-promo-product-teaser .mdl-promo-textteaser__description a[download] > svg {
    margin-right: 0;
    margin-left: 1rem;
}
.mdl-promo-product-teaser--wrapped {
    min-width: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
}

.mdl-promo-teaser-wrapper {
    width: 100%;
}

.mdl-promo-teaser {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    background: linear-gradient(to bottom right, #6F8D59, #404A38);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.2222222222rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-promo-teaser {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-promo-teaser {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-promo-teaser {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-promo-teaser {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-promo-teaser {
        margin-bottom: 2.1666666667rem;
        flex-direction: column;
        min-width: 90%;
    }
}
.mdl-promo-teaser__image, .mdl-promo-teaser__details {
    width: 50%;
}
@media all and (max-width: 47.99em) {
    .mdl-promo-teaser__image, .mdl-promo-teaser__details {
        width: 100%;
    }
}
.mdl-promo-teaser__image {
    display: flex;
    overflow: hidden;
    position: relative;
}
@media all and (min-width: 64em) {
    .mdl-promo-teaser__image {
        height: 24.4444444444rem;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-promo-teaser__image {
        order: 1;
        height: 100%;
    }
}
.mdl-promo-teaser__image img {
    transform: rotateY(90deg);
    transition: transform 0.3s;
}
@media all and (max-width: 47.99em) {
    .mdl-promo-teaser__image img {
        position: absolute;
        height: 100%;
    }
}
.mdl-promo-teaser__image img.mdl-promo-teaser__image-active {
    transform: rotateY(0deg);
}
@media all and (max-width: 47.99em) {
    .mdl-promo-teaser__image img.mdl-promo-teaser__image-active {
        position: relative;
        min-width: 100%;
    }
}
@media all and (min-width: 48em) {
    .mdl-promo-teaser__image {
        height: unset;
        display: flex;
        align-self: stretch;
        transition: transform 0.5s ease;
    }
    .mdl-promo-teaser__image img {
        max-width: 100%;
        min-width: 40.4444444444rem;
        position: absolute;
        height: 100%;
        margin-left: 50%;
        transform: translateX(-50%) rotateY(90deg);
    }
    .mdl-promo-teaser__image img.mdl-promo-teaser__image-active {
        height: 100%;
        position: absolute;
        transform: translateX(-50%);
    }
}
.mdl-promo-teaser__image:hover .atm-icon, .mdl-promo-teaser__image:hover .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-teaser__image:hover a[download] > svg, .mdl-promo-teaser__image:hover .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-teaser__image:hover a.atm-link--external > svg,
.mdl-promo-teaser__image:hover .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-teaser__image:hover a.atm-link--external > svg,
.mdl-promo-teaser__image:hover .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-teaser__image:hover a.atm-link--external > svg {
    transform: rotateZ(-140deg);
}
.mdl-promo-teaser__image-icon {
    pointer-events: none;
    position: absolute;
    bottom: 0.8888888889rem;
    right: 0.8888888889rem;
    display: flex;
}
.mdl-promo-teaser__image-icon .atm-icon, .mdl-promo-teaser__image-icon .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-teaser__image-icon a[download] > svg, .mdl-promo-teaser__image-icon .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-teaser__image-icon a.atm-link--external > svg,
.mdl-promo-teaser__image-icon .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-teaser__image-icon a.atm-link--external > svg,
.mdl-promo-teaser__image-icon .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-teaser__image-icon a.atm-link--external > svg {
    transition: transform ease-in 0.3s;
}
.mdl-promo-teaser__image-icon .atm-icon use, .mdl-promo-teaser__image-icon .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-promo-teaser__image-icon a[download] > svg use, .mdl-promo-teaser__image-icon .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-promo-teaser__image-icon a.atm-link--external > svg use,
.mdl-promo-teaser__image-icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-promo-teaser__image-icon a.atm-link--external > svg use,
.mdl-promo-teaser__image-icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-promo-teaser__image-icon a.atm-link--external > svg use {
    fill: #FFF;
}
.mdl-promo-teaser__image-icon--dark .atm-icon use, .mdl-promo-teaser__image-icon--dark .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-promo-teaser__image-icon--dark a[download] > svg use, .mdl-promo-teaser__image-icon--dark .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-promo-teaser__image-icon--dark a.atm-link--external > svg use,
.mdl-promo-teaser__image-icon--dark .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-promo-teaser__image-icon--dark a.atm-link--external > svg use,
.mdl-promo-teaser__image-icon--dark .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-promo-teaser__image-icon--dark a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-promo-teaser__details {
    padding: 44px;
    color: inherit;
    text-decoration: inherit;
    display: block;
}
@media all and (max-width: 47.99em) {
    .mdl-promo-teaser__details {
        padding: 0.8333333333rem 1.1111111111rem;
        order: 2;
    }
}
.mdl-promo-teaser__details-subtitle {
    margin: 0.4444444444rem 0;
    overflow: visible;
    text-overflow: clip;
    display: block;
    white-space: normal;
}
@media all and (max-width: 47.99em) {
    .mdl-promo-teaser__details-subtitle {
        font-size: 0.7333333333rem;
    }
}
.mdl-promo-teaser__details-title {
    font-size: calc(24 * 1px);
    margin: 1rem 0;
    display: block;
    overflow: visible;
    white-space: normal;
    line-height: 1.2;
}
@media (min-width: 0px) {
    .mdl-promo-teaser__details-title {
        font-size: calc(2.34375vw + 24px);
    }
}
@media (min-width: 768px) {
    .mdl-promo-teaser__details-title {
        font-size: calc(42 * 1px);
    }
}
@media all and (max-width: 63.99em) {
    .mdl-promo-teaser__details-title {
        -webkit-font-smoothing: antialiased;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-promo-teaser__details-title {
        font-weight: 400;
        font-size: 1.5rem;
    }
}
.mdl-promo-teaser__details-logo {
    display: flex;
}
.mdl-promo-teaser__details-logo .atm-image {
    max-height: 1.7777777778rem;
    width: auto;
}
.mdl-promo-teaser__details-description {
    display: block;
    overflow: visible;
    max-height: none;
    white-space: normal;
}
@media all and (max-width: 47.99em) {
    .mdl-promo-teaser__details-description {
        font-size: 0.7777777778rem;
    }
}
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details, .mdl-promo-teaser--red .mdl-promo-teaser__details, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details {
    color: #FFF;
}
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more {
    color: currentColor;
}
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover {
    color: currentColor;
    opacity: 0.7;
}
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .atm-icon, .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover a[download] > svg, .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg,
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg,
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .atm-icon, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover a[download] > svg, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg,
.mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg,
.mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .atm-icon, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext a[download] > svg, .mdl-richtext .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover a[download] > svg, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg,
.mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg,
.mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg {
    opacity: 0.7;
}
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .atm-icon use, .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover a[download] > svg use, .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg use,
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg use,
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg use, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .atm-icon use, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover a[download] > svg use, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg use,
.mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg use,
.mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg use, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .atm-icon use, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover a[download] > svg use, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg use,
.mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg use,
.mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more:hover a.atm-link--external > svg use {
    fill: currentColor;
}
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more .atm-icon use, .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more a[download] > svg use, .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more a.atm-link--external > svg use,
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more a.atm-link--external > svg use,
.mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-promo-teaser:not(.mdl-promo-teaser--grey) .mdl-promo-teaser__details-cta .atm-link--more a.atm-link--external > svg use, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more .atm-icon use, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more a[download] > svg use, .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more a.atm-link--external > svg use,
.mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more a.atm-link--external > svg use,
.mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-promo-teaser--red .mdl-promo-teaser__details-cta .atm-link--more a.atm-link--external > svg use, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more .atm-icon use, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more a[download] > svg use, .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more a.atm-link--external > svg use,
.mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more a.atm-link--external > svg use,
.mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-promo-teaser--darkgrey .mdl-promo-teaser__details-cta .atm-link--more a.atm-link--external > svg use {
    fill: currentColor;
}
.mdl-promo-teaser--red {
    background: linear-gradient(to bottom right, #A61711, #771511);
}
.mdl-promo-teaser--darkgrey {
    background: linear-gradient(to bottom right, #767675, #363331);
}
.mdl-promo-teaser--grey {
    background: linear-gradient(to bottom right, #FFF, #F1F1F1);
}
.mdl-promo-teaser--grey .mdl-promo-teaser__details-cta .atm-link--more {
    color: #A61711;
}
.mdl-promo-teaser--grey .mdl-promo-teaser__details-cta .atm-link--more:hover {
    color: #771511;
}
@media all and (min-width: 48em) {
    .mdl-promo-teaser {
        min-height: 24.4444444444rem;
    }
    .mdl-promo-teaser--inverted {
        flex-direction: row-reverse;
    }
}

.mdl-form_accordion {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-form_accordion {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_accordion {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_accordion {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_accordion {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-form_accordion {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-form_accordion {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-form_accordion {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-form_accordion {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-form_accordion:first-of-type:before {
    content: "";
    display: block;
    width: 100%;
    height: 0.0555555556rem;
    background-color: #CDCDCD;
}
.mdl-form_accordion-panel {
    border-bottom: 0.0555555556rem solid #CDCDCD;
}
.mdl-form_accordion-panel--opened .mdl-form_fieldset {
    opacity: 1;
}
.mdl-form_accordion-panel--opened .mdl-form_accordion-panel__summary {
    display: none;
}
.mdl-form_accordion-panel--opened .mdl-form_accordion-panel__icon {
    transform: rotate(0deg);
}
.mdl-form_accordion-panel--opened .mdl-form_accordion-panel__icon--plus {
    opacity: 0;
}
.mdl-form_accordion-panel--opened .mdl-form_accordion-panel__icon--minus {
    opacity: 1;
}
.mdl-form_accordion-panel--closed .mdl-form_fieldset {
    opacity: 0;
}
.mdl-form_accordion-panel--closed .mdl-form_accordion-panel__summary {
    display: block;
    font-size: 0;
}
.mdl-form_accordion-panel--closed .mdl-form_accordion-panel__summary > span {
    font-size: calc(18 * 1px);
}
.mdl-form_accordion-panel__header {
    padding: 1.5555555556rem 0;
}
.mdl-form_accordion-panel .mdl-form_accordion-titles {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
}
.mdl-form_accordion-panel__title {
    font-size: calc(24 * 1px);
    font-family: "Frutiger LT W01_45 Light", Frutiger, sans-serif;
}
@media (min-width: 0px) {
    .mdl-form_accordion-panel__title {
        font-size: calc(0vw + 24px);
    }
}
@media (min-width: 768px) {
    .mdl-form_accordion-panel__title {
        font-size: calc(1.5625vw + 12px);
    }
}
@media (min-width: 1024px) {
    .mdl-form_accordion-panel__title {
        font-size: calc(28 * 1px);
    }
}
.mdl-form_accordion-panel__summary {
    margin-bottom: 2.1666666667rem;
}
.mdl-form_accordion-panel__summary--empty {
    margin-bottom: 0;
}
.mdl-form_accordion-panel__summary-element--block {
    display: flex;
    flex-direction: column;
    margin-top: 2.1666666667rem;
}
.mdl-form_accordion-panel__summary-element--block:first-of-type {
    margin-top: 0;
}
.mdl-form_accordion-panel__summary-element--block span {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
}
.mdl-form_accordion-panel__summary-element--block span .atm-icon, .mdl-form_accordion-panel__summary-element--block span .mdl-richtext a[download] > svg, .mdl-richtext .mdl-form_accordion-panel__summary-element--block span a[download] > svg, .mdl-form_accordion-panel__summary-element--block span .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-form_accordion-panel__summary-element--block span a.atm-link--external > svg,
.mdl-form_accordion-panel__summary-element--block span .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-form_accordion-panel__summary-element--block span a.atm-link--external > svg,
.mdl-form_accordion-panel__summary-element--block span .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-form_accordion-panel__summary-element--block span a.atm-link--external > svg {
    margin-right: 0.3333333333rem;
}
.mdl-form_accordion .mdl-form_fieldset {
    transition: opacity 0.5s ease-in-out, margin-top 0.5s ease-in-out, max-height 0.5s ease-in-out, margin-bottom 0.5s ease-in-out;
    position: relative;
}

.mdl-popup {
    background: linear-gradient(to bottom right, #799A60, #404A38);
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    width: 100%;
    color: #FFF;
    padding: 32px 0;
    padding-top: 20px;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    box-shadow: 0 8px 30px 0 rgba(54, 51, 49, 0.15);
    position: relative;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-popup {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-popup {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-popup {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-popup {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-popup {
        margin-left: 51.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-popup {
        margin-left: 68.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-popup {
        margin-left: 67.994100295%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-popup {
        min-width: 100vw;
        position: relative;
        margin-left: 50%;
        left: -50vw;
        display: flex;
        display: block;
    }
    .is-ie .mdl-popup {
        max-width: calc(100vw - calc(17 * 1px));
        margin-left: calc(50% + (calc(8.5 * 1px)));
    }
}
.mdl-popup .mdl-richtext.mdl-richtext {
    margin: 32px;
    width: unset;
}
.mdl-popup .mdl-richtext.mdl-richtext .atm-link, .mdl-popup .mdl-richtext.mdl-richtext .context-ghi .atm-ghi-link, .context-ghi .mdl-popup .mdl-richtext.mdl-richtext .atm-ghi-link, .mdl-popup .mdl-richtext.mdl-richtext .mdl-iconlist__link, .mdl-popup .mdl-richtext.mdl-richtext a, .mdl-popup .mdl-richtext.mdl-richtext .mdl-promo-textteaser__description {
    margin: unset;
}
.mdl-popup .mdl-richtext + a {
    background: none;
}
.mdl-popup .mdl-richtext .atm-link, .mdl-popup .mdl-richtext .context-ghi .atm-ghi-link, .context-ghi .mdl-popup .mdl-richtext .atm-ghi-link, .mdl-popup .mdl-richtext .mdl-iconlist__link,
.mdl-popup .mdl-richtext ul a[download],
.mdl-popup .mdl-richtext ol a[download], .mdl-popup .mdl-richtext .mdl-promo-textteaser__description,
.mdl-popup .mdl-richtext a {
    text-decoration-color: #FFF;
}
.mdl-popup .mdl-richtext .atm-link--inline, .mdl-popup .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup .mdl-richtext a, .mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a, .mdl-popup .mdl-richtext .atm-paragraph a, .mdl-popup .mdl-richtext .mdl-plain-text-accordion__height-representation a, .mdl-popup .mdl-richtext .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-popup .mdl-richtext a, .mdl-plain-text-accordion__height-representation .mdl-popup .mdl-richtext a, .mdl-plain-text-accordion__text .mdl-popup .mdl-richtext a, .mdl-popup .mdl-richtext p a, .mdl-popup .atm-paragraph .mdl-richtext a, .mdl-popup .mdl-plain-text-accordion__height-representation .mdl-richtext a, .mdl-popup .mdl-plain-text-accordion__text .mdl-richtext a, .mdl-popup .mdl-richtext a:not([class]), .mdl-popup .mdl-richtext .mdl-input-list__label a, .mdl-input-list__label .mdl-popup .mdl-richtext a, .mdl-popup .mdl-input-list__label .mdl-richtext a, .mdl-popup .mdl-richtext .mdl-dropdown__title a, .mdl-dropdown__title .mdl-popup .mdl-richtext a, .mdl-popup .mdl-dropdown__title .mdl-richtext a, .mdl-popup .mdl-richtext .mdl-filter__label a, .mdl-filter__label .mdl-popup .mdl-richtext a, .mdl-popup .mdl-filter__label .mdl-richtext a,
.mdl-popup .mdl-richtext .atm-link--external {
    text-decoration-color: #FFF;
}
.mdl-popup .mdl-richtext .atm-link--download:hover, .mdl-popup .mdl-richtext a[download]:hover {
    color: unset;
}
.mdl-popup__submit,
.mdl-popup .atm-link,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a,
.mdl-popup .context-ghi .atm-ghi-link,
.context-ghi .mdl-popup .atm-ghi-link,
.mdl-popup .atm-paragraph a,
.mdl-popup .mdl-plain-text-accordion__height-representation a,
.mdl-popup .mdl-plain-text-accordion__text a,
.atm-paragraph .mdl-popup a,
.mdl-plain-text-accordion__height-representation .mdl-popup a,
.mdl-plain-text-accordion__text .mdl-popup a,
.mdl-popup .mdl-iconlist__link,
.mdl-popup .mdl-richtext a,
.mdl-richtext .mdl-popup a,
.mdl-popup .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-popup a[download],
.mdl-popup .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-popup a[download],
.mdl-popup .mdl-input-list__label a,
.mdl-input-list__label .mdl-popup a,
.mdl-popup .mdl-dropdown__title a,
.mdl-dropdown__title .mdl-popup a,
.mdl-popup .mdl-filter__label a,
.mdl-filter__label .mdl-popup a,
.mdl-popup .mdl-promo-textteaser__description {
    margin-left: 32px;
    margin-right: 32px;
}
.mdl-popup__submit--download,
.mdl-popup .atm-link--download,
.mdl-popup .mdl-richtext a[download],
.mdl-richtext .mdl-popup a[download] {
    margin-left: unset;
    margin-top: 12px;
    color: inherit;
}
.mdl-popup__submit--download .atm-icon use, .mdl-popup__submit--download .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup__submit--download a[download] > svg use, .mdl-popup__submit--download .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup__submit--download a.atm-link--external > svg use,
.mdl-popup__submit--download .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup__submit--download a.atm-link--external > svg use,
.mdl-popup__submit--download .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup__submit--download a.atm-link--external > svg use, .mdl-popup__submit--download .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup__submit--download a[download] > svg use,
.mdl-popup__submit--download .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup__submit--download a[download] > svg use,
.mdl-popup__submit--download .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup__submit--download a[download] > svg use,
.mdl-popup .atm-link--download .atm-icon use,
.mdl-popup .mdl-richtext a[download] .atm-icon use,
.mdl-richtext .mdl-popup a[download] .atm-icon use,
.mdl-popup .mdl-richtext p a[download] .atm-icon use,
.mdl-richtext p .mdl-popup a[download] .atm-icon use,
.mdl-popup .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-popup a[download] .atm-icon use,
.mdl-popup .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-popup a[download] .atm-icon use,
.mdl-popup .atm-link--download .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .atm-link--download a[download] > svg use,
.mdl-popup .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg use,
.mdl-popup .atm-link--download .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .atm-link--download a.atm-link--external > svg use,
.mdl-popup .mdl-richtext a[download] p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] a.atm-link--external > svg use,
.mdl-richtext .mdl-popup a[download] p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .atm-link--download .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .atm-link--download a.atm-link--external > svg use,
.mdl-popup .mdl-richtext a[download] ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext .mdl-popup a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .atm-link--download .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .atm-link--download a.atm-link--external > svg use,
.mdl-popup .mdl-richtext a[download] ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext .mdl-popup a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .atm-link--download .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .atm-link--download a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext .mdl-popup p a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ul p a[download] > svg use,
.mdl-popup .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-popup p a[download] > svg use,
.mdl-richtext p ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ol p a[download] > svg use,
.mdl-popup .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-popup p a[download] > svg use,
.mdl-richtext p ol .mdl-popup a[download] > svg use,
.mdl-popup .atm-link--download .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .atm-link--download a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-popup ul a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext p ul a[download] > svg use,
.mdl-popup .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ol ul a[download] > svg use,
.mdl-popup .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-popup ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup a[download] > svg use,
.mdl-popup .atm-link--download .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .atm-link--download a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-popup ol a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext p ol a[download] > svg use,
.mdl-popup .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ul ol a[download] > svg use,
.mdl-popup .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-popup ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg use {
    fill: #FFF;
}
.mdl-popup__submit a,
.mdl-popup .atm-link a,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a a,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a a,
.mdl-popup .context-ghi .atm-ghi-link a,
.context-ghi .mdl-popup .atm-ghi-link a,
.mdl-popup .atm-paragraph a a,
.mdl-popup .mdl-plain-text-accordion__height-representation a a,
.mdl-popup .mdl-plain-text-accordion__text a a,
.atm-paragraph .mdl-popup a a,
.mdl-plain-text-accordion__height-representation .mdl-popup a a,
.mdl-plain-text-accordion__text .mdl-popup a a,
.mdl-popup .mdl-iconlist__link a,
.mdl-popup .mdl-richtext a a,
.mdl-richtext .mdl-popup a a,
.mdl-popup .mdl-input-list__label a a,
.mdl-input-list__label .mdl-popup a a,
.mdl-popup .mdl-dropdown__title a a,
.mdl-dropdown__title .mdl-popup a a,
.mdl-popup .mdl-filter__label a a,
.mdl-filter__label .mdl-popup a a,
.mdl-popup .mdl-promo-textteaser__description a {
    margin: unset;
}
.mdl-popup__submit,
.mdl-popup .atm-link,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a,
.mdl-popup .context-ghi .atm-ghi-link,
.context-ghi .mdl-popup .atm-ghi-link,
.mdl-popup .atm-paragraph a,
.mdl-popup .mdl-plain-text-accordion__height-representation a,
.mdl-popup .mdl-plain-text-accordion__text a,
.atm-paragraph .mdl-popup a,
.mdl-plain-text-accordion__height-representation .mdl-popup a,
.mdl-plain-text-accordion__text .mdl-popup a,
.mdl-popup .mdl-iconlist__link,
.mdl-popup .mdl-richtext a,
.mdl-richtext .mdl-popup a,
.mdl-popup .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-popup a[download],
.mdl-popup .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-popup a[download],
.mdl-popup .mdl-input-list__label a,
.mdl-input-list__label .mdl-popup a,
.mdl-popup .mdl-dropdown__title a,
.mdl-dropdown__title .mdl-popup a,
.mdl-popup .mdl-filter__label a,
.mdl-filter__label .mdl-popup a,
.mdl-popup .mdl-promo-textteaser__description,
.mdl-popup .atm-icon,
.mdl-popup .mdl-richtext a[download] > svg,
.mdl-richtext .mdl-popup a[download] > svg,
.mdl-popup .mdl-richtext p a.atm-link--external > svg,
.mdl-richtext p .mdl-popup a.atm-link--external > svg,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg,
.mdl-popup .mdl-popup__close {
    color: #FFF;
}
.mdl-popup__submit .atm-icon use, .mdl-popup__submit .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup__submit a[download] > svg use, .mdl-popup__submit .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup__submit a.atm-link--external > svg use,
.mdl-popup__submit .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup__submit a.atm-link--external > svg use,
.mdl-popup__submit .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup__submit a.atm-link--external > svg use, .mdl-popup__submit .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup__submit a[download] > svg use,
.mdl-popup__submit .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup__submit a[download] > svg use,
.mdl-popup__submit .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup__submit a[download] > svg use,
.mdl-popup .atm-link .atm-icon use,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a .atm-icon use,
.mdl-popup .context-ghi .atm-ghi-link .atm-icon use,
.context-ghi .mdl-popup .atm-ghi-link .atm-icon use,
.mdl-popup .atm-paragraph a .atm-icon use,
.mdl-popup .mdl-plain-text-accordion__height-representation a .atm-icon use,
.mdl-popup .mdl-plain-text-accordion__text a .atm-icon use,
.atm-paragraph .mdl-popup a .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup a .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup a .atm-icon use,
.mdl-popup .mdl-iconlist__link .atm-icon use,
.mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use,
.mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link .atm-icon use,
.mdl-popup .mdl-richtext p a .atm-icon use,
.mdl-richtext p .mdl-popup a .atm-icon use,
.mdl-popup .mdl-richtext a .atm-icon use,
.mdl-richtext .mdl-popup a .atm-icon use,
.mdl-popup .mdl-richtext p a[download] .atm-icon use,
.mdl-richtext p .mdl-popup a[download] .atm-icon use,
.mdl-popup .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-popup a[download] .atm-icon use,
.mdl-popup .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-popup a[download] .atm-icon use,
.mdl-popup .mdl-input-list__label a .atm-icon use,
.mdl-input-list__label .mdl-popup a .atm-icon use,
.mdl-popup .mdl-dropdown__title a .atm-icon use,
.mdl-dropdown__title .mdl-popup a .atm-icon use,
.mdl-popup .mdl-filter__label a .atm-icon use,
.mdl-filter__label .mdl-popup a .atm-icon use,
.mdl-popup .mdl-promo-textteaser__description .atm-icon use,
.mdl-popup .atm-link .mdl-richtext a[download] > svg use,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a .mdl-richtext a[download] > svg use,
.mdl-popup .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use,
.context-ghi .mdl-popup .atm-ghi-link .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .atm-link a[download] > svg use,
.mdl-richtext .mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-popup a a[download] > svg use,
.mdl-richtext .mdl-popup .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext .mdl-popup .atm-ghi-link a[download] > svg use,
.mdl-popup .atm-paragraph .mdl-richtext a[download] > svg use,
.mdl-popup .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use,
.mdl-popup .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .atm-paragraph a[download] > svg use,
.mdl-richtext .mdl-popup .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext .mdl-popup .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup .mdl-richtext a[download] > svg use,
.mdl-richtext .atm-paragraph .mdl-popup a[download] > svg use,
.mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-popup a[download] > svg use,
.mdl-richtext .mdl-plain-text-accordion__text .mdl-popup a[download] > svg use,
.mdl-popup .mdl-iconlist__link .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .mdl-iconlist__link a[download] > svg use,
.mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg use,
.mdl-popup .mdl-input-list__label .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-input-list__label .mdl-popup a[download] > svg use,
.mdl-popup .mdl-dropdown__title .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-dropdown__title .mdl-popup a[download] > svg use,
.mdl-popup .mdl-filter__label .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-filter__label .mdl-popup a[download] > svg use,
.mdl-popup .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup .atm-link .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use,
.context-ghi .mdl-popup .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .atm-link a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup a a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext p .mdl-popup .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup .atm-paragraph .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .atm-paragraph .mdl-popup a.atm-link--external > svg use,
.mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup a.atm-link--external > svg use,
.mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext .mdl-popup p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-input-list__label .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-dropdown__title .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-filter__label .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-popup .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-popup .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-popup ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-popup .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-popup .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-popup ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] a.atm-link--external > svg use,
.mdl-popup .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup a.atm-link--external > svg use,
.mdl-popup .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup .atm-link .mdl-richtext p a[download] > svg use,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a .mdl-richtext p a[download] > svg use,
.mdl-popup .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use,
.context-ghi .mdl-popup .atm-ghi-link .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .atm-link a[download] > svg use,
.mdl-richtext p .mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup a a[download] > svg use,
.mdl-richtext p .mdl-popup .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext p .mdl-popup .atm-ghi-link a[download] > svg use,
.mdl-popup .atm-paragraph .mdl-richtext p a[download] > svg use,
.mdl-popup .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use,
.mdl-popup .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .atm-paragraph a[download] > svg use,
.mdl-richtext p .mdl-popup .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext p .mdl-popup .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .atm-paragraph .mdl-popup a[download] > svg use,
.mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup a[download] > svg use,
.mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup a[download] > svg use,
.mdl-popup .mdl-iconlist__link .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .mdl-iconlist__link a[download] > svg use,
.mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext .mdl-popup p a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ul p a[download] > svg use,
.mdl-popup .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-popup p a[download] > svg use,
.mdl-richtext p ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ol p a[download] > svg use,
.mdl-popup .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-popup p a[download] > svg use,
.mdl-richtext p ol .mdl-popup a[download] > svg use,
.mdl-popup .mdl-input-list__label .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-input-list__label .mdl-popup a[download] > svg use,
.mdl-popup .mdl-dropdown__title .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-dropdown__title .mdl-popup a[download] > svg use,
.mdl-popup .mdl-filter__label .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-filter__label .mdl-popup a[download] > svg use,
.mdl-popup .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a .mdl-richtext ul a[download] > svg use,
.mdl-popup .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-popup .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup a a[download] > svg use,
.mdl-richtext ul .mdl-popup .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-popup .atm-ghi-link a[download] > svg use,
.mdl-popup .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-popup .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-popup .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-popup .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-popup .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup a[download] > svg use,
.mdl-popup .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .mdl-iconlist__link a[download] > svg use,
.mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link a[download] > svg use,
.mdl-popup .mdl-richtext p ul a[download] > svg use,
.mdl-popup .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-popup ul a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext p ul a[download] > svg use,
.mdl-popup .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ol ul a[download] > svg use,
.mdl-popup .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-popup ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup a[download] > svg use,
.mdl-popup .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup a[download] > svg use,
.mdl-popup .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup a[download] > svg use,
.mdl-popup .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup a[download] > svg use,
.mdl-popup .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup a .mdl-richtext ol a[download] > svg use,
.mdl-popup .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-popup .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-popup .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup a a[download] > svg use,
.mdl-richtext ol .mdl-popup .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-popup .atm-ghi-link a[download] > svg use,
.mdl-popup .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-popup .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-popup .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-popup .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-popup .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup a[download] > svg use,
.mdl-popup .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .mdl-iconlist__link a[download] > svg use,
.mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-popup .mdl-iconlist__link a[download] > svg use,
.mdl-popup .mdl-richtext p ol a[download] > svg use,
.mdl-popup .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-popup ol a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext p ol a[download] > svg use,
.mdl-popup .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ul ol a[download] > svg use,
.mdl-popup .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-popup ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg use,
.mdl-popup .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup a[download] > svg use,
.mdl-popup .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup a[download] > svg use,
.mdl-popup .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup a[download] > svg use,
.mdl-popup .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup .atm-icon .atm-icon use,
.mdl-popup .mdl-richtext a[download] > svg .atm-icon use,
.mdl-richtext .mdl-popup a[download] > svg .atm-icon use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg .atm-icon use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg .atm-icon use,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg .atm-icon use,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg .atm-icon use,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg .atm-icon use,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg .atm-icon use,
.mdl-popup .mdl-richtext p a[download] > svg .atm-icon use,
.mdl-richtext p .mdl-popup a[download] > svg .atm-icon use,
.mdl-popup .mdl-richtext ul a[download] > svg .atm-icon use,
.mdl-richtext ul .mdl-popup a[download] > svg .atm-icon use,
.mdl-popup .mdl-richtext ol a[download] > svg .atm-icon use,
.mdl-richtext ol .mdl-popup a[download] > svg .atm-icon use,
.mdl-popup .atm-icon .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .atm-icon a[download] > svg use,
.mdl-popup .mdl-richtext a[download] > svg a[download] > svg use,
.mdl-richtext .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg a[download] > svg use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg a[download] > svg use,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg a[download] > svg use,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .atm-icon .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .atm-icon a.atm-link--external > svg use,
.mdl-popup .mdl-richtext a[download] > svg p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] > svg a.atm-link--external > svg use,
.mdl-richtext .mdl-popup a[download] > svg p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ul a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ol a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] > svg a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ul a[download] > svg a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg p a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p ol a[download] > svg a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .atm-icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .atm-icon a.atm-link--external > svg use,
.mdl-popup .mdl-richtext a[download] > svg ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg a.atm-link--external > svg use,
.mdl-richtext .mdl-popup a[download] > svg ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul p a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul ol a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] > svg ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul p a[download] > svg a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] > svg ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg ul a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul ol a[download] > svg a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .atm-icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .atm-icon a.atm-link--external > svg use,
.mdl-popup .mdl-richtext a[download] > svg ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg a.atm-link--external > svg use,
.mdl-richtext .mdl-popup a[download] > svg ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol p a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol ul a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext p a[download] > svg ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol p a[download] > svg a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup a[download] > svg ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg ol a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol ul a[download] > svg a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg a.atm-link--external > svg use,
.mdl-popup .atm-icon .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .atm-icon a[download] > svg use,
.mdl-popup .mdl-richtext a[download] > svg p a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg a[download] > svg use,
.mdl-richtext .mdl-popup a[download] > svg p a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg a[download] > svg use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg p a[download] > svg use,
.mdl-popup .mdl-richtext p ul a.atm-link--external > svg a[download] > svg use,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg p a[download] > svg use,
.mdl-richtext p ul .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg p a[download] > svg use,
.mdl-popup .mdl-richtext p ol a.atm-link--external > svg a[download] > svg use,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg p a[download] > svg use,
.mdl-richtext p ol .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg p a[download] > svg use,
.mdl-popup .mdl-richtext p ul a[download] > svg a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg p a[download] > svg use,
.mdl-richtext p ul .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg p a[download] > svg use,
.mdl-popup .mdl-richtext p ol a[download] > svg a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg p a[download] > svg use,
.mdl-richtext p ol .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .atm-icon .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .atm-icon a[download] > svg use,
.mdl-popup .mdl-richtext a[download] > svg ul a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg a[download] > svg use,
.mdl-richtext .mdl-popup a[download] > svg ul a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg ul a[download] > svg use,
.mdl-popup .mdl-richtext ul p a.atm-link--external > svg a[download] > svg use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg a[download] > svg use,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg ul a[download] > svg use,
.mdl-popup .mdl-richtext ul ol a.atm-link--external > svg a[download] > svg use,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg ul a[download] > svg use,
.mdl-popup .mdl-richtext ul p a[download] > svg a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg ul a[download] > svg use,
.mdl-popup .mdl-richtext ul ol a[download] > svg a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .atm-icon .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .atm-icon a[download] > svg use,
.mdl-popup .mdl-richtext a[download] > svg ol a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg a[download] > svg use,
.mdl-richtext .mdl-popup a[download] > svg ol a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext p a.atm-link--external > svg ol a[download] > svg use,
.mdl-popup .mdl-richtext ol p a.atm-link--external > svg a[download] > svg use,
.mdl-richtext p .mdl-popup a.atm-link--external > svg ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext ul a.atm-link--external > svg ol a[download] > svg use,
.mdl-popup .mdl-richtext ol ul a.atm-link--external > svg a[download] > svg use,
.mdl-richtext ul .mdl-popup a.atm-link--external > svg ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext ol a.atm-link--external > svg a[download] > svg use,
.mdl-richtext ol .mdl-popup a.atm-link--external > svg a[download] > svg use,
.mdl-popup .mdl-richtext p a[download] > svg ol a[download] > svg use,
.mdl-popup .mdl-richtext ol p a[download] > svg a[download] > svg use,
.mdl-richtext p .mdl-popup a[download] > svg ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext ul a[download] > svg ol a[download] > svg use,
.mdl-popup .mdl-richtext ol ul a[download] > svg a[download] > svg use,
.mdl-richtext ul .mdl-popup a[download] > svg ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-richtext ol a[download] > svg a[download] > svg use,
.mdl-richtext ol .mdl-popup a[download] > svg a[download] > svg use,
.mdl-popup .mdl-popup__close .atm-icon use,
.mdl-popup .mdl-popup__close .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup .mdl-popup__close a[download] > svg use,
.mdl-popup .mdl-popup__close .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup .mdl-popup__close .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup .mdl-popup__close .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup .mdl-popup__close .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup .mdl-popup__close a[download] > svg use,
.mdl-popup .mdl-popup__close .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup .mdl-popup__close a[download] > svg use,
.mdl-popup .mdl-popup__close .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup .mdl-popup__close a[download] > svg use {
    fill: #FFF;
}
.mdl-popup-wrapper {
    pointer-events: none;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    display: none;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    z-index: 100;
}
.mdl-popup-wrapper--init {
    display: block;
}
.mdl-popup-wrapper .content, .mdl-popup-wrapper .context-ghi .mdl-ghi-footer__reference-content, .context-ghi .mdl-popup-wrapper .mdl-ghi-footer__reference-content, .mdl-popup-wrapper .context-ghi .mdl-ghi-footer-navigation, .context-ghi .mdl-popup-wrapper .mdl-ghi-footer-navigation, .mdl-popup-wrapper .context-ghi .mdl-ghi-socialnavigation__content, .context-ghi .mdl-popup-wrapper .mdl-ghi-socialnavigation__content, .mdl-popup-wrapper .mdl-checkbox_carousel__content, .mdl-popup-wrapper .mdl-carousel__arrows-layout, .mdl-popup-wrapper .mdl-carousel__content, .mdl-popup-wrapper .mdl-header-container, .mdl-popup-wrapper .mdl-footer__content, .mdl-popup-wrapper .mdl-footer__bottom-content, .mdl-popup-wrapper .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-iconlist__link, .mdl-offcanvas-navigation-menu .mdl-iconlist .mdl-popup-wrapper .mdl-iconlist__link, .mdl-popup-wrapper .mdl-offcanvas-navigation-menu .mdl-linklist, .mdl-offcanvas-navigation-menu .mdl-popup-wrapper .mdl-linklist, .mdl-popup-wrapper .mdl-modal__content, .mdl-popup-wrapper .mdl-tablist__controls-wrapper-outer, .mdl-popup-wrapper .mdl-directions__content, .mdl-popup-wrapper .mdl-notifications__content, .mdl-popup-wrapper .mdl-profile_navigation-menu-list, .mdl-popup-wrapper .mdl-notification-banner__wrapper,
.mdl-popup-wrapper .grid-row {
    pointer-events: none;
}
@media all and (max-width: 47.99em) {
    .mdl-popup-wrapper .grid-row {
        margin: 0;
    }
}
.mdl-popup__title {
    font-size: calc(18 * 1px);
    margin-left: 32px;
    margin-right: calc(40px + 18px);
    margin-top: 0;
    font-weight: 400;
}
@media (min-width: 0px) {
    .mdl-popup__title {
        font-size: calc(0.5859375vw + 18px);
    }
}
@media (min-width: 1024px) {
    .mdl-popup__title {
        font-size: calc(24 * 1px);
    }
}
.mdl-popup__submit {
    display: inline-flex;
    align-items: center;
}
.mdl-popup__submit, .mdl-popup__close {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
}
.mdl-popup__submit:focus, .mdl-popup__close:focus {
    outline: none;
}
.mdl-popup__close {
    display: inline-flex;
    overflow: hidden;
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #FFF;
    fill: #FFF;
}
.mdl-popup__close .atm-icon use, .mdl-popup__close .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup__close a[download] > svg use, .mdl-popup__close .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup__close .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup__close .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup__close a.atm-link--external > svg use {
    color: #FFF;
}
.mdl-popup--deactivated, .mdl-popup--hidden {
    opacity: 0;
    pointer-events: none;
}
.mdl-popup--dark {
    background: linear-gradient(to bottom right, #364454, #0C263C);
}
.mdl-popup--red {
    background: linear-gradient(to bottom right, #A61711, #771511);
}
.mdl-popup--darkgrey {
    background: linear-gradient(to bottom right, #767675, #363331);
}
.mdl-popup--grey {
    background: linear-gradient(to bottom right, #D1D1D1, #767675);
    color: inherit;
}
.mdl-popup--grey .mdl-richtext .atm-link, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link,
.mdl-popup--grey .mdl-richtext ul a[download],
.mdl-popup--grey .mdl-richtext ol a[download], .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description,
.mdl-popup--grey .mdl-richtext a {
    text-decoration-color: #A61711;
}
.mdl-popup--grey .mdl-richtext .atm-link--inline, .mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a, .mdl-popup--grey .mdl-richtext .atm-paragraph a, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-popup--grey .mdl-richtext a, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a, .mdl-popup--grey .mdl-richtext p a, .mdl-popup--grey .atm-paragraph .mdl-richtext a, .mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext a, .mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext a, .mdl-popup--grey .mdl-richtext a:not([class]), .mdl-popup--grey .mdl-richtext .mdl-input-list__label a, .mdl-input-list__label .mdl-popup--grey .mdl-richtext a, .mdl-popup--grey .mdl-input-list__label .mdl-richtext a, .mdl-popup--grey .mdl-richtext .mdl-dropdown__title a, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext a, .mdl-popup--grey .mdl-dropdown__title .mdl-richtext a, .mdl-popup--grey .mdl-richtext .mdl-filter__label a, .mdl-filter__label .mdl-popup--grey .mdl-richtext a, .mdl-popup--grey .mdl-filter__label .mdl-richtext a,
.mdl-popup--grey .mdl-richtext .atm-link--external {
    text-decoration-color: #A61711;
}
.mdl-popup--grey .mdl-popup__submit {
    color: #A61711;
}
.mdl-popup--grey .mdl-popup__submit .atm-icon use, .mdl-popup--grey .mdl-popup__submit .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-popup__submit a[download] > svg use, .mdl-popup--grey .mdl-popup__submit .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-popup__submit a.atm-link--external > svg use,
.mdl-popup--grey .mdl-popup__submit .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-popup__submit a.atm-link--external > svg use,
.mdl-popup--grey .mdl-popup__submit .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-popup__submit a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-popup--grey .atm-link, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a, .mdl-popup--grey .context-ghi .atm-ghi-link, .context-ghi .mdl-popup--grey .atm-ghi-link, .mdl-popup--grey .atm-paragraph a, .mdl-popup--grey .mdl-plain-text-accordion__height-representation a, .mdl-popup--grey .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-popup--grey a, .mdl-plain-text-accordion__height-representation .mdl-popup--grey a, .mdl-plain-text-accordion__text .mdl-popup--grey a, .mdl-popup--grey .mdl-iconlist__link, .mdl-popup--grey .mdl-richtext a, .mdl-richtext .mdl-popup--grey a,
.mdl-popup--grey .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-popup--grey a[download],
.mdl-popup--grey .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-popup--grey a[download], .mdl-popup--grey .mdl-input-list__label a, .mdl-input-list__label .mdl-popup--grey a, .mdl-popup--grey .mdl-dropdown__title a, .mdl-dropdown__title .mdl-popup--grey a, .mdl-popup--grey .mdl-filter__label a, .mdl-filter__label .mdl-popup--grey a, .mdl-popup--grey .mdl-promo-textteaser__description,
.mdl-popup--grey .mdl-popup__close {
    color: #A61711;
}
.mdl-popup--grey .atm-link .atm-icon use, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a .atm-icon use, .mdl-popup--grey .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-popup--grey .atm-ghi-link .atm-icon use, .mdl-popup--grey .atm-paragraph a .atm-icon use, .mdl-popup--grey .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-popup--grey .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-popup--grey a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey a .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--grey a .atm-icon use, .mdl-popup--grey .mdl-iconlist__link .atm-icon use, .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link .atm-icon use, .mdl-popup--grey .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-popup--grey a .atm-icon use, .mdl-popup--grey .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-popup--grey a .atm-icon use, .mdl-popup--grey .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-popup--grey a[download] .atm-icon use,
.mdl-popup--grey .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-popup--grey a[download] .atm-icon use,
.mdl-popup--grey .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-popup--grey a[download] .atm-icon use, .mdl-popup--grey .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-popup--grey a .atm-icon use, .mdl-popup--grey .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-popup--grey a .atm-icon use, .mdl-popup--grey .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-popup--grey a .atm-icon use, .mdl-popup--grey .mdl-promo-textteaser__description .atm-icon use, .mdl-popup--grey .atm-link .mdl-richtext a[download] > svg use, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a .mdl-richtext a[download] > svg use, .mdl-popup--grey .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-popup--grey .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .atm-link a[download] > svg use, .mdl-richtext .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-popup--grey a a[download] > svg use, .mdl-richtext .mdl-popup--grey .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-popup--grey .atm-ghi-link a[download] > svg use, .mdl-popup--grey .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-popup--grey a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-popup--grey a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-iconlist__link a[download] > svg use, .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-promo-textteaser__description a[download] > svg use, .mdl-popup--grey .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-popup--grey .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--grey a a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-popup--grey .atm-ghi-link a.atm-link--external > svg use, .mdl-popup--grey .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--grey a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--grey a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--grey a.atm-link--external > svg use, .mdl-popup--grey .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-popup--grey p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup--grey a[download] a.atm-link--external > svg use, .mdl-popup--grey .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--grey a.atm-link--external > svg use, .mdl-popup--grey .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--grey a.atm-link--external > svg use, .mdl-popup--grey .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--grey a.atm-link--external > svg use, .mdl-popup--grey .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--grey .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--grey a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--grey .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--grey a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--grey a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--grey ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--grey ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--grey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--grey .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--grey a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--grey .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--grey a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--grey a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--grey ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--grey ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--grey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--grey a.atm-link--external > svg use,
.mdl-popup--grey .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-popup--grey .atm-link .mdl-richtext p a[download] > svg use, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a .mdl-richtext p a[download] > svg use, .mdl-popup--grey .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-popup--grey .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .atm-link a[download] > svg use, .mdl-richtext p .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--grey a a[download] > svg use, .mdl-richtext p .mdl-popup--grey .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-popup--grey .atm-ghi-link a[download] > svg use, .mdl-popup--grey .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--grey a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--grey a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-iconlist__link a[download] > svg use, .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-popup--grey p a[download] > svg use, .mdl-richtext p .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey p a[download] > svg use,
.mdl-richtext p ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey p a[download] > svg use,
.mdl-richtext p ol .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--grey .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-popup--grey .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--grey a a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--grey .atm-ghi-link a[download] > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--grey a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--grey a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-iconlist__link a[download] > svg use,
.mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup--grey ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-popup--grey ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup--grey ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--grey .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-popup--grey .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--grey a a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--grey .atm-ghi-link a[download] > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--grey a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--grey a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-iconlist__link a[download] > svg use,
.mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-popup--grey .mdl-iconlist__link a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup--grey ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-popup--grey ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup--grey ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--grey .mdl-popup__close .atm-icon use,
.mdl-popup--grey .mdl-popup__close .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup--grey .mdl-popup__close a[download] > svg use,
.mdl-popup--grey .mdl-popup__close .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--grey .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup--grey .mdl-popup__close .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup--grey .mdl-popup__close .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup--grey .mdl-popup__close .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup--grey .mdl-popup__close a[download] > svg use,
.mdl-popup--grey .mdl-popup__close .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-popup__close a[download] > svg use,
.mdl-popup--grey .mdl-popup__close .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-popup__close a[download] > svg use {
    fill: #A61711;
}
.mdl-popup--grey .atm-link:hover, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a:hover, .mdl-popup--grey .context-ghi .atm-ghi-link:hover, .context-ghi .mdl-popup--grey .atm-ghi-link:hover, .mdl-popup--grey .atm-paragraph a:hover, .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover, .mdl-popup--grey .mdl-plain-text-accordion__text a:hover, .atm-paragraph .mdl-popup--grey a:hover, .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover, .mdl-plain-text-accordion__text .mdl-popup--grey a:hover, .mdl-popup--grey .mdl-iconlist__link:hover, .mdl-popup--grey .mdl-richtext a:hover, .mdl-richtext .mdl-popup--grey a:hover, .mdl-popup--grey .mdl-input-list__label a:hover, .mdl-input-list__label .mdl-popup--grey a:hover, .mdl-popup--grey .mdl-dropdown__title a:hover, .mdl-dropdown__title .mdl-popup--grey a:hover, .mdl-popup--grey .mdl-filter__label a:hover, .mdl-filter__label .mdl-popup--grey a:hover, .mdl-popup--grey .mdl-promo-textteaser__description:hover {
    color: #771511;
}
.mdl-popup--grey .atm-link:hover .atm-icon use, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a:hover .atm-icon use, .mdl-popup--grey .context-ghi .atm-ghi-link:hover .atm-icon use, .context-ghi .mdl-popup--grey .atm-ghi-link:hover .atm-icon use, .mdl-popup--grey .atm-paragraph a:hover .atm-icon use, .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover .atm-icon use, .mdl-popup--grey .mdl-plain-text-accordion__text a:hover .atm-icon use, .atm-paragraph .mdl-popup--grey a:hover .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--grey a:hover .atm-icon use, .mdl-popup--grey .mdl-iconlist__link:hover .atm-icon use, .mdl-popup--grey .mdl-richtext a:hover .atm-icon use, .mdl-richtext .mdl-popup--grey a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover .atm-icon use,
.mdl-richtext ul .mdl-popup--grey a[download]:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover .atm-icon use,
.mdl-richtext ol .mdl-popup--grey a[download]:hover .atm-icon use, .mdl-popup--grey .mdl-input-list__label a:hover .atm-icon use, .mdl-input-list__label .mdl-popup--grey a:hover .atm-icon use, .mdl-popup--grey .mdl-dropdown__title a:hover .atm-icon use, .mdl-dropdown__title .mdl-popup--grey a:hover .atm-icon use, .mdl-popup--grey .mdl-filter__label a:hover .atm-icon use, .mdl-filter__label .mdl-popup--grey a:hover .atm-icon use, .mdl-popup--grey .mdl-promo-textteaser__description:hover .atm-icon use, .mdl-popup--grey .atm-link:hover .mdl-richtext a[download] > svg use, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a:hover .mdl-richtext a[download] > svg use, .mdl-popup--grey .context-ghi .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .context-ghi .mdl-popup--grey .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .atm-link:hover a[download] > svg use, .mdl-richtext .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-popup--grey a:hover a[download] > svg use, .mdl-richtext .mdl-popup--grey .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext .mdl-popup--grey .atm-ghi-link:hover a[download] > svg use, .mdl-popup--grey .atm-paragraph a:hover .mdl-richtext a[download] > svg use, .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext a[download] > svg use, .mdl-popup--grey .mdl-plain-text-accordion__text a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .atm-paragraph a:hover a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--grey a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-popup--grey a:hover a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-popup--grey a:hover a[download] > svg use, .mdl-popup--grey .mdl-iconlist__link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use, .mdl-richtext .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download]:hover a[download] > svg use, .mdl-popup--grey .mdl-input-list__label a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--grey a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-popup--grey a:hover a[download] > svg use, .mdl-popup--grey .mdl-dropdown__title a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--grey a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-popup--grey a:hover a[download] > svg use, .mdl-popup--grey .mdl-filter__label a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--grey a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-popup--grey a:hover a[download] > svg use, .mdl-popup--grey .mdl-promo-textteaser__description:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-promo-textteaser__description:hover a[download] > svg use, .mdl-popup--grey .atm-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .context-ghi .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-popup--grey .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .atm-link:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--grey a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-popup--grey .atm-ghi-link:hover a.atm-link--external > svg use, .mdl-popup--grey .atm-paragraph a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-plain-text-accordion__text a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .atm-paragraph a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use, .atm-paragraph .mdl-popup--grey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--grey a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--grey a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-iconlist__link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-iconlist__link:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-richtext .mdl-popup--grey a:hover p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download]:hover p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup--grey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download]:hover p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup--grey a[download]:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-input-list__label a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-input-list__label a:hover a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--grey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--grey a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-dropdown__title a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-dropdown__title a:hover a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--grey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--grey a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-filter__label a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-filter__label a:hover a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--grey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--grey a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-promo-textteaser__description:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--grey .atm-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--grey .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--grey .atm-paragraph a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-iconlist__link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--grey a:hover ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download]:hover ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup--grey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-input-list__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-dropdown__title a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-filter__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-promo-textteaser__description:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--grey .atm-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--grey .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--grey .atm-paragraph a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-iconlist__link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--grey a:hover ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download]:hover ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup--grey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-input-list__label a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-dropdown__title a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-filter__label a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--grey a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-promo-textteaser__description:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-promo-textteaser__description:hover a.atm-link--external > svg use, .mdl-popup--grey .atm-link:hover .mdl-richtext p a[download] > svg use, .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a:hover .mdl-richtext p a[download] > svg use, .mdl-popup--grey .context-ghi .atm-ghi-link:hover .mdl-richtext p a[download] > svg use, .context-ghi .mdl-popup--grey .atm-ghi-link:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .atm-link:hover a[download] > svg use, .mdl-richtext p .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--grey a:hover a[download] > svg use, .mdl-richtext p .mdl-popup--grey .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext p .mdl-popup--grey .atm-ghi-link:hover a[download] > svg use, .mdl-popup--grey .atm-paragraph a:hover .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-plain-text-accordion__text a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .atm-paragraph a:hover a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--grey a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--grey a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--grey a:hover a[download] > svg use, .mdl-popup--grey .mdl-iconlist__link:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use, .mdl-richtext .mdl-popup--grey a:hover p a[download] > svg use, .mdl-richtext p .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download]:hover p a[download] > svg use,
.mdl-richtext p ul .mdl-popup--grey a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download]:hover p a[download] > svg use,
.mdl-richtext p ol .mdl-popup--grey a[download]:hover a[download] > svg use, .mdl-popup--grey .mdl-input-list__label a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--grey a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--grey a:hover a[download] > svg use, .mdl-popup--grey .mdl-dropdown__title a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--grey a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--grey a:hover a[download] > svg use, .mdl-popup--grey .mdl-filter__label a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--grey a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--grey a:hover a[download] > svg use, .mdl-popup--grey .mdl-promo-textteaser__description:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--grey .atm-link:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .context-ghi .atm-ghi-link:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-popup--grey .atm-ghi-link:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-link:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--grey a:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--grey .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--grey .atm-paragraph a:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--grey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--grey a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-iconlist__link:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-richtext .mdl-popup--grey a:hover ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download]:hover ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup--grey a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-input-list__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-dropdown__title a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-filter__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--grey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-promo-textteaser__description:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--grey .atm-link:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .context-ghi .atm-ghi-link:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-popup--grey .atm-ghi-link:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-link:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--grey a:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--grey .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--grey .atm-paragraph a:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--grey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--grey a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--grey a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-iconlist__link:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-richtext .mdl-popup--grey a:hover ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download]:hover ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup--grey a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-input-list__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-dropdown__title a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-filter__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--grey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--grey a:hover a[download] > svg use,
.mdl-popup--grey .mdl-promo-textteaser__description:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-promo-textteaser__description:hover a[download] > svg use {
    fill: #771511;
}
.mdl-popup--grey .mdl-popup__close:hover {
    color: #771511;
}
.mdl-popup--grey .mdl-popup__close:hover .atm-icon use, .mdl-popup--grey .mdl-popup__close:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .mdl-popup__close:hover a[download] > svg use, .mdl-popup--grey .mdl-popup__close:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .mdl-popup__close:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-popup__close:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .mdl-popup__close:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-popup__close:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .mdl-popup__close:hover a.atm-link--external > svg use {
    fill: #771511;
}
.mdl-popup--grey .atm-link--download, .mdl-popup--grey .mdl-richtext a[download], .mdl-richtext .mdl-popup--grey a[download] {
    color: inherit;
}
.mdl-popup--grey .atm-link--download .atm-icon use, .mdl-popup--grey .mdl-richtext a[download] .atm-icon use, .mdl-richtext .mdl-popup--grey a[download] .atm-icon use, .mdl-popup--grey .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-popup--grey a[download] .atm-icon use,
.mdl-popup--grey .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-popup--grey a[download] .atm-icon use,
.mdl-popup--grey .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-popup--grey a[download] .atm-icon use, .mdl-popup--grey .atm-link--download .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey .atm-link--download a[download] > svg use, .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .atm-link--download .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey .atm-link--download a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext a[download] p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext .mdl-popup--grey a[download] p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey a[download] a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .atm-link--download .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-link--download a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a[download] ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--grey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--grey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .atm-link--download .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-link--download a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a[download] ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--grey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--grey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup--grey a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] a.atm-link--external > svg use, .mdl-popup--grey .atm-link--download .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey .atm-link--download a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-popup--grey p a[download] > svg use, .mdl-richtext p .mdl-popup--grey a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey p a[download] > svg use,
.mdl-richtext p ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey p a[download] > svg use,
.mdl-richtext p ol .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .atm-link--download .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey .atm-link--download a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-popup--grey ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup--grey ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .atm-link--download .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey .atm-link--download a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-popup--grey ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup--grey ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--grey ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup--grey a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--grey a[download] > svg use {
    fill: #A61711;
}
.mdl-popup--grey .mdl-richtext .atm-link, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link,
.mdl-popup--grey .mdl-richtext ul a[download],
.mdl-popup--grey .mdl-richtext ol a[download], .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description,
.mdl-popup--grey .mdl-richtext a,
.mdl-popup--grey .mdl-richtext .atm-link--inline {
    color: #282625;
    text-decoration-color: #A61711;
}
.mdl-popup--grey .mdl-richtext .atm-link .atm-icon use, .mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a .atm-icon use, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link .atm-icon use, .mdl-popup--grey .mdl-richtext .atm-paragraph a .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-popup--grey .mdl-richtext a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext .mdl-iconlist__link .atm-icon use, .mdl-popup--grey .mdl-richtext p a .atm-icon use, .mdl-popup--grey .mdl-richtext a .atm-icon use, .mdl-popup--grey .mdl-richtext p a[download] .atm-icon use,
.mdl-popup--grey .mdl-richtext ul a[download] .atm-icon use,
.mdl-popup--grey .mdl-richtext ol a[download] .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext a .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext a .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-popup--grey .mdl-richtext a .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description .atm-icon use, .mdl-popup--grey .mdl-richtext .atm-link a[download] > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a a[download] > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link a[download] > svg use, .mdl-popup--grey .mdl-richtext .atm-paragraph a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext .mdl-iconlist__link a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description a[download] > svg use, .mdl-popup--grey .mdl-richtext .atm-link p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link p a.atm-link--external > svg use, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .atm-link a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-popup--grey .mdl-richtext p .atm-ghi-link a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .atm-paragraph p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .atm-paragraph a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext .mdl-iconlist__link p a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext p .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-input-list__label p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-dropdown__title p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-filter__label p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext ul .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist__link ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext .mdl-iconlist__link ul a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext ul .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext ol .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist__link ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext .mdl-iconlist__link ol a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext ol .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .atm-link p a[download] > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a p a[download] > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link p a[download] > svg use, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .atm-link a[download] > svg use, .mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a a[download] > svg use, .mdl-popup--grey .mdl-richtext p .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-popup--grey .mdl-richtext p .atm-ghi-link a[download] > svg use, .mdl-popup--grey .mdl-richtext .atm-paragraph p a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .atm-paragraph a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-iconlist__link a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext .mdl-iconlist__link p a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext p .mdl-iconlist__link a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-input-list__label p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-dropdown__title p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-filter__label p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext p a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link ul a[download] > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-link a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext ul .atm-ghi-link a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist__link ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-iconlist__link a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext .mdl-iconlist__link ul a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext ul .mdl-iconlist__link a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link ol a[download] > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-link a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext ol .atm-ghi-link a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist__link ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-iconlist__link a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext .mdl-iconlist__link ol a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--grey .mdl-richtext ol .mdl-iconlist__link a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline .atm-icon use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a .atm-icon use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext p a .atm-icon use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline .atm-icon use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a .atm-icon use,
.mdl-popup--grey .atm-paragraph .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext a .atm-icon use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext a:not([class]) .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a .atm-icon use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a .atm-icon use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext a .atm-icon use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a .atm-icon use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a .atm-icon use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext a .atm-icon use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a .atm-icon use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a .atm-icon use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext a .atm-icon use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a .atm-icon use,
.mdl-popup--grey .mdl-richtext .atm-link--inline a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:not([class]) a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a[download] > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a[download] > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a[download] > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .atm-link--inline a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro p a a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a.atm-link--inline a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:not([class]) p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a:not([class]) a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-input-list__label a.atm-link--external > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-filter__label a.atm-link--external > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-link--inline a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ul a a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a.atm-link--inline a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:not([class]) ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a:not([class]) a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a.atm-link--external > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-link--inline a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ol a a.atm-link--external > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a.atm-link--inline a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:not([class]) ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a:not([class]) a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a.atm-link--external > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .atm-link--inline a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro p a a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a.atm-link--inline a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:not([class]) p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a:not([class]) a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-input-list__label a[download] > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext p a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a[download] > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext p a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-filter__label a[download] > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext p a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-link--inline a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ul a a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a.atm-link--inline a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:not([class]) ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a:not([class]) a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a[download] > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a[download] > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a[download] > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-link--inline a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ol a a[download] > svg use,
.mdl-popup--grey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a.atm-link--inline a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--grey .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:not([class]) ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a:not([class]) a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a[download] > svg use,
.mdl-popup--grey .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a[download] > svg use,
.mdl-popup--grey .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a[download] > svg use,
.mdl-popup--grey .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a[download] > svg use {
    fill: #A61711;
}
.mdl-popup--grey .mdl-richtext .atm-link:hover, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link:hover, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link:hover, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link:hover, .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description:hover,
.mdl-popup--grey .mdl-richtext a:hover,
.mdl-popup--grey .mdl-richtext .atm-link--inline:hover {
    color: #282625;
    text-decoration-color: #771511;
}
.mdl-popup--grey .mdl-richtext .atm-link:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link:hover .atm-icon use, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .atm-paragraph a:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover .atm-icon use, .atm-paragraph .mdl-popup--grey .mdl-richtext a:hover .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link:hover .atm-icon use, .mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover .atm-icon use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover .atm-icon use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover .atm-icon use, .mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description:hover .atm-icon use, .mdl-popup--grey .mdl-richtext .atm-link:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .atm-paragraph a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .atm-link:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link:hover p a.atm-link--external > svg use, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .atm-link:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use, .context-ghi .mdl-popup--grey .mdl-richtext p .atm-ghi-link:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .atm-paragraph a:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .atm-paragraph a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-iconlist__link:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download]:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-input-list__label a:hover a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a:hover a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-filter__label a:hover a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description:hover p a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext p .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-link:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext ul .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist__link:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-link:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext ol .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist__link:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-promo-textteaser__description:hover a.atm-link--external > svg use, .mdl-popup--grey .mdl-richtext .atm-link:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link:hover p a[download] > svg use, .context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .atm-link:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext p .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-popup--grey .mdl-richtext p .atm-ghi-link:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .atm-paragraph a:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .atm-paragraph a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use, .atm-paragraph .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-iconlist__link:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ul a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p ol a[download]:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use, .mdl-input-list__label .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use, .mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use, .mdl-filter__label .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description:hover p a[download] > svg use, .mdl-popup--grey .mdl-richtext p .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link:hover ul a[download] > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-link:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext ul .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist__link:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul ol a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .atm-ghi-link:hover ol a[download] > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext .atm-ghi-link:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-link:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-popup--grey .mdl-richtext ol .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-iconlist__link:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a[download]:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol ul a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-promo-textteaser__description:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover .atm-icon use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext p a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext a:hover:not([class]) .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover .atm-icon use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover .atm-icon use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover .atm-icon use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--grey .mdl-richtext .atm-link--inline:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover:not([class]) a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a.atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover:not([class]) p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a:hover:not([class]) a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover p a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a.atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover:not([class]) ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul a:hover:not([class]) a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext p a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol p a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a.atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext a:hover:not([class]) ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol a:hover:not([class]) a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .atm-link--inline:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover:not([class]) p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a:hover:not([class]) a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover p a[download] > svg use,
.mdl-popup--grey .mdl-richtext p .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover p a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-link--inline:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover:not([class]) ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul a:hover:not([class]) a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover ul a[download] > svg use,
.mdl-popup--grey .mdl-richtext ul .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-link--inline:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-link--inline:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .atm-paragraph a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.atm-paragraph .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext p a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol p a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a.atm-link--inline:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext a:hover:not([class]) ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol a:hover:not([class]) a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-input-list__label a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-input-list__label .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-dropdown__title a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-dropdown__title .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--grey .mdl-richtext .mdl-filter__label a:hover ol a[download] > svg use,
.mdl-popup--grey .mdl-richtext ol .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-filter__label .mdl-popup--grey .mdl-richtext ol a:hover a[download] > svg use {
    fill: #771511;
}
.mdl-popup--lightgrey {
    background: linear-gradient(to bottom right, #F1F1F1, #FFF);
    color: inherit;
}
.mdl-popup--lightgrey .mdl-richtext .atm-link, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link,
.mdl-popup--lightgrey .mdl-richtext ul a[download],
.mdl-popup--lightgrey .mdl-richtext ol a[download], .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description,
.mdl-popup--lightgrey .mdl-richtext a {
    text-decoration-color: #A61711;
}
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline, .mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a, .mdl-popup--lightgrey .mdl-richtext .atm-paragraph a, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext a, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a, .mdl-popup--lightgrey .mdl-richtext p a, .mdl-popup--lightgrey .atm-paragraph .mdl-richtext a, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext a, .mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext a, .mdl-popup--lightgrey .mdl-richtext a:not([class]), .mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a, .mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext a, .mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a, .mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext a, .mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a, .mdl-popup--lightgrey .mdl-filter__label .mdl-richtext a,
.mdl-popup--lightgrey .mdl-richtext .atm-link--external {
    text-decoration-color: #A61711;
}
.mdl-popup--lightgrey .mdl-popup__submit {
    color: #A61711;
}
.mdl-popup--lightgrey .mdl-popup__submit .atm-icon use, .mdl-popup--lightgrey .mdl-popup__submit .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-popup__submit a[download] > svg use, .mdl-popup--lightgrey .mdl-popup__submit .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-popup__submit a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-popup__submit .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-popup__submit a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-popup__submit .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-popup__submit a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-popup--lightgrey .atm-link, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a, .mdl-popup--lightgrey .context-ghi .atm-ghi-link, .context-ghi .mdl-popup--lightgrey .atm-ghi-link, .mdl-popup--lightgrey .atm-paragraph a, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a, .mdl-popup--lightgrey .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-popup--lightgrey a, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a, .mdl-plain-text-accordion__text .mdl-popup--lightgrey a, .mdl-popup--lightgrey .mdl-iconlist__link, .mdl-popup--lightgrey .mdl-richtext a, .mdl-richtext .mdl-popup--lightgrey a,
.mdl-popup--lightgrey .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-popup--lightgrey a[download],
.mdl-popup--lightgrey .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-popup--lightgrey a[download], .mdl-popup--lightgrey .mdl-input-list__label a, .mdl-input-list__label .mdl-popup--lightgrey a, .mdl-popup--lightgrey .mdl-dropdown__title a, .mdl-dropdown__title .mdl-popup--lightgrey a, .mdl-popup--lightgrey .mdl-filter__label a, .mdl-filter__label .mdl-popup--lightgrey a, .mdl-popup--lightgrey .mdl-promo-textteaser__description,
.mdl-popup--lightgrey .mdl-popup__close {
    color: #A61711;
}
.mdl-popup--lightgrey .atm-link .atm-icon use, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a .atm-icon use, .mdl-popup--lightgrey .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-popup--lightgrey .atm-ghi-link .atm-icon use, .mdl-popup--lightgrey .atm-paragraph a .atm-icon use, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-popup--lightgrey .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-popup--lightgrey a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey a .atm-icon use, .mdl-popup--lightgrey .mdl-iconlist__link .atm-icon use, .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link .atm-icon use, .mdl-popup--lightgrey .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-popup--lightgrey a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-popup--lightgrey a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-popup--lightgrey a[download] .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] .atm-icon use, .mdl-popup--lightgrey .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-popup--lightgrey a .atm-icon use, .mdl-popup--lightgrey .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-popup--lightgrey a .atm-icon use, .mdl-popup--lightgrey .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-popup--lightgrey a .atm-icon use, .mdl-popup--lightgrey .mdl-promo-textteaser__description .atm-icon use, .mdl-popup--lightgrey .atm-link .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-popup--lightgrey .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .atm-link a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-popup--lightgrey a a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-popup--lightgrey .atm-ghi-link a[download] > svg use, .mdl-popup--lightgrey .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-popup--lightgrey a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-iconlist__link a[download] > svg use, .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-promo-textteaser__description a[download] > svg use, .mdl-popup--lightgrey .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-popup--lightgrey .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--lightgrey a a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-popup--lightgrey .atm-ghi-link a.atm-link--external > svg use, .mdl-popup--lightgrey .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--lightgrey a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--lightgrey a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-popup--lightgrey p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup--lightgrey a[download] a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--lightgrey a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--lightgrey a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--lightgrey a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--lightgrey a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--lightgrey .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--lightgrey ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--lightgrey ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--lightgrey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--lightgrey a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--lightgrey .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--lightgrey ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--lightgrey ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--lightgrey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--lightgrey a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-popup--lightgrey .atm-link .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-popup--lightgrey .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-link a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--lightgrey a a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-popup--lightgrey .atm-ghi-link a[download] > svg use, .mdl-popup--lightgrey .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--lightgrey a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-iconlist__link a[download] > svg use, .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey p a[download] > svg use,
.mdl-richtext p ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey p a[download] > svg use,
.mdl-richtext p ol .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--lightgrey .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--lightgrey a a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--lightgrey .atm-ghi-link a[download] > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--lightgrey a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-iconlist__link a[download] > svg use,
.mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup--lightgrey ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-popup--lightgrey ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup--lightgrey ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--lightgrey .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--lightgrey a a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--lightgrey .atm-ghi-link a[download] > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--lightgrey a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-iconlist__link a[download] > svg use,
.mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-iconlist__link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup--lightgrey ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-popup--lightgrey ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup--lightgrey ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--lightgrey .mdl-popup__close .atm-icon use,
.mdl-popup--lightgrey .mdl-popup__close .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup--lightgrey .mdl-popup__close a[download] > svg use,
.mdl-popup--lightgrey .mdl-popup__close .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--lightgrey .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-popup__close .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-popup__close .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-popup__close .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup--lightgrey .mdl-popup__close a[download] > svg use,
.mdl-popup--lightgrey .mdl-popup__close .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-popup__close a[download] > svg use,
.mdl-popup--lightgrey .mdl-popup__close .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-popup__close a[download] > svg use {
    fill: #A61711;
}
.mdl-popup--lightgrey .atm-link:hover, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a:hover, .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover, .context-ghi .mdl-popup--lightgrey .atm-ghi-link:hover, .mdl-popup--lightgrey .atm-paragraph a:hover, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover, .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover, .atm-paragraph .mdl-popup--lightgrey a:hover, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover, .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover, .mdl-popup--lightgrey .mdl-iconlist__link:hover, .mdl-popup--lightgrey .mdl-richtext a:hover, .mdl-richtext .mdl-popup--lightgrey a:hover, .mdl-popup--lightgrey .mdl-input-list__label a:hover, .mdl-input-list__label .mdl-popup--lightgrey a:hover, .mdl-popup--lightgrey .mdl-dropdown__title a:hover, .mdl-dropdown__title .mdl-popup--lightgrey a:hover, .mdl-popup--lightgrey .mdl-filter__label a:hover, .mdl-filter__label .mdl-popup--lightgrey a:hover, .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover {
    color: #771511;
}
.mdl-popup--lightgrey .atm-link:hover .atm-icon use, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a:hover .atm-icon use, .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover .atm-icon use, .context-ghi .mdl-popup--lightgrey .atm-ghi-link:hover .atm-icon use, .mdl-popup--lightgrey .atm-paragraph a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover .atm-icon use, .atm-paragraph .mdl-popup--lightgrey a:hover .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-iconlist__link:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use, .mdl-richtext .mdl-popup--lightgrey a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover .atm-icon use,
.mdl-richtext ul .mdl-popup--lightgrey a[download]:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover .atm-icon use,
.mdl-richtext ol .mdl-popup--lightgrey a[download]:hover .atm-icon use, .mdl-popup--lightgrey .mdl-input-list__label a:hover .atm-icon use, .mdl-input-list__label .mdl-popup--lightgrey a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-dropdown__title a:hover .atm-icon use, .mdl-dropdown__title .mdl-popup--lightgrey a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-filter__label a:hover .atm-icon use, .mdl-filter__label .mdl-popup--lightgrey a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover .atm-icon use, .mdl-popup--lightgrey .atm-link:hover .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a:hover .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .context-ghi .mdl-popup--lightgrey .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .atm-link:hover a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext .mdl-popup--lightgrey .atm-ghi-link:hover a[download] > svg use, .mdl-popup--lightgrey .atm-paragraph a:hover .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .atm-paragraph a:hover a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--lightgrey a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-iconlist__link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download]:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-input-list__label a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--lightgrey a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-dropdown__title a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--lightgrey a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-filter__label a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--lightgrey a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover a[download] > svg use, .mdl-popup--lightgrey .atm-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-popup--lightgrey .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-link:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--lightgrey a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-popup--lightgrey .atm-ghi-link:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .atm-paragraph a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-paragraph a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use, .atm-paragraph .mdl-popup--lightgrey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--lightgrey a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-iconlist__link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-iconlist__link:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-richtext .mdl-popup--lightgrey a:hover p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download]:hover p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup--lightgrey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download]:hover p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup--lightgrey a[download]:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-input-list__label a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-input-list__label a:hover a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--lightgrey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--lightgrey a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-dropdown__title a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-dropdown__title a:hover a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--lightgrey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--lightgrey a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-filter__label a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-filter__label a:hover a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--lightgrey a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--lightgrey a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--lightgrey .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-paragraph a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-iconlist__link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--lightgrey a:hover ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download]:hover ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup--lightgrey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-input-list__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-filter__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-promo-textteaser__description:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--lightgrey .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-paragraph a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-iconlist__link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--lightgrey a:hover ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download]:hover ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup--lightgrey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-input-list__label a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-filter__label a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--lightgrey a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-promo-textteaser__description:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .atm-link:hover .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a:hover .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover .mdl-richtext p a[download] > svg use, .context-ghi .mdl-popup--lightgrey .atm-ghi-link:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-link:hover a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext p .mdl-popup--lightgrey .atm-ghi-link:hover a[download] > svg use, .mdl-popup--lightgrey .atm-paragraph a:hover .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-paragraph a:hover a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--lightgrey a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-iconlist__link:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey a:hover p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download]:hover p a[download] > svg use,
.mdl-richtext p ul .mdl-popup--lightgrey a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download]:hover p a[download] > svg use,
.mdl-richtext p ol .mdl-popup--lightgrey a[download]:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-input-list__label a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--lightgrey a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-dropdown__title a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--lightgrey a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-filter__label a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--lightgrey a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--lightgrey a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--lightgrey .atm-link:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .atm-ghi-link:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-link:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--lightgrey .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--lightgrey .atm-paragraph a:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-iconlist__link:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-richtext .mdl-popup--lightgrey a:hover ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download]:hover ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup--lightgrey a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-input-list__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-filter__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-promo-textteaser__description:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--lightgrey .atm-link:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .atm-ghi-link:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-link:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--lightgrey .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--lightgrey .atm-paragraph a:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-iconlist__link:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-richtext .mdl-popup--lightgrey a:hover ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download]:hover ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup--lightgrey a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-input-list__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-filter__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--lightgrey a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-promo-textteaser__description:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-promo-textteaser__description:hover a[download] > svg use {
    fill: #771511;
}
.mdl-popup--lightgrey .mdl-popup__close:hover {
    color: #771511;
}
.mdl-popup--lightgrey .mdl-popup__close:hover .atm-icon use, .mdl-popup--lightgrey .mdl-popup__close:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .mdl-popup__close:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-popup__close:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .mdl-popup__close:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-popup__close:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .mdl-popup__close:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-popup__close:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .mdl-popup__close:hover a.atm-link--external > svg use {
    fill: #771511;
}
.mdl-popup--lightgrey .atm-link--download, .mdl-popup--lightgrey .mdl-richtext a[download], .mdl-richtext .mdl-popup--lightgrey a[download] {
    color: inherit;
}
.mdl-popup--lightgrey .atm-link--download .atm-icon use, .mdl-popup--lightgrey .mdl-richtext a[download] .atm-icon use, .mdl-richtext .mdl-popup--lightgrey a[download] .atm-icon use, .mdl-popup--lightgrey .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-popup--lightgrey a[download] .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] .atm-icon use, .mdl-popup--lightgrey .atm-link--download .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey .atm-link--download a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .atm-link--download .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-link--download a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext a[download] p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext .mdl-popup--lightgrey a[download] p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-link--download .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-link--download a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a[download] ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--lightgrey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--lightgrey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-link--download .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-link--download a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a[download] ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--lightgrey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--lightgrey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup--lightgrey a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] a.atm-link--external > svg use, .mdl-popup--lightgrey .atm-link--download .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey .atm-link--download a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-popup--lightgrey p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey p a[download] > svg use,
.mdl-richtext p ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey p a[download] > svg use,
.mdl-richtext p ol .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .atm-link--download .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey .atm-link--download a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-popup--lightgrey ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup--lightgrey ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .atm-link--download .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey .atm-link--download a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-popup--lightgrey ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup--lightgrey ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--lightgrey ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup--lightgrey a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--lightgrey a[download] > svg use {
    fill: #A61711;
}
.mdl-popup--lightgrey .mdl-richtext .atm-link, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link,
.mdl-popup--lightgrey .mdl-richtext ul a[download],
.mdl-popup--lightgrey .mdl-richtext ol a[download], .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description,
.mdl-popup--lightgrey .mdl-richtext a,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline {
    color: #282625;
    text-decoration-color: #A61711;
}
.mdl-popup--lightgrey .mdl-richtext .atm-link .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .atm-paragraph a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link .atm-icon use, .mdl-popup--lightgrey .mdl-richtext p a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext p a[download] .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .atm-link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-paragraph a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-link p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link p a.atm-link--external > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .atm-link a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext p .atm-ghi-link a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-paragraph p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link p a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext p .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-filter__label p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext ul .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link ul a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext ul .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext ol .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link ol a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext ol .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-link p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link p a[download] > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .atm-link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext p .atm-ghi-link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-paragraph p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-iconlist__link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link p a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext p .mdl-iconlist__link a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-filter__label p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link ul a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext ul .atm-ghi-link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-iconlist__link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link ul a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext ul .mdl-iconlist__link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link ol a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext ol .atm-ghi-link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-iconlist__link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link ol a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--lightgrey .mdl-richtext ol .mdl-iconlist__link a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a .atm-icon use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext p a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a .atm-icon use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext a .atm-icon use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext a:not([class]) .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a .atm-icon use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a .atm-icon use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext a .atm-icon use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a .atm-icon use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a .atm-icon use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext a .atm-icon use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a .atm-icon use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a .atm-icon use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext a .atm-icon use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:not([class]) a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a[download] > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a[download] > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a[download] > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-link--inline a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro p a a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a.atm-link--inline a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:not([class]) p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:not([class]) a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-link--inline a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ul a a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a.atm-link--inline a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:not([class]) ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:not([class]) a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-link--inline a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ol a a.atm-link--external > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a.atm-link--inline a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:not([class]) ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:not([class]) a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-link--inline a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro p a a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a.atm-link--inline a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:not([class]) p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:not([class]) a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a[download] > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext p a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a[download] > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext p a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a[download] > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext p a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-link--inline a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ul a a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a.atm-link--inline a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:not([class]) ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:not([class]) a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a[download] > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a[download] > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a[download] > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-link--inline a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ol a a[download] > svg use,
.mdl-popup--lightgrey .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a.atm-link--inline a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--lightgrey .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:not([class]) ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:not([class]) a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a[download] > svg use,
.mdl-popup--lightgrey .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a[download] > svg use,
.mdl-popup--lightgrey .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a[download] > svg use,
.mdl-popup--lightgrey .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a[download] > svg use {
    fill: #A61711;
}
.mdl-popup--lightgrey .mdl-richtext .atm-link:hover, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link:hover, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link:hover, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link:hover, .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description:hover,
.mdl-popup--lightgrey .mdl-richtext a:hover,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline:hover {
    color: #282625;
    text-decoration-color: #771511;
}
.mdl-popup--lightgrey .mdl-richtext .atm-link:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link:hover .atm-icon use, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover .atm-icon use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover .atm-icon use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover .atm-icon use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover .atm-icon use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description:hover .atm-icon use, .mdl-popup--lightgrey .mdl-richtext .atm-link:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-link:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link:hover p a.atm-link--external > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .atm-link:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext p .atm-ghi-link:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-iconlist__link:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download]:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a:hover a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a:hover a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a:hover a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description:hover p a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext ul .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext ol .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-promo-textteaser__description:hover a.atm-link--external > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-link:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link:hover p a[download] > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .atm-link:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-popup--lightgrey .mdl-richtext p .atm-ghi-link:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use, .atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ul a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p ol a[download]:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use, .mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use, .mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use, .mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description:hover p a[download] > svg use, .mdl-popup--lightgrey .mdl-richtext p .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link:hover ul a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-link:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext ul .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul ol a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .atm-ghi-link:hover ol a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext .atm-ghi-link:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-link:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-popup--lightgrey .mdl-richtext ol .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-iconlist__link:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a[download]:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol ul a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-promo-textteaser__description:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover .atm-icon use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext p a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext a:hover:not([class]) .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover .atm-icon use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover .atm-icon use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover .atm-icon use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover .atm-icon use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover:not([class]) a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a.atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover:not([class]) p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover:not([class]) a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover p a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a.atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover:not([class]) ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:hover:not([class]) a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a.atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover:not([class]) ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:hover:not([class]) a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-link--inline:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover:not([class]) p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover:not([class]) a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover p a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover p a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-link--inline:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover:not([class]) ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul a:hover:not([class]) a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover ul a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ul .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover ul a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-link--inline:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-link--inline:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .atm-paragraph a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.atm-paragraph .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext p a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol p a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a.atm-link--inline:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext a:hover:not([class]) ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol a:hover:not([class]) a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-input-list__label a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-input-list__label .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-dropdown__title a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-dropdown__title .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext .mdl-filter__label a:hover ol a[download] > svg use,
.mdl-popup--lightgrey .mdl-richtext ol .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext a:hover ol a[download] > svg use,
.mdl-filter__label .mdl-popup--lightgrey .mdl-richtext ol a:hover a[download] > svg use {
    fill: #771511;
}
.mdl-popup--bright {
    background: linear-gradient(to bottom right, #FFE3B0, #FFB96F);
    color: inherit;
}
.mdl-popup--bright .mdl-richtext .atm-link, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link,
.mdl-popup--bright .mdl-richtext ul a[download],
.mdl-popup--bright .mdl-richtext ol a[download], .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description,
.mdl-popup--bright .mdl-richtext a {
    text-decoration-color: #A61711;
}
.mdl-popup--bright .mdl-richtext .atm-link--inline, .mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a, .mdl-popup--bright .mdl-richtext .atm-paragraph a, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-popup--bright .mdl-richtext a, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a, .mdl-popup--bright .mdl-richtext p a, .mdl-popup--bright .atm-paragraph .mdl-richtext a, .mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext a, .mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext a, .mdl-popup--bright .mdl-richtext a:not([class]), .mdl-popup--bright .mdl-richtext .mdl-input-list__label a, .mdl-input-list__label .mdl-popup--bright .mdl-richtext a, .mdl-popup--bright .mdl-input-list__label .mdl-richtext a, .mdl-popup--bright .mdl-richtext .mdl-dropdown__title a, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext a, .mdl-popup--bright .mdl-dropdown__title .mdl-richtext a, .mdl-popup--bright .mdl-richtext .mdl-filter__label a, .mdl-filter__label .mdl-popup--bright .mdl-richtext a, .mdl-popup--bright .mdl-filter__label .mdl-richtext a,
.mdl-popup--bright .mdl-richtext .atm-link--external {
    text-decoration-color: #A61711;
}
.mdl-popup--bright .mdl-popup__submit {
    color: #A61711;
}
.mdl-popup--bright .mdl-popup__submit .atm-icon use, .mdl-popup--bright .mdl-popup__submit .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-popup__submit a[download] > svg use, .mdl-popup--bright .mdl-popup__submit .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-popup__submit a.atm-link--external > svg use,
.mdl-popup--bright .mdl-popup__submit .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-popup__submit a.atm-link--external > svg use,
.mdl-popup--bright .mdl-popup__submit .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-popup__submit a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-popup--bright .atm-link, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a, .mdl-popup--bright .context-ghi .atm-ghi-link, .context-ghi .mdl-popup--bright .atm-ghi-link, .mdl-popup--bright .atm-paragraph a, .mdl-popup--bright .mdl-plain-text-accordion__height-representation a, .mdl-popup--bright .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-popup--bright a, .mdl-plain-text-accordion__height-representation .mdl-popup--bright a, .mdl-plain-text-accordion__text .mdl-popup--bright a, .mdl-popup--bright .mdl-iconlist__link, .mdl-popup--bright .mdl-richtext a, .mdl-richtext .mdl-popup--bright a,
.mdl-popup--bright .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-popup--bright a[download],
.mdl-popup--bright .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-popup--bright a[download], .mdl-popup--bright .mdl-input-list__label a, .mdl-input-list__label .mdl-popup--bright a, .mdl-popup--bright .mdl-dropdown__title a, .mdl-dropdown__title .mdl-popup--bright a, .mdl-popup--bright .mdl-filter__label a, .mdl-filter__label .mdl-popup--bright a, .mdl-popup--bright .mdl-promo-textteaser__description,
.mdl-popup--bright .mdl-popup__close {
    color: #A61711;
}
.mdl-popup--bright .atm-link .atm-icon use, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a .atm-icon use, .mdl-popup--bright .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-popup--bright .atm-ghi-link .atm-icon use, .mdl-popup--bright .atm-paragraph a .atm-icon use, .mdl-popup--bright .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-popup--bright .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-popup--bright a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright a .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--bright a .atm-icon use, .mdl-popup--bright .mdl-iconlist__link .atm-icon use, .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link .atm-icon use, .mdl-popup--bright .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-popup--bright a .atm-icon use, .mdl-popup--bright .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-popup--bright a .atm-icon use, .mdl-popup--bright .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-popup--bright a[download] .atm-icon use,
.mdl-popup--bright .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-popup--bright a[download] .atm-icon use,
.mdl-popup--bright .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-popup--bright a[download] .atm-icon use, .mdl-popup--bright .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-popup--bright a .atm-icon use, .mdl-popup--bright .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-popup--bright a .atm-icon use, .mdl-popup--bright .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-popup--bright a .atm-icon use, .mdl-popup--bright .mdl-promo-textteaser__description .atm-icon use, .mdl-popup--bright .atm-link .mdl-richtext a[download] > svg use, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a .mdl-richtext a[download] > svg use, .mdl-popup--bright .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-popup--bright .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .atm-link a[download] > svg use, .mdl-richtext .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-popup--bright a a[download] > svg use, .mdl-richtext .mdl-popup--bright .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-popup--bright .atm-ghi-link a[download] > svg use, .mdl-popup--bright .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-popup--bright a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-popup--bright a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-iconlist__link a[download] > svg use, .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-promo-textteaser__description a[download] > svg use, .mdl-popup--bright .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-popup--bright .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--bright a a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-popup--bright .atm-ghi-link a.atm-link--external > svg use, .mdl-popup--bright .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--bright a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--bright a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--bright a.atm-link--external > svg use, .mdl-popup--bright .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-popup--bright p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup--bright a[download] a.atm-link--external > svg use, .mdl-popup--bright .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--bright a.atm-link--external > svg use, .mdl-popup--bright .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--bright a.atm-link--external > svg use, .mdl-popup--bright .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--bright a.atm-link--external > svg use, .mdl-popup--bright .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--bright .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--bright a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--bright .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--bright a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--bright a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--bright ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--bright ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--bright a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--bright .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--bright a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--bright .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--bright a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--bright a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--bright ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--bright ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--bright a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--bright a.atm-link--external > svg use,
.mdl-popup--bright .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-popup--bright .atm-link .mdl-richtext p a[download] > svg use, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a .mdl-richtext p a[download] > svg use, .mdl-popup--bright .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-popup--bright .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .atm-link a[download] > svg use, .mdl-richtext p .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--bright a a[download] > svg use, .mdl-richtext p .mdl-popup--bright .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-popup--bright .atm-ghi-link a[download] > svg use, .mdl-popup--bright .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--bright a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--bright a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-iconlist__link a[download] > svg use, .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-popup--bright p a[download] > svg use, .mdl-richtext p .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright p a[download] > svg use,
.mdl-richtext p ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright p a[download] > svg use,
.mdl-richtext p ol .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--bright .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-popup--bright .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--bright a a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--bright .atm-ghi-link a[download] > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--bright a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--bright a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-iconlist__link a[download] > svg use,
.mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup--bright ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-popup--bright ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup--bright ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--bright .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-popup--bright .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--bright a a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--bright .atm-ghi-link a[download] > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--bright a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--bright a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-iconlist__link a[download] > svg use,
.mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-popup--bright .mdl-iconlist__link a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup--bright ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-popup--bright ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup--bright ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--bright .mdl-popup__close .atm-icon use,
.mdl-popup--bright .mdl-popup__close .mdl-richtext a[download] > svg use,
.mdl-richtext .mdl-popup--bright .mdl-popup__close a[download] > svg use,
.mdl-popup--bright .mdl-popup__close .mdl-richtext p a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--bright .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup--bright .mdl-popup__close .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup--bright .mdl-popup__close .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-popup__close a.atm-link--external > svg use,
.mdl-popup--bright .mdl-popup__close .mdl-richtext p a[download] > svg use,
.mdl-richtext p .mdl-popup--bright .mdl-popup__close a[download] > svg use,
.mdl-popup--bright .mdl-popup__close .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-popup__close a[download] > svg use,
.mdl-popup--bright .mdl-popup__close .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-popup__close a[download] > svg use {
    fill: #A61711;
}
.mdl-popup--bright .atm-link:hover, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a:hover, .mdl-popup--bright .context-ghi .atm-ghi-link:hover, .context-ghi .mdl-popup--bright .atm-ghi-link:hover, .mdl-popup--bright .atm-paragraph a:hover, .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover, .mdl-popup--bright .mdl-plain-text-accordion__text a:hover, .atm-paragraph .mdl-popup--bright a:hover, .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover, .mdl-plain-text-accordion__text .mdl-popup--bright a:hover, .mdl-popup--bright .mdl-iconlist__link:hover, .mdl-popup--bright .mdl-richtext a:hover, .mdl-richtext .mdl-popup--bright a:hover, .mdl-popup--bright .mdl-input-list__label a:hover, .mdl-input-list__label .mdl-popup--bright a:hover, .mdl-popup--bright .mdl-dropdown__title a:hover, .mdl-dropdown__title .mdl-popup--bright a:hover, .mdl-popup--bright .mdl-filter__label a:hover, .mdl-filter__label .mdl-popup--bright a:hover, .mdl-popup--bright .mdl-promo-textteaser__description:hover {
    color: #771511;
}
.mdl-popup--bright .atm-link:hover .atm-icon use, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a:hover .atm-icon use, .mdl-popup--bright .context-ghi .atm-ghi-link:hover .atm-icon use, .context-ghi .mdl-popup--bright .atm-ghi-link:hover .atm-icon use, .mdl-popup--bright .atm-paragraph a:hover .atm-icon use, .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover .atm-icon use, .mdl-popup--bright .mdl-plain-text-accordion__text a:hover .atm-icon use, .atm-paragraph .mdl-popup--bright a:hover .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--bright a:hover .atm-icon use, .mdl-popup--bright .mdl-iconlist__link:hover .atm-icon use, .mdl-popup--bright .mdl-richtext a:hover .atm-icon use, .mdl-richtext .mdl-popup--bright a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover .atm-icon use,
.mdl-richtext ul .mdl-popup--bright a[download]:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover .atm-icon use,
.mdl-richtext ol .mdl-popup--bright a[download]:hover .atm-icon use, .mdl-popup--bright .mdl-input-list__label a:hover .atm-icon use, .mdl-input-list__label .mdl-popup--bright a:hover .atm-icon use, .mdl-popup--bright .mdl-dropdown__title a:hover .atm-icon use, .mdl-dropdown__title .mdl-popup--bright a:hover .atm-icon use, .mdl-popup--bright .mdl-filter__label a:hover .atm-icon use, .mdl-filter__label .mdl-popup--bright a:hover .atm-icon use, .mdl-popup--bright .mdl-promo-textteaser__description:hover .atm-icon use, .mdl-popup--bright .atm-link:hover .mdl-richtext a[download] > svg use, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a:hover .mdl-richtext a[download] > svg use, .mdl-popup--bright .context-ghi .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .context-ghi .mdl-popup--bright .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .atm-link:hover a[download] > svg use, .mdl-richtext .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-popup--bright a:hover a[download] > svg use, .mdl-richtext .mdl-popup--bright .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext .mdl-popup--bright .atm-ghi-link:hover a[download] > svg use, .mdl-popup--bright .atm-paragraph a:hover .mdl-richtext a[download] > svg use, .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext a[download] > svg use, .mdl-popup--bright .mdl-plain-text-accordion__text a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .atm-paragraph a:hover a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--bright a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-popup--bright a:hover a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-popup--bright a:hover a[download] > svg use, .mdl-popup--bright .mdl-iconlist__link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use, .mdl-richtext .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download]:hover a[download] > svg use, .mdl-popup--bright .mdl-input-list__label a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--bright a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-popup--bright a:hover a[download] > svg use, .mdl-popup--bright .mdl-dropdown__title a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--bright a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-popup--bright a:hover a[download] > svg use, .mdl-popup--bright .mdl-filter__label a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--bright a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-popup--bright a:hover a[download] > svg use, .mdl-popup--bright .mdl-promo-textteaser__description:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-promo-textteaser__description:hover a[download] > svg use, .mdl-popup--bright .atm-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .context-ghi .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-popup--bright .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .atm-link:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--bright a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-popup--bright .atm-ghi-link:hover a.atm-link--external > svg use, .mdl-popup--bright .atm-paragraph a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-plain-text-accordion__text a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .atm-paragraph a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use, .atm-paragraph .mdl-popup--bright a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--bright a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--bright a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-iconlist__link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-iconlist__link:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-richtext .mdl-popup--bright a:hover p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download]:hover p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup--bright a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download]:hover p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup--bright a[download]:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-input-list__label a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-input-list__label a:hover a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--bright a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--bright a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-dropdown__title a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-dropdown__title a:hover a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--bright a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--bright a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-filter__label a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-filter__label a:hover a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--bright a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--bright a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-promo-textteaser__description:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--bright .atm-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--bright .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--bright .atm-paragraph a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-iconlist__link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--bright a:hover ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download]:hover ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup--bright a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-input-list__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-dropdown__title a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-filter__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-promo-textteaser__description:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--bright .atm-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--bright .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--bright .atm-paragraph a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-iconlist__link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--bright a:hover ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download]:hover ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup--bright a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-input-list__label a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-dropdown__title a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-filter__label a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--bright a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-promo-textteaser__description:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-promo-textteaser__description:hover a.atm-link--external > svg use, .mdl-popup--bright .atm-link:hover .mdl-richtext p a[download] > svg use, .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a:hover .mdl-richtext p a[download] > svg use, .mdl-popup--bright .context-ghi .atm-ghi-link:hover .mdl-richtext p a[download] > svg use, .context-ghi .mdl-popup--bright .atm-ghi-link:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .atm-link:hover a[download] > svg use, .mdl-richtext p .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-popup--bright a:hover a[download] > svg use, .mdl-richtext p .mdl-popup--bright .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext p .mdl-popup--bright .atm-ghi-link:hover a[download] > svg use, .mdl-popup--bright .atm-paragraph a:hover .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-plain-text-accordion__text a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .atm-paragraph a:hover a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--bright a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-popup--bright a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-popup--bright a:hover a[download] > svg use, .mdl-popup--bright .mdl-iconlist__link:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use, .mdl-richtext .mdl-popup--bright a:hover p a[download] > svg use, .mdl-richtext p .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download]:hover p a[download] > svg use,
.mdl-richtext p ul .mdl-popup--bright a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download]:hover p a[download] > svg use,
.mdl-richtext p ol .mdl-popup--bright a[download]:hover a[download] > svg use, .mdl-popup--bright .mdl-input-list__label a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--bright a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-popup--bright a:hover a[download] > svg use, .mdl-popup--bright .mdl-dropdown__title a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--bright a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-popup--bright a:hover a[download] > svg use, .mdl-popup--bright .mdl-filter__label a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--bright a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-popup--bright a:hover a[download] > svg use, .mdl-popup--bright .mdl-promo-textteaser__description:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--bright .atm-link:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .context-ghi .atm-ghi-link:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-popup--bright .atm-ghi-link:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-link:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-popup--bright a:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-popup--bright .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--bright .atm-paragraph a:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--bright a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-popup--bright a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-iconlist__link:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-richtext .mdl-popup--bright a:hover ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download]:hover ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup--bright a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-input-list__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-dropdown__title a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-filter__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--bright a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-promo-textteaser__description:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--bright .atm-link:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright a:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .context-ghi .atm-ghi-link:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-popup--bright .atm-ghi-link:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-link:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-popup--bright a:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-popup--bright .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--bright .atm-paragraph a:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--bright a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-popup--bright a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-popup--bright a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-iconlist__link:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-richtext .mdl-popup--bright a:hover ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download]:hover ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup--bright a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-input-list__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-dropdown__title a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-filter__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--bright a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-popup--bright a:hover a[download] > svg use,
.mdl-popup--bright .mdl-promo-textteaser__description:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-promo-textteaser__description:hover a[download] > svg use {
    fill: #771511;
}
.mdl-popup--bright .mdl-popup__close:hover {
    color: #771511;
}
.mdl-popup--bright .mdl-popup__close:hover .atm-icon use, .mdl-popup--bright .mdl-popup__close:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .mdl-popup__close:hover a[download] > svg use, .mdl-popup--bright .mdl-popup__close:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .mdl-popup__close:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-popup__close:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .mdl-popup__close:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-popup__close:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .mdl-popup__close:hover a.atm-link--external > svg use {
    fill: #771511;
}
.mdl-popup--bright .atm-link--download, .mdl-popup--bright .mdl-richtext a[download], .mdl-richtext .mdl-popup--bright a[download] {
    color: inherit;
}
.mdl-popup--bright .atm-link--download .atm-icon use, .mdl-popup--bright .mdl-richtext a[download] .atm-icon use, .mdl-richtext .mdl-popup--bright a[download] .atm-icon use, .mdl-popup--bright .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-popup--bright a[download] .atm-icon use,
.mdl-popup--bright .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-popup--bright a[download] .atm-icon use,
.mdl-popup--bright .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-popup--bright a[download] .atm-icon use, .mdl-popup--bright .atm-link--download .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright .atm-link--download a[download] > svg use, .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .atm-link--download .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright .atm-link--download a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext a[download] p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext .mdl-popup--bright a[download] p a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright a[download] a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .atm-link--download .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-link--download a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a[download] ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--bright a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--bright a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .atm-link--download .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-link--download a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a[download] ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext .mdl-popup--bright a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-popup--bright a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-popup--bright a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] a.atm-link--external > svg use, .mdl-popup--bright .atm-link--download .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright .atm-link--download a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-popup--bright p a[download] > svg use, .mdl-richtext p .mdl-popup--bright a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright p a[download] > svg use,
.mdl-richtext p ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright p a[download] > svg use,
.mdl-richtext p ol .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .atm-link--download .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright .atm-link--download a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-popup--bright ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-popup--bright ul a[download] > svg use,
.mdl-richtext ul p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright ul a[download] > svg use,
.mdl-richtext ul ol .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .atm-link--download .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright .atm-link--download a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-popup--bright ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-popup--bright ol a[download] > svg use,
.mdl-richtext ol p .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-popup--bright ol a[download] > svg use,
.mdl-richtext ol ul .mdl-popup--bright a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-popup--bright a[download] > svg use {
    fill: #A61711;
}
.mdl-popup--bright .mdl-richtext .atm-link, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link,
.mdl-popup--bright .mdl-richtext ul a[download],
.mdl-popup--bright .mdl-richtext ol a[download], .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description,
.mdl-popup--bright .mdl-richtext a,
.mdl-popup--bright .mdl-richtext .atm-link--inline {
    color: #282625;
    text-decoration-color: #A61711;
}
.mdl-popup--bright .mdl-richtext .atm-link .atm-icon use, .mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a .atm-icon use, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link .atm-icon use, .mdl-popup--bright .mdl-richtext .atm-paragraph a .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-popup--bright .mdl-richtext a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext .mdl-iconlist__link .atm-icon use, .mdl-popup--bright .mdl-richtext p a .atm-icon use, .mdl-popup--bright .mdl-richtext a .atm-icon use, .mdl-popup--bright .mdl-richtext p a[download] .atm-icon use,
.mdl-popup--bright .mdl-richtext ul a[download] .atm-icon use,
.mdl-popup--bright .mdl-richtext ol a[download] .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext a .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext a .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-popup--bright .mdl-richtext a .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description .atm-icon use, .mdl-popup--bright .mdl-richtext .atm-link a[download] > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a a[download] > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link a[download] > svg use, .mdl-popup--bright .mdl-richtext .atm-paragraph a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext .mdl-iconlist__link a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description a[download] > svg use, .mdl-popup--bright .mdl-richtext .atm-link p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link p a.atm-link--external > svg use, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .atm-link a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-popup--bright .mdl-richtext p .atm-ghi-link a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .atm-paragraph p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .atm-paragraph a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext .mdl-iconlist__link p a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext p .mdl-iconlist__link a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-input-list__label p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-dropdown__title p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-filter__label p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext ul .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist__link ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext .mdl-iconlist__link ul a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext ul .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext ol .atm-ghi-link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist__link ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext .mdl-iconlist__link ol a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext ol .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .atm-link p a[download] > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a p a[download] > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link p a[download] > svg use, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .atm-link a[download] > svg use, .mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a a[download] > svg use, .mdl-popup--bright .mdl-richtext p .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-popup--bright .mdl-richtext p .atm-ghi-link a[download] > svg use, .mdl-popup--bright .mdl-richtext .atm-paragraph p a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .atm-paragraph a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-iconlist__link a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext .mdl-iconlist__link p a[download] > svg use, .mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext p .mdl-iconlist__link a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-input-list__label p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-dropdown__title p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-filter__label p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext p a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link ul a[download] > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-link a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext ul .atm-ghi-link a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist__link ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-iconlist__link a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext .mdl-iconlist__link ul a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext ul .mdl-iconlist__link a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link ol a[download] > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-link a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext ol .atm-ghi-link a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist__link ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-iconlist__link a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist--horizontal .mdl-iconlist__link ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext .mdl-iconlist__link ol a[download] > svg use,
.mdl-iconlist--horizontal .mdl-popup--bright .mdl-richtext ol .mdl-iconlist__link a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-promo-textteaser__description a[download] > svg use,
.mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline .atm-icon use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a .atm-icon use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext p a .atm-icon use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline .atm-icon use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a .atm-icon use,
.mdl-popup--bright .atm-paragraph .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext a .atm-icon use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext a:not([class]) .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a .atm-icon use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a .atm-icon use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext a .atm-icon use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a .atm-icon use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a .atm-icon use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext a .atm-icon use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a .atm-icon use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a .atm-icon use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext a .atm-icon use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a .atm-icon use,
.mdl-popup--bright .mdl-richtext .atm-link--inline a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:not([class]) a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a[download] > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a[download] > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a[download] > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .atm-link--inline a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro p a a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a.atm-link--inline a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:not([class]) p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a:not([class]) a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-input-list__label a.atm-link--external > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-filter__label a.atm-link--external > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-link--inline a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ul a a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a.atm-link--inline a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:not([class]) ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a:not([class]) a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a.atm-link--external > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a.atm-link--external > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-link--inline a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ol a a.atm-link--external > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a.atm-link--inline a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:not([class]) ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a:not([class]) a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a.atm-link--external > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a.atm-link--external > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .atm-link--inline a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro p a a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a.atm-link--inline a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:not([class]) p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a:not([class]) a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-input-list__label a[download] > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext p a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a[download] > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext p a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-filter__label a[download] > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext p a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-link--inline a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ul a a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a[download] > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a.atm-link--inline a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:not([class]) ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a:not([class]) a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a[download] > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a[download] > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a[download] > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-link--inline a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro ol a a[download] > svg use,
.mdl-popup--bright .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a[download] > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a.atm-link--inline a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a[download] > svg use,
.mdl-popup--bright .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:not([class]) ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a:not([class]) a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a[download] > svg use,
.mdl-popup--bright .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a[download] > svg use,
.mdl-popup--bright .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a[download] > svg use,
.mdl-popup--bright .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a[download] > svg use {
    fill: #A61711;
}
.mdl-popup--bright .mdl-richtext .atm-link:hover, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link:hover, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link:hover, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link:hover, .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description:hover,
.mdl-popup--bright .mdl-richtext a:hover,
.mdl-popup--bright .mdl-richtext .atm-link--inline:hover {
    color: #282625;
    text-decoration-color: #771511;
}
.mdl-popup--bright .mdl-richtext .atm-link:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link:hover .atm-icon use, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .atm-paragraph a:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover .atm-icon use, .atm-paragraph .mdl-popup--bright .mdl-richtext a:hover .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover .atm-icon use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link:hover .atm-icon use, .mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover .atm-icon use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover .atm-icon use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover .atm-icon use, .mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description:hover .atm-icon use, .mdl-popup--bright .mdl-richtext .atm-link:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .atm-paragraph a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .atm-link:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link:hover p a.atm-link--external > svg use, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .atm-link:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use, .context-ghi .mdl-popup--bright .mdl-richtext p .atm-ghi-link:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .atm-paragraph a:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .atm-paragraph a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-iconlist__link:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download]:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-input-list__label a:hover a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a:hover a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-filter__label a:hover a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description:hover p a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext p .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-link:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext ul .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist__link:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-link:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext ol .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist__link:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-promo-textteaser__description:hover a.atm-link--external > svg use, .mdl-popup--bright .mdl-richtext .atm-link:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link:hover p a[download] > svg use, .context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .atm-link:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext p .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-popup--bright .mdl-richtext p .atm-ghi-link:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .atm-paragraph a:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .atm-paragraph a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use, .atm-paragraph .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use, .mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-iconlist__link:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-iconlist__link:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ul a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p ol a[download]:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use, .mdl-input-list__label .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use, .mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use, .mdl-filter__label .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use, .mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description:hover p a[download] > svg use, .mdl-popup--bright .mdl-richtext p .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link:hover ul a[download] > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-link:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext ul .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist__link:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul ol a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .atm-ghi-link:hover ol a[download] > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext .atm-ghi-link:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-link:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-popup--bright .mdl-richtext ol .atm-ghi-link:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-iconlist__link:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-iconlist__link:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a[download]:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol ul a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-promo-textteaser__description:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover .atm-icon use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext p a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext a:hover:not([class]) .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover .atm-icon use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover .atm-icon use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover .atm-icon use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover .atm-icon use,
.mdl-popup--bright .mdl-richtext .atm-link--inline:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover:not([class]) a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a.atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover:not([class]) p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a:hover:not([class]) a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover p a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover p a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a.atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover:not([class]) ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul a:hover:not([class]) a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover ul a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext p a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol p a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a.atm-link--inline:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext a:hover:not([class]) ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol a:hover:not([class]) a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover ol a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .atm-link--inline:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover p a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover:not([class]) p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a:hover:not([class]) a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover p a[download] > svg use,
.mdl-popup--bright .mdl-richtext p .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover p a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-link--inline:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover:not([class]) ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul a:hover:not([class]) a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover ul a[download] > svg use,
.mdl-popup--bright .mdl-richtext ul .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover ul a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ul a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-link--inline:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-link--inline:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .atm-paragraph a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__height-representation a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-plain-text-accordion__text a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .atm-paragraph a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.atm-paragraph .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext p a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol p a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a.atm-link--inline:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro a:hover ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a.atm-link--inline:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext a:hover:not([class]) ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol a:hover:not([class]) a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-input-list__label a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-input-list__label .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-dropdown__title a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-dropdown__title .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use,
.mdl-popup--bright .mdl-richtext .mdl-filter__label a:hover ol a[download] > svg use,
.mdl-popup--bright .mdl-richtext ol .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext a:hover ol a[download] > svg use,
.mdl-filter__label .mdl-popup--bright .mdl-richtext ol a:hover a[download] > svg use {
    fill: #771511;
}

.mdl-typeahead {
    position: absolute;
    z-index: 10;
    width: 100%;
    background-color: #FFF;
    border-radius: 0 0 5px 5px;
}
.mdl-typeahead__dropdown {
    display: none;
    border: 2px solid #9D9F9D;
    border-top: none;
    border-radius: 5px;
}
.mdl-typeahead__dropdown--visible {
    display: block;
}
.mdl-typeahead__suggestion {
    padding: 0.5555555556rem 1.6666666667rem;
    cursor: pointer;
}
.mdl-typeahead__suggestion strong {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}
.mdl-typeahead__suggestion--selected {
    background-color: #F1F1F1;
}
.mdl-typeahead .mdl-loading_spinner {
    position: relative;
    padding: 1.6666666667rem;
}

.mdl-tags {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 4rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-tags {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tags {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tags {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 29.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tags {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tags {
        margin-left: 34.6607669617%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tags {
        margin-left: 35.1851851852%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tags {
        margin-left: 34.6607669617%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tags {
        margin-bottom: 6.2222222222rem;
    }
}
.mdl-tags__top {
    margin-bottom: 1rem;
}
.mdl-tags__top-box-header {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    margin: 0;
}
.mdl-tags__top-box-header:before, .mdl-tags__top-box-header:after {
    content: "";
    display: inline-block;
    height: 1px;
    background: #403F3F;
    flex-basis: 1em;
    flex-grow: 1;
}
.mdl-tags__top-box-header:before {
    margin-right: 1.1111111111rem;
}
.mdl-tags__top-box-header:after {
    margin-left: 1.1111111111rem;
}
@media all and (min-width: 64em) {
    .mdl-tags__top-box-header:before {
        margin-right: 2.7222222222rem;
    }
    .mdl-tags__top-box-header:after {
        margin-left: 2.7222222222rem;
    }
}
@media all and (min-width: 64em) {
    .mdl-tags__top {
        margin-bottom: 2.1666666667rem;
    }
}
.mdl-tags .atm-link, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a, .mdl-tags .context-ghi .atm-ghi-link, .context-ghi .mdl-tags .atm-ghi-link, .mdl-tags .atm-paragraph a, .mdl-tags .mdl-plain-text-accordion__height-representation a, .mdl-tags .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-tags a, .mdl-plain-text-accordion__height-representation .mdl-tags a, .mdl-plain-text-accordion__text .mdl-tags a, .mdl-tags .mdl-iconlist__link, .mdl-tags .mdl-richtext a, .mdl-richtext .mdl-tags a,
.mdl-tags .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-tags a[download],
.mdl-tags .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-tags a[download], .mdl-tags .mdl-input-list__label a, .mdl-input-list__label .mdl-tags a, .mdl-tags .mdl-dropdown__title a, .mdl-dropdown__title .mdl-tags a, .mdl-tags .mdl-filter__label a, .mdl-filter__label .mdl-tags a, .mdl-tags .mdl-promo-textteaser__description {
    display: inline-flex;
    min-height: 1.6666666667rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    align-items: center;
    color: #282625;
}
.mdl-tags .atm-link .atm-icon use, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a .atm-icon use, .mdl-tags .context-ghi .atm-ghi-link .atm-icon use, .context-ghi .mdl-tags .atm-ghi-link .atm-icon use, .mdl-tags .atm-paragraph a .atm-icon use, .mdl-tags .mdl-plain-text-accordion__height-representation a .atm-icon use, .mdl-tags .mdl-plain-text-accordion__text a .atm-icon use, .atm-paragraph .mdl-tags a .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-tags a .atm-icon use, .mdl-plain-text-accordion__text .mdl-tags a .atm-icon use, .mdl-tags .mdl-iconlist__link .atm-icon use, .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon use, .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link .atm-icon use, .mdl-tags .mdl-richtext p a .atm-icon use, .mdl-richtext p .mdl-tags a .atm-icon use, .mdl-tags .mdl-richtext a .atm-icon use, .mdl-richtext .mdl-tags a .atm-icon use, .mdl-tags .mdl-richtext p a[download] .atm-icon use, .mdl-richtext p .mdl-tags a[download] .atm-icon use,
.mdl-tags .mdl-richtext ul a[download] .atm-icon use,
.mdl-richtext ul .mdl-tags a[download] .atm-icon use,
.mdl-tags .mdl-richtext ol a[download] .atm-icon use,
.mdl-richtext ol .mdl-tags a[download] .atm-icon use, .mdl-tags .mdl-input-list__label a .atm-icon use, .mdl-input-list__label .mdl-tags a .atm-icon use, .mdl-tags .mdl-dropdown__title a .atm-icon use, .mdl-dropdown__title .mdl-tags a .atm-icon use, .mdl-tags .mdl-filter__label a .atm-icon use, .mdl-filter__label .mdl-tags a .atm-icon use, .mdl-tags .mdl-promo-textteaser__description .atm-icon use, .mdl-tags .atm-link .mdl-richtext a[download] > svg use, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a .mdl-richtext a[download] > svg use, .mdl-tags .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .context-ghi .mdl-tags .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .atm-link a[download] > svg use, .mdl-richtext .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-tags a a[download] > svg use, .mdl-richtext .mdl-tags .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext .mdl-tags .atm-ghi-link a[download] > svg use, .mdl-tags .atm-paragraph .mdl-richtext a[download] > svg use, .mdl-tags .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg use, .mdl-tags .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .atm-paragraph a[download] > svg use, .mdl-richtext .mdl-tags .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext .mdl-tags .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-tags .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-tags .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-tags .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-tags a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-tags a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-tags a[download] > svg use, .mdl-tags .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-iconlist__link a[download] > svg use, .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link a[download] > svg use, .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags a[download] > svg use, .mdl-tags .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags a[download] > svg use, .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags a[download] > svg use, .mdl-tags .mdl-input-list__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-tags .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-tags a[download] > svg use, .mdl-tags .mdl-dropdown__title .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-tags .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-tags a[download] > svg use, .mdl-tags .mdl-filter__label .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-tags .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-tags a[download] > svg use, .mdl-tags .mdl-promo-textteaser__description .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-promo-textteaser__description a[download] > svg use, .mdl-tags .atm-link .mdl-richtext p a.atm-link--external > svg use, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a .mdl-richtext p a.atm-link--external > svg use, .mdl-tags .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-tags .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .atm-link a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-tags a a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .context-ghi .atm-ghi-link a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-tags .atm-ghi-link a.atm-link--external > svg use, .mdl-tags .atm-paragraph .mdl-richtext p a.atm-link--external > svg use, .mdl-tags .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg use, .mdl-tags .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .atm-paragraph a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-plain-text-accordion__text a.atm-link--external > svg use, .atm-paragraph .mdl-tags .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-tags .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-tags .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-tags a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-tags a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-tags a.atm-link--external > svg use, .mdl-tags .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-iconlist__link a.atm-link--external > svg use, .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use, .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link a.atm-link--external > svg use, .mdl-tags .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags a.atm-link--external > svg use, .mdl-tags .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext .mdl-tags p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags a.atm-link--external > svg use, .mdl-tags .mdl-richtext p a[download] a.atm-link--external > svg use, .mdl-richtext p .mdl-tags a[download] a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul a[download] p a.atm-link--external > svg use,
.mdl-tags .mdl-richtext p ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags a[download] p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-tags a[download] a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol a[download] p a.atm-link--external > svg use,
.mdl-tags .mdl-richtext p ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags a[download] p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-tags a[download] a.atm-link--external > svg use, .mdl-tags .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-input-list__label a.atm-link--external > svg use, .mdl-input-list__label .mdl-tags .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-tags a.atm-link--external > svg use, .mdl-tags .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-dropdown__title a.atm-link--external > svg use, .mdl-dropdown__title .mdl-tags .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-tags a.atm-link--external > svg use, .mdl-tags .mdl-filter__label .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-filter__label a.atm-link--external > svg use, .mdl-filter__label .mdl-tags .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-tags a.atm-link--external > svg use, .mdl-tags .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-tags .atm-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a .mdl-richtext ul a.atm-link--external > svg use,
.mdl-tags .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-tags .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .atm-link a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-tags a a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-tags .atm-ghi-link a.atm-link--external > svg use,
.mdl-tags .atm-paragraph .mdl-richtext ul a.atm-link--external > svg use,
.mdl-tags .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg use,
.mdl-tags .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-tags .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-tags .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-tags .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-tags a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-tags a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-tags .mdl-richtext p ul a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul p a.atm-link--external > svg use,
.mdl-richtext p .mdl-tags ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext .mdl-tags ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-richtext p a[download] ul a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-tags a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul p .mdl-tags a[download] a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags a[download] a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol a[download] ul a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags a[download] ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-tags a[download] a.atm-link--external > svg use,
.mdl-tags .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-tags .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-tags .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-tags .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-promo-textteaser__description a.atm-link--external > svg use,
.mdl-tags .atm-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a .mdl-richtext ol a.atm-link--external > svg use,
.mdl-tags .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-tags .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .atm-link a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-tags a a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-tags .atm-ghi-link a.atm-link--external > svg use,
.mdl-tags .atm-paragraph .mdl-richtext ol a.atm-link--external > svg use,
.mdl-tags .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg use,
.mdl-tags .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .atm-paragraph a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-plain-text-accordion__height-representation a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-plain-text-accordion__text a.atm-link--external > svg use,
.atm-paragraph .mdl-tags .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-tags .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-tags .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-tags a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-tags a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link a.atm-link--external > svg use,
.mdl-tags .mdl-richtext p ol a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol p a.atm-link--external > svg use,
.mdl-richtext p .mdl-tags ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext .mdl-tags ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-richtext p a[download] ol a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol p a[download] a.atm-link--external > svg use,
.mdl-richtext p .mdl-tags a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol p .mdl-tags a[download] a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul a[download] ol a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol ul a[download] a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags a[download] ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-tags a[download] a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol a[download] a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags a[download] a.atm-link--external > svg use,
.mdl-tags .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-input-list__label a.atm-link--external > svg use,
.mdl-input-list__label .mdl-tags .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-dropdown__title a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-tags .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-filter__label a.atm-link--external > svg use,
.mdl-filter__label .mdl-tags .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-tags a.atm-link--external > svg use,
.mdl-tags .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-promo-textteaser__description a.atm-link--external > svg use, .mdl-tags .atm-link .mdl-richtext p a[download] > svg use, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a .mdl-richtext p a[download] > svg use, .mdl-tags .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg use, .context-ghi .mdl-tags .atm-ghi-link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .atm-link a[download] > svg use, .mdl-richtext p .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-tags a a[download] > svg use, .mdl-richtext p .mdl-tags .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .mdl-richtext p .mdl-tags .atm-ghi-link a[download] > svg use, .mdl-tags .atm-paragraph .mdl-richtext p a[download] > svg use, .mdl-tags .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg use, .mdl-tags .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .atm-paragraph a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-plain-text-accordion__height-representation a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-plain-text-accordion__text a[download] > svg use, .atm-paragraph .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-tags a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-tags a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-tags a[download] > svg use, .mdl-tags .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-iconlist__link a[download] > svg use, .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use, .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link a[download] > svg use, .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags a[download] > svg use, .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-richtext .mdl-tags p a[download] > svg use, .mdl-richtext p .mdl-tags a[download] > svg use, .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ul p a[download] > svg use,
.mdl-tags .mdl-richtext p ul a[download] > svg use,
.mdl-richtext ul .mdl-tags p a[download] > svg use,
.mdl-richtext p ul .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ol p a[download] > svg use,
.mdl-tags .mdl-richtext p ol a[download] > svg use,
.mdl-richtext ol .mdl-tags p a[download] > svg use,
.mdl-richtext p ol .mdl-tags a[download] > svg use, .mdl-tags .mdl-input-list__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-input-list__label a[download] > svg use, .mdl-input-list__label .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-tags a[download] > svg use, .mdl-tags .mdl-dropdown__title .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-dropdown__title a[download] > svg use, .mdl-dropdown__title .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-tags a[download] > svg use, .mdl-tags .mdl-filter__label .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-filter__label a[download] > svg use, .mdl-filter__label .mdl-tags .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-tags a[download] > svg use, .mdl-tags .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-promo-textteaser__description a[download] > svg use,
.mdl-tags .atm-link .mdl-richtext ul a[download] > svg use,
.mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a .mdl-richtext ul a[download] > svg use,
.mdl-tags .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-tags .atm-ghi-link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .atm-link a[download] > svg use,
.mdl-richtext ul .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-tags a a[download] > svg use,
.mdl-richtext ul .mdl-tags .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-tags .atm-ghi-link a[download] > svg use,
.mdl-tags .atm-paragraph .mdl-richtext ul a[download] > svg use,
.mdl-tags .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg use,
.mdl-tags .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .atm-paragraph a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-tags .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-tags .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-tags .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-tags a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-tags a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-tags a[download] > svg use,
.mdl-tags .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-iconlist__link a[download] > svg use,
.mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link a[download] > svg use,
.mdl-tags .mdl-richtext p ul a[download] > svg use,
.mdl-tags .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-tags ul a[download] > svg use,
.mdl-richtext ul p .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ul a[download] > svg use,
.mdl-richtext .mdl-tags ul a[download] > svg use,
.mdl-richtext ul .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext p ul a[download] > svg use,
.mdl-tags .mdl-richtext ul p a[download] > svg use,
.mdl-richtext p .mdl-tags ul a[download] > svg use,
.mdl-richtext ul p .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ol ul a[download] > svg use,
.mdl-tags .mdl-richtext ul ol a[download] > svg use,
.mdl-richtext ol .mdl-tags ul a[download] > svg use,
.mdl-richtext ul ol .mdl-tags a[download] > svg use,
.mdl-tags .mdl-input-list__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-tags .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-tags a[download] > svg use,
.mdl-tags .mdl-dropdown__title .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-tags .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-tags a[download] > svg use,
.mdl-tags .mdl-filter__label .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-tags .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-tags a[download] > svg use,
.mdl-tags .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-promo-textteaser__description a[download] > svg use,
.mdl-tags .atm-link .mdl-richtext ol a[download] > svg use,
.mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a .mdl-richtext ol a[download] > svg use,
.mdl-tags .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-tags .atm-ghi-link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .atm-link a[download] > svg use,
.mdl-richtext ol .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-tags a a[download] > svg use,
.mdl-richtext ol .mdl-tags .context-ghi .atm-ghi-link a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-tags .atm-ghi-link a[download] > svg use,
.mdl-tags .atm-paragraph .mdl-richtext ol a[download] > svg use,
.mdl-tags .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg use,
.mdl-tags .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .atm-paragraph a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-plain-text-accordion__height-representation a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-plain-text-accordion__text a[download] > svg use,
.atm-paragraph .mdl-tags .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-tags .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-tags .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-tags a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-tags a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-tags a[download] > svg use,
.mdl-tags .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-iconlist__link a[download] > svg use,
.mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg use,
.mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-tags .mdl-iconlist__link a[download] > svg use,
.mdl-tags .mdl-richtext p ol a[download] > svg use,
.mdl-tags .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-tags ol a[download] > svg use,
.mdl-richtext ol p .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ol a[download] > svg use,
.mdl-richtext .mdl-tags ol a[download] > svg use,
.mdl-richtext ol .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext p ol a[download] > svg use,
.mdl-tags .mdl-richtext ol p a[download] > svg use,
.mdl-richtext p .mdl-tags ol a[download] > svg use,
.mdl-richtext ol p .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ul ol a[download] > svg use,
.mdl-tags .mdl-richtext ol ul a[download] > svg use,
.mdl-richtext ul .mdl-tags ol a[download] > svg use,
.mdl-richtext ol ul .mdl-tags a[download] > svg use,
.mdl-tags .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags a[download] > svg use,
.mdl-tags .mdl-input-list__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-input-list__label a[download] > svg use,
.mdl-input-list__label .mdl-tags .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-tags a[download] > svg use,
.mdl-tags .mdl-dropdown__title .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-dropdown__title a[download] > svg use,
.mdl-dropdown__title .mdl-tags .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-tags a[download] > svg use,
.mdl-tags .mdl-filter__label .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-filter__label a[download] > svg use,
.mdl-filter__label .mdl-tags .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-tags a[download] > svg use,
.mdl-tags .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-promo-textteaser__description a[download] > svg use {
    fill: #282625;
}
.mdl-tags .atm-link:before, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:before, .mdl-tags .context-ghi .atm-ghi-link:before, .context-ghi .mdl-tags .atm-ghi-link:before, .mdl-tags .atm-paragraph a:before, .mdl-tags .mdl-plain-text-accordion__height-representation a:before, .mdl-tags .mdl-plain-text-accordion__text a:before, .atm-paragraph .mdl-tags a:before, .mdl-plain-text-accordion__height-representation .mdl-tags a:before, .mdl-plain-text-accordion__text .mdl-tags a:before, .mdl-tags .mdl-iconlist__link:before, .mdl-tags .mdl-richtext a:before, .mdl-richtext .mdl-tags a:before, .mdl-tags .mdl-input-list__label a:before, .mdl-input-list__label .mdl-tags a:before, .mdl-tags .mdl-dropdown__title a:before, .mdl-dropdown__title .mdl-tags a:before, .mdl-tags .mdl-filter__label a:before, .mdl-filter__label .mdl-tags a:before, .mdl-tags .mdl-promo-textteaser__description:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 2px;
    background: #4B6A33;
}
.mdl-tags .atm-link:hover, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover, .mdl-tags .context-ghi .atm-ghi-link:hover, .context-ghi .mdl-tags .atm-ghi-link:hover, .mdl-tags .atm-paragraph a:hover, .mdl-tags .mdl-plain-text-accordion__height-representation a:hover, .mdl-tags .mdl-plain-text-accordion__text a:hover, .atm-paragraph .mdl-tags a:hover, .mdl-plain-text-accordion__height-representation .mdl-tags a:hover, .mdl-plain-text-accordion__text .mdl-tags a:hover, .mdl-tags .mdl-iconlist__link:hover, .mdl-tags .mdl-richtext a:hover, .mdl-richtext .mdl-tags a:hover, .mdl-tags .mdl-input-list__label a:hover, .mdl-input-list__label .mdl-tags a:hover, .mdl-tags .mdl-dropdown__title a:hover, .mdl-dropdown__title .mdl-tags a:hover, .mdl-tags .mdl-filter__label a:hover, .mdl-filter__label .mdl-tags a:hover, .mdl-tags .mdl-promo-textteaser__description:hover {
    color: #403F3F;
}
.mdl-tags .atm-link:hover .atm-icon use, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .atm-icon use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover .atm-icon use, .mdl-tags .context-ghi .atm-ghi-link:hover .atm-icon use, .context-ghi .mdl-tags .atm-ghi-link:hover .atm-icon use, .mdl-tags .atm-paragraph a:hover .atm-icon use, .mdl-tags .mdl-plain-text-accordion__height-representation a:hover .atm-icon use, .mdl-tags .mdl-plain-text-accordion__text a:hover .atm-icon use, .atm-paragraph .mdl-tags a:hover .atm-icon use, .mdl-plain-text-accordion__height-representation .mdl-tags a:hover .atm-icon use, .mdl-plain-text-accordion__text .mdl-tags a:hover .atm-icon use, .mdl-tags .mdl-iconlist__link:hover .atm-icon use, .mdl-tags .mdl-richtext a:hover .atm-icon use, .mdl-richtext .mdl-tags a:hover .atm-icon use,
.mdl-tags .mdl-richtext ul a[download]:hover .atm-icon use,
.mdl-richtext ul .mdl-tags a[download]:hover .atm-icon use,
.mdl-tags .mdl-richtext ol a[download]:hover .atm-icon use,
.mdl-richtext ol .mdl-tags a[download]:hover .atm-icon use, .mdl-tags .mdl-input-list__label a:hover .atm-icon use, .mdl-input-list__label .mdl-tags a:hover .atm-icon use, .mdl-tags .mdl-dropdown__title a:hover .atm-icon use, .mdl-dropdown__title .mdl-tags a:hover .atm-icon use, .mdl-tags .mdl-filter__label a:hover .atm-icon use, .mdl-filter__label .mdl-tags a:hover .atm-icon use, .mdl-tags .mdl-promo-textteaser__description:hover .atm-icon use, .mdl-tags .atm-link:hover .mdl-richtext a[download] > svg use, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover .mdl-richtext a[download] > svg use, .mdl-tags .context-ghi .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .context-ghi .mdl-tags .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .atm-link:hover a[download] > svg use, .mdl-richtext .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-tags a:hover a[download] > svg use, .mdl-richtext .mdl-tags .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext .mdl-tags .atm-ghi-link:hover a[download] > svg use, .mdl-tags .atm-paragraph a:hover .mdl-richtext a[download] > svg use, .mdl-tags .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext a[download] > svg use, .mdl-tags .mdl-plain-text-accordion__text a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .atm-paragraph a:hover a[download] > svg use, .mdl-richtext .mdl-tags .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-richtext .mdl-tags .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-tags a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-tags a:hover .mdl-richtext a[download] > svg use, .mdl-plain-text-accordion__text .mdl-tags a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .atm-paragraph .mdl-tags a:hover a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-tags a:hover a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__text .mdl-tags a:hover a[download] > svg use, .mdl-tags .mdl-iconlist__link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-iconlist__link:hover a[download] > svg use, .mdl-tags .mdl-richtext a:hover a[download] > svg use, .mdl-richtext .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-tags a[download]:hover a[download] > svg use,
.mdl-tags .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-tags a[download]:hover a[download] > svg use, .mdl-tags .mdl-input-list__label a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-tags a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-input-list__label .mdl-tags a:hover a[download] > svg use, .mdl-tags .mdl-dropdown__title a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-tags a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-dropdown__title .mdl-tags a:hover a[download] > svg use, .mdl-tags .mdl-filter__label a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-tags a:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-filter__label .mdl-tags a:hover a[download] > svg use, .mdl-tags .mdl-promo-textteaser__description:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-tags .mdl-promo-textteaser__description:hover a[download] > svg use, .mdl-tags .atm-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-tags .context-ghi .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .context-ghi .mdl-tags .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .atm-link:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-tags a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use, .context-ghi .mdl-richtext p .mdl-tags .atm-ghi-link:hover a.atm-link--external > svg use, .mdl-tags .atm-paragraph a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-tags .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-tags .mdl-plain-text-accordion__text a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .atm-paragraph a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use, .atm-paragraph .mdl-tags a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__height-representation .mdl-tags a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-plain-text-accordion__text .mdl-tags a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .atm-paragraph .mdl-tags a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-tags a:hover a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-tags a:hover a.atm-link--external > svg use, .mdl-tags .mdl-iconlist__link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-iconlist__link:hover a.atm-link--external > svg use, .mdl-tags .mdl-richtext a:hover p a.atm-link--external > svg use, .mdl-tags .mdl-richtext p a:hover a.atm-link--external > svg use, .mdl-richtext .mdl-tags a:hover p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul a[download]:hover p a.atm-link--external > svg use,
.mdl-tags .mdl-richtext p ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags a[download]:hover p a.atm-link--external > svg use,
.mdl-richtext p ul .mdl-tags a[download]:hover a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol a[download]:hover p a.atm-link--external > svg use,
.mdl-tags .mdl-richtext p ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags a[download]:hover p a.atm-link--external > svg use,
.mdl-richtext p ol .mdl-tags a[download]:hover a.atm-link--external > svg use, .mdl-tags .mdl-input-list__label a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-input-list__label a:hover a.atm-link--external > svg use, .mdl-input-list__label .mdl-tags a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-input-list__label .mdl-tags a:hover a.atm-link--external > svg use, .mdl-tags .mdl-dropdown__title a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-dropdown__title a:hover a.atm-link--external > svg use, .mdl-dropdown__title .mdl-tags a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-tags a:hover a.atm-link--external > svg use, .mdl-tags .mdl-filter__label a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-filter__label a:hover a.atm-link--external > svg use, .mdl-filter__label .mdl-tags a:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-filter__label .mdl-tags a:hover a.atm-link--external > svg use, .mdl-tags .mdl-promo-textteaser__description:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-tags .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-tags .atm-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-tags .context-ghi .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.context-ghi .mdl-tags .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ul .mdl-tags .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-tags .atm-paragraph a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-tags .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-tags .mdl-plain-text-accordion__text a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-tags a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-tags a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-tags a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .atm-paragraph .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-iconlist__link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-tags .mdl-richtext a:hover ul a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul a:hover a.atm-link--external > svg use,
.mdl-richtext .mdl-tags a:hover ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags a[download]:hover a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol a[download]:hover ul a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags a[download]:hover ul a.atm-link--external > svg use,
.mdl-richtext ul ol .mdl-tags a[download]:hover a.atm-link--external > svg use,
.mdl-tags .mdl-input-list__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-tags a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-dropdown__title a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-tags a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-filter__label a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-tags a:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-promo-textteaser__description:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags .mdl-promo-textteaser__description:hover a.atm-link--external > svg use,
.mdl-tags .atm-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-tags .context-ghi .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.context-ghi .mdl-tags .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .atm-link:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a.atm-link--external > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .mdl-richtext ol .mdl-tags .atm-ghi-link:hover a.atm-link--external > svg use,
.mdl-tags .atm-paragraph a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-tags .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-tags .mdl-plain-text-accordion__text a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .atm-paragraph a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-plain-text-accordion__height-representation a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-plain-text-accordion__text a:hover a.atm-link--external > svg use,
.atm-paragraph .mdl-tags a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__height-representation .mdl-tags a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-plain-text-accordion__text .mdl-tags a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .atm-paragraph .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-iconlist__link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-iconlist__link:hover a.atm-link--external > svg use,
.mdl-tags .mdl-richtext a:hover ol a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol a:hover a.atm-link--external > svg use,
.mdl-richtext .mdl-tags a:hover ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ul a[download]:hover ol a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol ul a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ul .mdl-tags a[download]:hover ol a.atm-link--external > svg use,
.mdl-richtext ol ul .mdl-tags a[download]:hover a.atm-link--external > svg use,
.mdl-tags .mdl-richtext ol a[download]:hover a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags a[download]:hover a.atm-link--external > svg use,
.mdl-tags .mdl-input-list__label a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-input-list__label a:hover a.atm-link--external > svg use,
.mdl-input-list__label .mdl-tags a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-dropdown__title a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-dropdown__title a:hover a.atm-link--external > svg use,
.mdl-dropdown__title .mdl-tags a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-filter__label a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-filter__label a:hover a.atm-link--external > svg use,
.mdl-filter__label .mdl-tags a:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-tags a:hover a.atm-link--external > svg use,
.mdl-tags .mdl-promo-textteaser__description:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-tags .mdl-promo-textteaser__description:hover a.atm-link--external > svg use, .mdl-tags .atm-link:hover .mdl-richtext p a[download] > svg use, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext p a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover .mdl-richtext p a[download] > svg use, .mdl-tags .context-ghi .atm-ghi-link:hover .mdl-richtext p a[download] > svg use, .context-ghi .mdl-tags .atm-ghi-link:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .atm-link:hover a[download] > svg use, .mdl-richtext p .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-tags a:hover a[download] > svg use, .mdl-richtext p .mdl-tags .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .mdl-richtext p .mdl-tags .atm-ghi-link:hover a[download] > svg use, .mdl-tags .atm-paragraph a:hover .mdl-richtext p a[download] > svg use, .mdl-tags .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext p a[download] > svg use, .mdl-tags .mdl-plain-text-accordion__text a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .atm-paragraph a:hover a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-plain-text-accordion__text a:hover a[download] > svg use, .atm-paragraph .mdl-tags a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__height-representation .mdl-tags a:hover .mdl-richtext p a[download] > svg use, .mdl-plain-text-accordion__text .mdl-tags a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .atm-paragraph .mdl-tags a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-tags a:hover a[download] > svg use, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-tags a:hover a[download] > svg use, .mdl-tags .mdl-iconlist__link:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-iconlist__link:hover a[download] > svg use, .mdl-tags .mdl-richtext a:hover p a[download] > svg use, .mdl-tags .mdl-richtext p a:hover a[download] > svg use, .mdl-richtext .mdl-tags a:hover p a[download] > svg use, .mdl-richtext p .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-richtext ul a[download]:hover p a[download] > svg use,
.mdl-tags .mdl-richtext p ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-tags a[download]:hover p a[download] > svg use,
.mdl-richtext p ul .mdl-tags a[download]:hover a[download] > svg use,
.mdl-tags .mdl-richtext ol a[download]:hover p a[download] > svg use,
.mdl-tags .mdl-richtext p ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-tags a[download]:hover p a[download] > svg use,
.mdl-richtext p ol .mdl-tags a[download]:hover a[download] > svg use, .mdl-tags .mdl-input-list__label a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-input-list__label a:hover a[download] > svg use, .mdl-input-list__label .mdl-tags a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-input-list__label .mdl-tags a:hover a[download] > svg use, .mdl-tags .mdl-dropdown__title a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-dropdown__title a:hover a[download] > svg use, .mdl-dropdown__title .mdl-tags a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-dropdown__title .mdl-tags a:hover a[download] > svg use, .mdl-tags .mdl-filter__label a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-filter__label a:hover a[download] > svg use, .mdl-filter__label .mdl-tags a:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-filter__label .mdl-tags a:hover a[download] > svg use, .mdl-tags .mdl-promo-textteaser__description:hover .mdl-richtext p a[download] > svg use, .mdl-richtext p .mdl-tags .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-tags .atm-link:hover .mdl-richtext ul a[download] > svg use,
.mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover .mdl-richtext ul a[download] > svg use,
.mdl-tags .context-ghi .atm-ghi-link:hover .mdl-richtext ul a[download] > svg use,
.context-ghi .mdl-tags .atm-ghi-link:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .atm-link:hover a[download] > svg use,
.mdl-richtext ul .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-tags a:hover a[download] > svg use,
.mdl-richtext ul .mdl-tags .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ul .mdl-tags .atm-ghi-link:hover a[download] > svg use,
.mdl-tags .atm-paragraph a:hover .mdl-richtext ul a[download] > svg use,
.mdl-tags .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ul a[download] > svg use,
.mdl-tags .mdl-plain-text-accordion__text a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-tags a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-tags a:hover .mdl-richtext ul a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-tags a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .atm-paragraph .mdl-tags a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-tags a:hover a[download] > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-iconlist__link:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-iconlist__link:hover a[download] > svg use,
.mdl-tags .mdl-richtext a:hover ul a[download] > svg use,
.mdl-tags .mdl-richtext ul a:hover a[download] > svg use,
.mdl-richtext .mdl-tags a:hover ul a[download] > svg use,
.mdl-richtext ul .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-richtext ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-tags a[download]:hover a[download] > svg use,
.mdl-tags .mdl-richtext ol a[download]:hover ul a[download] > svg use,
.mdl-tags .mdl-richtext ul ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-tags a[download]:hover ul a[download] > svg use,
.mdl-richtext ul ol .mdl-tags a[download]:hover a[download] > svg use,
.mdl-tags .mdl-input-list__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-tags a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-input-list__label .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-dropdown__title a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-tags a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-dropdown__title .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-filter__label a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-tags a:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-filter__label .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-promo-textteaser__description:hover .mdl-richtext ul a[download] > svg use,
.mdl-richtext ul .mdl-tags .mdl-promo-textteaser__description:hover a[download] > svg use,
.mdl-tags .atm-link:hover .mdl-richtext ol a[download] > svg use,
.mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover .mdl-richtext ol a[download] > svg use,
.mdl-tags .context-ghi .atm-ghi-link:hover .mdl-richtext ol a[download] > svg use,
.context-ghi .mdl-tags .atm-ghi-link:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .atm-link:hover a[download] > svg use,
.mdl-richtext ol .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover a[download] > svg use,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-tags a:hover a[download] > svg use,
.mdl-richtext ol .mdl-tags .context-ghi .atm-ghi-link:hover a[download] > svg use,
.context-ghi .mdl-richtext ol .mdl-tags .atm-ghi-link:hover a[download] > svg use,
.mdl-tags .atm-paragraph a:hover .mdl-richtext ol a[download] > svg use,
.mdl-tags .mdl-plain-text-accordion__height-representation a:hover .mdl-richtext ol a[download] > svg use,
.mdl-tags .mdl-plain-text-accordion__text a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .atm-paragraph a:hover a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-plain-text-accordion__height-representation a:hover a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-plain-text-accordion__text a:hover a[download] > svg use,
.atm-paragraph .mdl-tags a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__height-representation .mdl-tags a:hover .mdl-richtext ol a[download] > svg use,
.mdl-plain-text-accordion__text .mdl-tags a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .atm-paragraph .mdl-tags a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-tags a:hover a[download] > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-iconlist__link:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-iconlist__link:hover a[download] > svg use,
.mdl-tags .mdl-richtext a:hover ol a[download] > svg use,
.mdl-tags .mdl-richtext ol a:hover a[download] > svg use,
.mdl-richtext .mdl-tags a:hover ol a[download] > svg use,
.mdl-richtext ol .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-richtext ul a[download]:hover ol a[download] > svg use,
.mdl-tags .mdl-richtext ol ul a[download]:hover a[download] > svg use,
.mdl-richtext ul .mdl-tags a[download]:hover ol a[download] > svg use,
.mdl-richtext ol ul .mdl-tags a[download]:hover a[download] > svg use,
.mdl-tags .mdl-richtext ol a[download]:hover a[download] > svg use,
.mdl-richtext ol .mdl-tags a[download]:hover a[download] > svg use,
.mdl-tags .mdl-input-list__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-input-list__label a:hover a[download] > svg use,
.mdl-input-list__label .mdl-tags a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-input-list__label .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-dropdown__title a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-dropdown__title a:hover a[download] > svg use,
.mdl-dropdown__title .mdl-tags a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-dropdown__title .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-filter__label a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-filter__label a:hover a[download] > svg use,
.mdl-filter__label .mdl-tags a:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-filter__label .mdl-tags a:hover a[download] > svg use,
.mdl-tags .mdl-promo-textteaser__description:hover .mdl-richtext ol a[download] > svg use,
.mdl-richtext ol .mdl-tags .mdl-promo-textteaser__description:hover a[download] > svg use {
    fill: #403F3F;
}
.mdl-tags .atm-link:hover:before, .mdl-tags .context-ghi .mdl-ghi_pdf_download_form-intro a:hover:before, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tags a:hover:before, .mdl-tags .context-ghi .atm-ghi-link:hover:before, .context-ghi .mdl-tags .atm-ghi-link:hover:before, .mdl-tags .atm-paragraph a:hover:before, .mdl-tags .mdl-plain-text-accordion__height-representation a:hover:before, .mdl-tags .mdl-plain-text-accordion__text a:hover:before, .atm-paragraph .mdl-tags a:hover:before, .mdl-plain-text-accordion__height-representation .mdl-tags a:hover:before, .mdl-plain-text-accordion__text .mdl-tags a:hover:before, .mdl-tags .mdl-iconlist__link:hover:before, .mdl-tags .mdl-richtext a:hover:before, .mdl-richtext .mdl-tags a:hover:before, .mdl-tags .mdl-input-list__label a:hover:before, .mdl-input-list__label .mdl-tags a:hover:before, .mdl-tags .mdl-dropdown__title a:hover:before, .mdl-dropdown__title .mdl-tags a:hover:before, .mdl-tags .mdl-filter__label a:hover:before, .mdl-filter__label .mdl-tags a:hover:before, .mdl-tags .mdl-promo-textteaser__description:hover:before {
    background: #6F8D59;
}

.mdl-layout-container__col-25 .mdl-tags,
.mdl-layout-container__col-50 .mdl-tags,
.mdl-layout-container__col-75 .mdl-tags {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.mdl-tools-list {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-tools-list {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tools-list {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tools-list {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 29.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tools-list {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-tools-list {
        margin-left: 34.6607669617%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-tools-list {
        margin-left: 35.1851851852%;
    }
}
@media all and (min-width: 100em) {
    .mdl-tools-list {
        margin-left: 34.6607669617%;
    }
}
.mdl-tools-list__content-box-header {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    margin: 0;
}
.mdl-tools-list__content-box-header:before, .mdl-tools-list__content-box-header:after {
    content: "";
    display: inline-block;
    height: 1px;
    background: #403F3F;
    flex-basis: 1em;
    flex-grow: 1;
}
.mdl-tools-list__content-box-header:before {
    margin-right: 1.1111111111rem;
}
.mdl-tools-list__content-box-header:after {
    margin-left: 1.1111111111rem;
}
@media all and (min-width: 64em) {
    .mdl-tools-list__content-box-header:before {
        margin-right: 2.7222222222rem;
    }
    .mdl-tools-list__content-box-header:after {
        margin-left: 2.7222222222rem;
    }
}
.mdl-tools-list__link-list .atm-link .atm-icon, .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a .atm-icon, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tools-list__link-list a .atm-icon, .mdl-tools-list__link-list .context-ghi .atm-ghi-link .atm-icon, .context-ghi .mdl-tools-list__link-list .atm-ghi-link .atm-icon, .mdl-tools-list__link-list .atm-paragraph a .atm-icon, .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation a .atm-icon, .mdl-tools-list__link-list .mdl-plain-text-accordion__text a .atm-icon, .atm-paragraph .mdl-tools-list__link-list a .atm-icon, .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list a .atm-icon, .mdl-plain-text-accordion__text .mdl-tools-list__link-list a .atm-icon, .mdl-tools-list__link-list .mdl-iconlist__link .atm-icon, .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon, .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link .atm-icon, .mdl-tools-list__link-list .mdl-richtext p a .atm-icon, .mdl-richtext p .mdl-tools-list__link-list a .atm-icon, .mdl-tools-list__link-list .mdl-richtext a .atm-icon, .mdl-richtext .mdl-tools-list__link-list a .atm-icon, .mdl-tools-list__link-list .mdl-richtext p a[download] .atm-icon, .mdl-richtext p .mdl-tools-list__link-list a[download] .atm-icon,
.mdl-tools-list__link-list .mdl-richtext ul a[download] .atm-icon,
.mdl-richtext ul .mdl-tools-list__link-list a[download] .atm-icon,
.mdl-tools-list__link-list .mdl-richtext ol a[download] .atm-icon,
.mdl-richtext ol .mdl-tools-list__link-list a[download] .atm-icon, .mdl-tools-list__link-list .mdl-input-list__label a .atm-icon, .mdl-input-list__label .mdl-tools-list__link-list a .atm-icon, .mdl-tools-list__link-list .mdl-dropdown__title a .atm-icon, .mdl-dropdown__title .mdl-tools-list__link-list a .atm-icon, .mdl-tools-list__link-list .mdl-filter__label a .atm-icon, .mdl-filter__label .mdl-tools-list__link-list a .atm-icon, .mdl-tools-list__link-list .mdl-promo-textteaser__description .atm-icon, .mdl-tools-list__link-list .atm-link .mdl-richtext a[download] > svg, .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tools-list__link-list a .mdl-richtext a[download] > svg, .mdl-tools-list__link-list .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg, .context-ghi .mdl-tools-list__link-list .atm-ghi-link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .atm-link a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext .mdl-tools-list__link-list a a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .context-ghi .atm-ghi-link a[download] > svg, .context-ghi .mdl-richtext .mdl-tools-list__link-list .atm-ghi-link a[download] > svg, .mdl-tools-list__link-list .atm-paragraph .mdl-richtext a[download] > svg, .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg, .mdl-tools-list__link-list .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .atm-paragraph a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .mdl-plain-text-accordion__text a[download] > svg, .atm-paragraph .mdl-tools-list__link-list .mdl-richtext a[download] > svg, .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list .mdl-richtext a[download] > svg, .mdl-plain-text-accordion__text .mdl-tools-list__link-list .mdl-richtext a[download] > svg, .mdl-richtext .atm-paragraph .mdl-tools-list__link-list a[download] > svg, .mdl-richtext .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list a[download] > svg, .mdl-richtext .mdl-plain-text-accordion__text .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .mdl-iconlist__link a[download] > svg, .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg, .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext a[download] > svg, .mdl-richtext .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link a[download] > svg, .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-input-list__label .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .mdl-input-list__label a[download] > svg, .mdl-input-list__label .mdl-tools-list__link-list .mdl-richtext a[download] > svg, .mdl-richtext .mdl-input-list__label .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-dropdown__title .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .mdl-dropdown__title a[download] > svg, .mdl-dropdown__title .mdl-tools-list__link-list .mdl-richtext a[download] > svg, .mdl-richtext .mdl-dropdown__title .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-filter__label .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .mdl-filter__label a[download] > svg, .mdl-filter__label .mdl-tools-list__link-list .mdl-richtext a[download] > svg, .mdl-richtext .mdl-filter__label .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-promo-textteaser__description .mdl-richtext a[download] > svg, .mdl-richtext .mdl-tools-list__link-list .mdl-promo-textteaser__description a[download] > svg, .mdl-tools-list__link-list .atm-link .mdl-richtext p a.atm-link--external > svg, .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tools-list__link-list a .mdl-richtext p a.atm-link--external > svg, .mdl-tools-list__link-list .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg, .context-ghi .mdl-tools-list__link-list .atm-ghi-link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .atm-link a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-tools-list__link-list a a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .context-ghi .atm-ghi-link a.atm-link--external > svg, .context-ghi .mdl-richtext p .mdl-tools-list__link-list .atm-ghi-link a.atm-link--external > svg, .mdl-tools-list__link-list .atm-paragraph .mdl-richtext p a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .atm-paragraph a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-plain-text-accordion__text a.atm-link--external > svg, .atm-paragraph .mdl-tools-list__link-list .mdl-richtext p a.atm-link--external > svg, .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list .mdl-richtext p a.atm-link--external > svg, .mdl-plain-text-accordion__text .mdl-tools-list__link-list .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .atm-paragraph .mdl-tools-list__link-list a.atm-link--external > svg, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list a.atm-link--external > svg, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-tools-list__link-list a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-iconlist__link a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg, .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-richtext p a.atm-link--external > svg, .mdl-richtext .mdl-tools-list__link-list p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-richtext p a[download] a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list a[download] a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ul a[download] p a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext p ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list a[download] p a.atm-link--external > svg,
.mdl-richtext p ul .mdl-tools-list__link-list a[download] a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ol a[download] p a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext p ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list a[download] p a.atm-link--external > svg,
.mdl-richtext p ol .mdl-tools-list__link-list a[download] a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-input-list__label a.atm-link--external > svg, .mdl-input-list__label .mdl-tools-list__link-list .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-input-list__label .mdl-tools-list__link-list a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-dropdown__title a.atm-link--external > svg, .mdl-dropdown__title .mdl-tools-list__link-list .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-dropdown__title .mdl-tools-list__link-list a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-filter__label .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-filter__label a.atm-link--external > svg, .mdl-filter__label .mdl-tools-list__link-list .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-filter__label .mdl-tools-list__link-list a.atm-link--external > svg, .mdl-tools-list__link-list .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-promo-textteaser__description a.atm-link--external > svg,
.mdl-tools-list__link-list .atm-link .mdl-richtext ul a.atm-link--external > svg,
.mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tools-list__link-list a .mdl-richtext ul a.atm-link--external > svg,
.mdl-tools-list__link-list .context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg,
.context-ghi .mdl-tools-list__link-list .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .atm-link a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-tools-list__link-list a a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .context-ghi .atm-ghi-link a.atm-link--external > svg,
.context-ghi .mdl-richtext ul .mdl-tools-list__link-list .atm-ghi-link a.atm-link--external > svg,
.mdl-tools-list__link-list .atm-paragraph .mdl-richtext ul a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .atm-paragraph a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-plain-text-accordion__text a.atm-link--external > svg,
.atm-paragraph .mdl-tools-list__link-list .mdl-richtext ul a.atm-link--external > svg,
.mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list .mdl-richtext ul a.atm-link--external > svg,
.mdl-plain-text-accordion__text .mdl-tools-list__link-list .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .atm-paragraph .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-iconlist__link a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg,
.mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext p ul a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ul p a.atm-link--external > svg,
.mdl-richtext p .mdl-tools-list__link-list ul a.atm-link--external > svg,
.mdl-richtext ul p .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext .mdl-tools-list__link-list ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext p a[download] ul a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ul p a[download] a.atm-link--external > svg,
.mdl-richtext p .mdl-tools-list__link-list a[download] ul a.atm-link--external > svg,
.mdl-richtext ul p .mdl-tools-list__link-list a[download] a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list a[download] a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ol a[download] ul a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ul ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list a[download] ul a.atm-link--external > svg,
.mdl-richtext ul ol .mdl-tools-list__link-list a[download] a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-input-list__label a.atm-link--external > svg,
.mdl-input-list__label .mdl-tools-list__link-list .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-input-list__label .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-dropdown__title a.atm-link--external > svg,
.mdl-dropdown__title .mdl-tools-list__link-list .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-dropdown__title .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-filter__label a.atm-link--external > svg,
.mdl-filter__label .mdl-tools-list__link-list .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-filter__label .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-promo-textteaser__description a.atm-link--external > svg,
.mdl-tools-list__link-list .atm-link .mdl-richtext ol a.atm-link--external > svg,
.mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tools-list__link-list a .mdl-richtext ol a.atm-link--external > svg,
.mdl-tools-list__link-list .context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg,
.context-ghi .mdl-tools-list__link-list .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .atm-link a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-tools-list__link-list a a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .context-ghi .atm-ghi-link a.atm-link--external > svg,
.context-ghi .mdl-richtext ol .mdl-tools-list__link-list .atm-ghi-link a.atm-link--external > svg,
.mdl-tools-list__link-list .atm-paragraph .mdl-richtext ol a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .atm-paragraph a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-plain-text-accordion__text a.atm-link--external > svg,
.atm-paragraph .mdl-tools-list__link-list .mdl-richtext ol a.atm-link--external > svg,
.mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list .mdl-richtext ol a.atm-link--external > svg,
.mdl-plain-text-accordion__text .mdl-tools-list__link-list .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .atm-paragraph .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-iconlist__link a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg,
.mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext p ol a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ol p a.atm-link--external > svg,
.mdl-richtext p .mdl-tools-list__link-list ol a.atm-link--external > svg,
.mdl-richtext ol p .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext .mdl-tools-list__link-list ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext p a[download] ol a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ol p a[download] a.atm-link--external > svg,
.mdl-richtext p .mdl-tools-list__link-list a[download] ol a.atm-link--external > svg,
.mdl-richtext ol p .mdl-tools-list__link-list a[download] a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ul a[download] ol a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ol ul a[download] a.atm-link--external > svg,
.mdl-richtext ul .mdl-tools-list__link-list a[download] ol a.atm-link--external > svg,
.mdl-richtext ol ul .mdl-tools-list__link-list a[download] a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-richtext ol a[download] a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list a[download] a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-input-list__label a.atm-link--external > svg,
.mdl-input-list__label .mdl-tools-list__link-list .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-input-list__label .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-dropdown__title a.atm-link--external > svg,
.mdl-dropdown__title .mdl-tools-list__link-list .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-dropdown__title .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-filter__label a.atm-link--external > svg,
.mdl-filter__label .mdl-tools-list__link-list .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-filter__label .mdl-tools-list__link-list a.atm-link--external > svg,
.mdl-tools-list__link-list .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-promo-textteaser__description a.atm-link--external > svg, .mdl-tools-list__link-list .atm-link .mdl-richtext p a[download] > svg, .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tools-list__link-list a .mdl-richtext p a[download] > svg, .mdl-tools-list__link-list .context-ghi .atm-ghi-link .mdl-richtext p a[download] > svg, .context-ghi .mdl-tools-list__link-list .atm-ghi-link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .atm-link a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext p .mdl-tools-list__link-list a a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .context-ghi .atm-ghi-link a[download] > svg, .context-ghi .mdl-richtext p .mdl-tools-list__link-list .atm-ghi-link a[download] > svg, .mdl-tools-list__link-list .atm-paragraph .mdl-richtext p a[download] > svg, .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation .mdl-richtext p a[download] > svg, .mdl-tools-list__link-list .mdl-plain-text-accordion__text .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .atm-paragraph a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-plain-text-accordion__text a[download] > svg, .atm-paragraph .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-plain-text-accordion__text .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-richtext p .atm-paragraph .mdl-tools-list__link-list a[download] > svg, .mdl-richtext p .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list a[download] > svg, .mdl-richtext p .mdl-plain-text-accordion__text .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-iconlist__link a[download] > svg, .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg, .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link a[download] > svg, .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-richtext .mdl-tools-list__link-list p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ul p a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext p ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list p a[download] > svg,
.mdl-richtext p ul .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ol p a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext p ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list p a[download] > svg,
.mdl-richtext p ol .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-input-list__label .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-input-list__label a[download] > svg, .mdl-input-list__label .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-input-list__label .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-dropdown__title .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-dropdown__title a[download] > svg, .mdl-dropdown__title .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-dropdown__title .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-filter__label .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-filter__label a[download] > svg, .mdl-filter__label .mdl-tools-list__link-list .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-filter__label .mdl-tools-list__link-list a[download] > svg, .mdl-tools-list__link-list .mdl-promo-textteaser__description .mdl-richtext p a[download] > svg, .mdl-richtext p .mdl-tools-list__link-list .mdl-promo-textteaser__description a[download] > svg,
.mdl-tools-list__link-list .atm-link .mdl-richtext ul a[download] > svg,
.mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tools-list__link-list a .mdl-richtext ul a[download] > svg,
.mdl-tools-list__link-list .context-ghi .atm-ghi-link .mdl-richtext ul a[download] > svg,
.context-ghi .mdl-tools-list__link-list .atm-ghi-link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .atm-link a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ul .mdl-tools-list__link-list a a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .context-ghi .atm-ghi-link a[download] > svg,
.context-ghi .mdl-richtext ul .mdl-tools-list__link-list .atm-ghi-link a[download] > svg,
.mdl-tools-list__link-list .atm-paragraph .mdl-richtext ul a[download] > svg,
.mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation .mdl-richtext ul a[download] > svg,
.mdl-tools-list__link-list .mdl-plain-text-accordion__text .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .atm-paragraph a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-plain-text-accordion__text a[download] > svg,
.atm-paragraph .mdl-tools-list__link-list .mdl-richtext ul a[download] > svg,
.mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list .mdl-richtext ul a[download] > svg,
.mdl-plain-text-accordion__text .mdl-tools-list__link-list .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .atm-paragraph .mdl-tools-list__link-list a[download] > svg,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list a[download] > svg,
.mdl-richtext ul .mdl-plain-text-accordion__text .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-iconlist__link a[download] > svg,
.mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg,
.mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext p ul a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ul p a[download] > svg,
.mdl-richtext p .mdl-tools-list__link-list ul a[download] > svg,
.mdl-richtext ul p .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ul a[download] > svg,
.mdl-richtext .mdl-tools-list__link-list ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext p ul a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ul p a[download] > svg,
.mdl-richtext p .mdl-tools-list__link-list ul a[download] > svg,
.mdl-richtext ul p .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ol ul a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ul ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list ul a[download] > svg,
.mdl-richtext ul ol .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-input-list__label .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-input-list__label a[download] > svg,
.mdl-input-list__label .mdl-tools-list__link-list .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-input-list__label .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-dropdown__title .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-dropdown__title a[download] > svg,
.mdl-dropdown__title .mdl-tools-list__link-list .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-dropdown__title .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-filter__label .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-filter__label a[download] > svg,
.mdl-filter__label .mdl-tools-list__link-list .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-filter__label .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-promo-textteaser__description .mdl-richtext ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list .mdl-promo-textteaser__description a[download] > svg,
.mdl-tools-list__link-list .atm-link .mdl-richtext ol a[download] > svg,
.mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tools-list__link-list a .mdl-richtext ol a[download] > svg,
.mdl-tools-list__link-list .context-ghi .atm-ghi-link .mdl-richtext ol a[download] > svg,
.context-ghi .mdl-tools-list__link-list .atm-ghi-link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .atm-link a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .context-ghi .mdl-ghi_pdf_download_form-intro a a[download] > svg,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-richtext ol .mdl-tools-list__link-list a a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .context-ghi .atm-ghi-link a[download] > svg,
.context-ghi .mdl-richtext ol .mdl-tools-list__link-list .atm-ghi-link a[download] > svg,
.mdl-tools-list__link-list .atm-paragraph .mdl-richtext ol a[download] > svg,
.mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation .mdl-richtext ol a[download] > svg,
.mdl-tools-list__link-list .mdl-plain-text-accordion__text .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .atm-paragraph a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-plain-text-accordion__height-representation a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-plain-text-accordion__text a[download] > svg,
.atm-paragraph .mdl-tools-list__link-list .mdl-richtext ol a[download] > svg,
.mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list .mdl-richtext ol a[download] > svg,
.mdl-plain-text-accordion__text .mdl-tools-list__link-list .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .atm-paragraph .mdl-tools-list__link-list a[download] > svg,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .mdl-tools-list__link-list a[download] > svg,
.mdl-richtext ol .mdl-plain-text-accordion__text .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-iconlist__link a[download] > svg,
.mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg,
.mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-iconlist--horizontal .mdl-tools-list__link-list .mdl-iconlist__link a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext p ol a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ol p a[download] > svg,
.mdl-richtext p .mdl-tools-list__link-list ol a[download] > svg,
.mdl-richtext ol p .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ol a[download] > svg,
.mdl-richtext .mdl-tools-list__link-list ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext p ol a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ol p a[download] > svg,
.mdl-richtext p .mdl-tools-list__link-list ol a[download] > svg,
.mdl-richtext ol p .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ul ol a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ol ul a[download] > svg,
.mdl-richtext ul .mdl-tools-list__link-list ol a[download] > svg,
.mdl-richtext ol ul .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-input-list__label .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-input-list__label a[download] > svg,
.mdl-input-list__label .mdl-tools-list__link-list .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-input-list__label .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-dropdown__title .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-dropdown__title a[download] > svg,
.mdl-dropdown__title .mdl-tools-list__link-list .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-dropdown__title .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-filter__label .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-filter__label a[download] > svg,
.mdl-filter__label .mdl-tools-list__link-list .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-filter__label .mdl-tools-list__link-list a[download] > svg,
.mdl-tools-list__link-list .mdl-promo-textteaser__description .mdl-richtext ol a[download] > svg,
.mdl-richtext ol .mdl-tools-list__link-list .mdl-promo-textteaser__description a[download] > svg {
    display: none;
}
.mdl-tools-list__content-box-header {
    margin-bottom: 1rem;
}
.mdl-tools-list .atm-link, .mdl-tools-list .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tools-list a, .mdl-tools-list .context-ghi .atm-ghi-link, .context-ghi .mdl-tools-list .atm-ghi-link, .mdl-tools-list .atm-paragraph a, .mdl-tools-list .mdl-plain-text-accordion__height-representation a, .mdl-tools-list .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-tools-list a, .mdl-plain-text-accordion__height-representation .mdl-tools-list a, .mdl-plain-text-accordion__text .mdl-tools-list a, .mdl-tools-list .mdl-iconlist__link, .mdl-tools-list .mdl-richtext a, .mdl-richtext .mdl-tools-list a,
.mdl-tools-list .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-tools-list a[download],
.mdl-tools-list .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-tools-list a[download], .mdl-tools-list .mdl-input-list__label a, .mdl-input-list__label .mdl-tools-list a, .mdl-tools-list .mdl-dropdown__title a, .mdl-dropdown__title .mdl-tools-list a, .mdl-tools-list .mdl-filter__label a, .mdl-filter__label .mdl-tools-list a, .mdl-tools-list .mdl-promo-textteaser__description {
    font-size: 1rem;
}

.mdl-layout-container__col-25 .mdl-tools-list,
.mdl-layout-container__col-50 .mdl-tools-list,
.mdl-layout-container__col-75 .mdl-tools-list {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.mdl-interactive-image {
    display: flex;
    flex-basis: 100%;
}
.mdl-interactive-image__content {
    display: flex;
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-interactive-image__content {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-interactive-image__content {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-interactive-image__content {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-interactive-image__content {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
.mdl-interactive-image .atm-image {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
}

.mdl-locked_input {
    display: flex;
    flex-direction: row;
}
.mdl-locked_input--wide {
    width: 100%;
}
@media all and (min-width: 48em) {
    .mdl-locked_input--wide {
        width: 78%;
    }
}
@media all and (min-width: 64em) {
    .mdl-locked_input--wide {
        width: 100%;
    }
}
@media all and (min-width: 100em) {
    .mdl-locked_input--wide {
        width: 74.358974359%;
    }
}
.mdl-locked_input--medium {
    width: 100%;
}
@media all and (min-width: 48em) {
    .mdl-locked_input--medium {
        width: 78%;
    }
}
@media all and (min-width: 64em) {
    .mdl-locked_input--medium {
        width: 74.358974359%;
    }
}
@media all and (min-width: 100em) {
    .mdl-locked_input--medium {
        width: 47.5%;
    }
}
.mdl-locked_input--narrow {
    width: 65.5172413793%;
}
@media all and (min-width: 48em) {
    .mdl-locked_input--narrow {
        width: 58%;
    }
}
@media all and (min-width: 64em) {
    .mdl-locked_input--narrow {
        width: 48.7179487179%;
    }
}
@media all and (min-width: 100em) {
    .mdl-locked_input--narrow {
        width: 35.8974358974%;
    }
}
.mdl-locked_input--small {
    width: 65.5172413793%;
}
@media all and (min-width: 48em) {
    .mdl-locked_input--small {
        width: 28.5714285714%;
    }
}
@media all and (min-width: 64em) {
    .mdl-locked_input--small {
        width: 35.8974358974%;
    }
}
@media all and (min-width: 100em) {
    .mdl-locked_input--small {
        width: 20.2898550725%;
    }
}
.mdl-locked_input-element {
    width: calc(100% - 3.3333333333rem);
}
.mdl-locked_input-element--locked .atm-form_input-container input {
    color: #767675;
}
.mdl-locked_input-element--hidden {
    display: none;
}
.mdl-locked_input-button {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: flex;
    width: 3.3333333333rem;
}
.mdl-locked_input-button:focus {
    outline: none;
}
.mdl-locked_input-button .atm-icon, .mdl-locked_input-button .mdl-richtext a[download] > svg, .mdl-richtext .mdl-locked_input-button a[download] > svg, .mdl-locked_input-button .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-locked_input-button a.atm-link--external > svg,
.mdl-locked_input-button .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-locked_input-button a.atm-link--external > svg,
.mdl-locked_input-button .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-locked_input-button a.atm-link--external > svg {
    margin: 1rem auto;
}
.mdl-locked_input-button .atm-icon use, .mdl-locked_input-button .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-locked_input-button a[download] > svg use, .mdl-locked_input-button .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-locked_input-button a.atm-link--external > svg use,
.mdl-locked_input-button .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-locked_input-button a.atm-link--external > svg use,
.mdl-locked_input-button .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-locked_input-button a.atm-link--external > svg use {
    fill: #A61711;
}
.mdl-locked_input-button:disabled .atm-icon use, .mdl-locked_input-button:disabled .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-locked_input-button:disabled a[download] > svg use, .mdl-locked_input-button:disabled .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-locked_input-button:disabled a.atm-link--external > svg use,
.mdl-locked_input-button:disabled .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-locked_input-button:disabled a.atm-link--external > svg use,
.mdl-locked_input-button:disabled .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-locked_input-button:disabled a.atm-link--external > svg use {
    fill: #9D9F9D;
}

.mdl-carousel {
    min-width: 100vw;
    position: relative;
    margin-left: 50%;
    left: -50vw;
    display: flex;
    flex-direction: column;
    padding: 2.1666666667rem 0;
    margin-bottom: 1rem;
}
.is-ie .mdl-carousel {
    max-width: calc(100vw - calc(17 * 1px));
    margin-left: calc(50% + (calc(8.5 * 1px)));
}
.mdl-carousel .atm-link, .mdl-carousel .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-carousel a, .mdl-carousel .context-ghi .atm-ghi-link, .context-ghi .mdl-carousel .atm-ghi-link, .mdl-carousel .atm-paragraph a, .mdl-carousel .mdl-plain-text-accordion__height-representation a, .mdl-carousel .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-carousel a, .mdl-plain-text-accordion__height-representation .mdl-carousel a, .mdl-plain-text-accordion__text .mdl-carousel a, .mdl-carousel .mdl-iconlist__link, .mdl-carousel .mdl-richtext a, .mdl-richtext .mdl-carousel a,
.mdl-carousel .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-carousel a[download],
.mdl-carousel .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-carousel a[download], .mdl-carousel .mdl-input-list__label a, .mdl-input-list__label .mdl-carousel a, .mdl-carousel .mdl-dropdown__title a, .mdl-dropdown__title .mdl-carousel a, .mdl-carousel .mdl-filter__label a, .mdl-filter__label .mdl-carousel a, .mdl-carousel .mdl-promo-textteaser__description {
    justify-content: center;
    width: 100%;
}
.mdl-carousel__content-row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-carousel__content-row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__content-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__content-row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__content-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.mdl-carousel h2.atm-heading, .mdl-carousel .context-ghi h2.mdl-offer_card__lead, .context-ghi .mdl-carousel h2.mdl-offer_card__lead, .mdl-carousel .mdl-richtext h2, .mdl-richtext .mdl-carousel h2, .mdl-carousel h2.mdl-sub-navigation__title {
    margin-bottom: 2.1666666667rem;
}
.mdl-carousel__stage {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-carousel__stage {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__stage {
        flex-basis: 80.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 80.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__stage {
        flex-basis: 79.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 79.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__stage {
        flex-basis: 80.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 80.6784660767%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__stage {
        margin-left: 9.6607669617%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__stage {
        margin-left: 10.1851851852%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__stage {
        margin-left: 9.6607669617%;
    }
}
.mdl-carousel__stage-row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-carousel__stage-row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__stage-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__stage-row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__stage-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.mdl-carousel__stage-slider {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-carousel__stage-slider {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__stage-slider {
        flex-basis: 76.7971530249%;
        margin-left: 1.6014234875%;
        margin-right: 1.6014234875%;
        max-width: 76.7971530249%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__stage-slider {
        flex-basis: 75.5223880597%;
        margin-left: 2.2388059701%;
        margin-right: 2.2388059701%;
        max-width: 75.5223880597%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__stage-slider {
        flex-basis: 76.7971530249%;
        margin-left: 1.6014234875%;
        margin-right: 1.6014234875%;
        max-width: 76.7971530249%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__stage-slider {
        margin-left: 11.6014234875%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__stage-slider {
        margin-left: 12.2388059701%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__stage-slider {
        margin-left: 11.6014234875%;
    }
}
.mdl-carousel__stage-track {
    z-index: 1;
    order: 1;
}
.mdl-carousel__stage-list {
    will-change: unset !important;
    max-width: 100%;
    width: 100%;
}
.mdl-carousel__stage-list .splide__slide:not(.is-active) {
    height: 0;
}
.mdl-carousel__slide-content {
    position: relative;
    padding-top: calc(100% * 0.5625 + 1.6666666667rem);
}
.mdl-carousel__slide-content .atm-image,
.mdl-carousel__slide-content .atm-video {
    min-height: 56.25%;
    margin-bottom: 1.6666666667rem;
    object-fit: cover;
}
.mdl-carousel__slide-content .mdl-video {
    margin-bottom: 1.6666666667rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-carousel__slide-content .atm-image,
    .mdl-carousel__slide-content .mdl-video > lite-youtube {
        height: 11.1111111111rem;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__slide-content .atm-image,
    .mdl-carousel__slide-content .mdl-video > lite-youtube {
        height: 14.4444444444rem;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__slide-content .atm-image,
    .mdl-carousel__slide-content .mdl-video > lite-youtube {
        height: 26.6666666667rem;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__slide-content .atm-image,
    .mdl-carousel__slide-content .mdl-video > lite-youtube {
        height: 29.8333333333rem;
    }
}
.mdl-carousel__slide-content .atm-image {
    position: absolute;
    top: 0;
    left: 0;
}
.mdl-carousel__slide-content--video {
    padding-top: 0;
}
.mdl-carousel__slide-content--loaded {
    padding-top: 0;
}
.mdl-carousel__slide-content--loaded .atm-image {
    position: relative;
    top: initial;
    left: initial;
}
.mdl-carousel__arrows {
    display: none;
    order: 2;
}
@media all and (min-width: 48em) {
    .mdl-carousel__arrows {
        min-width: 100vw;
        position: relative;
        margin-left: 50%;
        left: -50vw;
        display: flex;
    }
    .is-ie .mdl-carousel__arrows {
        max-width: calc(100vw - calc(17 * 1px));
        margin-left: calc(50% + (calc(8.5 * 1px)));
    }
}
.mdl-carousel__arrows-row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-carousel__arrows-row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__arrows-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__arrows-row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__arrows-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.mdl-carousel__arrows-cell {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: flex;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-carousel__arrows-cell {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__arrows-cell {
        flex-basis: 80.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 80.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__arrows-cell {
        flex-basis: 79.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 79.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__arrows-cell {
        flex-basis: 80.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 80.6784660767%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__arrows-cell {
        margin-left: 9.6607669617%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__arrows-cell {
        margin-left: 10.1851851852%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__arrows-cell {
        margin-left: 9.6607669617%;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-carousel__arrows-cell {
        flex-basis: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
        max-width: 95%;
    }
}
.mdl-carousel__arrow {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}
.mdl-carousel__arrow:focus {
    outline: none;
}
.mdl-carousel__arrow .atm-icon, .mdl-carousel__arrow .mdl-richtext a[download] > svg, .mdl-richtext .mdl-carousel__arrow a[download] > svg, .mdl-carousel__arrow .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-carousel__arrow a.atm-link--external > svg,
.mdl-carousel__arrow .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-carousel__arrow a.atm-link--external > svg,
.mdl-carousel__arrow .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-carousel__arrow a.atm-link--external > svg {
    margin-left: 1rem;
}
.mdl-carousel__arrow .atm-icon use, .mdl-carousel__arrow .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-carousel__arrow a[download] > svg use, .mdl-carousel__arrow .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-carousel__arrow a.atm-link--external > svg use,
.mdl-carousel__arrow .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-carousel__arrow a.atm-link--external > svg use,
.mdl-carousel__arrow .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-carousel__arrow a.atm-link--external > svg use {
    fill: var(--primary-color);
}
.mdl-carousel__arrow-text {
    color: var(--primary-color);
}
.mdl-carousel__arrow:disabled {
    display: none;
}
.mdl-carousel__arrow-prev {
    margin-right: auto;
}
.mdl-carousel__arrow-prev .atm-icon, .mdl-carousel__arrow-prev .mdl-richtext a[download] > svg, .mdl-richtext .mdl-carousel__arrow-prev a[download] > svg, .mdl-carousel__arrow-prev .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-carousel__arrow-prev a.atm-link--external > svg,
.mdl-carousel__arrow-prev .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-carousel__arrow-prev a.atm-link--external > svg,
.mdl-carousel__arrow-prev .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-carousel__arrow-prev a.atm-link--external > svg {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: 1rem;
}
.mdl-carousel__arrow-next {
    margin-left: auto;
}
.mdl-carousel__controls {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-carousel__controls {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel__controls {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel__controls {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 96.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-carousel__controls {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
.mdl-carousel__controls-track {
    overflow: visible;
}
.mdl-carousel__controls-slide {
    width: 8.3333333333rem;
    height: auto;
    margin-right: 2.1666666667rem;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
}
@media all and (min-width: 64em) {
    .mdl-carousel__controls-slide {
        width: 11.6666666667rem;
    }
}
.mdl-carousel__controls-slide .mdl-carousel__controls-label {
    margin-top: 1.6666666667rem;
}
@media all and (min-width: 48em) {
    .mdl-carousel__controls-slide:hover {
        transform: scale(1.22);
    }
    .mdl-carousel__controls-slide:hover .atm-image {
        box-shadow: 0 2px 8px 0 rgba(81, 73, 67, 0.6);
    }
    .mdl-carousel__controls-slide:hover .mdl-carousel__controls-label {
        color: #767675;
    }
}
@media all and (max-width: 47.99em) {
    .mdl-carousel__controls-slide {
        margin-right: 1rem;
    }
    .mdl-carousel__controls-slide.is-active .mdl-carousel__controls-slide-wrapper {
        transform: scale(1.1);
        box-shadow: 0 2px 8px 0 rgba(81, 73, 67, 0.6);
    }
    .mdl-carousel__controls-slide.is-active .mdl-carousel__controls-label {
        color: #767675;
    }
}
.mdl-carousel__controls-slide-wrapper {
    position: relative;
}
.mdl-carousel__controls-slide-wrapper .atm-icon--playbutton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.mdl-carousel__controls-slide-wrapper .atm-image {
    object-fit: cover;
    height: 6.5555555556rem;
}
.mdl-carousel__controls-label {
    font-size: 0.8333333333rem;
    line-height: 1.7;
    margin: 0;
}
.mdl-carousel .mdl-carousel__stage-track {
    margin-bottom: 2.5555555556rem;
}
@media all and (min-width: 48em) {
    .mdl-carousel {
        padding: 4rem 0;
    }
    .mdl-carousel .atm-link, .mdl-carousel .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-carousel a, .mdl-carousel .context-ghi .atm-ghi-link, .context-ghi .mdl-carousel .atm-ghi-link, .mdl-carousel .atm-paragraph a, .mdl-carousel .mdl-plain-text-accordion__height-representation a, .mdl-carousel .mdl-plain-text-accordion__text a, .atm-paragraph .mdl-carousel a, .mdl-plain-text-accordion__height-representation .mdl-carousel a, .mdl-plain-text-accordion__text .mdl-carousel a, .mdl-carousel .mdl-iconlist__link, .mdl-carousel .mdl-richtext a, .mdl-richtext .mdl-carousel a,
    .mdl-carousel .mdl-richtext ul a[download],
    .mdl-richtext ul .mdl-carousel a[download],
    .mdl-carousel .mdl-richtext ol a[download],
    .mdl-richtext ol .mdl-carousel a[download], .mdl-carousel .mdl-input-list__label a, .mdl-input-list__label .mdl-carousel a, .mdl-carousel .mdl-dropdown__title a, .mdl-dropdown__title .mdl-carousel a, .mdl-carousel .mdl-filter__label a, .mdl-filter__label .mdl-carousel a, .mdl-carousel .mdl-promo-textteaser__description {
        justify-content: normal;
        width: auto;
    }
    .mdl-carousel .mdl-carousel__stage-row {
        display: flex;
        flex: 0 0 auto;
        flex-wrap: wrap;
    }
}
@media all and (min-width: 48em) and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-carousel .mdl-carousel__stage-row {
        margin-left: -1.4974433893%;
        margin-right: -1.4974433893%;
    }
}
@media all and (min-width: 48em) and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-carousel .mdl-carousel__stage-row {
        margin-left: -1.6014234875%;
        margin-right: -1.6014234875%;
    }
}
@media all and (min-width: 48em) and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-carousel .mdl-carousel__stage-row {
        margin-left: -2.2388059701%;
        margin-right: -2.2388059701%;
    }
}
@media all and (min-width: 48em) and (min-width: 100em) {
    .mdl-carousel .mdl-carousel__stage-row {
        margin-left: -1.6014234875%;
        margin-right: -1.6014234875%;
    }
}
@media all and (min-width: 48em) {
    .mdl-carousel .mdl-carousel__arrows {
        position: absolute;
        top: 25%;
    }
    .mdl-carousel .mdl-carousel__arrow .atm-icon, .mdl-carousel .mdl-carousel__arrow .mdl-richtext a[download] > svg, .mdl-richtext .mdl-carousel .mdl-carousel__arrow a[download] > svg, .mdl-carousel .mdl-carousel__arrow .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-carousel .mdl-carousel__arrow a.atm-link--external > svg,
    .mdl-carousel .mdl-carousel__arrow .mdl-richtext ul a.atm-link--external > svg,
    .mdl-richtext ul .mdl-carousel .mdl-carousel__arrow a.atm-link--external > svg,
    .mdl-carousel .mdl-carousel__arrow .mdl-richtext ol a.atm-link--external > svg,
    .mdl-richtext ol .mdl-carousel .mdl-carousel__arrow a.atm-link--external > svg {
        margin: 0;
    }
    .mdl-carousel .mdl-carousel__arrow-text {
        display: none;
    }
    .mdl-carousel .mdl-carousel__controls {
        display: block;
    }
}
@media all and (min-width: 64em) {
    .mdl-carousel {
        padding: 6.2222222222rem 0;
        margin-bottom: 3.2222222222rem;
    }
    .mdl-carousel h2.atm-heading, .mdl-carousel .context-ghi h2.mdl-offer_card__lead, .context-ghi .mdl-carousel h2.mdl-offer_card__lead, .mdl-carousel .mdl-richtext h2, .mdl-richtext .mdl-carousel h2, .mdl-carousel h2.mdl-sub-navigation__title {
        margin-bottom: 3.2222222222rem;
    }
    .mdl-carousel .mdl-carousel__stage-track {
        margin-bottom: 3.2222222222rem;
    }
}
.mdl-carousel--background-grey {
    background: linear-gradient(152.61deg, #F1F1F1 0%, #FFF 100%, #FFF 100%);
}

.mdl-plain-text-accordion {
    margin-bottom: 2.1666666667rem;
    flex-basis: 100%;
}
.mdl-plain-text-accordion__wrapper {
    height: 0;
    position: relative;
    transition: height 0.5s ease;
    overflow: hidden;
    max-height: none;
    margin-bottom: 1rem;
}
.mdl-plain-text-accordion__height-representation, .mdl-plain-text-accordion__text {
    margin: 0;
}
.mdl-plain-text-accordion__height-representation {
    pointer-events: none;
}
.mdl-plain-text-accordion__text {
    position: absolute;
    top: 0;
    left: 0;
}
.mdl-plain-text-accordion__trigger {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
}
.mdl-plain-text-accordion__trigger:focus {
    outline: none;
}
.mdl-plain-text-accordion__trigger-icon-wrapper {
    position: relative;
    height: 1.8888888889rem;
    width: 1.8888888889rem;
}
.mdl-plain-text-accordion__trigger-icon {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    display: inline-flex;
}
.mdl-plain-text-accordion__trigger-icon--plus {
    opacity: 1;
}
.mdl-plain-text-accordion__trigger-icon--minus {
    opacity: 0;
}
.mdl-plain-text-accordion__trigger-icon .atm-icon use, .mdl-plain-text-accordion__trigger-icon .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__trigger-icon a[download] > svg use, .mdl-plain-text-accordion__trigger-icon .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__trigger-icon a.atm-link--external > svg use,
.mdl-plain-text-accordion__trigger-icon .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__trigger-icon a.atm-link--external > svg use,
.mdl-plain-text-accordion__trigger-icon .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__trigger-icon a.atm-link--external > svg use {
    fill: var(--primary-color);
}
.mdl-plain-text-accordion__trigger-label {
    padding-left: 0.5rem;
}
.mdl-plain-text-accordion__trigger-label-less {
    display: none;
}
.mdl-plain-text-accordion__trigger-label-more {
    display: inline;
}
.mdl-plain-text-accordion__trigger:hover {
    color: var(--primary-color-darken-1);
}
.mdl-plain-text-accordion__trigger:hover .atm-icon use, .mdl-plain-text-accordion__trigger:hover .mdl-richtext a[download] > svg use, .mdl-richtext .mdl-plain-text-accordion__trigger:hover a[download] > svg use, .mdl-plain-text-accordion__trigger:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .mdl-plain-text-accordion__trigger:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__trigger:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .mdl-plain-text-accordion__trigger:hover a.atm-link--external > svg use,
.mdl-plain-text-accordion__trigger:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .mdl-plain-text-accordion__trigger:hover a.atm-link--external > svg use {
    fill: var(--primary-color-darken-1);
}
.mdl-plain-text-accordion--open .mdl-plain-text-accordion__trigger-icon {
    transform: rotate(0deg);
}
.mdl-plain-text-accordion--open .mdl-plain-text-accordion__trigger-icon--plus {
    opacity: 0;
}
.mdl-plain-text-accordion--open .mdl-plain-text-accordion__trigger-icon--minus {
    opacity: 1;
}
.mdl-plain-text-accordion--open .mdl-plain-text-accordion__trigger-label-less {
    display: inline;
}
.mdl-plain-text-accordion--open .mdl-plain-text-accordion__trigger-label-more {
    display: none;
}
@media all and (min-width: 48em) {
    .mdl-plain-text-accordion .mdl-plain-text-accordion__wrapper {
        margin-bottom: 0.5rem;
    }
}

.mdl-checkbox_carousel {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    padding: 2.1666666667rem 0;
    margin-bottom: 1rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-checkbox_carousel {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-checkbox_carousel {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-checkbox_carousel {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-checkbox_carousel {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-checkbox_carousel {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-checkbox_carousel {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-checkbox_carousel {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-checkbox_carousel {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
@media all and (max-width: 63.99em) {
    .mdl-checkbox_carousel {
        padding: 2.1666666667rem 10px;
    }
}
.mdl-checkbox_carousel .atm-link, .mdl-checkbox_carousel .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-checkbox_carousel a, .mdl-checkbox_carousel .context-ghi .atm-ghi-link, .context-ghi .mdl-checkbox_carousel .atm-ghi-link, .mdl-checkbox_carousel .atm-paragraph a, .atm-paragraph .mdl-checkbox_carousel a, .mdl-checkbox_carousel .mdl-iconlist__link, .mdl-checkbox_carousel .mdl-richtext a, .mdl-richtext .mdl-checkbox_carousel a,
.mdl-checkbox_carousel .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-checkbox_carousel a[download],
.mdl-checkbox_carousel .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-checkbox_carousel a[download], .mdl-checkbox_carousel .mdl-input-list__label a, .mdl-input-list__label .mdl-checkbox_carousel a, .mdl-checkbox_carousel .mdl-dropdown__title a, .mdl-dropdown__title .mdl-checkbox_carousel a, .mdl-checkbox_carousel .mdl-filter__label a, .mdl-filter__label .mdl-checkbox_carousel a, .mdl-checkbox_carousel .mdl-promo-textteaser__description, .mdl-checkbox_carousel .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .mdl-checkbox_carousel a, .mdl-checkbox_carousel .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .mdl-checkbox_carousel a {
    justify-content: center;
    width: 100%;
}
.mdl-checkbox_carousel__email {
    height: 1.9444444444rem;
    width: 2.7777777778rem;
    margin-right: 7%;
    padding: 0.1111111111rem 0.5555555556rem;
    border: 1px solid #000;
    border-radius: 0.3888888889rem;
    position: relative;
    margin-bottom: 0;
    background-color: transparent;
    cursor: pointer;
    transition: transform 120ms ease-in-out;
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 600px) {
    .mdl-checkbox_carousel__email {
        margin-right: 10%;
    }
}
.mdl-checkbox_carousel__email--disabled {
    pointer-events: none;
    opacity: 0.5;
}
.mdl-checkbox_carousel__email--disabled:hover, .mdl-checkbox_carousel__email--disabled:focus, .mdl-checkbox_carousel__email--disabled:active {
    transform: none;
}
.mdl-checkbox_carousel__newsletter-counter {
    position: absolute;
    font-size: 0.8333333333rem;
    height: 1.1111111111rem;
    width: 1.1111111111rem;
    top: calc(1.1111111111rem / -2);
    right: calc(1.1111111111rem / -2);
    color: #FFF;
    background-color: #771511;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: none;
}
.mdl-checkbox_carousel__newsletter-counter--visible {
    display: flex;
}
.mdl-checkbox_carousel__email:hover, .mdl-checkbox_carousel__email:focus {
    transform: scale(1.015);
}
.mdl-checkbox_carousel__email:active {
    transform: scale(0.985);
}
.mdl-checkbox_carousel__content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.mdl-checkbox_carousel__content .splide__slide {
    width: max-content;
}
.mdl-checkbox_carousel__content .splide .splide__arrow {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    position: absolute;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    top: calc((100% - 0.8333333333rem) / 2);
}
.mdl-checkbox_carousel__content .splide .splide__arrow:focus {
    outline: none;
}
.mdl-checkbox_carousel__content .splide .splide__arrow--next {
    left: 100%;
}
@media all and (min-width: 64em) {
    .mdl-checkbox_carousel__content .splide .splide__arrow--next {
        left: 102%;
    }
}
.mdl-checkbox_carousel__content .splide .splide__arrow--prev {
    right: 98%;
    transform: rotate(180deg);
}
@media all and (min-width: 64em) {
    .mdl-checkbox_carousel__content .splide .splide__arrow--prev {
        right: 100%;
    }
}
.mdl-checkbox_carousel__content .splide .splide__arrow svg {
    height: 0.8333333333rem;
}
.mdl-checkbox_carousel__content-slider {
    display: flex;
    flex-direction: column;
    margin: unset;
}
.mdl-checkbox_carousel__content-track {
    z-index: 1;
    order: 1;
    margin-bottom: 2.1666666667rem;
}
.mdl-checkbox_carousel .slide-content {
    position: relative;
    height: 1.9444444444rem;
    margin: 5px;
    padding: 2px 10px;
    border: 1px solid #282625;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    list-style: none;
    width: fit-content;
    transition: transform 120ms ease-in-out;
}
.mdl-checkbox_carousel .slide-content input {
    display: none;
    position: absolute;
}
.mdl-checkbox_carousel .slide-content span {
    white-space: nowrap;
}
.mdl-checkbox_carousel .slide-content:hover {
    transform: scale(1.015);
}
.mdl-checkbox_carousel .slide-content:active {
    transform: scale(0.985);
}

.slide-active.slide-active {
    border: 1px solid #CF0018;
    color: #CF0018;
}

.show-only-selected-cards .mdl-checkbox_carousel__email {
    border: 1px solid #CF0018;
}
.show-only-selected-cards .mdl-checkbox_carousel__email .atm-icon use, .show-only-selected-cards .mdl-checkbox_carousel__email .mdl-richtext a[download] > svg use, .mdl-richtext .show-only-selected-cards .mdl-checkbox_carousel__email a[download] > svg use, .show-only-selected-cards .mdl-checkbox_carousel__email .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .show-only-selected-cards .mdl-checkbox_carousel__email a.atm-link--external > svg use,
.show-only-selected-cards .mdl-checkbox_carousel__email .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .show-only-selected-cards .mdl-checkbox_carousel__email a.atm-link--external > svg use,
.show-only-selected-cards .mdl-checkbox_carousel__email .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .show-only-selected-cards .mdl-checkbox_carousel__email a.atm-link--external > svg use {
    filter: invert(13%) sepia(100%) saturate(5054%) hue-rotate(347deg) brightness(78%) contrast(110%);
}

.mdl-infobox-image_card {
    padding-bottom: 3rem;
    align-items: center;
    width: 100%;
    flex: 0;
    display: flex;
    flex-flow: column wrap;
}
.mdl-infobox-image_card svg use {
    fill: #FFF;
}
.mdl-infobox-image_card__content {
    width: 18rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px 0 rgba(54, 51, 49, 0.15);
}
.mdl-infobox-image_card__image-container {
    z-index: 1;
    height: 14rem;
    cursor: pointer;
}
.mdl-infobox-image_card__image-container img {
    height: inherit;
    width: 18rem;
    object-fit: cover;
}
.mdl-infobox-image_card__fulltext {
    display: flex;
    flex-direction: column;
    position: absolute;
    height: 4rem;
    bottom: 5rem;
    width: 100%;
    z-index: 1;
    color: #FFF;
    padding: 0.5555555556rem 0.8333333333rem;
    transition: height 0.345s ease-out;
    cursor: pointer;
    background-image: linear-gradient(to bottom right, #771511, #C40017);
}
.mdl-infobox-image_card--gradient-green .mdl-infobox-image_card__fulltext {
    background-image: linear-gradient(to bottom right, #404A38, #799A60);
}
.mdl-infobox-image_card--gradient-red .mdl-infobox-image_card__fulltext {
    background-image: linear-gradient(to bottom right, #771511, #C40017);
}
.mdl-infobox-image_card--gradient-purple .mdl-infobox-image_card__fulltext {
    background-image: linear-gradient(to bottom right, #500049, #9E0090);
}
.mdl-infobox-image_card--gradient-orange .mdl-infobox-image_card__fulltext {
    background-image: linear-gradient(to bottom right, #F57D10, #FFBA62);
}
.mdl-infobox-image_card--gradient-light_grey .mdl-infobox-image_card__fulltext {
    background: linear-gradient(to bottom right, #D1D1D1, #767675);
}
.mdl-infobox-image_card--gradient-dark_grey .mdl-infobox-image_card__fulltext {
    background: linear-gradient(to bottom right, #767675, #363331);
}
.mdl-infobox-image_card__fulltext .link {
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.mdl-infobox-image_card__fulltext .link svg {
    margin-left: 1rem;
}
.mdl-infobox-image_card__fulltext--active {
    height: 14rem;
    padding-bottom: 0.5555555556rem;
    transform: translate3d(0, 0, 0);
    transition: height, transform;
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
}
.mdl-infobox-image_card__fulltext--active .link {
    display: none;
}
.mdl-infobox-image_card__fulltext--active .mdl-infobox-image_card__text-close {
    opacity: 1;
    transition: opacity 0.6s;
    display: contents;
}
.mdl-infobox-image_card__fulltext--active .mdl-infobox-image_card__fulltext-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mdl-infobox-image_card__header {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
    margin: 0;
}
.mdl-infobox-image_card__text-info {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-top: 0.2777777778rem;
    margin-bottom: 0.2777777778rem;
}
.mdl-infobox-image_card__text-close, .mdl-infobox-image_card__text-close:link, .mdl-infobox-image_card__text-close:visited {
    cursor: pointer;
    opacity: 0;
    font-size: 3rem;
    text-decoration: none;
    transition: 0.2s;
    line-height: 1;
    color: #FFF;
    background-color: transparent;
    border: none;
}
.mdl-infobox-image_card__text-close:hover svg use {
    fill: #CDCDCD;
}
.mdl-infobox-image_card__text-date {
    margin: 3rem 0 0;
    display: flex;
    align-items: center;
    margin-top: auto;
    margin-bottom: 0;
}
.mdl-infobox-image_card__text-date .atm-icon, .mdl-infobox-image_card__text-date .mdl-richtext a[download] > svg, .mdl-richtext .mdl-infobox-image_card__text-date a[download] > svg, .mdl-infobox-image_card__text-date .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-infobox-image_card__text-date a.atm-link--external > svg,
.mdl-infobox-image_card__text-date .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-infobox-image_card__text-date a.atm-link--external > svg,
.mdl-infobox-image_card__text-date .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-infobox-image_card__text-date a.atm-link--external > svg {
    margin-right: 0.5555555556rem;
}
.mdl-infobox-image_card__button-container {
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}
.mdl-infobox-image_card__checkbox-button {
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #C40017;
    width: 90%;
    height: 1.25rem;
    border-radius: 0.2777777778rem;
    color: #C40017;
    padding: 1.4rem 2rem;
    cursor: pointer;
    transition-property: border-color;
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    text-decoration: none;
}
.mdl-infobox-image_card__checkbox-button input {
    position: absolute;
    display: none;
}
.mdl-infobox-image_card__checkbox-button svg {
    opacity: 0;
    position: absolute;
    right: 1.1111111111rem;
    transition: opacity 0.2s ease-in-out;
}
.mdl-infobox-image_card__checkbox-button svg use {
    fill: #799A60;
}
.mdl-infobox-image_card__checkbox-button--clicked {
    border-color: transparent;
}
.mdl-infobox-image_card__checkbox-button--clicked svg {
    opacity: 1;
}
.mdl-infobox-image_card--hidden {
    display: none;
}
.mdl-infobox-image_card--selected {
    animation-name: scale;
    animation-duration: 350ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}
@keyframes scale {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.mdl-infobox-image_card--selected .mdl-infobox-image_card__text-select {
    display: none;
}
.mdl-infobox-image_card--selected .mdl-infobox-image_card__text-deselect {
    display: block;
}
.mdl-infobox-image_card__text-select {
    display: block;
}
.mdl-infobox-image_card__text-deselect {
    display: none;
}

.mdl-infobox_image_card_container {
    margin: auto;
}
@media all and (max-width: 63.99em) {
    .mdl-infobox_image_card_container {
        padding: 0.5555555556rem;
    }
}
.mdl-infobox_image_card_container__grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 4rem;
}
@media all and (max-width: 63.99em) {
    .mdl-infobox_image_card_container__grid-container {
        grid-gap: 1rem;
    }
}
.mdl-infobox_image_card_container__grid-container .aem-Grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 4rem;
}
@media all and (max-width: 63.99em) {
    .mdl-infobox_image_card_container__grid-container .aem-Grid {
        grid-gap: 1rem;
    }
}
@media all and (max-width: 63.99em) {
    .mdl-infobox_image_card_container__form-background {
        margin: 0 -10rem;
        padding: 0 10rem;
        background-color: #FFF;
    }
}
.mdl-infobox_image_card_container__form-elements {
    max-width: 40rem;
    margin: 0 auto;
}
.mdl-infobox_image_card_container__form-elements--fixed-position {
    position: fixed;
    bottom: 0;
    z-index: 1;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    backface-visibility: hidden;
}
.mdl-infobox_image_card_container__form-elements .atm-form_input {
    padding: 1.1111111111rem 0;
}
.mdl-infobox_image_card_container__form-elements .atm-button, .mdl-infobox_image_card_container__form-elements .context-ghi .atm-ghi-button, .mdl-infobox_image_card_container__form-elements .context-ghi .mdl-documentsend, .context-ghi .mdl-infobox_image_card_container__form-elements .atm-ghi-button, .context-ghi .mdl-infobox_image_card_container__form-elements .mdl-documentsend, .mdl-infobox_image_card_container__form-elements .atm-link--btn {
    margin-bottom: 1.1111111111rem;
}
.mdl-infobox_image_card_container__checkbox {
    display: none;
}

.mdl-automatic-content-table {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    margin: unset;
}
@media all and (min-width: 48em) {
    .mdl-automatic-content-table {
        max-width: 42.6666666667rem;
        margin: 4rem auto;
    }
}
.mdl-automatic-content-table__header {
    font-size: calc(18 * 1px);
    text-align: center;
    display: inline-block;
    position: relative;
}
.mdl-automatic-content-table__header:after, .mdl-automatic-content-table__header:before {
    content: "";
    margin-right: auto;
    margin-left: auto;
    height: 1px;
    top: 50%;
    background: #282625;
    position: absolute;
}
.mdl-automatic-content-table__header:before {
    left: -100vw;
    right: calc(100% + 1rem);
}
.mdl-automatic-content-table__header:after {
    right: -100vw;
    left: calc(100% + 1rem);
}
.mdl-automatic-content-table__list {
    list-style-type: "—";
    color: #A61711;
    align-self: start;
    padding-left: 20px;
}
.mdl-automatic-content-table__list-item {
    font-size: 1rem;
    line-height: 2.1111111111rem;
    padding: 0.3333333333rem 0 0.2222222222rem 1rem;
    font-family: "Frutiger LT W02_55 Roman", Frutiger, sans-serif;
}
.mdl-automatic-content-table__list-item--nested {
    font-size: 0.8333333333rem;
    line-height: 1.7777777778rem;
    padding: 0.1111111111rem 1rem;
    margin-left: 1rem;
}
.mdl-automatic-content-table__link {
    color: inherit;
    text-decoration: none;
}
.mdl-automatic-content-table--hidden {
    display: none;
}

.mdl-reviewed-by {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    display: flex;
    gap: 1.3333333333rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .mdl-reviewed-by {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-reviewed-by {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-reviewed-by {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .mdl-reviewed-by {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .mdl-reviewed-by {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .mdl-reviewed-by {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .mdl-reviewed-by {
        margin-left: 17.994100295%;
    }
}
[class^=mdl] .mdl-reviewed-by {
    width: 100%;
    max-width: 100%;
    flex-basis: unset;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}
.mdl-reviewed-by__image img {
    border-radius: 50%;
    height: 5.5555555556rem;
    width: 5.5555555556rem;
    object-fit: cover;
}
.mdl-reviewed-by__review-name {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
    margin: 0;
}
.mdl-reviewed-by__review-name a {
    color: inherit;
    text-decoration: none;
}
.mdl-reviewed-by__review-addition {
    font-size: 0.7222222222rem;
    margin: 0;
}
.mdl-reviewed-by__review-richtext {
    margin-top: 0.5555555556rem;
}
.mdl-reviewed-by--space-top {
    padding-top: 2.1666666667rem;
}
.mdl-reviewed-by--space-bottom {
    margin-bottom: 2.1666666667rem;
}
.mdl-reviewed-by .mdl-richtext {
    margin-left: 0;
}

@media all and (max-width: 47.99em) {
    .mdl-reviewed-by {
        flex-direction: column;
    }
    .mdl-reviewed-by__image {
        height: 5.5555555556rem;
    }
}
.mdl-video {
    width: 100%;
}

.mdl-language-selector {
    position: relative;
    height: 100%;
    align-items: center;
    display: flex;
    padding: 0 0.5rem;
    color: #767675;
}
.mdl-language-selector.opened .mdl-language-selector__list {
    display: block;
}
.mdl-language-selector svg {
    fill: #767675;
}
.mdl-language-selector button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
.mdl-language-selector__language {
    display: flex;
    align-items: center;
    gap: 0.3333333333rem;
}
.mdl-language-selector__list {
    position: absolute;
    list-style: none;
    padding: 0.6111111111rem 2rem;
    margin: 0;
    display: none;
    top: 0.2222222222rem;
    left: -1.4444444444rem;
    background: #FFF;
    box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.18);
    z-index: 1000;
}
.mdl-language-selector__list-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #9D9F9D;
}
.mdl-language-selector__list-item-inner {
    display: flex;
    gap: 0.3333333333rem;
    color: inherit;
    text-decoration: none;
    width: 100%;
}
.mdl-language-selector__list-item--selected .atm-icon, .mdl-language-selector__list-item--selected .mdl-richtext a[download] > svg, .mdl-richtext .mdl-language-selector__list-item--selected a[download] > svg, .mdl-language-selector__list-item--selected .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .mdl-language-selector__list-item--selected a.atm-link--external > svg,
.mdl-language-selector__list-item--selected .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .mdl-language-selector__list-item--selected a.atm-link--external > svg,
.mdl-language-selector__list-item--selected .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .mdl-language-selector__list-item--selected a.atm-link--external > svg {
    transform: rotate(180deg);
}
.mdl-language-selector__list-item--active {
    color: #282625;
}
.mdl-language-selector__list-item--active svg {
    fill: #282625;
}
.mdl-language-selector__list-item:last-child {
    border-bottom: none;
}
.mdl-language-selector--offcanvas {
    height: auto;
    padding: 1.4444444444rem 1.0555555556rem;
    margin-top: 0.1111111111rem;
}
.mdl-language-selector--offcanvas.opened {
    padding: 0;
}
.mdl-language-selector--offcanvas.opened .mdl-language-selector__language {
    display: none;
}
.mdl-language-selector--offcanvas .mdl-language-selector__list {
    width: 100%;
    box-shadow: none;
    position: static;
    padding: 0.6111111111rem 1.0555555556rem;
}
.mdl-language-selector--offcanvas .mdl-language-selector__list-item {
    padding: 0.8333333333rem 0;
}
.mdl-language-selector--offcanvas .mdl-language-selector__list-item-inner {
    width: fit-content;
}

.mdl-tile__oxide-red {
    background: linear-gradient(315deg, #771511 0%, #A61711 100%);
}
.mdl-tile__red {
    background: linear-gradient(315deg, #FF5041 0%, #C40017 100%);
}
.mdl-tile__violet {
    background: #500049;
}
.mdl-tile__darkGray {
    background: #767675;
}
.mdl-tile__darkGray .mdl-color-tile__footer span {
    color: #FFF;
}
.mdl-tile__orange {
    background: linear-gradient(315deg, #FF8F18 0%, #FFBA62 100%);
}
.mdl-tile__orange .mdl-color-tile__footer span {
    color: #282625;
}
.mdl-tile__green {
    background: linear-gradient(315deg, #47692E 0%, #69914B 100%);
}
.mdl-tile__lightGray {
    background: linear-gradient(315deg, #D1D1D1 0%, #767675 100%);
}
.mdl-tile__lightGray .mdl-tile__footer {
    color: #282625;
}
.mdl-tile__safeTGreen1 {
    background: linear-gradient(315deg, #AECA37 0%, #E4F696 100%);
}
.mdl-tile__safeTGreen2 {
    background: linear-gradient(315deg, #74B743 0%, #B2E48D 100%);
}
.mdl-tile__safeTGreen3 {
    background: linear-gradient(315deg, #0DA64B 0%, #44EE89 100%);
}
.mdl-tile__safeTGreen4 {
    background: linear-gradient(315deg, #00773D 0%, #16DB7B 100%);
}
.mdl-tile__safeTGreen5 {
    background: linear-gradient(315deg, #07542A 0%, #099E4D 100%);
}
.mdl-tile__safeTGrey1 {
    background: linear-gradient(315deg, #C6C6C6 0%, #F4F4F4 100%);
}
.mdl-tile__safeTGrey1 .mdl-color-tile__footer span {
    color: #282625;
}
.mdl-tile .atm-link, .mdl-tile .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-tile a, .mdl-tile .context-ghi .atm-ghi-link, .context-ghi .mdl-tile .atm-ghi-link, .mdl-tile .atm-paragraph a, .atm-paragraph .mdl-tile a, .mdl-tile .mdl-iconlist__link, .mdl-tile .mdl-richtext a, .mdl-richtext .mdl-tile a,
.mdl-tile .mdl-richtext ul a[download],
.mdl-richtext ul .mdl-tile a[download],
.mdl-tile .mdl-richtext ol a[download],
.mdl-richtext ol .mdl-tile a[download], .mdl-tile .mdl-input-list__label a, .mdl-input-list__label .mdl-tile a, .mdl-tile .mdl-dropdown__title a, .mdl-dropdown__title .mdl-tile a, .mdl-tile .mdl-filter__label a, .mdl-filter__label .mdl-tile a, .mdl-tile .mdl-promo-textteaser__description, .mdl-tile .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .mdl-tile a, .mdl-tile .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .mdl-tile a {
    background: #FFF;
    border: none;
}
.mdl-tile .atm-link--external {
    padding-right: 1rem;
}
.mdl-tile .atm-link--small-font {
    font-size: 0.8333333333rem;
}
.mdl-tile .atm-link--small-tile, .mdl-tile .atm-link--medium-tile, .mdl-tile .atm-link--large-tile {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
}
@media all and (max-width: 63.99em) {
    .mdl-tile .atm-link--small-tile, .mdl-tile .atm-link--medium-tile, .mdl-tile .atm-link--large-tile {
        width: fit-content;
    }
}
.mdl-tile .atm-link--large-tile {
    width: fit-content;
}
.mdl-tile .atm-link--red {
    color: #EE000C;
}
.mdl-tile .atm-link--red:hover {
    color: #EE000C;
}
.mdl-tile .atm-link--green {
    color: #47692E;
}
.mdl-tile .atm-link--green:hover {
    color: #47692E;
}
.mdl-tile .atm-link--orange {
    color: #FF8F18;
}
.mdl-tile .atm-link--orange:hover {
    color: #FF8F18;
}
.mdl-tile .atm-link--dark-gray {
    color: #403F3F;
}
.mdl-tile .atm-link--dark-gray:hover {
    color: #403F3F;
}
.mdl-tile .atm-link--light-gray {
    color: #9D9F9D;
}
.mdl-tile .atm-link--light-gray:hover {
    color: #9D9F9D;
}
.mdl-tile .atm-link--violet {
    color: #831080;
}
.mdl-tile .atm-link--violet:hover {
    color: #831080;
}
@media all and (max-width: 63.99em) {
    .mdl-tile .atm-link--large-tile {
        width: 100%;
    }
}

mdl-service-tile {
    position: relative;
    min-height: 100%;
    height: 100%;
}
mdl-service-tile > span {
    display: block;
    font-size: 1.2222222222rem;
}
mdl-service-tile atm-link .atm-link, mdl-service-tile atm-link .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link a, mdl-service-tile atm-link .context-ghi .atm-ghi-link, .context-ghi mdl-service-tile atm-link .atm-ghi-link, mdl-service-tile atm-link .atm-paragraph a, .atm-paragraph mdl-service-tile atm-link a, mdl-service-tile atm-link .mdl-iconlist__link, mdl-service-tile atm-link .mdl-iconlist--horizontal .mdl-iconlist__link, .mdl-iconlist--horizontal mdl-service-tile atm-link .mdl-iconlist__link, mdl-service-tile atm-link .mdl-richtext a, .mdl-richtext mdl-service-tile atm-link a, mdl-service-tile atm-link .mdl-richtext p a[download], .mdl-richtext p mdl-service-tile atm-link a[download],
mdl-service-tile atm-link .mdl-richtext ul a[download],
.mdl-richtext ul mdl-service-tile atm-link a[download],
mdl-service-tile atm-link .mdl-richtext ol a[download],
.mdl-richtext ol mdl-service-tile atm-link a[download], mdl-service-tile atm-link .mdl-input-list__label a, .mdl-input-list__label mdl-service-tile atm-link a, mdl-service-tile atm-link .mdl-dropdown__title a, .mdl-dropdown__title mdl-service-tile atm-link a, mdl-service-tile atm-link .mdl-filter__label a, .mdl-filter__label mdl-service-tile atm-link a, mdl-service-tile atm-link .mdl-promo-textteaser__description, mdl-service-tile atm-link .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link a, mdl-service-tile atm-link .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text mdl-service-tile atm-link a {
    position: absolute;
}
mdl-service-tile atm-link[color=oxide-red] .atm-link, mdl-service-tile atm-link[color=oxide-red] .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=oxide-red] a, mdl-service-tile atm-link[color=oxide-red] .context-ghi .atm-ghi-link, .context-ghi mdl-service-tile atm-link[color=oxide-red] .atm-ghi-link, mdl-service-tile atm-link[color=oxide-red] .atm-paragraph a, .atm-paragraph mdl-service-tile atm-link[color=oxide-red] a, mdl-service-tile atm-link[color=oxide-red] .mdl-iconlist__link, mdl-service-tile atm-link[color=oxide-red] .mdl-richtext a, .mdl-richtext mdl-service-tile atm-link[color=oxide-red] a, mdl-service-tile atm-link[color=oxide-red] .mdl-input-list__label a, .mdl-input-list__label mdl-service-tile atm-link[color=oxide-red] a, mdl-service-tile atm-link[color=oxide-red] .mdl-dropdown__title a, .mdl-dropdown__title mdl-service-tile atm-link[color=oxide-red] a, mdl-service-tile atm-link[color=oxide-red] .mdl-filter__label a, .mdl-filter__label mdl-service-tile atm-link[color=oxide-red] a, mdl-service-tile atm-link[color=oxide-red] .mdl-promo-textteaser__description, mdl-service-tile atm-link[color=oxide-red] .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=oxide-red] a, mdl-service-tile atm-link[color=oxide-red] .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=oxide-red] a {
    color: #A61711;
}
mdl-service-tile atm-link[color=oxide-red] .atm-link:hover, mdl-service-tile atm-link[color=oxide-red] .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=oxide-red] a:hover, mdl-service-tile atm-link[color=oxide-red] .context-ghi .atm-ghi-link:hover, .context-ghi mdl-service-tile atm-link[color=oxide-red] .atm-ghi-link:hover, mdl-service-tile atm-link[color=oxide-red] .atm-paragraph a:hover, .atm-paragraph mdl-service-tile atm-link[color=oxide-red] a:hover, mdl-service-tile atm-link[color=oxide-red] .mdl-iconlist__link:hover, mdl-service-tile atm-link[color=oxide-red] .mdl-richtext a:hover, .mdl-richtext mdl-service-tile atm-link[color=oxide-red] a:hover, mdl-service-tile atm-link[color=oxide-red] .mdl-input-list__label a:hover, .mdl-input-list__label mdl-service-tile atm-link[color=oxide-red] a:hover, mdl-service-tile atm-link[color=oxide-red] .mdl-dropdown__title a:hover, .mdl-dropdown__title mdl-service-tile atm-link[color=oxide-red] a:hover, mdl-service-tile atm-link[color=oxide-red] .mdl-filter__label a:hover, .mdl-filter__label mdl-service-tile atm-link[color=oxide-red] a:hover, mdl-service-tile atm-link[color=oxide-red] .mdl-promo-textteaser__description:hover, mdl-service-tile atm-link[color=oxide-red] .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=oxide-red] a:hover, mdl-service-tile atm-link[color=oxide-red] .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=oxide-red] a:hover {
    color: #771511;
}
mdl-service-tile atm-link[color=orange] .atm-link, mdl-service-tile atm-link[color=orange] .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=orange] a, mdl-service-tile atm-link[color=orange] .context-ghi .atm-ghi-link, .context-ghi mdl-service-tile atm-link[color=orange] .atm-ghi-link, mdl-service-tile atm-link[color=orange] .atm-paragraph a, .atm-paragraph mdl-service-tile atm-link[color=orange] a, mdl-service-tile atm-link[color=orange] .mdl-iconlist__link, mdl-service-tile atm-link[color=orange] .mdl-richtext a, .mdl-richtext mdl-service-tile atm-link[color=orange] a, mdl-service-tile atm-link[color=orange] .mdl-input-list__label a, .mdl-input-list__label mdl-service-tile atm-link[color=orange] a, mdl-service-tile atm-link[color=orange] .mdl-dropdown__title a, .mdl-dropdown__title mdl-service-tile atm-link[color=orange] a, mdl-service-tile atm-link[color=orange] .mdl-filter__label a, .mdl-filter__label mdl-service-tile atm-link[color=orange] a, mdl-service-tile atm-link[color=orange] .mdl-promo-textteaser__description, mdl-service-tile atm-link[color=orange] .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=orange] a, mdl-service-tile atm-link[color=orange] .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=orange] a {
    color: #FFBA62;
}
mdl-service-tile atm-link[color=orange] .atm-link:hover, mdl-service-tile atm-link[color=orange] .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=orange] a:hover, mdl-service-tile atm-link[color=orange] .context-ghi .atm-ghi-link:hover, .context-ghi mdl-service-tile atm-link[color=orange] .atm-ghi-link:hover, mdl-service-tile atm-link[color=orange] .atm-paragraph a:hover, .atm-paragraph mdl-service-tile atm-link[color=orange] a:hover, mdl-service-tile atm-link[color=orange] .mdl-iconlist__link:hover, mdl-service-tile atm-link[color=orange] .mdl-richtext a:hover, .mdl-richtext mdl-service-tile atm-link[color=orange] a:hover, mdl-service-tile atm-link[color=orange] .mdl-input-list__label a:hover, .mdl-input-list__label mdl-service-tile atm-link[color=orange] a:hover, mdl-service-tile atm-link[color=orange] .mdl-dropdown__title a:hover, .mdl-dropdown__title mdl-service-tile atm-link[color=orange] a:hover, mdl-service-tile atm-link[color=orange] .mdl-filter__label a:hover, .mdl-filter__label mdl-service-tile atm-link[color=orange] a:hover, mdl-service-tile atm-link[color=orange] .mdl-promo-textteaser__description:hover, mdl-service-tile atm-link[color=orange] .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=orange] a:hover, mdl-service-tile atm-link[color=orange] .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=orange] a:hover {
    color: #FF8F18;
}
mdl-service-tile atm-link[color=green] .atm-link, mdl-service-tile atm-link[color=green] .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=green] a, mdl-service-tile atm-link[color=green] .context-ghi .atm-ghi-link, .context-ghi mdl-service-tile atm-link[color=green] .atm-ghi-link, mdl-service-tile atm-link[color=green] .atm-paragraph a, .atm-paragraph mdl-service-tile atm-link[color=green] a, mdl-service-tile atm-link[color=green] .mdl-iconlist__link, mdl-service-tile atm-link[color=green] .mdl-richtext a, .mdl-richtext mdl-service-tile atm-link[color=green] a, mdl-service-tile atm-link[color=green] .mdl-input-list__label a, .mdl-input-list__label mdl-service-tile atm-link[color=green] a, mdl-service-tile atm-link[color=green] .mdl-dropdown__title a, .mdl-dropdown__title mdl-service-tile atm-link[color=green] a, mdl-service-tile atm-link[color=green] .mdl-filter__label a, .mdl-filter__label mdl-service-tile atm-link[color=green] a, mdl-service-tile atm-link[color=green] .mdl-promo-textteaser__description, mdl-service-tile atm-link[color=green] .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=green] a, mdl-service-tile atm-link[color=green] .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=green] a {
    color: #4B6A33;
}
mdl-service-tile atm-link[color=green] .atm-link:hover, mdl-service-tile atm-link[color=green] .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=green] a:hover, mdl-service-tile atm-link[color=green] .context-ghi .atm-ghi-link:hover, .context-ghi mdl-service-tile atm-link[color=green] .atm-ghi-link:hover, mdl-service-tile atm-link[color=green] .atm-paragraph a:hover, .atm-paragraph mdl-service-tile atm-link[color=green] a:hover, mdl-service-tile atm-link[color=green] .mdl-iconlist__link:hover, mdl-service-tile atm-link[color=green] .mdl-richtext a:hover, .mdl-richtext mdl-service-tile atm-link[color=green] a:hover, mdl-service-tile atm-link[color=green] .mdl-input-list__label a:hover, .mdl-input-list__label mdl-service-tile atm-link[color=green] a:hover, mdl-service-tile atm-link[color=green] .mdl-dropdown__title a:hover, .mdl-dropdown__title mdl-service-tile atm-link[color=green] a:hover, mdl-service-tile atm-link[color=green] .mdl-filter__label a:hover, .mdl-filter__label mdl-service-tile atm-link[color=green] a:hover, mdl-service-tile atm-link[color=green] .mdl-promo-textteaser__description:hover, mdl-service-tile atm-link[color=green] .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=green] a:hover, mdl-service-tile atm-link[color=green] .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=green] a:hover {
    color: #47692E;
}
mdl-service-tile atm-link[color=darkGray] .atm-link, mdl-service-tile atm-link[color=darkGray] .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=darkGray] a, mdl-service-tile atm-link[color=darkGray] .context-ghi .atm-ghi-link, .context-ghi mdl-service-tile atm-link[color=darkGray] .atm-ghi-link, mdl-service-tile atm-link[color=darkGray] .atm-paragraph a, .atm-paragraph mdl-service-tile atm-link[color=darkGray] a, mdl-service-tile atm-link[color=darkGray] .mdl-iconlist__link, mdl-service-tile atm-link[color=darkGray] .mdl-richtext a, .mdl-richtext mdl-service-tile atm-link[color=darkGray] a, mdl-service-tile atm-link[color=darkGray] .mdl-input-list__label a, .mdl-input-list__label mdl-service-tile atm-link[color=darkGray] a, mdl-service-tile atm-link[color=darkGray] .mdl-dropdown__title a, .mdl-dropdown__title mdl-service-tile atm-link[color=darkGray] a, mdl-service-tile atm-link[color=darkGray] .mdl-filter__label a, .mdl-filter__label mdl-service-tile atm-link[color=darkGray] a, mdl-service-tile atm-link[color=darkGray] .mdl-promo-textteaser__description, mdl-service-tile atm-link[color=darkGray] .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=darkGray] a, mdl-service-tile atm-link[color=darkGray] .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=darkGray] a {
    color: #403F3F;
}
mdl-service-tile atm-link[color=darkGray] .atm-link:hover, mdl-service-tile atm-link[color=darkGray] .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=darkGray] a:hover, mdl-service-tile atm-link[color=darkGray] .context-ghi .atm-ghi-link:hover, .context-ghi mdl-service-tile atm-link[color=darkGray] .atm-ghi-link:hover, mdl-service-tile atm-link[color=darkGray] .atm-paragraph a:hover, .atm-paragraph mdl-service-tile atm-link[color=darkGray] a:hover, mdl-service-tile atm-link[color=darkGray] .mdl-iconlist__link:hover, mdl-service-tile atm-link[color=darkGray] .mdl-richtext a:hover, .mdl-richtext mdl-service-tile atm-link[color=darkGray] a:hover, mdl-service-tile atm-link[color=darkGray] .mdl-input-list__label a:hover, .mdl-input-list__label mdl-service-tile atm-link[color=darkGray] a:hover, mdl-service-tile atm-link[color=darkGray] .mdl-dropdown__title a:hover, .mdl-dropdown__title mdl-service-tile atm-link[color=darkGray] a:hover, mdl-service-tile atm-link[color=darkGray] .mdl-filter__label a:hover, .mdl-filter__label mdl-service-tile atm-link[color=darkGray] a:hover, mdl-service-tile atm-link[color=darkGray] .mdl-promo-textteaser__description:hover, mdl-service-tile atm-link[color=darkGray] .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=darkGray] a:hover, mdl-service-tile atm-link[color=darkGray] .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=darkGray] a:hover {
    color: #282625;
}
mdl-service-tile atm-link[color=lightGray] .atm-link, mdl-service-tile atm-link[color=lightGray] .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=lightGray] a, mdl-service-tile atm-link[color=lightGray] .context-ghi .atm-ghi-link, .context-ghi mdl-service-tile atm-link[color=lightGray] .atm-ghi-link, mdl-service-tile atm-link[color=lightGray] .atm-paragraph a, .atm-paragraph mdl-service-tile atm-link[color=lightGray] a, mdl-service-tile atm-link[color=lightGray] .mdl-iconlist__link, mdl-service-tile atm-link[color=lightGray] .mdl-richtext a, .mdl-richtext mdl-service-tile atm-link[color=lightGray] a, mdl-service-tile atm-link[color=lightGray] .mdl-input-list__label a, .mdl-input-list__label mdl-service-tile atm-link[color=lightGray] a, mdl-service-tile atm-link[color=lightGray] .mdl-dropdown__title a, .mdl-dropdown__title mdl-service-tile atm-link[color=lightGray] a, mdl-service-tile atm-link[color=lightGray] .mdl-filter__label a, .mdl-filter__label mdl-service-tile atm-link[color=lightGray] a, mdl-service-tile atm-link[color=lightGray] .mdl-promo-textteaser__description, mdl-service-tile atm-link[color=lightGray] .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=lightGray] a, mdl-service-tile atm-link[color=lightGray] .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=lightGray] a {
    color: #9D9F9D;
}
mdl-service-tile atm-link[color=lightGray] .atm-link:hover, mdl-service-tile atm-link[color=lightGray] .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=lightGray] a:hover, mdl-service-tile atm-link[color=lightGray] .context-ghi .atm-ghi-link:hover, .context-ghi mdl-service-tile atm-link[color=lightGray] .atm-ghi-link:hover, mdl-service-tile atm-link[color=lightGray] .atm-paragraph a:hover, .atm-paragraph mdl-service-tile atm-link[color=lightGray] a:hover, mdl-service-tile atm-link[color=lightGray] .mdl-iconlist__link:hover, mdl-service-tile atm-link[color=lightGray] .mdl-richtext a:hover, .mdl-richtext mdl-service-tile atm-link[color=lightGray] a:hover, mdl-service-tile atm-link[color=lightGray] .mdl-input-list__label a:hover, .mdl-input-list__label mdl-service-tile atm-link[color=lightGray] a:hover, mdl-service-tile atm-link[color=lightGray] .mdl-dropdown__title a:hover, .mdl-dropdown__title mdl-service-tile atm-link[color=lightGray] a:hover, mdl-service-tile atm-link[color=lightGray] .mdl-filter__label a:hover, .mdl-filter__label mdl-service-tile atm-link[color=lightGray] a:hover, mdl-service-tile atm-link[color=lightGray] .mdl-promo-textteaser__description:hover, mdl-service-tile atm-link[color=lightGray] .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=lightGray] a:hover, mdl-service-tile atm-link[color=lightGray] .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=lightGray] a:hover {
    color: #767675;
}
mdl-service-tile atm-link[color=red] .atm-link, mdl-service-tile atm-link[color=red] .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=red] a, mdl-service-tile atm-link[color=red] .context-ghi .atm-ghi-link, .context-ghi mdl-service-tile atm-link[color=red] .atm-ghi-link, mdl-service-tile atm-link[color=red] .atm-paragraph a, .atm-paragraph mdl-service-tile atm-link[color=red] a, mdl-service-tile atm-link[color=red] .mdl-iconlist__link, mdl-service-tile atm-link[color=red] .mdl-richtext a, .mdl-richtext mdl-service-tile atm-link[color=red] a, mdl-service-tile atm-link[color=red] .mdl-input-list__label a, .mdl-input-list__label mdl-service-tile atm-link[color=red] a, mdl-service-tile atm-link[color=red] .mdl-dropdown__title a, .mdl-dropdown__title mdl-service-tile atm-link[color=red] a, mdl-service-tile atm-link[color=red] .mdl-filter__label a, .mdl-filter__label mdl-service-tile atm-link[color=red] a, mdl-service-tile atm-link[color=red] .mdl-promo-textteaser__description, mdl-service-tile atm-link[color=red] .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=red] a, mdl-service-tile atm-link[color=red] .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=red] a {
    color: #EE000C;
}
mdl-service-tile atm-link[color=red] .atm-link:hover, mdl-service-tile atm-link[color=red] .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=red] a:hover, mdl-service-tile atm-link[color=red] .context-ghi .atm-ghi-link:hover, .context-ghi mdl-service-tile atm-link[color=red] .atm-ghi-link:hover, mdl-service-tile atm-link[color=red] .atm-paragraph a:hover, .atm-paragraph mdl-service-tile atm-link[color=red] a:hover, mdl-service-tile atm-link[color=red] .mdl-iconlist__link:hover, mdl-service-tile atm-link[color=red] .mdl-richtext a:hover, .mdl-richtext mdl-service-tile atm-link[color=red] a:hover, mdl-service-tile atm-link[color=red] .mdl-input-list__label a:hover, .mdl-input-list__label mdl-service-tile atm-link[color=red] a:hover, mdl-service-tile atm-link[color=red] .mdl-dropdown__title a:hover, .mdl-dropdown__title mdl-service-tile atm-link[color=red] a:hover, mdl-service-tile atm-link[color=red] .mdl-filter__label a:hover, .mdl-filter__label mdl-service-tile atm-link[color=red] a:hover, mdl-service-tile atm-link[color=red] .mdl-promo-textteaser__description:hover, mdl-service-tile atm-link[color=red] .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=red] a:hover, mdl-service-tile atm-link[color=red] .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=red] a:hover {
    color: #C40017;
}
mdl-service-tile atm-link[color=violet] .atm-link, mdl-service-tile atm-link[color=violet] .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=violet] a, mdl-service-tile atm-link[color=violet] .context-ghi .atm-ghi-link, .context-ghi mdl-service-tile atm-link[color=violet] .atm-ghi-link, mdl-service-tile atm-link[color=violet] .atm-paragraph a, .atm-paragraph mdl-service-tile atm-link[color=violet] a, mdl-service-tile atm-link[color=violet] .mdl-iconlist__link, mdl-service-tile atm-link[color=violet] .mdl-richtext a, .mdl-richtext mdl-service-tile atm-link[color=violet] a, mdl-service-tile atm-link[color=violet] .mdl-input-list__label a, .mdl-input-list__label mdl-service-tile atm-link[color=violet] a, mdl-service-tile atm-link[color=violet] .mdl-dropdown__title a, .mdl-dropdown__title mdl-service-tile atm-link[color=violet] a, mdl-service-tile atm-link[color=violet] .mdl-filter__label a, .mdl-filter__label mdl-service-tile atm-link[color=violet] a, mdl-service-tile atm-link[color=violet] .mdl-promo-textteaser__description, mdl-service-tile atm-link[color=violet] .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=violet] a, mdl-service-tile atm-link[color=violet] .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=violet] a {
    color: #831080;
}
mdl-service-tile atm-link[color=violet] .atm-link:hover, mdl-service-tile atm-link[color=violet] .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=violet] a:hover, mdl-service-tile atm-link[color=violet] .context-ghi .atm-ghi-link:hover, .context-ghi mdl-service-tile atm-link[color=violet] .atm-ghi-link:hover, mdl-service-tile atm-link[color=violet] .atm-paragraph a:hover, .atm-paragraph mdl-service-tile atm-link[color=violet] a:hover, mdl-service-tile atm-link[color=violet] .mdl-iconlist__link:hover, mdl-service-tile atm-link[color=violet] .mdl-richtext a:hover, .mdl-richtext mdl-service-tile atm-link[color=violet] a:hover, mdl-service-tile atm-link[color=violet] .mdl-input-list__label a:hover, .mdl-input-list__label mdl-service-tile atm-link[color=violet] a:hover, mdl-service-tile atm-link[color=violet] .mdl-dropdown__title a:hover, .mdl-dropdown__title mdl-service-tile atm-link[color=violet] a:hover, mdl-service-tile atm-link[color=violet] .mdl-filter__label a:hover, .mdl-filter__label mdl-service-tile atm-link[color=violet] a:hover, mdl-service-tile atm-link[color=violet] .mdl-promo-textteaser__description:hover, mdl-service-tile atm-link[color=violet] .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=violet] a:hover, mdl-service-tile atm-link[color=violet] .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=violet] a:hover {
    color: #500049;
}
mdl-service-tile atm-link[color=black] .atm-link, mdl-service-tile atm-link[color=black] .context-ghi .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=black] a, mdl-service-tile atm-link[color=black] .context-ghi .atm-ghi-link, .context-ghi mdl-service-tile atm-link[color=black] .atm-ghi-link, mdl-service-tile atm-link[color=black] .atm-paragraph a, .atm-paragraph mdl-service-tile atm-link[color=black] a, mdl-service-tile atm-link[color=black] .mdl-iconlist__link, mdl-service-tile atm-link[color=black] .mdl-richtext a, .mdl-richtext mdl-service-tile atm-link[color=black] a, mdl-service-tile atm-link[color=black] .mdl-input-list__label a, .mdl-input-list__label mdl-service-tile atm-link[color=black] a, mdl-service-tile atm-link[color=black] .mdl-dropdown__title a, .mdl-dropdown__title mdl-service-tile atm-link[color=black] a, mdl-service-tile atm-link[color=black] .mdl-filter__label a, .mdl-filter__label mdl-service-tile atm-link[color=black] a, mdl-service-tile atm-link[color=black] .mdl-promo-textteaser__description, mdl-service-tile atm-link[color=black] .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=black] a, mdl-service-tile atm-link[color=black] .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=black] a {
    color: #282625;
}
mdl-service-tile atm-link[color=black] .atm-link:hover, mdl-service-tile atm-link[color=black] .context-ghi .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro mdl-service-tile atm-link[color=black] a:hover, mdl-service-tile atm-link[color=black] .context-ghi .atm-ghi-link:hover, .context-ghi mdl-service-tile atm-link[color=black] .atm-ghi-link:hover, mdl-service-tile atm-link[color=black] .atm-paragraph a:hover, .atm-paragraph mdl-service-tile atm-link[color=black] a:hover, mdl-service-tile atm-link[color=black] .mdl-iconlist__link:hover, mdl-service-tile atm-link[color=black] .mdl-richtext a:hover, .mdl-richtext mdl-service-tile atm-link[color=black] a:hover, mdl-service-tile atm-link[color=black] .mdl-input-list__label a:hover, .mdl-input-list__label mdl-service-tile atm-link[color=black] a:hover, mdl-service-tile atm-link[color=black] .mdl-dropdown__title a:hover, .mdl-dropdown__title mdl-service-tile atm-link[color=black] a:hover, mdl-service-tile atm-link[color=black] .mdl-filter__label a:hover, .mdl-filter__label mdl-service-tile atm-link[color=black] a:hover, mdl-service-tile atm-link[color=black] .mdl-promo-textteaser__description:hover, mdl-service-tile atm-link[color=black] .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation mdl-service-tile atm-link[color=black] a:hover, mdl-service-tile atm-link[color=black] .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text mdl-service-tile atm-link[color=black] a:hover {
    color: #000;
}
mdl-service-tile ul {
    list-style: none;
    padding: 0;
    margin: 1.6666666667rem 0;
}
mdl-service-tile ul service-tile-list-item {
    display: block;
    list-style: none;
    font-size: 1.1666666667rem;
    color: #767675;
    margin-bottom: 0.8333333333rem;
    height: 100%;
}
mdl-service-tile ul service-tile-list-item.orange .mdl-service-tile__icon {
    background: linear-gradient(to bottom right, #FFBA62, #FF8F18);
}
mdl-service-tile ul service-tile-list-item.green .mdl-service-tile__icon {
    background: linear-gradient(to bottom right, #69914B, #47692E);
}
mdl-service-tile ul service-tile-list-item.darkGray .mdl-service-tile__icon {
    background: #767675;
}
mdl-service-tile ul service-tile-list-item.lightGray .mdl-service-tile__icon {
    background: linear-gradient(to bottom right, #F1F1F1, #D1D1D1);
}
mdl-service-tile ul service-tile-list-item.red .mdl-service-tile__icon {
    background: linear-gradient(to bottom right, #FF5041, #C40017);
}
mdl-service-tile ul service-tile-list-item.violet .mdl-service-tile__icon {
    background: #500049;
}
mdl-service-tile ul service-tile-list-item.safeTGreen1 .mdl-service-tile__icon {
    background: linear-gradient(315deg, #AECA37 0%, #E4F696 100%);
}
mdl-service-tile ul service-tile-list-item.safeTGreen2 .mdl-service-tile__icon {
    background: linear-gradient(315deg, #74B743 0%, #B2E48D 100%);
}
mdl-service-tile ul service-tile-list-item.safeTGreen3 .mdl-service-tile__icon {
    background: linear-gradient(315deg, #0DA64B 0%, #44EE89 100%);
}
mdl-service-tile ul service-tile-list-item.safeTGreen4 .mdl-service-tile__icon {
    background: linear-gradient(315deg, #00773D 0%, #16DB7B 100%);
}
mdl-service-tile ul service-tile-list-item.safeTGreen5 .mdl-service-tile__icon {
    background: linear-gradient(315deg, #07542A 0%, #099E4D 100%);
}
mdl-service-tile ul service-tile-list-item.safeTGrey1 .mdl-service-tile__icon {
    background: linear-gradient(315deg, #C6C6C6 0%, #F4F4F4 100%);
}
mdl-service-tile .mdl-service-tile__icon {
    display: flex;
    padding: 1rem;
    background: linear-gradient(to bottom right, #A61711, #771511);
}
mdl-service-tile .mdl-service-tile__icon .atm-icon--xsmall {
    height: 1.6666666667rem;
    width: 1.6666666667rem;
    min-width: 1.6666666667rem;
    min-height: 1.6666666667rem;
}
mdl-service-tile .mdl-service-tile__label {
    margin-left: 0.8333333333rem;
}
mdl-service-tile .mdl-service-tile__link {
    display: flex;
    text-decoration: none;
    align-items: center;
    color: inherit;
}
@media all and (max-width: 63.99em) {
    mdl-service-tile .mdl-service-tile__link {
        display: flex;
    }
}

.mdl-color-tile {
    height: 100%;
    transition: box-shadow 200ms;
}
.mdl-color-tile:hover {
    box-shadow: 0 0.4444444444rem 0.8888888889rem 0 rgba(0, 0, 0, 0.2);
}
.mdl-color-tile a, .mdl-color-tile .mdl-color-tile-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}
.mdl-color-tile__icon {
    z-index: 1;
    display: flex;
    justify-content: center;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
}
.mdl-color-tile__icon .atm-icon--xxxxlarge {
    height: 10rem;
    width: 10rem;
    min-width: 10rem;
    min-height: 10rem;
    margin-top: 4.3333333333rem;
}
.mdl-color-tile__icon .atm-icon--xxlarge {
    height: 5.7777777778rem;
    width: 5.7777777778rem;
    min-width: 5.7777777778rem;
    min-height: 5.7777777778rem;
    margin-top: 1.6666666667rem;
}
.mdl-color-tile__footer {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 0 1.6666666667rem 1.6666666667rem 1.6666666667rem;
    color: #FFF;
    word-break: break-word;
}
.mdl-color-tile__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.95rem;
}
.mdl-color-tile .supertitle-spaced {
    margin-bottom: 1.5rem;
}
.mdl-color-tile__sub-title, .mdl-color-tile__super-title {
    line-height: 1.3rem;
}
.mdl-color-tile__container {
    height: 100%;
    position: relative;
}
.mdl-color-tile__mobile-container {
    height: 100%;
    position: relative;
}

@media all and (max-width: 63.99em) {
    .mdl-color-tile__sub-title, .mdl-color-tile__super-title {
        font-size: 0.8333333333rem;
    }
}
.mdl-image-tile {
    height: 100%;
    width: 100%;
    transition: box-shadow 200ms;
}
.mdl-image-tile:hover {
    box-shadow: 0 0.4444444444rem 0.8888888889rem 0 rgba(0, 0, 0, 0.2);
}
.mdl-image-tile a, .mdl-image-tile .mdl-image-tile-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}
.mdl-image-tile__small .mdl-image-tile__icon {
    margin-top: 0;
}
.mdl-image-tile__background {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
}
.mdl-image-tile img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    object-fit: cover;
}
.mdl-image-tile__overlay {
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 70.59%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.mdl-image-tile__icon {
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 2.1111111111rem;
    padding: 1.6666666667rem 1.6666666667rem 0 1.6666666667rem;
}
.mdl-image-tile__footer {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 0 1.6666666667rem 1.6666666667rem 1.6666666667rem;
    color: #FFF;
    word-break: break-word;
}
.mdl-image-tile__title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.95rem;
}
.mdl-image-tile .supertitle-spaced {
    margin-bottom: 1.5rem;
}
.mdl-image-tile__sub-title, .mdl-image-tile__super-title {
    line-height: 1.3rem;
}
.mdl-image-tile__container {
    height: 100%;
}

@media all and (max-width: 47.99em) {
    .mdl-image-tile__sub-title, .mdl-image-tile__super-title {
        font-size: 0.8333333333rem;
    }
}
mdl-tile-grid:not([data-edit-mode=true]) {
    width: calc(284 * 1px);
    min-width: calc(284 * 1px);
    margin: 0 auto;
    display: grid;
    grid-gap: 2.1666666667rem;
    box-sizing: border-box;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 29.5555555556rem;
    grid-auto-flow: row;
    margin-bottom: 6.2222222222rem;
}
@media (min-width: 320px) {
    mdl-tile-grid:not([data-edit-mode=true]) {
        width: calc(91.9642857143vw - 10.2857142857px);
    }
}
@media (min-width: 768px) {
    mdl-tile-grid:not([data-edit-mode=true]) {
        width: calc(100vw - 72px);
    }
}
@media (min-width: 1024px) {
    mdl-tile-grid:not([data-edit-mode=true]) {
        width: calc(87.5vw + 56px);
    }
}
@media (min-width: 1600px) {
    mdl-tile-grid:not([data-edit-mode=true]) {
        width: calc(1456 * 1px);
        max-width: calc(1456 * 1px);
    }
}
mdl-tile-grid:not([data-edit-mode=true]) mdl-image-tile,
mdl-tile-grid:not([data-edit-mode=true]) mdl-color-tile,
mdl-tile-grid:not([data-edit-mode=true]) mdl-service-tile {
    grid-column: span 1;
}
mdl-tile-grid:not([data-edit-mode=true]) mdl-image-tile[size=large],
mdl-tile-grid:not([data-edit-mode=true]) mdl-color-tile[size=large] {
    grid-column: span 2;
}
mdl-tile-grid:not([data-edit-mode=true]) .small-tile-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 13.6666666667rem;
    grid-gap: 2.1666666667rem;
}

@media all and (min-width: 64em) and (max-width: 99.99em) {
    mdl-tile-grid:not([data-edit-mode=true]) {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 27.2222222222rem;
    }
    mdl-tile-grid:not([data-edit-mode=true]) mdl-image-tile[size=medium],
    mdl-tile-grid:not([data-edit-mode=true]) mdl-color-tile[size=medium] {
        grid-column: span 1;
    }
    mdl-tile-grid:not([data-edit-mode=true]) .small-tile-container {
        grid-auto-rows: 12.5rem;
    }
    mdl-tile-grid:not([data-edit-mode=true]) .small-tile-container.last {
        grid-column: span 2;
        grid-auto-rows: 26.0555555556rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 100%;
        grid-gap: 2.2222222222rem;
    }
}
@media all and (max-width: 63.99em) {
    mdl-tile-grid:not([data-edit-mode=true]) {
        grid-gap: 0.8333333333rem;
        grid-template-columns: repeat(1, 1fr);
        grid-auto-rows: 27.5rem;
    }
    mdl-tile-grid:not([data-edit-mode=true]) mdl-image-tile,
    mdl-tile-grid:not([data-edit-mode=true]) mdl-color-tile,
    mdl-tile-grid:not([data-edit-mode=true]) mdl-service-tile {
        grid-column: span 2;
    }
    mdl-tile-grid:not([data-edit-mode=true]) .small-tile-container {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 13.3333333333rem;
        grid-row-gap: 0.8333333333rem;
    }
}
mdl-tile-grid[data-edit-mode=true] mdl-image-tile[size=large] img[slot=image] {
    height: 532px;
    width: 709px;
}
mdl-tile-grid[data-edit-mode=true] mdl-image-tile[size=large] img[slot=image-mobile] {
    display: none;
}
mdl-tile-grid[data-edit-mode=true] mdl-image-tile[size=medium] img[slot=image] {
    height: 532px;
    width: 334px;
}
mdl-tile-grid[data-edit-mode=true] mdl-image-tile[size=small] img[slot=image] {
    height: 246px;
    width: 334px;
}
mdl-tile-grid[data-edit-mode=true] mdl-image-tile,
mdl-tile-grid[data-edit-mode=true] mdl-color-tile {
    display: flex;
    flex-direction: column;
}

@media print {
    .print {
        display: inherit;
    }
}
/* stylelint-disable */
/* stylelint-enable */
.context-ghi .atm-ghi-page-title {
    display: flex;
    font-size: calc(28 * 1px);
    font-family: "Merriweather", serif;
    line-height: 1.4;
    margin-top: 1.666rem;
    flex-direction: column;
    color: #282625;
    word-break: break-word;
    hyphens: auto;
}
@media (min-width: 0px) {
    .context-ghi .atm-ghi-page-title {
        font-size: calc(0vw + 28px);
    }
}
@media (min-width: 768px) {
    .context-ghi .atm-ghi-page-title {
        font-size: calc(7.8125vw - 32px);
    }
}
@media (min-width: 1024px) {
    .context-ghi .atm-ghi-page-title {
        font-size: calc(1.7361111111vw + 30.2222222222px);
    }
}
@media (min-width: 1600px) {
    .context-ghi .atm-ghi-page-title {
        font-size: calc(58 * 1px);
    }
}
@media all and (min-width: 0em) {
    .context-ghi .atm-ghi-page-title {
        margin-bottom: 2.1666666667rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .atm-ghi-page-title {
        margin-bottom: 3.2222222222rem;
    }
}
.context-ghi .atm-ghi-link {
    min-height: 1.6666666667rem;
    display: inline-flex;
    align-items: center;
    color: #282625;
}
.context-ghi .atm-ghi-link .atm-icon use, .context-ghi .atm-ghi-link .mdl-richtext a[download] > svg use, .mdl-richtext .context-ghi .atm-ghi-link a[download] > svg use, .context-ghi .atm-ghi-link .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .context-ghi .atm-ghi-link a.atm-link--external > svg use,
.context-ghi .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .context-ghi .atm-ghi-link a.atm-link--external > svg use {
    fill: #282625;
}
.context-ghi .atm-ghi-link:hover {
    color: #403F3F;
}
.context-ghi .atm-ghi-link:hover .atm-icon use, .context-ghi .atm-ghi-link:hover .mdl-richtext a[download] > svg use, .mdl-richtext .context-ghi .atm-ghi-link:hover a[download] > svg use, .context-ghi .atm-ghi-link:hover .mdl-richtext p a.atm-link--external > svg use, .mdl-richtext p .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .atm-ghi-link:hover .mdl-richtext ul a.atm-link--external > svg use,
.mdl-richtext ul .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use,
.context-ghi .atm-ghi-link:hover .mdl-richtext ol a.atm-link--external > svg use,
.mdl-richtext ol .context-ghi .atm-ghi-link:hover a.atm-link--external > svg use {
    fill: #403F3F;
}
.context-ghi .atm-ghi-link:hover:before {
    background: #6F8D59;
}
.context-ghi .atm-ghi-link--tag-nav {
    color: #282625;
    line-height: 1.7;
    align-items: flex-start;
}
.context-ghi .atm-ghi-link--tag-nav:before {
    display: none;
}
.context-ghi .atm-ghi-link--tag-nav .atm-icon:first-child, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .atm-ghi-link--tag-nav a[download] > svg:first-child, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child,
.context-ghi .atm-ghi-link--tag-nav .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child,
.context-ghi .atm-ghi-link--tag-nav .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child {
    padding-left: 0;
    margin-left: 0;
    height: 1.8888888889rem;
    width: 1.8888888889rem;
    min-width: 1.8888888889rem;
    min-height: 1.8888888889rem;
}
@media all and (min-width: 0em) {
    .context-ghi .atm-ghi-link--tag-nav .atm-icon:first-child, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .atm-ghi-link--tag-nav a[download] > svg:first-child, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child,
    .context-ghi .atm-ghi-link--tag-nav .mdl-richtext ul a.atm-link--external > svg:first-child,
    .mdl-richtext ul .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child,
    .context-ghi .atm-ghi-link--tag-nav .mdl-richtext ol a.atm-link--external > svg:first-child,
    .mdl-richtext ol .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child {
        margin-right: 1.4444444444rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .atm-ghi-link--tag-nav .atm-icon:first-child, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .atm-ghi-link--tag-nav a[download] > svg:first-child, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child,
    .context-ghi .atm-ghi-link--tag-nav .mdl-richtext ul a.atm-link--external > svg:first-child,
    .mdl-richtext ul .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child,
    .context-ghi .atm-ghi-link--tag-nav .mdl-richtext ol a.atm-link--external > svg:first-child,
    .mdl-richtext ol .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child {
        margin-right: 2.1666666667rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .atm-ghi-link--tag-nav .atm-icon:first-child, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .atm-ghi-link--tag-nav a[download] > svg:first-child, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child,
    .context-ghi .atm-ghi-link--tag-nav .mdl-richtext ul a.atm-link--external > svg:first-child,
    .mdl-richtext ul .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child,
    .context-ghi .atm-ghi-link--tag-nav .mdl-richtext ol a.atm-link--external > svg:first-child,
    .mdl-richtext ol .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child {
        height: 2.2222222222rem;
        width: 2.2222222222rem;
        min-width: 2.2222222222rem;
        min-height: 2.2222222222rem;
    }
}
.context-ghi .atm-ghi-link--tag-nav .atm-icon:first-child use, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext a[download] > svg:first-child use, .mdl-richtext .context-ghi .atm-ghi-link--tag-nav a[download] > svg:first-child use, .context-ghi .atm-ghi-link--tag-nav .mdl-richtext p a.atm-link--external > svg:first-child use, .mdl-richtext p .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child use,
.context-ghi .atm-ghi-link--tag-nav .mdl-richtext ul a.atm-link--external > svg:first-child use,
.mdl-richtext ul .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child use,
.context-ghi .atm-ghi-link--tag-nav .mdl-richtext ol a.atm-link--external > svg:first-child use,
.mdl-richtext ol .context-ghi .atm-ghi-link--tag-nav a.atm-link--external > svg:first-child use {
    fill: #A61711;
}
.context-ghi .atm-ghi-link--highlighted {
    font-family: "Frutiger LT W02_55 Roman", Frutiger, sans-serif;
}
.context-ghi .atm-ghi-link:not(.atm-ghi-link--tag-nav) {
    text-decoration: underline;
    text-decoration-color: #4B6A33;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}
.context-ghi .atm-ghi-breadcrumb li {
    display: flex;
}
.context-ghi .atm-ghi-breadcrumb li a:link,
.context-ghi .atm-ghi-breadcrumb li a:visited {
    font-size: 1rem;
    color: #767675;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}
.context-ghi .atm-ghi-breadcrumb li:not(:first-child) a:hover {
    text-decoration: underline;
}
.context-ghi .atm-ghi-breadcrumb li:not(:last-child):after {
    display: inline-block;
    margin: 0 0.5rem;
    content: "/";
}
.context-ghi .atm-ghi-breadcrumb li:last-child {
    padding-right: 1.1111111111rem;
}
.context-ghi .atm-ghi-breadcrumb__links-container {
    overflow-y: scroll;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    --mask: linear-gradient(to right, rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 0) 100% 50% / 100% 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}
.context-ghi .atm-ghi-title {
    color: #282625;
    font-family: "Merriweather", serif;
    line-height: 1.4;
    font-size: calc(26 * 1px);
}
@media all and (min-width: 0em) {
    .context-ghi .atm-ghi-title {
        margin-top: 1.6666666667rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .atm-ghi-title {
        margin-top: 3.1111111111rem;
    }
}
@media all and (min-width: 0em) {
    .context-ghi .atm-ghi-title {
        margin-bottom: 1.6666666667rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .atm-ghi-title {
        margin-bottom: 3.1111111111rem;
    }
}
@media (min-width: 0px) {
    .context-ghi .atm-ghi-title {
        font-size: calc(1.5625vw + 26px);
    }
}
@media (min-width: 1024px) {
    .context-ghi .atm-ghi-title {
        font-size: calc(42 * 1px);
    }
}
.context-ghi .atm-ghi-button, .context-ghi .mdl-documentsend {
    padding: 1rem 3.4444444444rem;
}
.context-ghi .atm-ghi-button--noborder {
    border-color: transparent;
}
.context-ghi .atm-ghi-button--noborder:hover {
    border-color: transparent;
}
.context-ghi .atm-ghi-button--fullwidth {
    width: 100%;
    display: flex;
    justify-content: center;
}
.context-ghi .mdl-ghi-article-references {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 2.1666666667rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-article-references {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-article-references {
        flex-basis: 39.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 39.01179941%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-article-references {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 29.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-article-references {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-article-references {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-article-references {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-article-references {
        margin-left: 17.994100295%;
    }
}
.context-ghi .mdl-ghi-article-references__pubdate {
    line-height: 2;
    font-size: 0.8333333333rem;
}
.context-ghi .mdl-ghi-article-references__authors, .context-ghi .mdl-ghi-article-references__artists {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0;
}
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__author,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__author-title,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__artist,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__artist-title, .context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__author,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__author-title,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__artist,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__artist-title {
    line-height: 2;
    font-size: 0.8333333333rem;
}
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__author address,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__author-title address,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__artist address,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__artist-title address, .context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__author address,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__author-title address,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__artist address,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__artist-title address {
    font-style: normal;
}
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__author:not(:last-child) address:after,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__author-title:not(:last-child) address:after,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__artist:not(:last-child) address:after,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__artist-title:not(:last-child) address:after, .context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__author:not(:last-child) address:after,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__author-title:not(:last-child) address:after,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__artist:not(:last-child) address:after,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__artist-title:not(:last-child) address:after {
    content: ", ";
    white-space: pre;
}
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__author-title:after,
.context-ghi .mdl-ghi-article-references__authors .mdl-ghi-article-references__artist-title:after, .context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__author-title:after,
.context-ghi .mdl-ghi-article-references__artists .mdl-ghi-article-references__artist-title:after {
    content: " ";
    white-space: pre;
}
.context-ghi .mdl-ghi-dossier-teaser {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    background: linear-gradient(to bottom, #F1F1F1, #FFF);
    display: flex;
    flex-direction: column;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-dossier-teaser {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-dossier-teaser {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 47.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-dossier-teaser {
        flex-basis: 46.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 46.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-dossier-teaser {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 47.3451327434%;
    }
}
.context-ghi .mdl-ghi-dossier-teaser-box-header {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    margin: 0;
}
.context-ghi .mdl-ghi-dossier-teaser-box-header:before, .context-ghi .mdl-ghi-dossier-teaser-box-header:after {
    content: "";
    display: inline-block;
    height: 1px;
    background: #403F3F;
    flex-basis: 1em;
    flex-grow: 1;
}
.context-ghi .mdl-ghi-dossier-teaser-box-header:before {
    margin-right: 1.1111111111rem;
}
.context-ghi .mdl-ghi-dossier-teaser-box-header:after {
    margin-left: 1.1111111111rem;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-dossier-teaser-box-header:before {
        margin-right: 2.7222222222rem;
    }
    .context-ghi .mdl-ghi-dossier-teaser-box-header:after {
        margin-left: 2.7222222222rem;
    }
}
@media all and (min-width: 0em) {
    .context-ghi .mdl-ghi-dossier-teaser {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-dossier-teaser {
        padding-top: 2.5555555556rem;
        padding-bottom: 2.5555555556rem;
    }
}
@media all and (min-width: 0em) {
    .context-ghi .mdl-ghi-dossier-teaser {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-dossier-teaser {
        padding-left: 2.1666666667rem;
        padding-right: 2.1666666667rem;
    }
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-dossier-teaser {
        min-width: 100vw;
        position: relative;
        margin-left: 50%;
        left: -50vw;
        display: flex;
    }
    .is-ie .context-ghi .mdl-ghi-dossier-teaser {
        max-width: calc(100vw - calc(17 * 1px));
        margin-left: calc(50% + (calc(8.5 * 1px)));
    }
}
.context-ghi .mdl-ghi-dossier-teaser-box-header {
    margin-bottom: 1rem;
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-dossier-teaser-box-header {
        margin-bottom: 2.1666666667rem;
    }
}
.context-ghi .mdl-ghi-dossier-teaser__title {
    font-size: 1.3333333333rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-dossier-teaser__title {
        font-size: 1.5555555556rem;
    }
}
.context-ghi .mdl-ghi-dossier-teaser__content {
    order: 2;
    padding-top: 0.5rem;
}
.context-ghi .mdl-ghi-dossier-teaser__image {
    order: 1;
    display: inline-flex;
    flex: 0 0 auto !important;
}
.context-ghi .mdl-ghi-dossier-teaser-box-header, .context-ghi .mdl-ghi-dossier-teaser__content {
    flex: 1 1 auto !important;
}
.context-ghi .mdl-ghi-dossier-teaser .atm-link, .context-ghi .mdl-ghi-dossier-teaser .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-iconlist__link, .context-ghi .mdl-ghi-dossier-teaser .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-dossier-teaser .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .atm-ghi-link {
    margin-top: 0.5rem;
    color: #A61711;
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-dossier-teaser .atm-link, .context-ghi .mdl-ghi-dossier-teaser .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-iconlist__link, .context-ghi .mdl-ghi-dossier-teaser .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-dossier-teaser .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-dossier-teaser a, .context-ghi .mdl-ghi-dossier-teaser .atm-ghi-link {
        margin-top: 1rem;
    }
}
.context-ghi .mdl-ghi-dossier-teaser .atm-link:hover, .context-ghi .mdl-ghi-dossier-teaser .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-dossier-teaser a:hover, .context-ghi .mdl-ghi-dossier-teaser .atm-paragraph a:hover, .atm-paragraph .context-ghi .mdl-ghi-dossier-teaser a:hover, .context-ghi .mdl-ghi-dossier-teaser .mdl-iconlist__link:hover, .context-ghi .mdl-ghi-dossier-teaser .mdl-richtext a:hover, .mdl-richtext .context-ghi .mdl-ghi-dossier-teaser a:hover, .context-ghi .mdl-ghi-dossier-teaser .mdl-input-list__label a:hover, .mdl-input-list__label .context-ghi .mdl-ghi-dossier-teaser a:hover, .context-ghi .mdl-ghi-dossier-teaser .mdl-dropdown__title a:hover, .mdl-dropdown__title .context-ghi .mdl-ghi-dossier-teaser a:hover, .context-ghi .mdl-ghi-dossier-teaser .mdl-filter__label a:hover, .mdl-filter__label .context-ghi .mdl-ghi-dossier-teaser a:hover, .context-ghi .mdl-ghi-dossier-teaser .mdl-promo-textteaser__description:hover, .context-ghi .mdl-ghi-dossier-teaser .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-dossier-teaser a:hover, .context-ghi .mdl-ghi-dossier-teaser .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-dossier-teaser a:hover, .context-ghi .mdl-ghi-dossier-teaser .atm-ghi-link:hover {
    color: #771511;
}
.context-ghi .mdl-ghi-teaser {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    text-decoration: none;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser {
        margin-left: 17.994100295%;
    }
}
.context-ghi .mdl-ghi-teaser:hover .mdl-ghi-teaser__title {
    color: #767675;
}
.context-ghi .mdl-ghi-teaser__grid {
    display: flex;
    flex-direction: row-reverse;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser__grid {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser__grid {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser__grid {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser__grid {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 48em) {
    .context-ghi .mdl-ghi-teaser__grid {
        display: flex;
        flex: 0 0 auto;
        flex-wrap: wrap;
    }
}
@media all and (min-width: 48em) and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser__grid {
        margin-left: -1.885924563%;
        margin-right: -1.885924563%;
    }
}
@media all and (min-width: 48em) and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser__grid {
        margin-left: -2.0179372197%;
        margin-right: -2.0179372197%;
    }
}
@media all and (min-width: 48em) and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser__grid {
        margin-left: -2.8301886792%;
        margin-right: -2.8301886792%;
    }
}
@media all and (min-width: 48em) and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser__grid {
        margin-left: -2.0179372197%;
        margin-right: -2.0179372197%;
    }
}
.context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__content {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__content {
        flex-basis: 61.5734989648%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__content {
        flex-basis: 70.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__content {
        flex-basis: 69.3396226415%;
        margin-left: 2.8301886792%;
        margin-right: 2.8301886792%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__content {
        flex-basis: 70.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
    }
}
.context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__image {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    line-height: 0;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__image {
        flex-basis: 28.2401656315%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__image {
        flex-basis: 20.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__image {
        flex-basis: 19.3396226415%;
        margin-left: 2.8301886792%;
        margin-right: 2.8301886792%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser:not(.mdl-ghi-teaser--horizontal) .mdl-ghi-teaser__image {
        flex-basis: 20.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
    }
}
.context-ghi .mdl-ghi-teaser__subtitle {
    font-size: 0.8333333333rem;
    color: #403F3F;
    font-family: "Frutiger LT W02_55 Roman", Frutiger, sans-serif;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}
.context-ghi .mdl-ghi-teaser__title {
    font-size: calc(18 * 1px);
    line-height: 1.3;
    color: #282625;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
    word-break: break-word;
}
@media (min-width: 0px) {
    .context-ghi .mdl-ghi-teaser__title {
        font-size: calc(0.9765625vw + 18px);
    }
}
@media (min-width: 1024px) {
    .context-ghi .mdl-ghi-teaser__title {
        font-size: calc(28 * 1px);
    }
}
@media all and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser__title {
        font-size: 1rem;
    }
}
.context-ghi .mdl-ghi-teaser--horizontal {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 22.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal {
        flex-basis: 21.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 21.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser--horizontal {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 22.3451327434%;
    }
}
.context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__grid {
    flex-direction: column-reverse;
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__grid {
        flex-direction: row-reverse;
    }
}
.context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__content,
.context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__image {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__content,
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__image {
        flex-basis: 44.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 44.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__content,
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__image {
        flex-basis: 95.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
        max-width: 95.9641255605%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__content,
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__image {
        flex-basis: 94.3396226415%;
        margin-left: 2.8301886792%;
        margin-right: 2.8301886792%;
        max-width: 94.3396226415%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__content,
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__image {
        flex-basis: 95.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
        max-width: 95.9641255605%;
    }
}
.context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__content {
    padding-top: 0;
}
@media all and (min-width: 48em) {
    .context-ghi .mdl-ghi-teaser--horizontal .mdl-ghi-teaser__content {
        padding-top: 1rem;
    }
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--inverted .mdl-ghi-teaser__grid {
        flex-direction: row;
    }
}
.context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 47.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big {
        flex-basis: 46.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 46.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 47.3451327434%;
    }
}
.context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__content,
.context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__image {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__content,
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__image {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__content,
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__image {
        flex-basis: 95.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
        max-width: 95.9641255605%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__content,
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__image {
        flex-basis: 94.3396226415%;
        margin-left: 2.8301886792%;
        margin-right: 2.8301886792%;
        max-width: 94.3396226415%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__content,
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__image {
        flex-basis: 95.9641255605%;
        margin-left: 2.0179372197%;
        margin-right: 2.0179372197%;
        max-width: 95.9641255605%;
    }
}
.context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__content {
    padding-top: 1rem;
}
.context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__grid {
    flex-wrap: nowrap;
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser--horizontal.mdl-ghi-teaser--big .mdl-ghi-teaser__grid {
        flex-direction: column-reverse;
    }
}
.context-ghi .mdl-ghi-teaser-list {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser-list {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser-list {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser-list {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 96.2962962963%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser-list {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 97.3451327434%;
    }
}
.context-ghi .mdl-ghi-teaser-list--topline {
    border-top: 1px solid #CDCDCD;
}
@media all and (min-width: 0em) {
    .context-ghi .mdl-ghi-teaser-list--topline {
        padding-top: 2.1666666667rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-teaser-list--topline {
        padding-top: 3.2222222222rem;
    }
}
.context-ghi .mdl-ghi-teaser-list__list {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    row-gap: 1.5555555556rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser-list__list {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser-list__list {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser-list__list {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser-list__list {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser-list--show-alternating .mdl-ghi-teaser--horizontal:not(.mdl-ghi-teaser--big):nth-child(odd) .mdl-ghi-teaser__grid {
        flex-direction: row;
    }
    .context-ghi .mdl-ghi-teaser-list--show-alternating .mdl-ghi-teaser--horizontal:not(.mdl-ghi-teaser--big):nth-child(even) .mdl-ghi-teaser__grid {
        flex-direction: row-reverse;
    }
    .context-ghi .mdl-ghi-teaser-list--show-left-side-row-reverse .mdl-ghi-teaser--horizontal:not(.mdl-ghi-teaser--big) .mdl-ghi-teaser__grid {
        flex-direction: row-reverse;
    }
}
@media all and (min-width: 48em) {
    .context-ghi .mdl-ghi-teaser-list--horizontal .mdl-ghi-teaser-list__list {
        flex-flow: row wrap;
        align-items: flex-start;
    }
}
.context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .atm-heading, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h2,
.context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h3,
.mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h3,
.context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h4,
.mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h4, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-sub-navigation__title,
.context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-ghi-teaser-list__results {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .atm-heading, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h2,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h3,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h3,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h4,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h4, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-sub-navigation__title,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-ghi-teaser-list__results {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .atm-heading, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h2,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h3,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h3,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h4,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h4, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-sub-navigation__title,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-ghi-teaser-list__results {
        flex-basis: 85.98820059%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 85.98820059%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .atm-heading, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h2,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h3,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h3,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h4,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h4, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-sub-navigation__title,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-ghi-teaser-list__results {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 62.962962963%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .atm-heading, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h2,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h3,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h3,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h4,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h4, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-sub-navigation__title,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-ghi-teaser-list__results {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 64.01179941%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .atm-heading, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h2,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h3,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h3,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h4,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h4, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-sub-navigation__title,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-ghi-teaser-list__results {
        margin-left: 7.005899705%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .atm-heading, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h2,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h3,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h3,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h4,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h4, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-sub-navigation__title,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-ghi-teaser-list__results {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .atm-heading, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h2,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h3,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h3,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-richtext h4,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title h4, .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-sub-navigation__title,
    .context-ghi .mdl-ghi-teaser-list:not(.mdl-ghi-teaser-list--horizontal) .mdl-ghi-teaser-list__title .mdl-ghi-teaser-list__results {
        margin-left: 17.994100295%;
    }
}
.context-ghi .mdl-ghi-teaser-list__title .atm-ghi-title {
    margin-top: 0;
    margin-bottom: 1rem;
}
@media all and (min-width: 0em) {
    .context-ghi .mdl-ghi-teaser-list__title .atm-ghi-title {
        font-size: 1.3333333333rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-teaser-list__title .atm-ghi-title {
        font-size: 1.5555555556rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-teaser-list__title .atm-ghi-title {
        margin-bottom: 1.5555555556rem;
    }
}
.context-ghi .mdl-ghi-teaser-list .atm-heading, .context-ghi .mdl-ghi-teaser-list .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list h2,
.context-ghi .mdl-ghi-teaser-list .mdl-richtext h3,
.mdl-richtext .context-ghi .mdl-ghi-teaser-list h3,
.context-ghi .mdl-ghi-teaser-list .mdl-richtext h4,
.mdl-richtext .context-ghi .mdl-ghi-teaser-list h4, .context-ghi .mdl-ghi-teaser-list .mdl-sub-navigation__title {
    margin-bottom: 2.1666666667rem;
    font-size: 2.3333333333rem;
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser-list .atm-heading, .context-ghi .mdl-ghi-teaser-list .mdl-offer_card__lead, .context-ghi .mdl-ghi-teaser-list .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-teaser-list h2,
    .context-ghi .mdl-ghi-teaser-list .mdl-richtext h3,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list h3,
    .context-ghi .mdl-ghi-teaser-list .mdl-richtext h4,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list h4, .context-ghi .mdl-ghi-teaser-list .mdl-sub-navigation__title {
        font-size: calc(2.34375vw + 24px);
    }
}
.context-ghi .mdl-ghi-teaser-list__control {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser-list__control {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser-list__control {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser-list__control {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser-list__control {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 0em) {
    .context-ghi .mdl-ghi-teaser-list__control {
        padding-top: 2.1666666667rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-teaser-list__control {
        padding-top: 3.2222222222rem;
    }
}
.context-ghi .mdl-ghi-teaser-list__control .atm-button, .context-ghi .mdl-ghi-teaser-list__control .atm-link--btn, .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-button, .context-ghi .mdl-ghi-teaser-list__control .mdl-documentsend,
.context-ghi .mdl-ghi-teaser-list__control .atm-link,
.context-ghi .mdl-ghi-teaser-list__control .mdl-ghi_pdf_download_form-intro a,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-teaser-list__control a,
.context-ghi .mdl-ghi-teaser-list__control .atm-paragraph a,
.atm-paragraph .context-ghi .mdl-ghi-teaser-list__control a,
.context-ghi .mdl-ghi-teaser-list__control .mdl-iconlist__link,
.context-ghi .mdl-ghi-teaser-list__control .mdl-richtext a,
.mdl-richtext .context-ghi .mdl-ghi-teaser-list__control a,
.context-ghi .mdl-ghi-teaser-list__control .mdl-input-list__label a,
.mdl-input-list__label .context-ghi .mdl-ghi-teaser-list__control a,
.context-ghi .mdl-ghi-teaser-list__control .mdl-dropdown__title a,
.mdl-dropdown__title .context-ghi .mdl-ghi-teaser-list__control a,
.context-ghi .mdl-ghi-teaser-list__control .mdl-filter__label a,
.mdl-filter__label .context-ghi .mdl-ghi-teaser-list__control a,
.context-ghi .mdl-ghi-teaser-list__control .mdl-promo-textteaser__description,
.context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__height-representation a,
.mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-teaser-list__control a,
.context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__text a,
.mdl-plain-text-accordion__text .context-ghi .mdl-ghi-teaser-list__control a,
.context-ghi .mdl-ghi-teaser-list__control .atm-ghi-link {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    justify-content: center;
    flex-basis: max-content !important;
    max-width: max-content !important;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser-list__control .atm-button, .context-ghi .mdl-ghi-teaser-list__control .atm-link--btn, .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-button, .context-ghi .mdl-ghi-teaser-list__control .mdl-documentsend,
    .context-ghi .mdl-ghi-teaser-list__control .atm-link,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-ghi_pdf_download_form-intro a,
    .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .atm-paragraph a,
    .atm-paragraph .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-iconlist__link,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-richtext a,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-input-list__label a,
    .mdl-input-list__label .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-dropdown__title a,
    .mdl-dropdown__title .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-filter__label a,
    .mdl-filter__label .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-promo-textteaser__description,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__height-representation a,
    .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__text a,
    .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-link {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser-list__control .atm-button, .context-ghi .mdl-ghi-teaser-list__control .atm-link--btn, .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-button, .context-ghi .mdl-ghi-teaser-list__control .mdl-documentsend,
    .context-ghi .mdl-ghi-teaser-list__control .atm-link,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-ghi_pdf_download_form-intro a,
    .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .atm-paragraph a,
    .atm-paragraph .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-iconlist__link,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-richtext a,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-input-list__label a,
    .mdl-input-list__label .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-dropdown__title a,
    .mdl-dropdown__title .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-filter__label a,
    .mdl-filter__label .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-promo-textteaser__description,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__height-representation a,
    .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__text a,
    .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-link {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-teaser-list__control .atm-button, .context-ghi .mdl-ghi-teaser-list__control .atm-link--btn, .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-button, .context-ghi .mdl-ghi-teaser-list__control .mdl-documentsend,
    .context-ghi .mdl-ghi-teaser-list__control .atm-link,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-ghi_pdf_download_form-intro a,
    .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .atm-paragraph a,
    .atm-paragraph .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-iconlist__link,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-richtext a,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-input-list__label a,
    .mdl-input-list__label .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-dropdown__title a,
    .mdl-dropdown__title .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-filter__label a,
    .mdl-filter__label .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-promo-textteaser__description,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__height-representation a,
    .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__text a,
    .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-link {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 29.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-teaser-list__control .atm-button, .context-ghi .mdl-ghi-teaser-list__control .atm-link--btn, .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-button, .context-ghi .mdl-ghi-teaser-list__control .mdl-documentsend,
    .context-ghi .mdl-ghi-teaser-list__control .atm-link,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-ghi_pdf_download_form-intro a,
    .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .atm-paragraph a,
    .atm-paragraph .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-iconlist__link,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-richtext a,
    .mdl-richtext .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-input-list__label a,
    .mdl-input-list__label .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-dropdown__title a,
    .mdl-dropdown__title .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-filter__label a,
    .mdl-filter__label .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-promo-textteaser__description,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__height-representation a,
    .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__text a,
    .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-teaser-list__control a,
    .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-link {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-teaser-list__control .atm-link, .context-ghi .mdl-ghi-teaser-list__control .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-teaser-list__control a, .context-ghi .mdl-ghi-teaser-list__control .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-teaser-list__control a, .context-ghi .mdl-ghi-teaser-list__control .mdl-iconlist__link, .context-ghi .mdl-ghi-teaser-list__control .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-teaser-list__control a, .context-ghi .mdl-ghi-teaser-list__control .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-teaser-list__control a, .context-ghi .mdl-ghi-teaser-list__control .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-teaser-list__control a, .context-ghi .mdl-ghi-teaser-list__control .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-teaser-list__control a, .context-ghi .mdl-ghi-teaser-list__control .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-teaser-list__control a, .context-ghi .mdl-ghi-teaser-list__control .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-teaser-list__control a, .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-link,
    .context-ghi .mdl-ghi-teaser-list__control .atm-button,
    .context-ghi .mdl-ghi-teaser-list__control .atm-link--btn,
    .context-ghi .mdl-ghi-teaser-list__control .atm-ghi-button,
    .context-ghi .mdl-ghi-teaser-list__control .mdl-documentsend {
        flex-grow: 1;
    }
}
.context-ghi .mdl-ghi-teaser-list__results {
    margin-bottom: 2rem;
    font-size: 0.8333333333rem;
}
@media all and (min-width: 48em) {
    .context-ghi .mdl-ghi-teaser-list {
        margin-bottom: 4rem;
    }
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-teaser-list {
        margin-bottom: 2.1666666667rem;
    }
}
.context-ghi .mdl-ghi-tag-navigation {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-tag-navigation {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 94.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-tag-navigation {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-tag-navigation {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 29.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-tag-navigation {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-tag-navigation {
        margin-left: 34.6607669617%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-tag-navigation {
        margin-left: 35.1851851852%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-tag-navigation {
        margin-left: 34.6607669617%;
    }
}
.context-ghi .mdl-ghi-tag-navigation__content-box-header {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    margin: 0;
}
.context-ghi .mdl-ghi-tag-navigation__content-box-header:before, .context-ghi .mdl-ghi-tag-navigation__content-box-header:after {
    content: "";
    display: inline-block;
    height: 1px;
    background: #403F3F;
    flex-basis: 1em;
    flex-grow: 1;
}
.context-ghi .mdl-ghi-tag-navigation__content-box-header:before {
    margin-right: 1.1111111111rem;
}
.context-ghi .mdl-ghi-tag-navigation__content-box-header:after {
    margin-left: 1.1111111111rem;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-tag-navigation__content-box-header:before {
        margin-right: 2.7222222222rem;
    }
    .context-ghi .mdl-ghi-tag-navigation__content-box-header:after {
        margin-left: 2.7222222222rem;
    }
}
.context-ghi .mdl-ghi-tag-navigation__content-box-header {
    margin-bottom: 2.1666666667rem;
}
.context-ghi .mdl-ghi-socialnavigation {
    background: linear-gradient(to bottom right, #F1F1F1, #FFF);
    padding-top: 2.1666666667rem;
    padding-bottom: 4rem;
}
.context-ghi .mdl-ghi-socialnavigation__row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-socialnavigation__row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-socialnavigation__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-socialnavigation__row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-socialnavigation__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.context-ghi .mdl-ghi-socialnavigation__cell {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-socialnavigation__cell {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-socialnavigation__cell {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-socialnavigation__cell {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-socialnavigation__cell {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-socialnavigation__cell {
        margin-left: 17.994100295%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-socialnavigation__cell {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-socialnavigation__cell {
        margin-left: 34.6607669617%;
    }
}
.context-ghi .mdl-ghi-socialnavigation__title {
    margin-bottom: 2.1666666667rem;
}
.context-ghi .mdl-ghi-socialnavigation__title-box-header {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    margin: 0;
}
.context-ghi .mdl-ghi-socialnavigation__title-box-header:before, .context-ghi .mdl-ghi-socialnavigation__title-box-header:after {
    content: "";
    display: inline-block;
    height: 1px;
    background: #403F3F;
    flex-basis: 1em;
    flex-grow: 1;
}
.context-ghi .mdl-ghi-socialnavigation__title-box-header:before {
    margin-right: 1.1111111111rem;
}
.context-ghi .mdl-ghi-socialnavigation__title-box-header:after {
    margin-left: 1.1111111111rem;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-socialnavigation__title-box-header:before {
        margin-right: 2.7222222222rem;
    }
    .context-ghi .mdl-ghi-socialnavigation__title-box-header:after {
        margin-left: 2.7222222222rem;
    }
}
.context-ghi .mdl-ghi-socialnavigation__title-box-header {
    white-space: nowrap;
    font-size: calc(18 * 1px);
    line-height: 1.5;
}
.context-ghi .mdl-ghi-socialnavigation__linklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 0;
    margin-bottom: 2.1666666667rem;
}
.context-ghi .mdl-ghi-socialnavigation__linklist-item {
    display: inline-flex;
    margin-right: 2.1666666667rem;
}
.context-ghi .mdl-ghi-socialnavigation__linklist-item:last-of-type {
    margin-right: 0;
}
.context-ghi .mdl-ghi-socialnavigation__linklist-item .atm-icon:first-child, .context-ghi .mdl-ghi-socialnavigation__linklist-item .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-socialnavigation__linklist-item a[download] > svg:first-child, .context-ghi .mdl-ghi-socialnavigation__linklist-item .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-socialnavigation__linklist-item a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-socialnavigation__linklist-item .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-socialnavigation__linklist-item a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-socialnavigation__linklist-item .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-socialnavigation__linklist-item a.atm-link--external > svg:first-child {
    margin: 0;
}
.context-ghi .mdl-ghi-socialnavigation__cta .atm-link, .context-ghi .mdl-ghi-socialnavigation__cta .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-socialnavigation__cta a, .context-ghi .mdl-ghi-socialnavigation__cta .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-socialnavigation__cta a, .context-ghi .mdl-ghi-socialnavigation__cta .mdl-iconlist__link, .context-ghi .mdl-ghi-socialnavigation__cta .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-socialnavigation__cta a, .context-ghi .mdl-ghi-socialnavigation__cta .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-socialnavigation__cta a, .context-ghi .mdl-ghi-socialnavigation__cta .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-socialnavigation__cta a, .context-ghi .mdl-ghi-socialnavigation__cta .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-socialnavigation__cta a, .context-ghi .mdl-ghi-socialnavigation__cta .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-socialnavigation__cta .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-socialnavigation__cta a, .context-ghi .mdl-ghi-socialnavigation__cta .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-socialnavigation__cta a, .context-ghi .mdl-ghi-socialnavigation__cta .atm-ghi-link {
    display: flex;
    justify-content: center;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-socialnavigation {
        padding-top: 4rem;
    }
}
.context-ghi .mdl-ghi-sibling-pages-navigation {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
.context-ghi .mdl-ghi-sibling-pages-navigation-box-header {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    margin: 0;
}
.context-ghi .mdl-ghi-sibling-pages-navigation-box-header:before, .context-ghi .mdl-ghi-sibling-pages-navigation-box-header:after {
    content: "";
    display: inline-block;
    height: 1px;
    background: #403F3F;
    flex-basis: 1em;
    flex-grow: 1;
}
.context-ghi .mdl-ghi-sibling-pages-navigation-box-header:before {
    margin-right: 1.1111111111rem;
}
.context-ghi .mdl-ghi-sibling-pages-navigation-box-header:after {
    margin-left: 1.1111111111rem;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-sibling-pages-navigation-box-header:before {
        margin-right: 2.7222222222rem;
    }
    .context-ghi .mdl-ghi-sibling-pages-navigation-box-header:after {
        margin-left: 2.7222222222rem;
    }
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-sibling-pages-navigation {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-sibling-pages-navigation {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-sibling-pages-navigation {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-sibling-pages-navigation {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-sibling-pages-navigation {
        margin-left: 26.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-sibling-pages-navigation {
        margin-left: 35.1851851852%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-sibling-pages-navigation {
        margin-left: 34.6607669617%;
    }
}
.context-ghi .mdl-ghi-sibling-pages-navigation-box-header {
    margin-bottom: 1rem;
}
.context-ghi .mdl-ghi-sibling-pages-navigation .atm-link, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link {
    font-size: calc(18 * 1px);
}
@media (min-width: 0px) {
    .context-ghi .mdl-ghi-sibling-pages-navigation .atm-link, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link {
        font-size: calc(0.5859375vw + 18px);
    }
}
@media (min-width: 1024px) {
    .context-ghi .mdl-ghi-sibling-pages-navigation .atm-link, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation a, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link {
        font-size: calc(24 * 1px);
    }
}
.context-ghi .mdl-ghi-sibling-pages-navigation .atm-heading, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-offer_card__lead, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation h2,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext h3,
.mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation h3,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext h4,
.mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation h4, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-sub-navigation__title {
    margin-bottom: 1rem;
}
.context-ghi .mdl-ghi-sibling-pages-navigation .atm-link .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a .atm-icon:first-child, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph a .atm-icon:first-child, .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation a .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist--horizontal .mdl-iconlist__link .atm-icon:first-child, .mdl-iconlist--horizontal .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a .atm-icon:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation a .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a .atm-icon:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation a .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a[download] .atm-icon:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation a[download] .atm-icon:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a[download] .atm-icon:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation a[download] .atm-icon:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a[download] .atm-icon:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation a[download] .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label a .atm-icon:first-child, .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation a .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title a .atm-icon:first-child, .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation a .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label a .atm-icon:first-child, .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation a .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation a .atm-icon:first-child, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation a .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text a .atm-icon:first-child, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation a .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link .atm-icon:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-link .mdl-richtext a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a .mdl-richtext a[download] > svg:first-child, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .atm-link a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph a[download] > svg:first-child, .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a[download] > svg:first-child, .mdl-richtext .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist--horizontal .mdl-iconlist__link a[download] > svg:first-child, .mdl-iconlist--horizontal .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .mdl-richtext a[download] > svg:first-child, .mdl-richtext .mdl-iconlist--horizontal .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a[download] > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a[download] > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a[download] > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a[download] > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label a[download] > svg:first-child, .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a[download] > svg:first-child, .mdl-richtext .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title a[download] > svg:first-child, .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a[download] > svg:first-child, .mdl-richtext .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label a[download] > svg:first-child, .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a[download] > svg:first-child, .mdl-richtext .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation a[download] > svg:first-child, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a[download] > svg:first-child, .mdl-richtext .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text a[download] > svg:first-child, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext a[download] > svg:first-child, .mdl-richtext .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link .mdl-richtext a[download] > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link a[download] > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-link .mdl-richtext p a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a .mdl-richtext p a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .atm-link a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph a.atm-link--external > svg:first-child, .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg:first-child, .mdl-iconlist--horizontal .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .mdl-iconlist--horizontal .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a[download] a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation a[download] a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a[download] p a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p ul a[download] a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation a[download] p a.atm-link--external > svg:first-child,
.mdl-richtext p ul .context-ghi .mdl-ghi-sibling-pages-navigation a[download] a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a[download] p a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p ol a[download] a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation a[download] p a.atm-link--external > svg:first-child,
.mdl-richtext p ol .context-ghi .mdl-ghi-sibling-pages-navigation a[download] a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label a.atm-link--external > svg:first-child, .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title a.atm-link--external > svg:first-child, .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label a.atm-link--external > svg:first-child, .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation a.atm-link--external > svg:first-child, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text a.atm-link--external > svg:first-child, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child, .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link .mdl-richtext p a.atm-link--external > svg:first-child, .mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .atm-link .mdl-richtext ul a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a .mdl-richtext ul a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .atm-link a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph a.atm-link--external > svg:first-child,
.atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg:first-child,
.mdl-iconlist--horizontal .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .mdl-iconlist--horizontal .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p ul a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul p a.atm-link--external > svg:first-child,
.mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation ul a.atm-link--external > svg:first-child,
.mdl-richtext ul p .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a[download] ul a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul p a[download] a.atm-link--external > svg:first-child,
.mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation a[download] ul a.atm-link--external > svg:first-child,
.mdl-richtext ul p .context-ghi .mdl-ghi-sibling-pages-navigation a[download] a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a[download] a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation a[download] a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a[download] ul a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul ol a[download] a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation a[download] ul a.atm-link--external > svg:first-child,
.mdl-richtext ul ol .context-ghi .mdl-ghi-sibling-pages-navigation a[download] a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label a.atm-link--external > svg:first-child,
.mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title a.atm-link--external > svg:first-child,
.mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label a.atm-link--external > svg:first-child,
.mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation a.atm-link--external > svg:first-child,
.mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text a.atm-link--external > svg:first-child,
.mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link .mdl-richtext ul a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .atm-link .mdl-richtext ol a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a .mdl-richtext ol a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .atm-link a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-ghi_pdf_download_form-intro a a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-sibling-pages-navigation a a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .atm-paragraph a.atm-link--external > svg:first-child,
.atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .atm-paragraph .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist--horizontal .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist--horizontal .mdl-iconlist__link a.atm-link--external > svg:first-child,
.mdl-iconlist--horizontal .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .mdl-iconlist--horizontal .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-iconlist__link a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p ol a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol p a.atm-link--external > svg:first-child,
.mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation ol a.atm-link--external > svg:first-child,
.mdl-richtext ol p .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext p a[download] ol a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol p a[download] a.atm-link--external > svg:first-child,
.mdl-richtext p .context-ghi .mdl-ghi-sibling-pages-navigation a[download] ol a.atm-link--external > svg:first-child,
.mdl-richtext ol p .context-ghi .mdl-ghi-sibling-pages-navigation a[download] a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ul a[download] ol a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol ul a[download] a.atm-link--external > svg:first-child,
.mdl-richtext ul .context-ghi .mdl-ghi-sibling-pages-navigation a[download] ol a.atm-link--external > svg:first-child,
.mdl-richtext ol ul .context-ghi .mdl-ghi-sibling-pages-navigation a[download] a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a[download] a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation a[download] a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-input-list__label a.atm-link--external > svg:first-child,
.mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .mdl-input-list__label .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-dropdown__title a.atm-link--external > svg:first-child,
.mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .mdl-dropdown__title .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-filter__label a.atm-link--external > svg:first-child,
.mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .mdl-filter__label .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-promo-textteaser__description a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__height-representation a.atm-link--external > svg:first-child,
.mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-plain-text-accordion__text a.atm-link--external > svg:first-child,
.mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-sibling-pages-navigation a.atm-link--external > svg:first-child,
.context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link .mdl-richtext ol a.atm-link--external > svg:first-child,
.mdl-richtext ol .context-ghi .mdl-ghi-sibling-pages-navigation .atm-ghi-link a.atm-link--external > svg:first-child {
    height: 2.2222222222rem;
    width: 2.2222222222rem;
    min-width: 2.2222222222rem;
    min-height: 2.2222222222rem;
    margin-right: 0;
    padding-left: 0;
}
.context-ghi .mdl-ghi-sibling-pages-navigation .mdl-linklist-wrapper {
    width: 100%;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-sibling-pages-navigation .atm-heading, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-offer_card__lead, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation h2,
    .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext h3,
    .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation h3,
    .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-richtext h4,
    .mdl-richtext .context-ghi .mdl-ghi-sibling-pages-navigation h4, .context-ghi .mdl-ghi-sibling-pages-navigation .mdl-sub-navigation__title {
        margin-bottom: 2.1666666667rem;
    }
}
.context-ghi .mdl-ghi-footer-navigation {
    padding: 1.7777777778rem 0 1rem;
}
.context-ghi .mdl-ghi-footer-navigation--micro-site {
    position: relative;
}
.context-ghi .mdl-ghi-footer-navigation--micro-site:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #000;
}
.context-ghi .mdl-ghi-footer-navigation__row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    position: relative;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-footer-navigation__row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-footer-navigation__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-footer-navigation__row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer-navigation__row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.context-ghi .mdl-ghi-footer-navigation__navigation {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation {
        flex-basis: 96.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation {
        flex-basis: 72.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation {
        margin-left: 9.6607669617%;
    }
}
.context-ghi .mdl-ghi-footer-navigation__navigation .atm-link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-iconlist__link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-ghi-link,
.context-ghi .mdl-ghi-footer-navigation__navigation .mdl-ghi-footer-navigation__copyright {
    color: #FFF;
}
.context-ghi .mdl-ghi-footer-navigation__navigation-row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.context-ghi .mdl-ghi-footer-navigation__navigation-item {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 1rem;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-item {
        flex-basis: 44.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
        max-width: 44.9068322981%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-item {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
        max-width: 30.6784660767%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-item {
        flex-basis: 29.6296296296%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
        max-width: 29.6296296296%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-item {
        flex-basis: 18.6507936508%;
        margin-left: 1.7857142857%;
        margin-right: 1.7857142857%;
        max-width: 18.6507936508%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-item {
        margin-left: 12.8968253968%;
    }
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-footer-navigation__navigation-item {
        flex-basis: 100%;
        padding: 0 2%;
    }
}
.context-ghi .mdl-ghi-footer-navigation__navigation-item:last-of-type {
    flex-basis: 100%;
    max-width: 100%;
}
.context-ghi .mdl-ghi-footer-navigation__language-link {
    display: inline-flex;
    margin-right: 0.5rem;
}
.context-ghi .mdl-ghi-footer-navigation__navigation .atm-link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-iconlist__link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-ghi-link, .context-ghi .mdl-ghi-footer-navigation__language-link .atm-link, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-footer-navigation__language-link a, .context-ghi .mdl-ghi-footer-navigation__language-link .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-footer-navigation__language-link a, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-iconlist__link, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-footer-navigation__language-link a, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-footer-navigation__language-link a, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-footer-navigation__language-link a, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-footer-navigation__language-link a, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-footer-navigation__language-link a, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-footer-navigation__language-link a, .context-ghi .mdl-ghi-footer-navigation__language-link .atm-ghi-link {
    padding-bottom: 0.2222222222rem;
}
.context-ghi .mdl-ghi-footer-navigation__navigation .atm-link:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-footer-navigation__navigation a:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-paragraph a:hover, .atm-paragraph .context-ghi .mdl-ghi-footer-navigation__navigation a:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-iconlist__link:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-richtext a:hover, .mdl-richtext .context-ghi .mdl-ghi-footer-navigation__navigation a:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-input-list__label a:hover, .mdl-input-list__label .context-ghi .mdl-ghi-footer-navigation__navigation a:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-dropdown__title a:hover, .mdl-dropdown__title .context-ghi .mdl-ghi-footer-navigation__navigation a:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-filter__label a:hover, .mdl-filter__label .context-ghi .mdl-ghi-footer-navigation__navigation a:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-promo-textteaser__description:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-footer-navigation__navigation a:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-footer-navigation__navigation a:hover, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-ghi-link:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .atm-link:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-ghi_pdf_download_form-intro a:hover, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-footer-navigation__language-link a:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .atm-paragraph a:hover, .atm-paragraph .context-ghi .mdl-ghi-footer-navigation__language-link a:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-iconlist__link:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-richtext a:hover, .mdl-richtext .context-ghi .mdl-ghi-footer-navigation__language-link a:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-input-list__label a:hover, .mdl-input-list__label .context-ghi .mdl-ghi-footer-navigation__language-link a:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-dropdown__title a:hover, .mdl-dropdown__title .context-ghi .mdl-ghi-footer-navigation__language-link a:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-filter__label a:hover, .mdl-filter__label .context-ghi .mdl-ghi-footer-navigation__language-link a:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-promo-textteaser__description:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-plain-text-accordion__height-representation a:hover, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-footer-navigation__language-link a:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .mdl-plain-text-accordion__text a:hover, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-footer-navigation__language-link a:hover, .context-ghi .mdl-ghi-footer-navigation__language-link .atm-ghi-link:hover, .context-ghi .mdl-ghi-footer-navigation__language-link--active .atm-link, .context-ghi .mdl-ghi-footer-navigation__language-link--active .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-footer-navigation__language-link--active a, .context-ghi .mdl-ghi-footer-navigation__language-link--active .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-footer-navigation__language-link--active a, .context-ghi .mdl-ghi-footer-navigation__language-link--active .mdl-iconlist__link, .context-ghi .mdl-ghi-footer-navigation__language-link--active .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-footer-navigation__language-link--active a, .context-ghi .mdl-ghi-footer-navigation__language-link--active .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-footer-navigation__language-link--active a, .context-ghi .mdl-ghi-footer-navigation__language-link--active .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-footer-navigation__language-link--active a, .context-ghi .mdl-ghi-footer-navigation__language-link--active .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-footer-navigation__language-link--active a, .context-ghi .mdl-ghi-footer-navigation__language-link--active .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-footer-navigation__language-link--active .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-footer-navigation__language-link--active a, .context-ghi .mdl-ghi-footer-navigation__language-link--active .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-footer-navigation__language-link--active a, .context-ghi .mdl-ghi-footer-navigation__language-link--active .atm-ghi-link {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.context-ghi .mdl-ghi-footer-navigation__navigation .atm-link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-iconlist__link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-ghi-link, .context-ghi .mdl-ghi-footer-navigation__copyright {
    font-size: calc(15 * 1px);
}
@media (min-width: 0px) {
    .context-ghi .mdl-ghi-footer-navigation__navigation .atm-link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-iconlist__link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-ghi-link, .context-ghi .mdl-ghi-footer-navigation__copyright {
        font-size: calc(0.29296875vw + 15px);
    }
}
@media (min-width: 1024px) {
    .context-ghi .mdl-ghi-footer-navigation__navigation .atm-link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-paragraph a, .atm-paragraph .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-iconlist__link, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-richtext a, .mdl-richtext .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-promo-textteaser__description, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-ghi-footer-navigation__navigation a, .context-ghi .mdl-ghi-footer-navigation__navigation .atm-ghi-link, .context-ghi .mdl-ghi-footer-navigation__copyright {
        font-size: calc(18 * 1px);
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-footer-navigation {
        padding: 3.5555555556rem 0;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer-navigation .mdl-ghi-footer-navigation__navigation-row {
        display: flex;
        flex: 0 0 auto;
        flex-wrap: wrap;
    }
}
@media all and (min-width: 100em) and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-footer-navigation .mdl-ghi-footer-navigation__navigation-row {
        margin-left: -1.6693811075%;
        margin-right: -1.6693811075%;
    }
}
@media all and (min-width: 100em) and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-footer-navigation .mdl-ghi-footer-navigation__navigation-row {
        margin-left: -1.7857142857%;
        margin-right: -1.7857142857%;
    }
}
@media all and (min-width: 100em) and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-footer-navigation .mdl-ghi-footer-navigation__navigation-row {
        margin-left: -2.5%;
        margin-right: -2.5%;
    }
}
@media all and (min-width: 100em) and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer-navigation .mdl-ghi-footer-navigation__navigation-row {
        margin-left: -1.7857142857%;
        margin-right: -1.7857142857%;
    }
}
.context-ghi .mdl-ghi-footer {
    background: linear-gradient(342.95deg, #404A38 0%, #6F8D59 100%);
    /*
    * Media Queries
    */
}
.context-ghi .mdl-ghi-footer__reference {
    background: linear-gradient(180deg, #F1F1F1 0%, #FFF 100%, #FFF 100%);
    display: flex;
    min-height: 3.3333333333rem;
}
.context-ghi .mdl-ghi-footer__reference-row {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-footer__reference-row {
        margin-left: -2.5465838509%;
        margin-right: -2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-footer__reference-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-footer__reference-row {
        margin-left: -1.8518518519%;
        margin-right: -1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer__reference-row {
        margin-left: -1.3274336283%;
        margin-right: -1.3274336283%;
    }
}
.context-ghi .mdl-ghi-footer__reference-text {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    font-size: calc(15 * 1px);
    align-items: baseline;
    display: flex;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ghi-footer__reference-text {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-footer__reference-text {
        flex-basis: 64.01179941%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-footer__reference-text {
        flex-basis: 62.962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer__reference-text {
        flex-basis: 30.6784660767%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ghi-footer__reference-text {
        margin-left: 17.994100295%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ghi-footer__reference-text {
        margin-left: 18.5185185185%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer__reference-text {
        margin-left: 34.6607669617%;
    }
}
@media (min-width: 0px) {
    .context-ghi .mdl-ghi-footer__reference-text {
        font-size: calc(0.29296875vw + 15px);
    }
}
@media (min-width: 1024px) {
    .context-ghi .mdl-ghi-footer__reference-text {
        font-size: calc(18 * 1px);
    }
}
.context-ghi .mdl-ghi-footer__reference-logo {
    text-decoration: none;
    display: flex;
    align-self: normal;
}
.context-ghi .mdl-ghi-footer__reference-logo:first-of-type .atm-image {
    flex-basis: 2.7777777778rem;
    height: 0.7777777778rem;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-footer__reference-logo:first-of-type .atm-image {
        flex-basis: 3.5rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-footer__reference-logo:first-of-type .atm-image {
        height: 0.9444444444rem;
    }
}
.context-ghi .mdl-ghi-footer__reference-logo:last-of-type .atm-image {
    flex-basis: 4.4444444444rem;
    height: 1rem;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-footer__reference-logo:last-of-type .atm-image {
        flex-basis: 6.9444444444rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi-footer__reference-logo:last-of-type .atm-image {
        height: 1.1111111111rem;
    }
}
.context-ghi .mdl-ghi-footer__reference-label {
    margin-right: 1rem;
}
.context-ghi .mdl-ghi-footer__reference-ampersand {
    margin: 0 0.5rem;
}
.context-ghi .mdl-ghi-footer__reference-label, .context-ghi .mdl-ghi-footer__reference-ampersand {
    line-height: 1;
    color: #403F3F;
}
@media all and (min-width: 48em) {
    .context-ghi .mdl-ghi-footer__reference {
        min-height: 5.5555555556rem;
    }
    .context-ghi .mdl-ghi-footer__reference-label {
        margin-right: 2.1666666667rem;
    }
    .context-ghi .mdl-ghi-footer__reference-ampersand {
        margin: 0 1rem;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ghi-footer__reference-label {
        margin-right: 3.2222222222rem;
    }
}
.context-ghi .mdl-accordion {
    /* Overwrites */
}
.context-ghi .mdl-accordion__title, .context-ghi .mdl-form_accordion-panel__title {
    font-family: "Frutiger LT W01_45 Light", Frutiger, sans-serif;
}
.context-ghi .mdl-accordion__icon-wrapper, .context-ghi .mdl-form_accordion-panel__icon-wrapper {
    margin-right: 0.5rem;
    position: relative;
}
@media all and (min-width: 0em) {
    .context-ghi .mdl-accordion__icon-wrapper, .context-ghi .mdl-form_accordion-panel__icon-wrapper {
        height: 2.2222222222rem;
        width: 2.2222222222rem;
    }
}
.context-ghi .mdl-accordion__header, .context-ghi .mdl-form_accordion-panel__header {
    min-height: 6.2222222222rem;
    font-size: calc(24 * 1px);
}
@media (min-width: 0px) {
    .context-ghi .mdl-accordion__header, .context-ghi .mdl-form_accordion-panel__header {
        font-size: calc(0vw + 24px);
    }
}
@media (min-width: 768px) {
    .context-ghi .mdl-accordion__header, .context-ghi .mdl-form_accordion-panel__header {
        font-size: calc(1.5625vw + 12px);
    }
}
@media (min-width: 1024px) {
    .context-ghi .mdl-accordion__header, .context-ghi .mdl-form_accordion-panel__header {
        font-size: calc(28 * 1px);
    }
}
.context-ghi .mdl-accordion .mdl-linklist-wrapper {
    display: flex;
}
.context-ghi .mdl-accordion .mdl-linklist__item .atm-link, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .atm-paragraph a, .atm-paragraph .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-iconlist__link, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-richtext a, .mdl-richtext .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-promo-textteaser__description, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .atm-ghi-link {
    font-size: calc(22 * 1px);
}
@media (min-width: 0px) {
    .context-ghi .mdl-accordion .mdl-linklist__item .atm-link, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .atm-paragraph a, .atm-paragraph .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-iconlist__link, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-richtext a, .mdl-richtext .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-promo-textteaser__description, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .atm-ghi-link {
        font-size: calc(0.5859375vw + 22px);
    }
}
@media (min-width: 1024px) {
    .context-ghi .mdl-accordion .mdl-linklist__item .atm-link, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-ghi_pdf_download_form-intro a, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .atm-paragraph a, .atm-paragraph .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-iconlist__link, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-richtext a, .mdl-richtext .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-input-list__label a, .mdl-input-list__label .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-dropdown__title a, .mdl-dropdown__title .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-filter__label a, .mdl-filter__label .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-promo-textteaser__description, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-plain-text-accordion__height-representation a, .mdl-plain-text-accordion__height-representation .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .mdl-plain-text-accordion__text a, .mdl-plain-text-accordion__text .context-ghi .mdl-accordion .mdl-linklist__item a, .context-ghi .mdl-accordion .mdl-linklist__item .atm-ghi-link {
        font-size: calc(28 * 1px);
    }
}
.context-ghi .mdl-accordion .atm-icon, .context-ghi .mdl-accordion .mdl-richtext a[download] > svg, .mdl-richtext .context-ghi .mdl-accordion a[download] > svg, .context-ghi .mdl-accordion .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .context-ghi .mdl-accordion a.atm-link--external > svg,
.context-ghi .mdl-accordion .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .context-ghi .mdl-accordion a.atm-link--external > svg,
.context-ghi .mdl-accordion .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .context-ghi .mdl-accordion a.atm-link--external > svg {
    transition: fill 0.5s ease-in-out;
}
@media all and (min-width: 0em) {
    .context-ghi .mdl-accordion .atm-icon, .context-ghi .mdl-accordion .mdl-richtext a[download] > svg, .mdl-richtext .context-ghi .mdl-accordion a[download] > svg, .context-ghi .mdl-accordion .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .context-ghi .mdl-accordion a.atm-link--external > svg,
    .context-ghi .mdl-accordion .mdl-richtext ul a.atm-link--external > svg,
    .mdl-richtext ul .context-ghi .mdl-accordion a.atm-link--external > svg,
    .context-ghi .mdl-accordion .mdl-richtext ol a.atm-link--external > svg,
    .mdl-richtext ol .context-ghi .mdl-accordion a.atm-link--external > svg {
        height: 2.2222222222rem;
        width: 2.2222222222rem;
    }
}
.context-ghi .mdl-page-header__co-brand {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 0;
    color: #403F3F;
    line-height: 1.7;
}
@media all and (min-width: 0em) {
    .context-ghi .mdl-page-header__co-brand {
        margin-top: 2.1666666667rem;
    }
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-page-header__co-brand {
        margin-top: 3.2222222222rem;
    }
}
.context-ghi .mdl-page-header__co-brand-label {
    margin-left: 0.5rem;
    line-height: 1;
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-page-header__co-brand-label {
        margin-left: 1rem;
    }
}
.context-ghi .mdl-page-header__co-brand-anchor {
    display: inline-flex;
    text-decoration: none;
}
.context-ghi .mdl-page-header__co-brand-image {
    height: 1.9444444444rem;
    width: auto;
}
.context-ghi .mdl-ghi_pdf_download_form-title {
    font-size: calc(24 * 1px);
    margin-bottom: 1rem;
}
@media (min-width: 0px) {
    .context-ghi .mdl-ghi_pdf_download_form-title {
        font-size: calc(2.34375vw + 24px);
    }
}
@media (min-width: 768px) {
    .context-ghi .mdl-ghi_pdf_download_form-title {
        font-size: calc(42 * 1px);
    }
}
.context-ghi .mdl-ghi_pdf_download_form-intro {
    font-size: calc(15 * 1px);
    margin-bottom: 1rem;
}
@media (min-width: 0px) {
    .context-ghi .mdl-ghi_pdf_download_form-intro {
        font-size: calc(0.29296875vw + 15px);
    }
}
@media (min-width: 1024px) {
    .context-ghi .mdl-ghi_pdf_download_form-intro {
        font-size: calc(18 * 1px);
    }
}
.context-ghi .mdl-ghi_pdf_download_form-intro b {
    font-family: "Frutiger LT W02_65 Bold", Frutiger, sans-serif;
}
.context-ghi .mdl-ghi_pdf_download_form-intro b i,
.context-ghi .mdl-ghi_pdf_download_form-intro i b {
    font-family: "Frutiger LT W02_66 Bold Italic", Frutiger, sans-serif;
}
.context-ghi .mdl-ghi_pdf_download_form-intro .atm-link, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-iconlist__link, .context-ghi .mdl-ghi_pdf_download_form-intro .mdl-promo-textteaser__description, .context-ghi .mdl-ghi_pdf_download_form-intro .atm-ghi-link, .context-ghi .mdl-ghi_pdf_download_form-intro a {
    font-size: inherit;
}
.context-ghi .mdl-ghi_pdf_download_form-overview {
    margin-bottom: 2.1666666667rem;
}
.context-ghi .mdl-ghi_pdf_download_form-files-label {
    margin-bottom: 0.5rem;
}
.context-ghi .mdl-ghi_pdf_download_form-file {
    display: flex;
    align-items: center;
}
.context-ghi .mdl-ghi_pdf_download_form-file .atm-icon, .context-ghi .mdl-ghi_pdf_download_form-file .mdl-richtext a[download] > svg, .mdl-richtext .context-ghi .mdl-ghi_pdf_download_form-file a[download] > svg, .context-ghi .mdl-ghi_pdf_download_form-file .mdl-richtext p a.atm-link--external > svg, .mdl-richtext p .context-ghi .mdl-ghi_pdf_download_form-file a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-file .mdl-richtext ul a.atm-link--external > svg,
.mdl-richtext ul .context-ghi .mdl-ghi_pdf_download_form-file a.atm-link--external > svg,
.context-ghi .mdl-ghi_pdf_download_form-file .mdl-richtext ol a.atm-link--external > svg,
.mdl-richtext ol .context-ghi .mdl-ghi_pdf_download_form-file a.atm-link--external > svg {
    margin-right: 0.5rem;
}
.context-ghi .mdl-ghi_pdf_download_form .atm-form_input {
    margin-bottom: 1rem;
}
.context-ghi .mdl-ghi_pdf_download_form__container--hidden {
    display: none;
}
.context-ghi .mdl-ghi_pdf_download_form__success {
    display: none;
}
.context-ghi .mdl-ghi_pdf_download_form__success--show {
    display: block;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ghi_pdf_download_form-files {
        margin-left: 2.1666666667rem;
    }
    .context-ghi .mdl-ghi_pdf_download_form-intro {
        margin-bottom: 1.6666666667rem;
    }
}
.context-ghi .mdl-form_optional_subscription .mdl-form__row.hidden, .context-ghi .mdl-form_optional_subscription .hidden.mdl-cta_form__row, .context-ghi .mdl-form_optional_subscription .hidden.mdl-duplication-block__element-row {
    display: none;
}
@media all and (min-width: 64em) {
    .context-ghi .grid-row:has(> .mdl-offer_card) {
        justify-content: center;
    }
}
.context-ghi .mdl-offer_card {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
    margin-bottom: 2.1666666667rem;
    /**
     * OPEN THE DETAIL BOX
     */
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-offer_card {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-offer_card {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-offer_card {
        flex-basis: 21.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-offer_card {
        flex-basis: 22.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-offer_card {
        margin-bottom: 4rem;
    }
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-offer_card {
        flex-basis: 85%;
        max-width: 85%;
        flex-grow: 1;
    }
}
.context-ghi .mdl-offer_card--cv-red .mdl-offer_card__inside {
    background: linear-gradient(to bottom right, #FF5041, #C40017);
}
.context-ghi .mdl-offer_card--cv-purple .mdl-offer_card__inside {
    background: linear-gradient(to bottom right, #9E0090, #500049);
}
.context-ghi .mdl-offer_card--cv-grey .mdl-offer_card__inside {
    background: linear-gradient(to bottom right, #767675, #363331);
}
.context-ghi .mdl-offer_card--cv-orange .mdl-offer_card__inside {
    background: linear-gradient(to bottom right, #FFBA62, #FF8F18);
}
.context-ghi .mdl-offer_card__inside {
    background: linear-gradient(to bottom right, #A61711, #771511);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px 0 rgba(54, 51, 49, 0.15);
    min-height: 25rem;
    padding: 2.1666666667rem 1rem 4rem 1rem;
    overflow: hidden;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-offer_card__inside {
        min-height: 26.1111111111rem;
    }
}
@media all and (min-width: 48em) {
    .context-ghi .mdl-offer_card__inside {
        padding: 3.0555555556rem 1.5rem 4rem 1.5rem;
    }
}
.context-ghi .mdl-offer_card__inside > .mdl-offer_card__title .mdl-offer_card__lead {
    color: var(--color-white);
}
.context-ghi .mdl-offer_card__title {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    z-index: 5;
    position: relative;
    transition: transform 0.5s ease-in-out;
}
.context-ghi .mdl-offer_card__heading, .context-ghi .mdl-offer_card__lead {
    word-break: break-word;
    transition: color 0.2s ease-in-out;
    transition-delay: 0.125s;
}
.context-ghi .mdl-offer_card__lead {
    order: 1;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    transition-delay: 0.2s;
}
.context-ghi .mdl-offer_card__heading {
    color: var(--color-white);
    font-size: 0.8333333333rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.context-ghi .mdl-offer_card__trigger {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    display: flex;
    position: absolute;
    color: #282625;
    cursor: pointer;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    transform: translate3d(0, 0, 0);
    z-index: 5;
    padding: 1rem;
    transition: transform 0.2s ease-in-out;
}
.context-ghi .mdl-offer_card__trigger:focus {
    outline: none;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-offer_card__trigger {
        padding: 1rem 1.6666666667rem;
    }
}
.context-ghi .mdl-offer_card__trigger-label {
    transform: translateY(3px);
    margin-right: 1rem;
}
.context-ghi .mdl-offer_card__content {
    position: absolute;
    inset: 3.0555555556rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: auto;
    z-index: 5;
    color: #282625;
    transform: translate(150%, 0);
    transition: transform 0.5s ease-in-out;
    transition-delay: 0s;
}
.context-ghi .mdl-offer_card__content .mdl-offer_card__lead {
    color: #282625;
    opacity: 0;
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-offer_card__content {
        transform: translate(150%, 0);
    }
}
.context-ghi .mdl-offer_card__close {
    border: none;
    background: none;
    padding: 0;
    -webkit-appearance: none;
    line-height: 1;
    text-align: left;
    cursor: pointer;
    top: 0.5rem;
    right: 0.5rem;
    position: absolute;
    display: none;
    line-height: 0;
    z-index: 5;
    transform: translateX(450%);
    transition: transform 0.5s ease-in-out;
    transition-delay: 0s;
}
.context-ghi .mdl-offer_card__close:focus {
    outline: none;
}
@media all and (min-width: 48em) {
    .context-ghi .mdl-offer_card__close {
        top: 1.3333333333rem;
    }
}
@media all and (min-width: 48em) {
    .context-ghi .mdl-offer_card__close {
        right: 1rem;
    }
}
.context-ghi .mdl-offer_card .mdl-spike {
    transition: min-height 0.5s ease-in-out;
    min-height: 0;
    transition-delay: 0s;
}
.context-ghi .mdl-offer_card .mdl-spike__spike {
    transition: transform 0.2s ease-in-out, right 0.2s ease-in-out;
    transition-delay: 0.4s;
}
.context-ghi .mdl-offer_card--open .mdl-spike {
    min-height: 100%;
    transition-delay: 0.0666666667s;
}
.context-ghi .mdl-offer_card--open .mdl-spike__spike {
    transform: translate3d(0, 0, 0) rotate(0deg) skew(0, 0);
    right: 0;
    transition-delay: 0s;
}
.context-ghi .mdl-offer_card--open .mdl-offer_card__trigger {
    transform: translate3d(0, 100%, 0);
}
.context-ghi .mdl-offer_card--open .mdl-offer_card__title {
    transform: translateY(-1.3333333333rem);
}
@media all and (max-width: 47.99em) {
    .context-ghi .mdl-offer_card--open .mdl-offer_card__title {
        transform: translateY(-0.5rem);
    }
}
.context-ghi .mdl-offer_card--open .mdl-offer_card__heading {
    opacity: 0;
    color: #403F3F;
    transition-delay: 0.125s;
}
.context-ghi .mdl-offer_card--open .mdl-offer_card__lead {
    opacity: 0;
    transition-delay: 0.125s;
}
.context-ghi .mdl-offer_card--open .mdl-offer_card__content {
    transform: translate(0, 0);
    transition-delay: 0.375s;
}
.context-ghi .mdl-offer_card--open .mdl-offer_card__content .mdl-offer_card__heading {
    display: block;
    opacity: 1;
}
.context-ghi .mdl-offer_card--open .mdl-offer_card__content .mdl-offer_card__lead {
    opacity: 1;
    display: block;
}
.context-ghi .mdl-offer_card--open .mdl-offer_card__content .mdl-offer_card__title {
    transform: translateY(0);
}
.context-ghi .mdl-offer_card--open .mdl-offer_card__close {
    transform: translateX(0);
    transition-delay: 0.375s;
}
.context-ghi .mdl-ng_infobox--wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}
.context-ghi .mdl-ng_infobox--grid-wrapper {
    flex-grow: inherit;
    flex-shrink: inherit;
    max-width: 100%;
}
@media all and (min-width: 20em) and (max-width: 47.99em) {
    .context-ghi .mdl-ng_infobox--grid-wrapper {
        flex-basis: 94.9068322981%;
        margin-left: 2.5465838509%;
        margin-right: 2.5465838509%;
    }
}
@media all and (min-width: 48em) and (max-width: 63.99em) {
    .context-ghi .mdl-ng_infobox--grid-wrapper {
        flex-basis: 97.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
@media all and (min-width: 64em) and (max-width: 99.99em) {
    .context-ghi .mdl-ng_infobox--grid-wrapper {
        flex-basis: 46.2962962963%;
        margin-left: 1.8518518519%;
        margin-right: 1.8518518519%;
    }
}
@media all and (min-width: 100em) {
    .context-ghi .mdl-ng_infobox--grid-wrapper {
        flex-basis: 47.3451327434%;
        margin-left: 1.3274336283%;
        margin-right: 1.3274336283%;
    }
}
.context-ghi .mdl-ng_infobox__content {
    padding: 2.1666666667rem;
}
@media all and (min-width: 64em) {
    .context-ghi .mdl-ng_infobox__content {
        padding: 4rem 3.2222222222rem;
    }
}
.context-ghi .mdl-ng_infobox__content--header > * {
    font-size: 51px;
}
.context-ghi .mdl-ng_infobox__content--header .atm-heading--mb {
    color: inherit;
}
.context-ghi .mdl-ng_infobox--grey {
    background: #EAE3E3;
    color: #282625;
}
.context-ghi .mdl-ng_infobox--oxidered {
    background: #A61711;
    color: #FFF;
}
.context-ghi .mdl-ng_infobox--orange {
    background: #FF8F18;
    color: #FFF;
}
.context-ghi .mdl-ng_infobox--oxidered .mdl-ng_infobox__content--header .atm-heading, .context-ghi .mdl-ng_infobox--oxidered .mdl-ng_infobox__content--header .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ng_infobox--oxidered .mdl-ng_infobox__content--header h2,
.context-ghi .mdl-ng_infobox--oxidered .mdl-ng_infobox__content--header .mdl-richtext h3,
.mdl-richtext .context-ghi .mdl-ng_infobox--oxidered .mdl-ng_infobox__content--header h3,
.context-ghi .mdl-ng_infobox--oxidered .mdl-ng_infobox__content--header .mdl-richtext h4,
.mdl-richtext .context-ghi .mdl-ng_infobox--oxidered .mdl-ng_infobox__content--header h4, .context-ghi .mdl-ng_infobox--oxidered .mdl-ng_infobox__content--header .mdl-sub-navigation__title, .context-ghi .mdl-ng_infobox--oxidered .mdl-ng_infobox__content--header .mdl-offer_card__lead, .context-ghi .mdl-ng_infobox--orange .mdl-ng_infobox__content--header .atm-heading, .context-ghi .mdl-ng_infobox--orange .mdl-ng_infobox__content--header .mdl-richtext h2, .mdl-richtext .context-ghi .mdl-ng_infobox--orange .mdl-ng_infobox__content--header h2,
.context-ghi .mdl-ng_infobox--orange .mdl-ng_infobox__content--header .mdl-richtext h3,
.mdl-richtext .context-ghi .mdl-ng_infobox--orange .mdl-ng_infobox__content--header h3,
.context-ghi .mdl-ng_infobox--orange .mdl-ng_infobox__content--header .mdl-richtext h4,
.mdl-richtext .context-ghi .mdl-ng_infobox--orange .mdl-ng_infobox__content--header h4, .context-ghi .mdl-ng_infobox--orange .mdl-ng_infobox__content--header .mdl-sub-navigation__title, .context-ghi .mdl-ng_infobox--orange .mdl-ng_infobox__content--header .mdl-offer_card__lead {
    color: inherit;
}
.context-ghi .mdl-ng_infobox--oxidered .mdl-richtext ul > li:before, .context-ghi .mdl-ng_infobox--orange .mdl-richtext ul > li:before {
    background-color: currentColor;
}
.context-ghi .mdl-ng_infobox--oxidered .mdl-richtext h1, .context-ghi .mdl-ng_infobox--oxidered .mdl-richtext .mdl-form_step__heading, .context-ghi .mdl-ng_infobox--oxidered .mdl-richtext h2, .context-ghi .mdl-ng_infobox--oxidered .mdl-richtext h3, .context-ghi .mdl-ng_infobox--oxidered .mdl-richtext h4, .context-ghi .mdl-ng_infobox--oxidered .mdl-richtext h5, .context-ghi .mdl-ng_infobox--orange .mdl-richtext h1, .context-ghi .mdl-ng_infobox--orange .mdl-richtext .mdl-form_step__heading, .context-ghi .mdl-ng_infobox--orange .mdl-richtext h2, .context-ghi .mdl-ng_infobox--orange .mdl-richtext h3, .context-ghi .mdl-ng_infobox--orange .mdl-richtext h4, .context-ghi .mdl-ng_infobox--orange .mdl-richtext h5 {
    color: inherit;
}
.context-ghi .mdl-ng_infobox--oxidered .mdl-richtext a,
.context-ghi .mdl-ng_infobox--oxidered .mdl-richtext a:hover, .context-ghi .mdl-ng_infobox--orange .mdl-richtext a,
.context-ghi .mdl-ng_infobox--orange .mdl-richtext a:hover {
    color: currentColor;
    text-decoration-color: currentColor;
    border-color: currentColor;
}
.context-ghi .mdl-ng_infobox--oxidered .mdl-richtext a svg use,
.context-ghi .mdl-ng_infobox--oxidered .mdl-richtext a:hover svg use, .context-ghi .mdl-ng_infobox--orange .mdl-richtext a svg use,
.context-ghi .mdl-ng_infobox--orange .mdl-richtext a:hover svg use {
    fill: currentColor;
}
