<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">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--border-radius-small {
  border-radius: 4px;
}
.batcom-container--border-radius-medium {
  border-radius: 16px;
}
.batcom-container--border-radius-large {
  border-radius: 30px;
}

.batcom-container--padding-large,
.batcom-container--padding-large.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--primary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: 1.875rem;
}

.batcom-container {
  --batcom-layout-container-padding: var(--batcom-layout-container-padding-mobile);
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .batcom-container {
    --batcom-layout-container-padding: var(--batcom-layout-container-padding-desktop);
  }
}
.batcom-container--primary-light {
  background-color: var(--batcom-color-container-primary-light-bg);
}
.batcom-container--primary-dark {
  background-color: var(--batcom-color-container-primary-dark-bg);
}
.batcom-container--secondary-light {
  background-color: var(--batcom-color-container-secondary-light-bg);
}
.batcom-container--secondary-dark {
  background-color: var(--batcom-color-container-secondary-dark-bg);
}
.batcom-container--tertiary-light {
  background-color: var(--batcom-color-container-tertiary-light-bg);
}
.batcom-container--tertiary-dark {
  background-color: var(--batcom-color-container-tertiary-dark-bg);
}
.batcom-container--white {
  background-color: #fff;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--primary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--primary-dark:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--secondary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--secondary-dark:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--tertiary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--tertiary-dark:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width {
  padding: var(--batcom-layout-container-padding);
  margin-left: calc(-0.5 * var(--batcom-layout-content-left-right-margin));
  width: 100vw;
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width {
    margin-left: calc(50% - 50vw);
    padding: var(--batcom-layout-container-padding) calc(50vw - var(--batcom-layout-content-max-width) / 2);
  }
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width:not(.batcom-container--noSpacing) &gt; .cmp-container, .cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width &gt; .cmp-container {
    width: calc(100vw - var(--batcom-layout-content-left-right-margin) * 2);
    max-width: var(--batcom-layout-content-max-width);
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1023px) {
  .cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width {
    padding-right: calc(0.5 * var(--batcom-layout-content-left-right-margin));
    padding-left: calc(0.5 * var(--batcom-layout-content-left-right-margin));
  }
  .blog-article .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width .batcom-container--narrow-page-width {
    margin: calc(var(--batcom-layout-container-padding) * -1);
    width: 100vw;
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--full-page-width {
  padding: var(--batcom-layout-container-padding);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--narrow-page-width {
  --batcom-layout-narrow-max-width: 883px;
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--narrow-page-width {
    width: var(--batcom-layout-narrow-max-width);
    padding: 62px 107px;
    margin-left: calc(50% - var(--batcom-layout-narrow-max-width) * 0.5);
    margin-top: -200px;
  }
}
@media only screen and (max-width: 1023px) {
  .blog-article .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--narrow-page-width {
    width: calc(100% + var(--batcom-layout-content-left-right-margin));
    margin: calc(-0.5 * var(--batcom-layout-content-left-right-margin));
    padding: 0 var(--batcom-layout-container-padding);
  }
}
@media only screen and (max-width: 767px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing.batcom-container--full-page-width {
    padding-top: 0;
    padding-bottom: 0;
  }
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing:not(.batcom-container--full-page-width) {
    padding: 0;
  }
  .cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing {
    padding: 0 calc(0.5 * var(--batcom-layout-content-left-right-margin));
  }
}
@media only screen and (min-width: 768px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing {
    padding: 0;
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing:not(.batcom-container--background-full-page-width) &gt; .cmp-container {
  max-width: 100%;
  width: auto;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing.batcom-sticky &gt; .cmp-container {
  width: 100%;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noVerticalSpacing {
  padding-top: 0;
  padding-bottom: 0;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--moreVerticalSpacing {
  padding-top: var(--batcom-layout-container-top-padding);
}
@media only screen and (min-width: 768px) {
  .batcom-container--half-float.batcom-container {
    margin-top: calc(var(--batcom-layout-container-float-distance-tablet) * -1);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-container--half-float.batcom-container {
    margin-top: calc(var(--batcom-layout-container-float-distance-desktop) * -1);
  }
}
.batcom-container--titled {
  height: 370px;
}
@media only screen and (min-width: 768px) {
  .batcom-container--titled {
    height: 350px;
  }
}
.batcom-container--titled.batcom-rainbow-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0e2b63 30.479%, rgba(0, 0, 0, 0) 30.479%), linear-gradient(90deg, #004f9f 52.158%, rgba(0, 0, 0, 0) 52.158%), linear-gradient(90deg, #00b1eb 64.729%, rgba(0, 0, 0, 0) 64.729%), linear-gradient(90deg, #ef7d00 73.225%, rgba(0, 0, 0, 0) 73.225%), linear-gradient(90deg, #fb0 79.628%, rgba(0, 0, 0, 0) 79.629%), linear-gradient(90deg, #50af47 86.692%, rgba(0, 0, 0, 0) 86.692%), linear-gradient(90deg, #afca0b 92.03%, rgba(0, 0, 0, 0) 92.03%), linear-gradient(90deg, #5a328a 97.009%, rgba(0, 0, 0, 0) 97.009%), linear-gradient(90deg, #e72582 100%, rgba(0, 0, 0, 0) 100%);
}
.batcom-container--titled &gt; .cmp-container {
  padding: 0 5.6vw;
  display: flex;
  height: 100%;
  align-items: flex-end;
}
@media only screen and (min-width: 768px) {
  .batcom-container--titled &gt; .cmp-container {
    align-items: center;
  }
}
.batcom-container--titled &gt; .cmp-container &gt; .aem-Grid {
  margin: 55px 0 16px;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky {
  position: fixed;
  z-index: 4;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky {
    inset: auto 0;
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-top {
  top: 0;
  height: var(--batcom-layout-container-sticky-height-top-mobile);
}
@media only screen and (min-width: 768px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-top {
    height: var(--batcom-layout-container-sticky-height-top-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-top {
    height: var(--batcom-layout-container-sticky-height-top-desktop);
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-bottom {
  bottom: 0;
  height: var(--batcom-layout-container-sticky-height-bottom-mobile);
}
@media only screen and (min-width: 768px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-bottom {
    height: var(--batcom-layout-container-sticky-height-bottom-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-bottom {
    height: var(--batcom-layout-container-sticky-height-bottom-desktop);
  }
}
.batcom-container--border-radius {
  border-radius: var(--batcom-layout-container-round-corners-border-radius);
  overflow: hidden;
}
.batcom-container--gradient-1 {
  background: var(--batcom-color-container-gradient-bg-1);
}
.batcom-container--gradient-2 {
  background: var(--batcom-color-container-gradient-bg-2);
}
.batcom-container--gradient-3 {
  background: var(--batcom-color-container-gradient-bg-3);
}
.batcom-container--children-inline &gt; .cmp-container &gt; .aem-Grid {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 5px 0;
  gap: 5px;
}
.batcom-container--height-full {
  height: 100%;
}
.batcom-container--height-full &gt; .cmp-container {
  height: 100%;
}
.batcom-container--height-full &gt; .cmp-container &gt; .aem-Grid {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.batcom-container--height-full &gt; .cmp-container &gt; .aem-Grid::before, .batcom-container--height-full &gt; .cmp-container &gt; .aem-Grid::after {
  content: none;
}
.batcom-container--blurry {
  filter: blur(0.7rem);
}
.batcom-container:has(&gt; .batcom-hide-parent) {
  /* stylelint-disable */
  display: none !important;
  visibility: hidden !important;
  /* stylelint-enable */
}

body:has(.batcom-sticky-top) {
  padding-top: var(--batcom-layout-container-sticky-height-top-mobile);
}
@media only screen and (min-width: 768px) {
  body:has(.batcom-sticky-top) {
    padding-top: var(--batcom-layout-container-sticky-height-top-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body:has(.batcom-sticky-top) {
    padding-top: var(--batcom-layout-container-sticky-height-top-desktop);
  }
}
body:has(.batcom-sticky-bottom) {
  padding-bottom: var(--batcom-layout-container-sticky-height-bottom-mobile);
}
@media only screen and (min-width: 768px) {
  body:has(.batcom-sticky-bottom) {
    padding-bottom: var(--batcom-layout-container-sticky-height-bottom-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body:has(.batcom-sticky-bottom) {
    padding-bottom: var(--batcom-layout-container-sticky-height-bottom-desktop);
  }
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tY29udGFpbmVyL2JhdGNvbS1jb250YWluZXIuYnVuZGxlLmNzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fbG9hZGluZy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19vdmVybGF5X3Nob3J0aGFuZC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvZnVuY3Rpb25zL19ubi16LWluZGV4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2Fycm93LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NsZWFyZml4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbXBvbmVudC1ub3JtYWxpemUuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fZm9udC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19oZWFkaW5ncy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL192aXNpYmlsaXR5LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbHVtbmNvbnRyb2wuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fcmV2ZXJzZS1jb250YWluZXIuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS1jb250YWluZXIvX2NvbnRhaW5lci1ib3JkZXItcmFkaXVzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tY29udGFpbmVyL19jb250YWluZXItcGFkZGluZy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWNvbnRhaW5lci9iYXRjb20tY29udGFpbmVyLmNsaWVudGxpYnMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fbWVkaWFxdWVyaWVzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2JvcmRlcnMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFNQTtFQUNFLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLFFBQUE7QUNMRjs7QUNFQTtFQUNFO0lBQ0UsdUNBQUE7RURDRjtFQ0VBO0lBQ0UsdUNBQUE7RURBRjtFQ0dBO0lBQ0UseUJBQUE7RURERjtBQUNGO0FDSUE7RUFDRSxxQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxzQkFBQTtFQUNBLHNDQUFBO0VBQ0EscUJBQUE7RUFDQSxrQkFBQTtBREZGO0FDSUU7RUFFRSxrQkFBQTtFQUNBLFdBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSx5QkFBQTtFQUNBLHNDQUFBO0FESEo7QUNNRTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtBREpKO0FDT0U7RUFDRSxxQkFBQTtFQUNBLFlBQUE7QURMSjs7QUUxQ0E7RUFDRSxrQkFBQTtFQUNBLFVBQUE7QUY2Q0Y7O0FHakRBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDQUE7O0NBQUE7QUNBQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDQUE7Ozs7Ozs7Q0FBQTtBQ0FBLHdDQUFBO0FBQ0EsMERBQUE7QUFFQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDSEE7Ozs7Ozs7O0NBQUE7QUNBQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztDQUFBO0FDQUE7Ozs7Ozs7Ozs7Q0FBQTtBQ0NBOztDQUFBO0FDQUU7RUFDRSxrQkFBQTtBWndOSjtBWXJORTtFQUNFLG1CQUFBO0FadU5KO0FZcE5FO0VBQ0UsbUJBQUE7QVpzTko7O0FhaE9BOztFQUVFLGlCQUFBO0FibU9GOztBYzNOQTtFQUNFLGdGQUFBO0VBT0Esa0JBQUE7QWR3TkY7QWVqS0U7RUQvREY7SUFJSSxpRkFBQTtFZGdPRjtBQUNGO0Fjck5NO0VBQ0UsZ0VBQUE7QWR1TlI7QWN4Tk07RUFDRSwrREFBQTtBZDBOUjtBYzNOTTtFQUNFLGtFQUFBO0FkNk5SO0FjOU5NO0VBQ0UsaUVBQUE7QWRnT1I7QWNqT007RUFDRSxpRUFBQTtBZG1PUjtBY3BPTTtFQUNFLGdFQUFBO0Fkc09SO0FjaE9FO0VBQ0Usc0JBQUE7QWRrT0o7QWM1TlE7RUFDRSwrQ0FBQTtBZDhOVjtBYy9OUTtFQUNFLCtDQUFBO0FkaU9WO0FjbE9RO0VBQ0UsK0NBQUE7QWRvT1Y7QWNyT1E7RUFDRSwrQ0FBQTtBZHVPVjtBY3hPUTtFQUNFLCtDQUFBO0FkME9WO0FjM09RO0VBQ0UsK0NBQUE7QWQ2T1Y7QWN2T0k7RUFDRSwrQ0FBQTtFQUNBLHdFQUFBO0VBQ0EsWUFBQTtBZHlPTjtBZWxORTtFRDFCRTtJQU1JLDZCQUFBO0lBQ0EsdUdBQUE7RWQwT047RWN0T1E7SUFDRSx1RUFBQTtJQUNBLGlEQUFBO0lBQ0EsY0FBQTtFZHdPVjtBQUNGO0FlM09FO0VEUU07SUFDRSx5RUFBQTtJQUNBLHdFQUFBO0Vkc09SO0Vjbk9NO0lBQ0UseURBQUE7SUFDQSxZQUFBO0VkcU9SO0FBQ0Y7QWNoT0k7RUFDRSwrQ0FBQTtFQUNBLDZCQUFBO0VBQ0EsWUFBQTtBZGtPTjtBYzlOSTtFQUNFLHVDQUFBO0FkZ09OO0FlL09FO0VEY0U7SUFJSSw0Q0FBQTtJQUNBLG1CQUFBO0lBQ0Esb0VBQUE7SUFDQSxrQkFBQTtFZGlPTjtBQUNGO0FlclFFO0VEdUNNO0lBQ0Usa0VBQUE7SUFDQSxtRUFBQTtJQUNBLGlEQUFBO0VkaU9SO0FBQ0Y7QWVqU0U7RUR1RU07SUFDRSxjQUFBO0lBQ0EsaUJBQUE7RWQ2TlI7RWMxTk07SUFDRSxVQUFBO0VkNE5SO0Vjek5NO0lBQ0UscUVBQUE7RWQyTlI7QUFDRjtBZS9SRTtFRHVERTtJQWlCSSxVQUFBO0VkMk5OO0FBQ0Y7QWN6Tk07RUFDRSxlQUFBO0VBQ0EsV0FBQTtBZDJOUjtBY3hOTTtFQUNFLFdBQUE7QWQwTlI7QWNyTkk7RUFDRSxjQUFBO0VBQ0EsaUJBQUE7QWR1Tk47QWNuTkk7RUFDRSx1REFBQTtBZHFOTjtBZWxURTtFRG1HRTtJQUVJLDJFQUFBO0VkaU5OO0FBQ0Y7QWVsU0U7RUQ4RUU7SUFNSSw0RUFBQTtFZGtOTjtBQUNGO0FjN01FO0VBQ0UsYUFBQTtBZCtNSjtBZS9URTtFRCtHQTtJQUlJLGFBQUE7RWRnTko7QUFDRjtBZ0J2WEU7RUFDRSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxTQUFBO0VBQ0EsT0FBQTtFQUNBLFdGcUtvQztFRXBLcEMsV0FBQTtFQUNBLGNBQUE7RUFDQSwwbEJBQUE7QWhCeVhKO0FjcE5JO0VBQ0UsZ0JBQUE7RUFDQSxhQUFBO0VBQ0EsWUFBQTtFQUNBLHFCQUFBO0Fkc05OO0FlcFZFO0VEMEhFO0lBT0ksbUJBQUE7RWR1Tk47QUFDRjtBY3JOTTtFQUNFLG1CQUFBO0FkdU5SO0FjbE5FO0VBQ0UsZUFBQTtFQUNBLFVBQUE7RUFDQSxjQUFBO0VBQ0EsaUJBQUE7RUFDQSxhQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtBZG9OSjtBZWhWRTtFRHFIQTtJQVVJLGFBQUE7RWRxTko7QUFDRjtBY2xOTTtFQUNFLE1BQUE7RUFDQSwrREFBQTtBZG9OUjtBZTlXRTtFRHdKSTtJQUtJLCtEQUFBO0VkcU5SO0FBQ0Y7QWU5VkU7RURtSUk7SUFTSSxnRUFBQTtFZHNOUjtBQUNGO0FjaE9NO0VBQ0UsU0FBQTtFQUNBLGtFQUFBO0Fka09SO0FlNVhFO0VEd0pJO0lBS0ksa0VBQUE7RWRtT1I7QUFDRjtBZTVXRTtFRG1JSTtJQVNJLG1FQUFBO0Vkb09SO0FBQ0Y7QWMvTkU7RUFDRSx5RUFBQTtFQUNBLGdCQUFBO0FkaU9KO0FjOU5FO0VBQ0UsdURBQUE7QWRnT0o7QWM3TkU7RUFDRSx1REFBQTtBZCtOSjtBYzVORTtFQUNFLHVEQUFBO0FkOE5KO0Fjek5NO0VBQ0UsYUFBQTtFQUNBLHFCQUFBO0VBQ0EsdUJBQUE7RUFDQSxjQUFBO0VBQ0EsUUFBQTtBZDJOUjtBY3JORTtFQUNFLFlBQUE7QWR1Tko7QWNyTkk7RUFDRSxZQUFBO0FkdU5OO0FjcE5JO0VBQ0UsWUFBQTtFQUNBLGFBQUE7RUFDQSxzQkFBQTtFQUNBLDhCQUFBO0Fkc05OO0FjcE5NO0VBRUUsYUFBQTtBZHFOUjtBY2hORTtFQUNFLG9CQUFBO0Fka05KO0FjL01FO0VMN09BLHNCQUFBO0VBQ0Esd0JBQUE7RUFDQSw2QkFBQTtFQUNBLHFCQUFBO0FUK2JGOztBYzlNSTtFQUNFLG9FQUFBO0FkaU5OO0FldGJFO0VEb09FO0lBSUksb0VBQUE7RWRrTk47QUFDRjtBZXRhRTtFRCtNRTtJQVFJLHFFQUFBO0VkbU5OO0FBQ0Y7QWM1Tkk7RUFDRSwwRUFBQTtBZDhOTjtBZW5jRTtFRG9PRTtJQUlJLDBFQUFBO0VkK05OO0FBQ0Y7QWVuYkU7RUQrTUU7SUFRSSwyRUFBQTtFZGdPTjtBQUNGIiwiZmlsZSI6Ii4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWNvbnRhaW5lci9iYXRjb20tY29udGFpbmVyLmJ1bmRsZS5jc3MifQ== */</pre></body></html>