@charset "UTF-8";
/**
 * SCSS to theme the style guide
 * Run `gulp` in the project root to compile to `style-guide\public\styles\theme.css`
 */
/**
 * Sass versioning
 *
 * @description  Version your scss modules and test them at compile time
 * @author       @dominikwilkowski
 * @website      https://dominikwilkowski.github.io/sass-versioning/sassdoc/
 * @repository   https://github.com/dominikwilkowski/sass-versioning
 * @license      https://raw.githubusercontent.com/dominikwilkowski/sass-versioning/master/LICENSE GPL-3.0
 */
/*! @gold.au/core v5.0.0 */
/**
 * AU-replace - Replace a string with a string
 * http://codepen.io/jakob-e/pen/doMoML
 *
 * @author @eriksen_dk <https://twitter.com/eriksen_dk>
 *
 * @param  {string} $string  - The haystack string to be manipulated
 * @param  {string} $search  - The needle to be replace
 * @param  {string} $replace - The replacement
 *
 * @return {string}          - The manipulated string with replaced values
 */
/**
 * AU-svguri - Generate an optimized SVG data-uri
 * https://codepen.io/tigt/post/optimizing-svgs-in-data-uris
 * http://codepen.io/jakob-e/pen/doMoML
 *
 * @author @eriksen_dk <https://twitter.com/eriksen_dk>
 *
 * @param  {string} $svg - The SVG to be converted
 *
 * @return {string}      - An optimized data-uri
 */
/**
 * AU-factorial - Returns the factorial of a non-negative integer.
 * https://github.com/terkel/mathsass
 *
 * @author Pascal Duez @pascalduez <http://pascalduez.me/>
 *
 * @param  {integer} $number - A non-negative integer.
 *
 * @return {integer}         - The factorial log
 */
/**
 * AU-pow - Returns base to the exponent power.
 * https://github.com/terkel/mathsass
 *
 * @author Pascal Duez @pascalduez <http://pascalduez.me/>
 *
 * @param  {integers} $base     - The base number
 * @param  {integers} $exponent - The exponent to which to raise base
 *
 * @return {integers}           - The result of the math
 */
/**
 * AU-color-luminance - Calculate color luminance
 *
 * https://github.com/voxpelli/sass-color-helpers/blob/master/stylesheets/color-helpers/_contrast.scss
 * Adapted from: https://github.com/LeaVerou/contrast-ratio/blob/gh-pages/color.js
 * Formula: http://www.w3.org/TR/2008/REC-WCAG20-20081211/#relativeluminancedef
 *
 * @author Pelle Wessman @voxpelli <http://kodfabrik.se/>
 *
 * @param  {string} $color - The color to calculate the luminance from
 *
 * @return {float}          - The luminance
 */
/**
 * AU-color-contrast - Get the contrast ratio of two colors and warn when it is below WCAG 2.0 AA standard 4.5:1
 *
 * https://github.com/voxpelli/sass-color-helpers/blob/master/stylesheets/color-helpers/_contrast.scss
 * Adapted from: https://github.com/LeaVerou/contrast-ratio/blob/gh-pages/color.js
 * Formula: http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef
 *
 * @author Pelle Wessman @voxpelli <http://kodfabrik.se/>
 *
 * @param  {string}   $foreground - Color one
 * @param  {string}   $background - Color two
 * @param  {boolean}  $silent     - If the logs get printed in the terminal
 * @param  {boolean}  $rounded    - If the value is rounded or not
 *
 * @return {integer}              - The contrast ratio
 */
/**
 * AU-color-a11y - The function to find the nearest accessible color
 *
 * https://github.com/alex-page/sass-a11ycolor
 *
 * @author Alex Page @aalexpaage <http://alexpage.com.au>
 *
 * @param  {Color}           $toMakeA11y           - The color that is to be changed
 * @param  {Color}           $background           - The background color to compare against toMakeA11y for the contrast
 * @param  {'small'|'large'} $ratioKey   ['small'] - The keyword 'small' or 'large' to set the WCAG 2.1 contrast ration or 3.0 or 4.5
 * @param  {Number}          $steps      [0.1]     - The step size our function is searching for a new color in. The bigger the number the faster the process
 *                                                    the rougher the found color.
 *
 * @return {Color}                                 - Returns the nearest accessible color
 */
/**
 * AU-color-lowest-contrast - Find the lowest contrast color
 *
 * @param  {Colors}          $colors     - The color to find the lowest contrast
 * @param  {Color}           $background - The background color to compare the colors against
 *
 * @return {Color}                       - Returns the lowest contrast color
 */
/**
 * AU-space - Mixin for setting a properties value to snap to the grid, with a fallback for REM.
 *
 * @param  {string} $property - The css property to apply the spacing ( padding, margin )
 * @param  {number} $values   - The values of the property ( 0, 20px, 1unit, 5% )
 *
 * @return {number}           - The space in px and rems
 */
/**
 * AU-clearfix - Clearing floats
 */
/**
 * AU-media - Create media queries and wraps the @content code inside of it
 *
 * @param  {keywords} $breakpoint - Either one of the following keywords: xs, sm, md, lg
 *
 * @return {string}               - The code passed in via @content wrapped inside a media query
 */
/**
 * AU-sronly - Hide an element from the screen but not a screen reader
 */
/**
 * AU-outline - Create outline based on the theme the user is using.
 *
 * @param  {keywords} $theme - `dark` or default ( `light` )
 *
 * @return {string}          - The code
 */
/**
 * AU-focus - Add the outline to focus
 */
/**
 * AU-fontgrid Mixin for setting font-size and line-height that snaps to the grid.
 *
 * @param  {keywords} $fontsize-key   -  Either one of the following keywords: xs, sm, md, lg, xl, xxl, xxxl
 * @param  {keywords} $lineheight-key -  Either one of the following keywords: heading, nospace, default
 *
 * @return {string}                   - The code; fontsize in REM, with PX fallback, and unitless line-height which matches vertical grid
*/
/**
 * AU-pixelfallback enable pixel fallbacks
 */
/**
 * AU-media Breakpoints
 */
/**
 * AU-rem value used for REM calculation
 */
/**
 * AU-unit used for all type and grid calculations
 */
/**
 * AU-font stack
 * AU-font-monospace stack
 */
/**
 * AU-fontsize-map
 *
 * Predetermined pixel sizes from a 1.25 typescale rounded to the nearest $AU-unit (vertical grid)
 */
/**
 * AU-lineheight-map
 *
 * Predetermined lineheight mapped to keyword
 */
/**
 * AU-maxwidth for line lengths (the ‘measure’)
 */
/**
 * Colors light theme
 */
/**
 * Colors dark theme
 */
/**
 * Colors system messages
 */
/**
 * AU-border-radius styles
 */
/*! @gold.au/accordion v8.0.0 */
@media print {
  .au-accordion {
    border-color: #000 !important;
    color: #000 !important;
  }
  .au-accordion__title {
    background: #fff !important;
    color: #000 !important;
    border: 1px !important;
  }
  .au-accordion__title:after {
    display: none;
  }
  .au-accordion__body-wrapper {
    border-color: #000 !important;
  }
  .au-accordion__body {
    height: auto !important;
    display: block !important;
  }
}
.au-accordion {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  border: 1px solid rgb(127.359375, 127.359375, 127.359375);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #313131;
  padding: 0;
}
* + .au-accordion {
  margin-top: 16px;
  margin-top: 1rem;
}
.au-accordion .au-accordion__title {
  background-color: rgb(244.8, 244.8, 244.8);
}
.au-accordion.au-accordion--dark {
  border-color: rgb(127.5, 127.5, 127.5);
  color: #FFF;
}
.au-accordion.au-accordion--dark .au-accordion__title {
  background-color: black;
}

.au-accordion + .au-accordion {
  margin-top: 0;
  border-top: 0;
}

.au-body .au-accordion__title,
.au-accordion__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  padding: 16px 40px 16px 16px;
  padding: 1rem 2.5rem 1rem 1rem;
  width: 100%;
  display: block;
  color: #006FB0;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  font-weight: bold;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: inherit;
}
.au-body .au-accordion__title:hover,
.au-accordion__title:hover {
  text-decoration: none;
  color: #313131;
}
.au-body .au-accordion__title:hover:after,
.au-accordion__title:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath fill='%23313131' d='M64 0l64 64-16 16-64-64'/%3E%3Cpath fill='%23313131' d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
}
.au-body .au-accordion__title:focus,
.au-accordion__title:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-body .au-accordion__title::-moz-focus-inner,
.au-accordion__title::-moz-focus-inner {
  border: 0;
}
.au-body .au-accordion__title:focus,
.au-accordion__title:focus {
  z-index: 100;
}
.au-body .au-accordion__title::-webkit-details-marker,
.au-accordion__title::-webkit-details-marker {
  display: none;
}
.au-body .au-accordion__title:after,
.au-accordion__title:after {
  content: " ";
  position: absolute;
  top: 50%;
  margin-top: -8px;
  margin-top: -0.5rem;
  right: 16px;
  right: 1rem;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath fill='%23006FB0' d='M64 0l64 64-16 16-64-64'/%3E%3Cpath fill='%23006FB0' d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 101;
  -webkit-transition: -webkit-transform 0.25s ease-in;
  transition: -webkit-transform 0.25s ease-in;
  transition: transform 0.25s ease-in;
  transition: transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
}
.au-body .au-accordion__title.au-accordion--closed:after,
.au-accordion__title.au-accordion--closed:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.ie8 .au-body .au-accordion__title:after, .lt-ie8 .au-body .au-accordion__title:after,
.ie8 .au-accordion__title:after,
.lt-ie8 .au-accordion__title:after {
  content: " ▼ ";
}
.ie8 .au-body .au-accordion__title.au-accordion--open:after, .lt-ie8 .au-body .au-accordion__title.au-accordion--open:after,
.ie8 .au-accordion__title.au-accordion--open:after,
.lt-ie8 .au-accordion__title.au-accordion--open:after {
  content: " ▲ ";
}

.au-body.au-body--dark .au-accordion__title,
.au-accordion.au-accordion--dark .au-accordion__title {
  color: #FFF;
}
.au-body.au-body--dark .au-accordion__title:hover,
.au-accordion.au-accordion--dark .au-accordion__title:hover {
  color: #FFF;
}
.au-body.au-body--dark .au-accordion__title:hover:after,
.au-accordion.au-accordion--dark .au-accordion__title:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E %3Cpath fill='%23FFF' d='M64 0l64 64-16 16-64-64'/%3E %3Cpath fill='%23FFF' d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
}
.au-body.au-body--dark .au-accordion__title:focus,
.au-accordion.au-accordion--dark .au-accordion__title:focus {
  outline: 3px solid #C390F9;
}
.au-body.au-body--dark .au-accordion__title::-moz-focus-inner,
.au-accordion.au-accordion--dark .au-accordion__title::-moz-focus-inner {
  border: 0;
}
.au-body.au-body--dark .au-accordion__title:after,
.au-accordion.au-accordion--dark .au-accordion__title:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E %3Cpath fill='%23FFF' d='M64 0l64 64-16 16-64-64'/%3E %3Cpath fill='%23FFF' d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
}

.au-accordion__body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
}
.js .au-accordion__body.au-accordion--open {
  display: block;
  height: auto;
}
.js .au-accordion__body.au-accordion--closed {
  display: none;
  height: 0;
}

.au-accordion__body-wrapper {
  padding: 16px;
  padding: 1rem;
  border-top: 1px solid rgb(127.359375, 127.359375, 127.359375);
}
.au-accordion--dark .au-accordion__body-wrapper {
  border-top: 1px solid rgb(127.5, 127.5, 127.5);
}

.au-accordion-group {
  list-style: none;
  padding: 0;
}

/*! @gold.au/body v3.0.0 */
@media print {
  .au-body *, .au-body {
    text-shadow: none !important;
    color: #000 !important;
    background-color: transparent !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border-color: #000 !important;
  }
  .au-body a,
  .au-body a:visited {
    text-decoration: underline;
  }
  .au-body a[href]:after {
    content: " (" attr(href) ")" !important;
    display: inline !important;
  }
  .au-body a[href^="javascript:"]:after,
  .au-body a[href^="#"]:after {
    content: "" !important;
  }
  .au-body abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .au-body pre,
  .au-body blockquote {
    border: 1px solid #000;
    padding: 6px;
    page-break-inside: avoid;
  }
  .au-body thead {
    display: table-header-group;
  }
  .au-body tr,
  .au-body img {
    page-break-inside: avoid;
  }
  .au-body img {
    max-width: 100% !important;
  }
  .au-body p,
  .au-body h2,
  .au-body h3 {
    orphans: 3;
    widows: 3;
  }
  .au-body h2,
  .au-body h3 {
    page-break-after: avoid;
  }
  .au-body p a {
    word-wrap: break-word;
  }
  .au-body select {
    background: #fff !important;
  }
}
.au-body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #313131;
  background-color: #ffffff;
  /**
   * Highlighting in-page sections that are in focus
   */
  /**
   * `mark` styling.
   */
  /**
   * Text selection styling
   */
  /**
   * Vertical spacing of common text elements.
   */
  /**
   * Emphasis and alt. voice/mood/diff. from prose text.
   */
  /**
   * Stong emphasis.
   */
  /**
   * `small`: for less important information (not stylistic purposes).
   */
  /**
   * `s`: represents contents no longer accurate/relevant.
   * del` & `ins`: editorial markup.
   */
  /**
   * Defining definition of a term.
   *
   * The paragraph, description list group, or section that is the nearest
   * ancestor of the `dfn` element must also contain the definition(s) for the term
   * given by the `dfn` element.
   *
   * Note: `abbr` can be nested inside `dfn`.
   */
  /**
   * Abbreviations/acronyms.
   */
  /**
   * Variables, eg. as used in mathematical expressions.
   *
   * We also provide semantic support for nested vars, and things like indices.
   */
  /**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   * https://github.com/necolas/normalize.css/blob/master/normalize.css#L174
   */
  /**
   * Keyboard strokes.
   * Code snippets and code blocks.
   */
  /**
   * Horizontal rule, used for paragraph-level thematic breaks.
   */
  /**
   *  Body colour schemes
   */
}
.au-body a {
  color: #006FB0;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.au-body a:hover {
  color: #313131;
  text-decoration: none;
}
.au-body a:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-body a::-moz-focus-inner {
  border: 0;
}
.au-body [tabindex="0"]:focus,
.au-body :target {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-body mark {
  color: #ffffff;
  background-color: #006FB0;
}
.au-body ::-moz-selection {
  color: #ffffff;
  background-color: rgba(0, 111, 176, 0.99);
}
.au-body ::selection {
  color: #ffffff;
  background-color: rgba(0, 111, 176, 0.99);
}
.au-body img::-moz-selection, .au-body video::-moz-selection, .au-body iframe::-moz-selection {
  background-color: rgba(0, 111, 176, 0.75);
}
.au-body img::selection,
.au-body video::selection,
.au-body iframe::selection {
  background-color: rgba(0, 111, 176, 0.75);
}
.au-body p {
  max-width: 42em;
  margin: 0;
}
.au-body * + p {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.au-body ul:not([class]),
.au-body ol:not([class]),
.au-body dl:not([class]),
.au-body pre {
  margin: 0;
}
.au-body * + ul:not([class]),
.au-body * + ol:not([class]),
.au-body * + dl:not([class]),
.au-body * + pre {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.au-body ul:not([class]) > li,
.au-body ol:not([class]) > li {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.au-body ul:not([class]) > li > ul:not([class]),
.au-body ul:not([class]) > li > ol:not([class]),
.au-body ol:not([class]) > li > ul:not([class]),
.au-body ol:not([class]) > li > ol:not([class]) {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.au-body ul:not([class]) > ul:not([class]),
.au-body ol:not([class]) > ul:not([class]) {
  list-style-type: disc;
}
.au-body dl:not([class]) > dd {
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-left: 8px;
  padding-left: 0.5rem;
  margin-left: 0;
  border-left: solid 1px;
}
.au-body dl:not([class]) > dt {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-weight: bold;
}
.au-body dl:not([class]) > dt:first-of-type {
  margin-top: 0;
}
.au-body .written-by:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEiIHZpZXdCb3g9IjAgMCA2NTggMTgiPjx0ZXh0IHg9IjEzIiB5PSIxMyIgZm9udC1zaXplPSIxMyI+TWVzc3JzLCBEb20sIFBhZ2V5LCBUcmViLCBQYXQgYW5kIEtsZXBhcyBhcmUgcHJvdWQgdG8gcHJlc2VudCB0aGUgR09MRCBkZXNpZ24gc3lzdGVtLiAtIE1pc2NoaWVmIG1hbmFnZWQ8L3RleHQ+PC9zdmc+");
  color: #BADA55;
}
.au-body em,
.au-body i {
  font-style: italic;
}
.au-body strong,
.au-body b {
  font-weight: bold;
}
.au-body small {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.au-body s,
.au-body del {
  text-decoration: line-through;
}
.au-body ins {
  text-decoration-line: underline;
  text-decoration-style: dashed;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.au-body dfn {
  font-style: normal;
}
.au-body abbr,
.au-body abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
.au-body abbr[title] {
  cursor: help;
}
.au-body a abbr {
  padding-bottom: 1px;
}
.au-body var {
  padding: 0 1px;
  font-style: italic;
  font-family: serif;
}
.au-body var sup,
.au-body var sub {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  padding: 0 1px;
}
.au-body sub,
.au-body sup {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  position: relative;
  vertical-align: baseline;
}
.au-body sub {
  bottom: -0.25em;
}
.au-body sup {
  top: -0.5em;
}
.au-body kbd,
.au-body code,
.au-body samp {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  padding: 4px;
  padding: 0.25rem;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  display: inline-block;
  border-radius: 4px;
  background-color: rgb(244.8, 244.8, 244.8);
  color: #313131;
}
.au-body pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.au-body pre code {
  padding: 16px;
  padding: 1rem;
  display: block;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}
.au-body hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: none;
  border-top: 1px solid rgb(127.359375, 127.359375, 127.359375);
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.au-body * + hr {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.au-body.au-body--alt {
  background: rgb(234.6, 234.6, 234.6);
}
.au-body.au-body--alt kbd,
.au-body.au-body--alt code,
.au-body.au-body--alt samp {
  background-color: rgb(224.4, 224.4, 224.4);
}
.au-body.au-body--dark {
  background: #000;
  color: #FFF;
}
.au-body.au-body--dark ::-moz-selection {
  color: #000;
  background-color: rgba(255, 255, 255, 0.99);
}
.au-body.au-body--dark ::selection {
  color: #000;
  background-color: rgba(255, 255, 255, 0.99);
}
.au-body.au-body--dark img::-moz-selection, .au-body.au-body--dark video::-moz-selection, .au-body.au-body--dark iframe::-moz-selection {
  background-color: rgba(255, 255, 255, 0.75);
}
.au-body.au-body--dark img::selection,
.au-body.au-body--dark video::selection,
.au-body.au-body--dark iframe::selection {
  background-color: rgba(255, 255, 255, 0.75);
}
.au-body.au-body--dark a {
  color: #FFF;
}
.au-body.au-body--dark a:hover {
  color: #FFF;
}
.au-body.au-body--dark a:focus {
  outline: 3px solid #C390F9;
}
.au-body.au-body--dark a::-moz-focus-inner {
  border: 0;
}
.au-body.au-body--dark [tabindex="0"]:focus,
.au-body.au-body--dark :target {
  outline: 3px solid #C390F9;
}
.au-body.au-body--dark mark {
  background-color: #FFF;
  color: #000;
}
.au-body.au-body--dark hr {
  border-top-color: rgb(127.5, 127.5, 127.5);
}
.au-body.au-body--dark code,
.au-body.au-body--dark kbd,
.au-body.au-body--dark samp {
  color: #FFF;
  background-color: black;
}
.au-body.au-body--dark.au-body--alt {
  background: black;
}
.au-body.au-body--dark.au-body--alt code,
.au-body.au-body--dark.au-body--alt kbd,
.au-body.au-body--dark.au-body--alt samp {
  background-color: black;
}

/*! @gold.au/link-list v4.0.0 */
/**
 * Block of links.
 */
.au-link-list {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 4px 0;
  padding: 0.25rem 0;
}
.au-body .au-link-list {
  margin: 0;
  padding: 4px 0;
  padding: 0.25rem 0;
}
.au-link-list > li {
  display: block;
  margin: 4px;
  margin: 0.25rem;
}
.au-link-list.au-link-list--inline {
  display: inline-block;
}
.au-link-list.au-link-list--inline > li {
  display: inline-block;
}

/*! @gold.au/breadcrumbs v4.0.0 */
@media print {
  .au-breadcrumbs > .au-link-list > li:after {
    content: ">" !important;
    background-image: none !important;
  }
}
.au-breadcrumbs {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  width: 100%;
  margin: 0;
  color: #313131;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
* + .au-breadcrumbs {
  margin-top: 16px;
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .au-breadcrumbs {
    display: inline-block;
  }
}
.au-breadcrumbs > .au-link-list > li {
  margin: 0;
}
.au-breadcrumbs > .au-link-list > li:after {
  content: " ";
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  margin: 0 8px;
  margin: 0 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 128 128'%3E%3Cpath fill='rgb(127.359375, 127.359375, 127.359375)' d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath fill='rgb(127.359375, 127.359375, 127.359375)' d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
}
.au-breadcrumbs > .au-link-list > li:last-child:after {
  display: none;
}
.ie8 .au-breadcrumbs > .au-link-list > li:after, .lt-ie8 .au-breadcrumbs > .au-link-list > li:after {
  content: " > ";
  display: inline-block;
}
.au-breadcrumbs.au-breadcrumbs--dark {
  color: #FFF;
}
.au-breadcrumbs.au-breadcrumbs--dark > .au-link-list > li:not(:last-child):after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 128 128'%3E%3Cpath fill='rgb(127.5, 127.5, 127.5)' d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath fill='rgb(127.5, 127.5, 127.5)' d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}

/*! @gold.au/buttons v4.0.0 */
@media print {
  .au-btn {
    background-color: #fff !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    text-decoration: none !important;
  }
  .au-btn[disabled] {
    background-color: #ccc !important;
    border: 2px solid #ccc !important;
  }
  .au-btn:disabled {
    background-color: #ccc !important;
    border: 2px solid #ccc !important;
  }
}
.au-btn,
a.au-btn {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 8px 24px;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  background-color: #006FB0;
  border: 3px solid #006FB0;
  cursor: pointer;
  vertical-align: middle;
  -webkit-transition: background 0.1s ease, border 0.1s ease, color 0.1s ease;
  transition: background 0.1s ease, border 0.1s ease, color 0.1s ease;
  /**
  * SECONDARY
  */
  /**
  * TERTIARY
  */
  /**
  	 * BLOCK
  	 */
}
.au-body .au-btn,
.au-body a.au-btn {
  color: #ffffff;
  text-decoration: none;
}
.au-btn.au-btn--block + .au-btn.au-btn--block, .health-btn--sticky-bottom .au-btn + .au-btn, .au-btn.au-btn--block + a.au-btn.au-btn--block,
a.au-btn.au-btn--block + .au-btn.au-btn--block,
a.au-btn.au-btn--block + a.au-btn.au-btn--block {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.au-btn:focus,
a.au-btn:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-btn::-moz-focus-inner,
a.au-btn::-moz-focus-inner {
  border: 0;
}
.au-btn:focus,
a.au-btn:focus {
  border-radius: 0;
}
.au-btn[disabled],
a.au-btn[disabled] {
  cursor: not-allowed;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
}
.au-btn:disabled,
a.au-btn:disabled {
  cursor: not-allowed;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
}
.au-btn:hover:not(:disabled),
a.au-btn:hover:not(:disabled) {
  background-color: #313131;
  border-color: #313131;
  text-decoration: underline;
  color: #ffffff;
}
.ie8 .au-btn:hover,
.ie8 a.au-btn:hover {
  background-color: #313131;
  border-color: #313131;
  color: #ffffff;
  text-decoration: underline;
}
.au-btn.au-btn--dark,
a.au-btn.au-btn--dark {
  color: #000;
  background-color: #FFF;
  border-color: #FFF;
}
.au-body .au-btn.au-btn--dark,
.au-body a.au-btn.au-btn--dark {
  color: #000;
}
.au-btn.au-btn--dark:hover:not(:disabled),
a.au-btn.au-btn--dark:hover:not(:disabled) {
  color: #000;
  border-color: #FFF;
  background-color: #FFF;
}
.ie8 .au-btn.au-btn--dark:hover,
.ie8 a.au-btn.au-btn--dark:hover {
  color: #000;
  border-color: #FFF;
  background-color: #FFF;
}
.au-btn.au-btn--dark:focus,
a.au-btn.au-btn--dark:focus {
  outline: 3px solid #C390F9;
}
.au-btn.au-btn--dark::-moz-focus-inner,
a.au-btn.au-btn--dark::-moz-focus-inner {
  border: 0;
}
.au-btn.au-btn--secondary,
a.au-btn.au-btn--secondary {
  color: #006FB0;
  background-color: transparent;
  border-color: #006FB0;
}
.au-body .au-btn.au-btn--secondary,
.au-body a.au-btn.au-btn--secondary {
  color: #006FB0;
}
.ie8 .au-body .au-btn.au-btn--secondary:hover,
.ie8 .au-body a.au-btn.au-btn--secondary:hover {
  color: #ffffff;
}
.au-btn.au-btn--secondary:hover:not(:disabled),
a.au-btn.au-btn--secondary:hover:not(:disabled) {
  background-color: transparent;
  border-color: #313131;
  color: #313131;
}
.au-btn.au-btn--secondary.au-btn--dark,
a.au-btn.au-btn--secondary.au-btn--dark {
  border-color: #FFF;
  color: #FFF;
}
.au-btn.au-btn--secondary.au-btn--dark:hover:not(:disabled),
a.au-btn.au-btn--secondary.au-btn--dark:hover:not(:disabled) {
  border-color: #FFF;
  color: #FFF;
}
.ie8 .au-body .au-btn.au-btn--secondary.au-btn--dark:hover,
.ie8 .au-body a.au-btn.au-btn--secondary.au-btn--dark:hover {
  color: #000;
}
.au-btn.au-btn--tertiary,
a.au-btn.au-btn--tertiary {
  color: #006FB0;
  background-color: transparent;
  border-color: transparent;
  text-decoration: underline;
}
.au-btn.au-btn--tertiary:hover:not(:disabled),
a.au-btn.au-btn--tertiary:hover:not(:disabled) {
  background-color: transparent;
  color: #313131;
  border-color: transparent;
  text-decoration: none;
}
.au-btn.au-btn--tertiary.au-btn--dark,
a.au-btn.au-btn--tertiary.au-btn--dark {
  color: #FFF;
}
.au-btn.au-btn--tertiary.au-btn--dark:hover:not(:disabled),
a.au-btn.au-btn--tertiary.au-btn--dark:hover:not(:disabled) {
  color: #FFF;
}
.au-btn.au-btn--pride,
a.au-btn.au-btn--pride {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(16.6666666667%, rgba(255, 62, 24, 0.5)), color-stop(16.6666666667%, rgba(252, 154, 0, 0.5)), color-stop(33.3333333333%, rgba(252, 154, 0, 0.52)), color-stop(33.3333333333%, rgba(255, 216, 0, 0.5)), color-stop(33.3333333333%, rgba(255, 216, 0, 0.5)), color-stop(50%, rgba(255, 216, 0, 0.5)), color-stop(50%, rgba(57, 234, 124, 0.5)), color-stop(66.6666666667%, rgba(57, 234, 124, 0.5)), color-stop(66.6666666667%, rgba(11, 178, 255, 0.5)), color-stop(83.3333333333%, rgba(11, 178, 255, 0.5)), color-stop(83.3333333333%, rgba(152, 90, 255, 0.5)));
  background: linear-gradient(to bottom, rgba(255, 62, 24, 0.5) 16.6666666667%, rgba(252, 154, 0, 0.5) 16.6666666667%, rgba(252, 154, 0, 0.52) 33.3333333333%, rgba(255, 216, 0, 0.5) 33.3333333333%, rgba(255, 216, 0, 0.5) 33.3333333333%, rgba(255, 216, 0, 0.5) 50%, rgba(57, 234, 124, 0.5) 50%, rgba(57, 234, 124, 0.5) 66.6666666667%, rgba(11, 178, 255, 0.5) 66.6666666667%, rgba(11, 178, 255, 0.5) 83.3333333333%, rgba(152, 90, 255, 0.5) 83.3333333333%);
  color: #313131;
}
.au-btn.au-btn--block, .health-btn--sticky-bottom .au-btn,
a.au-btn.au-btn--block {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

/*! @gold.au/callout v4.0.0 */
@media print {
  .au-callout {
    border-left-width: 16px !important;
    border-left-width: 1rem !important;
    border: 1px solid #000 !important;
    color: #000 !important;
    background-color: transparent !important;
  }
}
/**
 * The generic callout.
 */
.au-callout {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 24px;
  padding: 1.5rem;
  border-left: 4px solid rgb(127.359375, 127.359375, 127.359375);
  border-left: 0.25rem solid rgb(127.359375, 127.359375, 127.359375);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #313131;
  background-color: rgb(244.8, 244.8, 244.8);
  word-wrap: break-word;
}
* + .au-callout {
  margin-top: 32px;
  margin-top: 2rem;
}
.au-callout p {
  margin: 0;
}
.au-callout * + p {
  margin-top: 16px;
  margin-top: 1rem;
}
.au-callout + p {
  margin-top: 32px;
  margin-top: 2rem;
}
.au-callout.au-callout--dark {
  color: #FFF;
  border-color: rgb(127.5, 127.5, 127.5);
  background-color: black;
}
.au-callout.au-callout--alt {
  background-color: rgb(224.4, 224.4, 224.4);
}
.au-callout.au-callout--dark.au-callout--alt {
  background-color: black;
}

/**
 * The callout heading.
 */
.au-callout__heading {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0;
}
.au-callout__heading.au-callout__heading--sronly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.au-callout__heading.au-callout__heading--sronly + * {
  margin-top: 0;
}

/**
 * The calendar event callout
 */
.au-callout--calendar-event {
  background-color: rgb(244.8, 244.8, 244.8);
}

.au-callout--calendar-event__lede {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

.au-callout--calendar-event__time,
.au-callout--calendar-event__name {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
}

.au-callout--calendar-event__time {
  font-weight: bold;
}

.au-callout--calendar-event__lede,
.au-callout--calendar-event__time,
.au-callout--calendar-event__name {
  display: block;
}

* + .au-callout--calendar-event__time,
* + .au-callout--calendar-event__name,
* + .au-callout--calendar-event__lede {
  margin-top: 8px;
  margin-top: 0.5rem;
}

/*! @gold.au/card v1.0.0 */
.au-card {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: 1px solid lightgray;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.au-card.au-card--shadow {
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.au-card.au-card--shadow:hover {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.au-card.au-card--clickable:focus-within {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-card.au-card--clickable .au-card--clickable__link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.au-card.au-card--clickable .au-card--clickable__link:focus {
  outline: none;
}
.lt-ie9 .au-card.au-card--clickable .au-card--clickable__link:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-card * + .au-card__divider,
.au-card * + .au-card__body,
.au-card * + .au-card__footer {
  margin-top: 16px;
  margin-top: 1rem;
}
.au-card .au-card__divider {
  border: lightgray 0.5px solid;
  margin-bottom: 0;
}
.au-card .au-card__title {
  margin: 0 0 16px 0;
  margin: 0 0 1rem 0;
}
.au-card .au-card__header {
  font-weight: bold;
  margin: 0;
  border-bottom: solid 1px lightgray;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 16px;
  padding: 1rem;
}
.au-card .au-card__footer {
  padding: 16px;
  padding: 1rem;
  margin: 0;
  border-top: solid 1px lightgray;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.au-card .au-card__inner {
  padding: 16px;
  padding: 1rem;
}
.lt-ie9 .au-card {
  border: solid 1px rgb(127.359375, 127.359375, 127.359375);
}
.au-card.au-card--centred, .au-card .au-card--centred {
  text-align: center;
}

a.au-card {
  color: #313131;
  cursor: pointer;
  text-decoration: none;
}
a.au-card .au-card__title {
  color: #006FB0;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
a.au-card:hover .au-card__title {
  text-decoration: none;
  color: #313131;
}
a.au-card:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
a.au-card.au-card--shadow:focus {
  border-radius: 0;
}
a.au-card.au-card--shadow:hover {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.au-card-list:before, .au-card-list:after {
  content: " ";
  display: table;
}
.au-card-list:after {
  clear: both;
}
.au-card-list {
  list-style: none;
  padding: 0;
}
.au-card-list:before {
  display: none;
}
.au-card-list li {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
}
.au-card-list.au-card-list--matchheight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.au-card-list.au-card-list--matchheight li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.au-card-list.au-card-list--matchheight .au-card {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*! @gold.au/control-input v4.0.0 */
/**
 * Return the right SVG shape for fore- and background
 *
 * @param  {string} $kind                 - Either "checkbox" or "radio"
 * @param  {string} $part                 - Either "background" or "foreground"
 * @param  {color} $color1: transparent   - A color to be applied to the first part of the SVG shape
 * @param  {color} $color2: transparent   - A color to be applied to the second part of the SVG shape
 *
 * @return {svg}                          - The SVG shape inside a background-image
 */
@media print {
  .au-control-input__text {
    color: #000 !important;
  }
  .au-control-input__text:before, .au-control-input__text:after {
    display: none !important;
  }
}
.au-control-input {
  display: inline-block;
  position: relative;
}
.au-control-input.au-control-input--block:before, .au-control-input.au-control-input--block:after {
  content: " ";
  display: table;
}
.au-control-input.au-control-input--block:after {
  clear: both;
}
.au-control-input.au-control-input--block {
  display: block;
}
.au-control-input.au-control-input--block + .au-control-input--block {
  margin-top: 16px;
  margin-top: 1rem;
}

.au-control-input__input {
  position: absolute;
  left: 8px;
  left: 0.5rem;
  top: 8px;
  top: 0.5rem;
  cursor: pointer;
  margin: 0;
}
.au-control-input--small .au-control-input__input {
  left: 4px;
  left: 0.25rem;
  top: 4px;
  top: 0.25rem;
}
.au-control-input__input + .au-control-input__text {
  cursor: pointer;
}
.au-control-input__input:invalid + .au-control-input__text {
  background-color: rgb(252.95, 242.25, 242.25);
}
.au-control-input__input:invalid + .au-control-input__text:after {
  border-color: #d60000;
}
.au-control-input--invalid .au-control-input__input + .au-control-input__text {
  background-color: rgb(252.95, 242.25, 242.25);
}
.au-control-input--invalid .au-control-input__input + .au-control-input__text:after {
  border-color: #d60000;
}
.au-control-input--dark .au-control-input__input:invalid + .au-control-input__text {
  background-color: rgb(32.1, 0, 0);
}
.au-control-input--dark.au-control-input--invalid .au-control-input__input + .au-control-input__text {
  background-color: rgb(32.1, 0, 0);
}
.au-control-input--alt.au-control-input--invalid .au-control-input__input + .au-control-input__text {
  background-color: rgb(240.18, 208.08, 208.08);
}
.au-control-input--dark.au-control-input--alt .au-control-input__input:invalid + .au-control-input__text {
  background-color: rgb(32.1, 0, 0);
}
.au-control-input--alt.au-control-input--dark.au-control-input--invalid .au-control-input__input + .au-control-input__text {
  background-color: rgb(32.1, 0, 0);
}
.au-control-input--valid .au-control-input__input + .au-control-input__text {
  background-color: rgb(242.8, 249.9, 247.65);
}
.au-control-input--valid .au-control-input__input + .au-control-input__text:after {
  border-color: #0b996c;
}
.au-control-input--dark.au-control-input--valid .au-control-input__input + .au-control-input__text {
  background-color: rgb(1.65, 22.95, 16.2);
}
.au-control-input--alt.au-control-input--valid .au-control-input__input + .au-control-input__text {
  background-color: rgb(209.73, 231.03, 224.28);
}
.au-control-input--alt.au-control-input--dark.au-control-input--valid .au-control-input__input + .au-control-input__text {
  background-color: rgb(1.65, 22.95, 16.2);
}
.au-control-input__input[type=radio] + .au-control-input__text:before, .au-control-input__input[type=radio] + .au-control-input__text:after {
  border-radius: 50%;
}
.au-control-input__input[disabled] {
  cursor: not-allowed;
}
.au-control-input__input[disabled] + .au-control-input__text {
  cursor: not-allowed;
}
.au-control-input__input[disabled] + .au-control-input__text {
  color: rgb(99.453125, 99.453125, 99.453125);
}
.au-control-input__input:disabled {
  cursor: not-allowed;
}
.au-control-input__input:disabled + .au-control-input__text {
  cursor: not-allowed;
}
.au-control-input__input:disabled + .au-control-input__text {
  color: rgb(99.453125, 99.453125, 99.453125);
}
.au-control-input--dark .au-control-input__input[disabled] + .au-control-input__text {
  color: rgb(127.5, 127.5, 127.5);
}
.au-control-input--dark .au-control-input__input:disabled + .au-control-input__text {
  color: rgb(127.5, 127.5, 127.5);
}
.au-control-input__input[type=checkbox] + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23313131' d='M0,0h32v32H0V0z'/%3E%3Cpath fill='%23ffffff' d='M2,2h28v28H2V2z'/%3E%3C/svg%3E");
}
.au-control-input__input[type=checkbox] + .au-control-input__text:after {
  background-image: none;
}
.au-control-input__input[type=checkbox]:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23313131' d='M25.6,11.4c0.2-0.2,0.2-0.5,0-0.7l-2.3-2.3c-0.2-0.2-0.5-0.2-0.7,0L14,17l-3.6-3.6c-0.2-0.2-0.5-0.2-0.7,0l-2.3,2.3 c-0.2,0.2-0.2,0.5,0,0.7l6.3,6.3c0.2,0.2,0.5,0.2,0.7,0L25.6,11.4L25.6,11.4z'/%3E%3C/svg%3E");
}
.au-control-input--alt .au-control-input__input[type=checkbox] + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23313131' d='M0,0h32v32H0V0z'/%3E%3Cpath fill='rgb(234.6, 234.6, 234.6)' d='M2,2h28v28H2V2z'/%3E%3C/svg%3E");
}
.au-control-input--alt .au-control-input__input[type=checkbox]:disabled + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='rgb(205.64, 205.64, 205.64)' d='M0,0h32v32H0V0z'/%3E%3Cpath fill='rgb(224.4, 224.4, 224.4)' d='M2,2h28v28H2V2z'/%3E%3C/svg%3E");
}
.au-control-input__input[type=checkbox]:disabled + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='rgb(205.64, 205.64, 205.64)' d='M0,0h32v32H0V0z'/%3E%3Cpath fill='rgb(234.6, 234.6, 234.6)' d='M2,2h28v28H2V2z'/%3E%3C/svg%3E");
}
.au-control-input__input[type=checkbox]:disabled:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='rgb(205.64, 205.64, 205.64)' d='M25.6,11.4c0.2-0.2,0.2-0.5,0-0.7l-2.3-2.3c-0.2-0.2-0.5-0.2-0.7,0L14,17l-3.6-3.6c-0.2-0.2-0.5-0.2-0.7,0l-2.3,2.3 c-0.2,0.2-0.2,0.5,0,0.7l6.3,6.3c0.2,0.2,0.5,0.2,0.7,0L25.6,11.4L25.6,11.4z'/%3E%3C/svg%3E");
}
.au-control-input__input[type=checkbox]:focus + .au-control-input__text:before {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
  outline-offset: 2px;
}
.au-control-input--dark .au-control-input__input[type=checkbox] + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23FFF' d='M0,0h32v32H0V0z'/%3E%3Cpath fill='%23000' d='M2,2h28v28H2V2z'/%3E%3C/svg%3E");
}
.au-control-input--dark .au-control-input__input[type=checkbox]:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23FFF' d='M25.6,11.4c0.2-0.2,0.2-0.5,0-0.7l-2.3-2.3c-0.2-0.2-0.5-0.2-0.7,0L14,17l-3.6-3.6c-0.2-0.2-0.5-0.2-0.7,0l-2.3,2.3 c-0.2,0.2-0.2,0.5,0,0.7l6.3,6.3c0.2,0.2,0.5,0.2,0.7,0L25.6,11.4L25.6,11.4z'/%3E%3C/svg%3E");
}
.au-control-input--dark .au-control-input__input[type=checkbox]:disabled + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23333333' d='M0,0h32v32H0V0z'/%3E%3Cpath fill='black' d='M2,2h28v28H2V2z'/%3E%3C/svg%3E");
}
.au-control-input--dark .au-control-input__input[type=checkbox]:disabled:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23333333' d='M25.6,11.4c0.2-0.2,0.2-0.5,0-0.7l-2.3-2.3c-0.2-0.2-0.5-0.2-0.7,0L14,17l-3.6-3.6c-0.2-0.2-0.5-0.2-0.7,0l-2.3,2.3 c-0.2,0.2-0.2,0.5,0,0.7l6.3,6.3c0.2,0.2,0.5,0.2,0.7,0L25.6,11.4L25.6,11.4z'/%3E%3C/svg%3E");
}
.au-control-input--dark .au-control-input__input[type=checkbox]:focus + .au-control-input__text:before {
  outline: 3px solid #C390F9;
  outline-offset: 2px;
}
.au-control-input--alt.au-control-input--dark .au-control-input__input[type=checkbox] + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23FFF' d='M0,0h32v32H0V0z'/%3E%3Cpath fill='black' d='M2,2h28v28H2V2z'/%3E%3C/svg%3E");
}
.au-control-input--alt.au-control-input--dark .au-control-input__input[type=checkbox]:disabled + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23333333' d='M0,0h32v32H0V0z'/%3E%3Cpath fill='black' d='M2,2h28v28H2V2z'/%3E%3C/svg%3E");
}
.au-control-input--alt.au-control-input--dark .au-control-input__input[type=checkbox]:disabled:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23333333' d='M25.6,11.4c0.2-0.2,0.2-0.5,0-0.7l-2.3-2.3c-0.2-0.2-0.5-0.2-0.7,0L14,17l-3.6-3.6c-0.2-0.2-0.5-0.2-0.7,0l-2.3,2.3 c-0.2,0.2-0.2,0.5,0,0.7l6.3,6.3c0.2,0.2,0.5,0.2,0.7,0L25.6,11.4L25.6,11.4z'/%3E%3C/svg%3E");
}
.au-control-input__input[type=radio] + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23313131' cx='16' cy='16' r='16'/%3E%3Ccircle fill='%23ffffff' cx='16' cy='16' r='14'/%3E%3C/svg%3E");
}
.au-control-input__input[type=radio] + .au-control-input__text:after {
  background-image: none;
}
.au-control-input__input[type=radio]:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23313131' cx='16' cy='16' r='11'/%3E%3C/svg%3E");
}
.au-control-input--alt .au-control-input__input[type=radio] + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23313131' cx='16' cy='16' r='16'/%3E%3Ccircle fill='rgb(234.6, 234.6, 234.6)' cx='16' cy='16' r='14'/%3E%3C/svg%3E");
}
.au-control-input--alt .au-control-input__input[type=radio]:disabled + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='rgb(205.64, 205.64, 205.64)' cx='16' cy='16' r='16'/%3E%3Ccircle fill='rgb(224.4, 224.4, 224.4)' cx='16' cy='16' r='14'/%3E%3C/svg%3E");
}
.au-control-input__input[type=radio]:disabled + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='rgb(205.64, 205.64, 205.64)' cx='16' cy='16' r='16'/%3E%3Ccircle fill='rgb(234.6, 234.6, 234.6)' cx='16' cy='16' r='14'/%3E%3C/svg%3E");
}
.au-control-input__input[type=radio]:disabled:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='rgb(205.64, 205.64, 205.64)' cx='16' cy='16' r='11'/%3E%3C/svg%3E");
}
.au-control-input__input[type=radio]:focus + .au-control-input__text:before {
  -webkit-box-shadow: 0 0 0 4px #9263DE;
          box-shadow: 0 0 0 4px #9263DE;
  -webkit-box-shadow: 0 0 0 0.25rem #9263DE;
          box-shadow: 0 0 0 0.25rem #9263DE;
}
.ie8 .au-control-input__input[type=radio]:focus + .au-control-input__text:before, .lt-ie8 .au-control-input__input[type=radio]:focus + .au-control-input__text:before {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
  outline-offset: 2px;
}
.au-control-input--dark .au-control-input__input[type=radio] + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23FFF' cx='16' cy='16' r='16'/%3E%3Ccircle fill='%23000' cx='16' cy='16' r='14'/%3E%3C/svg%3E");
}
.au-control-input--dark .au-control-input__input[type=radio]:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23FFF' cx='16' cy='16' r='11'/%3E%3C/svg%3E");
}
.au-control-input--dark .au-control-input__input[type=radio]:disabled + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23333333' cx='16' cy='16' r='16'/%3E%3Ccircle fill='black' cx='16' cy='16' r='14'/%3E%3C/svg%3E");
}
.au-control-input--dark .au-control-input__input[type=radio]:disabled:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23333333' cx='16' cy='16' r='11'/%3E%3C/svg%3E");
}
.au-control-input--dark .au-control-input__input[type=radio]:focus + .au-control-input__text:before {
  -webkit-box-shadow: 0 0 0 4px #C390F9;
          box-shadow: 0 0 0 4px #C390F9;
  -webkit-box-shadow: 0 0 0 0.25rem #C390F9;
          box-shadow: 0 0 0 0.25rem #C390F9;
}
.ie8 .au-control-input--dark .au-control-input__input[type=radio]:focus + .au-control-input__text:before, .lt-ie8 .au-control-input--dark .au-control-input__input[type=radio]:focus + .au-control-input__text:before {
  outline: 3px solid #C390F9;
  outline-offset: 2px;
}
.au-control-input--alt.au-control-input--dark .au-control-input__input[type=radio] + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23FFF' cx='16' cy='16' r='16'/%3E%3Ccircle fill='black' cx='16' cy='16' r='14'/%3E%3C/svg%3E");
}
.au-control-input--alt.au-control-input--dark .au-control-input__input[type=radio]:disabled + .au-control-input__text:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23333333' cx='16' cy='16' r='16'/%3E%3Ccircle fill='black' cx='16' cy='16' r='14'/%3E%3C/svg%3E");
}
.au-control-input--alt.au-control-input--dark .au-control-input__input[type=radio]:disabled:checked + .au-control-input__text:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='%23333333' cx='16' cy='16' r='11'/%3E%3C/svg%3E");
}

/**
 * The label text
 */
.au-control-input__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 4px 8px 8px 40px;
  padding: 0.25rem 0.5rem 0.5rem 2.5rem;
  margin-right: 16px;
  margin-right: 1rem;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #313131;
}
.au-control-input__text:before, .au-control-input__text:after {
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  content: " ";
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
  z-index: 100;
  left: -3px;
  top: -3px;
  border: 3px solid transparent;
}
.au-control-input--small .au-control-input__text:before, .au-control-input--small .au-control-input__text:after {
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
}
.au-control-input--small .au-control-input__text {
  padding: 3px 8px 0 31px;
  padding: 0.2rem 0.5rem 0 1.95rem;
  margin-right: 16px;
  margin-right: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}
.au-control-input__text:after {
  z-index: 101;
}
.au-control-input--dark .au-control-input__text {
  color: #FFF;
}

/*! @gold.au/cta-link v3.0.0 */
@media print {
  .au-cta-link {
    color: #000 !important;
  }
  .au-cta-link:after {
    background-image: none !important;
    content: " > " !important;
    border: none !important;
    -webkit-transform: rotate(0deg) !important;
        -ms-transform: rotate(0deg) !important;
            transform: rotate(0deg) !important;
  }
}
.au-cta-link {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #006FB0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.au-cta-link:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-cta-link::-moz-focus-inner {
  border: 0;
}
.au-cta-link:after {
  content: " ";
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  margin: 0 4px 0 3px;
  margin: 0 0.25rem 0 0.2rem;
  -webkit-transition: margin 0.2s ease;
  transition: margin 0.2s ease;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath fill='%23006FB0' d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath fill='%23006FB0' d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.ie8 .au-cta-link:after, .lt-ie8 .au-cta-link:after {
  content: " > ";
}
.au-cta-link:hover {
  color: #313131;
  text-decoration: none;
}
.au-cta-link:hover:after {
  margin-left: 6px;
  margin-left: 0.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath fill='%23313131' d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath fill='%23313131' d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-cta-link.au-cta-link--dark, .au-body.au-body--dark .au-cta-link, .health-sub-header.health-sub-header--dark .au-cta-link {
  color: #FFF;
}
.au-cta-link.au-cta-link--dark:focus, .au-body.au-body--dark .au-cta-link:focus, .health-sub-header.health-sub-header--dark .au-cta-link:focus {
  outline: 3px solid #C390F9;
}
.au-cta-link.au-cta-link--dark::-moz-focus-inner, .au-body.au-body--dark .au-cta-link::-moz-focus-inner, .health-sub-header.health-sub-header--dark .au-cta-link::-moz-focus-inner {
  border: 0;
}
.au-cta-link.au-cta-link--dark:after, .au-body.au-body--dark .au-cta-link:after, .health-sub-header.health-sub-header--dark .au-cta-link:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath fill='%23FFF' d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath fill='%23FFF' d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-cta-link.au-cta-link--dark:hover, .au-body.au-body--dark .au-cta-link:hover, .health-sub-header.health-sub-header--dark .au-cta-link:hover {
  color: #FFF;
}
.au-cta-link.au-cta-link--dark:hover:after, .au-body.au-body--dark .au-cta-link:hover:after, .health-sub-header.health-sub-header--dark .au-cta-link:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath fill='%23FFF' d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath fill='%23FFF' d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}

/*! @gold.au/direction-links v4.0.0 */
@media print {
  .au-direction-link {
    color: #000 !important;
  }
  .au-direction-link__arrow--right:after {
    content: "→" !important;
  }
  .au-direction-link__arrow--left:before {
    content: "←" !important;
  }
  .au-direction-link__arrow--up:after {
    content: "↑" !important;
  }
  .au-direction-link__arrow--down:after {
    content: "↓" !important;
  }
}
.au-direction-link {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #006FB0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.au-direction-link:hover {
  text-decoration: none;
  color: #313131;
}
.au-direction-link:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-direction-link::-moz-focus-inner {
  border: 0;
}
.au-direction-link.au-direction-link--dark {
  color: #FFF;
}
.au-direction-link.au-direction-link--dark:hover {
  color: #FFF;
}
.au-direction-link.au-direction-link--dark:focus {
  outline: 3px solid #C390F9;
}
.au-direction-link.au-direction-link--dark::-moz-focus-inner {
  border: 0;
}

.au-direction-link__arrow:after {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  margin: 0 4px;
  margin: 0 0.25rem;
  content: "→";
  text-decoration: none;
  display: inline-block;
  width: auto;
  height: auto;
}

.au-direction-link__arrow--up:after {
  content: "↑";
}

.au-direction-link__arrow--down:after {
  content: "↓";
}

.au-direction-link__arrow--left:after {
  content: "←";
}

/*! @gold.au/footer v4.0.0 */
@media print {
  .au-footer {
    color: #000 !important;
    background: #fff !important;
    border-color: #000 !important;
  }
}
/**
 * Basic footer block styling.
 */
.au-footer {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 48px 0 48px;
  padding: 3rem 0 3rem;
  border-top: 4px solid rgb(127.359375, 127.359375, 127.359375);
  border-top: 0.25rem solid rgb(127.359375, 127.359375, 127.359375);
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #313131;
}
.au-footer p:last-child {
  margin: 0;
}
.au-footer.au-footer--alt {
  background-color: rgb(234.6, 234.6, 234.6);
}
.au-footer.au-footer--dark {
  color: #FFF;
  border-color: rgb(127.5, 127.5, 127.5);
  background-color: #000;
}
.au-footer.au-footer--dark.au-footer--alt {
  background-color: black;
}

/**
 * Footer `nav` navigation styling.
 */
.au-footer__navigation .au-link-list > li {
  margin-left: 0;
}

.au-footer__end {
  padding-top: 16px;
  padding-top: 1rem;
  margin-top: 16px;
  margin-top: 1rem;
  border-top: 1px solid rgb(127.359375, 127.359375, 127.359375);
}

.au-footer--dark .au-footer__end {
  border-top: 1px solid rgb(127.5, 127.5, 127.5);
}

/*! @gold.au/grid-12 v3.0.0 */
/**
 * Iterates through all 12 columns (≥2) to calculate the correct amount of left
 * and right padding for each of the classes.
 */
/**
 * Iterates through the columns to create a new list and then sets the float.
 */
/**
 * Calculates the correct widths as a percentage based on the column count,
 * column breakpoint class, and type (pull or offset).
 */
/**
 * Calls the above mixins and combines them.
 */
/**
 * Finally, we create the grid and all the necessary classes.
 */
.au-grid .container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 0) {
  .au-grid .container {
    width: -36px;
  }
}
@media (min-width: 576px) {
  .au-grid .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .au-grid .container {
    width: 732px;
  }
}
@media (min-width: 992px) {
  .au-grid .container {
    width: 956px;
  }
}
@media (min-width: 1200px) {
  .au-grid .container {
    width: 1164px;
  }
}
.au-grid .container,
.au-grid .container-fluid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.au-grid .container:before, .au-grid .container:after,
.au-grid .container-fluid:before,
.au-grid .container-fluid:after {
  content: " ";
  display: table;
}
.au-grid .container:after,
.au-grid .container-fluid:after {
  clear: both;
}
.au-grid .container,
.au-grid .container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.au-grid .row:before, .au-grid .row:after {
  content: " ";
  display: table;
}
.au-grid .row:after {
  clear: both;
}
.au-grid .row {
  margin-left: -18px;
  margin-right: -18px;
}
.au-grid .col-xs-1, .au-grid .col-sm-1, .au-grid .col-md-1, .au-grid .col-lg-1, .au-grid .col-xs-2, .au-grid .col-sm-2, .au-grid .col-md-2, .au-grid .col-lg-2, .au-grid .col-xs-3, .au-grid .col-sm-3, .au-grid .col-md-3, .au-grid .col-lg-3, .au-grid .col-xs-4, .au-grid .col-sm-4, .au-grid .col-md-4, .au-grid .col-lg-4, .au-grid .col-xs-5, .au-grid .col-sm-5, .au-grid .col-md-5, .au-grid .col-lg-5, .au-grid .col-xs-6, .au-grid .col-sm-6, .au-grid .col-md-6, .au-grid .col-lg-6, .au-grid .col-xs-7, .au-grid .col-sm-7, .au-grid .col-md-7, .au-grid .col-lg-7, .au-grid .col-xs-8, .au-grid .col-sm-8, .au-grid .col-md-8, .au-grid .col-lg-8, .au-grid .col-xs-9, .au-grid .col-sm-9, .au-grid .col-md-9, .au-grid .col-lg-9, .au-grid .col-xs-10, .au-grid .col-sm-10, .au-grid .col-md-10, .au-grid .col-lg-10, .au-grid .col-xs-11, .au-grid .col-sm-11, .au-grid .col-md-11, .au-grid .col-lg-11, .au-grid .col-xs-12, .au-grid .col-sm-12, .au-grid .col-md-12, .au-grid .col-lg-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  min-height: 1px;
  padding-left: 18px;
  padding-right: 18px;
}
.au-grid .col-xs-1, .au-grid .col-xs-2, .au-grid .col-xs-3, .au-grid .col-xs-4, .au-grid .col-xs-5, .au-grid .col-xs-6, .au-grid .col-xs-7, .au-grid .col-xs-8, .au-grid .col-xs-9, .au-grid .col-xs-10, .au-grid .col-xs-11, .au-grid .col-xs-12 {
  float: left;
}
.au-grid .col-xs-1 {
  width: 8.3333333333%;
}
.au-grid .col-xs-2 {
  width: 16.6666666667%;
}
.au-grid .col-xs-3 {
  width: 25%;
}
.au-grid .col-xs-4 {
  width: 33.3333333333%;
}
.au-grid .col-xs-5 {
  width: 41.6666666667%;
}
.au-grid .col-xs-6 {
  width: 50%;
}
.au-grid .col-xs-7 {
  width: 58.3333333333%;
}
.au-grid .col-xs-8 {
  width: 66.6666666667%;
}
.au-grid .col-xs-9 {
  width: 75%;
}
.au-grid .col-xs-10 {
  width: 83.3333333333%;
}
.au-grid .col-xs-11 {
  width: 91.6666666667%;
}
.au-grid .col-xs-12 {
  width: 100%;
}
.au-grid .col-xs-pull-0 {
  right: auto;
}
.au-grid .col-xs-pull-1 {
  right: 8.3333333333%;
}
.au-grid .col-xs-pull-2 {
  right: 16.6666666667%;
}
.au-grid .col-xs-pull-3 {
  right: 25%;
}
.au-grid .col-xs-pull-4 {
  right: 33.3333333333%;
}
.au-grid .col-xs-pull-5 {
  right: 41.6666666667%;
}
.au-grid .col-xs-pull-6 {
  right: 50%;
}
.au-grid .col-xs-pull-7 {
  right: 58.3333333333%;
}
.au-grid .col-xs-pull-8 {
  right: 66.6666666667%;
}
.au-grid .col-xs-pull-9 {
  right: 75%;
}
.au-grid .col-xs-pull-10 {
  right: 83.3333333333%;
}
.au-grid .col-xs-pull-11 {
  right: 91.6666666667%;
}
.au-grid .col-xs-pull-12 {
  right: 100%;
}
.au-grid .col-xs-push-0 {
  left: auto;
}
.au-grid .col-xs-push-1 {
  left: 8.3333333333%;
}
.au-grid .col-xs-push-2 {
  left: 16.6666666667%;
}
.au-grid .col-xs-push-3 {
  left: 25%;
}
.au-grid .col-xs-push-4 {
  left: 33.3333333333%;
}
.au-grid .col-xs-push-5 {
  left: 41.6666666667%;
}
.au-grid .col-xs-push-6 {
  left: 50%;
}
.au-grid .col-xs-push-7 {
  left: 58.3333333333%;
}
.au-grid .col-xs-push-8 {
  left: 66.6666666667%;
}
.au-grid .col-xs-push-9 {
  left: 75%;
}
.au-grid .col-xs-push-10 {
  left: 83.3333333333%;
}
.au-grid .col-xs-push-11 {
  left: 91.6666666667%;
}
.au-grid .col-xs-push-12 {
  left: 100%;
}
.au-grid .col-xs-offset-0 {
  margin-left: 0%;
}
.au-grid .col-xs-offset-1 {
  margin-left: 8.3333333333%;
}
.au-grid .col-xs-offset-2 {
  margin-left: 16.6666666667%;
}
.au-grid .col-xs-offset-3 {
  margin-left: 25%;
}
.au-grid .col-xs-offset-4 {
  margin-left: 33.3333333333%;
}
.au-grid .col-xs-offset-5 {
  margin-left: 41.6666666667%;
}
.au-grid .col-xs-offset-6 {
  margin-left: 50%;
}
.au-grid .col-xs-offset-7 {
  margin-left: 58.3333333333%;
}
.au-grid .col-xs-offset-8 {
  margin-left: 66.6666666667%;
}
.au-grid .col-xs-offset-9 {
  margin-left: 75%;
}
.au-grid .col-xs-offset-10 {
  margin-left: 83.3333333333%;
}
.au-grid .col-xs-offset-11 {
  margin-left: 91.6666666667%;
}
.au-grid .col-xs-offset-12 {
  margin-left: 100%;
}
@media (min-width: 576px) {
  .au-grid .col-sm-1, .au-grid .col-sm-2, .au-grid .col-sm-3, .au-grid .col-sm-4, .au-grid .col-sm-5, .au-grid .col-sm-6, .au-grid .col-sm-7, .au-grid .col-sm-8, .au-grid .col-sm-9, .au-grid .col-sm-10, .au-grid .col-sm-11, .au-grid .col-sm-12 {
    float: left;
  }
  .au-grid .col-sm-1 {
    width: 8.3333333333%;
  }
  .au-grid .col-sm-2 {
    width: 16.6666666667%;
  }
  .au-grid .col-sm-3 {
    width: 25%;
  }
  .au-grid .col-sm-4 {
    width: 33.3333333333%;
  }
  .au-grid .col-sm-5 {
    width: 41.6666666667%;
  }
  .au-grid .col-sm-6 {
    width: 50%;
  }
  .au-grid .col-sm-7 {
    width: 58.3333333333%;
  }
  .au-grid .col-sm-8 {
    width: 66.6666666667%;
  }
  .au-grid .col-sm-9 {
    width: 75%;
  }
  .au-grid .col-sm-10 {
    width: 83.3333333333%;
  }
  .au-grid .col-sm-11 {
    width: 91.6666666667%;
  }
  .au-grid .col-sm-12 {
    width: 100%;
  }
  .au-grid .col-sm-pull-0 {
    right: auto;
  }
  .au-grid .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .au-grid .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .au-grid .col-sm-pull-3 {
    right: 25%;
  }
  .au-grid .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .au-grid .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .au-grid .col-sm-pull-6 {
    right: 50%;
  }
  .au-grid .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .au-grid .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .au-grid .col-sm-pull-9 {
    right: 75%;
  }
  .au-grid .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .au-grid .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .au-grid .col-sm-pull-12 {
    right: 100%;
  }
  .au-grid .col-sm-push-0 {
    left: auto;
  }
  .au-grid .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .au-grid .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .au-grid .col-sm-push-3 {
    left: 25%;
  }
  .au-grid .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .au-grid .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .au-grid .col-sm-push-6 {
    left: 50%;
  }
  .au-grid .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .au-grid .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .au-grid .col-sm-push-9 {
    left: 75%;
  }
  .au-grid .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .au-grid .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .au-grid .col-sm-push-12 {
    left: 100%;
  }
  .au-grid .col-sm-offset-0 {
    margin-left: 0%;
  }
  .au-grid .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .au-grid .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .au-grid .col-sm-offset-3 {
    margin-left: 25%;
  }
  .au-grid .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .au-grid .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .au-grid .col-sm-offset-6 {
    margin-left: 50%;
  }
  .au-grid .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .au-grid .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .au-grid .col-sm-offset-9 {
    margin-left: 75%;
  }
  .au-grid .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .au-grid .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .au-grid .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 768px) {
  .au-grid .col-md-1, .au-grid .col-md-2, .au-grid .col-md-3, .au-grid .col-md-4, .au-grid .col-md-5, .au-grid .col-md-6, .au-grid .col-md-7, .au-grid .col-md-8, .au-grid .col-md-9, .au-grid .col-md-10, .au-grid .col-md-11, .au-grid .col-md-12 {
    float: left;
  }
  .au-grid .col-md-1 {
    width: 8.3333333333%;
  }
  .au-grid .col-md-2 {
    width: 16.6666666667%;
  }
  .au-grid .col-md-3 {
    width: 25%;
  }
  .au-grid .col-md-4 {
    width: 33.3333333333%;
  }
  .au-grid .col-md-5 {
    width: 41.6666666667%;
  }
  .au-grid .col-md-6 {
    width: 50%;
  }
  .au-grid .col-md-7 {
    width: 58.3333333333%;
  }
  .au-grid .col-md-8 {
    width: 66.6666666667%;
  }
  .au-grid .col-md-9 {
    width: 75%;
  }
  .au-grid .col-md-10 {
    width: 83.3333333333%;
  }
  .au-grid .col-md-11 {
    width: 91.6666666667%;
  }
  .au-grid .col-md-12 {
    width: 100%;
  }
  .au-grid .col-md-pull-0 {
    right: auto;
  }
  .au-grid .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .au-grid .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .au-grid .col-md-pull-3 {
    right: 25%;
  }
  .au-grid .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .au-grid .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .au-grid .col-md-pull-6 {
    right: 50%;
  }
  .au-grid .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .au-grid .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .au-grid .col-md-pull-9 {
    right: 75%;
  }
  .au-grid .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .au-grid .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .au-grid .col-md-pull-12 {
    right: 100%;
  }
  .au-grid .col-md-push-0 {
    left: auto;
  }
  .au-grid .col-md-push-1 {
    left: 8.3333333333%;
  }
  .au-grid .col-md-push-2 {
    left: 16.6666666667%;
  }
  .au-grid .col-md-push-3 {
    left: 25%;
  }
  .au-grid .col-md-push-4 {
    left: 33.3333333333%;
  }
  .au-grid .col-md-push-5 {
    left: 41.6666666667%;
  }
  .au-grid .col-md-push-6 {
    left: 50%;
  }
  .au-grid .col-md-push-7 {
    left: 58.3333333333%;
  }
  .au-grid .col-md-push-8 {
    left: 66.6666666667%;
  }
  .au-grid .col-md-push-9 {
    left: 75%;
  }
  .au-grid .col-md-push-10 {
    left: 83.3333333333%;
  }
  .au-grid .col-md-push-11 {
    left: 91.6666666667%;
  }
  .au-grid .col-md-push-12 {
    left: 100%;
  }
  .au-grid .col-md-offset-0 {
    margin-left: 0%;
  }
  .au-grid .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .au-grid .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .au-grid .col-md-offset-3 {
    margin-left: 25%;
  }
  .au-grid .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .au-grid .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .au-grid .col-md-offset-6 {
    margin-left: 50%;
  }
  .au-grid .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .au-grid .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .au-grid .col-md-offset-9 {
    margin-left: 75%;
  }
  .au-grid .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .au-grid .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .au-grid .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .au-grid .col-lg-1, .au-grid .col-lg-2, .au-grid .col-lg-3, .au-grid .col-lg-4, .au-grid .col-lg-5, .au-grid .col-lg-6, .au-grid .col-lg-7, .au-grid .col-lg-8, .au-grid .col-lg-9, .au-grid .col-lg-10, .au-grid .col-lg-11, .au-grid .col-lg-12 {
    float: left;
  }
  .au-grid .col-lg-1 {
    width: 8.3333333333%;
  }
  .au-grid .col-lg-2 {
    width: 16.6666666667%;
  }
  .au-grid .col-lg-3 {
    width: 25%;
  }
  .au-grid .col-lg-4 {
    width: 33.3333333333%;
  }
  .au-grid .col-lg-5 {
    width: 41.6666666667%;
  }
  .au-grid .col-lg-6 {
    width: 50%;
  }
  .au-grid .col-lg-7 {
    width: 58.3333333333%;
  }
  .au-grid .col-lg-8 {
    width: 66.6666666667%;
  }
  .au-grid .col-lg-9 {
    width: 75%;
  }
  .au-grid .col-lg-10 {
    width: 83.3333333333%;
  }
  .au-grid .col-lg-11 {
    width: 91.6666666667%;
  }
  .au-grid .col-lg-12 {
    width: 100%;
  }
  .au-grid .col-lg-pull-0 {
    right: auto;
  }
  .au-grid .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .au-grid .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .au-grid .col-lg-pull-3 {
    right: 25%;
  }
  .au-grid .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .au-grid .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .au-grid .col-lg-pull-6 {
    right: 50%;
  }
  .au-grid .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .au-grid .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .au-grid .col-lg-pull-9 {
    right: 75%;
  }
  .au-grid .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .au-grid .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .au-grid .col-lg-pull-12 {
    right: 100%;
  }
  .au-grid .col-lg-push-0 {
    left: auto;
  }
  .au-grid .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .au-grid .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .au-grid .col-lg-push-3 {
    left: 25%;
  }
  .au-grid .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .au-grid .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .au-grid .col-lg-push-6 {
    left: 50%;
  }
  .au-grid .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .au-grid .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .au-grid .col-lg-push-9 {
    left: 75%;
  }
  .au-grid .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .au-grid .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .au-grid .col-lg-push-12 {
    left: 100%;
  }
  .au-grid .col-lg-offset-0 {
    margin-left: 0%;
  }
  .au-grid .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .au-grid .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .au-grid .col-lg-offset-3 {
    margin-left: 25%;
  }
  .au-grid .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .au-grid .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .au-grid .col-lg-offset-6 {
    margin-left: 50%;
  }
  .au-grid .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .au-grid .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .au-grid .col-lg-offset-9 {
    margin-left: 75%;
  }
  .au-grid .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .au-grid .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .au-grid .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .au-grid .col-xl-1, .au-grid .col-xl-2, .au-grid .col-xl-3, .au-grid .col-xl-4, .au-grid .col-xl-5, .au-grid .col-xl-6, .au-grid .col-xl-7, .au-grid .col-xl-8, .au-grid .col-xl-9, .au-grid .col-xl-10, .au-grid .col-xl-11, .au-grid .col-xl-12 {
    float: left;
  }
  .au-grid .col-xl-1 {
    width: 8.3333333333%;
  }
  .au-grid .col-xl-2 {
    width: 16.6666666667%;
  }
  .au-grid .col-xl-3 {
    width: 25%;
  }
  .au-grid .col-xl-4 {
    width: 33.3333333333%;
  }
  .au-grid .col-xl-5 {
    width: 41.6666666667%;
  }
  .au-grid .col-xl-6 {
    width: 50%;
  }
  .au-grid .col-xl-7 {
    width: 58.3333333333%;
  }
  .au-grid .col-xl-8 {
    width: 66.6666666667%;
  }
  .au-grid .col-xl-9 {
    width: 75%;
  }
  .au-grid .col-xl-10 {
    width: 83.3333333333%;
  }
  .au-grid .col-xl-11 {
    width: 91.6666666667%;
  }
  .au-grid .col-xl-12 {
    width: 100%;
  }
  .au-grid .col-xl-pull-0 {
    right: auto;
  }
  .au-grid .col-xl-pull-1 {
    right: 8.3333333333%;
  }
  .au-grid .col-xl-pull-2 {
    right: 16.6666666667%;
  }
  .au-grid .col-xl-pull-3 {
    right: 25%;
  }
  .au-grid .col-xl-pull-4 {
    right: 33.3333333333%;
  }
  .au-grid .col-xl-pull-5 {
    right: 41.6666666667%;
  }
  .au-grid .col-xl-pull-6 {
    right: 50%;
  }
  .au-grid .col-xl-pull-7 {
    right: 58.3333333333%;
  }
  .au-grid .col-xl-pull-8 {
    right: 66.6666666667%;
  }
  .au-grid .col-xl-pull-9 {
    right: 75%;
  }
  .au-grid .col-xl-pull-10 {
    right: 83.3333333333%;
  }
  .au-grid .col-xl-pull-11 {
    right: 91.6666666667%;
  }
  .au-grid .col-xl-pull-12 {
    right: 100%;
  }
  .au-grid .col-xl-push-0 {
    left: auto;
  }
  .au-grid .col-xl-push-1 {
    left: 8.3333333333%;
  }
  .au-grid .col-xl-push-2 {
    left: 16.6666666667%;
  }
  .au-grid .col-xl-push-3 {
    left: 25%;
  }
  .au-grid .col-xl-push-4 {
    left: 33.3333333333%;
  }
  .au-grid .col-xl-push-5 {
    left: 41.6666666667%;
  }
  .au-grid .col-xl-push-6 {
    left: 50%;
  }
  .au-grid .col-xl-push-7 {
    left: 58.3333333333%;
  }
  .au-grid .col-xl-push-8 {
    left: 66.6666666667%;
  }
  .au-grid .col-xl-push-9 {
    left: 75%;
  }
  .au-grid .col-xl-push-10 {
    left: 83.3333333333%;
  }
  .au-grid .col-xl-push-11 {
    left: 91.6666666667%;
  }
  .au-grid .col-xl-push-12 {
    left: 100%;
  }
  .au-grid .col-xl-offset-0 {
    margin-left: 0%;
  }
  .au-grid .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .au-grid .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .au-grid .col-xl-offset-3 {
    margin-left: 25%;
  }
  .au-grid .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .au-grid .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .au-grid .col-xl-offset-6 {
    margin-left: 50%;
  }
  .au-grid .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .au-grid .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .au-grid .col-xl-offset-9 {
    margin-left: 75%;
  }
  .au-grid .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .au-grid .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .au-grid .col-xl-offset-12 {
    margin-left: 100%;
  }
}

/*! @gold.au/header v5.0.0 */
@media print {
  .au-header {
    background: #fff !important;
  }
  .au-header a img {
    border: 0 !important;
  }
  .au-header,
  .au-header__brand,
  .au-header__subline {
    color: #000 !important;
  }
  .au-header__brand-image {
    display: none !important;
  }
}
/**
 * Basic header block styling.
 */
.au-header {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
.au-header {
  padding: 24px 0;
  padding: 1.5rem 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #313131;
  background: #ffffff;
}
@media (min-width: 576px) {
  .au-header {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
@media (min-width: 576px) {
  .au-header {
    padding: 48px 0;
    padding: 3rem 0;
  }
}
.au-header.au-header--alt {
  background-color: rgb(244.8, 244.8, 244.8);
}
.au-header.au-header--dark {
  color: #FFF;
  background-color: #000;
}
.au-header.au-header--alt.au-header--dark {
  color: #FFF;
  background-color: black;
}

/**
 * Header heading styles
 */
.au-header__heading {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}
.au-header__heading {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
@media (min-width: 576px) {
  .au-header__heading {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
  }
}

.au-header__subline {
  max-width: 42em;
  color: rgb(99.453125, 99.453125, 99.453125);
}
.au-header--dark .au-header__subline {
  color: rgb(127.5, 127.5, 127.5);
}

/**
 * Header brand styles
 */
.au-header__brand:before, .au-header__brand:after {
  content: " ";
  display: table;
}
.au-header__brand:after {
  clear: both;
}
.au-header__brand {
  min-width: 192px;
  min-width: 12rem;
}
.au-header__brand .au-header__brand-image {
  display: block;
  border-style: none;
  max-width: 192px;
  max-width: 12rem;
}
.au-header__brand .au-header__brand-image + .au-header__text {
  margin-top: 16px;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .au-header__brand {
    min-width: 256px;
    min-width: 16rem;
  }
  .au-header__brand .au-header__brand-image {
    float: left;
    max-width: 256px;
    max-width: 16rem;
  }
  .au-header__brand .au-header__brand-image {
    margin-right: -256px;
    margin-right: -16rem;
  }
  .au-header__brand .au-header__brand-image + .au-header__text {
    padding-left: 16px;
    padding-left: 1rem;
  }
  .au-header__brand .au-header__brand-image + .au-header__text {
    margin-left: 272px;
    margin-left: 17rem;
    margin-top: 0;
    float: left;
    border-left: 1px solid rgb(127.359375, 127.359375, 127.359375);
  }
  .au-header--dark .au-header__brand .au-header__brand-image + .au-header__text {
    border-left-color: rgb(127.5, 127.5, 127.5);
  }
}

a.au-header__brand:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
a.au-header__brand::-moz-focus-inner {
  border: 0;
}
a.au-header__brand {
  display: inline-block;
  color: #313131;
  text-decoration: none;
}
a.au-header__brand:hover .au-header__text {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.au-header--dark a.au-header__brand:focus {
  outline: 3px solid #C390F9;
}
.au-header--dark a.au-header__brand::-moz-focus-inner {
  border: 0;
}
.au-header--dark a.au-header__brand {
  color: #FFF;
}

/**
 * Header hero styles and resets
 */
.au-header.au-header--hero {
  padding: 48px 0 56px 0;
  padding: 3rem 0 3.5rem 0;
}
.au-header.au-header--hero .au-header__brand .au-header__brand-image {
  float: none;
}
.au-header.au-header--hero .au-header__brand-image + .au-header__text {
  margin-top: 32px;
  margin-top: 2rem;
}
.au-header.au-header--hero .au-header__brand-image + .au-header__text {
  border: 0;
  margin: 0;
  padding: 0;
}
.au-header.au-header--hero .au-header__brand-image + .au-header__text .au-header__heading {
  margin-top: 32px;
  margin-top: 2rem;
}
.au-header.au-header--hero .au-header__heading {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media (min-width: 576px) {
  .au-header.au-header--hero .au-header__heading {
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 1.4782608696;
  }
}
.au-header.au-header--hero .au-header__heading + .au-header__subline {
  margin-top: 12px;
  margin-top: 0.75rem;
}

/*! @gold.au/headings v3.0.0 */
/**
 * Basic styles for all headings
 */
.au-display-xxxl,
.au-display-xxl,
.au-display-xl,
.au-display-lg,
.au-display-md,
ul.list--large--checklist > li strong,
.au-display-sm,
.au-display-xs,
.au-body h1,
.au-body h2,
.au-body h3,
.au-body h4,
.au-body .health-card.health-card--contact-horizontal .health-card__title,
.au-body h5,
.au-body h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  display: block;
  font-weight: bold;
  margin: 0;
}

/**
 * Unique selectors and font sizes
 */
.au-body .au-display-xxxl,
.au-display-xxxl {
  font-size: 52px;
  font-size: 3.25rem;
  line-height: 1.2307692308;
}

.au-body h1,
.au-body .au-display-xxl,
.au-display-xxl {
  font-size: 46px;
  font-size: 2.875rem;
  line-height: 1.2173913043;
}

.au-body h2,
.au-body .au-display-xl,
.au-display-xl {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
}

.au-body h3,
.au-body .au-display-lg,
.au-display-lg {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}

.au-body h4, .au-body .health-card.health-card--contact-horizontal .health-card__title,
.au-body .au-display-md,
.au-display-md,
ul.list--large--checklist > li strong {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.au-body h5,
.au-body .au-display-sm,
.au-display-sm {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

.au-body h6,
.au-body .au-display-xs,
.au-display-xs {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}

/**
 * Typographic spacing for AU-body only
 * Larger space for larger headings has been added to improve legibility in large blocks of text.
 * This provides area's of eye-rest and uses spacing to create visual sections
 * Also ref. https://github.com/designsystemau/gold-design-system/issues/282
 */
/**
 * Default margin-top
 */
* + .au-display-xxxl,
* + .au-display-xxl,
* + .au-display-xl,
* + .au-display-lg,
* + .au-display-md,
ul.list--large--checklist > li * + strong,
* + .au-display-sm,
* + .au-display-xs {
  margin-top: 16px;
  margin-top: 1rem;
}

.au-body * + h1,
.au-body * + .au-display-xxl {
  margin-top: 48px;
  margin-top: 3rem;
}
.au-body * + h2,
.au-body * + .au-display-xl {
  margin-top: 48px;
  margin-top: 3rem;
}
.au-body h1 + h2,
.au-body h2 + h3,
.au-body .au-display-xxl + h2,
.au-body .au-display-xl + h3,
.au-body h1 + .au-display-xl,
.au-body h2 + .au-display-lg,
.au-body .au-display-xxl + .au-display-xl,
.au-body .au-display-xl + .au-display-lg,
.au-body * + h3,
.au-body * + h4,
.au-body .health-card.health-card--contact-horizontal * + .health-card__title,
.au-body * + h5,
.au-body * + h6,
.au-body * + .au-display-md,
.au-body ul.list--large--checklist > li * + strong,
ul.list--large--checklist > li .au-body * + strong,
.au-body * + .au-display-sm,
.au-body * + .au-display-xs {
  margin-top: 24px;
  margin-top: 1.5rem;
}

/*! @gold.au/inpage-nav v4.0.0 */
.au-inpage-nav-links {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 24px;
  padding-left: 1.5rem;
  margin-bottom: 48px;
  margin-bottom: 3rem;
  border-left: 4px solid #006FB0;
}
* + .au-inpage-nav-links {
  margin-top: 48px;
  margin-top: 3rem;
}
.au-body .au-inpage-nav-links > ul, .au-body .au-inpage-nav-links > ol {
  margin-top: 16px;
  margin-top: 1rem;
  list-style-type: none;
  padding: 0;
}
.au-body .au-inpage-nav-links > ul li, .au-body .au-inpage-nav-links > ol li {
  margin: 0;
}
.au-body .au-inpage-nav-links > ul * + li, .au-body .au-inpage-nav-links > ol * + li {
  margin-top: 8px;
  margin-top: 0.5rem;
  margin-left: 0;
}
.au-inpage-nav-links.au-inpage-nav-links--dark {
  border-color: #FFF;
}

.au-inpage-nav-links__heading,
.au-body .au-inpage-nav-links__heading {
  font-weight: bold;
  font-size: 1em;
}

.au-inpage-nav-section {
  position: relative;
  padding-right: 128px;
  padding-right: 8rem;
}

.au-inpage-nav-section-link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  top: 4px;
  top: 0.25rem;
  position: absolute;
  right: 0;
  font-weight: normal;
}

/*! @gold.au/keyword-list v4.0.0 */
.au-keyword-list {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.au-keyword-list:before, .au-keyword-list:after {
  content: "";
  display: table;
}
.au-keyword-list:after {
  clear: both;
}
* + .au-keyword-list {
  margin-top: 16px;
  margin-top: 1rem;
}
.au-body .au-keyword-list > li {
  margin-top: 16px;
  margin-top: 1rem;
  float: left;
  clear: both;
  list-style: none;
  margin-left: 0;
}
.au-keyword-list > li {
  font-weight: bold;
}
.au-keyword-list > li > a {
  display: block;
}

.au-keyword-list__small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  display: block;
  font-weight: normal;
}
.au-body .au-keyword-list__small {
  color: #313131;
}
.au-keyword-list--dark .au-keyword-list__small {
  color: #FFF;
}

/*! @gold.au/main-nav v2.0.0 */
@media print {
  .au-main-nav {
    background: transparent !important;
    border-bottom: none !important;
  }
  .au-main-nav a {
    color: #000 !important;
  }
  .au-main-nav a:hover {
    background: transparent !important;
  }
  .au-main-nav .active a {
    text-decoration: underline;
    border-color: #fff !important;
    background-color: transparent !important;
  }
  .au-main-nav .au-link-list > li {
    border-color: #000 !important;
  }
  .au-main-nav .au-link-list > li:last-of-type {
    border-bottom: 1px solid !important;
  }
}
@media print and (min-width: 768px) {
  .au-main-nav {
    border-bottom: 8px solid #000 !important;
    border-bottom: 0.5rem solid #000 !important;
  }
  .au-main-nav .au-link-list > li:last-of-type {
    border-bottom: none !important;
  }
}
@media print {
  .au-main-nav__toggle {
    display: none !important;
  }
  .au-main-nav__menu {
    background: transparent !important;
    position: static !important;
    display: block !important;
    width: auto !important;
  }
  .au-main-nav__menu .au-main-nav__menu-inner {
    padding: 0 !important;
  }
}
.au-main-nav {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 8px solid #006FB0;
  border-bottom: 0.5rem solid #006FB0;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #313131;
}
.au-main-nav a,
.au-main-nav .au-main-nav__toggle {
  padding: 16px;
  padding: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.au-main-nav a:focus,
.au-main-nav .au-main-nav__toggle:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-main-nav a::-moz-focus-inner,
.au-main-nav .au-main-nav__toggle::-moz-focus-inner {
  border: 0;
}
.au-main-nav a,
.au-main-nav .au-main-nav__toggle {
  color: #006FB0;
  text-decoration: none;
}
.au-main-nav a:hover,
.au-main-nav .au-main-nav__toggle:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: #313131;
  background-color: rgb(244.8, 244.8, 244.8);
}
.au-main-nav a {
  display: block;
}
.au-main-nav .active a {
  font-weight: bold;
  color: #313131;
}
.au-main-nav .active a:hover {
  border-color: rgb(244.8, 244.8, 244.8);
}
.au-main-nav .au-link-list:before, .au-main-nav .au-link-list:after {
  content: " ";
  display: table;
}
.au-main-nav .au-link-list:after {
  clear: both;
}
.au-main-nav .au-link-list {
  margin: 0;
  padding: 0;
}
.au-main-nav .au-link-list li {
  margin: 0;
}
.au-main-nav .au-link-list > li {
  border-top: 1px solid rgb(127.359375, 127.359375, 127.359375);
}
.au-main-nav.au-main-nav--alt {
  background-color: rgb(234.6, 234.6, 234.6);
}
.au-main-nav.au-main-nav--alt a:hover,
.au-main-nav.au-main-nav--alt .au-main-nav__toggle:hover {
  background-color: rgb(224.4, 224.4, 224.4);
}
.au-main-nav.au-main-nav--alt .active a {
  border-color: rgb(234.6, 234.6, 234.6);
}
.au-main-nav.au-main-nav--alt .active a:hover {
  border-color: rgb(224.4, 224.4, 224.4);
}
.au-main-nav.au-main-nav--dark {
  background-color: #000;
  border-color: #FFF;
}
.au-main-nav.au-main-nav--dark a:focus,
.au-main-nav.au-main-nav--dark .au-main-nav__toggle:focus {
  outline: 3px solid #C390F9;
}
.au-main-nav.au-main-nav--dark a::-moz-focus-inner,
.au-main-nav.au-main-nav--dark .au-main-nav__toggle::-moz-focus-inner {
  border: 0;
}
.au-main-nav.au-main-nav--dark a,
.au-main-nav.au-main-nav--dark .au-main-nav__toggle {
  color: #FFF;
}
.au-main-nav.au-main-nav--dark a:hover,
.au-main-nav.au-main-nav--dark .au-main-nav__toggle:hover {
  color: #FFF;
  background-color: black;
}
.au-main-nav.au-main-nav--dark .active a {
  color: #FFF;
  border-color: #000;
}
.au-main-nav.au-main-nav--dark .active a:hover {
  border-color: black;
}
.au-main-nav.au-main-nav--dark .au-link-list > li {
  border-color: rgb(127.5, 127.5, 127.5);
}
.au-main-nav.au-main-nav--dark.au-main-nav--alt {
  background-color: black;
}
.au-main-nav.au-main-nav--dark.au-main-nav--alt a:hover,
.au-main-nav.au-main-nav--dark.au-main-nav--alt .au-main-nav__toggle:hover {
  background-color: black;
}
.au-main-nav.au-main-nav--dark.au-main-nav--alt .active a {
  border-color: black;
}
.au-main-nav.au-main-nav--dark.au-main-nav--alt .active a:hover {
  border-color: black;
}
@media (min-width: 768px) {
  .au-main-nav .au-link-list > li {
    display: block;
    float: left;
    border: none;
  }
  .au-main-nav a,
  .au-main-nav .au-main-nav__toggle {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
  .au-main-nav a,
  .au-main-nav .au-main-nav__toggle {
    padding: 16px;
    padding: 1rem;
  }
  .au-main-nav .active a {
    border-bottom: 8px solid #ffffff;
    border-bottom: 0.5rem solid #ffffff;
  }
  .au-main-nav .active a {
    margin-bottom: -8px;
    margin-bottom: -0.5rem;
    font-weight: normal;
  }
}

.au-main-nav__toggle {
  padding: 8px 16px 8px;
  padding: 0.5rem 1rem 0.5rem;
}
.au-main-nav__toggle {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.au-main-nav__toggle:before {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}
.au-main-nav__toggle:before {
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  display: block;
  text-align: center;
}
.au-main-nav__toggle.au-main-nav__toggle--open:before {
  content: "☰";
}
.au-main-nav__toggle.au-main-nav__toggle--close:before {
  content: "✕";
}
.js .au-main-nav__toggle {
  display: inline-block;
}
@media (min-width: 768px) {
  .js .au-main-nav__toggle {
    display: none;
  }
}

.js .au-main-nav__content.au-main-nav__content--open .au-main-nav__menu {
  left: 0;
  display: block;
}
.js .au-main-nav__content.au-main-nav__content--open .au-main-nav__overlay {
  opacity: 0.8;
  left: 0;
  display: block;
}
@media (min-width: 768px) {
  .js .au-main-nav__content.au-main-nav__content--open .au-main-nav__overlay {
    display: none;
  }
}

.js .au-main-nav__menu {
  background-color: #ffffff;
  display: none;
  overflow: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -80vw;
  width: 80vw;
  z-index: 600;
}
.js .au-main-nav__menu .au-main-nav__menu-inner {
  padding: 16px;
  padding: 1rem;
}
.au-main-nav.au-main-nav--alt .au-main-nav__menu {
  background-color: rgb(234.6, 234.6, 234.6);
}
.au-main-nav.au-main-nav--dark .au-main-nav__menu {
  background-color: #000;
}
.au-main-nav.au-main-nav--alt.au-main-nav--dark .au-main-nav__menu {
  background-color: black;
}
@media (min-width: 768px) {
  .js .au-main-nav__menu {
    position: static;
    display: block;
    width: auto;
    overflow: inherit;
    background-color: transparent;
  }
  .js .au-main-nav__menu .au-main-nav__menu-inner {
    padding: 0;
  }
}

.au-main-nav__overlay {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  background-color: #000;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 590;
  opacity: 0.4;
  display: none;
}
.ie8 .au-main-nav__overlay {
  filter: alpha(opacity=80);
}

.js .au-main-nav__scroll--locked {
  overflow: hidden;
}
@media (min-width: 768px) {
  .js .au-main-nav__scroll--locked {
    overflow: visible;
  }
}

/*! @gold.au/page-alerts v3.0.0 */
@media print {
  .au-page-alerts {
    border-color: #000 !important;
    background-color: #fff !important;
    border-left: 2px solid #000 !important;
    padding-top: 3em !important;
  }
  .au-page-alerts:after {
    background: none !important;
    content: "info" !important;
    top: 1em !important;
    left: 0 !important;
    font-size: 12px !important;
    border-right: 1px solid #000 !important;
    border-bottom: 1px solid #000 !important;
    padding: 0.5em !important;
    width: auto !important;
  }
  .au-page-alerts--success:after {
    content: "success" !important;
  }
  .au-page-alerts--warning:after {
    content: "warning" !important;
  }
  .au-page-alerts--error:after {
    content: "error" !important;
  }
}
.au-page-alerts {
  padding: 16px;
  padding: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  border: solid 3px #00bfe9;
  border-left-width: 48px;
  border-left-width: 3rem;
  border-radius: 4px;
  word-wrap: break-word;
}
* + .au-page-alerts {
  margin-top: 16px;
  margin-top: 1rem;
}
.au-page-alerts:before, .au-page-alerts:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: -36px;
  left: -2.25rem;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  margin-top: -12px;
  margin-top: -0.75rem;
  border-left-width: -12px;
  border-left-width: -0.75rem;
  display: block;
  background-repeat: no-repeat;
  background-color: #ffffff;
}
.ie8 .au-page-alerts:before, .lt-ie8 .au-page-alerts:before, .ie8 .au-page-alerts:after, .lt-ie8 .au-page-alerts:after {
  background: none;
  text-align: center;
  background-color: #313131;
  color: #fff;
  font-weight: bold;
}
.au-page-alerts:after {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23313131' d='M11 17.8h2v-8h-2v8zm0-11.6v2h2v-2h-2z'/%3E%3C/svg%3E");
}
.ie8 .au-page-alerts:after, .lt-ie8 .au-page-alerts:after {
  content: "i";
}
.au-page-alerts:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300bfe9' d='M0,0v24h24V0H0z M12,23C5.9,23,1,18.1,1,12C1,5.9,5.9,1,12,1s11,4.9,11,11C23,18.1,18.1,23,12,23z'/%3E%3C/svg%3E");
}
.au-page-alerts.au-page-alerts--alt:before {
  background-color: rgb(244.8, 244.8, 244.8);
}
.au-page-alerts.au-page-alerts--dark:before {
  background-color: #000;
}
.au-page-alerts.au-page-alerts--dark:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M11 17.8h2v-8h-2v8zm0-11.6v2h2v-2h-2z'/%3E%3C/svg%3E");
}
.au-page-alerts.au-page-alerts--alt.au-page-alerts--dark:before {
  background-color: black;
}

/**
 * Page alert success
 */
.au-page-alerts--success {
  border-color: #0b996c;
}
.au-page-alerts--success:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230b996c' d='M0,0v24h24V0H0z M12,23C5.9,23,1,18.1,1,12C1,5.9,5.9,1,12,1s11,4.9,11,11C23,18.1,18.1,23,12,23z'/%3E%3C/svg%3E");
}
.au-page-alerts--success:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23313131' d='M10.4 16.9l-4.7-4.7 1.4-1.4 3.3 3.3 6.3-6.3 1.4 1.4z'/%3E%3C/svg%3E");
}
.ie8 .au-page-alerts--success:after, .lt-ie8 .au-page-alerts--success:after {
  content: "✓";
}
.au-page-alerts--success.au-page-alerts--dark:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M10.4 16.9l-4.7-4.7 1.4-1.4 3.3 3.3 6.3-6.3 1.4 1.4z'/%3E%3C/svg%3E");
}

/**
 * Page alert warning.
 */
.au-page-alerts--warning {
  border-color: #f69900;
}
.au-page-alerts--warning:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f69900' d='M0,24h24v-3.2H0V24z M12,0l12,20.8V0H12z M0,0v20.8L12,0H0z'/%3E%3C/svg%3E");
}
.au-page-alerts--warning:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23313131' d='M11 17h2v-2h-2v2zm0-8.6v5h2v-5h-2z'/%3E%3C/svg%3E");
}
.ie8 .au-page-alerts--warning:after, .lt-ie8 .au-page-alerts--warning:after {
  content: "!";
}
.au-page-alerts--warning.au-page-alerts--dark:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M11 17h2v-2h-2v2zm0-8.6v5h2v-5h-2z'/%3E%3C/svg%3E");
}

/**
 * Page alert error.
 */
.au-page-alerts--error {
  border-color: #d60000;
}
.au-page-alerts--error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d60000' d='M0,0v24h24V0H0z M22.9,16.6L16.5,23H7.4L1,16.5V7.4L7.4,1h9.2l6.3,6.4V16.6z'/%3E%3C/svg%3E");
}
.au-page-alerts--error:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23313131' d='M17 8.4L15.6 7 12 10.6 8.4 7 7 8.4l3.6 3.6L7 15.6 8.4 17l3.6-3.6 3.6 3.6 1.4-1.4-3.6-3.6z'/%3E%3C/svg%3E");
}
.ie8 .au-page-alerts--error:after, .lt-ie8 .au-page-alerts--error:after {
  content: "!";
}
.au-page-alerts--error.au-page-alerts--dark:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M17 8.4L15.6 7 12 10.6 8.4 7 7 8.4l3.6 3.6L7 15.6 8.4 17l3.6-3.6 3.6 3.6 1.4-1.4-3.6-3.6z'/%3E%3C/svg%3E");
}

/**
 * Screen-reader only class for interlinking error messages and corresponding form elements.
 */
.au-page-alerts__sronly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*! @gold.au/responsive-media v3.0.0 */
.au-responsive-media-vid, .responsive-media-vid {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.au-responsive-media-vid > .au-responsive-media-vid__item, .responsive-media-vid > .au-responsive-media-vid__item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.au-responsive-media-vid.au-responsive-media-vid--16x9, .au-responsive-media-vid--16x9.responsive-media-vid {
  padding-bottom: 56.25%;
}
.au-responsive-media-vid.au-responsive-media-vid--4x3, .au-responsive-media-vid--4x3.responsive-media-vid {
  padding-bottom: 75%;
}
* + .au-responsive-media-vid, * + .responsive-media-vid {
  margin-top: 16px;
  margin-top: 1rem;
}

.au-responsive-media-img, .taskbar .taskbar__img,
.taskbar.view ul > .views-row .field-name-field-image,
.taskbar .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar .field-name-field-image,
.taskbar .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar .field-name-field-image,
.taskbar .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar .field-name-field-image,
.taskbar .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar .field-name-field-image,
.taskbar .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar .field-name-field-image,
.taskbar--6 .taskbar__img,
.taskbar--tiled--6 .taskbar__img,
.taskbar--5 .taskbar__img,
.taskbar--tiled--5 .taskbar__img,
.taskbar--4 .taskbar__img,
.taskbar--tiled--4 .taskbar__img,
.taskbar--3 .taskbar__img,
.taskbar--tiled--3 .taskbar__img,
.taskbar--2 .taskbar__img,
.taskbar--tiled--2 .taskbar__img,
.taskbar--6 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--5 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--tiled--5 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--4 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--tiled--4 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--3 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--tiled--3 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--2 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--tiled--2 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--2 .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--2 .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--2 .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--2 .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--2 .field-name-field-image, img,
svg,
.au-body img,
.au-responsive-media img {
  max-width: 100%;
  height: auto;
}

* + .au-responsive-media-img, .taskbar * + .taskbar__img,
.taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar * + .field-name-field-image,
.taskbar .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar * + .field-name-field-image,
.taskbar .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar * + .field-name-field-image,
.taskbar .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar * + .field-name-field-image,
.taskbar .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar * + .field-name-field-image,
.taskbar--6 * + .taskbar__img,
.taskbar--tiled--6 * + .taskbar__img,
.taskbar--5 * + .taskbar__img,
.taskbar--tiled--5 * + .taskbar__img,
.taskbar--4 * + .taskbar__img,
.taskbar--tiled--4 * + .taskbar__img,
.taskbar--3 * + .taskbar__img,
.taskbar--tiled--3 * + .taskbar__img,
.taskbar--2 * + .taskbar__img,
.taskbar--tiled--2 * + .taskbar__img,
.taskbar--6 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--6 * + .field-name-field-image,
.taskbar--6 .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--6 * + .field-name-field-image,
.taskbar--6 .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--6 * + .field-name-field-image,
.taskbar--6 .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--6 * + .field-name-field-image,
.taskbar--6 .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--6 * + .field-name-field-image,
.taskbar--6 .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--6 * + .field-name-field-image,
.taskbar--tiled--6 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--6 * + .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--6 * + .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--6 * + .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--6 * + .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--6 * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--5 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--5 * + .field-name-field-image,
.taskbar--5 .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--5 * + .field-name-field-image,
.taskbar--5 .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--5 * + .field-name-field-image,
.taskbar--5 .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--5 * + .field-name-field-image,
.taskbar--5 .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--5 * + .field-name-field-image,
.taskbar--5 .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--5 * + .field-name-field-image,
.taskbar--tiled--5 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--5 * + .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--5 * + .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--5 * + .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--5 * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--5 * + .field-name-field-image,
.taskbar--4 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--4 * + .field-name-field-image,
.taskbar--4 .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--4 * + .field-name-field-image,
.taskbar--4 .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--4 * + .field-name-field-image,
.taskbar--4 .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--4 * + .field-name-field-image,
.taskbar--4 .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--4 * + .field-name-field-image,
.taskbar--4 .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--4 * + .field-name-field-image,
.taskbar--tiled--4 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--4 * + .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--4 * + .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--4 * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--4 * + .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--4 * + .field-name-field-image,
.taskbar--3 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--3 * + .field-name-field-image,
.taskbar--3 .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--3 * + .field-name-field-image,
.taskbar--3 .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--3 * + .field-name-field-image,
.taskbar--3 .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--3 * + .field-name-field-image,
.taskbar--3 .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--3 * + .field-name-field-image,
.taskbar--3 .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--3 * + .field-name-field-image,
.taskbar--tiled--3 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--3 * + .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--3 * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--3 * + .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--3 * + .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--3 * + .field-name-field-image,
.taskbar--2 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--2 * + .field-name-field-image,
.taskbar--2 .taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--2 * + .field-name-field-image,
.taskbar--2 .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--2 * + .field-name-field-image,
.taskbar--2 .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--2 * + .field-name-field-image,
.taskbar--2 .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--2 * + .field-name-field-image,
.taskbar--2 .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--2 * + .field-name-field-image,
.taskbar--tiled--2 .taskbar.view ul > .views-row * + .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--2 * + .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--2 * + .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--2 * + .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--2 * + .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row * + .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--2 * + .field-name-field-image, * + img,
* + svg,
.au-body * + img,
.au-responsive-media * + img {
  margin-top: 16px;
  margin-top: 1rem;
}

/*! @gold.au/select v3.0.0 */
@media print {
  .au-select {
    border-color: #000 !important;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23000' width='1.5em' height='auto' viewBox='0 0 28 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.9 1.1L8 7.2l6.1-6.1L16 2.9l-8 8-8-8 1.9-1.8z'/%3E%3Cpath fill='none' d='M2-5.8h24v24H2v-24z'/%3E%3C/svg%3E") !important;
  }
}
.au-select {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 8px 36px 8px 12px;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  height: 46px;
  height: 2.875rem;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 3px solid rgb(127.359375, 127.359375, 127.359375);
  text-indent: 0.01px;
  text-overflow: "";
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23006FB0' width='1.5em' height='auto' viewBox='0 0 28 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.9 1.1L8 7.2l6.1-6.1L16 2.9l-8 8-8-8 1.9-1.8z'/%3E%3Cpath fill='none' d='M2-5.8h24v24H2v-24z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.5em auto;
  vertical-align: middle;
}
.au-select:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-select::-moz-focus-inner {
  border: 0;
}
.au-select:focus {
  border-radius: 0;
}
.au-select[disabled] {
  cursor: not-allowed;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
}
.au-select:disabled {
  cursor: not-allowed;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
}
.au-select.au-select--dark:invalid, .au-select:invalid {
  background-color: rgb(252.95, 242.25, 242.25);
  border-color: #d60000;
}
.au-select.au-select--dark.au-select--invalid, .au-select.au-select--invalid {
  background-color: rgb(252.95, 242.25, 242.25);
  border-color: #d60000;
}
.au-select.au-select--dark.au-select--valid, .au-select.au-select--valid {
  background-color: rgb(242.8, 249.9, 247.65);
  border-color: #0b996c;
}
.ie8 .au-select:after, .ie9 .au-select:after {
  display: none;
}
.au-select::-ms-expand {
  display: none;
}
.ie8 .au-select, .ie9 .au-select {
  padding-right: 4px;
  padding-right: 0.25rem;
}
.au-select.au-select--dark {
  border-color: #FFF;
}
.au-select.au-select--dark:focus {
  outline: 3px solid #C390F9;
}
.au-select.au-select--dark::-moz-focus-inner {
  border: 0;
}
.au-select.au-select--block {
  width: 100%;
}

.au-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

html > body .au-select, x:-moz-any-link, x:default {
  padding-right: 16px;
  padding-right: 1rem;
}

@supports (-moz-osx-font-smoothing: auto) {
  html body .au-select {
    padding-right: 36px;
    padding-right: 2.25rem;
  }
}
/*! @gold.au/side-nav v6.0.0 */
/**
 * AU-side-nav-indent - Mixin for creating indent based off depth
 *
 * @param  {number} $depth         - How deep the menu goes
 * @param  {string} $element       - The element to add the ul in front of
 * @param  {number} $indent-size   - Size of the indent in units
 *
 * @return {number}          - The indented menu items
 */
@media print {
  .au-side-nav {
    background: transparent !important;
  }
  .au-side-nav a {
    color: #000 !important;
    text-decoration: underline !important;
  }
  .au-side-nav a:hover {
    background: transparent !important;
  }
  .au-side-nav .au-accordion__title {
    display: none;
  }
  .au-side-nav__content ul ul ul a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M2 10h12v1H2zM2 5h1v5H2z'/%3E%3C/svg%3E") !important;
  }
  .au-side-nav__content > ul > li {
    border-color: #000 !important;
  }
}
.au-side-nav {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: rgb(234.6, 234.6, 234.6);
  border-radius: 4px;
  overflow: hidden;
  border: 0;
}
.au-side-nav a,
.au-side-nav .active > span {
  padding: 16px;
  padding: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: rgb(99.453125, 99.453125, 99.453125);
  display: block;
}
.au-side-nav a {
  text-decoration: none;
}
.au-side-nav a:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  background-color: rgb(224.4, 224.4, 224.4);
}
.au-side-nav a:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-side-nav a::-moz-focus-inner {
  border: 0;
}
.au-side-nav .au-link-list {
  padding: 0;
  margin: 0;
}
.au-side-nav .au-link-list li {
  margin: 0;
}
.au-side-nav .au-accordion__body {
  overflow: visible;
}
.au-side-nav .au-accordion__title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #006FB0;
  font-weight: normal;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  background-color: inherit;
}
.au-side-nav .au-accordion__title:hover {
  text-decoration: none;
}
.au-side-nav .au-accordion__title:focus {
  outline-offset: -3px;
}
.no-js .au-side-nav .au-accordion__title {
  display: none;
}
.au-side-nav .au-accordion__body-wrapper {
  border: 0;
  padding: 0;
}
@media (min-width: 576px) {
  .au-side-nav {
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }
  .au-side-nav .au-accordion__body.au-accordion--closed {
    display: block;
    height: auto;
  }
  .au-side-nav a:hover {
    background-color: rgb(244.8, 244.8, 244.8);
  }
  .au-side-nav .au-accordion__title {
    display: none;
  }
}

.au-side-nav__content {
  margin: 0 16px;
  margin: 0 1rem;
}
.au-side-nav__content ul ul a {
  padding-left: 32px;
  padding-left: 2rem;
}
.au-side-nav__content ul ul ul a {
  padding-left: 60px;
  padding-left: 3.75rem;
}
.au-side-nav__content ul ul ul ul a {
  padding-left: 80px;
  padding-left: 5rem;
}
.au-side-nav__content ul ul .active > span {
  padding-left: 32px;
  padding-left: 2rem;
}
.au-side-nav__content ul ul ul .active > span {
  padding-left: 60px;
  padding-left: 3.75rem;
}
.au-side-nav__content ul ul ul ul .active > span {
  padding-left: 80px;
  padding-left: 5rem;
}
.au-side-nav__content .active > span {
  font-weight: bold;
  color: #313131;
}
.au-side-nav__content ul ul ul a:before,
.au-side-nav__content ul ul ul .active > span:before {
  content: " ";
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background-size: 16px;
  background-size: 1rem;
  margin-left: -24px;
  margin-left: -1.5rem;
  display: block;
  float: left;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='rgb(127.359375, 127.359375, 127.359375)' d='M2 10h12v1H2zM2 5h1v5H2z'/%3E%3C/svg%3E");
}
.au-side-nav__content > ul > li {
  border-bottom: 1px solid rgb(127.359375, 127.359375, 127.359375);
}
.au-side-nav__content > ul > li:last-of-type {
  border: none;
}
@media (min-width: 576px) {
  .au-side-nav__content {
    margin: 0;
  }
}

.au-sidenav__title {
  margin: 0;
}
.au-sidenav__title a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #313131;
  border-bottom: 2px solid rgb(127.359375, 127.359375, 127.359375);
}

.au-side-nav.au-side-nav--alt {
  background: #ffffff;
}
.au-side-nav.au-side-nav--alt a:hover {
  background: rgb(244.8, 244.8, 244.8);
}
@media (min-width: 576px) {
  .au-side-nav.au-side-nav--alt {
    background: transparent;
  }
  .au-side-nav.au-side-nav--alt a:hover {
    background-color: rgb(224.4, 224.4, 224.4);
  }
}

.au-side-nav.au-side-nav--dark {
  background: black;
}
.au-side-nav.au-side-nav--dark .au-accordion__title {
  color: #FFF;
  background-color: inherit;
}
.au-side-nav.au-side-nav--dark a {
  color: rgb(127.5, 127.5, 127.5);
}
.au-side-nav.au-side-nav--dark a:hover {
  background: black;
}
.au-side-nav.au-side-nav--dark a:focus {
  outline: 3px solid #C390F9;
}
.au-side-nav.au-side-nav--dark a::-moz-focus-inner {
  border: 0;
}
.au-side-nav.au-side-nav--dark .au-side-nav__content .active > span {
  color: #FFF;
}
.au-side-nav.au-side-nav--dark .au-side-nav__content ul ul ul a:before,
.au-side-nav.au-side-nav--dark .au-side-nav__content ul ul ul .active > span:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='rgb(127.5, 127.5, 127.5)' d='M2 10h12v1H2zM2 5h1v5H2z'/%3E%3C/svg%3E");
}
.au-side-nav.au-side-nav--dark .au-side-nav__content > ul > li {
  border-color: rgb(127.5, 127.5, 127.5);
}
.au-side-nav.au-side-nav--dark .au-sidenav__title a {
  border-color: rgb(127.5, 127.5, 127.5);
  color: #FFF;
}
@media (min-width: 576px) {
  .au-side-nav.au-side-nav--dark {
    background: transparent;
  }
  .au-side-nav.au-side-nav--dark a:hover {
    background-color: black;
  }
}

.au-side-nav.au-side-nav--dark.au-side-nav--alt {
  background: #000;
}
.au-side-nav.au-side-nav--dark.au-side-nav--alt a:hover {
  background: black;
}
@media (min-width: 576px) {
  .au-side-nav.au-side-nav--dark.au-side-nav--alt {
    background: transparent;
  }
  .au-side-nav.au-side-nav--dark.au-side-nav--alt a:hover {
    background-color: black;
  }
}

/*! @gold.au/skip-link v3.0.0 */
@media print {
  .au-skip-link__link {
    background: #fff !important;
  }
}
.au-skip-link {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #313131;
}

.au-skip-link__link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.au-skip-link__link:active, .au-skip-link__link:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
  top: 16px;
  top: 1rem;
  left: 16px;
  left: 1rem;
  padding: 24px;
  padding: 1.5rem;
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: absolute;
  width: auto;
  color: #ffffff;
  background-color: #006FB0;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  z-index: 600;
}
.au-body .au-skip-link__link:hover, .au-skip-link__link:hover {
  text-decoration: none;
  color: #ffffff;
}

/*! @gold.au/tags v5.0.0 */
@media print {
  .au-tag {
    color: #000 !important;
    border-color: #000 !important;
  }
}
.au-tag {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  padding: 0 8px;
  padding: 0 0.5rem;
  color: #313131;
  border: 1px solid #006FB0;
  border-radius: 4px;
  display: inline-block;
}
.au-tag.au-tag--dark {
  border-color: #FFF;
  color: #FFF;
}

a.au-tag {
  color: #006FB0;
  display: inline-block;
  border-radius: 4px;
}
a.au-tag:hover {
  color: #313131;
  text-decoration: none;
  background-color: rgb(244.8, 244.8, 244.8);
}
a.au-tag:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
a.au-tag::-moz-focus-inner {
  border: 0;
}
a.au-tag:focus {
  outline-offset: -1px;
}
a.au-tag.au-tag--dark {
  color: #FFF;
}
a.au-tag.au-tag--dark:hover {
  color: #FFF;
  background-color: black;
}
a.au-tag.au-tag--dark:focus {
  outline: 3px solid #C390F9;
}
a.au-tag.au-tag--dark::-moz-focus-inner {
  border: 0;
}

.au-tag-list {
  display: block;
  margin: 0;
  padding: 0;
}
.au-tag-list li {
  margin: 8px 4px 0 0;
  margin: 0.5rem 0.25rem 0 0;
  display: inline-block;
}
.au-tag-list li > .au-tag:focus {
  outline-offset: -1px;
}

/*! @gold.au/text-inputs v3.0.0 */
@media print {
  .au-text-input {
    border-color: #000 !important;
  }
  .au-text-input[disabled] {
    color: rgb(99.453125, 99.453125, 99.453125) !important;
    background-color: #ccc !important;
    border: 2px solid #ccc !important;
  }
  .au-text-input:disabled {
    color: rgb(99.453125, 99.453125, 99.453125) !important;
    background-color: #ccc !important;
    border: 2px solid #ccc !important;
  }
}
/**
 * Generic text input styling.
 *
 * Also includes variants:
 * - invalid
 * - valid
 * - :focus
 * - :disabled/[disabled]
 */
.au-text-input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  height: 46px;
  height: 2.875rem;
  border: 3px solid rgb(127.359375, 127.359375, 127.359375);
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #313131;
  border-radius: 4px;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  max-width: 205px;
  max-width: 12.8125rem;
  /**
   * Block modifier
   */
  /**
   * Number input styling.
   *
   * Numbers are easier to disambiguate from each other (and letters) when set in
   * monospace.
   */
}
.au-text-input.au-text-input--dark:invalid, .au-text-input:invalid {
  background-color: rgb(252.95, 242.25, 242.25);
  border-color: #d60000;
}
.au-text-input.au-text-input--dark.au-text-input--invalid, .au-text-input.au-text-input--invalid {
  background-color: rgb(252.95, 242.25, 242.25);
  border-color: #d60000;
}
.au-text-input.au-text-input--dark.au-text-input--valid, .au-text-input.au-text-input--valid {
  background-color: rgb(242.8, 249.9, 247.65);
  border-color: #0b996c;
}
.au-text-input[disabled] {
  cursor: not-allowed;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
}
.au-text-input:disabled {
  cursor: not-allowed;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
}
.au-text-input:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
}
.au-text-input::-moz-focus-inner {
  border: 0;
}
.au-text-input:focus {
  border-radius: 0;
  background-color: #ffffff;
}
.au-text-input.au-text-input--dark {
  border-color: #FFF;
}
.au-text-input.au-text-input--dark[disabled] {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
}
.au-text-input.au-text-input--dark:disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
}
.au-text-input.au-text-input--dark:focus {
  outline: 3px solid #C390F9;
}
.au-text-input.au-text-input--dark::-moz-focus-inner {
  border: 0;
}
.au-text-input.au-text-input--width-xs {
  max-width: 69px;
  max-width: 4.3rem;
}
.au-text-input.au-text-input--width-sm {
  max-width: 101px;
  max-width: 6.3rem;
}
.au-text-input.au-text-input--width-md {
  max-width: 160px;
  max-width: 10rem;
}
.au-text-input.au-text-input--width-lg {
  max-width: 288px;
  max-width: 18rem;
}
.au-text-input.au-text-input--width-xl {
  max-width: 384px;
  max-width: 24rem;
}
.au-text-input.au-text-input--block {
  display: block;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.au-text-input.au-text-input--number {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  letter-spacing: 2px;
}

/**
 * Textarea styling. (Not nested because sass does odd stuff)
 */
textarea.au-text-input {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  height: auto;
  min-height: 6em;
}

.visually-hidden,
.sr-only,
.health-field--icon-only .health-field__label,
.element-invisible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  position: absolute !important;
}

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

html.debug * {
  outline: 1px solid #006565 !important;
  background: rgba(0, 134, 134, 0.1) !important;
}
html.debug:before {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  padding: 8px;
  padding: 0.5rem;
  display: block;
  text-align: center;
}
@media (min-width: 0) {
  html.debug:before {
    content: "Breakpoint $AU-media-xs (min-width: 0)";
    background: #2ab3c1;
  }
}
@media (min-width: 576px) {
  html.debug:before {
    content: "Breakpoint $AU-media-sm (min-width: 576px)";
    background: rgb(71.0340425532, 201.6212765957, 214.9659574468);
  }
}
@media (min-width: 768px) {
  html.debug:before {
    content: "Breakpoint $AU-media-md (min-width: 768px)";
    background: rgb(112.9191489362, 213.7744680851, 224.0808510638);
  }
}
@media (min-width: 992px) {
  html.debug:before {
    content: "Breakpoint $AU-media-lg (min-width: 992px)";
    background: rgb(154.8042553191, 225.9276595745, 233.1957446809);
  }
}
@media (min-width: 1200px) {
  html.debug:before {
    content: "Breakpoint $AU-media-xl (min-width: 1200px)";
    background: rgb(196.6893617021, 238.0808510638, 242.3106382979);
  }
}
@media (min-width: 1441px) {
  html.debug:before {
    content: "Breakpoint $AU-media-xxl (min-width: 1441px)";
    background: rgb(238.5744680851, 250.2340425532, 251.4255319149);
  }
}
html.debug .adminimal-admin-toolbar {
  padding-top: 0 !important;
}
html.debug .toolbar-fixed .toolbar-oriented .toolbar-bar {
  position: relative;
}

p:empty,
.health-card__text:empty {
  display: none;
}

.health-sub-header.health-sub-header--dark {
  color: #FFF;
}
.health-sub-header.health-sub-header--dark h1,
.health-sub-header.health-sub-header--dark h2,
.health-sub-header.health-sub-header--dark h3,
.health-sub-header.health-sub-header--dark h4,
.health-sub-header.health-sub-header--dark .au-body .health-card.health-card--contact-horizontal .health-card__title,
.au-body .health-card.health-card--contact-horizontal .health-sub-header.health-sub-header--dark .health-card__title,
.health-sub-header.health-sub-header--dark h5,
.health-sub-header.health-sub-header--dark h6,
.health-sub-header.health-sub-header--dark p {
  color: #FFF;
}
.health-sub-header.health-sub-header--dark a {
  color: #FFF;
}
.health-sub-header.health-sub-header--dark a:hover {
  color: #FFF;
  text-decoration: none;
}
.health-sub-header.health-sub-header--dark .au-callout {
  color: #313131;
}
.health-sub-header.health-sub-header--dark .au-btn.au-btn--primary {
  background-color: #FFF;
  color: #313131;
  border-color: #FFF;
}
.health-sub-header.health-sub-header--dark .au-btn.au-btn--primary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: #ececec;
  background-color: #ececec;
}
.health-sub-header.health-sub-header--dark .au-btn.au-btn--secondary {
  border-color: #FFF;
}
.health-sub-header.health-sub-header--dark .au-btn.au-btn--secondary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: #ececec;
  color: #ececec;
}

:root {
  --brand-primary-colour: #072e7e;
  --brand-colour-1: #27b3bb;
  --brand-colour-2: #0091d5;
  --brand-colour-3: #1a8a96;
  --brand-colour-4: #004181;
  --primary-gradient-bg--start: #072e7e;
  --primary-gradient-bg--end: #005ab0;
  --secondary-gradient-bg--start: #006972;
  --secondary-gradient-bg--end: #0F7E87;
  --tertiary-gradient-bg--start: #0062a4;
  --tertiary-gradient-bg--end: #0075c5;
  --neutral-bg: #f8f8f8;
  --neutral--darker-bg: #ececec;
  --primary-body-text: #FFF;
  --secondary-body-text: #FFF;
  --tertiary-body-text: #FFF;
  --neutral-body-text: #313131;
  --neutral--darker-body-text: #313131;
  --primary-link-text: #FFF;
  --secondary-link-text: #FFF;
  --tertiary-link-text: #FFF;
  --neutral-link-text: #006FB0;
  --neutral--darker-link-text: #006FB0;
  --btn-bg: #006FB0;
  --btn-bg--hover: rgb(0, 78.8352272727, 125);
  --btn-text: #FFF;
  --primary-btn-bg: #FFF;
  --primary-btn-bg--hover: rgb(205.4, 213.2, 229.2);
  --primary-btn-text: #313131;
  --secondary-btn-bg: #FFF;
  --secondary-btn-bg--hover: rgb(204, 225, 226.8);
  --secondary-btn-text: #313131;
  --tertiary-btn-bg: #FFF;
  --tertiary-btn-bg--hover: rgb(204, 223.6, 236.8);
  --tertiary-btn-text: #313131;
  --neutral-btn-bg: #006FB0;
  --neutral-btn-bg--hover: rgb(0, 78.8352272727, 125);
  --neutral-btn-text: #FFF;
  --neutral--darker-btn-bg: #006FB0;
  --neutral--darker-btn-bg--hover: rgb(0, 78.8352272727, 125);
  --neutral--darker-btn-text: #FFF;
  --subheader-gradient-bg--start: #072e7e;
  --subheader-gradient-bg--end: #005ab0;
  --subheader-gradient-content-bg--start: #072e7e;
  --subheader-gradient-content-bg--end: #005ab0;
  --subheader-text: #FFF;
  --subheader-minheight--desktop: 500px;
  --hero-bg: #072e7e;
  --hero-bg--inset-opaque: rgb(4.3157894737, 28.3609022556, 77.6842105263);
  --hero-bg--trans: rgba(7, 46, 126, 0.8);
  --hero-text: #FFF;
  --hero-content-width--md: 60%;
  --hero-content-width--lg: 60%;
  --hero-image-width--md: 100%;
  --hero-image-width--lg: 50%;
  --hero-image-focus: right;
  --hero-minheight: 300px;
  --hero-minheight--md: 400px;
  --hero-minheight--lg: 500px;
  --hero-overlap-top: 75px;
  --main-nav-border: #072e7e;
  --main-nav-active-link-bg--hover: #e6f3ff;
  --main-nav-active-link-border: #e6f3ff;
  --main-nav-dropdown-bg: #e6f3ff;
  --main-nav-active-dropdown-link-bg--hover: #cfe6fb;
  --main-nav-active-dropdown-border: #3291d3;
  --accordion-title-bg: #f8f8f8;
  --accordion-title-bg--active: #ececec;
  --accordion-title-text: #313131;
  --accordion-border: #cdcdcd;
  --accordion-body-bg: #fff;
  --accordion-body-text: #313131;
  --accordion-control-link-text: #006FB0;
  --card-bg: #ffffff;
  --card-border: #cdcdcd;
  --card-text: #313131;
  --card-text--primary: #FFF;
  --card-text--secondary: #FFF;
  --card-text--tertiary: #FFF;
  --card-text--neutral: #313131;
  --card-link--primary: #FFF;
  --card-link--secondary: #FFF;
  --card-link--tertiary: #FFF;
  --card-highlight-border: #0075c5;
  --card-clickable-icon: #000000;
  --card-clickable-icon--primary: #ffffff;
  --card-clickable-icon--secondary: #ffffff;
  --card-clickable-icon--tertiary: #ffffff;
  --card-clickable-icon--neutral: #000000;
  --card-text-minor: #414141;
  --card-text-minor--primary: #ffffff;
  --card-text-minor--secondary: #ffffff;
  --card-text-minor--tertiary: #ffffff;
  --card-text-minor--neutral: #414141;
  --callout-border--primary: #0075c5;
  --callout-border--secondary:#0F7E87;
  --callout-border--tertiary: #005ab0;
  --tab-border--active: #074cd9;
  --tag-link-bg: #e6f3ff;
  --tag-link-border: rgb(179, 218.52, 255);
  --tag-link-text: #006FB0;
  --side-nav-link-bg--active: #e6f3ff;
  --side-nav-link-border: #005ab0;
  --side-nav-link-border--bottom: #bacbdb;
  --side-nav-parent-bg: #034295;
  --inpage-nav-border: #0075c5;
  --footer-gradient-bg--start: #313131;
  --footer-gradient-bg--end: #58585b;
  --footer-border: #87888A;
  --footer-btn-bg: #FFF;
  --footer-btn-bg--hover: rgb(229.5, 229.5, 229.5);
  --footer-btn-text: #313131;
  --label-icon: #626366;
  --step-border-colour: #87888A;
  --step-border-colour--complete: rgb(7.5792682927, 105.4207317073, 74.4146341463);
  --step-bg-colour--complete: #0b996c;
  --step-border-colour--inprogress: rgb(4.3157894737, 28.3609022556, 77.6842105263);
  --step-bg-colour--inprogress: #072e7e;
  --step-text-colour-minor: #414141;
  --step-border-width: 2px;
  --step-node-size: 15px;
  --step-node-size--value: 33px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.cke_editable {
  padding: 20px;
}

/**
 * Health-fontgrid Mixin for setting font-size and line-height that snaps to the grid, and also includes mobile :)
 *
 * @param  {keywords} $fontsize-key   -  Either one of the following keywords: xs, sm, md, lg, xl, xxl, xxxl
 * @param  {keywords} $lineheight-key -  Either one of the following keywords: heading, nospace, default
 *
 * @return {string}                   - The code; fontsize in REM, with PX fallback, and unitless line-height which matches vertical grid
*/
/**
 * Get the next size down.
 *
 * @param  {keywords} $fontsize-key   -  Either one of the following keywords: xs, sm, md, lg, xl, xxl, xxxl
 *
 * @return {string}                   -  One of the following keywords: xs, sm, md, lg, xl, xxl, xxxl
*/
.au-body .au-display-xxxl {
  font-size: 46px;
  font-size: 2.875rem;
  line-height: 1.2173913043;
}
@media (min-width: 576px) {
  .au-body .au-display-xxxl {
    font-size: 52px;
    font-size: 3.25rem;
    line-height: 1.2307692308;
  }
}
.au-body .au-display-xxxl {
  font-weight: bold;
}
.au-body .au-display-xxxl--text {
  font-size: 46px;
  font-size: 2.875rem;
  line-height: 1.4782608696;
}
@media (min-width: 576px) {
  .au-body .au-display-xxxl--text {
    font-size: 52px;
    font-size: 3.25rem;
    line-height: 1.5384615385;
  }
}
.au-body .au-display-xxxl--text {
  font-weight: normal;
}
.au-body h1,
.au-body .au-display-xxl {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
}
@media (min-width: 576px) {
  .au-body h1,
  .au-body .au-display-xxl {
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 1.2173913043;
  }
}
.au-body h1,
.au-body .au-display-xxl {
  font-weight: bold;
}
.au-body h1--text,
.au-body .au-display-xxl--text {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .au-body h1--text,
  .au-body .au-display-xxl--text {
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 1.4782608696;
  }
}
.au-body h1--text,
.au-body .au-display-xxl--text {
  font-weight: normal;
}
.au-body h2,
.au-body .au-display-xl {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}
@media (min-width: 576px) {
  .au-body h2,
  .au-body .au-display-xl {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
.au-body h2,
.au-body .au-display-xl {
  font-weight: bold;
}
.au-body h2--text,
.au-body .au-display-xl--text {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .au-body h2--text,
  .au-body .au-display-xl--text {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.au-body h2--text,
.au-body .au-display-xl--text {
  font-weight: normal;
}
.au-body h3,
.au-body .au-display-lg {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .au-body h3,
  .au-body .au-display-lg {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}
.au-body h3,
.au-body .au-display-lg {
  font-weight: bold;
}
.au-body h3--text,
.au-body .au-display-lg--text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media (min-width: 576px) {
  .au-body h3--text,
  .au-body .au-display-lg--text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.au-body h3--text,
.au-body .au-display-lg--text {
  font-weight: normal;
}
.au-body h4, .au-body .health-card.health-card--contact-horizontal .health-card__title,
.au-body .au-display-md,
.au-body ul.list--large--checklist > li strong,
ul.list--large--checklist > li .au-body strong {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
@media (min-width: 576px) {
  .au-body h4, .au-body .health-card.health-card--contact-horizontal .health-card__title,
  .au-body .au-display-md,
  .au-body ul.list--large--checklist > li strong,
  ul.list--large--checklist > li .au-body strong {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.au-body h4, .au-body .health-card.health-card--contact-horizontal .health-card__title,
.au-body .au-display-md,
.au-body ul.list--large--checklist > li strong,
ul.list--large--checklist > li .au-body strong {
  font-weight: bold;
}
.au-body h4--text,
.au-body .au-display-md--text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media (min-width: 576px) {
  .au-body h4--text,
  .au-body .au-display-md--text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
.au-body h4--text,
.au-body .au-display-md--text {
  font-weight: normal;
}
.au-body h5,
.au-body .au-display-sm {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
@media (min-width: 576px) {
  .au-body h5,
  .au-body .au-display-sm {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
.au-body h5,
.au-body .au-display-sm {
  font-weight: bold;
}
.au-body h5--text,
.au-body .au-display-sm--text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media (min-width: 576px) {
  .au-body h5--text,
  .au-body .au-display-sm--text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.au-body h5--text,
.au-body .au-display-sm--text {
  font-weight: normal;
}
.au-body h6,
.au-body .au-display-xs {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
@media (min-width: 576px) {
  .au-body h6,
  .au-body .au-display-xs {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.1428571429;
  }
}
.au-body h6,
.au-body .au-display-xs {
  font-weight: bold;
}
.au-body h6--text,
.au-body .au-display-xs--text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media (min-width: 576px) {
  .au-body h6--text,
  .au-body .au-display-xs--text {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.au-body h6--text,
.au-body .au-display-xs--text {
  font-weight: normal;
}
.au-body .au-display--light {
  font-weight: normal;
}
.au-body .au-display--heavy {
  font-weight: bold;
}
.au-body .au-display--inline {
  display: inline;
}
.au-body .au-subtitle + h1, .au-body .au-subtitle + h2, .au-body .au-subtitle + h3 {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.au-body h1 + .au-subtitle {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.au-body .au-accordion {
  margin-bottom: 0.75rem;
  border: 1px solid var(--accordion-border);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  overflow: hidden;
}
.au-body .au-accordion__title:focus {
  outline-offset: -3px;
}
.au-body .au-accordion__title {
  color: var(--accordion-title-text);
  border: none;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media (min-width: 576px) {
  .au-body .au-accordion__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
.au-body .au-accordion__title {
  font-weight: bold;
}
.au-body .au-accordion__title {
  border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  background-color: var(--accordion-title-bg);
}
.au-body .au-accordion__title:hover {
  background-color: var(--accordion-title-bg--active);
}
.au-body .au-accordion__title:hover:after {
  display: block;
  background-color: var(--accordion-title-text);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
  background-image: none;
}
.au-body .au-accordion__title:after {
  display: block;
  background-color: var(--accordion-title-text);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
  background-image: none;
}
.au-body .au-accordion__body-wrapper {
  border: 0;
}
.au-body .au-accordion__body {
  background-color: var(--accordion-body-bg);
  color: var(--accordion-body-text);
}
.au-body .au-accordion.au-accordion--small .au-accordion__title, .au-body .au-accordion.au-accordion--compact .au-accordion__title, .au-body .au-accordion.health-video__transcript .au-accordion__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media (min-width: 576px) {
  .au-body .au-accordion.au-accordion--small .au-accordion__title, .au-body .au-accordion.au-accordion--compact .au-accordion__title, .au-body .au-accordion.health-video__transcript .au-accordion__title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.au-body .au-accordion.au-accordion--small .au-accordion__title, .au-body .au-accordion.au-accordion--compact .au-accordion__title, .au-body .au-accordion.health-video__transcript .au-accordion__title {
  font-weight: bold;
}
.au-body .au-accordion.au-accordion--small .au-accordion__title, .au-body .au-accordion.au-accordion--compact .au-accordion__title, .au-body .au-accordion.health-video__transcript .au-accordion__title {
  font-weight: normal;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-left: 12px;
  padding-left: 0.75rem;
}
.au-body .au-accordion.au-accordion--small .au-accordion__title:after, .au-body .au-accordion.au-accordion--compact .au-accordion__title:after, .au-body .au-accordion.health-video__transcript .au-accordion__title:after {
  height: 0.75rem;
  width: 0.75rem;
}
.au-body .au-accordion.au-accordion--small .au-accordion__body, .au-body .au-accordion.au-accordion--compact .au-accordion__body, .au-body .au-accordion.health-video__transcript .au-accordion__body {
  font-size: 0.9rem;
}
.au-body .au-accordion.au-accordion--small .au-accordion__body-wrapper, .au-body .au-accordion.au-accordion--compact .au-accordion__body-wrapper, .au-body .au-accordion.health-video__transcript .au-accordion__body-wrapper {
  padding: 12px;
  padding: 0.75rem;
}
.au-body .au-accordion.au-accordion--block .au-accordion__title {
  background-color: #fff;
}
.au-body .au-accordion.au-accordion--block .au-accordion__body-wrapper {
  padding-top: 0;
}
.au-body .au-accordion.au-accordion--block .au-accordion__body {
  background-color: #fff;
}
.au-body .au-accordion.au-accordion--shadow {
  -webkit-box-shadow: 0px 0.125em 0.375em rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0.125em 0.375em rgba(0, 0, 0, 0.2);
}
.au-body .au-accordion.au-accordion--light .au-accordion__title {
  font-weight: 400;
}
.au-body .au-accordion.au-accordion--light .au-accordion__body-wrapper {
  padding: 8px;
  padding: 0.5rem;
}
.au-body .au-accordion-group__controls {
  text-align: right;
  margin-bottom: 0.5rem;
}
.au-body .au-accordion-group__control {
  color: var(--accordion-control-link-text);
  background: none;
  border: none;
  text-decoration: underline;
  margin-left: 0.25rem;
  padding: 0;
  cursor: pointer;
}
.au-body .au-accordion-group__control:focus {
  outline: 3px solid #9263DE;
  outline-offset: 2px;
  outline-offset: 2px;
}
.au-body .au-accordion-group.au-accordion-group--flush {
  border: 1px solid var(--accordion-border);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.au-body .au-accordion-group.au-accordion-group--flush .au-accordion {
  margin-bottom: 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--accordion-border);
}
.au-body .au-accordion-group.au-accordion-group--flush .au-accordion__title {
  border-radius: 0;
}
.au-body .au-accordion-group.au-accordion-group--flush li:first-of-type .au-accordion__title {
  border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
}
.au-body .au-accordion-group.au-accordion-group--flush li:last-of-type .au-accordion {
  border-bottom: 0;
  border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
}

.au-body {
  fill: #313131;
}
.au-body.au-body--dark {
  background: #000;
}
.au-body.au-body--dark-tertiary {
  background: #072e7e;
}
.au-body.au-body--dark {
  fill: #FFF;
}
.au-body .text--minor {
  color: #414141;
  font-size: 0.8em;
}
.au-body .text--align-right {
  text-align: right;
}
.au-body .text--align-center {
  text-align: center;
}
.au-body .au-introduction {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media (min-width: 576px) {
  .au-body .au-introduction {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.au-body .au-introduction {
  font-weight: normal;
}
.au-body .au-introduction--dark {
  color: #313131;
}
.au-body abbr,
.au-body abbr[title],
.au-body .definition {
  border-bottom: 1px dotted #CCC !important;
  text-decoration: none !important;
  cursor: help;
}
.au-body .au-sronly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.au-body .margin-bottom--none {
  margin-bottom: 0rem;
}
.au-body .margin-top--none {
  margin-top: 0rem;
}
.au-body .margin-bottom--small {
  margin-bottom: 0.5rem;
}
.au-body .margin-top--small {
  margin-top: 0.5rem;
}
.au-body .margin-bottom--standard,
.au-body .standard-gap--bottom {
  margin-bottom: 1.5rem;
}
.au-body .margin-top--standard,
.au-body .standard-gap--bottom--mobile-only,
.au-body .standard-gap--mobile-only,
.au-body .standard-gap {
  margin-top: 1.5rem;
}
.au-body .margin-bottom--large {
  margin-bottom: 3rem;
}
.au-body .margin-top--large {
  margin-top: 3rem;
}
@media (min-width: 576px) {
  .au-body .sm\:margin-bottom--none {
    margin-bottom: 0rem;
  }
  .au-body .sm\:margin-top--none {
    margin-top: 0rem;
  }
}
@media (min-width: 576px) {
  .au-body .sm\:margin-bottom--small {
    margin-bottom: 0.5rem;
  }
  .au-body .sm\:margin-top--small {
    margin-top: 0.5rem;
  }
}
@media (min-width: 576px) {
  .au-body .sm\:margin-bottom--standard {
    margin-bottom: 1.5rem;
  }
  .au-body .sm\:margin-top--standard {
    margin-top: 1.5rem;
  }
}
@media (min-width: 576px) {
  .au-body .sm\:margin-bottom--large {
    margin-bottom: 3rem;
  }
  .au-body .sm\:margin-top--large {
    margin-top: 3rem;
  }
}
@media (min-width: 768px) {
  .au-body .md\:margin-bottom--none {
    margin-bottom: 0rem;
  }
  .au-body .md\:margin-top--none,
  .au-body .standard-gap--bottom--mobile-only,
  .au-body .standard-gap--mobile-only {
    margin-top: 0rem;
  }
}
@media (min-width: 768px) {
  .au-body .md\:margin-bottom--small {
    margin-bottom: 0.5rem;
  }
  .au-body .md\:margin-top--small {
    margin-top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .au-body .md\:margin-bottom--standard {
    margin-bottom: 1.5rem;
  }
  .au-body .md\:margin-top--standard {
    margin-top: 1.5rem;
  }
}
@media (min-width: 768px) {
  .au-body .md\:margin-bottom--large {
    margin-bottom: 3rem;
  }
  .au-body .md\:margin-top--large {
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  .au-body .lg\:margin-bottom--none {
    margin-bottom: 0rem;
  }
  .au-body .lg\:margin-top--none {
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .au-body .lg\:margin-bottom--small {
    margin-bottom: 0.5rem;
  }
  .au-body .lg\:margin-top--small {
    margin-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .au-body .lg\:margin-bottom--standard {
    margin-bottom: 1.5rem;
  }
  .au-body .lg\:margin-top--standard {
    margin-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .au-body .lg\:margin-bottom--large {
    margin-bottom: 3rem;
  }
  .au-body .lg\:margin-top--large {
    margin-top: 3rem;
  }
}
@media print {
  .au-body .print--hide {
    display: none;
  }
}
@media print {
  .au-body a[href]:after {
    content: "" !important;
  }
  .au-body p {
    max-width: 100%;
  }
}
.au-body main,
.au-body aside {
  display: block;
}

.au-breadcrumbs {
  display: none;
}
@media (min-width: 576px) {
  .au-breadcrumbs {
    display: block;
  }
}
@media print {
  .au-breadcrumbs {
    display: block;
  }
  .au-breadcrumbs a {
    text-decoration: none;
    font-size: 0.9rem;
  }
}
* + .au-breadcrumbs--flush {
  margin-top: 0;
}

.au-btn,
a.au-btn {
  background-color: var(--btn-bg);
  color: var(--btn-text);
  border-color: var(--btn-bg);
}
.au-btn:hover:not(:disabled),
a.au-btn:hover:not(:disabled) {
  border-color: var(--btn-bg--hover);
  background-color: var(--btn-bg--hover);
}
.au-btn.au-btn--primary,
a.au-btn.au-btn--primary {
  background-color: var(--btn-bg);
  color: var(--btn-text) !important;
  border-color: var(--btn-bg);
}
.au-btn.au-btn--primary:hover:not(:disabled),
a.au-btn.au-btn--primary:hover:not(:disabled) {
  border-color: var(--btn-bg--hover);
  background-color: var(--btn-bg--hover);
}
.au-btn.au-btn--secondary,
a.au-btn.au-btn--secondary {
  border-color: var(--btn-bg);
  color: var(--btn-bg) !important;
}
.au-btn.au-btn--secondary:hover:not(:disabled),
a.au-btn.au-btn--secondary:hover:not(:disabled) {
  border-color: var(--btn-bg--hover);
  color: var(--btn-bg--hover);
}
.au-btn.au-btn--tertiary,
a.au-btn.au-btn--tertiary {
  padding: 0;
}
.au-btn.au-btn--large,
a.au-btn.au-btn--large {
  font-size: 1.3em;
  font-weight: 700;
}
.au-btn.au-btn--dark:hover:not(:disabled),
a.au-btn.au-btn--dark:hover:not(:disabled) {
  background-color: #ececec;
  border-color: #ececec;
}
.au-btn.au-btn--inline,
a.au-btn.au-btn--inline {
  display: inline-block;
  width: auto;
}

.au-body .au-callout.row {
  margin-left: 0;
  margin-right: 0;
  padding-left: 18px;
  padding-right: 18px;
}
.au-body .au-callout {
  background-color: #f1f1f2;
  border-left-color: var(--callout-border--primary);
  max-width: 100%;
}
.au-body .au-callout p {
  max-width: 100%;
}
.au-body .au-callout--secondary {
  border-left-color: var(--callout-border--secondary);
}
.au-body .au-callout--tertiary {
  border-left-color: var(--callout-border--tertiary);
}
.au-body .au-callout--success {
  border-left-color: #0b996c;
}
.au-body .au-callout.au-callout--simple {
  background: transparent;
  border-left-width: 8px;
  padding: 1rem 1.5rem;
}

.au-control-input.au-control-input--compact.au-control-input--block {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.au-control-input.au-control-input--compact.au-control-input--block .au-control-input__text {
  padding: 0 0 0 24px;
  padding: 0 0 0 1.5rem;
  margin-right: 0;
}
.au-control-input.au-control-input--compact.au-control-input--block .au-control-input__text:before, .au-control-input.au-control-input--compact.au-control-input--block .au-control-input__text:after {
  left: -4px;
  top: 2px;
  width: 22px;
  width: 1.375rem;
}
.au-control-input.au-control-input--compact.au-control-input--block .au-control-input__text:before, .au-control-input.au-control-input--compact.au-control-input--block .au-control-input__text:after {
  height: 22px;
  height: 1.375rem;
}
.au-control-input.au-control-input--compact.au-control-input--block .au-control-input__input {
  left: 0;
  top: 7px;
}
.au-control-input__input:invalid + .au-control-input__text {
  background: #ffffff;
}
.au-control-input__input:invalid + .au-control-input__text:after {
  border-color: transparent;
}
.au-control-input__input.error + .au-control-input__text:after {
  border-color: #d60000;
}

.au-body .au-cta-link {
  position: relative;
}
.au-body .au-cta-link:after {
  position: absolute;
  bottom: 3px;
  bottom: 0.2rem;
}
.au-body .au-cta-link--right {
  text-align: right;
}
.au-footer {
  margin-top: 32px;
  margin-top: 2rem;
}
.au-footer.au-footer--dark {
  border-color: var(--footer-border) !important;
}
.au-footer.au-body.au-body--dark.au-footer--dark {
  background-color: var(--footer-gradient-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--footer-gradient-bg--start)), to(var(--footer-gradient-bg--end)));
  background: linear-gradient(to right, var(--footer-gradient-bg--start), var(--footer-gradient-bg--end));
}
.au-footer.au-body.au-body--dark.au-footer--dark .au-btn.au-btn.au-btn--primary,
.au-footer.au-body.au-body--dark.au-footer--dark a.au-btn.au-btn--primary {
  background-color: var(--footer-btn-bg);
  color: var(--footer-btn-text) !important;
  border-color: var(--footer-btn-bg);
}
.au-footer.au-body.au-body--dark.au-footer--dark .au-btn.au-btn.au-btn--primary:hover:not(:disabled),
.au-footer.au-body.au-body--dark.au-footer--dark a.au-btn.au-btn--primary:hover:not(:disabled) {
  border-color: var(--footer-btn-bg--hover);
  background-color: var(--footer-btn-bg--hover);
}
.au-footer.au-body.au-body--dark.au-footer--dark .au-btn.au-btn.au-btn--secondary,
.au-footer.au-body.au-body--dark.au-footer--dark a.au-btn.au-btn--secondary {
  border-color: var(--footer-btn-bg);
  color: var(--footer-btn-bg) !important;
}
.au-footer.au-body.au-body--dark.au-footer--dark .au-btn.au-btn.au-btn--secondary:hover:not(:disabled),
.au-footer.au-body.au-body--dark.au-footer--dark a.au-btn.au-btn--secondary:hover:not(:disabled) {
  border-color: var(--footer-btn-bg--hover);
  color: var(--footer-btn-bg--hover);
}
.au-footer.au-body.au-body--dark.au-footer--dark .au-footer__end {
  border-top-color: var(--footer-border);
}
.au-footer__navigation-section {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media (min-width: 576px) {
  .au-footer__navigation-section {
    margin-top: 0;
  }
}
.au-footer__navigation-section:first-of-type {
  margin-top: 0;
}
@media print {
  .au-footer {
    display: none;
  }
}

.au-form__item {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.au-form__item label {
  font-weight: bold;
}
.au-form__item label .au-control-input__text {
  font-weight: normal;
}
.au-form__item-description {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.au-form__item .au-text-input,
.au-form__item .au-select {
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
  max-width: 42em;
}
.au-form__item .au-control-input {
  margin-top: 12px;
  margin-top: 0.75rem;
}
.au-form__item .au-control-input label {
  font-weight: normal;
}
.au-form__item .form-required {
  color: #d60000;
}
.au-form .form-element-length-counter {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.au-form--hidden {
  display: none;
}

.au-grid .not-full-width {
  margin-top: 16px;
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .au-grid .not-full-width {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}
@media print {
  .au-grid .not-full-width {
    margin-top: 16px;
    margin-top: 1rem;
  }
}
.au-grid .not-full-width .container {
  width: auto;
  clear: both;
}
@media (min-width: 1441px) {
  .au-grid .container {
    width: 1369px;
  }
}
.au-grid .full-width .container .container {
  width: auto;
  clear: both;
}
@media (min-width: 576px) {
  .au-grid .row--no-column-gap div[class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
  .au-grid .row--no-column-gap div[class*=col-]:first-of-type {
    padding-left: 18px;
  }
  .au-grid .row--no-column-gap div[class*=col-]:last-of-type {
    padding-right: 18px;
  }
}
.au-grid .col-xs-5ths,
.au-grid .col-sm-5ths,
.au-grid .col-md-5ths,
.au-grid .col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 18px;
  padding-left: 18px;
}
.au-grid .col-xs-5ths {
  width: 20%;
  float: left;
}
@media (min-width: 576px) {
  .au-grid .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 768px) {
  .au-grid .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .au-grid .col-lg-5ths {
    width: 20%;
    float: left;
  }
}

@media print {
  .au-grid .container {
    width: 100%;
  }
  .au-grid .container #content {
    width: 100%;
  }
}
.au-header {
  margin-bottom: 0;
  padding: 0;
  border-top: 12px solid #072e7e;
}
@media (min-width: 576px) {
  .au-header {
    padding: 16px 0 8px;
    padding: 1rem 0 0.5rem;
  }
}
@media (min-width: 768px) {
  .au-header {
    padding: 24px 0;
    padding: 1.5rem 0;
  }
}
.au-header--simple {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media (min-width: 576px) {
  .au-header--simple {
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .au-header--simple {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }
}
.au-header .au-header__logo {
  display: block;
  padding: 12px 12px 12px 0;
  padding: 0.75rem 0.75rem 0.75rem 0;
  width: 100%;
  max-width: 400px;
  color: transparent;
}
@media (min-width: 768px) {
  .au-header .au-header__logo {
    margin: auto;
    padding: 12px;
    padding: 0.75rem;
    float: left;
    padding: 0;
  }
}
@media print {
  .au-header .au-header__logo {
    width: 30%;
  }
}
.au-header .au-header__logo-image {
  display: block;
  width: 100%;
  margin: auto;
}
@media (min-width: 576px) {
  .au-header .au-header__logo-image {
    margin: 0;
  }
}
@media print {
  .au-header .au-header__logo {
    margin: inherit;
    padding: 0;
  }
}
.au-header {
  background-color: white;
}
@media print {
  .au-header {
    margin: inherit;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #58585b;
  }
}

.au-inpage-nav-links {
  border-color: var(--inpage-nav-border);
}
@media print {
  .au-inpage-nav-links {
    display: none;
  }
}

.au-link-list--flush > li {
  margin: 0;
}
.au-link-list--flex-halves {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.au-link-list--flex-halves li {
  width: 50%;
}
.au-link-list--flex-thirds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.au-link-list--flex-thirds li {
  width: 33%;
}
.au-link-list--flex-quarters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.au-link-list--flex-quarters li {
  width: 25%;
}

.js .au-main-nav__menu .au-main-nav__menu-inner {
  padding: 0;
}

.au-main-nav {
  border-bottom-color: var(--main-nav-border) !important;
}
.au-main-nav .au-link-list > li a {
  color: #313131;
  border-bottom-color: var(--main-nav-active-link-border);
}
@media (min-width: 768px) {
  .au-main-nav .au-link-list > li a {
    font-weight: bold;
  }
  .au-main-nav .au-link-list > li a:hover, .au-main-nav .au-link-list > li a:active, .au-main-nav .au-link-list > li a:focus {
    background-color: var(--main-nav-active-link-bg--hover);
    z-index: 400;
  }
}
.au-main-nav .au-link-list > li.active a, .au-main-nav .au-link-list > li.active-trail a {
  border-bottom-color: var(--main-nav-active-link-border);
  font-weight: bold;
}
@media (min-width: 768px) {
  .au-main-nav .au-link-list > li.au-main-nav--mobile-only {
    display: none;
  }
}
.au-main-nav__menu {
  background-color: var(--main-nav-menu-bg-colour);
}
@media (min-width: 576px) {
  .au-main-nav__menu {
    background: none;
  }
}
.au-main-nav__toggle,
.au-main-nav .au-main-nav__toggle {
  color: #313131;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 12px 8px !important;
  padding: 0.75rem 0.5rem !important;
}
.au-main-nav__toggle:before,
.au-main-nav .au-main-nav__toggle:before {
  content: "";
}
.au-main-nav__toggle i,
.au-main-nav .au-main-nav__toggle i {
  font-size: 1.25rem;
}
.au-main-nav__toggle--search,
.au-main-nav .au-main-nav__toggle--search {
  float: right;
}
@media (min-width: 768px) {
  .au-main-nav__toggle--search,
  .au-main-nav .au-main-nav__toggle--search {
    display: none;
  }
}
.au-main-nav__toggle--search__open,
.au-main-nav .au-main-nav__toggle--search__open {
  display: none;
}
@media print {
  .au-main-nav {
    display: none;
  }
}

.au-main-nav__toggle.au-main-nav__toggle--open:before,
.au-main-nav__toggle.au-main-nav__toggle--close:before {
  content: "";
}

.au-main-nav__toggle--search {
  float: right;
}

.au-main-nav__toggle--search__open.svg-inline--fa {
  display: none;
}

.au-main-nav.au-main-nav--dropdown {
  position: relative;
}
.au-main-nav.au-main-nav--dropdown a:focus,
.au-main-nav.au-main-nav--dropdown .au-main-nav__toggle:focus {
  outline-offset: 0;
}
@media (min-width: 768px) {
  .au-main-nav.au-main-nav--dropdown a:focus,
  .au-main-nav.au-main-nav--dropdown .au-main-nav__toggle:focus {
    outline-offset: 2px;
  }
}
.au-main-nav.au-main-nav--dropdown a:hover,
.au-main-nav.au-main-nav--dropdown .au-main-nav__toggle:hover {
  background-color: var(--main-nav-active-link-bg--hover);
}
.au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown {
  display: none;
  position: relative;
}
@media (min-width: 768px) {
  .au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown {
    position: absolute;
    -webkit-box-shadow: 0px 5px 0.375em rgba(0, 0, 0, 0.2);
            box-shadow: 0px 5px 0.375em rgba(0, 0, 0, 0.2);
  }
}
.au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown {
  width: 100%;
  margin-left: 0;
  z-index: 500;
  background: var(--main-nav-dropdown-bg);
  padding: 0;
}
@media (min-width: 768px) {
  .au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown {
    padding: 16px;
    padding: 1rem;
    border-left: 0;
  }
}
@media (min-width: 768px) {
  .au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown {
    left: 0;
    width: calc(100% - 36px);
    margin-left: 18px;
    margin-right: 18px;
  }
  .au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown .au-main-nav__dropdown-title {
    position: relative;
    width: 100%;
  }
  .au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown .au-main-nav__dropdown-title a:after {
    content: " ";
    display: inline-block;
    margin: 0 0 -0.1rem 0.75rem;
    height: 16px;
    width: 14px;
    -webkit-transition: margin 0.2s ease;
    transition: margin 0.2s ease;
    -webkit-transition-property: right;
    transition-property: right;
    background: #000;
    mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
  }
}
.au-main-nav.au-main-nav--dropdown .au-link-list > li.active .au-main-nav__dropdown a,
.au-main-nav.au-main-nav--dropdown .au-link-list > li.active-trail .au-main-nav__dropdown a {
  font-weight: normal;
}
@media (min-width: 768px) {
  .au-main-nav.au-main-nav--dropdown .au-link-list > li.active .au-main-nav__dropdown a,
  .au-main-nav.au-main-nav--dropdown .au-link-list > li.active-trail .au-main-nav__dropdown a {
    font-weight: bold;
  }
}
.au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control > a {
  padding-right: 40px;
  padding-right: 2.5rem;
  position: relative;
}
.au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  width: 13px;
  width: 0.8rem;
  height: 13px;
  height: 0.8rem;
  background-color: #313131;
  mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.25s ease-in;
  transition: -webkit-transform 0.25s ease-in;
  transition: transform 0.25s ease-in;
  transition: transform 0.25s ease-in, -webkit-transform 0.25s ease-in;
}
.au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control.au-main-nav__dropdown-control--active > a {
  background-color: #fff;
}
@media (min-width: 768px) {
  .au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control.au-main-nav__dropdown-control--active > a {
    background-color: var(--main-nav-active-link-bg--hover);
  }
}
.au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control.au-main-nav__dropdown-control--active > a:after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  margin-top: -5px;
  margin-top: -0.3rem;
}
.au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control.au-main-nav__dropdown-control--active .au-main-nav__dropdown {
  display: block;
}
.au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control.au-main-nav__dropdown-control--active .au-link-list > li.active a {
  background-color: var(--main-nav-active-dropdown-link-bg--hover);
}
.au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control.au-main-nav__dropdown-control--active .au-link-list > li a:hover, .au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control.au-main-nav__dropdown-control--active .au-link-list > li a:focus, .au-main-nav.au-main-nav--dropdown .au-main-nav__dropdown-control.au-main-nav__dropdown-control--active .au-link-list > li a:active {
  background-color: var(--main-nav-active-dropdown-link-bg--hover);
}
.au-main-nav.au-main-nav--dropdown-columns .au-main-nav__dropdown-control {
  position: relative;
}
.au-main-nav.au-main-nav--dropdown-columns .au-main-nav__dropdown {
  width: 100%;
  padding: 0;
  margin-left: 0;
}
@media (min-width: 768px) {
  .au-main-nav.au-main-nav--dropdown-columns .au-main-nav__dropdown {
    width: 15vw;
    min-width: 300px;
  }
}
.au-main-nav.au-main-nav--dropdown-columns .au-main-nav__dropdown .au-link-list > li {
  float: none;
  border-left: 8px solid var(--main-nav-active-dropdown-border);
}
.au-main-nav.au-main-nav--dropdown-columns .au-main-nav__dropdown .au-link-list > li.au-main-nav__dropdown-title {
  border-left: 0;
  border-bottom: 0;
}
.au-main-nav.au-main-nav--dropdown-columns .au-main-nav__dropdown .au-link-list > li.au-main-nav__dropdown-title a:after {
  display: none;
}
@media (min-width: 768px) {
  .au-main-nav.au-main-nav--dropdown-columns .au-main-nav__dropdown .au-link-list > li {
    border-left: 0;
  }
}

.au-page-alerts {
  max-width: 42rem;
}
.au-page-alerts--hidden {
  display: none;
}
.au-page-alerts__close {
  position: absolute;
  right: 0;
  top: 0;
}
.au-page-alerts__close:hover {
  cursor: pointer;
}

img,
svg {
  height: auto;
}

.au-body .au-side-nav {
  background: none;
  margin-top: 16px;
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .au-body .au-side-nav {
    margin-top: 0;
  }
}
@media (min-width: 576px) {
  .au-body .au-side-nav {
    background: #ffffff;
  }
}
.au-body .au-side-nav a {
  background: transparent;
  position: relative;
}
.au-body .au-side-nav a:hover, .au-body .au-side-nav a:focus {
  background-color: var(--side-nav-link-bg--active);
}
.au-body .au-side-nav a.active, .au-body .au-side-nav a.is-active {
  font-weight: bold;
  color: #313131;
  background-color: var(--side-nav-link-bg--active);
  border-left: 4px solid var(--side-nav-link-border);
}
.au-body .au-side-nav .au-sidenav__title a {
  background: var(--side-nav-parent-bg);
  color: #fff;
  border-bottom: 0;
  border-left: 0;
}
.au-body .au-side-nav .au-sidenav__title a.active, .au-body .au-side-nav .au-sidenav__title a.is-active {
  color: #fff;
  background-color: var(--side-nav-parent-bg);
}
.au-body .au-side-nav .au-side-nav__content {
  margin-left: 0;
  margin-right: 0;
}
.au-body .au-side-nav .au-side-nav__content > ul > li,
.au-body .au-side-nav .au-side-nav__content > nav > ul > li {
  border-bottom: 1px solid var(--side-nav-link-border--bottom);
}
.au-body .au-side-nav li,
.au-body .au-side-nav ul {
  position: relative;
}
.au-body .au-side-nav li.expanded > a:first-child:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  margin-top: -6px;
  margin-top: -0.4rem;
  width: 13px;
  width: 0.8rem;
  height: 13px;
  height: 0.8rem;
  background-color: #313131;
  mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
  z-index: 101;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.au-body .au-side-nav li.collapsed a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  margin-top: -6px;
  margin-top: -0.4rem;
  width: 13px;
  width: 0.8rem;
  height: 13px;
  height: 0.8rem;
  background-color: #313131;
  mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M64 0l64 64-16 16-64-64'/%3E%3Cpath d='M64 0l16 16-64 64L0 64'/%3E%3C/svg%3E");
  z-index: 101;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media print {
  .au-body .au-side-nav {
    display: none;
  }
}
.au-body .au-side-nav--right {
  float: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}
@media (min-width: 576px) {
  .au-body .au-side-nav--right {
    float: right;
    padding-left: 18px;
    padding-right: 18px;
  }
}

.au-body--offset .au-skip-link__link:active, .au-body--offset .au-skip-link__link:focus {
  z-index: 10001;
}

.au-body .au-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}
.au-body .au-tags > li {
  color: #313131;
  border: 1px solid #313131;
  border-radius: 4px;
  padding: 0 0.5rem;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
}
.au-body .au-tags > li:has(a) {
  border: 1px solid var(--tag-link-border);
  background: var(--tag-link-bg);
}
.au-body .au-tags > li a {
  text-decoration: none;
  color: var(--tag-link-text);
}
.au-body .au-tags > li a:hover {
  text-decoration: underline;
}
.au-body .au-tags.au-tags--inline {
  display: inline;
}
.au-body .au-tags.au-tags--inline > li {
  margin: 0px 4px 8px 0px;
  margin: 0rem 0.25rem 0.5rem 0rem;
}

.au-text-input--block {
  max-width: 42em;
}
.au-text-input:invalid {
  border-color: gray;
  background-color: #ffffff;
}
.au-text-input.error {
  background-color: rgb(252.95, 242.25, 242.25);
  border-color: #d60000;
}

textarea.au-text-input {
  max-width: 42em;
}

.health-back-to-top {
  background-color: transparent;
  position: fixed;
  display: block;
  right: 16px;
  right: 1rem;
  bottom: -4px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  z-index: -1;
  padding: 0;
  border: 0;
}
@media print {
  .health-back-to-top {
    display: none;
  }
}
.health-back-to-top .au-btn.au-btn--secondary {
  line-height: 1.2;
  font-size: 0.85rem;
  width: 64px;
  width: 4rem;
  padding: 4px 12px 8px 12px;
  padding: 0.25rem 0.75rem 0.5rem 0.75rem;
  background: #f1f1f2;
  border: none;
  color: #313131;
}
@media (min-width: 768px) {
  .health-back-to-top .au-btn.au-btn--secondary {
    width: 96px;
    width: 6rem;
    padding: 8px 16px 16px;
    padding: 0.5rem 1rem 1rem;
  }
}
.health-back-to-top .au-btn.au-btn--secondary i {
  width: 1.5em;
  height: 1.5em;
  margin-bottom: -5px;
  background: #313131;
}
.health-back-to-top .au-btn.au-btn--secondary:hover, .health-back-to-top .au-btn.au-btn--secondary:hover:not(:disabled) {
  background-color: #ececec;
  color: rgb(23.5, 23.5, 23.5);
  border: none;
}
.health-back-to-top .au-btn.au-btn--secondary:hover i, .health-back-to-top .au-btn.au-btn--secondary:hover:not(:disabled) i {
  background: rgb(23.5, 23.5, 23.5);
}
.health-back-to-top .au-btn.au-btn--secondary span {
  display: block;
}
.health-back-to-top.isVisible {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  z-index: 9999;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

/**
 * Markup:
 * <div class="health-band health-band--MODIFIERS"> - This div doesn't style the band.
 *   <div class="health-band__container"> - This div styles the contained band. This is included to permit stacking.
 *     BAND CONTENT
 *   </div>::before - This pseudo-class styles the full width band.
 * </div>
 */
.au-body .health-band:before, .au-body .health-band:after {
  content: " ";
  display: table;
}
.au-body .health-band:after {
  clear: both;
}
.au-body .health-band {
  position: relative;
  isolation: isolate;
  background: none !important;
  background-color: none !important;
  padding: 0 !important;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .au-body .health-band {
    margin: 3rem 0;
  }
}
.au-body .health-band[class*=health-band--] .health-band__container {
  padding: 1.5rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-box-shadow: 0px 0.125em 0.375em rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0.125em 0.375em rgba(0, 0, 0, 0.2);
}
.au-body .health-band[class*=health-band--] .health-band__container:before, .au-body .health-band[class*=health-band--] .health-band__container:after {
  content: " ";
  display: table;
}
.au-body .health-band[class*=health-band--] .health-band__container:after {
  clear: both;
}
@media (min-width: 576px) {
  .au-body .health-band[class*=health-band--] .health-band__container {
    padding: 3rem;
  }
}
.au-body .health-band.health-band--full-width-bg {
  margin: 0;
}
.au-body .health-band.health-band--full-width-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100vw;
  -webkit-margin-start: 50%;
          margin-inline-start: 50%;
  -webkit-transform: translatex(-50%);
      -ms-transform: translatex(-50%);
          transform: translatex(-50%);
  display: inherit;
  z-index: -1;
}
.au-body .health-band.health-band--full-width-bg .health-band__container {
  padding: 1.5rem 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 576px) {
  .au-body .health-band.health-band--full-width-bg .health-band__container {
    padding: 3rem 0;
  }
}
.au-body .health-band.health-band--full-width {
  margin: 0;
  width: 100vw;
  -webkit-margin-start: 50%;
          margin-inline-start: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.au-body .health-band.health-band--full-width .health-band__container {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.au-body .health-band.health-band--primary .health-band__container, .au-body .health-band.health-band--primary.health-band--full-width-bg::before {
  background-color: var(--primary-gradient-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--primary-gradient-bg--start)), to(var(--primary-gradient-bg--end)));
  background: linear-gradient(to right, var(--primary-gradient-bg--start), var(--primary-gradient-bg--end));
}
.au-body .health-band.health-band--primary.health-band--full-width-bg .health-band__container {
  background: none;
}
.au-body .health-band.health-band--primary {
  color: var(--primary-body-text);
}
.au-body .health-band.health-band--primary a:not(.health-card__link) {
  color: var(--primary-link-text);
}
.au-body .health-band.health-band--primary a:not(.health-card__link):hover {
  text-decoration: none;
}
.au-body .health-band.health-band--primary .au-cta-link {
  color: var(--primary-link-text);
}
.au-body .health-band.health-band--primary .au-cta-link:after {
  background: var(--primary-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--primary .au-cta-link:hover {
  color: var(--primary-link-text);
}
.au-body .health-band.health-band--primary .au-cta-link:hover:after {
  background: var(--primary-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--primary .au-callout {
  color: #313131;
}
.au-body .health-band.health-band--primary .au-btn.au-btn--primary {
  background-color: var(--primary-btn-bg);
  color: var(--primary-btn-text) !important;
  border-color: var(--primary-btn-bg);
}
.au-body .health-band.health-band--primary .au-btn.au-btn--primary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--primary-btn-bg--hover);
  background-color: var(--primary-btn-bg--hover);
}
.au-body .health-band.health-band--primary .au-btn.au-btn--secondary {
  border-color: var(--primary-btn-bg);
  color: var(--primary-btn-bg) !important;
}
.au-body .health-band.health-band--primary .au-btn.au-btn--secondary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--primary-btn-bg--hover);
  color: var(--primary-btn-bg--hover);
}
.au-body .health-band.health-band--secondary .health-band__container, .au-body .health-band.health-band--secondary.health-band--full-width-bg::before {
  background-color: var(--secondary-gradient-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary-gradient-bg--start)), to(var(--secondary-gradient-bg--end)));
  background: linear-gradient(to right, var(--secondary-gradient-bg--start), var(--secondary-gradient-bg--end));
}
.au-body .health-band.health-band--secondary.health-band--full-width-bg .health-band__container {
  background: none;
}
.au-body .health-band.health-band--secondary {
  color: var(--secondary-body-text);
}
.au-body .health-band.health-band--secondary a:not(.health-card__link) {
  color: var(--secondary-link-text);
}
.au-body .health-band.health-band--secondary a:not(.health-card__link):hover {
  text-decoration: none;
}
.au-body .health-band.health-band--secondary .au-cta-link {
  color: var(--secondary-link-text);
}
.au-body .health-band.health-band--secondary .au-cta-link:after {
  background: var(--secondary-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--secondary .au-cta-link:hover {
  color: var(--secondary-link-text);
}
.au-body .health-band.health-band--secondary .au-cta-link:hover:after {
  background: var(--secondary-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--secondary .au-callout {
  color: #313131;
}
.au-body .health-band.health-band--secondary .au-btn.au-btn--primary {
  background-color: var(--secondary-btn-bg);
  color: var(--secondary-btn-text) !important;
  border-color: var(--secondary-btn-bg);
}
.au-body .health-band.health-band--secondary .au-btn.au-btn--primary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--secondary-btn-bg--hover);
  background-color: var(--secondary-btn-bg--hover);
}
.au-body .health-band.health-band--secondary .au-btn.au-btn--secondary {
  border-color: var(--secondary-btn-bg);
  color: var(--secondary-btn-bg) !important;
}
.au-body .health-band.health-band--secondary .au-btn.au-btn--secondary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--secondary-btn-bg--hover);
  color: var(--secondary-btn-bg--hover);
}
.au-body .health-band.health-band--tertiary .health-band__container, .au-body .health-band.health-band--tertiary.health-band--full-width-bg::before {
  background-color: var(--tertiary-gradient-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--tertiary-gradient-bg--start)), to(var(--tertiary-gradient-bg--end)));
  background: linear-gradient(to right, var(--tertiary-gradient-bg--start), var(--tertiary-gradient-bg--end));
}
.au-body .health-band.health-band--tertiary.health-band--full-width-bg .health-band__container {
  background: none;
}
.au-body .health-band.health-band--tertiary {
  color: var(--tertiary-body-text);
}
.au-body .health-band.health-band--tertiary a:not(.health-card__link) {
  color: var(--tertiary-link-text);
}
.au-body .health-band.health-band--tertiary a:not(.health-card__link):hover {
  text-decoration: none;
}
.au-body .health-band.health-band--tertiary .au-cta-link {
  color: var(--tertiary-link-text);
}
.au-body .health-band.health-band--tertiary .au-cta-link:after {
  background: var(--tertiary-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--tertiary .au-cta-link:hover {
  color: var(--tertiary-link-text);
}
.au-body .health-band.health-band--tertiary .au-cta-link:hover:after {
  background: var(--tertiary-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--tertiary .au-callout {
  color: #313131;
}
.au-body .health-band.health-band--tertiary .au-btn.au-btn--primary {
  background-color: var(--tertiary-btn-bg);
  color: var(--tertiary-btn-text) !important;
  border-color: var(--tertiary-btn-bg);
}
.au-body .health-band.health-band--tertiary .au-btn.au-btn--primary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--tertiary-btn-bg--hover);
  background-color: var(--tertiary-btn-bg--hover);
}
.au-body .health-band.health-band--tertiary .au-btn.au-btn--secondary {
  border-color: var(--tertiary-btn-bg);
  color: var(--tertiary-btn-bg) !important;
}
.au-body .health-band.health-band--tertiary .au-btn.au-btn--secondary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--tertiary-btn-bg--hover);
  color: var(--tertiary-btn-bg--hover);
}
.au-body .health-band.health-band--neutral .health-band__container, .au-body .health-band.health-band--neutral.health-band--full-width-bg::before {
  background: var(--neutral-bg);
}
.au-body .health-band.health-band--neutral.health-band--full-width-bg .health-band__container {
  background: none;
}
.au-body .health-band.health-band--neutral {
  color: var(--neutral-body-text);
}
.au-body .health-band.health-band--neutral a:not(.health-card__link) {
  color: var(--neutral-link-text);
}
.au-body .health-band.health-band--neutral a:not(.health-card__link):hover {
  text-decoration: none;
}
.au-body .health-band.health-band--neutral .au-cta-link {
  color: var(--neutral-link-text);
}
.au-body .health-band.health-band--neutral .au-cta-link:after {
  background: var(--neutral-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--neutral .au-cta-link:hover {
  color: var(--neutral-link-text);
}
.au-body .health-band.health-band--neutral .au-cta-link:hover:after {
  background: var(--neutral-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--neutral .au-callout {
  color: #313131;
}
.au-body .health-band.health-band--neutral .au-btn.au-btn--primary {
  background-color: var(--neutral-btn-bg);
  color: var(--neutral-btn-text) !important;
  border-color: var(--neutral-btn-bg);
}
.au-body .health-band.health-band--neutral .au-btn.au-btn--primary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--neutral-btn-bg--hover);
  background-color: var(--neutral-btn-bg--hover);
}
.au-body .health-band.health-band--neutral .au-btn.au-btn--secondary {
  border-color: var(--neutral-btn-bg);
  color: var(--neutral-btn-bg) !important;
}
.au-body .health-band.health-band--neutral .au-btn.au-btn--secondary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--neutral-btn-bg--hover);
  color: var(--neutral-btn-bg--hover);
}
.au-body .health-band.health-band--neutral--darker .health-band__container, .au-body .health-band.health-band--neutral--darker.health-band--full-width-bg::before {
  background: var(--neutral--darker-bg);
}
.au-body .health-band.health-band--neutral--darker.health-band--full-width-bg .health-band__container {
  background: none;
}
.au-body .health-band.health-band--neutral--darker {
  color: var(--neutral--darker-body-text);
}
.au-body .health-band.health-band--neutral--darker a:not(.health-card__link) {
  color: var(--neutral--darker-link-text);
}
.au-body .health-band.health-band--neutral--darker a:not(.health-card__link):hover {
  text-decoration: none;
}
.au-body .health-band.health-band--neutral--darker .au-cta-link {
  color: var(--neutral--darker-link-text);
}
.au-body .health-band.health-band--neutral--darker .au-cta-link:after {
  background: var(--neutral--darker-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--neutral--darker .au-cta-link:hover {
  color: var(--neutral--darker-link-text);
}
.au-body .health-band.health-band--neutral--darker .au-cta-link:hover:after {
  background: var(--neutral--darker-link-text);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128'%3E%3Cpath d='M128 64l-64 64-16-16 64-64'/%3E%3Cpath d='M128 64l-16 16-64-64L64 0'/%3E%3C/svg%3E");
}
.au-body .health-band.health-band--neutral--darker .au-callout {
  color: #313131;
}
.au-body .health-band.health-band--neutral--darker .au-btn.au-btn--primary {
  background-color: var(--neutral--darker-btn-bg);
  color: var(--neutral--darker-btn-text) !important;
  border-color: var(--neutral--darker-btn-bg);
}
.au-body .health-band.health-band--neutral--darker .au-btn.au-btn--primary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--neutral--darker-btn-bg--hover);
  background-color: var(--neutral--darker-btn-bg--hover);
}
.au-body .health-band.health-band--neutral--darker .au-btn.au-btn--secondary {
  border-color: var(--neutral--darker-btn-bg);
  color: var(--neutral--darker-btn-bg) !important;
}
.au-body .health-band.health-band--neutral--darker .au-btn.au-btn--secondary:hover:not(:disabled) {
  text-decoration: underline;
  border-color: var(--neutral--darker-btn-bg--hover);
  color: var(--neutral--darker-btn-bg--hover);
}

.health-band__image--image-text-horizontal {
  display: none;
}
@media (min-width: 576px) {
  .health-band__image--image-text-horizontal {
    display: block;
    width: 100%;
  }
}

.health-book-nav {
  border-top: 1px solid #ccc;
  padding-top: 24px;
  padding-top: 1.5rem;
}
.health-book-nav .au-display-lg {
  margin-top: 0;
}
.health-book-nav a {
  display: block;
  text-decoration: none;
  color: #313131;
  padding: 16px;
  padding: 1rem;
}
.health-book-nav a:hover, .health-book-nav a:focus {
  background: rgb(244.8, 244.8, 244.8);
}
.health-book-nav--right {
  text-align: right;
}
@media print {
  .health-book-nav {
    display: none;
  }
}

.pillars-container {
  --pillars-pattern: var(--brand-colour-1) 0%,
      var(--brand-colour-1) 9%,
      var(--brand-colour-4) 9%,
      var(--brand-colour-4) 21%,
      var(--brand-colour-2) 21%,
      var(--brand-colour-2) 33%,
      var(--brand-colour-1) 33%,
      var(--brand-colour-1) 39%,
      var(--brand-colour-3) 39%,
      var(--brand-colour-3) 46%,
      var(--brand-colour-4) 46%,
      var(--brand-colour-4) 66%,
      var(--brand-colour-1) 66%,
      var(--brand-colour-1) 72%,
      var(--brand-colour-3) 72%,
      var(--brand-colour-3) 92%,
      var(--brand-colour-2) 92%,
      var(--brand-colour-2) 100%;
  position: relative;
  border-top: 12px solid var(--brand-primary-colour) !important;
}
@media print {
  .pillars-container {
    border-top: 0 !important;
  }
}
.pillars-container #pillars {
  position: absolute;
  top: -12px;
  left: 0;
  height: 12px;
  width: 300px;
  background: -webkit-gradient(linear, left top, right top, from(var(--pillars-pattern))) !important;
  background: linear-gradient(to right, var(--pillars-pattern)) !important;
  background-size: cover;
}
@media (min-width: 576px) {
  .pillars-container #pillars {
    left: auto;
  }
}
@media print {
  .pillars-container #pillars {
    display: none;
  }
}

.health-btn--sticky-bottom {
  position: fixed;
  bottom: 0;
  background: #fff;
  width: 100vw;
  padding: 2rem;
  margin-left: -18px;
  margin-right: -18px;
  -webkit-box-shadow: 0 -7px 11px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -7px 11px 0px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
@media (min-width: 576px) {
  .health-btn--sticky-bottom {
    position: relative;
    background: none;
    width: auto;
    padding: 0;
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .health-btn--sticky-bottom .au-btn {
    display: inline-block;
    width: auto;
  }
}

.au-body .health-card {
  background: var(--card-bg);
  color: var(--card-text);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  position: relative;
  overflow: hidden;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  margin-top: 32px;
  margin-top: 2rem;
}
.au-body .health-card__header {
  display: none;
}
.au-body .health-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5rem;
}
@media (min-width: 576px) {
  .au-body .health-card__body {
    padding: 2rem;
  }
}
.au-body .health-card__title {
  color: var(--card-text);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .au-body .health-card__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}
.au-body .health-card__title {
  font-weight: bold;
}
.au-body .health-card__link {
  color: #006FB0;
}
.au-body .health-card__text {
  margin-top: 16px;
  margin-top: 1rem;
}
.au-body .health-card__tag {
  font-size: 0.9rem;
  margin-top: 3px;
  margin-top: 0.2rem;
}
.au-body .health-card__date {
  color: var(--card-text-minor);
  font-size: 0.9rem;
  margin-top: 16px;
  margin-top: 1rem;
}
.au-body .health-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.au-body .health-card__image svg {
  height: 3em;
  width: 3em;
}
@media (min-width: 576px) {
  .au-body .health-card__image svg {
    height: 5em;
    width: 5em;
  }
}
.au-body .health-card__icon {
  max-width: 75px;
}
.au-body .health-card__footer {
  display: none;
}
.au-body .health-card.health-card--shadow {
  -webkit-box-shadow: 0px 0.125em 0.375em rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0.125em 0.375em rgba(0, 0, 0, 0.2);
}
.au-body .health-card.health-card--border {
  border: 1px solid var(--card-border);
}
.au-body .health-card.health-card--borderless {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
}
.au-body .health-card.health-card--borderless .health-card__body {
  padding: 0;
}
.au-body .health-card.health-card--borderless .health-card__image img {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.au-body .health-card.health-card--borderless .health-card__image + .health-card__body {
  padding-top: 1.5rem;
}
@media (min-width: 576px) {
  .au-body .health-card.health-card--borderless .health-card__image + .health-card__body {
    padding-top: 2rem;
  }
}
.au-body .health-card.health-card--borderless:after {
  display: none !important;
}
.au-body .health-card.health-card--clickable a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.au-body .health-card.health-card--clickable .health-card__body {
  padding-bottom: 2.5rem;
}
@media (min-width: 576px) {
  .au-body .health-card.health-card--clickable .health-card__body {
    padding-bottom: 3rem;
  }
}
.au-body .health-card.health-card--clickable .health-card__link {
  color: var(--card-text);
  text-decoration: none;
}
.au-body .health-card.health-card--clickable:after {
  content: " ";
  display: block;
  position: absolute;
  height: 24px;
  width: 20px;
  bottom: 24px;
  bottom: 1.5rem;
  right: 32px;
  right: 2rem;
  -webkit-transition: margin 0.2s ease;
  transition: margin 0.2s ease;
  -webkit-transition-property: right;
  transition-property: right;
  background: var(--card-clickable-icon);
  mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
}
.au-body .health-card.health-card--clickable:hover, .au-body .health-card.health-card--clickable:focus, .au-body .health-card.health-card--clickable:active {
  -webkit-box-shadow: 0px 0.125em 0.375em rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0.125em 0.375em rgba(0, 0, 0, 0.4);
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}
.au-body .health-card.health-card--clickable:hover a, .au-body .health-card.health-card--clickable:focus a, .au-body .health-card.health-card--clickable:active a {
  text-decoration: underline;
}
.au-body .health-card.health-card--clickable:hover:after, .au-body .health-card.health-card--clickable:focus:after, .au-body .health-card.health-card--clickable:active:after {
  margin-left: 6px;
  margin-left: 0.4rem;
  right: 24px;
  right: 1.5rem;
}
.au-body .health-card.health-card--horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.au-body .health-card.health-card--horizontal .health-card__image {
  /* Three values: flex-grow | flex-shrink | flex-basis */
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  position: relative;
  height: auto;
}
.au-body .health-card.health-card--horizontal .health-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 70%;
          flex: 1 1 70%;
  height: auto;
}
.au-body .health-card.health-card--horizontal--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.au-body .health-card.health-card--colour-primary {
  background-color: var(--primary-gradient-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--primary-gradient-bg--start)), to(var(--primary-gradient-bg--end)));
  background: linear-gradient(to right, var(--primary-gradient-bg--start), var(--primary-gradient-bg--end));
  color: var(--card-text--primary);
}
.au-body .health-card.health-card--colour-primary .health-card__title {
  color: var(--card-text--primary);
}
.au-body .health-card.health-card--colour-primary .health-card__link {
  color: var(--card-link--primary);
}
.au-body .health-card.health-card--colour-primary.health-card--clickable .health-card__link {
  color: var(--card-text--primary);
}
.au-body .health-card.health-card--colour-primary.health-card--clickable:after {
  background: var(--card-clickable-icon--primary);
}
.au-body .health-card.health-card--colour-primary .health-card__date {
  color: var(--card-text-minor--primary);
}
.au-body .health-card.health-card--colour-secondary {
  background-color: var(--secondary-gradient-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--secondary-gradient-bg--start)), to(var(--secondary-gradient-bg--end)));
  background: linear-gradient(to right, var(--secondary-gradient-bg--start), var(--secondary-gradient-bg--end));
  color: var(--card-text--secondary);
}
.au-body .health-card.health-card--colour-secondary .health-card__title {
  color: var(--card-text--secondary);
}
.au-body .health-card.health-card--colour-secondary .health-card__link {
  color: var(--card-link--secondary);
}
.au-body .health-card.health-card--colour-secondary.health-card--clickable .health-card__link {
  color: var(--card-text--secondary);
}
.au-body .health-card.health-card--colour-secondary.health-card--clickable:after {
  background: var(--card-clickable-icon--secondary);
}
.au-body .health-card.health-card--colour-secondary .health-card__date {
  color: var(--card-text-minor--secondary);
}
.au-body .health-card.health-card--colour-tertiary {
  background-color: var(--tertiary-gradient-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--tertiary-gradient-bg--start)), to(var(--tertiary-gradient-bg--end)));
  background: linear-gradient(to right, var(--tertiary-gradient-bg--start), var(--tertiary-gradient-bg--end));
  color: var(--card-text--tertiary);
}
.au-body .health-card.health-card--colour-tertiary .health-card__title {
  color: var(--card-text--tertiary);
}
.au-body .health-card.health-card--colour-tertiary .health-card__link {
  color: var(--card-link--tertiary);
}
.au-body .health-card.health-card--colour-tertiary.health-card--clickable .health-card__link {
  color: var(--card-text--tertiary);
}
.au-body .health-card.health-card--colour-tertiary.health-card--clickable:after {
  background: var(--card-clickable-icon--tertiary);
}
.au-body .health-card.health-card--colour-tertiary .health-card__date {
  color: var(--card-text-minor--tertiary);
}
.au-body .health-card.health-card--colour-neutral {
  background: var(--neutral--darker-bg);
  color: var(--card-text--neutral);
}
.au-body .health-card.health-card--colour-neutral .health-card__title {
  color: var(--card-text--neutral);
}
.au-body .health-card.health-card--colour-neutral .health-card__date {
  color: var(--card-text-minor--neutral);
}
.au-body .health-card.health-card--colour-neutral.health-card--clickable:after {
  background: var(--card-clickable-icon--neutral);
}
.au-body .health-card.health-card--highlight {
  border-top: 6px solid var(--card-highlight-border);
}
.au-body .health-card.health-card--centered {
  text-align: center;
}
.au-body .health-card.health-card--centered .health-card__icon {
  margin: 0 auto;
}
.au-body .health-card.health-card--contact {
  text-align: center;
}
.au-body .health-card.health-card--contact .health-card__image img {
  width: 50%;
  height: auto;
  max-width: 200px;
  margin: 32px auto -16px auto;
  margin: 2rem auto -1rem auto;
}
.au-body .health-card.health-card--contact .health-card__image.health-card__image--circle img {
  border-radius: 50%;
}
.au-body .health-card.health-card--contact-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: left;
}
.au-body .health-card.health-card--contact-horizontal .health-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 70%;
          flex: 1 1 70%;
  height: auto;
}
.au-body .health-card.health-card--contact-horizontal .health-card__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  position: relative;
  height: auto;
  text-align: center;
  background: var(--neutral--darker-bg);
}
.au-body .health-card.health-card--contact-horizontal .health-card__image img {
  width: 60%;
  height: auto;
  max-width: 200px;
  margin: 32px auto;
  margin: 2rem auto;
}
.au-body .health-card.health-card--contact-horizontal .health-card__image.health-card__image--circle img {
  border-radius: 50%;
}
.health-band--primary .health-card.health-card--colour-primary {
  background: var(--primary-gradient-bg--end);
}

.health-band--secondary .health-card.health-card--colour-secondary {
  background: var(--secondary-gradient-bg--end);
}

.health-band--tertiary .health-card.health-card--colour-tertiary {
  background: var(--tertiary-gradient-bg--end);
}

.health-listing .health-card {
  margin-top: 0;
}

.health-content {
  margin-top: 32px;
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .health-content {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}
.health-content--flush {
  margin-top: 0px;
  margin-top: 0rem;
}
@media print {
  .health-content {
    margin-top: 0;
  }
}

.health-compare {
  border: 1px solid #0077C8;
  margin-top: 16px;
  margin-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
.health-compare__title {
  background: #3291d3;
  font-weight: bold;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.au-body dl.health-dl {
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
}
* + .au-body dl.health-dl {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.au-body dl.health-dl dt {
  border-top: 1px solid #ccc;
  clear: both;
  font-weight: bold;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding-top: 16px;
  padding-top: 1rem;
}
@media (min-width: 576px) {
  .au-body dl.health-dl dt {
    float: left;
    width: 25%;
  }
}
.au-body dl.health-dl dd {
  margin-left: 0;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding-top: 0;
}
@media (min-width: 576px) {
  .au-body dl.health-dl dd {
    border-top: 1px solid #ccc;
    float: left;
    padding-left: 16px;
    padding-left: 1rem;
    padding-top: 16px;
    padding-top: 1rem;
    width: 75%;
  }
}
.au-body dl.health-dl:before, .au-body dl.health-dl:after {
  content: " ";
  display: table;
}
.au-body dl.health-dl:after {
  clear: both;
}

.health-facet {
  background: #f1f1f2;
  height: auto;
  padding: 1.5rem;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  visibility: visible;
}
@media (min-width: 576px) {
  .health-facet {
    padding: 32px;
    padding: 2rem;
  }
}
* + .health-facet {
  margin-top: 16px;
  margin-top: 1rem;
}
.health-filter + .health-facet {
  margin-top: 0;
}
.health-facet--mobile-hidden {
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  height: 0;
}
.health-facet__more {
  font-size: 0.8em;
}
.health-facet__list {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

* + .health-field {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.health-field + * {
  clear: both;
}
* + .health-field--label-hidden {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media (min-width: 576px) {
  .health-field--inline .health-field__label, .health-field--inline--wide .health-field__label {
    float: left;
  }
}
.health-field--inline .health-field__item, .health-field--inline--wide .health-field__item {
  display: table;
}
@media (min-width: 576px) {
  .health-field--inline .health-field__label {
    width: 10em;
  }
}
@media (min-width: 576px) {
  .health-field--inline--wide .health-field__label {
    width: 15em;
  }
}
.health-field.health-field--light .health-field__label {
  font-weight: normal;
}
.health-field .health-field__label {
  font-weight: bold;
}
.health-field--icon {
  margin-left: 1.5rem;
}
.health-field--icon .health-field__label {
  position: relative;
}
.health-field--icon .health-field__label:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  background: var(--label-icon);
}
.health-field--icon-only {
  margin-left: 1.5rem;
}
.health-field--icon-only .health-field__item {
  position: relative;
}
.health-field--icon-only .health-field__item:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  background: var(--label-icon);
}
.health-field--icon-link.health-field--icon .health-field__label:before, .health-field--icon-link.health-field--icon-only .health-field__item:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512'%3E%3Cpath d='M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z'%3E%3C/path%3E %3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512'%3E%3Cpath d='M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z'%3E%3C/path%3E %3C/svg%3E");
  height: 1rem;
  width: 1rem;
}
.health-field--icon-duration.health-field--icon .health-field__label:before, .health-field--icon-duration.health-field--icon-only .health-field__item:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z'/%3E%3C/svg%3E");
  height: 1rem;
  width: 1rem;
}
.health-field--icon-type.health-field--icon .health-field__label:before, .health-field--icon-type.health-field--icon-only .health-field__item:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M527.9 224H480v-48c0-26.5-21.5-48-48-48H272l-64-64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h400c16.5 0 31.9-8.5 40.7-22.6l79.9-128c20-31.9-3-73.4-40.7-73.4zM48 118c0-3.3 2.7-6 6-6h134.1l64 64H426c3.3 0 6 2.7 6 6v42H152c-16.8 0-32.4 8.8-41.1 23.2L48 351.4zm400 282H72l77.2-128H528z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M527.9 224H480v-48c0-26.5-21.5-48-48-48H272l-64-64H48C21.5 64 0 85.5 0 112v288c0 26.5 21.5 48 48 48h400c16.5 0 31.9-8.5 40.7-22.6l79.9-128c20-31.9-3-73.4-40.7-73.4zM48 118c0-3.3 2.7-6 6-6h134.1l64 64H426c3.3 0 6 2.7 6 6v42H152c-16.8 0-32.4 8.8-41.1 23.2L48 351.4zm400 282H72l77.2-128H528z'/%3E%3C/svg%3E");
  height: 1rem;
  width: 1.1rem;
}
.health-field--icon-date.health-field--icon .health-field__label:before, .health-field--icon-date.health-field--icon-only .health-field__item:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M148 288h-40c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm108-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 96v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm-96 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm96-260v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z'/%3E%3C/svg%3E");
  height: 1rem;
  width: 0.9rem;
}
.health-field--icon-location.health-field--icon .health-field__label:before, .health-field--icon-location.health-field--icon-only .health-field__item:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M560.02 32c-1.96 0-3.98.37-5.96 1.16L384.01 96H384L212 35.28A64.252 64.252 0 0 0 191.76 32c-6.69 0-13.37 1.05-19.81 3.14L20.12 87.95A32.006 32.006 0 0 0 0 117.66v346.32C0 473.17 7.53 480 15.99 480c1.96 0 3.97-.37 5.96-1.16L192 416l172 60.71a63.98 63.98 0 0 0 40.05.15l151.83-52.81A31.996 31.996 0 0 0 576 394.34V48.02c0-9.19-7.53-16.02-15.98-16.02zM224 90.42l128 45.19v285.97l-128-45.19V90.42zM48 418.05V129.07l128-44.53v286.2l-.64.23L48 418.05zm480-35.13l-128 44.53V141.26l.64-.24L528 93.95v288.97z'/%3E%3C/svg%3E");
  height: 1rem;
  width: 1.1rem;
}
.health-field--icon-contact.health-field--icon .health-field__label:before, .health-field--icon-contact.health-field--icon-only .health-field__item:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M313.6 304c-28.7 0-42.5 16-89.6 16-47.1 0-60.8-16-89.6-16C60.2 304 0 364.2 0 438.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-25.6c0-74.2-60.2-134.4-134.4-134.4zM400 464H48v-25.6c0-47.6 38.8-86.4 86.4-86.4 14.6 0 38.3 16 89.6 16 51.7 0 74.9-16 89.6-16 47.6 0 86.4 38.8 86.4 86.4V464zM224 288c79.5 0 144-64.5 144-144S303.5 0 224 0 80 64.5 80 144s64.5 144 144 144zm0-240c52.9 0 96 43.1 96 96s-43.1 96-96 96-96-43.1-96-96 43.1-96 96-96z'/%3E%3C/svg%3E");
  height: 1rem;
  width: 0.9rem;
}
.health-field--icon-news.health-field--icon .health-field__label:before, .health-field--icon-news.health-field--icon-only .health-field__item:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M552 64H112c-20.858 0-38.643 13.377-45.248 32H24c-13.255 0-24 10.745-24 24v272c0 30.928 25.072 56 56 56h496c13.255 0 24-10.745 24-24V88c0-13.255-10.745-24-24-24zM48 392V144h16v248c0 4.411-3.589 8-8 8s-8-3.589-8-8zm480 8H111.422c.374-2.614.578-5.283.578-8V112h416v288zM172 280h136c6.627 0 12-5.373 12-12v-96c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v96c0 6.627 5.373 12 12 12zm28-80h80v40h-80v-40zm-40 140v-24c0-6.627 5.373-12 12-12h136c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H172c-6.627 0-12-5.373-12-12zm192 0v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0-144v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12zm0 72v-24c0-6.627 5.373-12 12-12h104c6.627 0 12 5.373 12 12v24c0 6.627-5.373 12-12 12H364c-6.627 0-12-5.373-12-12z'/%3E%3C/svg%3E");
  height: 1rem;
  width: 1rem;
}
.health-metadata + .health-field {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.health-field__item + .health-field__item {
  clear: both;
}

.health-maps--google + .health-field__label {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.health-field--tags .health-field__label {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.health-field-group, .health-field-group--horizontal, .health-field-group--horizontal-stubborn {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
}
.health-field-group .health-field, .health-field-group--horizontal .health-field, .health-field-group--horizontal-stubborn .health-field {
  margin-top: 0;
}

.health-field-group--horizontal, .health-field-group--horizontal-stubborn {
  gap: 24px;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .health-field-group--horizontal, .health-field-group--horizontal-stubborn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.health-field-group--horizontal .health-field--inline .health-field__label, .health-field-group--horizontal-stubborn .health-field--inline .health-field__label {
  width: auto;
  margin-right: 8px;
  margin-right: 0.5rem;
}

.health-field-group--horizontal-stubborn {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  gap: 1rem;
}
@media (min-width: 576px) {
  .health-field-group--horizontal-stubborn {
    gap: 24px;
    gap: 1.5rem;
  }
}
.health-field-group--horizontal-stubborn .health-field .health-field__item {
  text-wrap: nowrap;
}

.au-body .health-file__icon {
  margin-right: 8px;
  margin-right: 0.5rem;
}
.au-body .health-file__link {
  text-decoration: none;
  color: #313131;
}
.au-body .health-file__link--visible {
  font-weight: bold;
  text-decoration: underline;
  color: #006FB0;
}
.au-body .health-file__link--visible:hover {
  text-decoration: none;
}

.health-filter {
  display: block;
}
@media (min-width: 576px) {
  .health-filter {
    display: none;
  }
}
.health-filter.health-filter--open {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.health-filter .health-filter__title {
  background: #f1f1f2;
  padding: 8px;
  padding: 0.5rem;
}
@media (min-width: 576px) {
  .health-filter .health-filter__title {
    display: none;
  }
}

* + .au-body .health-figure {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.au-body .health-figure--border {
  border: 1px solid #ccc;
  padding: 1rem;
}
.au-body .health-figure__image-link {
  display: block;
  position: relative;
}
.au-body .health-figure__image-link .health-figure__image-link__icon {
  display: none;
}
.au-body .health-figure__image-link:hover .health-figure__image-link__icon, .au-body .health-figure__image-link:focus .health-figure__image-link__icon {
  display: block;
  position: absolute;
  background: white;
  padding: 8px;
  padding: 0.5rem;
  left: 5px;
  top: 5px;
  border: 1px solid #ccc;
}
.au-body .health-figure .au-accordion {
  border: 0;
}
.au-body .health-figure .au-accordion__title {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.au-body figure {
  margin: 0;
}
.au-body figure img {
  margin: 0;
}
* + .au-body figure {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.au-body .fancybox-button {
  width: 46px;
}
.au-body .fancybox-button i:before {
  margin-right: 0;
}

.health-footnotes {
  border-top: 1px solid #ccc;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-top: 24px;
  padding-top: 1.5rem;
}
table .health-footnotes {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.health-footnotes__link {
  border-bottom: 1px dotted #CCC;
  cursor: help;
}

.au-body .health-hero {
  background: none;
  color: var(--hero-text);
  position: relative;
}
@media (min-width: 768px) {
  .au-body .health-hero {
    overflow: hidden;
    background: var(--hero-bg);
  }
}
.au-body .health-hero__image-container {
  overflow: hidden;
}
@media (min-width: 768px) {
  .au-body .health-hero__image-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-height: none;
  }
}
.au-body .health-hero__image {
  display: block;
}
@media (min-width: 768px) {
  .au-body .health-hero__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: var(--hero-image-focus);
       object-position: var(--hero-image-focus);
  }
}
.au-body .health-hero__content {
  background: var(--hero-bg);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  padding: 1.5rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  width: 100%;
  margin-top: calc(var(--hero-overlap-top) * -1);
}
@media (min-width: 768px) {
  .au-body .health-hero__content {
    background: var(--hero-bg--trans);
    backdrop-filter: blur(5px);
    padding: 48px;
    padding: 3rem;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    margin-top: 0;
    width: var(--hero-content-width--md);
    min-height: var(--hero-minheight--md);
  }
}
@media (min-width: 992px) {
  .au-body .health-hero__content {
    padding: 64px;
    padding: 4rem;
    width: var(--hero-content-width--lg);
    min-height: var(--hero-minheight--lg);
  }
}
.au-body .health-hero__title {
  color: var(--hero-text);
}
.au-body .health-hero__summary {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media (min-width: 576px) {
  .au-body .health-hero__summary {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.au-body .health-hero__summary {
  font-weight: normal;
}
.au-body .health-hero__call-to-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .au-body .health-hero__call-to-action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.au-body .health-hero__call-to-action .au-btn,
.au-body .health-hero__call-to-action .au-cta-link {
  margin: 0 0 16px 0;
  margin: 0 0 1rem 0;
}
@media (min-width: 992px) {
  .au-body .health-hero__call-to-action .au-btn,
  .au-body .health-hero__call-to-action .au-cta-link {
    margin-right: 32px;
    margin-right: 2rem;
  }
}
.au-body .health-hero__call-to-action .au-btn {
  display: block;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .au-body .health-hero__call-to-action .au-btn {
    display: inline-block;
    width: auto;
    text-align: left;
  }
}
.au-body .health-hero__call-to-action .au-cta-link {
  font-size: 1.3rem;
  line-height: 1.5;
}
.au-body .health-hero__call-to-action .au-cta-link:after {
  bottom: 8px;
  bottom: 0.5rem;
}
.au-body .health-hero.health-hero--inset-box .health-hero__content {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
@media (min-width: 768px) {
  .au-body .health-hero.health-hero--inset-box .health-hero__content {
    margin: 48px 0;
    margin: 3rem 0;
  }
}
.au-body .health-hero.health-hero--inset-box-overlap .health-hero__content {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
@media (min-width: 768px) {
  .au-body .health-hero.health-hero--inset-box-overlap .health-hero__content {
    background: var(--hero-bg--inset-opaque);
    backdrop-filter: none;
    margin: 48px 0;
    margin: 3rem 0;
  }
}
@media (min-width: 768px) {
  .au-body .health-hero.health-hero--inset-box-overlap .health-hero__image-container {
    left: calc(100% - var(--hero-image-width--md));
  }
}
@media (min-width: 992px) {
  .au-body .health-hero.health-hero--inset-box-overlap .health-hero__image-container {
    left: calc(100% - var(--hero-image-width--lg));
  }
}
.au-body .health-hero.health-hero--bg-gradient {
  position: relative;
}
.au-body .health-hero.health-hero--bg-gradient .health-hero__content {
  z-index: 400;
  backdrop-filter: none;
}
@media (min-width: 768px) {
  .au-body .health-hero.health-hero--bg-gradient .health-hero__content {
    background: none;
    padding-left: 0;
  }
  .au-body .health-hero.health-hero--bg-gradient .health-hero__content *[class^=health-hero__] {
    margin-right: 10%;
  }
}
@media (min-width: 768px) {
  .au-body .health-hero.health-hero--bg-gradient .health-hero__image-container {
    left: calc(100% - var(--hero-image-width--md));
  }
}
@media (min-width: 992px) {
  .au-body .health-hero.health-hero--bg-gradient .health-hero__image-container {
    left: calc(100% - var(--hero-image-width--lg));
  }
}
@media (min-width: 768px) {
  .au-body .health-hero.health-hero--bg-gradient .health-hero__bg {
    position: absolute;
    background: -webkit-gradient(linear, left top, right top, from(var(--hero-bg)), color-stop(var(--hero-bg)), color-stop(transparent), to(transparent));
    background: linear-gradient(90deg, var(--hero-bg) 0%, var(--hero-bg) var(--hero-content-width--md), transparent calc(var(--hero-content-width--md) + 30%), transparent 100%);
    inset: 0;
    z-index: 300;
  }
}
@media (min-width: 992px) {
  .au-body .health-hero.health-hero--bg-gradient .health-hero__bg {
    background: -webkit-gradient(linear, left top, right top, from(var(--hero-bg)), color-stop(var(--hero-bg)), color-stop(transparent), to(transparent));
    background: linear-gradient(90deg, var(--hero-bg) 0%, var(--hero-bg) calc(var(--hero-content-width--lg) - 10%), transparent calc(var(--hero-content-width--lg) + 30%), transparent 100%);
  }
}
.au-body .health-hero.health-hero--bg-gradient--vertical {
  position: relative;
  background: var(--hero-bg);
}
.au-body .health-hero.health-hero--bg-gradient--vertical .health-hero__content {
  background: none;
  backdrop-filter: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 400;
  padding: 0;
  width: 100%;
  min-height: var(--hero-minheight);
  margin-top: 0;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .au-body .health-hero.health-hero--bg-gradient--vertical .health-hero__content {
    padding-bottom: 48px;
    padding-bottom: 3rem;
    min-height: var(--hero-minheight--md);
  }
}
@media (min-width: 992px) {
  .au-body .health-hero.health-hero--bg-gradient--vertical .health-hero__content {
    min-height: var(--hero-minheight--lg);
  }
}
.au-body .health-hero.health-hero--bg-gradient--vertical .health-hero__image-container {
  position: absolute;
  inset: 0;
  max-height: none;
}
.au-body .health-hero.health-hero--bg-gradient--vertical .health-hero__image {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--hero-image-focus);
     object-position: var(--hero-image-focus);
}
.au-body .health-hero.health-hero--bg-gradient--vertical .health-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 300;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), color-stop(70%, transparent));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 70%);
}
@media (min-width: 768px) {
  .au-body .health-hero.health-hero--bg-gradient--vertical .health-hero__bg {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), color-stop(50%, transparent));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 50%);
  }
}

.au-body .health-image-text {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.au-body .health-image-text > li {
  margin-bottom: 64px;
  margin-bottom: 4rem;
}
@media print {
  .au-body .health-image-text > li {
    margin-bottom: 32px;
    margin-bottom: 2rem;
    height: auto !important;
  }
}
@media (min-width: 576px) {
  .au-body .health-image-text > li {
    text-align: center;
  }
}
@media print {
  .au-body .health-image-text .health-image-text__image {
    height: auto !important;
  }
  .au-body .health-image-text .health-image-text__image img {
    margin-top: 0 !important;
  }
}
.au-body .health-image-text .au-introduction {
  margin-top: 16px;
  margin-top: 1rem;
  display: inline-block;
}
@media (min-width: 576px) {
  .au-body .health-image-text .au-introduction {
    display: block;
  }
}
.au-body .health-image-text .text--minor {
  margin-top: 0;
  display: inline-block;
}
@media (min-width: 576px) {
  .au-body .health-image-text .text--minor {
    display: block;
  }
}
.au-body.au-body--dark .au-introduction {
  color: #FFF;
}

.au-body .media div,
.au-body .au-responsive-media-img div,
.au-body .taskbar .taskbar__img div,
.taskbar .au-body .taskbar__img div,
.au-body .taskbar.view ul > .views-row .field-name-field-image div,
.au-body .taskbar .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar .field-name-field-image div,
.au-body .taskbar .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar .field-name-field-image div,
.au-body .taskbar .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar .field-name-field-image div,
.au-body .taskbar .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar .field-name-field-image div,
.au-body .taskbar .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar .field-name-field-image div,
.taskbar.view .au-body ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .field-name-field-image div,
.taskbar .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar .au-body .field-name-field-image div,
.taskbar .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar .au-body .field-name-field-image div,
.taskbar .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar .au-body .field-name-field-image div,
.taskbar .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar .au-body .field-name-field-image div,
.taskbar .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar .au-body .field-name-field-image div,
.au-body .taskbar--6 .taskbar__img div,
.au-body .taskbar--tiled--6 .taskbar__img div,
.au-body .taskbar--5 .taskbar__img div,
.au-body .taskbar--tiled--5 .taskbar__img div,
.au-body .taskbar--4 .taskbar__img div,
.au-body .taskbar--tiled--4 .taskbar__img div,
.au-body .taskbar--3 .taskbar__img div,
.au-body .taskbar--tiled--3 .taskbar__img div,
.au-body .taskbar--2 .taskbar__img div,
.au-body .taskbar--tiled--2 .taskbar__img div,
.taskbar--6 .au-body .taskbar__img div,
.taskbar--tiled--6 .au-body .taskbar__img div,
.taskbar--5 .au-body .taskbar__img div,
.taskbar--tiled--5 .au-body .taskbar__img div,
.taskbar--4 .au-body .taskbar__img div,
.taskbar--tiled--4 .au-body .taskbar__img div,
.taskbar--3 .au-body .taskbar__img div,
.taskbar--tiled--3 .au-body .taskbar__img div,
.taskbar--2 .au-body .taskbar__img div,
.taskbar--tiled--2 .au-body .taskbar__img div,
.au-body .taskbar--6 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--6 .field-name-field-image div,
.au-body .taskbar--6 .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar--6 .field-name-field-image div,
.au-body .taskbar--6 .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar--6 .field-name-field-image div,
.au-body .taskbar--6 .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar--6 .field-name-field-image div,
.au-body .taskbar--6 .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar--6 .field-name-field-image div,
.au-body .taskbar--6 .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar--6 .field-name-field-image div,
.au-body .taskbar--tiled--6 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--tiled--6 .field-name-field-image div,
.au-body .taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar--tiled--6 .field-name-field-image div,
.au-body .taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar--tiled--6 .field-name-field-image div,
.au-body .taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar--tiled--6 .field-name-field-image div,
.au-body .taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar--tiled--6 .field-name-field-image div,
.au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.au-body .taskbar--5 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--5 .field-name-field-image div,
.au-body .taskbar--5 .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar--5 .field-name-field-image div,
.au-body .taskbar--5 .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar--5 .field-name-field-image div,
.au-body .taskbar--5 .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar--5 .field-name-field-image div,
.au-body .taskbar--5 .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar--5 .field-name-field-image div,
.au-body .taskbar--5 .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar--5 .field-name-field-image div,
.au-body .taskbar--tiled--5 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--tiled--5 .field-name-field-image div,
.au-body .taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar--tiled--5 .field-name-field-image div,
.au-body .taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar--tiled--5 .field-name-field-image div,
.au-body .taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar--tiled--5 .field-name-field-image div,
.au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.au-body .taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar--tiled--5 .field-name-field-image div,
.au-body .taskbar--4 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--4 .field-name-field-image div,
.au-body .taskbar--4 .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar--4 .field-name-field-image div,
.au-body .taskbar--4 .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar--4 .field-name-field-image div,
.au-body .taskbar--4 .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar--4 .field-name-field-image div,
.au-body .taskbar--4 .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar--4 .field-name-field-image div,
.au-body .taskbar--4 .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar--4 .field-name-field-image div,
.au-body .taskbar--tiled--4 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--tiled--4 .field-name-field-image div,
.au-body .taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar--tiled--4 .field-name-field-image div,
.au-body .taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar--tiled--4 .field-name-field-image div,
.au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.au-body .taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar--tiled--4 .field-name-field-image div,
.au-body .taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar--tiled--4 .field-name-field-image div,
.au-body .taskbar--3 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--3 .field-name-field-image div,
.au-body .taskbar--3 .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar--3 .field-name-field-image div,
.au-body .taskbar--3 .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar--3 .field-name-field-image div,
.au-body .taskbar--3 .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar--3 .field-name-field-image div,
.au-body .taskbar--3 .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar--3 .field-name-field-image div,
.au-body .taskbar--3 .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar--3 .field-name-field-image div,
.au-body .taskbar--tiled--3 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--tiled--3 .field-name-field-image div,
.au-body .taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar--tiled--3 .field-name-field-image div,
.au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.au-body .taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar--tiled--3 .field-name-field-image div,
.au-body .taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar--tiled--3 .field-name-field-image div,
.au-body .taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar--tiled--3 .field-name-field-image div,
.au-body .taskbar--2 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--2 .field-name-field-image div,
.au-body .taskbar--2 .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .taskbar--2 .field-name-field-image div,
.au-body .taskbar--2 .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar--2 .field-name-field-image div,
.au-body .taskbar--2 .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar--2 .field-name-field-image div,
.au-body .taskbar--2 .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar--2 .field-name-field-image div,
.au-body .taskbar--2 .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar--2 .field-name-field-image div,
.au-body .taskbar--tiled--2 .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .au-body .taskbar--tiled--2 .field-name-field-image div,
.au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.au-body .taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .taskbar--tiled--2 .field-name-field-image div,
.au-body .taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .taskbar--tiled--2 .field-name-field-image div,
.au-body .taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .taskbar--tiled--2 .field-name-field-image div,
.au-body .taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .taskbar--tiled--2 .field-name-field-image div,
.taskbar--6 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--6 .au-body .field-name-field-image div,
.taskbar--6 .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar--6 .au-body .field-name-field-image div,
.taskbar--6 .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar--6 .au-body .field-name-field-image div,
.taskbar--6 .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar--6 .au-body .field-name-field-image div,
.taskbar--6 .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar--6 .au-body .field-name-field-image div,
.taskbar--6 .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar--6 .au-body .field-name-field-image div,
.taskbar--tiled--6 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--tiled--6 .au-body .field-name-field-image div,
.taskbar--tiled--6 .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--6 .au-body .field-name-field-image div,
.taskbar--tiled--6 .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--6 .au-body .field-name-field-image div,
.taskbar--tiled--6 .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--6 .au-body .field-name-field-image div,
.taskbar--tiled--6 .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--6 .au-body .field-name-field-image div,
.taskbar--tiled--6.view .au-body ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .au-body .field-name-field-image div,
.taskbar--5 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--5 .au-body .field-name-field-image div,
.taskbar--5 .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar--5 .au-body .field-name-field-image div,
.taskbar--5 .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar--5 .au-body .field-name-field-image div,
.taskbar--5 .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar--5 .au-body .field-name-field-image div,
.taskbar--5 .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar--5 .au-body .field-name-field-image div,
.taskbar--5 .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar--5 .au-body .field-name-field-image div,
.taskbar--tiled--5 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--tiled--5 .au-body .field-name-field-image div,
.taskbar--tiled--5 .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--5 .au-body .field-name-field-image div,
.taskbar--tiled--5 .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--5 .au-body .field-name-field-image div,
.taskbar--tiled--5 .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--5 .au-body .field-name-field-image div,
.taskbar--tiled--5.view .au-body ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .au-body .field-name-field-image div,
.taskbar--tiled--5 .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--5 .au-body .field-name-field-image div,
.taskbar--4 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--4 .au-body .field-name-field-image div,
.taskbar--4 .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar--4 .au-body .field-name-field-image div,
.taskbar--4 .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar--4 .au-body .field-name-field-image div,
.taskbar--4 .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar--4 .au-body .field-name-field-image div,
.taskbar--4 .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar--4 .au-body .field-name-field-image div,
.taskbar--4 .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar--4 .au-body .field-name-field-image div,
.taskbar--tiled--4 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--tiled--4 .au-body .field-name-field-image div,
.taskbar--tiled--4 .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--4 .au-body .field-name-field-image div,
.taskbar--tiled--4 .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--4 .au-body .field-name-field-image div,
.taskbar--tiled--4.view .au-body ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .au-body .field-name-field-image div,
.taskbar--tiled--4 .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--4 .au-body .field-name-field-image div,
.taskbar--tiled--4 .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--4 .au-body .field-name-field-image div,
.taskbar--3 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--3 .au-body .field-name-field-image div,
.taskbar--3 .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar--3 .au-body .field-name-field-image div,
.taskbar--3 .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar--3 .au-body .field-name-field-image div,
.taskbar--3 .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar--3 .au-body .field-name-field-image div,
.taskbar--3 .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar--3 .au-body .field-name-field-image div,
.taskbar--3 .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar--3 .au-body .field-name-field-image div,
.taskbar--tiled--3 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--tiled--3 .au-body .field-name-field-image div,
.taskbar--tiled--3 .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--3 .au-body .field-name-field-image div,
.taskbar--tiled--3.view .au-body ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .au-body .field-name-field-image div,
.taskbar--tiled--3 .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--3 .au-body .field-name-field-image div,
.taskbar--tiled--3 .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--3 .au-body .field-name-field-image div,
.taskbar--tiled--3 .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--3 .au-body .field-name-field-image div,
.taskbar--2 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--2 .au-body .field-name-field-image div,
.taskbar--2 .au-body .taskbar--tiled--2.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .taskbar--2 .au-body .field-name-field-image div,
.taskbar--2 .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar--2 .au-body .field-name-field-image div,
.taskbar--2 .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar--2 .au-body .field-name-field-image div,
.taskbar--2 .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar--2 .au-body .field-name-field-image div,
.taskbar--2 .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar--2 .au-body .field-name-field-image div,
.taskbar--tiled--2 .au-body .taskbar.view ul > .views-row .field-name-field-image div,
.taskbar.view ul > .views-row .taskbar--tiled--2 .au-body .field-name-field-image div,
.taskbar--tiled--2.view .au-body ul > .views-row .field-name-field-image div,
.taskbar--tiled--2.view ul > .views-row .au-body .field-name-field-image div,
.taskbar--tiled--2 .au-body .taskbar--tiled--3.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--2 .au-body .field-name-field-image div,
.taskbar--tiled--2 .au-body .taskbar--tiled--4.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--2 .au-body .field-name-field-image div,
.taskbar--tiled--2 .au-body .taskbar--tiled--5.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--2 .au-body .field-name-field-image div,
.taskbar--tiled--2 .au-body .taskbar--tiled--6.view ul > .views-row .field-name-field-image div,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--2 .au-body .field-name-field-image div,
.au-body img div,
.au-body svg div,
.au-body img {
  line-height: 0;
}

img {
  border: 0;
}

.au-body picture {
  display: block;
}
.au-body picture img {
  margin-top: 0;
}
* + picture {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.image--circle img {
  border-radius: 50%;
  border: 3px solid #ccc;
}

.field-name-field-image-caption {
  margin-bottom: 2em;
}

.image-outer {
  line-height: 0;
}
* + .image-outer {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media print {
  .image-outer .image-placeholder {
    border: 1px solid black;
  }
  .image-outer .image-placeholder:before {
    content: "This image hasn't loaded yet. Close the print dialog and try again.";
  }
}
.image-outer .image-wrapper {
  width: 100%;
  height: 0;
  position: relative;
  line-height: 0;
}
.image-outer .image-wrapper.image-loading {
  background-color: transparent;
}
.image-outer .image-wrapper .image {
  width: 100%;
}
.image-outer .image-wrapper .image img {
  visibility: hidden;
}

.image--link a {
  border-bottom: 0;
  line-height: 0;
}
@media (min-width: 576px) {
  .image--link a {
    display: block;
  }
}
.image--link a:hover img {
  opacity: 0.5;
}
.image--link a img {
  margin-top: 0;
}

a .image-wrapper.image-loading {
  background-color: white;
}

.health-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.health-grid > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -ms-flex: auto;
  margin-bottom: 18px;
  padding: 1rem;
}
@media (min-width: 576px) {
  .health-grid > * {
    margin-bottom: 36px;
  }
}
.health-grid > img {
  padding: 0;
}
@media (min-width: 0) {
  .health-grid--1col-xs > * {
    -ms-flex-preferred-size: calc(100% / 1 - 0 * 0rem / 1);
        flex-basis: calc(100% / 1 - 0 * 0rem / 1);
    -ms-flex: auto;
    margin-right: 0;
    margin-bottom: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--1col-xs > img {
    max-width: calc(100% / 1 - 0 * 0rem / 1);
  }
}
@media (min-width: 576px) {
  .health-grid--1col-sm > * {
    -ms-flex-preferred-size: calc(100% / 1 - 0 * 0rem / 1);
        flex-basis: calc(100% / 1 - 0 * 0rem / 1);
    -ms-flex: auto;
    margin-right: 0;
    margin-bottom: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--1col-sm > img {
    max-width: calc(100% / 1 - 0 * 0rem / 1);
  }
}
@media (min-width: 768px) {
  .health-grid--1col-md > * {
    -ms-flex-preferred-size: calc(100% / 1 - 0 * 0rem / 1);
        flex-basis: calc(100% / 1 - 0 * 0rem / 1);
    -ms-flex: auto;
    margin-right: 0;
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--1col-md > img {
    max-width: calc(100% / 1 - 0 * 0rem / 1);
  }
}
@media (min-width: 992px) {
  .health-grid--1col-lg > * {
    -ms-flex-preferred-size: calc(100% / 1 - 0 * 0rem / 1);
        flex-basis: calc(100% / 1 - 0 * 0rem / 1);
    -ms-flex: auto;
    margin-right: 0;
    margin-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--1col-lg > img {
    max-width: calc(100% / 1 - 0 * 0rem / 1);
  }
}

@media (min-width: 0) {
  .health-grid--2col-xs > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 2 - 1 * 18px / 2);
        flex-basis: calc(100% / 2 - 1 * 18px / 2);
    margin-bottom: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--2col-xs > *:not(*:nth-child(2n+2)) {
    margin-right: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--2col-xs > *:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media (min-width: 0) {
  .health-grid--2col-xs > img {
    margin-top: 0;
    max-width: calc(100% / 2 - 1 * 36px / 2);
  }
}

@media (min-width: 0) {
  .health-grid--3col-xs > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 3 - 2 * 18px / 3);
        flex-basis: calc(100% / 3 - 2 * 18px / 3);
    margin-bottom: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--3col-xs > *:not(*:nth-child(3n+3)) {
    margin-right: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--3col-xs > *:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (min-width: 0) {
  .health-grid--3col-xs > img {
    margin-top: 0;
    max-width: calc(100% / 3 - 2 * 36px / 3);
  }
}

@media (min-width: 0) {
  .health-grid--4col-xs > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 4 - 3 * 18px / 4);
        flex-basis: calc(100% / 4 - 3 * 18px / 4);
    margin-bottom: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--4col-xs > *:not(*:nth-child(4n+4)) {
    margin-right: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--4col-xs > *:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media (min-width: 0) {
  .health-grid--4col-xs > img {
    margin-top: 0;
    max-width: calc(100% / 4 - 3 * 36px / 4);
  }
}

@media (min-width: 0) {
  .health-grid--5col-xs > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 5 - 4 * 18px / 5);
        flex-basis: calc(100% / 5 - 4 * 18px / 5);
    margin-bottom: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--5col-xs > *:not(*:nth-child(5n+5)) {
    margin-right: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--5col-xs > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media (min-width: 0) {
  .health-grid--5col-xs > img {
    margin-top: 0;
    max-width: calc(100% / 5 - 4 * 36px / 5);
  }
}

@media (min-width: 0) {
  .health-grid--6col-xs > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 6 - 5 * 18px / 6);
        flex-basis: calc(100% / 6 - 5 * 18px / 6);
    margin-bottom: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--6col-xs > *:not(*:nth-child(6n+6)) {
    margin-right: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--6col-xs > *:nth-child(6n+6) {
    margin-right: 0;
  }
}
@media (min-width: 0) {
  .health-grid--6col-xs > img {
    margin-top: 0;
    max-width: calc(100% / 6 - 5 * 36px / 6);
  }
}

@media (min-width: 0) {
  .health-grid--7col-xs > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 7 - 6 * 18px / 7);
        flex-basis: calc(100% / 7 - 6 * 18px / 7);
    margin-bottom: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--7col-xs > *:not(*:nth-child(7n+7)) {
    margin-right: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--7col-xs > *:nth-child(7n+7) {
    margin-right: 0;
  }
}
@media (min-width: 0) {
  .health-grid--7col-xs > img {
    margin-top: 0;
    max-width: calc(100% / 7 - 6 * 36px / 7);
  }
}

@media (min-width: 0) {
  .health-grid--8col-xs > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 8 - 7 * 18px / 8);
        flex-basis: calc(100% / 8 - 7 * 18px / 8);
    margin-bottom: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--8col-xs > *:not(*:nth-child(8n+8)) {
    margin-right: 18px;
  }
}
@media (min-width: 0) {
  .health-grid--8col-xs > *:nth-child(8n+8) {
    margin-right: 0;
  }
}
@media (min-width: 0) {
  .health-grid--8col-xs > img {
    margin-top: 0;
    max-width: calc(100% / 8 - 7 * 36px / 8);
  }
}

@media (min-width: 576px) {
  .health-grid--2col-sm > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 2 - 1 * 36px / 2);
        flex-basis: calc(100% / 2 - 1 * 36px / 2);
    margin-bottom: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--2col-sm > *:not(*:nth-child(2n+2)) {
    margin-right: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--2col-sm > *:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .health-grid--2col-sm > img {
    margin-top: 0;
    max-width: calc(100% / 2 - 1 * 36px / 2);
  }
}

@media (min-width: 576px) {
  .health-grid--3col-sm > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 3 - 2 * 36px / 3);
        flex-basis: calc(100% / 3 - 2 * 36px / 3);
    margin-bottom: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--3col-sm > *:not(*:nth-child(3n+3)) {
    margin-right: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--3col-sm > *:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .health-grid--3col-sm > img {
    margin-top: 0;
    max-width: calc(100% / 3 - 2 * 36px / 3);
  }
}

@media (min-width: 576px) {
  .health-grid--4col-sm > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 4 - 3 * 36px / 4);
        flex-basis: calc(100% / 4 - 3 * 36px / 4);
    margin-bottom: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--4col-sm > *:not(*:nth-child(4n+4)) {
    margin-right: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--4col-sm > *:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .health-grid--4col-sm > img {
    margin-top: 0;
    max-width: calc(100% / 4 - 3 * 36px / 4);
  }
}

@media (min-width: 576px) {
  .health-grid--5col-sm > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 5 - 4 * 36px / 5);
        flex-basis: calc(100% / 5 - 4 * 36px / 5);
    margin-bottom: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--5col-sm > *:not(*:nth-child(5n+5)) {
    margin-right: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--5col-sm > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .health-grid--5col-sm > img {
    margin-top: 0;
    max-width: calc(100% / 5 - 4 * 36px / 5);
  }
}

@media (min-width: 576px) {
  .health-grid--6col-sm > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 6 - 5 * 36px / 6);
        flex-basis: calc(100% / 6 - 5 * 36px / 6);
    margin-bottom: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--6col-sm > *:not(*:nth-child(6n+6)) {
    margin-right: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--6col-sm > *:nth-child(6n+6) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .health-grid--6col-sm > img {
    margin-top: 0;
    max-width: calc(100% / 6 - 5 * 36px / 6);
  }
}

@media (min-width: 576px) {
  .health-grid--7col-sm > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 7 - 6 * 36px / 7);
        flex-basis: calc(100% / 7 - 6 * 36px / 7);
    margin-bottom: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--7col-sm > *:not(*:nth-child(7n+7)) {
    margin-right: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--7col-sm > *:nth-child(7n+7) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .health-grid--7col-sm > img {
    margin-top: 0;
    max-width: calc(100% / 7 - 6 * 36px / 7);
  }
}

@media (min-width: 576px) {
  .health-grid--8col-sm > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 8 - 7 * 36px / 8);
        flex-basis: calc(100% / 8 - 7 * 36px / 8);
    margin-bottom: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--8col-sm > *:not(*:nth-child(8n+8)) {
    margin-right: 36px;
  }
}
@media (min-width: 576px) {
  .health-grid--8col-sm > *:nth-child(8n+8) {
    margin-right: 0;
  }
}
@media (min-width: 576px) {
  .health-grid--8col-sm > img {
    margin-top: 0;
    max-width: calc(100% / 8 - 7 * 36px / 8);
  }
}

@media (min-width: 768px) {
  .health-grid--2col-md > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 2 - 1 * 36px / 2);
        flex-basis: calc(100% / 2 - 1 * 36px / 2);
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--2col-md > *:not(*:nth-child(2n+2)) {
    margin-right: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--2col-md > *:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .health-grid--2col-md > img {
    margin-top: 0;
    max-width: calc(100% / 2 - 1 * 36px / 2);
  }
}

@media (min-width: 768px) {
  .health-grid--3col-md > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 3 - 2 * 36px / 3);
        flex-basis: calc(100% / 3 - 2 * 36px / 3);
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--3col-md > *:not(*:nth-child(3n+3)) {
    margin-right: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--3col-md > *:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .health-grid--3col-md > img {
    margin-top: 0;
    max-width: calc(100% / 3 - 2 * 36px / 3);
  }
}

@media (min-width: 768px) {
  .health-grid--4col-md > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 4 - 3 * 36px / 4);
        flex-basis: calc(100% / 4 - 3 * 36px / 4);
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--4col-md > *:not(*:nth-child(4n+4)) {
    margin-right: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--4col-md > *:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .health-grid--4col-md > img {
    margin-top: 0;
    max-width: calc(100% / 4 - 3 * 36px / 4);
  }
}

@media (min-width: 768px) {
  .health-grid--5col-md > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 5 - 4 * 36px / 5);
        flex-basis: calc(100% / 5 - 4 * 36px / 5);
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--5col-md > *:not(*:nth-child(5n+5)) {
    margin-right: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--5col-md > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .health-grid--5col-md > img {
    margin-top: 0;
    max-width: calc(100% / 5 - 4 * 36px / 5);
  }
}

@media (min-width: 768px) {
  .health-grid--6col-md > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 6 - 5 * 36px / 6);
        flex-basis: calc(100% / 6 - 5 * 36px / 6);
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--6col-md > *:not(*:nth-child(6n+6)) {
    margin-right: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--6col-md > *:nth-child(6n+6) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .health-grid--6col-md > img {
    margin-top: 0;
    max-width: calc(100% / 6 - 5 * 36px / 6);
  }
}

@media (min-width: 768px) {
  .health-grid--7col-md > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 7 - 6 * 36px / 7);
        flex-basis: calc(100% / 7 - 6 * 36px / 7);
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--7col-md > *:not(*:nth-child(7n+7)) {
    margin-right: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--7col-md > *:nth-child(7n+7) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .health-grid--7col-md > img {
    margin-top: 0;
    max-width: calc(100% / 7 - 6 * 36px / 7);
  }
}

@media (min-width: 768px) {
  .health-grid--8col-md > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 8 - 7 * 36px / 8);
        flex-basis: calc(100% / 8 - 7 * 36px / 8);
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--8col-md > *:not(*:nth-child(8n+8)) {
    margin-right: 36px;
  }
}
@media (min-width: 768px) {
  .health-grid--8col-md > *:nth-child(8n+8) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .health-grid--8col-md > img {
    margin-top: 0;
    max-width: calc(100% / 8 - 7 * 36px / 8);
  }
}

@media (min-width: 992px) {
  .health-grid--2col-lg > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 2 - 1 * 36px / 2);
        flex-basis: calc(100% / 2 - 1 * 36px / 2);
    margin-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--2col-lg > *:not(*:nth-child(2n+2)) {
    margin-right: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--2col-lg > *:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .health-grid--2col-lg > img {
    margin-top: 0;
    max-width: calc(100% / 2 - 1 * 36px / 2);
  }
}

@media (min-width: 992px) {
  .health-grid--3col-lg > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 3 - 2 * 36px / 3);
        flex-basis: calc(100% / 3 - 2 * 36px / 3);
    margin-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--3col-lg > *:not(*:nth-child(3n+3)) {
    margin-right: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--3col-lg > *:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .health-grid--3col-lg > img {
    margin-top: 0;
    max-width: calc(100% / 3 - 2 * 36px / 3);
  }
}

@media (min-width: 992px) {
  .health-grid--4col-lg > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 4 - 3 * 36px / 4);
        flex-basis: calc(100% / 4 - 3 * 36px / 4);
    margin-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--4col-lg > *:not(*:nth-child(4n+4)) {
    margin-right: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--4col-lg > *:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .health-grid--4col-lg > img {
    margin-top: 0;
    max-width: calc(100% / 4 - 3 * 36px / 4);
  }
}

@media (min-width: 992px) {
  .health-grid--5col-lg > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 5 - 4 * 36px / 5);
        flex-basis: calc(100% / 5 - 4 * 36px / 5);
    margin-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--5col-lg > *:not(*:nth-child(5n+5)) {
    margin-right: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--5col-lg > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .health-grid--5col-lg > img {
    margin-top: 0;
    max-width: calc(100% / 5 - 4 * 36px / 5);
  }
}

@media (min-width: 992px) {
  .health-grid--6col-lg > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 6 - 5 * 36px / 6);
        flex-basis: calc(100% / 6 - 5 * 36px / 6);
    margin-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--6col-lg > *:not(*:nth-child(6n+6)) {
    margin-right: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--6col-lg > *:nth-child(6n+6) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .health-grid--6col-lg > img {
    margin-top: 0;
    max-width: calc(100% / 6 - 5 * 36px / 6);
  }
}

@media (min-width: 992px) {
  .health-grid--7col-lg > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 7 - 6 * 36px / 7);
        flex-basis: calc(100% / 7 - 6 * 36px / 7);
    margin-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--7col-lg > *:not(*:nth-child(7n+7)) {
    margin-right: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--7col-lg > *:nth-child(7n+7) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .health-grid--7col-lg > img {
    margin-top: 0;
    max-width: calc(100% / 7 - 6 * 36px / 7);
  }
}

@media (min-width: 992px) {
  .health-grid--8col-lg > * {
    -ms-flex: auto;
    -ms-flex-preferred-size: calc(100% / 8 - 7 * 36px / 8);
        flex-basis: calc(100% / 8 - 7 * 36px / 8);
    margin-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--8col-lg > *:not(*:nth-child(8n+8)) {
    margin-right: 36px;
  }
}
@media (min-width: 992px) {
  .health-grid--8col-lg > *:nth-child(8n+8) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .health-grid--8col-lg > img {
    margin-top: 0;
    max-width: calc(100% / 8 - 7 * 36px / 8);
  }
}

.au-body * + .health-layout,
.au-body * + .health-component {
  margin-top: 1.5rem;
}
@media (min-width: 576px) {
  .au-body * + .health-layout,
  .au-body * + .health-component {
    margin-top: 3rem;
  }
}
.au-body * + .health-grid > * + p {
  margin-top: 0;
}

.health-listing:before, .health-listing:after {
  content: " ";
  display: table;
}
.health-listing:after {
  clear: both;
}
.health-listing {
  clear: both;
  margin-top: 0;
  padding: 0;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
* + .health-listing {
  margin: 32px 0 0 0;
  margin: 2rem 0 0 0;
}
* + .row .health-listing--embedded > li:first-of-type, * + .health-listing--embedded > li:first-of-type {
  border-top: 1px solid #ccc;
  padding-top: 32px;
  padding-top: 2rem;
  margin-top: 32px;
  margin-top: 2rem;
}
* + .row .health-listing--embedded > li:last-of-type, * + .health-listing--embedded > li:last-of-type {
  border-bottom: 1px solid #ccc;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.health-listing > li {
  list-style: none;
  max-width: inherit;
  clear: both;
}
.health-listing > li + li {
  margin-top: 32px;
  margin-top: 2rem;
  border-top: 1px solid #ccc;
  padding-top: 32px;
  padding-top: 2rem;
}
.health-listing--compact > li + li {
  margin-top: 16px;
  margin-top: 1rem;
  padding-top: 16px;
  padding-top: 1rem;
}
* + .health-listing__filters {
  margin-top: 16px;
  margin-top: 1rem;
}
@media print {
  .health-listing__filters {
    background: transparent !important;
  }
}
.health-listing__filters--inline > * {
  display: inline-block;
  margin-right: 16px;
  margin-right: 1rem;
}
.health-listing__filters .clear-all {
  margin: 8px 4px 0 0;
  margin: 0.5rem 0.25rem 0 0;
}
@media print {
  .health-listing__filters .clear-all {
    display: none;
  }
}

.list--remove {
  list-style: none;
  padding-left: 0;
}
.list--remove > li {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.health-listing__filters--inline > *,
.health-listing__filters--inline > .au-tags {
  display: inline-block;
  margin-right: 16px;
  margin-right: 1rem;
}

@media (min-width: 576px) {
  .au-body .content-region-gap--left {
    padding-left: 48px;
    padding-left: 3rem;
  }
}
@media (min-width: 576px) {
  .au-body .content-region-gap--right {
    padding-right: 48px;
    padding-right: 3rem;
  }
}

ul li {
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}
ul li.highlight {
  background-color: #f8f8f8;
}

ul.list--large--checklist, ul.list--large--plain,
ol.list--large--plain, ul.list--large, ol.list--large {
  list-style-type: none;
  counter-reset: standard-counter;
  padding: 0;
  margin: 0;
}
* + ul.list--large--checklist, * + ul.list--large--plain,
* + ol.list--large--plain, * + ul.list--large, * + ol.list--large {
  margin-top: 24px;
  margin-top: 1.5rem;
}
ul.list--large--checklist > li, ul.list--large--plain > li,
ol.list--large--plain > li, ul.list--large > li, ol.list--large > li {
  vertical-align: top;
  position: relative;
  margin: 0 0 16px;
  margin: 0 0 1rem;
  padding: 24px;
  padding: 1.5rem;
  background: #f1f1f2;
}
ul.list--large--checklist > li::before, ul.list--large--plain > li::before,
ol.list--large--plain > li::before, ul.list--large > li::before, ol.list--large > li::before {
  content: counter(standard-counter, decimal);
  counter-increment: standard-counter;
  float: left;
  text-align: center;
  font-weight: 700;
  position: absolute;
  left: 14px;
  top: 16px;
  top: 1rem;
  padding-top: 0;
  font-size: 24px;
}
ul.list--large--checklist > li a, ul.list--large--plain > li a,
ol.list--large--plain > li a, ul.list--large > li a, ol.list--large > li a {
  font-weight: bold;
  font-size: 1.15rem;
  line-height: 1.2;
}

ol.list--large > li {
  padding-left: 48px;
  padding-left: 3rem;
}

ul.list--large {
  counter-reset: none;
}
ul.list--large > li {
  padding-left: 48px;
  padding-left: 3rem;
}
ul.list--large > li::before {
  content: "■";
  counter-increment: none;
}

ul.list--large--plain > li:before,
ol.list--large--plain > li:before {
  display: none;
}

ul.list--large--checklist > li {
  padding-left: 64px;
  padding-left: 4rem;
  padding-top: 16px;
  padding-top: 1rem;
  background: #f1f1f2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23313131' d='M0,0h32v32H0V0z'/%3E%3Cpath fill='%23fff' d='M2,2h28v28H2V2z'/%3E%3C/svg%3E") no-repeat 13px 13px/30px 30px;
}
ul.list--large--checklist > li::before {
  content: "";
}
ul:has(.au-cta-link) {
  padding-left: 20px;
}

.au-body .list--cta-links {
  padding-left: 0;
  list-style-type: none;
  border-top: 1px solid #ccc;
}
.au-body .list--cta-links__link {
  position: relative;
  display: block;
  padding: 12px 24px 12px 0;
  padding: 0.75rem 1.5rem 0.75rem 0;
  border-bottom: 1px solid #ccc;
}
.au-body .list--cta-links__link:after {
  content: " ";
  display: block;
  position: absolute;
  height: 16px;
  width: 14px;
  bottom: 16px;
  bottom: 1rem;
  right: 8px;
  right: 0.5rem;
  -webkit-transition: margin 0.2s ease;
  transition: margin 0.2s ease;
  -webkit-transition-property: right;
  transition-property: right;
  background: #000;
  mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E");
}
.au-body .list--cta-links__link:hover:after, .au-body .list--cta-links__link:active:after, .au-body .list--cta-links__link:focus:after {
  right: 0;
}

.health-loading,
.health-loading:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
}

.health-loading {
  font-size: 8px;
  display: none;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 111, 176, 0.2);
  border-right: 1.1em solid rgba(0, 111, 176, 0.2);
  border-bottom: 1.1em solid rgba(0, 111, 176, 0.2);
  border-left: 1.1em solid #006fb0;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.health-loading--active {
  display: block;
}
.health-loading--search {
  position: absolute;
  top: 13px;
  right: 55px;
}
.health-loading--small {
  width: 5em;
  height: 5em;
  font-size: 4px;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.au-body .health-maps--google {
  width: 100%;
  height: 500px;
}
.au-body .health-maps--google * + img {
  margin-top: 0;
}

* + .health-metadata {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.health-metadata.health-metadata--inline .health-field {
  display: inline;
  border-left: 1px solid #414141;
  margin-left: 8px;
  margin-left: 0.5rem;
  padding-left: 8px;
  padding-left: 0.5rem;
}
.health-metadata.health-metadata--inline .health-field .health-field__item {
  display: inline;
}
.health-metadata.health-metadata--inline > :first-child {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}

.health-pager {
  text-align: center;
  margin-top: 16px;
  margin-top: 1rem;
}
.health-pager li {
  padding: 0 4px;
  padding: 0 0.25rem;
}
.health-pager li.active {
  font-weight: bold;
}
.health-listing + .health-pager {
  margin-top: 32px;
  margin-top: 2rem;
  padding-top: 32px;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
}

.au-body .quick-exit {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
.au-body .quick-exit a {
  color: #FFF;
}
.au-body .quick-exit__icon {
  color: #FFF;
}
.au-body .quick-exit__icon .svg-inline--fa svg {
  font-size: 4rem;
}
@media (min-width: 576px) {
  .au-body .quick-exit__icon .svg-inline--fa svg {
    font-size: 5rem;
  }
}
.au-body .quick-exit__action {
  cursor: pointer;
  border: 0;
  margin: 0;
  padding: 1rem 0;
  background: none;
  width: 100%;
  background-clip: padding-box;
  text-align: left;
  background: #92258F;
}
@media (min-width: 576px) {
  .au-body .quick-exit__action {
    padding: 2rem;
  }
}
.au-body .quick-exit__action:hover, .au-body .quick-exit__action:active, .au-body .quick-exit__action:focus {
  text-decoration: none;
  background: rgb(125.6557377049, 31.8442622951, 123.0737704918);
}
.au-body .quick-exit__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.au-body .quick-exit__text {
  line-height: 1.5;
}
.au-body .quick-exit__title {
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 576px) {
  .au-body .quick-exit__title {
    font-size: 2.5rem;
  }
}
.au-body .quick-exit__subline {
  color: #FFF;
  font-size: 1rem;
  margin-top: 0;
}
@media (min-width: 576px) {
  .au-body .quick-exit__subline {
    font-size: 1.5rem;
  }
}
.au-body .quick-exit__subline-key {
  background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), color-stop(80%, #D2D2D2), to(#c0c0c0));
  background: linear-gradient(top, #f9f9f9 0%, #D2D2D2 80%, #c0c0c0 100%);
  padding: 0 6px;
  -webkit-box-shadow: 0 0 1px #888, 0 1px 0 #fff, 0 6px 0 #C0C0C0, 0 8px 17px rgba(68, 68, 68, 0.4), 2px 1px 4px rgba(68, 68, 68, 0.25), -2px 1px 4px rgba(68, 68, 68, 0.25), 0 9px 16px rgba(68, 68, 68, 0.1);
          box-shadow: 0 0 1px #888, 0 1px 0 #fff, 0 6px 0 #C0C0C0, 0 8px 17px rgba(68, 68, 68, 0.4), 2px 1px 4px rgba(68, 68, 68, 0.25), -2px 1px 4px rgba(68, 68, 68, 0.25), 0 9px 16px rgba(68, 68, 68, 0.1);
  border-radius: 6px;
  border-color: #f2f2f2;
  border-style: solid;
  border-width: 1px;
  display: inline-block;
  color: #313131;
}
.au-body .quick-exit__link {
  font-size: 0.8rem;
  top: 0;
  right: 1rem;
  position: absolute;
}
@media (min-width: 576px) {
  .au-body .quick-exit__link {
    font-size: 1rem;
  }
}
.au-body .quick-exit .mobile-hidden {
  display: none;
}
@media (min-width: 768px) {
  .au-body .quick-exit .mobile-hidden {
    display: inline;
  }
}

@media print {
  .au-body .quick-exit {
    display: none;
  }
  .au-body--offset {
    margin-top: 0 !important;
  }
}
.health-recommendation--grade-practice-point {
  border-left-color: #d9c100;
}
.health-recommendation--grade-practice-point .health-recommendation__grade {
  background-color: #fff4c8;
}
.health-recommendation--grade-grade-a, .health-recommendation--grade-grade-b, .health-recommendation--grade-grade-c, .health-recommendation--grade-grade-d, .health-recommendation--grade-evidence-based, .health-recommendation--grade-qualified-evidence-based {
  border-left-color: #8852ce;
}
.health-recommendation--grade-grade-a .health-recommendation__grade, .health-recommendation--grade-grade-b .health-recommendation__grade, .health-recommendation--grade-grade-c .health-recommendation__grade, .health-recommendation--grade-grade-d .health-recommendation__grade, .health-recommendation--grade-evidence-based .health-recommendation__grade, .health-recommendation--grade-qualified-evidence-based .health-recommendation__grade {
  background-color: #e0c8ff;
}
.health-recommendation--grade-consensus-based {
  border-left-color: #5f904d;
}
.health-recommendation--grade-consensus-based .health-recommendation__grade {
  background-color: #e7fddf;
}

/*
 * List of references
 */
.health-references > li {
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}
.health-references > li.highlight {
  background-color: #f8f8f8;
}

/*
 * Links to the reference
 */
.health-references__links .health-references__link {
  border-bottom: 1px dotted #cdcdcd;
  cursor: help;
}

.health-release-status {
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  font-size: 13px;
}
@media (min-width: 768px) {
  .health-release-status {
    font-size: inherit;
  }
}
@media print {
  .health-release-status {
    display: none;
  }
}
.health-release-status__icon {
  padding: 0 8px;
  margin-right: 10px;
  float: left;
  text-transform: uppercase;
  border-radius: 12px;
  margin-top: 2px;
  font-size: 14px;
}
.health-release-status__icon--alpha {
  background: #c22f73;
  color: #FFF;
}
.health-release-status__icon--beta {
  background: #d34600;
  color: #FFF;
}
.health-release-status__icon--launch {
  background: #158839;
  color: #FFF;
}
.health-release-status--desktop {
  display: none;
}
@media (min-width: 768px) {
  .health-release-status--desktop {
    display: block;
  }
}
.health-release-status--mobile {
  display: block;
}
@media (min-width: 768px) {
  .health-release-status--mobile {
    display: none;
  }
}
.health-release-status p {
  max-width: 100%;
}

.hidden {
  display: none;
}

@media (min-width: 0) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
@media (min-width: 576px) {
  .hidden-sm {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .hidden-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg {
    display: none !important;
  }
  .visible-lg {
    display: block !important;
  }
}
@media (min-width: 576px) {
  .au-grid .au-header .health-search {
    float: right;
  }
}

.au-body .health-search {
  display: inline-block;
  max-width: 22.75em;
  margin-top: 24px;
  margin-top: 1.5rem;
  position: relative;
}
@media (min-width: 576px) {
  .au-body .health-search {
    margin-top: 0;
  }
}
@media print {
  .au-body .health-search {
    display: none;
  }
}
.au-body .health-search--global {
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .au-body .health-search--global {
    display: block;
    padding-bottom: 0;
    margin-top: 0;
  }
}
@media print {
  .au-body .health-search--global {
    display: none;
  }
}
.au-body .health-search--listing {
  width: auto;
}
@media print {
  .au-body .health-search--listing {
    display: none;
  }
}
.au-body .health-search .au-form__item,
.au-body .health-search input {
  margin-top: 0 !important;
}
.au-body .health-search__form:before, .au-body .health-search__form:after {
  content: " ";
  display: table;
}
.au-body .health-search__form:after {
  clear: both;
}
.au-body .health-search__form {
  position: relative;
}
.au-body .health-search__form label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.au-body .health-search__form#search-api-page-search-form {
  float: left;
}
.au-body .health-search__form__input {
  border-color: #313131;
  background-color: white;
  width: 100%;
}
@media (min-width: 576px) {
  .au-body .health-search__form__input {
    width: 240px;
    width: 15rem;
  }
}
@media (min-width: 768px) {
  .au-body .health-search__form__input {
    width: 320px;
    width: 20rem;
  }
}
.au-body .health-search__form__input-wrapper {
  width: 100%;
  padding-right: 45px;
}
.au-body .health-search__form__submit {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #313131;
  border: none;
  width: 46px;
  height: 46px;
  text-indent: -999px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='-5 -5 32 32' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  margin: 0 !important;
  border-radius: 0px 4px 4px 0;
}
.au-body .health-search__form__submit:hover:not(:disabled), .au-body .health-search__form__submit:focus:not(:disabled) {
  background-color: #000;
}

.au-body .health-search-result__link {
  text-decoration: none;
}
.au-body .health-search-result__link-title {
  margin-top: 0;
  text-decoration: underline;
  display: inline-block;
}
.au-body .health-search-result__link-path {
  color: #006621;
  font-size: 0.9em;
  word-break: break-all;
}
.au-body .health-search-result__link-path a {
  color: #006621;
}
.au-body .health-search-result ol.health-search-result__link-path li:after {
  margin: 0;
}
.au-body .health-search-result__summary {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.au-body .health-search-result__summary-date {
  color: #87888A;
}
.au-body .health-search-result__tag {
  text-transform: uppercase;
}
.au-body .health-search-result--notes .health-search-result__link-title:after {
  content: "Old Health website";
  font-size: 0.8rem;
  color: #313131;
  font-weight: 400;
  text-decoration: none;
  padding: 3px 5px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid #ececec;
  background: #f1f1f2;
  margin-left: 5px;
}

form[class*=col-].health-search__form .health-search__form__submit {
  right: 18px;
}

.ui-autocomplete {
  z-index: 9999999;
  background: white;
  border: 1px solid #000;
  width: 300px;
  position: absolute;
}
.ui-autocomplete li.ui-menu-item {
  margin: 0;
}
.ui-autocomplete li.ui-menu-item:hover {
  cursor: pointer;
}
.ui-autocomplete li.ui-menu-item .ui-menu-item-wrapper {
  padding: 4px 19px;
  padding: 0.25rem 1.2rem;
}

.ui-state-active {
  background: #006FB0;
  color: white;
}

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

.health-separator {
  border-top: 1px solid #ccc;
  margin-top: 48px;
  margin-top: 3rem;
}
@media (min-width: 576px) {
  .health-separator {
    margin-top: 64px;
    margin-top: 4rem;
  }
}

@media (min-width: 576px) {
  .stat {
    border-right: 1px dotted #ececec;
  }
  .stat:last-of-type {
    border-right: none;
  }
}

.stat__text {
  padding: 0 0 4px 0;
  padding: 0 0 0.25rem 0;
}
@media (min-width: 768px) {
  .stat__text {
    padding-bottom: 16px;
    padding-bottom: 1rem;
  }
}

.stat__trend {
  padding-top: 12px;
  padding-bottom: 12px;
}

.stat__trend-value {
  padding: 0;
  margin: 0;
  display: inline;
}

.stat__trend-icon {
  margin-right: 5px;
  color: white;
}
.stat__trend-icon:before {
  margin-top: -16px;
  margin-top: -1rem;
}

.stat__source {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  margin-top: 0 !important;
}

.stat--no-trend .stat__value {
  border-bottom: 0;
}
.stat--no-trend .stat__trend {
  display: none;
}

.au-body .stat p {
  margin-top: 0;
}

.au-body .health-steps ul, .au-body .health-steps ol {
  margin: 0;
  padding: 0;
  margin-top: 24px;
  margin-top: 1.5rem;
  list-style-type: none;
}
.au-body .health-steps__item {
  position: relative;
  margin-top: 0;
}
.au-body .health-steps__item:last-child .health-steps__item-content::before {
  display: none;
}
.au-body .health-steps__item-indicator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--step-node-size);
  height: var(--step-node-size);
  border: var(--step-border-width) solid var(--step-border-colour);
  border-radius: 100%;
}
.au-body .health-steps__item-content {
  position: relative;
  padding: 0 0 30px calc(var(--step-node-size) * 2.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  gap: 0.4rem;
}
.au-body .health-steps__item-content::before {
  content: "";
  position: absolute;
  top: calc(var(--step-node-size) + var(--step-border-width));
  bottom: calc(var(--step-border-width) * -1 - 7px);
  left: calc(var(--step-node-size) / 2 + var(--step-border-width) / 2);
  border-left: var(--step-border-width) solid var(--step-border-colour);
}
.au-body .health-steps__item-date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media (min-width: 576px) {
  .au-body .health-steps__item-date {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.au-body .health-steps__item-date {
  font-weight: normal;
}
.au-body .health-steps__item-date {
  color: var(--step-text-colour-minor);
  margin: 0;
}
.au-body .health-steps__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media (min-width: 576px) {
  .au-body .health-steps__item-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
.au-body .health-steps__item-title {
  font-weight: bold;
}
.au-body .health-steps__item-title {
  margin-top: -5px;
}
.au-body .health-steps__item-desc {
  margin: 0;
}
.au-body .health-steps--title-only .health-steps__item-title {
  margin-top: 0;
  font-size: 1rem;
}
.au-body .health-steps--numbered .health-steps__item::before, .au-body .health-steps--status .health-steps__item::before {
  position: absolute;
  font-weight: bold;
  text-align: center;
  left: 2px;
  top: calc(var(--step-node-size--value) / 6 + 1px);
  width: var(--step-node-size--value);
  height: var(--step-node-size--value);
}
.au-body .health-steps--numbered .health-steps__item-indicator::before, .au-body .health-steps--status .health-steps__item-indicator::before {
  width: var(--step-node-size--value);
  height: var(--step-node-size--value);
  z-index: 1;
}
.au-body .health-steps--numbered .health-steps__item-content, .au-body .health-steps--status .health-steps__item-content {
  padding: 8px 0 30px calc(var(--step-node-size) * 3.5);
}
.au-body .health-steps--numbered .health-steps__item-content::before, .au-body .health-steps--status .health-steps__item-content::before {
  top: calc(var(--step-node-size--value) + var(--step-border-width));
  left: calc(var(--step-node-size--value) / 2 + var(--step-border-width) / 2);
}
.au-body .health-steps--numbered[data-counter-start="1"] {
  counter-reset: number 0;
}
.au-body .health-steps--numbered[data-counter-start="2"] {
  counter-reset: number 1;
}
.au-body .health-steps--numbered[data-counter-start="3"] {
  counter-reset: number 2;
}
.au-body .health-steps--numbered[data-counter-start="4"] {
  counter-reset: number 3;
}
.au-body .health-steps--numbered[data-counter-start="5"] {
  counter-reset: number 4;
}
.au-body .health-steps--numbered[data-counter-start="6"] {
  counter-reset: number 5;
}
.au-body .health-steps--numbered[data-counter-start="7"] {
  counter-reset: number 6;
}
.au-body .health-steps--numbered[data-counter-start="8"] {
  counter-reset: number 7;
}
.au-body .health-steps--numbered[data-counter-start="9"] {
  counter-reset: number 8;
}
.au-body .health-steps--numbered[data-counter-start="10"] {
  counter-reset: number 9;
}
.au-body .health-steps--numbered[data-counter-start="11"] {
  counter-reset: number 10;
}
.au-body .health-steps--numbered[data-counter-start="12"] {
  counter-reset: number 11;
}
.au-body .health-steps--numbered[data-counter-start="13"] {
  counter-reset: number 12;
}
.au-body .health-steps--numbered[data-counter-start="14"] {
  counter-reset: number 13;
}
.au-body .health-steps--numbered[data-counter-start="15"] {
  counter-reset: number 14;
}
.au-body .health-steps--numbered[data-counter-start="16"] {
  counter-reset: number 15;
}
.au-body .health-steps--numbered[data-counter-start="17"] {
  counter-reset: number 16;
}
.au-body .health-steps--numbered[data-counter-start="18"] {
  counter-reset: number 17;
}
.au-body .health-steps--numbered[data-counter-start="19"] {
  counter-reset: number 18;
}
.au-body .health-steps--numbered[data-counter-start="20"] {
  counter-reset: number 19;
}
.au-body .health-steps--numbered .health-steps__item {
  counter-increment: number;
}
.au-body .health-steps--numbered .health-steps__item::before {
  content: counter(number);
}
.au-body .health-steps--status .health-steps__item-indicator--inprogress::before {
  border-color: var(--step-border-colour--inprogress);
}
.au-body .health-steps--status .health-steps__item-indicator--inprogress::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(var(--step-node-size--value) / 2);
  height: calc(var(--step-node-size--value) / 2);
  border-radius: 100%;
  background: var(--step-bg-colour--inprogress);
  z-index: 2;
}
.au-body .health-steps--status .health-steps__item-indicator--complete::before {
  background: var(--step-bg-colour--complete);
  border-color: var(--step-border-colour--complete);
}
.au-body .health-steps--status .health-steps__item-indicator--complete::after {
  background: white;
  content: " ";
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(var(--step-node-size--value) / 2);
  height: calc(var(--step-node-size--value) / 2);
  z-index: 2;
}

.health-sub-header {
  padding: 12px 0;
}
@media (min-width: 576px) {
  .health-sub-header {
    padding: 24px 0 40px 0;
    padding: 1.5rem 0 2.5rem 0;
  }
}
.health-sub-header.health-sub-header--dark {
  background-color: var(--subheader-gradient-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--subheader-gradient-bg--start)), to(var(--subheader-gradient-bg--end)));
  background: linear-gradient(to right, var(--subheader-gradient-bg--start), var(--subheader-gradient-bg--end));
}
.health-sub-header h1 {
  margin-top: 16px;
  margin-top: 1rem;
}
.health-sub-header .au-introduction {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media (min-width: 576px) {
  .health-sub-header .au-introduction {
    margin-top: 16px;
    margin-top: 1rem;
    margin-bottom: 16px;
    margin-bottom: 1rem;
  }
}
.health-sub-header__section-title {
  margin-bottom: 10px;
  margin-bottom: 0.65rem;
}
@media (min-width: 576px) {
  .health-sub-header__section-title {
    display: none;
  }
}
@media print {
  .health-sub-header__section-title {
    display: none;
  }
}
@media print {
  .health-sub-header__supp {
    display: none;
  }
}
@media (min-width: 576px) {
  .health-sub-header__supp--center {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.health-sub-header__supp {
  padding-top: 24px;
  padding-top: 1.5rem;
}
@media (min-width: 576px) {
  .health-sub-header__supp {
    padding-top: 0;
  }
}
.health-sub-header.health-sub-header--campaign {
  padding: 35% 0 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 576px) {
  .health-sub-header.health-sub-header--campaign {
    padding-top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: none;
    min-height: 500px;
    min-height: var(--subheader-minheight--desktop);
  }
}
.health-sub-header.health-sub-header--campaign .health-sub-header__content {
  background-color: var(--subheader-gradient-content-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--subheader-gradient-content-bg--start)), to(var(--subheader-gradient-content-bg--end)));
  background: linear-gradient(to right, var(--subheader-gradient-content-bg--start), var(--subheader-gradient-content-bg--end));
  padding: 24px 18px;
  padding: 1.5rem 18px;
}
@media (min-width: 576px) {
  .health-sub-header.health-sub-header--campaign .health-sub-header__content {
    border-radius: 6px;
    padding: 48px;
    padding: 3rem;
  }
}

.health-sub-nav {
  display: none;
}
@media (min-width: 768px) {
  .health-sub-nav {
    display: block;
  }
  .health-sub-nav .au-link-list.au-link-list--inline {
    display: block;
  }
}
@media print {
  .health-sub-nav {
    display: none;
  }
}

table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  min-width: 43em;
}
@media (min-width: 576px) {
  table {
    min-width: inherit;
  }
}
* + table, * + .health-table__responsive table {
  margin-top: 24px;
  margin-top: 1.5rem;
}
table caption {
  text-align: left;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
table tr:nth-child(even) {
  background-color: #ffffff;
}
table.table__no-banding tr:nth-child(even) {
  background-color: transparent;
}
table td,
table th {
  border-bottom: 1px solid #ccc;
  padding: 4px;
  padding: 0.25rem;
  text-align: left;
  vertical-align: top;
}
@media (min-width: 768px) {
  table td,
  table th {
    padding: 8px;
    padding: 0.5rem;
    font-size: initial;
  }
}
table th {
  background-color: #f8f8f8;
}
table thead {
  border-bottom: 1px solid #ccc;
}
@media print {
  table td,
  table th,
  table thead {
    border-color: #000 !important;
    background: #fff !important;
  }
}

.health-table__responsive {
  overflow: scroll;
}
@media (min-width: 768px) {
  .health-table__responsive {
    overflow: auto;
  }
}
@media print {
  .health-table__responsive {
    overflow: visible;
  }
  .health-table__responsive table {
    min-width: inherit;
  }
}

.au-body .health-tabs-wrapper {
  white-space: nowrap;
}
.au-body .health-tabs-wrapper-inner {
  overflow-x: scroll;
  max-width: 100%;
}
.au-body .health-tabs {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #cdcdcd;
}
.au-body .health-tabs li {
  margin: 16px 24px 0 4px;
  margin: 1rem 1.5rem 0 4px;
  padding: 0;
}
.au-body .health-tabs li:first-of-type {
  margin-left: 0;
}
.au-body .health-tabs li a {
  float: none;
  display: inline-block;
  color: #464646;
  background-color: white;
  text-decoration: none;
  border-bottom: 4px solid transparent;
  padding: 8px 0;
  padding: 0.5rem 0;
}
@media (min-width: 576px) {
  .au-body .health-tabs li a {
    padding: 12px 0;
    padding: 0.75rem 0;
  }
}
.au-body .health-tabs li a:hover {
  background-color: white;
}
.au-body .health-tabs li a:hover, .au-body .health-tabs li a:active {
  border-bottom-color: var(--tab-border--active);
}
.au-body .health-tabs li.active {
  font-weight: bold;
}
.au-body .health-tabs li.active a {
  border-bottom-color: var(--tab-border--active);
}

.not-full-width .health-tabs {
  margin-top: 0;
}

@media print {
  .health-tabs {
    display: none;
  }
}
.taskbar,
.taskbar--6,
.taskbar--tiled--6,
.taskbar--5,
.taskbar--tiled--5,
.taskbar--4,
.taskbar--tiled--4,
.taskbar--3,
.taskbar--tiled--3,
.taskbar--2,
.taskbar--tiled--2 {
  color: #000;
}
.taskbar:before, .taskbar:after,
.taskbar--6:before,
.taskbar--tiled--6:before,
.taskbar--5:before,
.taskbar--tiled--5:before,
.taskbar--4:before,
.taskbar--tiled--4:before,
.taskbar--3:before,
.taskbar--tiled--3:before,
.taskbar--2:before,
.taskbar--tiled--2:before,
.taskbar--6:after,
.taskbar--tiled--6:after,
.taskbar--5:after,
.taskbar--tiled--5:after,
.taskbar--4:after,
.taskbar--tiled--4:after,
.taskbar--3:after,
.taskbar--tiled--3:after,
.taskbar--2:after,
.taskbar--tiled--2:after {
  content: " ";
  display: table;
}
.taskbar:after,
.taskbar--6:after,
.taskbar--tiled--6:after,
.taskbar--5:after,
.taskbar--tiled--5:after,
.taskbar--4:after,
.taskbar--tiled--4:after,
.taskbar--3:after,
.taskbar--tiled--3:after,
.taskbar--2:after,
.taskbar--tiled--2:after {
  clear: both;
}
.taskbar ul,
.taskbar--6 ul,
.taskbar--tiled--6 ul,
.taskbar--5 ul,
.taskbar--tiled--5 ul,
.taskbar--4 ul,
.taskbar--tiled--4 ul,
.taskbar--3 ul,
.taskbar--tiled--3 ul,
.taskbar--2 ul,
.taskbar--tiled--2 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.taskbar ul > li,
.taskbar--6 ul > li,
.taskbar--tiled--6 ul > li,
.taskbar--5 ul > li,
.taskbar--tiled--5 ul > li,
.taskbar--4 ul > li,
.taskbar--tiled--4 ul > li,
.taskbar--3 ul > li,
.taskbar--tiled--3 ul > li,
.taskbar--2 ul > li,
.taskbar--tiled--2 ul > li {
  display: inline;
  float: left;
  text-align: center;
  margin-bottom: 0;
}
.taskbar ul > li .taskbar__item:last,
.taskbar--6 ul > li .taskbar__item:last,
.taskbar--tiled--6 ul > li .taskbar__item:last,
.taskbar--5 ul > li .taskbar__item:last,
.taskbar--tiled--5 ul > li .taskbar__item:last,
.taskbar--4 ul > li .taskbar__item:last,
.taskbar--tiled--4 ul > li .taskbar__item:last,
.taskbar--3 ul > li .taskbar__item:last,
.taskbar--tiled--3 ul > li .taskbar__item:last,
.taskbar--2 ul > li .taskbar__item:last,
.taskbar--tiled--2 ul > li .taskbar__item:last {
  margin-right: 0;
}
.taskbar .taskbar__item,
.taskbar.view ul > .views-row .node,
.taskbar .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar .node,
.taskbar .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar .node,
.taskbar .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar .node,
.taskbar .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar .node,
.taskbar .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar .node,
.taskbar--6 .taskbar__item,
.taskbar--tiled--6 .taskbar__item,
.taskbar--5 .taskbar__item,
.taskbar--tiled--5 .taskbar__item,
.taskbar--4 .taskbar__item,
.taskbar--tiled--4 .taskbar__item,
.taskbar--3 .taskbar__item,
.taskbar--tiled--3 .taskbar__item,
.taskbar--2 .taskbar__item,
.taskbar--tiled--2 .taskbar__item,
.taskbar--6 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--6 .node,
.taskbar--6 .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar--6 .node,
.taskbar--6 .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar--6 .node,
.taskbar--6 .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar--6 .node,
.taskbar--6 .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar--6 .node,
.taskbar--6 .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar--6 .node,
.taskbar--tiled--6 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--tiled--6 .node,
.taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--6 .node,
.taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--6 .node,
.taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--6 .node,
.taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--6 .node,
.taskbar--tiled--6.view ul > .views-row .node,
.taskbar--5 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--5 .node,
.taskbar--5 .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar--5 .node,
.taskbar--5 .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar--5 .node,
.taskbar--5 .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar--5 .node,
.taskbar--5 .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar--5 .node,
.taskbar--5 .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar--5 .node,
.taskbar--tiled--5 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--tiled--5 .node,
.taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--5 .node,
.taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--5 .node,
.taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--5 .node,
.taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--5 .node,
.taskbar--4 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--4 .node,
.taskbar--4 .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar--4 .node,
.taskbar--4 .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar--4 .node,
.taskbar--4 .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar--4 .node,
.taskbar--4 .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar--4 .node,
.taskbar--4 .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar--4 .node,
.taskbar--tiled--4 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--tiled--4 .node,
.taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--4 .node,
.taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--4 .node,
.taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--4 .node,
.taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--4 .node,
.taskbar--3 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--3 .node,
.taskbar--3 .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar--3 .node,
.taskbar--3 .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar--3 .node,
.taskbar--3 .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar--3 .node,
.taskbar--3 .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar--3 .node,
.taskbar--3 .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar--3 .node,
.taskbar--tiled--3 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--tiled--3 .node,
.taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--3 .node,
.taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--3 .node,
.taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--3 .node,
.taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--3 .node,
.taskbar--2 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--2 .node,
.taskbar--2 .taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2.view ul > .views-row .taskbar--2 .node,
.taskbar--2 .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar--2 .node,
.taskbar--2 .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar--2 .node,
.taskbar--2 .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar--2 .node,
.taskbar--2 .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar--2 .node,
.taskbar--tiled--2 .taskbar.view ul > .views-row .node,
.taskbar.view ul > .views-row .taskbar--tiled--2 .node,
.taskbar--tiled--2.view ul > .views-row .node,
.taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .node,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--2 .node,
.taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .node,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--2 .node,
.taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .node,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--2 .node,
.taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .node,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--2 .node {
  padding: 16px;
  padding: 1rem;
  margin: 0 3px 3px 0;
  display: block;
  border: 0;
  min-height: 0;
  background-color: var(--subheader-gradient-bg--start);
  background: -webkit-gradient(linear, left top, right top, from(var(--subheader-gradient-bg--start)), to(var(--subheader-gradient-end)));
  background: linear-gradient(to right, var(--subheader-gradient-bg--start), var(--subheader-gradient-end));
}
@media (min-width: 0) {
  .taskbar .taskbar__item,
  .taskbar.view ul > .views-row .node,
  .taskbar .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar .node,
  .taskbar .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar .node,
  .taskbar .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar .node,
  .taskbar .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar .node,
  .taskbar .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar .node,
  .taskbar--6 .taskbar__item,
  .taskbar--tiled--6 .taskbar__item,
  .taskbar--5 .taskbar__item,
  .taskbar--tiled--5 .taskbar__item,
  .taskbar--4 .taskbar__item,
  .taskbar--tiled--4 .taskbar__item,
  .taskbar--3 .taskbar__item,
  .taskbar--tiled--3 .taskbar__item,
  .taskbar--2 .taskbar__item,
  .taskbar--tiled--2 .taskbar__item,
  .taskbar--6 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--6 .node,
  .taskbar--6 .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar--6 .node,
  .taskbar--6 .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar--6 .node,
  .taskbar--6 .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar--6 .node,
  .taskbar--6 .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar--6 .node,
  .taskbar--6 .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar--6 .node,
  .taskbar--tiled--6 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--tiled--6 .node,
  .taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar--tiled--6 .node,
  .taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar--tiled--6 .node,
  .taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar--tiled--6 .node,
  .taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar--tiled--6 .node,
  .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--5 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--5 .node,
  .taskbar--5 .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar--5 .node,
  .taskbar--5 .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar--5 .node,
  .taskbar--5 .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar--5 .node,
  .taskbar--5 .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar--5 .node,
  .taskbar--5 .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar--5 .node,
  .taskbar--tiled--5 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--tiled--5 .node,
  .taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar--tiled--5 .node,
  .taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar--tiled--5 .node,
  .taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar--tiled--5 .node,
  .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar--tiled--5 .node,
  .taskbar--4 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--4 .node,
  .taskbar--4 .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar--4 .node,
  .taskbar--4 .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar--4 .node,
  .taskbar--4 .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar--4 .node,
  .taskbar--4 .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar--4 .node,
  .taskbar--4 .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar--4 .node,
  .taskbar--tiled--4 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--tiled--4 .node,
  .taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar--tiled--4 .node,
  .taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar--tiled--4 .node,
  .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar--tiled--4 .node,
  .taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar--tiled--4 .node,
  .taskbar--3 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--3 .node,
  .taskbar--3 .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar--3 .node,
  .taskbar--3 .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar--3 .node,
  .taskbar--3 .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar--3 .node,
  .taskbar--3 .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar--3 .node,
  .taskbar--3 .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar--3 .node,
  .taskbar--tiled--3 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--tiled--3 .node,
  .taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar--tiled--3 .node,
  .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar--tiled--3 .node,
  .taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar--tiled--3 .node,
  .taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar--tiled--3 .node,
  .taskbar--2 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--2 .node,
  .taskbar--2 .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2.view ul > .views-row .taskbar--2 .node,
  .taskbar--2 .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar--2 .node,
  .taskbar--2 .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar--2 .node,
  .taskbar--2 .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar--2 .node,
  .taskbar--2 .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar--2 .node,
  .taskbar--tiled--2 .taskbar.view ul > .views-row .node,
  .taskbar.view ul > .views-row .taskbar--tiled--2 .node,
  .taskbar--tiled--2.view ul > .views-row .node,
  .taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .node,
  .taskbar--tiled--3.view ul > .views-row .taskbar--tiled--2 .node,
  .taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .node,
  .taskbar--tiled--4.view ul > .views-row .taskbar--tiled--2 .node,
  .taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .node,
  .taskbar--tiled--5.view ul > .views-row .taskbar--tiled--2 .node,
  .taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .node,
  .taskbar--tiled--6.view ul > .views-row .taskbar--tiled--2 .node {
    min-height: 200px;
  }
}
.taskbar .taskbar__item:hover, .taskbar .taskbar__item:active, .taskbar .taskbar__item:focus,
.taskbar.view ul > .views-row .node:hover,
.taskbar .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar .node:hover,
.taskbar .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar .node:hover,
.taskbar .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar .node:hover,
.taskbar .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar .node:hover,
.taskbar .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar .node:hover,
.taskbar.view ul > .views-row .node:active,
.taskbar .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar .node:active,
.taskbar .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar .node:active,
.taskbar .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar .node:active,
.taskbar .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar .node:active,
.taskbar .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar .node:active,
.taskbar.view ul > .views-row .node:focus,
.taskbar .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar .node:focus,
.taskbar .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar .node:focus,
.taskbar .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar .node:focus,
.taskbar .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar .node:focus,
.taskbar .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar .node:focus,
.taskbar--6 .taskbar__item:hover,
.taskbar--tiled--6 .taskbar__item:hover,
.taskbar--5 .taskbar__item:hover,
.taskbar--tiled--5 .taskbar__item:hover,
.taskbar--4 .taskbar__item:hover,
.taskbar--tiled--4 .taskbar__item:hover,
.taskbar--3 .taskbar__item:hover,
.taskbar--tiled--3 .taskbar__item:hover,
.taskbar--2 .taskbar__item:hover,
.taskbar--tiled--2 .taskbar__item:hover,
.taskbar--6 .taskbar__item:active,
.taskbar--tiled--6 .taskbar__item:active,
.taskbar--5 .taskbar__item:active,
.taskbar--tiled--5 .taskbar__item:active,
.taskbar--4 .taskbar__item:active,
.taskbar--tiled--4 .taskbar__item:active,
.taskbar--3 .taskbar__item:active,
.taskbar--tiled--3 .taskbar__item:active,
.taskbar--2 .taskbar__item:active,
.taskbar--tiled--2 .taskbar__item:active,
.taskbar--6 .taskbar__item:focus,
.taskbar--tiled--6 .taskbar__item:focus,
.taskbar--5 .taskbar__item:focus,
.taskbar--tiled--5 .taskbar__item:focus,
.taskbar--4 .taskbar__item:focus,
.taskbar--tiled--4 .taskbar__item:focus,
.taskbar--3 .taskbar__item:focus,
.taskbar--tiled--3 .taskbar__item:focus,
.taskbar--2 .taskbar__item:focus,
.taskbar--tiled--2 .taskbar__item:focus,
.taskbar--6 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--6 .node:hover,
.taskbar--6 .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar--6 .node:hover,
.taskbar--6 .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar--6 .node:hover,
.taskbar--6 .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar--6 .node:hover,
.taskbar--6 .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar--6 .node:hover,
.taskbar--6 .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar--6 .node:hover,
.taskbar--tiled--6 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--tiled--6 .node:hover,
.taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--6 .node:hover,
.taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--6 .node:hover,
.taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--6 .node:hover,
.taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--6 .node:hover,
.taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--5 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--5 .node:hover,
.taskbar--5 .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar--5 .node:hover,
.taskbar--5 .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar--5 .node:hover,
.taskbar--5 .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar--5 .node:hover,
.taskbar--5 .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar--5 .node:hover,
.taskbar--5 .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar--5 .node:hover,
.taskbar--tiled--5 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--tiled--5 .node:hover,
.taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--5 .node:hover,
.taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--5 .node:hover,
.taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--5 .node:hover,
.taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--5 .node:hover,
.taskbar--4 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--4 .node:hover,
.taskbar--4 .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar--4 .node:hover,
.taskbar--4 .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar--4 .node:hover,
.taskbar--4 .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar--4 .node:hover,
.taskbar--4 .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar--4 .node:hover,
.taskbar--4 .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar--4 .node:hover,
.taskbar--tiled--4 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--tiled--4 .node:hover,
.taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--4 .node:hover,
.taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--4 .node:hover,
.taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--4 .node:hover,
.taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--4 .node:hover,
.taskbar--3 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--3 .node:hover,
.taskbar--3 .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar--3 .node:hover,
.taskbar--3 .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar--3 .node:hover,
.taskbar--3 .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar--3 .node:hover,
.taskbar--3 .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar--3 .node:hover,
.taskbar--3 .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar--3 .node:hover,
.taskbar--tiled--3 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--tiled--3 .node:hover,
.taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--3 .node:hover,
.taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--3 .node:hover,
.taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--3 .node:hover,
.taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--3 .node:hover,
.taskbar--2 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--2 .node:hover,
.taskbar--2 .taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2.view ul > .views-row .taskbar--2 .node:hover,
.taskbar--2 .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar--2 .node:hover,
.taskbar--2 .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar--2 .node:hover,
.taskbar--2 .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar--2 .node:hover,
.taskbar--2 .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar--2 .node:hover,
.taskbar--tiled--2 .taskbar.view ul > .views-row .node:hover,
.taskbar.view ul > .views-row .taskbar--tiled--2 .node:hover,
.taskbar--tiled--2.view ul > .views-row .node:hover,
.taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .node:hover,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--2 .node:hover,
.taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .node:hover,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--2 .node:hover,
.taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .node:hover,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--2 .node:hover,
.taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .node:hover,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--2 .node:hover,
.taskbar--6 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--6 .node:active,
.taskbar--6 .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar--6 .node:active,
.taskbar--6 .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar--6 .node:active,
.taskbar--6 .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar--6 .node:active,
.taskbar--6 .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar--6 .node:active,
.taskbar--6 .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar--6 .node:active,
.taskbar--tiled--6 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--tiled--6 .node:active,
.taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--6 .node:active,
.taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--6 .node:active,
.taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--6 .node:active,
.taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--6 .node:active,
.taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--5 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--5 .node:active,
.taskbar--5 .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar--5 .node:active,
.taskbar--5 .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar--5 .node:active,
.taskbar--5 .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar--5 .node:active,
.taskbar--5 .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar--5 .node:active,
.taskbar--5 .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar--5 .node:active,
.taskbar--tiled--5 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--tiled--5 .node:active,
.taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--5 .node:active,
.taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--5 .node:active,
.taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--5 .node:active,
.taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--5 .node:active,
.taskbar--4 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--4 .node:active,
.taskbar--4 .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar--4 .node:active,
.taskbar--4 .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar--4 .node:active,
.taskbar--4 .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar--4 .node:active,
.taskbar--4 .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar--4 .node:active,
.taskbar--4 .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar--4 .node:active,
.taskbar--tiled--4 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--tiled--4 .node:active,
.taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--4 .node:active,
.taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--4 .node:active,
.taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--4 .node:active,
.taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--4 .node:active,
.taskbar--3 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--3 .node:active,
.taskbar--3 .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar--3 .node:active,
.taskbar--3 .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar--3 .node:active,
.taskbar--3 .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar--3 .node:active,
.taskbar--3 .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar--3 .node:active,
.taskbar--3 .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar--3 .node:active,
.taskbar--tiled--3 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--tiled--3 .node:active,
.taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--3 .node:active,
.taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--3 .node:active,
.taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--3 .node:active,
.taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--3 .node:active,
.taskbar--2 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--2 .node:active,
.taskbar--2 .taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2.view ul > .views-row .taskbar--2 .node:active,
.taskbar--2 .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar--2 .node:active,
.taskbar--2 .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar--2 .node:active,
.taskbar--2 .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar--2 .node:active,
.taskbar--2 .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar--2 .node:active,
.taskbar--tiled--2 .taskbar.view ul > .views-row .node:active,
.taskbar.view ul > .views-row .taskbar--tiled--2 .node:active,
.taskbar--tiled--2.view ul > .views-row .node:active,
.taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .node:active,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--2 .node:active,
.taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .node:active,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--2 .node:active,
.taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .node:active,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--2 .node:active,
.taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .node:active,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--2 .node:active,
.taskbar--6 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--6 .node:focus,
.taskbar--6 .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar--6 .node:focus,
.taskbar--6 .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar--6 .node:focus,
.taskbar--6 .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar--6 .node:focus,
.taskbar--6 .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar--6 .node:focus,
.taskbar--6 .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar--6 .node:focus,
.taskbar--tiled--6 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--tiled--6 .node:focus,
.taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--6 .node:focus,
.taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--6 .node:focus,
.taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--6 .node:focus,
.taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--6 .node:focus,
.taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--5 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--5 .node:focus,
.taskbar--5 .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar--5 .node:focus,
.taskbar--5 .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar--5 .node:focus,
.taskbar--5 .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar--5 .node:focus,
.taskbar--5 .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar--5 .node:focus,
.taskbar--5 .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar--5 .node:focus,
.taskbar--tiled--5 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--tiled--5 .node:focus,
.taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--5 .node:focus,
.taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--5 .node:focus,
.taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--5 .node:focus,
.taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--5 .node:focus,
.taskbar--4 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--4 .node:focus,
.taskbar--4 .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar--4 .node:focus,
.taskbar--4 .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar--4 .node:focus,
.taskbar--4 .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar--4 .node:focus,
.taskbar--4 .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar--4 .node:focus,
.taskbar--4 .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar--4 .node:focus,
.taskbar--tiled--4 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--tiled--4 .node:focus,
.taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--4 .node:focus,
.taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--4 .node:focus,
.taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--4 .node:focus,
.taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--4 .node:focus,
.taskbar--3 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--3 .node:focus,
.taskbar--3 .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar--3 .node:focus,
.taskbar--3 .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar--3 .node:focus,
.taskbar--3 .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar--3 .node:focus,
.taskbar--3 .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar--3 .node:focus,
.taskbar--3 .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar--3 .node:focus,
.taskbar--tiled--3 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--tiled--3 .node:focus,
.taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--3 .node:focus,
.taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--3 .node:focus,
.taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--3 .node:focus,
.taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--3 .node:focus,
.taskbar--2 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--2 .node:focus,
.taskbar--2 .taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2.view ul > .views-row .taskbar--2 .node:focus,
.taskbar--2 .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar--2 .node:focus,
.taskbar--2 .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar--2 .node:focus,
.taskbar--2 .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar--2 .node:focus,
.taskbar--2 .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar--2 .node:focus,
.taskbar--tiled--2 .taskbar.view ul > .views-row .node:focus,
.taskbar.view ul > .views-row .taskbar--tiled--2 .node:focus,
.taskbar--tiled--2.view ul > .views-row .node:focus,
.taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .node:focus,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--2 .node:focus,
.taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .node:focus,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--2 .node:focus,
.taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .node:focus,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--2 .node:focus,
.taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .node:focus,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--2 .node:focus {
  background-color: #002058;
}
.taskbar .taskbar__img,
.taskbar.view ul > .views-row .field-name-field-image,
.taskbar .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar .field-name-field-image,
.taskbar .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar .field-name-field-image,
.taskbar .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar .field-name-field-image,
.taskbar .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar .field-name-field-image,
.taskbar .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar .field-name-field-image,
.taskbar--6 .taskbar__img,
.taskbar--tiled--6 .taskbar__img,
.taskbar--5 .taskbar__img,
.taskbar--tiled--5 .taskbar__img,
.taskbar--4 .taskbar__img,
.taskbar--tiled--4 .taskbar__img,
.taskbar--3 .taskbar__img,
.taskbar--tiled--3 .taskbar__img,
.taskbar--2 .taskbar__img,
.taskbar--tiled--2 .taskbar__img,
.taskbar--6 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--6 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--6 .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--5 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--5 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--5 .field-name-field-image,
.taskbar--tiled--5 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--5 .field-name-field-image,
.taskbar--4 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--4 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--4 .field-name-field-image,
.taskbar--tiled--4 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--4 .field-name-field-image,
.taskbar--3 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--3 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--3 .field-name-field-image,
.taskbar--tiled--3 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--3 .field-name-field-image,
.taskbar--2 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--2 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--2 .field-name-field-image,
.taskbar--tiled--2 .taskbar.view ul > .views-row .field-name-field-image,
.taskbar.view ul > .views-row .taskbar--tiled--2 .field-name-field-image,
.taskbar--tiled--2.view ul > .views-row .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .field-name-field-image,
.taskbar--tiled--3.view ul > .views-row .taskbar--tiled--2 .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .field-name-field-image,
.taskbar--tiled--4.view ul > .views-row .taskbar--tiled--2 .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .field-name-field-image,
.taskbar--tiled--5.view ul > .views-row .taskbar--tiled--2 .field-name-field-image,
.taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .field-name-field-image,
.taskbar--tiled--6.view ul > .views-row .taskbar--tiled--2 .field-name-field-image {
  border: 0;
}
.taskbar .taskbar__title,
.taskbar.view ul > .views-row .field-name-title a,
.taskbar .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar a,
.taskbar .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar a,
.taskbar .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar a,
.taskbar .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar a,
.taskbar .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar a,
.taskbar--6 .taskbar__title,
.taskbar--tiled--6 .taskbar__title,
.taskbar--5 .taskbar__title,
.taskbar--tiled--5 .taskbar__title,
.taskbar--4 .taskbar__title,
.taskbar--tiled--4 .taskbar__title,
.taskbar--3 .taskbar__title,
.taskbar--tiled--3 .taskbar__title,
.taskbar--2 .taskbar__title,
.taskbar--tiled--2 .taskbar__title,
.taskbar--6 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--6 a,
.taskbar--6 .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar--6 a,
.taskbar--6 .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar--6 a,
.taskbar--6 .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar--6 a,
.taskbar--6 .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar--6 a,
.taskbar--6 .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar--6 a,
.taskbar--tiled--6 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--tiled--6 a,
.taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar--tiled--6 a,
.taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar--tiled--6 a,
.taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar--tiled--6 a,
.taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar--tiled--6 a,
.taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--5 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--5 a,
.taskbar--5 .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar--5 a,
.taskbar--5 .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar--5 a,
.taskbar--5 .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar--5 a,
.taskbar--5 .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar--5 a,
.taskbar--5 .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar--5 a,
.taskbar--tiled--5 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--tiled--5 a,
.taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar--tiled--5 a,
.taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar--tiled--5 a,
.taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar--tiled--5 a,
.taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar--tiled--5 a,
.taskbar--4 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--4 a,
.taskbar--4 .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar--4 a,
.taskbar--4 .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar--4 a,
.taskbar--4 .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar--4 a,
.taskbar--4 .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar--4 a,
.taskbar--4 .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar--4 a,
.taskbar--tiled--4 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--tiled--4 a,
.taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar--tiled--4 a,
.taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar--tiled--4 a,
.taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar--tiled--4 a,
.taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar--tiled--4 a,
.taskbar--3 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--3 a,
.taskbar--3 .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar--3 a,
.taskbar--3 .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar--3 a,
.taskbar--3 .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar--3 a,
.taskbar--3 .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar--3 a,
.taskbar--3 .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar--3 a,
.taskbar--tiled--3 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--tiled--3 a,
.taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar--tiled--3 a,
.taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar--tiled--3 a,
.taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar--tiled--3 a,
.taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar--tiled--3 a,
.taskbar--2 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--2 a,
.taskbar--2 .taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2.view ul > .views-row .field-name-title .taskbar--2 a,
.taskbar--2 .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar--2 a,
.taskbar--2 .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar--2 a,
.taskbar--2 .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar--2 a,
.taskbar--2 .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar--2 a,
.taskbar--tiled--2 .taskbar.view ul > .views-row .field-name-title a,
.taskbar.view ul > .views-row .field-name-title .taskbar--tiled--2 a,
.taskbar--tiled--2.view ul > .views-row .field-name-title a,
.taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .field-name-title a,
.taskbar--tiled--3.view ul > .views-row .field-name-title .taskbar--tiled--2 a,
.taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .field-name-title a,
.taskbar--tiled--4.view ul > .views-row .field-name-title .taskbar--tiled--2 a,
.taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .field-name-title a,
.taskbar--tiled--5.view ul > .views-row .field-name-title .taskbar--tiled--2 a,
.taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .field-name-title a,
.taskbar--tiled--6.view ul > .views-row .field-name-title .taskbar--tiled--2 a {
  font-size: 20px;
  line-height: 24px;
}
.taskbar .taskbar__desc,
.taskbar.view ul > .views-row .field-name-body p,
.taskbar .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar p,
.taskbar .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar p,
.taskbar .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar p,
.taskbar .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar p,
.taskbar .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar p,
.taskbar--6 .taskbar__desc,
.taskbar--tiled--6 .taskbar__desc,
.taskbar--5 .taskbar__desc,
.taskbar--tiled--5 .taskbar__desc,
.taskbar--4 .taskbar__desc,
.taskbar--tiled--4 .taskbar__desc,
.taskbar--3 .taskbar__desc,
.taskbar--tiled--3 .taskbar__desc,
.taskbar--2 .taskbar__desc,
.taskbar--tiled--2 .taskbar__desc,
.taskbar--6 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--6 p,
.taskbar--6 .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar--6 p,
.taskbar--6 .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar--6 p,
.taskbar--6 .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar--6 p,
.taskbar--6 .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar--6 p,
.taskbar--6 .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar--6 p,
.taskbar--tiled--6 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--tiled--6 p,
.taskbar--tiled--6 .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar--tiled--6 p,
.taskbar--tiled--6 .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar--tiled--6 p,
.taskbar--tiled--6 .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar--tiled--6 p,
.taskbar--tiled--6 .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar--tiled--6 p,
.taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--5 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--5 p,
.taskbar--5 .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar--5 p,
.taskbar--5 .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar--5 p,
.taskbar--5 .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar--5 p,
.taskbar--5 .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar--5 p,
.taskbar--5 .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar--5 p,
.taskbar--tiled--5 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--tiled--5 p,
.taskbar--tiled--5 .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar--tiled--5 p,
.taskbar--tiled--5 .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar--tiled--5 p,
.taskbar--tiled--5 .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar--tiled--5 p,
.taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5 .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar--tiled--5 p,
.taskbar--4 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--4 p,
.taskbar--4 .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar--4 p,
.taskbar--4 .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar--4 p,
.taskbar--4 .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar--4 p,
.taskbar--4 .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar--4 p,
.taskbar--4 .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar--4 p,
.taskbar--tiled--4 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--tiled--4 p,
.taskbar--tiled--4 .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar--tiled--4 p,
.taskbar--tiled--4 .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar--tiled--4 p,
.taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4 .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar--tiled--4 p,
.taskbar--tiled--4 .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar--tiled--4 p,
.taskbar--3 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--3 p,
.taskbar--3 .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar--3 p,
.taskbar--3 .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar--3 p,
.taskbar--3 .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar--3 p,
.taskbar--3 .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar--3 p,
.taskbar--3 .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar--3 p,
.taskbar--tiled--3 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--tiled--3 p,
.taskbar--tiled--3 .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar--tiled--3 p,
.taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3 .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar--tiled--3 p,
.taskbar--tiled--3 .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar--tiled--3 p,
.taskbar--tiled--3 .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar--tiled--3 p,
.taskbar--2 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--2 p,
.taskbar--2 .taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2.view ul > .views-row .field-name-body .taskbar--2 p,
.taskbar--2 .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar--2 p,
.taskbar--2 .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar--2 p,
.taskbar--2 .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar--2 p,
.taskbar--2 .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar--2 p,
.taskbar--tiled--2 .taskbar.view ul > .views-row .field-name-body p,
.taskbar.view ul > .views-row .field-name-body .taskbar--tiled--2 p,
.taskbar--tiled--2.view ul > .views-row .field-name-body p,
.taskbar--tiled--2 .taskbar--tiled--3.view ul > .views-row .field-name-body p,
.taskbar--tiled--3.view ul > .views-row .field-name-body .taskbar--tiled--2 p,
.taskbar--tiled--2 .taskbar--tiled--4.view ul > .views-row .field-name-body p,
.taskbar--tiled--4.view ul > .views-row .field-name-body .taskbar--tiled--2 p,
.taskbar--tiled--2 .taskbar--tiled--5.view ul > .views-row .field-name-body p,
.taskbar--tiled--5.view ul > .views-row .field-name-body .taskbar--tiled--2 p,
.taskbar--tiled--2 .taskbar--tiled--6.view ul > .views-row .field-name-body p,
.taskbar--tiled--6.view ul > .views-row .field-name-body .taskbar--tiled--2 p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: -10px;
}

.taskbar--tiled--2 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--tiled--2 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--tiled--2 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--tiled--2 ul > li {
    width: 50%;
  }
}

.taskbar--2 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--2 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--2 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--2 ul > li {
    width: 50%;
  }
}
.taskbar--2 .taskbar__item {
  margin: 0;
  background-color: transparent;
}

.taskbar--tiled--3 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--tiled--3 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--tiled--3 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--tiled--3 ul > li {
    width: 33.3333333333%;
  }
}

.taskbar--3 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--3 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--3 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--3 ul > li {
    width: 33.3333333333%;
  }
}
.taskbar--3 .taskbar__item {
  margin: 0;
  background-color: transparent;
}

.taskbar--tiled--4 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--tiled--4 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--tiled--4 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--tiled--4 ul > li {
    width: 25%;
  }
}

.taskbar--4 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--4 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--4 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--4 ul > li {
    width: 25%;
  }
}
.taskbar--4 .taskbar__item {
  margin: 0;
  background-color: transparent;
}

.taskbar--tiled--5 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--tiled--5 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--tiled--5 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--tiled--5 ul > li {
    width: 20%;
  }
}

.taskbar--5 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--5 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--5 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--5 ul > li {
    width: 20%;
  }
}
.taskbar--5 .taskbar__item {
  margin: 0;
  background-color: transparent;
}

.taskbar--tiled--6 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--tiled--6 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--tiled--6 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--tiled--6 ul > li {
    width: 16.6666666667%;
  }
}

.taskbar--6 ul > li {
  width: 100%;
}
@media (min-width: 0) {
  .taskbar--6 ul > li {
    width: 50%;
  }
}
@media (min-width: 576px) {
  .taskbar--6 ul > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .taskbar--6 ul > li {
    width: 16.6666666667%;
  }
}
.taskbar--6 .taskbar__item {
  margin: 0;
  background-color: transparent;
}

.taskbar.view ul > .views-row,
.taskbar--tiled--2.view ul > .views-row,
.taskbar--tiled--3.view ul > .views-row,
.taskbar--tiled--4.view ul > .views-row,
.taskbar--tiled--5.view ul > .views-row,
.taskbar--tiled--6.view ul > .views-row {
  margin: 0;
}
.taskbar.view ul > .views-row:hover,
.taskbar--tiled--2.view ul > .views-row:hover,
.taskbar--tiled--3.view ul > .views-row:hover,
.taskbar--tiled--4.view ul > .views-row:hover,
.taskbar--tiled--5.view ul > .views-row:hover,
.taskbar--tiled--6.view ul > .views-row:hover {
  cursor: pointer;
}
.health-toolbar {
  margin-top: 16px;
  margin-top: 1rem;
}
@media (min-width: 576px) {
  .health-toolbar {
    margin-top: 0;
  }
}
.health-toolbar__items > li {
  margin: 0;
  float: left;
  display: block;
}
.health-toolbar__items > li .au-btn {
  margin-bottom: 0;
}
@media print {
  .health-toolbar {
    display: none;
  }
}
.health-toolbar #health-share-menu {
  display: none;
}
.health-toolbar .health-tooltip--active #health-share-menu,
.health-toolbar .health-tooltip--active .health-share-menu {
  display: block;
}
.health-toolbar .health-tooltip--active #health-share-menu a,
.health-toolbar .health-tooltip--active .health-share-menu a {
  color: #006FB0;
}
.health-toolbar .health-tooltip--active #health-share-menu a:hover,
.health-toolbar .health-tooltip--active .health-share-menu a:hover {
  color: #006FB0;
  text-decoration: none;
}

.health-tooltip-theme,
.health-tooltip {
  background-color: #fff;
  border: 3px solid #ccc;
  border-color: #58585b;
  -webkit-box-shadow: 0px 0px 35px -7px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 35px -7px rgba(0, 0, 0, 0.5);
  color: #313131;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 0.8125rem;
  gap: 0.5rem;
  left: 0;
  margin: 0;
  max-width: 100vw;
  opacity: 0;
  position: fixed;
  text-align: left;
  top: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  padding: 0.5rem;
}

.health-tooltip__arrow {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  display: none;
  height: 0;
  position: absolute;
  width: 0;
}

.health-tooltip__arrow--top {
  border-top: 10px solid #58585b;
  bottom: -10px;
  display: inline-block;
}

.health-tooltip__arrow--bottom {
  border-bottom: 10px solid #58585b;
  display: inline-block;
  top: -10px;
}

.health-tooltip__button {
  background-color: transparent;
  border-radius: 50%;
  border-style: none;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5rem;
          flex: 0 0 1.5rem;
  height: 1.5rem;
  padding: 0;
  width: 1.5rem;
}

.health-tooltip__button--close {
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.health-tooltip__button--close::after,
.health-tooltip__button--close::before {
  background-color: #fff;
  content: "";
  height: 12px;
  position: absolute;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  width: 2px;
}

.health-tooltip__button--close::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.health-tooltip__button--close::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.health-tooltip__button:hover,
.health-tooltip__button:active {
  background-color: #A2AAAD;
}

.health-tooltip__content {
  line-height: 1.25rem;
  max-width: 40rem;
  padding: 0;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.health-tooltip--active {
  opacity: 1;
}

* + .health-video {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.health-video__transcript {
  margin-top: 12px;
  margin-top: 0.75rem;
  border: 0;
}
.health-video__preview {
  position: relative;
  line-height: 0;
}
.health-video__preview .health-video__preview__play-button {
  display: block;
  position: absolute;
  font-size: 6em;
  opacity: 0.8;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.health-video__preview .health-video__preview__play-button svg {
  fill: white;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.75));
          filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.75));
}
.health-video__preview__link {
  display: block;
}
.health-video__preview__length {
  padding: 12px;
  padding: 0.75rem;
  background-color: #000;
  color: #fff;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  vertical-align: top;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
}
.health-video__preview__length--small {
  padding: 0.75rem 0.5rem;
  font-size: 0.75em;
}
@media (min-width: 576px) {
  .health-video__preview__length--small {
    padding: 0.5rem;
    display: inline-block;
  }
}
.health-video__preview__length--small .svg-inline--fa {
  display: none;
}
@media (min-width: 576px) {
  .health-video__preview__length--small .svg-inline--fa {
    display: inline-block;
  }
}
.health-video--inline {
  border: 2px solid #ccc;
  padding: 16px;
  padding: 1rem;
}
* + .health-video--inline {
  margin-top: 24px;
  margin-top: 1.5rem;
}

/* Dual logo lockup */
.au-header__flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 0 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (min-width: 992px) {
  .au-header__flex-container {
    gap: 2rem;
    border: none;
  }
}

/* Brand name lockup */
.au-header__title {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: bold;
}
@media (min-width: 992px) {
  .au-header__title {
    font-size: 1.2rem;
  }
}

/* Brand name with slogan lockup */
.au-header__subline {
  font-size: 0.9rem;
  padding: 0.5rem 0 0 0;
  line-height: 1rem;
}

.au-header__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* add a separator between the lockups */
.au-header__lockup {
  padding-left: 1rem;
  border-left: 1px solid #000000;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 992px) {
  .au-header__lockup {
    padding-left: 1.5rem;
  }
}

/** change the logo image orientations depending on screen sizes **/
.au-body .au-header__logo-image--hidden-desktop {
  display: block;
}
@media (min-width: 992px) {
  .au-body .au-header__logo-image--hidden-desktop {
    display: none;
  }
}

.au-body .au-header__logo-image--hidden-mobile {
  display: none;
}
@media (min-width: 992px) {
  .au-body .au-header__logo-image--hidden-mobile {
    display: block;
  }
}

/*!
 * Font Awesome Free 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * View icons at https://fontawesome.com/v5/search?o=r&m=free
 */
.svg-inline--fa {
  display: inline-block;
}
.svg-inline--fa svg {
  font-size: inherit;
  height: 1em;
  width: 1em;
  overflow: visible;
  vertical-align: -0.125em;
  fill: currentColor;
}
.svg-inline--fa.fa-fw svg {
  width: 1.25em;
}
.svg-inline--fa.fa-2x svg {
  font-size: 2em;
}
.svg-inline--fa.fa-3x svg {
  font-size: 3em;
}
.svg-inline--fa.fa-left {
  margin-right: 6px;
  margin-right: 0.35rem;
}

.au-body .health-hero__title {
  color: #FFF !important;
}

.learn .health-card__image svg,
.use .health-card__image svg {
  margin: 2rem 2rem -1rem 2rem !important;
  height: 3em !important;
  width: 3em !important;
}

.learn {
  border-bottom: 1px solid #e0e0e0;
}
.learn .health-card__image svg {
  color: #1a8a96;
}

.use .health-card__image svg {
  color: #004181;
}

.home .health-hero {
  margin: -1.5rem -2rem 2rem;
}
.home .health-hero__content {
  margin: 0;
  padding: 2rem 3rem;
}
@media (min-width: 576px) {
  .home .health-hero__content {
    margin-left: 3rem;
    padding: 4rem;
  }
}
.home .health-hero__call-to-action {
  margin-top: 1.5rem;
}

.au-body .colour__swatches {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.colour__swatch {
  display: inline-block;
  width: 10rem;
  height: 5rem;
  position: relative;
  text-align: center;
}

.colour__info {
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
}

.colour__info--dark {
  color: #fff;
}

.colour__info--light {
  color: #000;
}

.gallery .health-card.health-card--clickable .health-card__link {
  font-size: 1.3rem;
}

.au-body .health-card__title {
  color: #fff !important;
}

.au-body .health-card--colour-secondary a,
.au-body .health-card--colour-tertiary a {
  color: #fff;
}

.health-band.getting-started {
  margin-bottom: -2rem;
}

.Header {
  background-color: #062065;
  background: -webkit-gradient(linear, left top, right top, from(#00205b), to(#004181));
  background: linear-gradient(to right, #00205b, #004181);
  background: #fff;
  color: #000;
}
@media (min-width: 576px) {
  .Header {
    padding: 0.5rem;
  }
}

.Header-button {
  width: 4rem;
  height: 4rem;
}

.Header-title {
  padding-top: 0;
  padding-bottom: 0;
}

.Header-logo {
  display: block;
  height: 40px;
}

.Header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: 1rem;
  list-style: none;
}
.Header-menu li + li {
  margin-left: 1rem;
}
.Header-menu a,
.Header-menu a:hover,
.Header-menu a:focus {
  color: #fff;
}

:root {
  --pillars-pattern: var(--brand-colour-1) 0%,var(--brand-colour-1) 9%,var(--brand-colour-4) 9%,var(--brand-colour-4) 21%,var(--brand-colour-2) 21%,var(--brand-colour-2) 33%,var(--brand-colour-1) 33%,var(--brand-colour-1) 39%,var(--brand-colour-3) 39%,var(--brand-colour-3) 46%,var(--brand-colour-4) 46%,var(--brand-colour-4) 66%,var(--brand-colour-1) 66%,var(--brand-colour-1) 72%,var(--brand-colour-3) 72%,var(--brand-colour-3) 92%,var(--brand-colour-2) 92%,var(--brand-colour-2) 100%;
}

.Frame-header {
  position: relative;
  border-top: 12px solid var(--brand-primary-colour) !important;
}
.Frame-header::before {
  content: " ";
  background: -webkit-gradient(linear, left top, right top, from(var(--pillars-pattern)));
  background: linear-gradient(to right, var(--pillars-pattern));
  position: absolute;
  top: -12px;
  left: 0;
  height: 12px;
  width: 300px;
}

.Preview-iframe {
  padding: 1rem;
}

pre {
  font-size: 0.8rem;
}

.hljs {
  padding: 1rem;
}

.Preview {
  background: #fff;
}

.Prose {
  width: 100%;
}
.Document-content .Prose {
  max-width: 100%;
}

.Tree-collectionLabel {
  color: #313131;
}
.Tree-collectionLabel span::before {
  width: 0.5rem;
  top: 0.4rem;
}
.Tree-collectionLabel:hover {
  background-color: #d6d6d6;
}

.Tree-entityLink {
  color: #313131;
}
.Tree-entityLink:hover {
  color: #313131;
  background-color: #d6d6d6;
}
.is-current .Tree-entityLink {
  color: #313131;
  background-color: #d6d6d6;
}

.Tree-title {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: normal;
  text-transform: capitalize;
}

.Tree-aside {
  opacity: 1;
}

.Tree-asideTerm, .Tree-asideDescription {
  color: #313131;
}

[dir=ltr] .Tree-depth-2 .Tree-collectionLabel {
  font-weight: bold;
}

[dir=ltr] .Tree-depth-3 .Tree-collectionLabel {
  font-weight: normal;
}

[dir=ltr] .Tree-depth-3 .Tree-entityLink {
  position: relative;
}

.Navigation-group {
  border-bottom: 1px solid #CCC;
  padding-bottom: 1.5rem;
}

.Frame-panel--sidebar {
  background-color: var(--neutral-bg);
}

.Frame-body {
  height: calc(100% - 64px);
}
.Frame-body .Document-content {
  padding-bottom: 2rem;
}

.Status-dot {
  width: 3px;
  height: 3px;
  border-width: 3px;
}

.Meta-key {
  color: inherit;
  line-height: 2;
}

.Pen {
  background-color: var(--neutral-bg) !important;
}

.Browser-tabs {
  background-color: white;
  border-bottom: 1px solid rgba(70, 81, 94, 0.25);
}

.Browser-tab.is-active a {
  border-bottom-color: #738497;
}

.Browser-panel {
  background-color: #fff;
}

.Prose h1, .Prose h2, .Prose h3, .Prose h4, .Prose .au-body .health-card.health-card--contact-horizontal .health-card__title, .au-body .health-card.health-card--contact-horizontal .Prose .health-card__title, .Prose h5, .Prose h6,
.Document-header h1,
.Document-header h2,
.Document-header h3,
.Document-header h4,
.Document-header .au-body .health-card.health-card--contact-horizontal .health-card__title,
.au-body .health-card.health-card--contact-horizontal .Document-header .health-card__title,
.Document-header h5,
.Document-header h6 {
  color: #313131 !important;
}
.Prose h1,
.Document-header h1 {
  font-size: 2.875rem;
  line-height: 1.21739;
  font-weight: bold;
}
.Prose h2,
.Document-header h2 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
}
.Prose h3,
.Document-header h3 {
  font-size: 1.5rem;
  line-height: 1.33333;
  font-weight: 700;
}
.Prose h4, .Prose .au-body .health-card.health-card--contact-horizontal .health-card__title, .au-body .health-card.health-card--contact-horizontal .Prose .health-card__title,
.Document-header h4,
.Document-header .au-body .health-card.health-card--contact-horizontal .health-card__title,
.au-body .health-card.health-card--contact-horizontal .Document-header .health-card__title {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
}