<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1D1D1B;
  }
}
.batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom--loading::before, .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1D1D1B;
  animation: dot-animation 1.2s infinite;
}
.batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}

.batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}

/* doc
---
title: z-index
name: nn-z-index
category: functions
---

Because z-indices can get tricky we manage them in the theme.scss globally.

Always use this mixin to set set a z-index.

Read the Best Practice to get an full documentation:
https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

## Live Template abbreviations
---
-z

## Parameters
---
@parameter $element = Name of the element (normally this will be the module name for the main stack)
@parameter $list = Name of the list (default $z-indices). Must be only set for stack context
@parameter $min = Set a minimum z-index which will be added to the list.

## Dependencies
---
$z-indices variable in the theme.scss

## Example
---

```html_example

// In the SASS theme file

$z-indices: slider, modal, dialog, navigation;

// In the SASS module file

.modal {
    &amp;__base {
        position: absolute;
        z-index: nn-z-index(modal);
    }
}
```

## Source
---
http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
*/
/*
* Mixin used to create the arrows for the menu items.
*/
/* doc
---
title: Clearfix
name: clearfix
category: mixins
---

Clears after floating element

Use this mixin only inside media queries where you can't use the
abstract/extends/utils/_clearfix version, which adds less code to css

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

## Source
---
&lt;https://css-tricks.com/snippets/css/clear-fix/&gt;
*/
/* doc
---
title: Component Normalize / item Normalize
name: font
category: mixins
---
Use this mixing to regular AEM wrappers and normalization.
*/
/* stylelint-disable max-nesting-depth */
/* stylelint-disable media-feature-name-no-vendor-prefix */
/* doc
---
title: Font
name: font
category: mixins
---

Use this mixing to add fonts and normalization.

Documentation:

- https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
- https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

## Parameters
---
@param $font-type
@param $normalize

## Dependencies
---
/abstract/functions/nn-px-to-em
/abstract/functions/nn-px-to-rem
/abstract/functions/nn-px-to-unitless
/abstract/mixins/font-icon
*/
/*
* This mixin is used to style headings of any level in a responsive way.
* It uses the variables defined in the typography map to style the headings so
* the levels it can effectively style are 1 to 6.
* It also styles the use of spans and links inside the headings.
*
* @param {number} $level - The heading level to style.
* @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
*/
/* doc
---
title: Visibility
name: visibility
category: mixins
---

Mixin to add visibility to control to elements

---

## Example
---

```html_example
.container {
  &amp;__base {
    @include visible;

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
/*
lt0 = (default) 1 column at a 100%
lt1 = 2 columns (50%, 50%)
lt2 = 2 columns (33%, 66%)
lt3 = 2 columns (66%, 33%)
lt4 = 3 columns (33%, 33%, 33%)
lt5 = 4 columns (25%, 25%, 25%, 25%)

## Parameters
@parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
*/
/**
* Reverse container
*/
.batcom-container--primary-dark .batcom-linklist, .batcom-container--secondary-dark .batcom-linklist {
  --batcom-color-link-list-item-link-arrow: var(--batcom-color-link-list-item-link-arrow-inverted);
}

.batcom-linklist--solid {
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  .batcom-linklist--solid {
    padding: 40px 30px;
  }
}
.batcom-linklist--solid .batcom-linklist__title {
  margin-bottom: 36px;
}
.batcom-linklist--solid .batcom-linklist__item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 25px 0;
}
@media only screen and (max-width: 479px) {
  .batcom-linklist--solid .batcom-linklist__item-link {
    padding: 18px 0;
  }
}
.batcom-linklist--solid .batcom-linklist__item-link::after {
  content: "";
  height: 18px;
  width: 9px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-rounded.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/chevron-right-rounded.svg");
  background-color: var(--batcom-color-link-list-item-link-arrow);
}
.batcom-linklist--solid .batcom-linklist__item-title {
  max-width: calc(100% - 18px);
}
.batcom-linklist--solid .batcom-linklist__wrapper-item::after, .batcom-linklist--solid .batcom-linklist__wrapper-item:first-child::before {
  content: "";
  width: 100%;
  height: 1px;
  opacity: 0.3;
  background-color: var(--batcom-color-link-list-text);
}
@media only screen and (min-width: 768px) {
  .batcom-linklist--solid .batcom-linklist__wrapper-item {
    flex-direction: column;
  }
}

.batcom-linklist--directory .batcom-linklist {
  display: flex;
}
.batcom-linklist--directory .batcom-linklist__title {
  flex: 0 0 35px;
  padding-top: 4px;
  font-size: 1.2rem;
  font-weight: 300;
}
.batcom-linklist--directory .batcom-linklist__wrapper-item {
  align-items: baseline;
  flex-direction: row;
}
.columncontrol__column .batcom-linklist--directory .batcom-linklist__wrapper-item {
  flex-direction: initial;
}
.batcom-linklist--directory .batcom-linklist__wrapper-item:not(:last-child) {
  margin-bottom: 1.1rem;
}
.batcom-linklist--directory .batcom-linklist__wrapper-item::before {
  content: "";
  width: 16px;
  margin-inline-end: 6.4px;
  padding-top: 1rem;
  -webkit-mask: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-black.svg") center bottom/contain no-repeat;
          mask: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-black.svg") center bottom/contain no-repeat;
  background-color: var(--batcom-color-link-list-item-link-arrow);
  display: inline-flex;
  flex-shrink: 0;
}
.batcom-linklist--directory .batcom-linklist__item-link:active, .batcom-linklist--directory .batcom-linklist__item-link:focus, .batcom-linklist--directory .batcom-linklist__item-link:hover, .batcom-linklist--directory .batcom-linklist__item-link:visited {
  color: var(--batcom-color-link-list-item-link);
  text-decoration: none;
}
.batcom-linklist--directory .batcom-linklist__item-title {
  font-size: 0.85rem;
  font-weight: 300;
}

.batcom-container--primary-dark .batcom-linklist, .batcom-container--secondary-dark .batcom-linklist {
  --batcom-color-link-list-title: var(--batcom-color-link-list-title-inverted);
  --batcom-color-link-list-text: var(--batcom-color-link-list-text-inverted);
  --batcom-color-link-list-item-link: var(--batcom-color-link-list-item-link-inverted);
  --batcom-color-link-list-item-link-hover: var(--batcom-color-link-list-item-link-hover-inverted);
}
.batcom-linklist.batcom-linklist--horizontal {
  margin-bottom: 0;
  padding: 20px 0 30px;
}
.batcom-linklist .batcom-linklist__title {
  color: var(--batcom-color-link-list-title);
}
.batcom-linklist__wrapper {
  list-style-type: none;
  padding-left: 0;
}
.batcom-linklist--horizontal .batcom-linklist__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 40px;
}
.batcom-linklist__wrapper-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 6px;
}
@media only screen and (min-width: 768px) {
  .batcom-linklist__wrapper-item {
    flex-direction: row;
  }
  .columncontrol__column .batcom-linklist__wrapper-item {
    flex-direction: column;
  }
}
.batcom-linklist--horizontal .batcom-linklist__wrapper-item {
  width: auto;
  margin: 7px 10px;
}
.batcom-linklist__item-description {
  /* doc
  ---
  title: z-index
  name: nn-z-index
  category: functions
  ---

  Because z-indices can get tricky we manage them in the theme.scss globally.

  Always use this mixin to set set a z-index.

  Read the Best Practice to get an full documentation:
  https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

  ## Live Template abbreviations
  ---
  -z

  ## Parameters
  ---
  @parameter $element = Name of the element (normally this will be the module name for the main stack)
  @parameter $list = Name of the list (default $z-indices). Must be only set for stack context
  @parameter $min = Set a minimum z-index which will be added to the list.

  ## Dependencies
  ---
  $z-indices variable in the theme.scss

  ## Example
  ---

  ```html_example

  // In the SASS theme file

  $z-indices: slider, modal, dialog, navigation;

  // In the SASS module file

  .modal {
      &amp;__base {
          position: absolute;
          z-index: nn-z-index(modal);
      }
  }
  ```

  ## Source
  ---
  http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
  */
  /*
  * Mixin used to create the arrows for the menu items.
  */
  /* doc
  ---
  title: Clearfix
  name: clearfix
  category: mixins
  ---

  Clears after floating element

  Use this mixin only inside media queries where you can't use the
  abstract/extends/utils/_clearfix version, which adds less code to css

  ## Live Template abbreviations
  ---

  ## Example
  ---

  ```html_example
  @include clearfix;
  ```

  ## Source
  ---
  &lt;https://css-tricks.com/snippets/css/clear-fix/&gt;
  */
  /* doc
  ---
  title: Component Normalize / item Normalize
  name: font
  category: mixins
  ---
  Use this mixing to regular AEM wrappers and normalization.
  */
  /* stylelint-disable max-nesting-depth */
  /* stylelint-disable media-feature-name-no-vendor-prefix */
  /* doc
  ---
  title: Font
  name: font
  category: mixins
  ---

  Use this mixing to add fonts and normalization.

  Documentation:

  - https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
  - https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

  ## Parameters
  ---
  @param $font-type
  @param $normalize

  ## Dependencies
  ---
  /abstract/functions/nn-px-to-em
  /abstract/functions/nn-px-to-rem
  /abstract/functions/nn-px-to-unitless
  /abstract/mixins/font-icon
  */
  /*
  * This mixin is used to style headings of any level in a responsive way.
  * It uses the variables defined in the typography map to style the headings so
  * the levels it can effectively style are 1 to 6.
  * It also styles the use of spans and links inside the headings.
  *
  * @param {number} $level - The heading level to style.
  * @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
  */
  /* doc
  ---
  title: Visibility
  name: visibility
  category: mixins
  ---

  Mixin to add visibility to control to elements

  ---

  ## Example
  ---

  ```html_example
  .container {
    &amp;__base {
      @include visible;

      @include breakpoint($b-01) {
        @include hidden;
      }
    }
  }
  ```
  */
  /*
  lt0 = (default) 1 column at a 100%
  lt1 = 2 columns (50%, 50%)
  lt2 = 2 columns (33%, 66%)
  lt3 = 2 columns (66%, 33%)
  lt4 = 3 columns (33%, 33%, 33%)
  lt5 = 4 columns (25%, 25%, 25%, 25%)

  ## Parameters
  @parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
  */
  /**
  * Reverse container
  */
  color: var(--batcom-color-link-list-text);
  font-size: 18px;
  margin-bottom: 18px;
}
.batcom-linklist__item-description body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}
@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1D1D1B;
  }
}
.batcom-linklist__item-description .batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom-linklist__item-description .batcom--loading::before, .batcom-linklist__item-description .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1D1D1B;
  animation: dot-animation 1.2s infinite;
}
.batcom-linklist__item-description .batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom-linklist__item-description .batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}
.batcom-linklist__item-description .batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}
.batcom-linklist__item-description li {
  position: relative;
  padding: 4px 0 4px 23px;
  text-indent: -23px;
}
.batcom-linklist__item-description ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-block: 0 0;
}
.batcom-linklist__item-description ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet);
}
.batcom-container--primary-dark .batcom-linklist__item-description ul li::marker, .batcom-container--secondary-dark .batcom-linklist__item-description ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet-inverted);
}
.batcom-linklist__item-description ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-block: 0 0;
}
.batcom-linklist__item-description ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number);
}
.batcom-container--primary-dark .batcom-linklist__item-description ol li::marker, .batcom-container--secondary-dark .batcom-linklist__item-description ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number-inverted);
}
.batcom-linklist__item-description ol li ol li {
  text-indent: -18px;
}
.batcom-linklist__item-description ul:has(li .bullet-icon) {
  list-style-type: "→ ";
}
.batcom-linklist__item-link {
  color: var(--batcom-color-link-list-item-link);
  text-decoration: none;
  line-height: 2.5rem;
}
.batcom-linklist__item-link::before {
  display: none;
}
.batcom-linklist__item-link:hover, .batcom-linklist__item-link:visited {
  color: var(--batcom-color-link-list-item-link-hover);
}
.batcom-linklist__item-date {
  display: flex;
  min-width: -moz-fit-content;
  min-width: fit-content;
  margin-right: 5px;
  margin-bottom: 24px;
  color: var(--batcom-color-link-list-text);
}
.columncontrol__column .batcom-linklist__item-date {
  margin-bottom: 10px;
}
@media only screen and (max-width: 479px) {
  .batcom-linklist__item-date {
    margin-bottom: 10px;
  }
}
.batcom-linklist__item-link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.batcom-linklist__description {
  color: var(--batcom-color-link-list-text);
  margin-bottom: 18px;
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWxpbmtsaXN0L2JhdGNvbS1saW5rbGlzdC5idW5kbGUuY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19ib2R5X25vc2Nyb2xsLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX2xvYWRpbmcuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fb3ZlcmxheV9zaG9ydGhhbmQuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Z1bmN0aW9ucy9fbm4tei1pbmRleC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19hcnJvdy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jbGVhcmZpeC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jb21wb25lbnQtbm9ybWFsaXplLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2ZvbnQuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9faGVhZGluZ3Muc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fdmlzaWJpbGl0eS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19jb2x1bW5jb250cm9sLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3JldmVyc2UtY29udGFpbmVyLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tbGlua2xpc3QvX2xpbmtsaXN0LXNvbGlkLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX21lZGlhcXVlcmllcy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19zZXBhcmF0b3Iuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS1saW5rbGlzdC9fbGlua2xpc3QtZGlyZWN0b3J5LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tbGlua2xpc3QvYmF0Y29tLWxpbmtsaXN0LmNsaWVudGxpYnMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC90aGVtZS9nbG9iYWxzdHlsZXMvZ2xvYmFsLWxpc3QtZWxlbWVudHMtc3R5bGVzLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsZ0JBQWdCO0FDTWhCO0VBQ0UsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsUUFBQTtBREpGOztBRUNBO0VBQ0U7SUFDRSx1Q0FBQTtFRkVGO0VFQ0E7SUFDRSx1Q0FBQTtFRkNGO0VFRUE7SUFDRSx5QkFBQTtFRkFGO0FBQ0Y7QUVHQTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxrQkFBQTtFQUNBLHNCQUFBO0VBQ0Esc0NBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0FGREY7QUVHRTtFQUVFLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHlCQUFBO0VBQ0Esc0NBQUE7QUZGSjtBRUtFO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0FGSEo7QUVNRTtFQUNFLHFCQUFBO0VBQ0EsWUFBQTtBRkpKOztBRzNDQTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBSDhDRjs7QUlsREE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNBQTs7Q0FBQTtBQ0FBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNBQTs7Ozs7OztDQUFBO0FDQUEsd0NBQUE7QUFDQSwwREFBQTtBQUVBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNIQTs7Ozs7Ozs7Q0FBQTtBQ0FBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNBQTs7Ozs7Ozs7OztDQUFBO0FDQ0E7O0NBQUE7QUNBRTtFQUVFLGdHQUFBO0Fid05KOztBYXBOQTtFQUNFLGlCQUFBO0FidU5GO0FjM0tFO0VEN0NGO0lBSUksa0JBQUE7RWJ3TkY7QUFDRjtBYXJOSTtFQUNFLG1CQUFBO0FidU5OO0FhcE5JO0VBQ0UsYUFBQTtFQUNBLDhCQUFBO0VBQ0EsbUJBQUE7RUFDQSxXQUFBO0VBQ0EsZUFBQTtBYnNOTjtBY3RORTtFRExFO0lBUUksZUFBQTtFYnVOTjtBQUNGO0Fhck5NO0VBQ0UsV0FBQTtFQUNBLFlBQUE7RUFDQSxVQUFBO0VBQ0EsbUhBQUE7VUFBQSwyR0FBQTtFQUNBLCtEQUFBO0FidU5SO0Fhbk5JO0VBQ0UsNEJBQUE7QWJxTk47QWFqTk07RUUzQ0osV0FBQTtFQUNBLFdBQUE7RUFDQSxXQUFBO0VBQ0EsWUYwQzZEO0VFekM3RCxvREZ5Q3lCO0Fic04zQjtBY2hORTtFRFRFO0lBT0ksc0JBQUE7RWJzTk47QUFDRjs7QWdCclFJO0VBQ0UsYUFBQTtBaEJ3UU47QWdCdFFNO0VBQ0UsY0FBQTtFQUNBLGdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxnQkFBQTtBaEJ3UVI7QWdCclFNO0VBQ0UscUJBQUE7RUFDQSxtQkFBQTtBaEJ1UVI7QWdCclFRO0VBQ0UsdUJBQUE7QWhCdVFWO0FnQnBRUTtFQUNFLHFCQUFBO0FoQnNRVjtBZ0JuUVE7RUFDRSxXQUFBO0VBQ0EsV0FBQTtFQUNBLHdCQUFBO0VBQ0EsaUJBQUE7RUFDQSxtSUFBQTtVQUFBLDJIQUFBO0VBQ0EsK0RBQUE7RUFDQSxvQkFBQTtFQUNBLGNBQUE7QWhCcVFWO0FnQmhRUTtFQUlFLDhDQUFBO0VBQ0EscUJBQUE7QWhCK1BWO0FnQjNQTTtFQUNFLGtCQUFBO0VBQ0EsZ0JBQUE7QWhCNlBSOztBaUJ6U0U7RUFFRSw0RUFBQTtFQUNBLDBFQUFBO0VBQ0Esb0ZBQUE7RUFDQSxnR0FBQTtBakIyU0o7QWlCeFNFO0VBQ0UsZ0JBQUE7RUFDQSxvQkFBQTtBakIwU0o7QWlCdlNFO0VBQ0UsMENBQUE7QWpCeVNKO0FpQnRTRTtFQUNFLHFCQUFBO0VBQ0EsZUFBQTtBakJ3U0o7QWlCdFNJO0VBQ0UsYUFBQTtFQUNBLHVCQUFBO0VBQ0EsZUFBQTtFQUNBLFdBQUE7QWpCd1NOO0FpQnJTSTtFQUNFLGFBQUE7RUFDQSxzQkFBQTtFQUNBLFdBQUE7RUFDQSxrQkFBQTtBakJ1U047QWN6UkU7RUdsQkU7SUFPSSxtQkFBQTtFakJ3U047RWlCdFNNO0lBQ0Usc0JBQUE7RWpCd1NSO0FBQ0Y7QWlCclNNO0VBQ0UsV0FBQTtFQUNBLGdCQUFBO0FqQnVTUjtBaUJqU0k7RWJ4REo7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBQUE7RUNBQTs7R0FBQTtFQ0FBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBQUE7RUNBQTs7Ozs7OztHQUFBO0VDQUEsd0NBQUE7RUFDQSwwREFBQTtFQUVBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBQUE7RUNIQTs7Ozs7Ozs7R0FBQTtFQ0FBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0dBQUE7RUNBQTs7Ozs7Ozs7OztHQUFBO0VDQ0E7O0dBQUE7RUswRE0seUNBQUE7RUFDQSxlQUFBO0VBQ0EsbUJBQUE7QWpCc2NOO0FDN2ZBO0VBQ0UsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsUUFBQTtBRCtmRjtBRWxnQkE7RUFDRTtJQUNFLHVDQUFBO0VGb2dCRjtFRWpnQkE7SUFDRSx1Q0FBQTtFRm1nQkY7RUVoZ0JBO0lBQ0UseUJBQUE7RUZrZ0JGO0FBQ0Y7QUUvZkE7RUFDRSxxQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxzQkFBQTtFQUNBLHNDQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtBRmlnQkY7QUUvZkU7RUFFRSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSx5QkFBQTtFQUNBLHNDQUFBO0FGZ2dCSjtBRTdmRTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtBRitmSjtBRTVmRTtFQUNFLHFCQUFBO0VBQ0EsWUFBQTtBRjhmSjtBRzdpQkE7RUFDRSxrQkFBQTtFQUNBLFVBQUE7QUgraUJGO0FrQmhqQkE7RUFDRSxrQkFBQTtFQUNBLHVCQUFBO0VBQ0Esa0JBQUE7QWxCa2pCRjtBa0I5aUJBO0VBQ0UscUJBQUE7RUFDQSwyQkFBQTtFQUNBLGlCQUFBO0FsQmdqQkY7QWtCN2lCSTtFQUNFLGtEQUFBO0FsQitpQk47QWtCN2lCTTtFQUVFLDJEQUFBO0FsQjhpQlI7QWtCdmlCQTtFQUNFLHdCQUFBO0VBQ0EsMkJBQUE7RUFDQSxpQkFBQTtBbEJ5aUJGO0FrQnRpQkk7RUFDRSxrREFBQTtBbEJ3aUJOO0FrQnRpQk07RUFFRSwyREFBQTtBbEJ1aUJSO0FrQm5pQkk7RUFDRSxrQkFBQTtBbEJxaUJOO0FrQi9oQkE7RUFDRSxxQkFBQTtBbEJpaUJGO0FpQnBoQkk7RUFDRSw4Q0FBQTtFQUNBLHFCQUFBO0VBQ0EsbUJBQUE7QWpCc2hCTjtBaUJwaEJNO0VBQ0UsYUFBQTtBakJzaEJSO0FpQm5oQk07RUFFRSxvREFBQTtBakJvaEJSO0FpQmhoQkk7RUFDRSxhQUFBO0VBQ0EsMkJBQUE7RUFBQSxzQkFBQTtFQUNBLGlCQUFBO0VBQ0EsbUJBQUE7RUFDQSx5Q0FBQTtBakJraEJOO0FpQmhoQk07RUFDRSxtQkFBQTtBakJraEJSO0FjamxCRTtFR3VERTtJQVlJLG1CQUFBO0VqQmtoQk47QUFDRjtBaUIvZ0JJO0VBQ0UsYUFBQTtFQUNBLHNCQUFBO0VBQ0EsdUJBQUE7QWpCaWhCTjtBaUI3Z0JFO0VBQ0UseUNBQUE7RUFDQSxtQkFBQTtBakIrZ0JKIiwiZmlsZSI6Ii4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWxpbmtsaXN0L2JhdGNvbS1saW5rbGlzdC5idW5kbGUuY3NzIn0= */</pre></body></html>