@charset "UTF-8";
@font-face {
  font-family: "DINPro Bold";
  src: url(/fonts/d-din.bold.ttf?04cb25352d0c9ddb184eccdcbed5cf45) format("truetype");
}
@font-face {
  font-family: "DINPro Regular";
  src: url(/fonts/d-din.regular.ttf?10bb68ca7a7f3a2d66ecb454c54d0869) format("truetype");
}
@font-face {
  font-family: "Azonix Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Azonix Regular"), url(/fonts/Azonix.woff?18058c96d53ad2f9f2a360df9d864a27) format("woff");
}
/*
$font-size-xs: 1rem;
$font-size-s: 1.3rem;
$font-size-m: 2.1rem;
$font-size-l: 3.4rem;
$font-size-xl: 5.5rem;
 */
/*! Buefy v0.8.20 | MIT License | github.com/buefy/buefy */
.is-noscroll {
  position: fixed;
  overflow-y: hidden;
  width: 100%;
  bottom: 0;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

/**
 * Vue Transitions
 */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 150ms ease-out;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.zoom-in-enter-active,
.zoom-in-leave-active {
  transition: opacity 150ms ease-out;
}

.zoom-in-enter-active .animation-content,
.zoom-in-enter-active .animation-content,
.zoom-in-leave-active .animation-content,
.zoom-in-leave-active .animation-content {
  transition: transform 150ms ease-out;
}

.zoom-in-enter,
.zoom-in-leave-active {
  opacity: 0;
}

.zoom-in-enter .animation-content,
.zoom-in-enter .animation-content,
.zoom-in-leave-active .animation-content,
.zoom-in-leave-active .animation-content {
  transform: scale(0.95);
}

.zoom-out-enter-active,
.zoom-out-leave-active {
  transition: opacity 150ms ease-out;
}

.zoom-out-enter-active .animation-content,
.zoom-out-enter-active .animation-content,
.zoom-out-leave-active .animation-content,
.zoom-out-leave-active .animation-content {
  transition: transform 150ms ease-out;
}

.zoom-out-enter,
.zoom-out-leave-active {
  opacity: 0;
}

.zoom-out-enter .animation-content,
.zoom-out-enter .animation-content,
.zoom-out-leave-active .animation-content,
.zoom-out-leave-active .animation-content {
  transform: scale(1.05);
}

.slide-next-enter-active,
.slide-next-leave-active,
.slide-prev-enter-active,
.slide-prev-leave-active {
  transition: transform 250ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.slide-prev-leave-to, .slide-next-enter {
  transform: translate3d(-100%, 0, 0);
  position: absolute;
  width: 100%;
}

.slide-prev-enter, .slide-next-leave-to {
  transform: translate3d(100%, 0, 0);
  position: absolute;
  width: 100%;
}

.slide-down-enter-active,
.slide-down-leave-active,
.slide-up-enter-active,
.slide-up-leave-active {
  transition: transform 250ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.slide-up-leave-to, .slide-down-enter {
  transform: translate3d(0, -100%, 0);
  position: absolute;
  height: 100%;
}

.slide-up-enter, .slide-down-leave-to {
  transform: translate3d(0, 100%, 0);
  position: absolute;
  height: 100%;
}

.slide-enter-active {
  transition: 150ms ease-out;
}

.slide-leave-active {
  transition: 150ms ease-out;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.slide-enter-to, .slide-leave {
  max-height: 100px;
  overflow: hidden;
}

.slide-enter, .slide-leave-to {
  overflow: hidden;
  max-height: 0;
}

/*! bulma.io v0.7.5 | MIT License | github.com/jgthms/bulma */
@-webkit-keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.delete, .modal-close, .is-unselectable, .button, .file, .breadcrumb, .pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis, .tabs, .carousel, .carousel-list, .b-checkbox.checkbox, .b-radio.radio, .switch {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select:not(.is-multiple):not(.is-loading)::after, .navbar-link:not(.is-arrowless)::after {
  border: 3px solid transparent;
  border-radius: 2px;
  border-right: 0;
  border-top: 0;
  content: " ";
  display: block;
  height: 0.625em;
  margin-top: -0.4375em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  transform-origin: center;
  width: 0.625em;
}

.box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child),
.subtitle:not(:last-child), .block:not(:last-child), .highlight:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .list:not(:last-child), .message:not(:last-child), .tabs:not(:last-child) {
  margin-bottom: 1.5rem;
}

.delete, .modal-close {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 290486px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 0;
  height: 20px;
  max-height: 20px;
  max-width: 20px;
  min-height: 20px;
  min-width: 20px;
  outline: none;
  position: relative;
  vertical-align: top;
  width: 20px;
}

.delete::before, .modal-close::before, .delete::after, .modal-close::after {
  background-color: white;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}

.delete::before, .modal-close::before {
  height: 2px;
  width: 50%;
}

.delete::after, .modal-close::after {
  height: 50%;
  width: 2px;
}

.delete:hover, .modal-close:hover, .delete:focus, .modal-close:focus {
  background-color: rgba(10, 10, 10, 0.3);
}

.delete:active, .modal-close:active {
  background-color: rgba(10, 10, 10, 0.4);
}

.is-small.delete, .is-small.modal-close {
  height: 16px;
  max-height: 16px;
  max-width: 16px;
  min-height: 16px;
  min-width: 16px;
  width: 16px;
}

.is-medium.delete, .is-medium.modal-close {
  height: 24px;
  max-height: 24px;
  max-width: 24px;
  min-height: 24px;
  min-width: 24px;
  width: 24px;
}

.is-large.delete, .is-large.modal-close {
  height: 32px;
  max-height: 32px;
  max-width: 32px;
  min-height: 32px;
  min-width: 32px;
  width: 32px;
}

.button.is-loading::after, .loader, .select.is-loading::after, .control.is-loading::after {
  -webkit-animation: spinAround 500ms infinite linear;
          animation: spinAround 500ms infinite linear;
  border: 2px solid #dbdbdb;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

.is-overlay, .image.is-square img,
.image.is-square .has-ratio, .image.is-1by1 img,
.image.is-1by1 .has-ratio, .image.is-5by4 img,
.image.is-5by4 .has-ratio, .image.is-4by3 img,
.image.is-4by3 .has-ratio, .image.is-3by2 img,
.image.is-3by2 .has-ratio, .image.is-5by3 img,
.image.is-5by3 .has-ratio, .image.is-16by9 img,
.image.is-16by9 .has-ratio, .image.is-2by1 img,
.image.is-2by1 .has-ratio, .image.is-3by1 img,
.image.is-3by1 .has-ratio, .image.is-4by5 img,
.image.is-4by5 .has-ratio, .image.is-3by4 img,
.image.is-3by4 .has-ratio, .image.is-2by3 img,
.image.is-2by3 .has-ratio, .image.is-3by5 img,
.image.is-3by5 .has-ratio, .image.is-9by16 img,
.image.is-9by16 .has-ratio, .image.is-1by2 img,
.image.is-1by2 .has-ratio, .image.is-1by3 img,
.image.is-1by3 .has-ratio, .modal, .modal-background, .hero-video {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.button, .input, .taginput .taginput-container.is-focusable, .textarea, .select select, .file-cta,
.file-name, .pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  height: 2.25em;
  justify-content: flex-start;
  line-height: 1.5;
  padding-bottom: calc(0.375em - 1px);
  padding-left: calc(0.625em - 1px);
  padding-right: calc(0.625em - 1px);
  padding-top: calc(0.375em - 1px);
  position: relative;
  vertical-align: top;
}

.button:focus, .input:focus, .taginput .taginput-container.is-focusable:focus, .textarea:focus, .select select:focus, .file-cta:focus,
.file-name:focus, .pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus,
.pagination-ellipsis:focus, .is-focused.button, .is-focused.input, .taginput .is-focused.taginput-container.is-focusable, .is-focused.textarea, .select select.is-focused, .is-focused.file-cta,
.is-focused.file-name, .is-focused.pagination-previous,
.is-focused.pagination-next,
.is-focused.pagination-link,
.is-focused.pagination-ellipsis, .button:active, .input:active, .taginput .taginput-container.is-focusable:active, .textarea:active, .select select:active, .file-cta:active,
.file-name:active, .pagination-previous:active,
.pagination-next:active,
.pagination-link:active,
.pagination-ellipsis:active, .is-active.button, .is-active.input, .taginput .is-active.taginput-container.is-focusable, .is-active.textarea, .select select.is-active, .is-active.file-cta,
.is-active.file-name, .is-active.pagination-previous,
.is-active.pagination-next,
.is-active.pagination-link,
.is-active.pagination-ellipsis {
  outline: none;
}

.button[disabled], .input[disabled], .taginput .taginput-container.is-focusable[disabled], .textarea[disabled], .select select[disabled], .file-cta[disabled],
.file-name[disabled], .pagination-previous[disabled],
.pagination-next[disabled],
.pagination-link[disabled],
.pagination-ellipsis[disabled],
fieldset[disabled] .button,
fieldset[disabled] .input,
fieldset[disabled] .taginput .taginput-container.is-focusable,
.taginput fieldset[disabled] .taginput-container.is-focusable,
fieldset[disabled] .textarea,
fieldset[disabled] .select select,
.select fieldset[disabled] select,
fieldset[disabled] .file-cta,
fieldset[disabled] .file-name,
fieldset[disabled] .pagination-previous,
fieldset[disabled] .pagination-next,
fieldset[disabled] .pagination-link,
fieldset[disabled] .pagination-ellipsis {
  cursor: not-allowed;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img,
embed,
iframe,
object,
video {
  height: auto;
  max-width: 100%;
}

audio {
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

td:not([align]),
th:not([align]) {
  text-align: left;
}

html {
  background-color: white;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

body {
  color: #4a4a4a;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: #00aac3;
  cursor: pointer;
  text-decoration: none;
}

a strong {
  color: currentColor;
}

a:hover {
  color: #363636;
}

code {
  background-color: whitesmoke;
  color: #ff3860;
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}

hr {
  background-color: whitesmoke;
  border: none;
  display: block;
  height: 2px;
  margin: 1.5rem 0;
}

img {
  height: auto;
  max-width: 100%;
}

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

small {
  font-size: 0.875em;
}

span {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  color: #363636;
  font-weight: 700;
}

fieldset {
  border: none;
}

pre {
  -webkit-overflow-scrolling: touch;
  background-color: whitesmoke;
  color: #4a4a4a;
  font-size: 0.875em;
  overflow-x: auto;
  padding: 1.25rem 1.5rem;
  white-space: pre;
  word-wrap: normal;
}

pre code {
  background-color: transparent;
  color: currentColor;
  font-size: 1em;
  padding: 0;
}

table td,
table th {
  vertical-align: top;
}

table td:not([align]),
table th:not([align]) {
  text-align: left;
}

table th {
  color: #363636;
}

.is-clearfix::after {
  clear: both;
  content: " ";
  display: table;
}

.is-pulled-left {
  float: left !important;
}

.is-pulled-right {
  float: right !important;
}

.is-clipped {
  overflow: hidden !important;
}

.is-size-1 {
  font-size: 3rem !important;
}

.is-size-2 {
  font-size: 2.5rem !important;
}

.is-size-3 {
  font-size: 2rem !important;
}

.is-size-4 {
  font-size: 1.5rem !important;
}

.is-size-5 {
  font-size: 1.25rem !important;
}

.is-size-6 {
  font-size: 1rem !important;
}

.is-size-7 {
  font-size: 0.75rem !important;
}

@media screen and (max-width: 768px) {
  .is-size-1-mobile {
    font-size: 3rem !important;
  }

  .is-size-2-mobile {
    font-size: 2.5rem !important;
  }

  .is-size-3-mobile {
    font-size: 2rem !important;
  }

  .is-size-4-mobile {
    font-size: 1.5rem !important;
  }

  .is-size-5-mobile {
    font-size: 1.25rem !important;
  }

  .is-size-6-mobile {
    font-size: 1rem !important;
  }

  .is-size-7-mobile {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-size-1-tablet {
    font-size: 3rem !important;
  }

  .is-size-2-tablet {
    font-size: 2.5rem !important;
  }

  .is-size-3-tablet {
    font-size: 2rem !important;
  }

  .is-size-4-tablet {
    font-size: 1.5rem !important;
  }

  .is-size-5-tablet {
    font-size: 1.25rem !important;
  }

  .is-size-6-tablet {
    font-size: 1rem !important;
  }

  .is-size-7-tablet {
    font-size: 0.75rem !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-size-1-touch {
    font-size: 3rem !important;
  }

  .is-size-2-touch {
    font-size: 2.5rem !important;
  }

  .is-size-3-touch {
    font-size: 2rem !important;
  }

  .is-size-4-touch {
    font-size: 1.5rem !important;
  }

  .is-size-5-touch {
    font-size: 1.25rem !important;
  }

  .is-size-6-touch {
    font-size: 1rem !important;
  }

  .is-size-7-touch {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-size-1-desktop {
    font-size: 3rem !important;
  }

  .is-size-2-desktop {
    font-size: 2.5rem !important;
  }

  .is-size-3-desktop {
    font-size: 2rem !important;
  }

  .is-size-4-desktop {
    font-size: 1.5rem !important;
  }

  .is-size-5-desktop {
    font-size: 1.25rem !important;
  }

  .is-size-6-desktop {
    font-size: 1rem !important;
  }

  .is-size-7-desktop {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-size-1-widescreen {
    font-size: 3rem !important;
  }

  .is-size-2-widescreen {
    font-size: 2.5rem !important;
  }

  .is-size-3-widescreen {
    font-size: 2rem !important;
  }

  .is-size-4-widescreen {
    font-size: 1.5rem !important;
  }

  .is-size-5-widescreen {
    font-size: 1.25rem !important;
  }

  .is-size-6-widescreen {
    font-size: 1rem !important;
  }

  .is-size-7-widescreen {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-size-1-fullhd {
    font-size: 3rem !important;
  }

  .is-size-2-fullhd {
    font-size: 2.5rem !important;
  }

  .is-size-3-fullhd {
    font-size: 2rem !important;
  }

  .is-size-4-fullhd {
    font-size: 1.5rem !important;
  }

  .is-size-5-fullhd {
    font-size: 1.25rem !important;
  }

  .is-size-6-fullhd {
    font-size: 1rem !important;
  }

  .is-size-7-fullhd {
    font-size: 0.75rem !important;
  }
}
.has-text-centered {
  text-align: center !important;
}

.has-text-justified {
  text-align: justify !important;
}

.has-text-left {
  text-align: left !important;
}

.has-text-right {
  text-align: right !important;
}

@media screen and (max-width: 768px) {
  .has-text-centered-mobile {
    text-align: center !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-centered-tablet {
    text-align: center !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-centered-tablet-only {
    text-align: center !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-centered-touch {
    text-align: center !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-centered-desktop {
    text-align: center !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-centered-desktop-only {
    text-align: center !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-centered-widescreen {
    text-align: center !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-centered-widescreen-only {
    text-align: center !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-centered-fullhd {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-justified-mobile {
    text-align: justify !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-justified-tablet {
    text-align: justify !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-justified-tablet-only {
    text-align: justify !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-justified-touch {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-justified-desktop {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-justified-desktop-only {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-justified-widescreen {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-justified-widescreen-only {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-justified-fullhd {
    text-align: justify !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-left-mobile {
    text-align: left !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-left-tablet {
    text-align: left !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-left-tablet-only {
    text-align: left !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-left-touch {
    text-align: left !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-left-desktop {
    text-align: left !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-left-desktop-only {
    text-align: left !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-left-widescreen {
    text-align: left !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-left-widescreen-only {
    text-align: left !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-left-fullhd {
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-right-mobile {
    text-align: right !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-right-tablet {
    text-align: right !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-right-tablet-only {
    text-align: right !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-right-touch {
    text-align: right !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-right-desktop {
    text-align: right !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .has-text-right-desktop-only {
    text-align: right !important;
  }
}
@media screen and (min-width: 1216px) {
  .has-text-right-widescreen {
    text-align: right !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .has-text-right-widescreen-only {
    text-align: right !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-right-fullhd {
    text-align: right !important;
  }
}
.is-capitalized {
  text-transform: capitalize !important;
}

.is-lowercase {
  text-transform: lowercase !important;
}

.is-uppercase {
  text-transform: uppercase !important;
}

.is-italic {
  font-style: italic !important;
}

.has-text-white {
  color: white !important;
}

a.has-text-white:hover, a.has-text-white:focus {
  color: #e6e6e6 !important;
}

.has-background-white {
  background-color: white !important;
}

.has-text-black {
  color: #0a0a0a !important;
}

a.has-text-black:hover, a.has-text-black:focus {
  color: black !important;
}

.has-background-black {
  background-color: #0a0a0a !important;
}

.has-text-light {
  color: whitesmoke !important;
}

a.has-text-light:hover, a.has-text-light:focus {
  color: #dbdbdb !important;
}

.has-background-light {
  background-color: whitesmoke !important;
}

.has-text-dark {
  color: #363636 !important;
}

a.has-text-dark:hover, a.has-text-dark:focus {
  color: #1c1c1c !important;
}

.has-background-dark {
  background-color: #363636 !important;
}

.has-text-primary {
  color: #00aac3 !important;
}

a.has-text-primary:hover, a.has-text-primary:focus {
  color: #5a32c7 !important;
}

.has-background-primary {
  background-color: #00aac3 !important;
}

.has-text-link {
  color: #00aac3 !important;
}

a.has-text-link:hover, a.has-text-link:focus {
  color: #5a32c7 !important;
}

.has-background-link {
  background-color: #00aac3 !important;
}

.has-text-info {
  color: #167df0 !important;
}

a.has-text-info:hover, a.has-text-info:focus {
  color: #0d64c6 !important;
}

.has-background-info {
  background-color: #167df0 !important;
}

.has-text-success {
  color: #23d160 !important;
}

a.has-text-success:hover, a.has-text-success:focus {
  color: #1ca64c !important;
}

.has-background-success {
  background-color: #23d160 !important;
}

.has-text-warning {
  color: #ffdd57 !important;
}

a.has-text-warning:hover, a.has-text-warning:focus {
  color: #ffd324 !important;
}

.has-background-warning {
  background-color: #ffdd57 !important;
}

.has-text-danger {
  color: #ff3860 !important;
}

a.has-text-danger:hover, a.has-text-danger:focus {
  color: #ff0537 !important;
}

.has-background-danger {
  background-color: #ff3860 !important;
}

.has-text-black-bis {
  color: #121212 !important;
}

.has-background-black-bis {
  background-color: #121212 !important;
}

.has-text-black-ter {
  color: #242424 !important;
}

.has-background-black-ter {
  background-color: #242424 !important;
}

.has-text-grey-darker {
  color: #363636 !important;
}

.has-background-grey-darker {
  background-color: #363636 !important;
}

.has-text-grey-dark {
  color: #4a4a4a !important;
}

.has-background-grey-dark {
  background-color: #4a4a4a !important;
}

.has-text-grey {
  color: #7a7a7a !important;
}

.has-background-grey {
  background-color: #7a7a7a !important;
}

.has-text-grey-light {
  color: #b5b5b5 !important;
}

.has-background-grey-light {
  background-color: #b5b5b5 !important;
}

.has-text-grey-lighter {
  color: #dbdbdb !important;
}

.has-background-grey-lighter {
  background-color: #dbdbdb !important;
}

.has-text-white-ter {
  color: whitesmoke !important;
}

.has-background-white-ter {
  background-color: whitesmoke !important;
}

.has-text-white-bis {
  color: #fafafa !important;
}

.has-background-white-bis {
  background-color: #fafafa !important;
}

.has-text-weight-light {
  font-weight: 300 !important;
}

.has-text-weight-normal {
  font-weight: 400 !important;
}

.has-text-weight-medium {
  font-weight: 500 !important;
}

.has-text-weight-semibold {
  font-weight: 600 !important;
}

.has-text-weight-bold {
  font-weight: 700 !important;
}

.is-family-primary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-secondary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-sans-serif {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-monospace {
  font-family: monospace !important;
}

.is-family-code {
  font-family: monospace !important;
}

.is-block {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .is-block-mobile {
    display: block !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-block-tablet {
    display: block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-block-tablet-only {
    display: block !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-block-touch {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-block-desktop {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-block-desktop-only {
    display: block !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-block-widescreen {
    display: block !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-block-widescreen-only {
    display: block !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-block-fullhd {
    display: block !important;
  }
}
.is-flex {
  display: flex !important;
}

@media screen and (max-width: 768px) {
  .is-flex-mobile {
    display: flex !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-flex-tablet {
    display: flex !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-flex-tablet-only {
    display: flex !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-flex-touch {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-flex-desktop {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-flex-desktop-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-flex-widescreen {
    display: flex !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-flex-widescreen-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-flex-fullhd {
    display: flex !important;
  }
}
.is-inline {
  display: inline !important;
}

@media screen and (max-width: 768px) {
  .is-inline-mobile {
    display: inline !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-tablet {
    display: inline !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-tablet-only {
    display: inline !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-touch {
    display: inline !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-desktop {
    display: inline !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-inline-desktop-only {
    display: inline !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-inline-widescreen {
    display: inline !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-inline-widescreen-only {
    display: inline !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-fullhd {
    display: inline !important;
  }
}
.is-inline-block {
  display: inline-block !important;
}

@media screen and (max-width: 768px) {
  .is-inline-block-mobile {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-block-tablet {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-block-tablet-only {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-block-touch {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-block-desktop {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-inline-block-desktop-only {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-inline-block-widescreen {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-inline-block-widescreen-only {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-block-fullhd {
    display: inline-block !important;
  }
}
.is-inline-flex {
  display: inline-flex !important;
}

@media screen and (max-width: 768px) {
  .is-inline-flex-mobile {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-flex-tablet {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-flex-tablet-only {
    display: inline-flex !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-flex-touch {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-flex-desktop {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-inline-flex-desktop-only {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-inline-flex-widescreen {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-inline-flex-widescreen-only {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-flex-fullhd {
    display: inline-flex !important;
  }
}
.is-hidden {
  display: none !important;
}

.is-sr-only {
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

@media screen and (max-width: 768px) {
  .is-hidden-mobile {
    display: none !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-hidden-tablet {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-hidden-tablet-only {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-hidden-touch {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-hidden-desktop {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-hidden-desktop-only {
    display: none !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-hidden-widescreen {
    display: none !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-hidden-widescreen-only {
    display: none !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-hidden-fullhd {
    display: none !important;
  }
}
.is-invisible {
  visibility: hidden !important;
}

@media screen and (max-width: 768px) {
  .is-invisible-mobile {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-invisible-tablet {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-invisible-tablet-only {
    visibility: hidden !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-invisible-touch {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-invisible-desktop {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .is-invisible-desktop-only {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1216px) {
  .is-invisible-widescreen {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .is-invisible-widescreen-only {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-invisible-fullhd {
    visibility: hidden !important;
  }
}
.is-marginless {
  margin: 0 !important;
}

.is-paddingless {
  padding: 0 !important;
}

.is-radiusless {
  border-radius: 0 !important;
}

.is-shadowless {
  box-shadow: none !important;
}

.is-relative {
  position: relative !important;
}

.box {
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
  color: #4a4a4a;
  display: block;
  padding: 1.25rem;
}

a.box:hover, a.box:focus {
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #00aac3;
}

a.box:active {
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #00aac3;
}

.button {
  background-color: white;
  border-color: #dbdbdb;
  border-width: 1px;
  color: #363636;
  cursor: pointer;
  justify-content: center;
  padding-bottom: calc(0.375em - 1px);
  padding-left: 0.75em;
  padding-right: 0.75em;
  padding-top: calc(0.375em - 1px);
  text-align: center;
  white-space: nowrap;
}

.button strong {
  color: inherit;
}

.button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large {
  height: 1.5em;
  width: 1.5em;
}

.button .icon:first-child:not(:last-child) {
  margin-left: calc(-0.375em - 1px);
  margin-right: 0.1875em;
}

.button .icon:last-child:not(:first-child) {
  margin-left: 0.1875em;
  margin-right: calc(-0.375em - 1px);
}

.button .icon:first-child:last-child {
  margin-left: calc(-0.375em - 1px);
  margin-right: calc(-0.375em - 1px);
}

.button:hover, .button.is-hovered {
  border-color: #b5b5b5;
  color: #363636;
}

.button:focus, .button.is-focused {
  border-color: #00aac3;
  color: #363636;
}

.button:focus:not(:active), .button.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.button:active, .button.is-active {
  border-color: #4a4a4a;
  color: #363636;
}

.button.is-text {
  background-color: transparent;
  border-color: transparent;
  color: #4a4a4a;
  text-decoration: underline;
}

.button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused {
  background-color: whitesmoke;
  color: #363636;
}

.button.is-text:active, .button.is-text.is-active {
  background-color: #e8e8e8;
  color: #363636;
}

.button.is-text[disabled],
fieldset[disabled] .button.is-text {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.button.is-white {
  background-color: white;
  border-color: transparent;
  color: #0a0a0a;
}

.button.is-white:hover, .button.is-white.is-hovered {
  background-color: #f9f9f9;
  border-color: transparent;
  color: #0a0a0a;
}

.button.is-white:focus, .button.is-white.is-focused {
  border-color: transparent;
  color: #0a0a0a;
}

.button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.button.is-white:active, .button.is-white.is-active {
  background-color: #f2f2f2;
  border-color: transparent;
  color: #0a0a0a;
}

.button.is-white[disabled],
fieldset[disabled] .button.is-white {
  background-color: white;
  border-color: transparent;
  box-shadow: none;
}

.button.is-white.is-inverted {
  background-color: #0a0a0a;
  color: white;
}

.button.is-white.is-inverted:hover, .button.is-white.is-inverted.is-hovered {
  background-color: black;
}

.button.is-white.is-inverted[disabled],
fieldset[disabled] .button.is-white.is-inverted {
  background-color: #0a0a0a;
  border-color: transparent;
  box-shadow: none;
  color: white;
}

.button.is-white.is-loading::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}

.button.is-white.is-outlined {
  background-color: transparent;
  border-color: white;
  color: white;
}

.button.is-white.is-outlined:hover, .button.is-white.is-outlined.is-hovered, .button.is-white.is-outlined:focus, .button.is-white.is-outlined.is-focused {
  background-color: white;
  border-color: white;
  color: #0a0a0a;
}

.button.is-white.is-outlined.is-loading::after {
  border-color: transparent transparent white white !important;
}

.button.is-white.is-outlined.is-loading:hover::after, .button.is-white.is-outlined.is-loading.is-hovered::after, .button.is-white.is-outlined.is-loading:focus::after, .button.is-white.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}

.button.is-white.is-outlined[disabled],
fieldset[disabled] .button.is-white.is-outlined {
  background-color: transparent;
  border-color: white;
  box-shadow: none;
  color: white;
}

.button.is-white.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  color: #0a0a0a;
}

.button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined.is-hovered, .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined.is-focused {
  background-color: #0a0a0a;
  color: white;
}

.button.is-white.is-inverted.is-outlined.is-loading:hover::after, .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-white.is-inverted.is-outlined.is-loading:focus::after, .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent white white !important;
}

.button.is-white.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-white.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  box-shadow: none;
  color: #0a0a0a;
}

.button.is-black {
  background-color: #0a0a0a;
  border-color: transparent;
  color: white;
}

.button.is-black:hover, .button.is-black.is-hovered {
  background-color: #040404;
  border-color: transparent;
  color: white;
}

.button.is-black:focus, .button.is-black.is-focused {
  border-color: transparent;
  color: white;
}

.button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
}

.button.is-black:active, .button.is-black.is-active {
  background-color: black;
  border-color: transparent;
  color: white;
}

.button.is-black[disabled],
fieldset[disabled] .button.is-black {
  background-color: #0a0a0a;
  border-color: transparent;
  box-shadow: none;
}

.button.is-black.is-inverted {
  background-color: white;
  color: #0a0a0a;
}

.button.is-black.is-inverted:hover, .button.is-black.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

.button.is-black.is-inverted[disabled],
fieldset[disabled] .button.is-black.is-inverted {
  background-color: white;
  border-color: transparent;
  box-shadow: none;
  color: #0a0a0a;
}

.button.is-black.is-loading::after {
  border-color: transparent transparent white white !important;
}

.button.is-black.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  color: #0a0a0a;
}

.button.is-black.is-outlined:hover, .button.is-black.is-outlined.is-hovered, .button.is-black.is-outlined:focus, .button.is-black.is-outlined.is-focused {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: white;
}

.button.is-black.is-outlined.is-loading::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}

.button.is-black.is-outlined.is-loading:hover::after, .button.is-black.is-outlined.is-loading.is-hovered::after, .button.is-black.is-outlined.is-loading:focus::after, .button.is-black.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent white white !important;
}

.button.is-black.is-outlined[disabled],
fieldset[disabled] .button.is-black.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  box-shadow: none;
  color: #0a0a0a;
}

.button.is-black.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  color: white;
}

.button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined.is-hovered, .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined.is-focused {
  background-color: white;
  color: #0a0a0a;
}

.button.is-black.is-inverted.is-outlined.is-loading:hover::after, .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-black.is-inverted.is-outlined.is-loading:focus::after, .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}

.button.is-black.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-black.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  box-shadow: none;
  color: white;
}

.button.is-light {
  background-color: whitesmoke;
  border-color: transparent;
  color: #363636;
}

.button.is-light:hover, .button.is-light.is-hovered {
  background-color: #eeeeee;
  border-color: transparent;
  color: #363636;
}

.button.is-light:focus, .button.is-light.is-focused {
  border-color: transparent;
  color: #363636;
}

.button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
}

.button.is-light:active, .button.is-light.is-active {
  background-color: #e8e8e8;
  border-color: transparent;
  color: #363636;
}

.button.is-light[disabled],
fieldset[disabled] .button.is-light {
  background-color: whitesmoke;
  border-color: transparent;
  box-shadow: none;
}

.button.is-light.is-inverted {
  background-color: #363636;
  color: whitesmoke;
}

.button.is-light.is-inverted:hover, .button.is-light.is-inverted.is-hovered {
  background-color: #292929;
}

.button.is-light.is-inverted[disabled],
fieldset[disabled] .button.is-light.is-inverted {
  background-color: #363636;
  border-color: transparent;
  box-shadow: none;
  color: whitesmoke;
}

.button.is-light.is-loading::after {
  border-color: transparent transparent #363636 #363636 !important;
}

.button.is-light.is-outlined {
  background-color: transparent;
  border-color: whitesmoke;
  color: whitesmoke;
}

.button.is-light.is-outlined:hover, .button.is-light.is-outlined.is-hovered, .button.is-light.is-outlined:focus, .button.is-light.is-outlined.is-focused {
  background-color: whitesmoke;
  border-color: whitesmoke;
  color: #363636;
}

.button.is-light.is-outlined.is-loading::after {
  border-color: transparent transparent whitesmoke whitesmoke !important;
}

.button.is-light.is-outlined.is-loading:hover::after, .button.is-light.is-outlined.is-loading.is-hovered::after, .button.is-light.is-outlined.is-loading:focus::after, .button.is-light.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #363636 #363636 !important;
}

.button.is-light.is-outlined[disabled],
fieldset[disabled] .button.is-light.is-outlined {
  background-color: transparent;
  border-color: whitesmoke;
  box-shadow: none;
  color: whitesmoke;
}

.button.is-light.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #363636;
  color: #363636;
}

.button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined.is-hovered, .button.is-light.is-inverted.is-outlined:focus, .button.is-light.is-inverted.is-outlined.is-focused {
  background-color: #363636;
  color: whitesmoke;
}

.button.is-light.is-inverted.is-outlined.is-loading:hover::after, .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-light.is-inverted.is-outlined.is-loading:focus::after, .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent whitesmoke whitesmoke !important;
}

.button.is-light.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-light.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #363636;
  box-shadow: none;
  color: #363636;
}

.button.is-dark {
  background-color: #363636;
  border-color: transparent;
  color: whitesmoke;
}

.button.is-dark:hover, .button.is-dark.is-hovered {
  background-color: #2f2f2f;
  border-color: transparent;
  color: whitesmoke;
}

.button.is-dark:focus, .button.is-dark.is-focused {
  border-color: transparent;
  color: whitesmoke;
}

.button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
}

.button.is-dark:active, .button.is-dark.is-active {
  background-color: #292929;
  border-color: transparent;
  color: whitesmoke;
}

.button.is-dark[disabled],
fieldset[disabled] .button.is-dark {
  background-color: #363636;
  border-color: transparent;
  box-shadow: none;
}

.button.is-dark.is-inverted {
  background-color: whitesmoke;
  color: #363636;
}

.button.is-dark.is-inverted:hover, .button.is-dark.is-inverted.is-hovered {
  background-color: #e8e8e8;
}

.button.is-dark.is-inverted[disabled],
fieldset[disabled] .button.is-dark.is-inverted {
  background-color: whitesmoke;
  border-color: transparent;
  box-shadow: none;
  color: #363636;
}

.button.is-dark.is-loading::after {
  border-color: transparent transparent whitesmoke whitesmoke !important;
}

.button.is-dark.is-outlined {
  background-color: transparent;
  border-color: #363636;
  color: #363636;
}

.button.is-dark.is-outlined:hover, .button.is-dark.is-outlined.is-hovered, .button.is-dark.is-outlined:focus, .button.is-dark.is-outlined.is-focused {
  background-color: #363636;
  border-color: #363636;
  color: whitesmoke;
}

.button.is-dark.is-outlined.is-loading::after {
  border-color: transparent transparent #363636 #363636 !important;
}

.button.is-dark.is-outlined.is-loading:hover::after, .button.is-dark.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-outlined.is-loading:focus::after, .button.is-dark.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent whitesmoke whitesmoke !important;
}

.button.is-dark.is-outlined[disabled],
fieldset[disabled] .button.is-dark.is-outlined {
  background-color: transparent;
  border-color: #363636;
  box-shadow: none;
  color: #363636;
}

.button.is-dark.is-inverted.is-outlined {
  background-color: transparent;
  border-color: whitesmoke;
  color: whitesmoke;
}

.button.is-dark.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined.is-hovered, .button.is-dark.is-inverted.is-outlined:focus, .button.is-dark.is-inverted.is-outlined.is-focused {
  background-color: whitesmoke;
  color: #363636;
}

.button.is-dark.is-inverted.is-outlined.is-loading:hover::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-inverted.is-outlined.is-loading:focus::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #363636 #363636 !important;
}

.button.is-dark.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-dark.is-inverted.is-outlined {
  background-color: transparent;
  border-color: whitesmoke;
  box-shadow: none;
  color: whitesmoke;
}

.button.is-primary {
  background-color: #00aac3;
  border-color: transparent;
  color: white;
}

.button.is-primary:hover, .button.is-primary.is-hovered {
  background-color: #714dd2;
  border-color: transparent;
  color: white;
}

.button.is-primary:focus, .button.is-primary.is-focused {
  border-color: transparent;
  color: white;
}

.button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.button.is-primary:active, .button.is-primary.is-active {
  background-color: #6943d0;
  border-color: transparent;
  color: white;
}

.button.is-primary[disabled],
fieldset[disabled] .button.is-primary {
  background-color: #00aac3;
  border-color: transparent;
  box-shadow: none;
}

.button.is-primary.is-inverted {
  background-color: white;
  color: #00aac3;
}

.button.is-primary.is-inverted:hover, .button.is-primary.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

.button.is-primary.is-inverted[disabled],
fieldset[disabled] .button.is-primary.is-inverted {
  background-color: white;
  border-color: transparent;
  box-shadow: none;
  color: #00aac3;
}

.button.is-primary.is-loading::after {
  border-color: transparent transparent white white !important;
}

.button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #00aac3;
  color: #00aac3;
}

.button.is-primary.is-outlined:hover, .button.is-primary.is-outlined.is-hovered, .button.is-primary.is-outlined:focus, .button.is-primary.is-outlined.is-focused {
  background-color: #00aac3;
  border-color: #00aac3;
  color: white;
}

.button.is-primary.is-outlined.is-loading::after {
  border-color: transparent transparent #00aac3 #00aac3 !important;
}

.button.is-primary.is-outlined.is-loading:hover::after, .button.is-primary.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-outlined.is-loading:focus::after, .button.is-primary.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent white white !important;
}

.button.is-primary.is-outlined[disabled],
fieldset[disabled] .button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #00aac3;
  box-shadow: none;
  color: #00aac3;
}

.button.is-primary.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  color: white;
}

.button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined.is-hovered, .button.is-primary.is-inverted.is-outlined:focus, .button.is-primary.is-inverted.is-outlined.is-focused {
  background-color: white;
  color: #00aac3;
}

.button.is-primary.is-inverted.is-outlined.is-loading:hover::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #00aac3 #00aac3 !important;
}

.button.is-primary.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-primary.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  box-shadow: none;
  color: white;
}

.button.is-link {
  background-color: #00aac3;
  border-color: transparent;
  color: white;
}

.button.is-link:hover, .button.is-link.is-hovered {
  background-color: #714dd2;
  border-color: transparent;
  color: white;
}

.button.is-link:focus, .button.is-link.is-focused {
  border-color: transparent;
  color: white;
}

.button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.button.is-link:active, .button.is-link.is-active {
  background-color: #6943d0;
  border-color: transparent;
  color: white;
}

.button.is-link[disabled],
fieldset[disabled] .button.is-link {
  background-color: #00aac3;
  border-color: transparent;
  box-shadow: none;
}

.button.is-link.is-inverted {
  background-color: white;
  color: #00aac3;
}

.button.is-link.is-inverted:hover, .button.is-link.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

.button.is-link.is-inverted[disabled],
fieldset[disabled] .button.is-link.is-inverted {
  background-color: white;
  border-color: transparent;
  box-shadow: none;
  color: #00aac3;
}

.button.is-link.is-loading::after {
  border-color: transparent transparent white white !important;
}

.button.is-link.is-outlined {
  background-color: transparent;
  border-color: #00aac3;
  color: #00aac3;
}

.button.is-link.is-outlined:hover, .button.is-link.is-outlined.is-hovered, .button.is-link.is-outlined:focus, .button.is-link.is-outlined.is-focused {
  background-color: #00aac3;
  border-color: #00aac3;
  color: white;
}

.button.is-link.is-outlined.is-loading::after {
  border-color: transparent transparent #00aac3 #00aac3 !important;
}

.button.is-link.is-outlined.is-loading:hover::after, .button.is-link.is-outlined.is-loading.is-hovered::after, .button.is-link.is-outlined.is-loading:focus::after, .button.is-link.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent white white !important;
}

.button.is-link.is-outlined[disabled],
fieldset[disabled] .button.is-link.is-outlined {
  background-color: transparent;
  border-color: #00aac3;
  box-shadow: none;
  color: #00aac3;
}

.button.is-link.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  color: white;
}

.button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined.is-hovered, .button.is-link.is-inverted.is-outlined:focus, .button.is-link.is-inverted.is-outlined.is-focused {
  background-color: white;
  color: #00aac3;
}

.button.is-link.is-inverted.is-outlined.is-loading:hover::after, .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-link.is-inverted.is-outlined.is-loading:focus::after, .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #00aac3 #00aac3 !important;
}

.button.is-link.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-link.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  box-shadow: none;
  color: white;
}

.button.is-info {
  background-color: #167df0;
  border-color: transparent;
  color: #fff;
}

.button.is-info:hover, .button.is-info.is-hovered {
  background-color: #0f77ea;
  border-color: transparent;
  color: #fff;
}

.button.is-info:focus, .button.is-info.is-focused {
  border-color: transparent;
  color: #fff;
}

.button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(22, 125, 240, 0.25);
}

.button.is-info:active, .button.is-info.is-active {
  background-color: #0e71de;
  border-color: transparent;
  color: #fff;
}

.button.is-info[disabled],
fieldset[disabled] .button.is-info {
  background-color: #167df0;
  border-color: transparent;
  box-shadow: none;
}

.button.is-info.is-inverted {
  background-color: #fff;
  color: #167df0;
}

.button.is-info.is-inverted:hover, .button.is-info.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

.button.is-info.is-inverted[disabled],
fieldset[disabled] .button.is-info.is-inverted {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
  color: #167df0;
}

.button.is-info.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-info.is-outlined {
  background-color: transparent;
  border-color: #167df0;
  color: #167df0;
}

.button.is-info.is-outlined:hover, .button.is-info.is-outlined.is-hovered, .button.is-info.is-outlined:focus, .button.is-info.is-outlined.is-focused {
  background-color: #167df0;
  border-color: #167df0;
  color: #fff;
}

.button.is-info.is-outlined.is-loading::after {
  border-color: transparent transparent #167df0 #167df0 !important;
}

.button.is-info.is-outlined.is-loading:hover::after, .button.is-info.is-outlined.is-loading.is-hovered::after, .button.is-info.is-outlined.is-loading:focus::after, .button.is-info.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-info.is-outlined[disabled],
fieldset[disabled] .button.is-info.is-outlined {
  background-color: transparent;
  border-color: #167df0;
  box-shadow: none;
  color: #167df0;
}

.button.is-info.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined.is-hovered, .button.is-info.is-inverted.is-outlined:focus, .button.is-info.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #167df0;
}

.button.is-info.is-inverted.is-outlined.is-loading:hover::after, .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-info.is-inverted.is-outlined.is-loading:focus::after, .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #167df0 #167df0 !important;
}

.button.is-info.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-info.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}

.button.is-success {
  background-color: #23d160;
  border-color: transparent;
  color: #fff;
}

.button.is-success:hover, .button.is-success.is-hovered {
  background-color: #22c65b;
  border-color: transparent;
  color: #fff;
}

.button.is-success:focus, .button.is-success.is-focused {
  border-color: transparent;
  color: #fff;
}

.button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
}

.button.is-success:active, .button.is-success.is-active {
  background-color: #20bc56;
  border-color: transparent;
  color: #fff;
}

.button.is-success[disabled],
fieldset[disabled] .button.is-success {
  background-color: #23d160;
  border-color: transparent;
  box-shadow: none;
}

.button.is-success.is-inverted {
  background-color: #fff;
  color: #23d160;
}

.button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

.button.is-success.is-inverted[disabled],
fieldset[disabled] .button.is-success.is-inverted {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
  color: #23d160;
}

.button.is-success.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-success.is-outlined {
  background-color: transparent;
  border-color: #23d160;
  color: #23d160;
}

.button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused {
  background-color: #23d160;
  border-color: #23d160;
  color: #fff;
}

.button.is-success.is-outlined.is-loading::after {
  border-color: transparent transparent #23d160 #23d160 !important;
}

.button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-success.is-outlined[disabled],
fieldset[disabled] .button.is-success.is-outlined {
  background-color: transparent;
  border-color: #23d160;
  box-shadow: none;
  color: #23d160;
}

.button.is-success.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #23d160;
}

.button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #23d160 #23d160 !important;
}

.button.is-success.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-success.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}

.button.is-warning {
  background-color: #ffdd57;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.button.is-warning:hover, .button.is-warning.is-hovered {
  background-color: #ffdb4a;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.button.is-warning:focus, .button.is-warning.is-focused {
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}

.button.is-warning:active, .button.is-warning.is-active {
  background-color: #ffd83d;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.button.is-warning[disabled],
fieldset[disabled] .button.is-warning {
  background-color: #ffdd57;
  border-color: transparent;
  box-shadow: none;
}

.button.is-warning.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffdd57;
}

.button.is-warning.is-inverted:hover, .button.is-warning.is-inverted.is-hovered {
  background-color: rgba(0, 0, 0, 0.7);
}

.button.is-warning.is-inverted[disabled],
fieldset[disabled] .button.is-warning.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: transparent;
  box-shadow: none;
  color: #ffdd57;
}

.button.is-warning.is-loading::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}

.button.is-warning.is-outlined {
  background-color: transparent;
  border-color: #ffdd57;
  color: #ffdd57;
}

.button.is-warning.is-outlined:hover, .button.is-warning.is-outlined.is-hovered, .button.is-warning.is-outlined:focus, .button.is-warning.is-outlined.is-focused {
  background-color: #ffdd57;
  border-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.button.is-warning.is-outlined.is-loading::after {
  border-color: transparent transparent #ffdd57 #ffdd57 !important;
}

.button.is-warning.is-outlined.is-loading:hover::after, .button.is-warning.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-outlined.is-loading:focus::after, .button.is-warning.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}

.button.is-warning.is-outlined[disabled],
fieldset[disabled] .button.is-warning.is-outlined {
  background-color: transparent;
  border-color: #ffdd57;
  box-shadow: none;
  color: #ffdd57;
}

.button.is-warning.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  color: rgba(0, 0, 0, 0.7);
}

.button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined.is-hovered, .button.is-warning.is-inverted.is-outlined:focus, .button.is-warning.is-inverted.is-outlined.is-focused {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffdd57;
}

.button.is-warning.is-inverted.is-outlined.is-loading:hover::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-inverted.is-outlined.is-loading:focus::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #ffdd57 #ffdd57 !important;
}

.button.is-warning.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-warning.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  box-shadow: none;
  color: rgba(0, 0, 0, 0.7);
}

.button.is-danger {
  background-color: #ff3860;
  border-color: transparent;
  color: #fff;
}

.button.is-danger:hover, .button.is-danger.is-hovered {
  background-color: #ff2b56;
  border-color: transparent;
  color: #fff;
}

.button.is-danger:focus, .button.is-danger.is-focused {
  border-color: transparent;
  color: #fff;
}

.button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
}

.button.is-danger:active, .button.is-danger.is-active {
  background-color: #ff1f4b;
  border-color: transparent;
  color: #fff;
}

.button.is-danger[disabled],
fieldset[disabled] .button.is-danger {
  background-color: #ff3860;
  border-color: transparent;
  box-shadow: none;
}

.button.is-danger.is-inverted {
  background-color: #fff;
  color: #ff3860;
}

.button.is-danger.is-inverted:hover, .button.is-danger.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

.button.is-danger.is-inverted[disabled],
fieldset[disabled] .button.is-danger.is-inverted {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
  color: #ff3860;
}

.button.is-danger.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-danger.is-outlined {
  background-color: transparent;
  border-color: #ff3860;
  color: #ff3860;
}

.button.is-danger.is-outlined:hover, .button.is-danger.is-outlined.is-hovered, .button.is-danger.is-outlined:focus, .button.is-danger.is-outlined.is-focused {
  background-color: #ff3860;
  border-color: #ff3860;
  color: #fff;
}

.button.is-danger.is-outlined.is-loading::after {
  border-color: transparent transparent #ff3860 #ff3860 !important;
}

.button.is-danger.is-outlined.is-loading:hover::after, .button.is-danger.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-outlined.is-loading:focus::after, .button.is-danger.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}

.button.is-danger.is-outlined[disabled],
fieldset[disabled] .button.is-danger.is-outlined {
  background-color: transparent;
  border-color: #ff3860;
  box-shadow: none;
  color: #ff3860;
}

.button.is-danger.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined.is-hovered, .button.is-danger.is-inverted.is-outlined:focus, .button.is-danger.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #ff3860;
}

.button.is-danger.is-inverted.is-outlined.is-loading:hover::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-inverted.is-outlined.is-loading:focus::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #ff3860 #ff3860 !important;
}

.button.is-danger.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-danger.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  box-shadow: none;
  color: #fff;
}

.button.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.button.is-normal {
  font-size: 1rem;
}

.button.is-medium {
  font-size: 1.25rem;
}

.button.is-large {
  font-size: 1.5rem;
}

.button[disabled],
fieldset[disabled] .button {
  background-color: white;
  border-color: #dbdbdb;
  box-shadow: none;
  opacity: 0.5;
}

.button.is-fullwidth {
  display: flex;
  width: 100%;
}

.button.is-loading {
  color: transparent !important;
  pointer-events: none;
}

.button.is-loading::after {
  position: absolute;
  left: calc(50% - (1em / 2));
  top: calc(50% - (1em / 2));
  position: absolute !important;
}

.button.is-static {
  background-color: whitesmoke;
  border-color: #dbdbdb;
  color: #7a7a7a;
  box-shadow: none;
  pointer-events: none;
}

.button.is-rounded {
  border-radius: 290486px;
  padding-left: 1em;
  padding-right: 1em;
}

.buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.buttons .button {
  margin-bottom: 0.5rem;
}

.buttons .button:not(:last-child):not(.is-fullwidth) {
  margin-right: 0.5rem;
}

.buttons:last-child {
  margin-bottom: -0.5rem;
}

.buttons:not(:last-child) {
  margin-bottom: 1rem;
}

.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) {
  border-radius: 2px;
  font-size: 0.75rem;
}

.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) {
  font-size: 1.25rem;
}

.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) {
  font-size: 1.5rem;
}

.buttons.has-addons .button:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.buttons.has-addons .button:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-right: -1px;
}

.buttons.has-addons .button:last-child {
  margin-right: 0;
}

.buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered {
  z-index: 2;
}

.buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected {
  z-index: 3;
}

.buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover {
  z-index: 4;
}

.buttons.has-addons .button.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}

.buttons.is-centered {
  justify-content: center;
}

.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.buttons.is-right {
  justify-content: flex-end;
}

.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.container {
  flex-grow: 1;
  margin: 0 auto;
  position: relative;
  width: auto;
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 960px;
  }

  .container.is-fluid {
    margin-left: 32px;
    margin-right: 32px;
    max-width: none;
  }
}
@media screen and (max-width: 1215px) {
  .container.is-widescreen {
    max-width: 1152px;
  }
}
@media screen and (max-width: 1407px) {
  .container.is-fullhd {
    max-width: 1344px;
  }
}
@media screen and (min-width: 1216px) {
  .container {
    max-width: 1152px;
  }
}
@media screen and (min-width: 1408px) {
  .container {
    max-width: 1344px;
  }
}
.content li + li {
  margin-top: 0.25em;
}

.content p:not(:last-child),
.content dl:not(:last-child),
.content ol:not(:last-child),
.content ul:not(:last-child),
.content blockquote:not(:last-child),
.content pre:not(:last-child),
.content table:not(:last-child) {
  margin-bottom: 1em;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: #363636;
  font-weight: 600;
  line-height: 1.125;
}

.content h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.content h1:not(:first-child) {
  margin-top: 1em;
}

.content h2 {
  font-size: 1.75em;
  margin-bottom: 0.5714em;
}

.content h2:not(:first-child) {
  margin-top: 1.1428em;
}

.content h3 {
  font-size: 1.5em;
  margin-bottom: 0.6666em;
}

.content h3:not(:first-child) {
  margin-top: 1.3333em;
}

.content h4 {
  font-size: 1.25em;
  margin-bottom: 0.8em;
}

.content h5 {
  font-size: 1.125em;
  margin-bottom: 0.8888em;
}

.content h6 {
  font-size: 1em;
  margin-bottom: 1em;
}

.content blockquote {
  background-color: whitesmoke;
  border-left: 5px solid #dbdbdb;
  padding: 1.25em 1.5em;
}

.content ol {
  list-style-position: outside;
  margin-left: 2em;
  margin-top: 1em;
}

.content ol:not([type]) {
  list-style-type: decimal;
}

.content ol:not([type]).is-lower-alpha {
  list-style-type: lower-alpha;
}

.content ol:not([type]).is-lower-roman {
  list-style-type: lower-roman;
}

.content ol:not([type]).is-upper-alpha {
  list-style-type: upper-alpha;
}

.content ol:not([type]).is-upper-roman {
  list-style-type: upper-roman;
}

.content ul {
  list-style: disc outside;
  margin-left: 2em;
  margin-top: 1em;
}

.content ul ul {
  list-style-type: circle;
  margin-top: 0.5em;
}

.content ul ul ul {
  list-style-type: square;
}

.content dd {
  margin-left: 2em;
}

.content figure {
  margin-left: 2em;
  margin-right: 2em;
  text-align: center;
}

.content figure:not(:first-child) {
  margin-top: 2em;
}

.content figure:not(:last-child) {
  margin-bottom: 2em;
}

.content figure img {
  display: inline-block;
}

.content figure figcaption {
  font-style: italic;
}

.content pre {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding: 1.25em 1.5em;
  white-space: pre;
  word-wrap: normal;
}

.content sup,
.content sub {
  font-size: 75%;
}

.content table {
  width: 100%;
}

.content table td,
.content table th {
  border: 1px solid #dbdbdb;
  border-width: 0 0 1px;
  padding: 0.5em 0.75em;
  vertical-align: top;
}

.content table th {
  color: #363636;
}

.content table th:not([align]) {
  text-align: left;
}

.content table thead td,
.content table thead th {
  border-width: 0 0 2px;
  color: #363636;
}

.content table tfoot td,
.content table tfoot th {
  border-width: 2px 0 0;
  color: #363636;
}

.content table tbody tr:last-child td,
.content table tbody tr:last-child th {
  border-bottom-width: 0;
}

.content .tabs li + li {
  margin-top: 0;
}

.content.is-small {
  font-size: 0.75rem;
}

.content.is-medium {
  font-size: 1.25rem;
}

.content.is-large {
  font-size: 1.5rem;
}

.icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  height: 1.5rem;
  width: 1.5rem;
}

.icon.is-small {
  height: 1rem;
  width: 1rem;
}

.icon.is-medium {
  height: 2rem;
  width: 2rem;
}

.icon.is-large {
  height: 3rem;
  width: 3rem;
}

.image {
  display: block;
  position: relative;
}

.image img {
  display: block;
  height: auto;
  width: 100%;
}

.image img.is-rounded {
  border-radius: 290486px;
}

.image.is-square img,
.image.is-square .has-ratio, .image.is-1by1 img,
.image.is-1by1 .has-ratio, .image.is-5by4 img,
.image.is-5by4 .has-ratio, .image.is-4by3 img,
.image.is-4by3 .has-ratio, .image.is-3by2 img,
.image.is-3by2 .has-ratio, .image.is-5by3 img,
.image.is-5by3 .has-ratio, .image.is-16by9 img,
.image.is-16by9 .has-ratio, .image.is-2by1 img,
.image.is-2by1 .has-ratio, .image.is-3by1 img,
.image.is-3by1 .has-ratio, .image.is-4by5 img,
.image.is-4by5 .has-ratio, .image.is-3by4 img,
.image.is-3by4 .has-ratio, .image.is-2by3 img,
.image.is-2by3 .has-ratio, .image.is-3by5 img,
.image.is-3by5 .has-ratio, .image.is-9by16 img,
.image.is-9by16 .has-ratio, .image.is-1by2 img,
.image.is-1by2 .has-ratio, .image.is-1by3 img,
.image.is-1by3 .has-ratio {
  height: 100%;
  width: 100%;
}

.image.is-square, .image.is-1by1 {
  padding-top: 100%;
}

.image.is-5by4 {
  padding-top: 80%;
}

.image.is-4by3 {
  padding-top: 75%;
}

.image.is-3by2 {
  padding-top: 66.6666%;
}

.image.is-5by3 {
  padding-top: 60%;
}

.image.is-16by9 {
  padding-top: 56.25%;
}

.image.is-2by1 {
  padding-top: 50%;
}

.image.is-3by1 {
  padding-top: 33.3333%;
}

.image.is-4by5 {
  padding-top: 125%;
}

.image.is-3by4 {
  padding-top: 133.3333%;
}

.image.is-2by3 {
  padding-top: 150%;
}

.image.is-3by5 {
  padding-top: 166.6666%;
}

.image.is-9by16 {
  padding-top: 177.7777%;
}

.image.is-1by2 {
  padding-top: 200%;
}

.image.is-1by3 {
  padding-top: 300%;
}

.image.is-16x16 {
  height: 16px;
  width: 16px;
}

.image.is-24x24 {
  height: 24px;
  width: 24px;
}

.image.is-32x32 {
  height: 32px;
  width: 32px;
}

.image.is-48x48 {
  height: 48px;
  width: 48px;
}

.image.is-64x64 {
  height: 64px;
  width: 64px;
}

.image.is-96x96 {
  height: 96px;
  width: 96px;
}

.image.is-128x128 {
  height: 128px;
  width: 128px;
}

.notification {
  background-color: whitesmoke;
  border-radius: 4px;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
  position: relative;
}

.notification a:not(.button):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}

.notification strong {
  color: currentColor;
}

.notification code,
.notification pre {
  background: white;
}

.notification pre code {
  background: transparent;
}

.notification > .delete {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

.notification .title,
.notification .subtitle,
.notification .content {
  color: currentColor;
}

.notification.is-white {
  background-color: white;
  color: #0a0a0a;
}

.notification.is-black {
  background-color: #0a0a0a;
  color: white;
}

.notification.is-light {
  background-color: whitesmoke;
  color: #363636;
}

.notification.is-dark {
  background-color: #363636;
  color: whitesmoke;
}

.notification.is-primary {
  background-color: #00aac3;
  color: white;
}

.notification.is-link {
  background-color: #00aac3;
  color: white;
}

.notification.is-info {
  background-color: #167df0;
  color: #fff;
}

.notification.is-success {
  background-color: #23d160;
  color: #fff;
}

.notification.is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.notification.is-danger {
  background-color: #ff3860;
  color: #fff;
}

.progress {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 290486px;
  display: block;
  height: 1rem;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.progress::-webkit-progress-bar {
  background-color: #dbdbdb;
}

.progress::-webkit-progress-value {
  background-color: #4a4a4a;
}

.progress::-moz-progress-bar {
  background-color: #4a4a4a;
}

.progress::-ms-fill {
  background-color: #4a4a4a;
  border: none;
}

.progress.is-white::-webkit-progress-value {
  background-color: white;
}

.progress.is-white::-moz-progress-bar {
  background-color: white;
}

.progress.is-white::-ms-fill {
  background-color: white;
}

.progress.is-white:indeterminate {
  background-image: linear-gradient(to right, white 30%, #dbdbdb 30%);
}

.progress.is-black::-webkit-progress-value {
  background-color: #0a0a0a;
}

.progress.is-black::-moz-progress-bar {
  background-color: #0a0a0a;
}

.progress.is-black::-ms-fill {
  background-color: #0a0a0a;
}

.progress.is-black:indeterminate {
  background-image: linear-gradient(to right, #0a0a0a 30%, #dbdbdb 30%);
}

.progress.is-light::-webkit-progress-value {
  background-color: whitesmoke;
}

.progress.is-light::-moz-progress-bar {
  background-color: whitesmoke;
}

.progress.is-light::-ms-fill {
  background-color: whitesmoke;
}

.progress.is-light:indeterminate {
  background-image: linear-gradient(to right, whitesmoke 30%, #dbdbdb 30%);
}

.progress.is-dark::-webkit-progress-value {
  background-color: #363636;
}

.progress.is-dark::-moz-progress-bar {
  background-color: #363636;
}

.progress.is-dark::-ms-fill {
  background-color: #363636;
}

.progress.is-dark:indeterminate {
  background-image: linear-gradient(to right, #363636 30%, #dbdbdb 30%);
}

.progress.is-primary::-webkit-progress-value {
  background-color: #00aac3;
}

.progress.is-primary::-moz-progress-bar {
  background-color: #00aac3;
}

.progress.is-primary::-ms-fill {
  background-color: #00aac3;
}

.progress.is-primary:indeterminate {
  background-image: linear-gradient(to right, #00aac3 30%, #dbdbdb 30%);
}

.progress.is-link::-webkit-progress-value {
  background-color: #00aac3;
}

.progress.is-link::-moz-progress-bar {
  background-color: #00aac3;
}

.progress.is-link::-ms-fill {
  background-color: #00aac3;
}

.progress.is-link:indeterminate {
  background-image: linear-gradient(to right, #00aac3 30%, #dbdbdb 30%);
}

.progress.is-info::-webkit-progress-value {
  background-color: #167df0;
}

.progress.is-info::-moz-progress-bar {
  background-color: #167df0;
}

.progress.is-info::-ms-fill {
  background-color: #167df0;
}

.progress.is-info:indeterminate {
  background-image: linear-gradient(to right, #167df0 30%, #dbdbdb 30%);
}

.progress.is-success::-webkit-progress-value {
  background-color: #23d160;
}

.progress.is-success::-moz-progress-bar {
  background-color: #23d160;
}

.progress.is-success::-ms-fill {
  background-color: #23d160;
}

.progress.is-success:indeterminate {
  background-image: linear-gradient(to right, #23d160 30%, #dbdbdb 30%);
}

.progress.is-warning::-webkit-progress-value {
  background-color: #ffdd57;
}

.progress.is-warning::-moz-progress-bar {
  background-color: #ffdd57;
}

.progress.is-warning::-ms-fill {
  background-color: #ffdd57;
}

.progress.is-warning:indeterminate {
  background-image: linear-gradient(to right, #ffdd57 30%, #dbdbdb 30%);
}

.progress.is-danger::-webkit-progress-value {
  background-color: #ff3860;
}

.progress.is-danger::-moz-progress-bar {
  background-color: #ff3860;
}

.progress.is-danger::-ms-fill {
  background-color: #ff3860;
}

.progress.is-danger:indeterminate {
  background-image: linear-gradient(to right, #ff3860 30%, #dbdbdb 30%);
}

.progress:indeterminate {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: moveIndeterminate;
          animation-name: moveIndeterminate;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background-color: #dbdbdb;
  background-image: linear-gradient(to right, #4a4a4a 30%, #dbdbdb 30%);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150% 150%;
}

.progress:indeterminate::-webkit-progress-bar {
  background-color: transparent;
}

.progress:indeterminate::-moz-progress-bar {
  background-color: transparent;
}

.progress.is-small {
  height: 0.75rem;
}

.progress.is-medium {
  height: 1.25rem;
}

.progress.is-large {
  height: 1.5rem;
}

@-webkit-keyframes moveIndeterminate {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}

@keyframes moveIndeterminate {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.table {
  background-color: white;
  color: #363636;
}

.table td,
.table th {
  border: 1px solid #dbdbdb;
  border-width: 0 0 1px;
  padding: 0.5em 0.75em;
  vertical-align: top;
}

.table td.is-white,
.table th.is-white {
  background-color: white;
  border-color: white;
  color: #0a0a0a;
}

.table td.is-black,
.table th.is-black {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: white;
}

.table td.is-light,
.table th.is-light {
  background-color: whitesmoke;
  border-color: whitesmoke;
  color: #363636;
}

.table td.is-dark,
.table th.is-dark {
  background-color: #363636;
  border-color: #363636;
  color: whitesmoke;
}

.table td.is-primary,
.table th.is-primary {
  background-color: #00aac3;
  border-color: #00aac3;
  color: white;
}

.table td.is-link,
.table th.is-link {
  background-color: #00aac3;
  border-color: #00aac3;
  color: white;
}

.table td.is-info,
.table th.is-info {
  background-color: #167df0;
  border-color: #167df0;
  color: #fff;
}

.table td.is-success,
.table th.is-success {
  background-color: #23d160;
  border-color: #23d160;
  color: #fff;
}

.table td.is-warning,
.table th.is-warning {
  background-color: #ffdd57;
  border-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.table td.is-danger,
.table th.is-danger {
  background-color: #ff3860;
  border-color: #ff3860;
  color: #fff;
}

.table td.is-narrow,
.table th.is-narrow {
  white-space: nowrap;
  width: 1%;
}

.table td.is-selected,
.table th.is-selected {
  background-color: #00aac3;
  color: white;
}

.table td.is-selected a,
.table td.is-selected strong,
.table th.is-selected a,
.table th.is-selected strong {
  color: currentColor;
}

.table th {
  color: #363636;
}

.table th:not([align]) {
  text-align: left;
}

.table tr.is-selected {
  background-color: #00aac3;
  color: white;
}

.table tr.is-selected a,
.table tr.is-selected strong {
  color: currentColor;
}

.table tr.is-selected td,
.table tr.is-selected th {
  border-color: white;
  color: currentColor;
}

.table thead {
  background-color: transparent;
}

.table thead td,
.table thead th {
  border-width: 0 0 2px;
  color: #363636;
}

.table tfoot {
  background-color: transparent;
}

.table tfoot td,
.table tfoot th {
  border-width: 2px 0 0;
  color: #363636;
}

.table tbody {
  background-color: transparent;
}

.table tbody tr:last-child td,
.table tbody tr:last-child th {
  border-bottom-width: 0;
}

.table.is-bordered td,
.table.is-bordered th {
  border-width: 1px;
}

.table.is-bordered tr:last-child td,
.table.is-bordered tr:last-child th {
  border-bottom-width: 1px;
}

.table.is-fullwidth {
  width: 100%;
}

.table.is-hoverable tbody tr:not(.is-selected):hover {
  background-color: #fafafa;
}

.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
  background-color: #fafafa;
}

.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
  background-color: whitesmoke;
}

.table.is-narrow td,
.table.is-narrow th {
  padding: 0.25em 0.5em;
}

.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
  background-color: #fafafa;
}

.table-container {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  overflow-y: hidden;
  max-width: 100%;
}

.tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.tags .tag {
  margin-bottom: 0.5rem;
}

.tags .tag:not(:last-child) {
  margin-right: 0.5rem;
}

.tags:last-child {
  margin-bottom: -0.5rem;
}

.tags:not(:last-child) {
  margin-bottom: 1rem;
}

.tags.are-medium .tag:not(.is-normal):not(.is-large) {
  font-size: 1rem;
}

.tags.are-large .tag:not(.is-normal):not(.is-medium) {
  font-size: 1.25rem;
}

.tags.is-centered {
  justify-content: center;
}

.tags.is-centered .tag {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.tags.is-right {
  justify-content: flex-end;
}

.tags.is-right .tag:not(:first-child) {
  margin-left: 0.5rem;
}

.tags.is-right .tag:not(:last-child) {
  margin-right: 0;
}

.tags.has-addons .tag {
  margin-right: 0;
}

.tags.has-addons .tag:not(:first-child) {
  margin-left: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.tags.has-addons .tag:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.tag:not(body) {
  align-items: center;
  background-color: whitesmoke;
  border-radius: 4px;
  color: #4a4a4a;
  display: inline-flex;
  font-size: 0.75rem;
  height: 2em;
  justify-content: center;
  line-height: 1.5;
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
}

.tag:not(body) .delete {
  margin-left: 0.25rem;
  margin-right: -0.375rem;
}

.tag:not(body).is-white {
  background-color: white;
  color: #0a0a0a;
}

.tag:not(body).is-black {
  background-color: #0a0a0a;
  color: white;
}

.tag:not(body).is-light {
  background-color: whitesmoke;
  color: #363636;
}

.tag:not(body).is-dark {
  background-color: #363636;
  color: whitesmoke;
}

.tag:not(body).is-primary {
  background-color: #00aac3;
  color: white;
}

.tag:not(body).is-link {
  background-color: #00aac3;
  color: white;
}

.tag:not(body).is-info {
  background-color: #167df0;
  color: #fff;
}

.tag:not(body).is-success {
  background-color: #23d160;
  color: #fff;
}

.tag:not(body).is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.tag:not(body).is-danger {
  background-color: #ff3860;
  color: #fff;
}

.tag:not(body).is-normal {
  font-size: 0.75rem;
}

.tag:not(body).is-medium {
  font-size: 1rem;
}

.tag:not(body).is-large {
  font-size: 1.25rem;
}

.tag:not(body) .icon:first-child:not(:last-child) {
  margin-left: -0.375em;
  margin-right: 0.1875em;
}

.tag:not(body) .icon:last-child:not(:first-child) {
  margin-left: 0.1875em;
  margin-right: -0.375em;
}

.tag:not(body) .icon:first-child:last-child {
  margin-left: -0.375em;
  margin-right: -0.375em;
}

.tag:not(body).is-delete {
  margin-left: 1px;
  padding: 0;
  position: relative;
  width: 2em;
}

.tag:not(body).is-delete::before, .tag:not(body).is-delete::after {
  background-color: currentColor;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}

.tag:not(body).is-delete::before {
  height: 1px;
  width: 50%;
}

.tag:not(body).is-delete::after {
  height: 50%;
  width: 1px;
}

.tag:not(body).is-delete:hover, .tag:not(body).is-delete:focus {
  background-color: #e8e8e8;
}

.tag:not(body).is-delete:active {
  background-color: #dbdbdb;
}

.tag:not(body).is-rounded {
  border-radius: 290486px;
}

a.tag:hover {
  text-decoration: underline;
}

.title,
.subtitle {
  word-break: break-word;
}

.title em,
.title span,
.subtitle em,
.subtitle span {
  font-weight: inherit;
}

.title sub,
.subtitle sub {
  font-size: 0.75em;
}

.title sup,
.subtitle sup {
  font-size: 0.75em;
}

.title .tag,
.subtitle .tag {
  vertical-align: middle;
}

.title {
  color: #363636;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.125;
}

.title strong {
  color: inherit;
  font-weight: inherit;
}

.title + .highlight {
  margin-top: -0.75rem;
}

.title:not(.is-spaced) + .subtitle {
  margin-top: -1.25rem;
}

.title.is-1 {
  font-size: 3rem;
}

.title.is-2 {
  font-size: 2.5rem;
}

.title.is-3 {
  font-size: 2rem;
}

.title.is-4 {
  font-size: 1.5rem;
}

.title.is-5 {
  font-size: 1.25rem;
}

.title.is-6 {
  font-size: 1rem;
}

.title.is-7 {
  font-size: 0.75rem;
}

.subtitle {
  color: #4a4a4a;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

.subtitle strong {
  color: #363636;
  font-weight: 600;
}

.subtitle:not(.is-spaced) + .title {
  margin-top: -1.25rem;
}

.subtitle.is-1 {
  font-size: 3rem;
}

.subtitle.is-2 {
  font-size: 2.5rem;
}

.subtitle.is-3 {
  font-size: 2rem;
}

.subtitle.is-4 {
  font-size: 1.5rem;
}

.subtitle.is-5 {
  font-size: 1.25rem;
}

.subtitle.is-6 {
  font-size: 1rem;
}

.subtitle.is-7 {
  font-size: 0.75rem;
}

.heading {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.highlight {
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}

.highlight pre {
  overflow: auto;
  max-width: 100%;
}

.number {
  align-items: center;
  background-color: whitesmoke;
  border-radius: 290486px;
  display: inline-flex;
  font-size: 1.25rem;
  height: 2em;
  justify-content: center;
  margin-right: 1.5rem;
  min-width: 2.5em;
  padding: 0.25rem 0.5rem;
  text-align: center;
  vertical-align: top;
}

.input, .taginput .taginput-container.is-focusable, .textarea, .select select {
  background-color: white;
  border-color: #dbdbdb;
  border-radius: 4px;
  color: #363636;
}

.input::-moz-placeholder, .taginput .taginput-container.is-focusable::-moz-placeholder, .textarea::-moz-placeholder, .select select::-moz-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

.input::-webkit-input-placeholder, .taginput .taginput-container.is-focusable::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .select select::-webkit-input-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

.input:-moz-placeholder, .taginput .taginput-container.is-focusable:-moz-placeholder, .textarea:-moz-placeholder, .select select:-moz-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

.input:-ms-input-placeholder, .taginput .taginput-container.is-focusable:-ms-input-placeholder, .textarea:-ms-input-placeholder, .select select:-ms-input-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

.input:hover, .taginput .taginput-container.is-focusable:hover, .textarea:hover, .select select:hover, .is-hovered.input, .taginput .is-hovered.taginput-container.is-focusable, .is-hovered.textarea, .select select.is-hovered {
  border-color: #b5b5b5;
}

.input:focus, .taginput .taginput-container.is-focusable:focus, .textarea:focus, .select select:focus, .is-focused.input, .taginput .is-focused.taginput-container.is-focusable, .is-focused.textarea, .select select.is-focused, .input:active, .taginput .taginput-container.is-focusable:active, .textarea:active, .select select:active, .is-active.input, .taginput .is-active.taginput-container.is-focusable, .is-active.textarea, .select select.is-active {
  border-color: #00aac3;
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.input[disabled], .taginput .taginput-container.is-focusable[disabled], .textarea[disabled], .select select[disabled],
fieldset[disabled] .input,
fieldset[disabled] .taginput .taginput-container.is-focusable,
.taginput fieldset[disabled] .taginput-container.is-focusable,
fieldset[disabled] .textarea,
fieldset[disabled] .select select,
.select fieldset[disabled] select {
  background-color: whitesmoke;
  border-color: whitesmoke;
  box-shadow: none;
  color: #7a7a7a;
}

.input[disabled]::-moz-placeholder, .taginput .taginput-container.is-focusable[disabled]::-moz-placeholder, .textarea[disabled]::-moz-placeholder, .select select[disabled]::-moz-placeholder,
fieldset[disabled] .input::-moz-placeholder,
fieldset[disabled] .taginput .taginput-container.is-focusable::-moz-placeholder,
.taginput fieldset[disabled] .taginput-container.is-focusable::-moz-placeholder,
fieldset[disabled] .textarea::-moz-placeholder,
fieldset[disabled] .select select::-moz-placeholder,
.select fieldset[disabled] select::-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

.input[disabled]::-webkit-input-placeholder, .taginput .taginput-container.is-focusable[disabled]::-webkit-input-placeholder, .textarea[disabled]::-webkit-input-placeholder, .select select[disabled]::-webkit-input-placeholder,
fieldset[disabled] .input::-webkit-input-placeholder,
fieldset[disabled] .taginput .taginput-container.is-focusable::-webkit-input-placeholder,
.taginput fieldset[disabled] .taginput-container.is-focusable::-webkit-input-placeholder,
fieldset[disabled] .textarea::-webkit-input-placeholder,
fieldset[disabled] .select select::-webkit-input-placeholder,
.select fieldset[disabled] select::-webkit-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

.input[disabled]:-moz-placeholder, .taginput .taginput-container.is-focusable[disabled]:-moz-placeholder, .textarea[disabled]:-moz-placeholder, .select select[disabled]:-moz-placeholder,
fieldset[disabled] .input:-moz-placeholder,
fieldset[disabled] .taginput .taginput-container.is-focusable:-moz-placeholder,
.taginput fieldset[disabled] .taginput-container.is-focusable:-moz-placeholder,
fieldset[disabled] .textarea:-moz-placeholder,
fieldset[disabled] .select select:-moz-placeholder,
.select fieldset[disabled] select:-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

.input[disabled]:-ms-input-placeholder, .taginput .taginput-container.is-focusable[disabled]:-ms-input-placeholder, .textarea[disabled]:-ms-input-placeholder, .select select[disabled]:-ms-input-placeholder,
fieldset[disabled] .input:-ms-input-placeholder,
fieldset[disabled] .taginput .taginput-container.is-focusable:-ms-input-placeholder,
.taginput fieldset[disabled] .taginput-container.is-focusable:-ms-input-placeholder,
fieldset[disabled] .textarea:-ms-input-placeholder,
fieldset[disabled] .select select:-ms-input-placeholder,
.select fieldset[disabled] select:-ms-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

.input, .taginput .taginput-container.is-focusable, .textarea {
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  max-width: 100%;
  width: 100%;
}

.input[readonly], .taginput .taginput-container.is-focusable[readonly], .textarea[readonly] {
  box-shadow: none;
}

.is-white.input, .taginput .is-white.taginput-container.is-focusable, .is-white.textarea {
  border-color: white;
}

.is-white.input:focus, .taginput .is-white.taginput-container.is-focusable:focus, .is-white.textarea:focus, .is-white.is-focused.input, .taginput .is-white.is-focused.taginput-container.is-focusable, .is-white.is-focused.textarea, .is-white.input:active, .taginput .is-white.taginput-container.is-focusable:active, .is-white.textarea:active, .is-white.is-active.input, .taginput .is-white.is-active.taginput-container.is-focusable, .is-white.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.is-black.input, .taginput .is-black.taginput-container.is-focusable, .is-black.textarea {
  border-color: #0a0a0a;
}

.is-black.input:focus, .taginput .is-black.taginput-container.is-focusable:focus, .is-black.textarea:focus, .is-black.is-focused.input, .taginput .is-black.is-focused.taginput-container.is-focusable, .is-black.is-focused.textarea, .is-black.input:active, .taginput .is-black.taginput-container.is-focusable:active, .is-black.textarea:active, .is-black.is-active.input, .taginput .is-black.is-active.taginput-container.is-focusable, .is-black.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
}

.is-light.input, .taginput .is-light.taginput-container.is-focusable, .is-light.textarea {
  border-color: whitesmoke;
}

.is-light.input:focus, .taginput .is-light.taginput-container.is-focusable:focus, .is-light.textarea:focus, .is-light.is-focused.input, .taginput .is-light.is-focused.taginput-container.is-focusable, .is-light.is-focused.textarea, .is-light.input:active, .taginput .is-light.taginput-container.is-focusable:active, .is-light.textarea:active, .is-light.is-active.input, .taginput .is-light.is-active.taginput-container.is-focusable, .is-light.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
}

.is-dark.input, .taginput .is-dark.taginput-container.is-focusable, .is-dark.textarea {
  border-color: #363636;
}

.is-dark.input:focus, .taginput .is-dark.taginput-container.is-focusable:focus, .is-dark.textarea:focus, .is-dark.is-focused.input, .taginput .is-dark.is-focused.taginput-container.is-focusable, .is-dark.is-focused.textarea, .is-dark.input:active, .taginput .is-dark.taginput-container.is-focusable:active, .is-dark.textarea:active, .is-dark.is-active.input, .taginput .is-dark.is-active.taginput-container.is-focusable, .is-dark.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
}

.is-primary.input, .taginput .is-primary.taginput-container.is-focusable, .is-primary.textarea {
  border-color: #00aac3;
}

.is-primary.input:focus, .taginput .is-primary.taginput-container.is-focusable:focus, .is-primary.textarea:focus, .is-primary.is-focused.input, .taginput .is-primary.is-focused.taginput-container.is-focusable, .is-primary.is-focused.textarea, .is-primary.input:active, .taginput .is-primary.taginput-container.is-focusable:active, .is-primary.textarea:active, .is-primary.is-active.input, .taginput .is-primary.is-active.taginput-container.is-focusable, .is-primary.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.is-link.input, .taginput .is-link.taginput-container.is-focusable, .is-link.textarea {
  border-color: #00aac3;
}

.is-link.input:focus, .taginput .is-link.taginput-container.is-focusable:focus, .is-link.textarea:focus, .is-link.is-focused.input, .taginput .is-link.is-focused.taginput-container.is-focusable, .is-link.is-focused.textarea, .is-link.input:active, .taginput .is-link.taginput-container.is-focusable:active, .is-link.textarea:active, .is-link.is-active.input, .taginput .is-link.is-active.taginput-container.is-focusable, .is-link.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.is-info.input, .taginput .is-info.taginput-container.is-focusable, .is-info.textarea {
  border-color: #167df0;
}

.is-info.input:focus, .taginput .is-info.taginput-container.is-focusable:focus, .is-info.textarea:focus, .is-info.is-focused.input, .taginput .is-info.is-focused.taginput-container.is-focusable, .is-info.is-focused.textarea, .is-info.input:active, .taginput .is-info.taginput-container.is-focusable:active, .is-info.textarea:active, .is-info.is-active.input, .taginput .is-info.is-active.taginput-container.is-focusable, .is-info.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(22, 125, 240, 0.25);
}

.is-success.input, .taginput .is-success.taginput-container.is-focusable, .is-success.textarea {
  border-color: #23d160;
}

.is-success.input:focus, .taginput .is-success.taginput-container.is-focusable:focus, .is-success.textarea:focus, .is-success.is-focused.input, .taginput .is-success.is-focused.taginput-container.is-focusable, .is-success.is-focused.textarea, .is-success.input:active, .taginput .is-success.taginput-container.is-focusable:active, .is-success.textarea:active, .is-success.is-active.input, .taginput .is-success.is-active.taginput-container.is-focusable, .is-success.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
}

.is-warning.input, .taginput .is-warning.taginput-container.is-focusable, .is-warning.textarea {
  border-color: #ffdd57;
}

.is-warning.input:focus, .taginput .is-warning.taginput-container.is-focusable:focus, .is-warning.textarea:focus, .is-warning.is-focused.input, .taginput .is-warning.is-focused.taginput-container.is-focusable, .is-warning.is-focused.textarea, .is-warning.input:active, .taginput .is-warning.taginput-container.is-focusable:active, .is-warning.textarea:active, .is-warning.is-active.input, .taginput .is-warning.is-active.taginput-container.is-focusable, .is-warning.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}

.is-danger.input, .taginput .is-danger.taginput-container.is-focusable, .is-danger.textarea {
  border-color: #ff3860;
}

.is-danger.input:focus, .taginput .is-danger.taginput-container.is-focusable:focus, .is-danger.textarea:focus, .is-danger.is-focused.input, .taginput .is-danger.is-focused.taginput-container.is-focusable, .is-danger.is-focused.textarea, .is-danger.input:active, .taginput .is-danger.taginput-container.is-focusable:active, .is-danger.textarea:active, .is-danger.is-active.input, .taginput .is-danger.is-active.taginput-container.is-focusable, .is-danger.is-active.textarea {
  box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
}

.is-small.input, .taginput .is-small.taginput-container.is-focusable, .is-small.textarea {
  border-radius: 2px;
  font-size: 0.75rem;
}

.is-medium.input, .taginput .is-medium.taginput-container.is-focusable, .is-medium.textarea {
  font-size: 1.25rem;
}

.is-large.input, .taginput .is-large.taginput-container.is-focusable, .is-large.textarea {
  font-size: 1.5rem;
}

.is-fullwidth.input, .taginput .is-fullwidth.taginput-container.is-focusable, .is-fullwidth.textarea {
  display: block;
  width: 100%;
}

.is-inline.input, .taginput .is-inline.taginput-container.is-focusable, .is-inline.textarea {
  display: inline;
  width: auto;
}

.input.is-rounded, .taginput .is-rounded.taginput-container.is-focusable {
  border-radius: 290486px;
  padding-left: 1em;
  padding-right: 1em;
}

.input.is-static, .taginput .is-static.taginput-container.is-focusable {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.textarea {
  display: block;
  max-width: 100%;
  min-width: 100%;
  padding: 0.625em;
  resize: vertical;
}

.textarea:not([rows]) {
  max-height: 600px;
  min-height: 120px;
}

.textarea[rows] {
  height: initial;
}

.textarea.has-fixed-size {
  resize: none;
}

.checkbox, .radio {
  cursor: pointer;
  display: inline-block;
  line-height: 1.25;
  position: relative;
}

.checkbox input, .radio input {
  cursor: pointer;
}

.checkbox:hover, .radio:hover {
  color: #363636;
}

.checkbox[disabled], .radio[disabled],
fieldset[disabled] .checkbox,
fieldset[disabled] .radio {
  color: #7a7a7a;
  cursor: not-allowed;
}

.radio + .radio {
  margin-left: 0.5em;
}

.select {
  display: inline-block;
  max-width: 100%;
  position: relative;
  vertical-align: top;
}

.select:not(.is-multiple) {
  height: 2.25em;
}

.select:not(.is-multiple):not(.is-loading)::after {
  border-color: #00aac3;
  right: 1.125em;
  z-index: 4;
}

.select.is-rounded select {
  border-radius: 290486px;
  padding-left: 1em;
}

.select select {
  cursor: pointer;
  display: block;
  font-size: 1em;
  max-width: 100%;
  outline: none;
}

.select select::-ms-expand {
  display: none;
}

.select select[disabled]:hover,
fieldset[disabled] .select select:hover {
  border-color: whitesmoke;
}

.select select:not([multiple]) {
  padding-right: 2.5em;
}

.select select[multiple] {
  height: auto;
  padding: 0;
}

.select select[multiple] option {
  padding: 0.5em 1em;
}

.select:not(.is-multiple):not(.is-loading):hover::after {
  border-color: #363636;
}

.select.is-white:not(:hover)::after {
  border-color: white;
}

.select.is-white select {
  border-color: white;
}

.select.is-white select:hover, .select.is-white select.is-hovered {
  border-color: #f2f2f2;
}

.select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.select.is-black:not(:hover)::after {
  border-color: #0a0a0a;
}

.select.is-black select {
  border-color: #0a0a0a;
}

.select.is-black select:hover, .select.is-black select.is-hovered {
  border-color: black;
}

.select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active {
  box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
}

.select.is-light:not(:hover)::after {
  border-color: whitesmoke;
}

.select.is-light select {
  border-color: whitesmoke;
}

.select.is-light select:hover, .select.is-light select.is-hovered {
  border-color: #e8e8e8;
}

.select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active {
  box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
}

.select.is-dark:not(:hover)::after {
  border-color: #363636;
}

.select.is-dark select {
  border-color: #363636;
}

.select.is-dark select:hover, .select.is-dark select.is-hovered {
  border-color: #292929;
}

.select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active {
  box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
}

.select.is-primary:not(:hover)::after {
  border-color: #00aac3;
}

.select.is-primary select {
  border-color: #00aac3;
}

.select.is-primary select:hover, .select.is-primary select.is-hovered {
  border-color: #6943d0;
}

.select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.select.is-link:not(:hover)::after {
  border-color: #00aac3;
}

.select.is-link select {
  border-color: #00aac3;
}

.select.is-link select:hover, .select.is-link select.is-hovered {
  border-color: #6943d0;
}

.select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.select.is-info:not(:hover)::after {
  border-color: #167df0;
}

.select.is-info select {
  border-color: #167df0;
}

.select.is-info select:hover, .select.is-info select.is-hovered {
  border-color: #0e71de;
}

.select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active {
  box-shadow: 0 0 0 0.125em rgba(22, 125, 240, 0.25);
}

.select.is-success:not(:hover)::after {
  border-color: #23d160;
}

.select.is-success select {
  border-color: #23d160;
}

.select.is-success select:hover, .select.is-success select.is-hovered {
  border-color: #20bc56;
}

.select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active {
  box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
}

.select.is-warning:not(:hover)::after {
  border-color: #ffdd57;
}

.select.is-warning select {
  border-color: #ffdd57;
}

.select.is-warning select:hover, .select.is-warning select.is-hovered {
  border-color: #ffd83d;
}

.select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active {
  box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}

.select.is-danger:not(:hover)::after {
  border-color: #ff3860;
}

.select.is-danger select {
  border-color: #ff3860;
}

.select.is-danger select:hover, .select.is-danger select.is-hovered {
  border-color: #ff1f4b;
}

.select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active {
  box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
}

.select.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.select.is-medium {
  font-size: 1.25rem;
}

.select.is-large {
  font-size: 1.5rem;
}

.select.is-disabled::after {
  border-color: #7a7a7a;
}

.select.is-fullwidth {
  width: 100%;
}

.select.is-fullwidth select {
  width: 100%;
}

.select.is-loading::after {
  margin-top: 0;
  position: absolute;
  right: 0.625em;
  top: 0.625em;
  transform: none;
}

.select.is-loading.is-small:after {
  font-size: 0.75rem;
}

.select.is-loading.is-medium:after {
  font-size: 1.25rem;
}

.select.is-loading.is-large:after {
  font-size: 1.5rem;
}

.file {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.file.is-white .file-cta {
  background-color: white;
  border-color: transparent;
  color: #0a0a0a;
}

.file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta {
  background-color: #f9f9f9;
  border-color: transparent;
  color: #0a0a0a;
}

.file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
  color: #0a0a0a;
}

.file.is-white:active .file-cta, .file.is-white.is-active .file-cta {
  background-color: #f2f2f2;
  border-color: transparent;
  color: #0a0a0a;
}

.file.is-black .file-cta {
  background-color: #0a0a0a;
  border-color: transparent;
  color: white;
}

.file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta {
  background-color: #040404;
  border-color: transparent;
  color: white;
}

.file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
  color: white;
}

.file.is-black:active .file-cta, .file.is-black.is-active .file-cta {
  background-color: black;
  border-color: transparent;
  color: white;
}

.file.is-light .file-cta {
  background-color: whitesmoke;
  border-color: transparent;
  color: #363636;
}

.file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta {
  background-color: #eeeeee;
  border-color: transparent;
  color: #363636;
}

.file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
  color: #363636;
}

.file.is-light:active .file-cta, .file.is-light.is-active .file-cta {
  background-color: #e8e8e8;
  border-color: transparent;
  color: #363636;
}

.file.is-dark .file-cta {
  background-color: #363636;
  border-color: transparent;
  color: whitesmoke;
}

.file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta {
  background-color: #2f2f2f;
  border-color: transparent;
  color: whitesmoke;
}

.file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
  color: whitesmoke;
}

.file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta {
  background-color: #292929;
  border-color: transparent;
  color: whitesmoke;
}

.file.is-primary .file-cta {
  background-color: #00aac3;
  border-color: transparent;
  color: white;
}

.file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta {
  background-color: #714dd2;
  border-color: transparent;
  color: white;
}

.file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.25);
  color: white;
}

.file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta {
  background-color: #6943d0;
  border-color: transparent;
  color: white;
}

.file.is-link .file-cta {
  background-color: #00aac3;
  border-color: transparent;
  color: white;
}

.file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta {
  background-color: #714dd2;
  border-color: transparent;
  color: white;
}

.file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.25);
  color: white;
}

.file.is-link:active .file-cta, .file.is-link.is-active .file-cta {
  background-color: #6943d0;
  border-color: transparent;
  color: white;
}

.file.is-info .file-cta {
  background-color: #167df0;
  border-color: transparent;
  color: #fff;
}

.file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta {
  background-color: #0f77ea;
  border-color: transparent;
  color: #fff;
}

.file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(22, 125, 240, 0.25);
  color: #fff;
}

.file.is-info:active .file-cta, .file.is-info.is-active .file-cta {
  background-color: #0e71de;
  border-color: transparent;
  color: #fff;
}

.file.is-success .file-cta {
  background-color: #23d160;
  border-color: transparent;
  color: #fff;
}

.file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta {
  background-color: #22c65b;
  border-color: transparent;
  color: #fff;
}

.file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
  color: #fff;
}

.file.is-success:active .file-cta, .file.is-success.is-active .file-cta {
  background-color: #20bc56;
  border-color: transparent;
  color: #fff;
}

.file.is-warning .file-cta {
  background-color: #ffdd57;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta {
  background-color: #ffdb4a;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
  color: rgba(0, 0, 0, 0.7);
}

.file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta {
  background-color: #ffd83d;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.file.is-danger .file-cta {
  background-color: #ff3860;
  border-color: transparent;
  color: #fff;
}

.file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta {
  background-color: #ff2b56;
  border-color: transparent;
  color: #fff;
}

.file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
  color: #fff;
}

.file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta {
  background-color: #ff1f4b;
  border-color: transparent;
  color: #fff;
}

.file.is-small {
  font-size: 0.75rem;
}

.file.is-medium {
  font-size: 1.25rem;
}

.file.is-medium .file-icon .fa {
  font-size: 21px;
}

.file.is-large {
  font-size: 1.5rem;
}

.file.is-large .file-icon .fa {
  font-size: 28px;
}

.file.has-name .file-cta {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.file.has-name .file-name {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.file.has-name.is-empty .file-cta {
  border-radius: 4px;
}

.file.has-name.is-empty .file-name {
  display: none;
}

.file.is-boxed .file-label {
  flex-direction: column;
}

.file.is-boxed .file-cta {
  flex-direction: column;
  height: auto;
  padding: 1em 3em;
}

.file.is-boxed .file-name {
  border-width: 0 1px 1px;
}

.file.is-boxed .file-icon {
  height: 1.5em;
  width: 1.5em;
}

.file.is-boxed .file-icon .fa {
  font-size: 21px;
}

.file.is-boxed.is-small .file-icon .fa {
  font-size: 14px;
}

.file.is-boxed.is-medium .file-icon .fa {
  font-size: 28px;
}

.file.is-boxed.is-large .file-icon .fa {
  font-size: 35px;
}

.file.is-boxed.has-name .file-cta {
  border-radius: 4px 4px 0 0;
}

.file.is-boxed.has-name .file-name {
  border-radius: 0 0 4px 4px;
  border-width: 0 1px 1px;
}

.file.is-centered {
  justify-content: center;
}

.file.is-fullwidth .file-label {
  width: 100%;
}

.file.is-fullwidth .file-name {
  flex-grow: 1;
  max-width: none;
}

.file.is-right {
  justify-content: flex-end;
}

.file.is-right .file-cta {
  border-radius: 0 4px 4px 0;
}

.file.is-right .file-name {
  border-radius: 4px 0 0 4px;
  border-width: 1px 0 1px 1px;
  order: -1;
}

.file-label {
  align-items: stretch;
  display: flex;
  cursor: pointer;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

.file-label:hover .file-cta {
  background-color: #eeeeee;
  color: #363636;
}

.file-label:hover .file-name {
  border-color: #d5d5d5;
}

.file-label:active .file-cta {
  background-color: #e8e8e8;
  color: #363636;
}

.file-label:active .file-name {
  border-color: #cfcfcf;
}

.file-input {
  height: 100%;
  left: 0;
  opacity: 0;
  outline: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.file-cta,
.file-name {
  border-color: #dbdbdb;
  border-radius: 4px;
  font-size: 1em;
  padding-left: 1em;
  padding-right: 1em;
  white-space: nowrap;
}

.file-cta {
  background-color: whitesmoke;
  color: #4a4a4a;
}

.file-name {
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px 1px 1px 0;
  display: block;
  max-width: 16em;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
}

.file-icon {
  align-items: center;
  display: flex;
  height: 1em;
  justify-content: center;
  margin-right: 0.5em;
  width: 1em;
}

.file-icon .fa {
  font-size: 14px;
}

.label {
  color: #363636;
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.label:not(:last-child) {
  margin-bottom: 0.5em;
}

.label.is-small {
  font-size: 0.75rem;
}

.label.is-medium {
  font-size: 1.25rem;
}

.label.is-large {
  font-size: 1.5rem;
}

.help {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.help.is-white {
  color: white;
}

.help.is-black {
  color: #0a0a0a;
}

.help.is-light {
  color: whitesmoke;
}

.help.is-dark {
  color: #363636;
}

.help.is-primary {
  color: #00aac3;
}

.help.is-link {
  color: #00aac3;
}

.help.is-info {
  color: #167df0;
}

.help.is-success {
  color: #23d160;
}

.help.is-warning {
  color: #ffdd57;
}

.help.is-danger {
  color: #ff3860;
}

.field:not(:last-child) {
  margin-bottom: 0.75rem;
}

.field.has-addons {
  display: flex;
  justify-content: flex-start;
}

.field.has-addons .control:not(:last-child) {
  margin-right: -1px;
}

.field.has-addons .control:not(:first-child):not(:last-child) .button,
.field.has-addons .control:not(:first-child):not(:last-child) .input,
.field.has-addons .control:not(:first-child):not(:last-child) .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:not(:first-child):not(:last-child) .taginput-container.is-focusable,
.field.has-addons .control:not(:first-child):not(:last-child) .select select {
  border-radius: 0;
}

.field.has-addons .control:first-child:not(:only-child) .button,
.field.has-addons .control:first-child:not(:only-child) .input,
.field.has-addons .control:first-child:not(:only-child) .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:first-child:not(:only-child) .taginput-container.is-focusable,
.field.has-addons .control:first-child:not(:only-child) .select select {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.field.has-addons .control:last-child:not(:only-child) .button,
.field.has-addons .control:last-child:not(:only-child) .input,
.field.has-addons .control:last-child:not(:only-child) .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:last-child:not(:only-child) .taginput-container.is-focusable,
.field.has-addons .control:last-child:not(:only-child) .select select {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered,
.field.has-addons .control .input:not([disabled]):hover,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]):hover,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]):hover,
.field.has-addons .control .input:not([disabled]).is-hovered,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]).is-hovered,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]).is-hovered,
.field.has-addons .control .select select:not([disabled]):hover,
.field.has-addons .control .select select:not([disabled]).is-hovered {
  z-index: 2;
}

.field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active,
.field.has-addons .control .input:not([disabled]):focus,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]):focus,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]):focus,
.field.has-addons .control .input:not([disabled]).is-focused,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]).is-focused,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]).is-focused,
.field.has-addons .control .input:not([disabled]):active,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]):active,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]):active,
.field.has-addons .control .input:not([disabled]).is-active,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]).is-active,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]).is-active,
.field.has-addons .control .select select:not([disabled]):focus,
.field.has-addons .control .select select:not([disabled]).is-focused,
.field.has-addons .control .select select:not([disabled]):active,
.field.has-addons .control .select select:not([disabled]).is-active {
  z-index: 3;
}

.field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover,
.field.has-addons .control .input:not([disabled]):focus:hover,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]):focus:hover,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]):focus:hover,
.field.has-addons .control .input:not([disabled]).is-focused:hover,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]).is-focused:hover,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]).is-focused:hover,
.field.has-addons .control .input:not([disabled]):active:hover,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]):active:hover,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]):active:hover,
.field.has-addons .control .input:not([disabled]).is-active:hover,
.field.has-addons .control .taginput .taginput-container.is-focusable:not([disabled]).is-active:hover,
.taginput .field.has-addons .control .taginput-container.is-focusable:not([disabled]).is-active:hover,
.field.has-addons .control .select select:not([disabled]):focus:hover,
.field.has-addons .control .select select:not([disabled]).is-focused:hover,
.field.has-addons .control .select select:not([disabled]):active:hover,
.field.has-addons .control .select select:not([disabled]).is-active:hover {
  z-index: 4;
}

.field.has-addons .control.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}

.field.has-addons.has-addons-centered {
  justify-content: center;
}

.field.has-addons.has-addons-right {
  justify-content: flex-end;
}

.field.has-addons.has-addons-fullwidth .control {
  flex-grow: 1;
  flex-shrink: 0;
}

.field.is-grouped {
  display: flex;
  justify-content: flex-start;
}

.field.is-grouped > .control {
  flex-shrink: 0;
}

.field.is-grouped > .control:not(:last-child) {
  margin-bottom: 0;
  margin-right: 0.75rem;
}

.field.is-grouped > .control.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}

.field.is-grouped.is-grouped-centered {
  justify-content: center;
}

.field.is-grouped.is-grouped-right {
  justify-content: flex-end;
}

.field.is-grouped.is-grouped-multiline {
  flex-wrap: wrap;
}

.field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
  margin-bottom: 0.75rem;
}

.field.is-grouped.is-grouped-multiline:last-child {
  margin-bottom: -0.75rem;
}

.field.is-grouped.is-grouped-multiline:not(:last-child) {
  margin-bottom: 0;
}

@media screen and (min-width: 769px), print {
  .field.is-horizontal {
    display: flex;
  }
}
.field-label .label {
  font-size: inherit;
}

@media screen and (max-width: 768px) {
  .field-label {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .field-label {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 0;
    margin-right: 1.5rem;
    text-align: right;
  }

  .field-label.is-small {
    font-size: 0.75rem;
    padding-top: 0.375em;
  }

  .field-label.is-normal {
    padding-top: 0.375em;
  }

  .field-label.is-medium {
    font-size: 1.25rem;
    padding-top: 0.375em;
  }

  .field-label.is-large {
    font-size: 1.5rem;
    padding-top: 0.375em;
  }
}
.field-body .field .field {
  margin-bottom: 0;
}

@media screen and (min-width: 769px), print {
  .field-body {
    display: flex;
    flex-basis: 0;
    flex-grow: 5;
    flex-shrink: 1;
  }

  .field-body .field {
    margin-bottom: 0;
  }

  .field-body > .field {
    flex-shrink: 1;
  }

  .field-body > .field:not(.is-narrow) {
    flex-grow: 1;
  }

  .field-body > .field:not(:last-child) {
    margin-right: 0.75rem;
  }
}
.control {
  box-sizing: border-box;
  clear: both;
  font-size: 1rem;
  position: relative;
  text-align: left;
}

.control.has-icons-left .input:focus ~ .icon, .control.has-icons-left .taginput .taginput-container.is-focusable:focus ~ .icon, .taginput .control.has-icons-left .taginput-container.is-focusable:focus ~ .icon,
.control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon, .control.has-icons-right .taginput .taginput-container.is-focusable:focus ~ .icon, .taginput .control.has-icons-right .taginput-container.is-focusable:focus ~ .icon,
.control.has-icons-right .select:focus ~ .icon {
  color: #7a7a7a;
}

.control.has-icons-left .input.is-small ~ .icon, .control.has-icons-left .taginput .is-small.taginput-container.is-focusable ~ .icon, .taginput .control.has-icons-left .is-small.taginput-container.is-focusable ~ .icon,
.control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon, .control.has-icons-right .taginput .is-small.taginput-container.is-focusable ~ .icon, .taginput .control.has-icons-right .is-small.taginput-container.is-focusable ~ .icon,
.control.has-icons-right .select.is-small ~ .icon {
  font-size: 0.75rem;
}

.control.has-icons-left .input.is-medium ~ .icon, .control.has-icons-left .taginput .is-medium.taginput-container.is-focusable ~ .icon, .taginput .control.has-icons-left .is-medium.taginput-container.is-focusable ~ .icon,
.control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon, .control.has-icons-right .taginput .is-medium.taginput-container.is-focusable ~ .icon, .taginput .control.has-icons-right .is-medium.taginput-container.is-focusable ~ .icon,
.control.has-icons-right .select.is-medium ~ .icon {
  font-size: 1.25rem;
}

.control.has-icons-left .input.is-large ~ .icon, .control.has-icons-left .taginput .is-large.taginput-container.is-focusable ~ .icon, .taginput .control.has-icons-left .is-large.taginput-container.is-focusable ~ .icon,
.control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon, .control.has-icons-right .taginput .is-large.taginput-container.is-focusable ~ .icon, .taginput .control.has-icons-right .is-large.taginput-container.is-focusable ~ .icon,
.control.has-icons-right .select.is-large ~ .icon {
  font-size: 1.5rem;
}

.control.has-icons-left .icon, .control.has-icons-right .icon {
  color: #dbdbdb;
  height: 2.25em;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 2.25em;
  z-index: 4;
}

.control.has-icons-left .input, .control.has-icons-left .taginput .taginput-container.is-focusable, .taginput .control.has-icons-left .taginput-container.is-focusable,
.control.has-icons-left .select select {
  padding-left: 2.25em;
}

.control.has-icons-left .icon.is-left {
  left: 0;
}

.control.has-icons-right .input, .control.has-icons-right .taginput .taginput-container.is-focusable, .taginput .control.has-icons-right .taginput-container.is-focusable,
.control.has-icons-right .select select {
  padding-right: 2.25em;
}

.control.has-icons-right .icon.is-right {
  right: 0;
}

.control.is-loading::after {
  position: absolute !important;
  right: 0.625em;
  top: 0.625em;
  z-index: 4;
}

.control.is-loading.is-small:after {
  font-size: 0.75rem;
}

.control.is-loading.is-medium:after {
  font-size: 1.25rem;
}

.control.is-loading.is-large:after {
  font-size: 1.5rem;
}

.breadcrumb {
  font-size: 1rem;
  white-space: nowrap;
}

.breadcrumb a {
  align-items: center;
  color: #00aac3;
  display: flex;
  justify-content: center;
  padding: 0 0.75em;
}

.breadcrumb a:hover {
  color: #363636;
}

.breadcrumb li {
  align-items: center;
  display: flex;
}

.breadcrumb li:first-child a {
  padding-left: 0;
}

.breadcrumb li.is-active a {
  color: #363636;
  cursor: default;
  pointer-events: none;
}

.breadcrumb li + li::before {
  color: #b5b5b5;
  content: "/";
}

.breadcrumb ul,
.breadcrumb ol {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.breadcrumb .icon:first-child {
  margin-right: 0.5em;
}

.breadcrumb .icon:last-child {
  margin-left: 0.5em;
}

.breadcrumb.is-centered ol,
.breadcrumb.is-centered ul {
  justify-content: center;
}

.breadcrumb.is-right ol,
.breadcrumb.is-right ul {
  justify-content: flex-end;
}

.breadcrumb.is-small {
  font-size: 0.75rem;
}

.breadcrumb.is-medium {
  font-size: 1.25rem;
}

.breadcrumb.is-large {
  font-size: 1.5rem;
}

.breadcrumb.has-arrow-separator li + li::before {
  content: "→";
}

.breadcrumb.has-bullet-separator li + li::before {
  content: "•";
}

.breadcrumb.has-dot-separator li + li::before {
  content: "·";
}

.breadcrumb.has-succeeds-separator li + li::before {
  content: "≻";
}

.card {
  background-color: white;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
  color: #4a4a4a;
  max-width: 100%;
  position: relative;
}

.card-header {
  background-color: transparent;
  align-items: stretch;
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
  display: flex;
}

.card-header-title {
  align-items: center;
  color: #363636;
  display: flex;
  flex-grow: 1;
  font-weight: 700;
  padding: 0.75rem;
}

.card-header-title.is-centered {
  justify-content: center;
}

.card-header-icon {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 0.75rem;
}

.card-image {
  display: block;
  position: relative;
}

.card-content {
  background-color: transparent;
  padding: 1.5rem;
}

.card-footer {
  background-color: transparent;
  border-top: 1px solid #dbdbdb;
  align-items: stretch;
  display: flex;
}

.card-footer-item {
  align-items: center;
  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: center;
  padding: 0.75rem;
}

.card-footer-item:not(:last-child) {
  border-right: 1px solid #dbdbdb;
}

.card .media:not(:last-child) {
  margin-bottom: 1.5rem;
}

.dropdown {
  display: inline-flex;
  position: relative;
  vertical-align: top;
}

.dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu {
  display: block;
}

.dropdown.is-right .dropdown-menu {
  left: auto;
  right: 0;
}

.dropdown.is-up .dropdown-menu {
  bottom: 100%;
  padding-bottom: 4px;
  padding-top: initial;
  top: auto;
}

.dropdown-menu {
  display: none;
  left: 0;
  min-width: 12rem;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  z-index: 20;
}

.dropdown-content {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.dropdown-item, .dropdown .dropdown-menu .has-link a {
  color: #4a4a4a;
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.375rem 1rem;
  position: relative;
}

a.dropdown-item, .dropdown .dropdown-menu .has-link a,
button.dropdown-item {
  padding-right: 3rem;
  text-align: left;
  white-space: nowrap;
  width: 100%;
}

a.dropdown-item:hover, .dropdown .dropdown-menu .has-link a:hover,
button.dropdown-item:hover {
  background-color: whitesmoke;
  color: #0a0a0a;
}

a.dropdown-item.is-active, .dropdown .dropdown-menu .has-link a.is-active,
button.dropdown-item.is-active {
  background-color: #00aac3;
  color: white;
}

.dropdown-divider {
  background-color: #dbdbdb;
  border: none;
  display: block;
  height: 1px;
  margin: 0.5rem 0;
}

.level {
  align-items: center;
  justify-content: space-between;
}

.level code {
  border-radius: 4px;
}

.level img {
  display: inline-block;
  vertical-align: top;
}

.level.is-mobile {
  display: flex;
}

.level.is-mobile .level-left,
.level.is-mobile .level-right {
  display: flex;
}

.level.is-mobile .level-left + .level-right {
  margin-top: 0;
}

.level.is-mobile .level-item:not(:last-child) {
  margin-bottom: 0;
  margin-right: 0.75rem;
}

.level.is-mobile .level-item:not(.is-narrow) {
  flex-grow: 1;
}

@media screen and (min-width: 769px), print {
  .level {
    display: flex;
  }

  .level > .level-item:not(.is-narrow) {
    flex-grow: 1;
  }
}
.level-item {
  align-items: center;
  display: flex;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: center;
}

.level-item .title,
.level-item .subtitle {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .level-item:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}
.level-left,
.level-right {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}

.level-left .level-item.is-flexible,
.level-right .level-item.is-flexible {
  flex-grow: 1;
}

@media screen and (min-width: 769px), print {
  .level-left .level-item:not(:last-child),
.level-right .level-item:not(:last-child) {
    margin-right: 0.75rem;
  }
}
.level-left {
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .level-left + .level-right {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .level-left {
    display: flex;
  }
}
.level-right {
  align-items: center;
  justify-content: flex-end;
}

@media screen and (min-width: 769px), print {
  .level-right {
    display: flex;
  }
}
.list {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.list-item {
  display: block;
  padding: 0.5em 1em;
}

.list-item:not(a) {
  color: #4a4a4a;
}

.list-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.list-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.list-item:not(:last-child) {
  border-bottom: 1px solid #dbdbdb;
}

.list-item.is-active {
  background-color: #00aac3;
  color: white;
}

a.list-item {
  background-color: whitesmoke;
  cursor: pointer;
}

.media {
  align-items: flex-start;
  display: flex;
  text-align: left;
}

.media .content:not(:last-child) {
  margin-bottom: 0.75rem;
}

.media .media {
  border-top: 1px solid rgba(219, 219, 219, 0.5);
  display: flex;
  padding-top: 0.75rem;
}

.media .media .content:not(:last-child),
.media .media .control:not(:last-child) {
  margin-bottom: 0.5rem;
}

.media .media .media {
  padding-top: 0.5rem;
}

.media .media .media + .media {
  margin-top: 0.5rem;
}

.media + .media {
  border-top: 1px solid rgba(219, 219, 219, 0.5);
  margin-top: 1rem;
  padding-top: 1rem;
}

.media.is-large + .media {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.media-left,
.media-right {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}

.media-left {
  margin-right: 1rem;
}

.media-right {
  margin-left: 1rem;
}

.media-content {
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .media-content {
    overflow-x: auto;
  }
}
.menu {
  font-size: 1rem;
}

.menu.is-small {
  font-size: 0.75rem;
}

.menu.is-medium {
  font-size: 1.25rem;
}

.menu.is-large {
  font-size: 1.5rem;
}

.menu-list {
  line-height: 1.25;
}

.menu-list a {
  border-radius: 2px;
  color: #4a4a4a;
  display: block;
  padding: 0.5em 0.75em;
}

.menu-list a:hover {
  background-color: whitesmoke;
  color: #363636;
}

.menu-list a.is-active {
  background-color: #00aac3;
  color: white;
}

.menu-list li ul {
  border-left: 1px solid #dbdbdb;
  margin: 0.75em;
  padding-left: 0.75em;
}

.menu-label {
  color: #7a7a7a;
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-label:not(:first-child) {
  margin-top: 1em;
}

.menu-label:not(:last-child) {
  margin-bottom: 1em;
}

.message {
  background-color: whitesmoke;
  border-radius: 4px;
  font-size: 1rem;
}

.message strong {
  color: currentColor;
}

.message a:not(.button):not(.tag):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}

.message.is-small {
  font-size: 0.75rem;
}

.message.is-medium {
  font-size: 1.25rem;
}

.message.is-large {
  font-size: 1.5rem;
}

.message.is-white {
  background-color: white;
}

.message.is-white .message-header {
  background-color: white;
  color: #0a0a0a;
}

.message.is-white .message-body {
  border-color: white;
  color: #4d4d4d;
}

.message.is-black {
  background-color: #fafafa;
}

.message.is-black .message-header {
  background-color: #0a0a0a;
  color: white;
}

.message.is-black .message-body {
  border-color: #0a0a0a;
  color: #090909;
}

.message.is-light {
  background-color: #fafafa;
}

.message.is-light .message-header {
  background-color: whitesmoke;
  color: #363636;
}

.message.is-light .message-body {
  border-color: whitesmoke;
  color: #505050;
}

.message.is-dark {
  background-color: #fafafa;
}

.message.is-dark .message-header {
  background-color: #363636;
  color: whitesmoke;
}

.message.is-dark .message-body {
  border-color: #363636;
  color: #2a2a2a;
}

.message.is-primary {
  background-color: #f8f7fd;
}

.message.is-primary .message-header {
  background-color: #00aac3;
  color: white;
}

.message.is-primary .message-body {
  border-color: #00aac3;
  color: #5534ae;
}

.message.is-link {
  background-color: #f8f7fd;
}

.message.is-link .message-header {
  background-color: #00aac3;
  color: white;
}

.message.is-link .message-body {
  border-color: #00aac3;
  color: #5534ae;
}

.message.is-info {
  background-color: #f5fafe;
}

.message.is-info .message-header {
  background-color: #167df0;
  color: #fff;
}

.message.is-info .message-body {
  border-color: #167df0;
  color: #115199;
}

.message.is-success {
  background-color: #f6fef9;
}

.message.is-success .message-header {
  background-color: #23d160;
  color: #fff;
}

.message.is-success .message-body {
  border-color: #23d160;
  color: #0e301a;
}

.message.is-warning {
  background-color: #fffdf5;
}

.message.is-warning .message-header {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.message.is-warning .message-body {
  border-color: #ffdd57;
  color: #3b3108;
}

.message.is-danger {
  background-color: #fff5f7;
}

.message.is-danger .message-header {
  background-color: #ff3860;
  color: #fff;
}

.message.is-danger .message-body {
  border-color: #ff3860;
  color: #cd0930;
}

.message-header {
  align-items: center;
  background-color: #4a4a4a;
  border-radius: 4px 4px 0 0;
  color: #fff;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  line-height: 1.25;
  padding: 0.75em 1em;
  position: relative;
}

.message-header .delete {
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 0.75em;
}

.message-header + .message-body {
  border-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.message-body {
  border-color: #dbdbdb;
  border-radius: 4px;
  border-style: solid;
  border-width: 0 0 0 4px;
  color: #4a4a4a;
  padding: 1.25em 1.5em;
}

.message-body code,
.message-body pre {
  background-color: white;
}

.message-body pre code {
  background-color: transparent;
}

.modal {
  align-items: center;
  display: none;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 40;
}

.modal.is-active {
  display: flex;
}

.modal-background {
  background-color: rgba(10, 10, 10, 0.86);
}

.modal-content,
.modal-card {
  margin: 0 20px;
  max-height: calc(100vh - 160px);
  overflow: auto;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px), print {
  .modal-content,
.modal-card {
    margin: 0 auto;
    max-height: calc(100vh - 40px);
    width: 640px;
  }
}
.modal-close {
  background: none;
  height: 40px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 40px;
}

.modal-card {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  -ms-overflow-y: visible;
}

.modal-card-head,
.modal-card-foot {
  align-items: center;
  background-color: whitesmoke;
  display: flex;
  flex-shrink: 0;
  justify-content: flex-start;
  padding: 20px;
  position: relative;
}

.modal-card-head {
  border-bottom: 1px solid #dbdbdb;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.modal-card-title {
  color: #363636;
  flex-grow: 1;
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-card-foot {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 1px solid #dbdbdb;
}

.modal-card-foot .button:not(:last-child) {
  margin-right: 0.5em;
}

.modal-card-body {
  -webkit-overflow-scrolling: touch;
  background-color: white;
  flex-grow: 1;
  flex-shrink: 1;
  overflow: auto;
  padding: 20px;
}

.navbar {
  background-color: white;
  min-height: 3.25rem;
  position: relative;
  z-index: 30;
}

.navbar.is-white {
  background-color: white;
  color: #0a0a0a;
}

.navbar.is-white .navbar-brand > .navbar-item,
.navbar.is-white .navbar-brand .navbar-link {
  color: #0a0a0a;
}

.navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active,
.navbar.is-white .navbar-brand .navbar-link:focus,
.navbar.is-white .navbar-brand .navbar-link:hover,
.navbar.is-white .navbar-brand .navbar-link.is-active {
  background-color: #f2f2f2;
  color: #0a0a0a;
}

.navbar.is-white .navbar-brand .navbar-link::after {
  border-color: #0a0a0a;
}

.navbar.is-white .navbar-burger {
  color: #0a0a0a;
}

@media screen and (min-width: 1024px) {
  .navbar.is-white .navbar-start > .navbar-item,
.navbar.is-white .navbar-start .navbar-link,
.navbar.is-white .navbar-end > .navbar-item,
.navbar.is-white .navbar-end .navbar-link {
    color: #0a0a0a;
  }

  .navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active,
.navbar.is-white .navbar-start .navbar-link:focus,
.navbar.is-white .navbar-start .navbar-link:hover,
.navbar.is-white .navbar-start .navbar-link.is-active,
.navbar.is-white .navbar-end > a.navbar-item:focus,
.navbar.is-white .navbar-end > a.navbar-item:hover,
.navbar.is-white .navbar-end > a.navbar-item.is-active,
.navbar.is-white .navbar-end .navbar-link:focus,
.navbar.is-white .navbar-end .navbar-link:hover,
.navbar.is-white .navbar-end .navbar-link.is-active {
    background-color: #f2f2f2;
    color: #0a0a0a;
  }

  .navbar.is-white .navbar-start .navbar-link::after,
.navbar.is-white .navbar-end .navbar-link::after {
    border-color: #0a0a0a;
  }

  .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #f2f2f2;
    color: #0a0a0a;
  }

  .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
    background-color: white;
    color: #0a0a0a;
  }
}
.navbar.is-black {
  background-color: #0a0a0a;
  color: white;
}

.navbar.is-black .navbar-brand > .navbar-item,
.navbar.is-black .navbar-brand .navbar-link {
  color: white;
}

.navbar.is-black .navbar-brand > a.navbar-item:focus, .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active,
.navbar.is-black .navbar-brand .navbar-link:focus,
.navbar.is-black .navbar-brand .navbar-link:hover,
.navbar.is-black .navbar-brand .navbar-link.is-active {
  background-color: black;
  color: white;
}

.navbar.is-black .navbar-brand .navbar-link::after {
  border-color: white;
}

.navbar.is-black .navbar-burger {
  color: white;
}

@media screen and (min-width: 1024px) {
  .navbar.is-black .navbar-start > .navbar-item,
.navbar.is-black .navbar-start .navbar-link,
.navbar.is-black .navbar-end > .navbar-item,
.navbar.is-black .navbar-end .navbar-link {
    color: white;
  }

  .navbar.is-black .navbar-start > a.navbar-item:focus, .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active,
.navbar.is-black .navbar-start .navbar-link:focus,
.navbar.is-black .navbar-start .navbar-link:hover,
.navbar.is-black .navbar-start .navbar-link.is-active,
.navbar.is-black .navbar-end > a.navbar-item:focus,
.navbar.is-black .navbar-end > a.navbar-item:hover,
.navbar.is-black .navbar-end > a.navbar-item.is-active,
.navbar.is-black .navbar-end .navbar-link:focus,
.navbar.is-black .navbar-end .navbar-link:hover,
.navbar.is-black .navbar-end .navbar-link.is-active {
    background-color: black;
    color: white;
  }

  .navbar.is-black .navbar-start .navbar-link::after,
.navbar.is-black .navbar-end .navbar-link::after {
    border-color: white;
  }

  .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: black;
    color: white;
  }

  .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
    background-color: #0a0a0a;
    color: white;
  }
}
.navbar.is-light {
  background-color: whitesmoke;
  color: #363636;
}

.navbar.is-light .navbar-brand > .navbar-item,
.navbar.is-light .navbar-brand .navbar-link {
  color: #363636;
}

.navbar.is-light .navbar-brand > a.navbar-item:focus, .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active,
.navbar.is-light .navbar-brand .navbar-link:focus,
.navbar.is-light .navbar-brand .navbar-link:hover,
.navbar.is-light .navbar-brand .navbar-link.is-active {
  background-color: #e8e8e8;
  color: #363636;
}

.navbar.is-light .navbar-brand .navbar-link::after {
  border-color: #363636;
}

.navbar.is-light .navbar-burger {
  color: #363636;
}

@media screen and (min-width: 1024px) {
  .navbar.is-light .navbar-start > .navbar-item,
.navbar.is-light .navbar-start .navbar-link,
.navbar.is-light .navbar-end > .navbar-item,
.navbar.is-light .navbar-end .navbar-link {
    color: #363636;
  }

  .navbar.is-light .navbar-start > a.navbar-item:focus, .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active,
.navbar.is-light .navbar-start .navbar-link:focus,
.navbar.is-light .navbar-start .navbar-link:hover,
.navbar.is-light .navbar-start .navbar-link.is-active,
.navbar.is-light .navbar-end > a.navbar-item:focus,
.navbar.is-light .navbar-end > a.navbar-item:hover,
.navbar.is-light .navbar-end > a.navbar-item.is-active,
.navbar.is-light .navbar-end .navbar-link:focus,
.navbar.is-light .navbar-end .navbar-link:hover,
.navbar.is-light .navbar-end .navbar-link.is-active {
    background-color: #e8e8e8;
    color: #363636;
  }

  .navbar.is-light .navbar-start .navbar-link::after,
.navbar.is-light .navbar-end .navbar-link::after {
    border-color: #363636;
  }

  .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #e8e8e8;
    color: #363636;
  }

  .navbar.is-light .navbar-dropdown a.navbar-item.is-active {
    background-color: whitesmoke;
    color: #363636;
  }
}
.navbar.is-dark {
  background-color: #363636;
  color: whitesmoke;
}

.navbar.is-dark .navbar-brand > .navbar-item,
.navbar.is-dark .navbar-brand .navbar-link {
  color: whitesmoke;
}

.navbar.is-dark .navbar-brand > a.navbar-item:focus, .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active,
.navbar.is-dark .navbar-brand .navbar-link:focus,
.navbar.is-dark .navbar-brand .navbar-link:hover,
.navbar.is-dark .navbar-brand .navbar-link.is-active {
  background-color: #292929;
  color: whitesmoke;
}

.navbar.is-dark .navbar-brand .navbar-link::after {
  border-color: whitesmoke;
}

.navbar.is-dark .navbar-burger {
  color: whitesmoke;
}

@media screen and (min-width: 1024px) {
  .navbar.is-dark .navbar-start > .navbar-item,
.navbar.is-dark .navbar-start .navbar-link,
.navbar.is-dark .navbar-end > .navbar-item,
.navbar.is-dark .navbar-end .navbar-link {
    color: whitesmoke;
  }

  .navbar.is-dark .navbar-start > a.navbar-item:focus, .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active,
.navbar.is-dark .navbar-start .navbar-link:focus,
.navbar.is-dark .navbar-start .navbar-link:hover,
.navbar.is-dark .navbar-start .navbar-link.is-active,
.navbar.is-dark .navbar-end > a.navbar-item:focus,
.navbar.is-dark .navbar-end > a.navbar-item:hover,
.navbar.is-dark .navbar-end > a.navbar-item.is-active,
.navbar.is-dark .navbar-end .navbar-link:focus,
.navbar.is-dark .navbar-end .navbar-link:hover,
.navbar.is-dark .navbar-end .navbar-link.is-active {
    background-color: #292929;
    color: whitesmoke;
  }

  .navbar.is-dark .navbar-start .navbar-link::after,
.navbar.is-dark .navbar-end .navbar-link::after {
    border-color: whitesmoke;
  }

  .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #292929;
    color: whitesmoke;
  }

  .navbar.is-dark .navbar-dropdown a.navbar-item.is-active {
    background-color: #363636;
    color: whitesmoke;
  }
}
.navbar.is-primary {
  background-color: #00aac3;
  color: white;
}

.navbar.is-primary .navbar-brand > .navbar-item,
.navbar.is-primary .navbar-brand .navbar-link {
  color: white;
}

.navbar.is-primary .navbar-brand > a.navbar-item:focus, .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active,
.navbar.is-primary .navbar-brand .navbar-link:focus,
.navbar.is-primary .navbar-brand .navbar-link:hover,
.navbar.is-primary .navbar-brand .navbar-link.is-active {
  background-color: #6943d0;
  color: white;
}

.navbar.is-primary .navbar-brand .navbar-link::after {
  border-color: white;
}

.navbar.is-primary .navbar-burger {
  color: white;
}

@media screen and (min-width: 1024px) {
  .navbar.is-primary .navbar-start > .navbar-item,
.navbar.is-primary .navbar-start .navbar-link,
.navbar.is-primary .navbar-end > .navbar-item,
.navbar.is-primary .navbar-end .navbar-link {
    color: white;
  }

  .navbar.is-primary .navbar-start > a.navbar-item:focus, .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active,
.navbar.is-primary .navbar-start .navbar-link:focus,
.navbar.is-primary .navbar-start .navbar-link:hover,
.navbar.is-primary .navbar-start .navbar-link.is-active,
.navbar.is-primary .navbar-end > a.navbar-item:focus,
.navbar.is-primary .navbar-end > a.navbar-item:hover,
.navbar.is-primary .navbar-end > a.navbar-item.is-active,
.navbar.is-primary .navbar-end .navbar-link:focus,
.navbar.is-primary .navbar-end .navbar-link:hover,
.navbar.is-primary .navbar-end .navbar-link.is-active {
    background-color: #6943d0;
    color: white;
  }

  .navbar.is-primary .navbar-start .navbar-link::after,
.navbar.is-primary .navbar-end .navbar-link::after {
    border-color: white;
  }

  .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #6943d0;
    color: white;
  }

  .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
    background-color: #00aac3;
    color: white;
  }
}
.navbar.is-link {
  background-color: #00aac3;
  color: white;
}

.navbar.is-link .navbar-brand > .navbar-item,
.navbar.is-link .navbar-brand .navbar-link {
  color: white;
}

.navbar.is-link .navbar-brand > a.navbar-item:focus, .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active,
.navbar.is-link .navbar-brand .navbar-link:focus,
.navbar.is-link .navbar-brand .navbar-link:hover,
.navbar.is-link .navbar-brand .navbar-link.is-active {
  background-color: #6943d0;
  color: white;
}

.navbar.is-link .navbar-brand .navbar-link::after {
  border-color: white;
}

.navbar.is-link .navbar-burger {
  color: white;
}

@media screen and (min-width: 1024px) {
  .navbar.is-link .navbar-start > .navbar-item,
.navbar.is-link .navbar-start .navbar-link,
.navbar.is-link .navbar-end > .navbar-item,
.navbar.is-link .navbar-end .navbar-link {
    color: white;
  }

  .navbar.is-link .navbar-start > a.navbar-item:focus, .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active,
.navbar.is-link .navbar-start .navbar-link:focus,
.navbar.is-link .navbar-start .navbar-link:hover,
.navbar.is-link .navbar-start .navbar-link.is-active,
.navbar.is-link .navbar-end > a.navbar-item:focus,
.navbar.is-link .navbar-end > a.navbar-item:hover,
.navbar.is-link .navbar-end > a.navbar-item.is-active,
.navbar.is-link .navbar-end .navbar-link:focus,
.navbar.is-link .navbar-end .navbar-link:hover,
.navbar.is-link .navbar-end .navbar-link.is-active {
    background-color: #6943d0;
    color: white;
  }

  .navbar.is-link .navbar-start .navbar-link::after,
.navbar.is-link .navbar-end .navbar-link::after {
    border-color: white;
  }

  .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #6943d0;
    color: white;
  }

  .navbar.is-link .navbar-dropdown a.navbar-item.is-active {
    background-color: #00aac3;
    color: white;
  }
}
.navbar.is-info {
  background-color: #167df0;
  color: #fff;
}

.navbar.is-info .navbar-brand > .navbar-item,
.navbar.is-info .navbar-brand .navbar-link {
  color: #fff;
}

.navbar.is-info .navbar-brand > a.navbar-item:focus, .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active,
.navbar.is-info .navbar-brand .navbar-link:focus,
.navbar.is-info .navbar-brand .navbar-link:hover,
.navbar.is-info .navbar-brand .navbar-link.is-active {
  background-color: #0e71de;
  color: #fff;
}

.navbar.is-info .navbar-brand .navbar-link::after {
  border-color: #fff;
}

.navbar.is-info .navbar-burger {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .navbar.is-info .navbar-start > .navbar-item,
.navbar.is-info .navbar-start .navbar-link,
.navbar.is-info .navbar-end > .navbar-item,
.navbar.is-info .navbar-end .navbar-link {
    color: #fff;
  }

  .navbar.is-info .navbar-start > a.navbar-item:focus, .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active,
.navbar.is-info .navbar-start .navbar-link:focus,
.navbar.is-info .navbar-start .navbar-link:hover,
.navbar.is-info .navbar-start .navbar-link.is-active,
.navbar.is-info .navbar-end > a.navbar-item:focus,
.navbar.is-info .navbar-end > a.navbar-item:hover,
.navbar.is-info .navbar-end > a.navbar-item.is-active,
.navbar.is-info .navbar-end .navbar-link:focus,
.navbar.is-info .navbar-end .navbar-link:hover,
.navbar.is-info .navbar-end .navbar-link.is-active {
    background-color: #0e71de;
    color: #fff;
  }

  .navbar.is-info .navbar-start .navbar-link::after,
.navbar.is-info .navbar-end .navbar-link::after {
    border-color: #fff;
  }

  .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #0e71de;
    color: #fff;
  }

  .navbar.is-info .navbar-dropdown a.navbar-item.is-active {
    background-color: #167df0;
    color: #fff;
  }
}
.navbar.is-success {
  background-color: #23d160;
  color: #fff;
}

.navbar.is-success .navbar-brand > .navbar-item,
.navbar.is-success .navbar-brand .navbar-link {
  color: #fff;
}

.navbar.is-success .navbar-brand > a.navbar-item:focus, .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active,
.navbar.is-success .navbar-brand .navbar-link:focus,
.navbar.is-success .navbar-brand .navbar-link:hover,
.navbar.is-success .navbar-brand .navbar-link.is-active {
  background-color: #20bc56;
  color: #fff;
}

.navbar.is-success .navbar-brand .navbar-link::after {
  border-color: #fff;
}

.navbar.is-success .navbar-burger {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .navbar.is-success .navbar-start > .navbar-item,
.navbar.is-success .navbar-start .navbar-link,
.navbar.is-success .navbar-end > .navbar-item,
.navbar.is-success .navbar-end .navbar-link {
    color: #fff;
  }

  .navbar.is-success .navbar-start > a.navbar-item:focus, .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active,
.navbar.is-success .navbar-start .navbar-link:focus,
.navbar.is-success .navbar-start .navbar-link:hover,
.navbar.is-success .navbar-start .navbar-link.is-active,
.navbar.is-success .navbar-end > a.navbar-item:focus,
.navbar.is-success .navbar-end > a.navbar-item:hover,
.navbar.is-success .navbar-end > a.navbar-item.is-active,
.navbar.is-success .navbar-end .navbar-link:focus,
.navbar.is-success .navbar-end .navbar-link:hover,
.navbar.is-success .navbar-end .navbar-link.is-active {
    background-color: #20bc56;
    color: #fff;
  }

  .navbar.is-success .navbar-start .navbar-link::after,
.navbar.is-success .navbar-end .navbar-link::after {
    border-color: #fff;
  }

  .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #20bc56;
    color: #fff;
  }

  .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
    background-color: #23d160;
    color: #fff;
  }
}
.navbar.is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.navbar.is-warning .navbar-brand > .navbar-item,
.navbar.is-warning .navbar-brand .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}

.navbar.is-warning .navbar-brand > a.navbar-item:focus, .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active,
.navbar.is-warning .navbar-brand .navbar-link:focus,
.navbar.is-warning .navbar-brand .navbar-link:hover,
.navbar.is-warning .navbar-brand .navbar-link.is-active {
  background-color: #ffd83d;
  color: rgba(0, 0, 0, 0.7);
}

.navbar.is-warning .navbar-brand .navbar-link::after {
  border-color: rgba(0, 0, 0, 0.7);
}

.navbar.is-warning .navbar-burger {
  color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1024px) {
  .navbar.is-warning .navbar-start > .navbar-item,
.navbar.is-warning .navbar-start .navbar-link,
.navbar.is-warning .navbar-end > .navbar-item,
.navbar.is-warning .navbar-end .navbar-link {
    color: rgba(0, 0, 0, 0.7);
  }

  .navbar.is-warning .navbar-start > a.navbar-item:focus, .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active,
.navbar.is-warning .navbar-start .navbar-link:focus,
.navbar.is-warning .navbar-start .navbar-link:hover,
.navbar.is-warning .navbar-start .navbar-link.is-active,
.navbar.is-warning .navbar-end > a.navbar-item:focus,
.navbar.is-warning .navbar-end > a.navbar-item:hover,
.navbar.is-warning .navbar-end > a.navbar-item.is-active,
.navbar.is-warning .navbar-end .navbar-link:focus,
.navbar.is-warning .navbar-end .navbar-link:hover,
.navbar.is-warning .navbar-end .navbar-link.is-active {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
  }

  .navbar.is-warning .navbar-start .navbar-link::after,
.navbar.is-warning .navbar-end .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
  }

  .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
  }

  .navbar.is-warning .navbar-dropdown a.navbar-item.is-active {
    background-color: #ffdd57;
    color: rgba(0, 0, 0, 0.7);
  }
}
.navbar.is-danger {
  background-color: #ff3860;
  color: #fff;
}

.navbar.is-danger .navbar-brand > .navbar-item,
.navbar.is-danger .navbar-brand .navbar-link {
  color: #fff;
}

.navbar.is-danger .navbar-brand > a.navbar-item:focus, .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active,
.navbar.is-danger .navbar-brand .navbar-link:focus,
.navbar.is-danger .navbar-brand .navbar-link:hover,
.navbar.is-danger .navbar-brand .navbar-link.is-active {
  background-color: #ff1f4b;
  color: #fff;
}

.navbar.is-danger .navbar-brand .navbar-link::after {
  border-color: #fff;
}

.navbar.is-danger .navbar-burger {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .navbar.is-danger .navbar-start > .navbar-item,
.navbar.is-danger .navbar-start .navbar-link,
.navbar.is-danger .navbar-end > .navbar-item,
.navbar.is-danger .navbar-end .navbar-link {
    color: #fff;
  }

  .navbar.is-danger .navbar-start > a.navbar-item:focus, .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active,
.navbar.is-danger .navbar-start .navbar-link:focus,
.navbar.is-danger .navbar-start .navbar-link:hover,
.navbar.is-danger .navbar-start .navbar-link.is-active,
.navbar.is-danger .navbar-end > a.navbar-item:focus,
.navbar.is-danger .navbar-end > a.navbar-item:hover,
.navbar.is-danger .navbar-end > a.navbar-item.is-active,
.navbar.is-danger .navbar-end .navbar-link:focus,
.navbar.is-danger .navbar-end .navbar-link:hover,
.navbar.is-danger .navbar-end .navbar-link.is-active {
    background-color: #ff1f4b;
    color: #fff;
  }

  .navbar.is-danger .navbar-start .navbar-link::after,
.navbar.is-danger .navbar-end .navbar-link::after {
    border-color: #fff;
  }

  .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,
.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,
.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #ff1f4b;
    color: #fff;
  }

  .navbar.is-danger .navbar-dropdown a.navbar-item.is-active {
    background-color: #ff3860;
    color: #fff;
  }
}
.navbar > .container {
  align-items: stretch;
  display: flex;
  min-height: 3.25rem;
  width: 100%;
}

.navbar.has-shadow {
  box-shadow: 0 2px 0 0 whitesmoke;
}

.navbar.is-fixed-bottom, .navbar.is-fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 30;
}

.navbar.is-fixed-bottom {
  bottom: 0;
}

.navbar.is-fixed-bottom.has-shadow {
  box-shadow: 0 -2px 0 0 whitesmoke;
}

.navbar.is-fixed-top {
  top: 0;
}

html.has-navbar-fixed-top,
body.has-navbar-fixed-top {
  padding-top: 3.25rem;
}

html.has-navbar-fixed-bottom,
body.has-navbar-fixed-bottom {
  padding-bottom: 3.25rem;
}

.navbar-brand,
.navbar-tabs {
  align-items: stretch;
  display: flex;
  flex-shrink: 0;
  min-height: 3.25rem;
}

.navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover {
  background-color: transparent;
}

.navbar-tabs {
  -webkit-overflow-scrolling: touch;
  max-width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
}

.navbar-burger {
  color: #4a4a4a;
  cursor: pointer;
  display: block;
  height: 3.25rem;
  position: relative;
  width: 3.25rem;
  margin-left: auto;
}

.navbar-burger span {
  background-color: currentColor;
  display: block;
  height: 1px;
  left: calc(50% - 8px);
  position: absolute;
  transform-origin: center;
  transition-duration: 86ms;
  transition-property: background-color, opacity, transform;
  transition-timing-function: ease-out;
  width: 16px;
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 4px);
}

.navbar-burger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.navbar-menu {
  display: none;
}

.navbar-item,
.navbar-link {
  color: #4a4a4a;
  display: block;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  position: relative;
}

.navbar-item .icon:only-child,
.navbar-link .icon:only-child {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

a.navbar-item,
.navbar-link {
  cursor: pointer;
}

a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active,
.navbar-link:focus,
.navbar-link:focus-within,
.navbar-link:hover,
.navbar-link.is-active {
  background-color: #fafafa;
  color: #00aac3;
}

.navbar-item {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
}

.navbar-item img {
  max-height: 1.75rem;
}

.navbar-item.has-dropdown {
  padding: 0;
}

.navbar-item.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}

.navbar-item.is-tab {
  border-bottom: 1px solid transparent;
  min-height: 3.25rem;
  padding-bottom: calc(0.5rem - 1px);
}

.navbar-item.is-tab:focus, .navbar-item.is-tab:hover {
  background-color: transparent;
  border-bottom-color: #00aac3;
}

.navbar-item.is-tab.is-active {
  background-color: transparent;
  border-bottom-color: #00aac3;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  color: #00aac3;
  padding-bottom: calc(0.5rem - 3px);
}

.navbar-content {
  flex-grow: 1;
  flex-shrink: 1;
}

.navbar-link:not(.is-arrowless) {
  padding-right: 2.5em;
}

.navbar-link:not(.is-arrowless)::after {
  border-color: #00aac3;
  margin-top: -0.375em;
  right: 1.125em;
}

.navbar-dropdown {
  font-size: 0.875rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.navbar-dropdown .navbar-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.navbar-divider {
  background-color: whitesmoke;
  border: none;
  display: none;
  height: 2px;
  margin: 0.5rem 0;
}

@media screen and (max-width: 1023px) {
  .navbar > .container {
    display: block;
  }

  .navbar-brand .navbar-item,
.navbar-tabs .navbar-item {
    align-items: center;
    display: flex;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-menu {
    background-color: white;
    box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
    padding: 0.5rem 0;
  }

  .navbar-menu.is-active {
    display: block;
  }

  .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .navbar.is-fixed-bottom-touch {
    bottom: 0;
  }

  .navbar.is-fixed-bottom-touch.has-shadow {
    box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
  }

  .navbar.is-fixed-top-touch {
    top: 0;
  }

  .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu {
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 3.25rem);
    overflow: auto;
  }

  html.has-navbar-fixed-top-touch,
body.has-navbar-fixed-top-touch {
    padding-top: 3.25rem;
  }

  html.has-navbar-fixed-bottom-touch,
body.has-navbar-fixed-bottom-touch {
    padding-bottom: 3.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .navbar,
.navbar-menu,
.navbar-start,
.navbar-end {
    align-items: stretch;
    display: flex;
  }

  .navbar {
    min-height: 3.25rem;
  }

  .navbar.is-spaced {
    padding: 1rem 2rem;
  }

  .navbar.is-spaced .navbar-start,
.navbar.is-spaced .navbar-end {
    align-items: center;
  }

  .navbar.is-spaced a.navbar-item,
.navbar.is-spaced .navbar-link {
    border-radius: 4px;
  }

  .navbar.is-transparent a.navbar-item:focus, .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active,
.navbar.is-transparent .navbar-link:focus,
.navbar.is-transparent .navbar-link:hover,
.navbar.is-transparent .navbar-link.is-active {
    background-color: transparent !important;
  }

  .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
    background-color: transparent !important;
  }

  .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
    background-color: whitesmoke;
    color: #0a0a0a;
  }

  .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
    background-color: whitesmoke;
    color: #00aac3;
  }

  .navbar-burger {
    display: none;
  }

  .navbar-item,
.navbar-link {
    align-items: center;
    display: flex;
  }

  .navbar-item {
    display: flex;
  }

  .navbar-item.has-dropdown {
    align-items: stretch;
  }

  .navbar-item.has-dropdown-up .navbar-link::after {
    transform: rotate(135deg) translate(0.25em, -0.25em);
  }

  .navbar-item.has-dropdown-up .navbar-dropdown {
    border-bottom: 2px solid #dbdbdb;
    border-radius: 6px 6px 0 0;
    border-top: none;
    bottom: 100%;
    box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
    top: auto;
  }

  .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
    display: block;
  }

  .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar-menu {
    flex-grow: 1;
    flex-shrink: 0;
  }

  .navbar-start {
    justify-content: flex-start;
    margin-right: auto;
  }

  .navbar-end {
    justify-content: flex-end;
    margin-left: auto;
  }

  .navbar-dropdown {
    background-color: white;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: 2px solid #dbdbdb;
    box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
    display: none;
    font-size: 0.875rem;
    left: 0;
    min-width: 100%;
    position: absolute;
    top: 100%;
    z-index: 20;
  }

  .navbar-dropdown .navbar-item {
    padding: 0.375rem 1rem;
    white-space: nowrap;
  }

  .navbar-dropdown a.navbar-item {
    padding-right: 3rem;
  }

  .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover {
    background-color: whitesmoke;
    color: #0a0a0a;
  }

  .navbar-dropdown a.navbar-item.is-active {
    background-color: whitesmoke;
    color: #00aac3;
  }

  .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed {
    border-radius: 6px;
    border-top: none;
    box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    display: block;
    opacity: 0;
    pointer-events: none;
    top: calc(100% + (-4px));
    transform: translateY(-5px);
    transition-duration: 86ms;
    transition-property: opacity, transform;
  }

  .navbar-dropdown.is-right {
    left: auto;
    right: 0;
  }

  .navbar-divider {
    display: block;
  }

  .navbar > .container .navbar-brand,
.container > .navbar .navbar-brand {
    margin-left: -0.75rem;
  }

  .navbar > .container .navbar-menu,
.container > .navbar .navbar-menu {
    margin-right: -0.75rem;
  }

  .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .navbar.is-fixed-bottom-desktop {
    bottom: 0;
  }

  .navbar.is-fixed-bottom-desktop.has-shadow {
    box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
  }

  .navbar.is-fixed-top-desktop {
    top: 0;
  }

  html.has-navbar-fixed-top-desktop,
body.has-navbar-fixed-top-desktop {
    padding-top: 3.25rem;
  }

  html.has-navbar-fixed-bottom-desktop,
body.has-navbar-fixed-bottom-desktop {
    padding-bottom: 3.25rem;
  }

  html.has-spaced-navbar-fixed-top,
body.has-spaced-navbar-fixed-top {
    padding-top: 5.25rem;
  }

  html.has-spaced-navbar-fixed-bottom,
body.has-spaced-navbar-fixed-bottom {
    padding-bottom: 5.25rem;
  }

  a.navbar-item.is-active,
.navbar-link.is-active {
    color: #0a0a0a;
  }

  a.navbar-item.is-active:not(:focus):not(:hover),
.navbar-link.is-active:not(:focus):not(:hover) {
    background-color: transparent;
  }

  .navbar-item.has-dropdown:focus .navbar-link, .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #fafafa;
  }
}
.hero.is-fullheight-with-navbar {
  min-height: calc(100vh - 3.25rem);
}

.pagination {
  font-size: 1rem;
  margin: -0.25rem;
}

.pagination.is-small {
  font-size: 0.75rem;
}

.pagination.is-medium {
  font-size: 1.25rem;
}

.pagination.is-large {
  font-size: 1.5rem;
}

.pagination.is-rounded .pagination-previous,
.pagination.is-rounded .pagination-next {
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 290486px;
}

.pagination.is-rounded .pagination-link {
  border-radius: 290486px;
}

.pagination,
.pagination-list {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}

.pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis {
  font-size: 1em;
  justify-content: center;
  margin: 0.25rem;
  padding-left: 0.5em;
  padding-right: 0.5em;
  text-align: center;
}

.pagination-previous,
.pagination-next,
.pagination-link {
  border-color: #dbdbdb;
  color: #363636;
  min-width: 2.25em;
}

.pagination-previous:hover,
.pagination-next:hover,
.pagination-link:hover {
  border-color: #b5b5b5;
  color: #363636;
}

.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus {
  border-color: #00aac3;
}

.pagination-previous:active,
.pagination-next:active,
.pagination-link:active {
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
}

.pagination-previous[disabled],
.pagination-next[disabled],
.pagination-link[disabled] {
  background-color: #dbdbdb;
  border-color: #dbdbdb;
  box-shadow: none;
  color: #7a7a7a;
  opacity: 0.5;
}

.pagination-previous,
.pagination-next {
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
}

.pagination-link.is-current {
  background-color: #00aac3;
  border-color: #00aac3;
  color: white;
}

.pagination-ellipsis {
  color: #b5b5b5;
  pointer-events: none;
}

.pagination-list {
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
  }

  .pagination-previous,
.pagination-next {
    flex-grow: 1;
    flex-shrink: 1;
  }

  .pagination-list li {
    flex-grow: 1;
    flex-shrink: 1;
  }
}
@media screen and (min-width: 769px), print {
  .pagination-list {
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: flex-start;
    order: 1;
  }

  .pagination-previous {
    order: 2;
  }

  .pagination-next {
    order: 3;
  }

  .pagination {
    justify-content: space-between;
  }

  .pagination.is-centered .pagination-previous {
    order: 1;
  }

  .pagination.is-centered .pagination-list {
    justify-content: center;
    order: 2;
  }

  .pagination.is-centered .pagination-next {
    order: 3;
  }

  .pagination.is-right .pagination-previous {
    order: 1;
  }

  .pagination.is-right .pagination-next {
    order: 2;
  }

  .pagination.is-right .pagination-list {
    justify-content: flex-end;
    order: 3;
  }
}
.panel {
  font-size: 1rem;
}

.panel:not(:last-child) {
  margin-bottom: 1.5rem;
}

.panel-heading,
.panel-tabs,
.panel-block {
  border-bottom: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
}

.panel-heading:first-child,
.panel-tabs:first-child,
.panel-block:first-child {
  border-top: 1px solid #dbdbdb;
}

.panel-heading {
  background-color: whitesmoke;
  border-radius: 4px 4px 0 0;
  color: #363636;
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.25;
  padding: 0.5em 0.75em;
}

.panel-tabs {
  align-items: flex-end;
  display: flex;
  font-size: 0.875em;
  justify-content: center;
}

.panel-tabs a {
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: -1px;
  padding: 0.5em;
}

.panel-tabs a.is-active {
  border-bottom-color: #4a4a4a;
  color: #363636;
}

.panel-list a {
  color: #4a4a4a;
}

.panel-list a:hover {
  color: #00aac3;
}

.panel-block {
  align-items: center;
  color: #363636;
  display: flex;
  justify-content: flex-start;
  padding: 0.5em 0.75em;
}

.panel-block input[type=checkbox] {
  margin-right: 0.75em;
}

.panel-block > .control {
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
}

.panel-block.is-wrapped {
  flex-wrap: wrap;
}

.panel-block.is-active {
  border-left-color: #00aac3;
  color: #363636;
}

.panel-block.is-active .panel-icon {
  color: #00aac3;
}

a.panel-block,
label.panel-block {
  cursor: pointer;
}

a.panel-block:hover,
label.panel-block:hover {
  background-color: whitesmoke;
}

.panel-icon {
  display: inline-block;
  font-size: 14px;
  height: 1em;
  line-height: 1em;
  text-align: center;
  vertical-align: top;
  width: 1em;
  color: #7a7a7a;
  margin-right: 0.75em;
}

.panel-icon .fa {
  font-size: inherit;
  line-height: inherit;
}

.tabs {
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.tabs a {
  align-items: center;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #4a4a4a;
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
}

.tabs a:hover {
  border-bottom-color: #363636;
  color: #363636;
}

.tabs li {
  display: block;
  color: #333;
  font-size: 2.1rem;
}

.tabs li.is-active a {
  border-bottom-color: #00aac3;
  font-family: "DINPro Bold", sans-serif;
  color: #333;
  font-size: 2.1rem;
}

.tabs ul {
  align-items: center;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: flex-start;
}

.tabs ul.is-left {
  padding-right: 0.75em;
}

.tabs ul.is-center {
  flex: none;
  justify-content: center;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.tabs ul.is-right {
  justify-content: flex-end;
  padding-left: 0.75em;
}

.tabs .icon:first-child {
  margin-right: 0.5em;
}

.tabs .icon:last-child {
  margin-left: 0.5em;
}

.tabs.is-centered ul {
  justify-content: center;
}

.tabs.is-right ul {
  justify-content: flex-end;
}

.tabs.is-boxed a {
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.tabs.is-boxed a:hover {
  background-color: whitesmoke;
  border-bottom-color: #dbdbdb;
}

.tabs.is-boxed li.is-active a {
  background-color: white;
  border-color: #dbdbdb;
  border-bottom-color: transparent !important;
}

.tabs.is-fullwidth li {
  flex-grow: 1;
  flex-shrink: 0;
}

.tabs.is-toggle a {
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px;
  margin-bottom: 0;
  position: relative;
}

.tabs.is-toggle a:hover {
  background-color: whitesmoke;
  border-color: #b5b5b5;
  z-index: 2;
}

.tabs.is-toggle li + li {
  margin-left: -1px;
}

.tabs.is-toggle li:first-child a {
  border-radius: 4px 0 0 4px;
}

.tabs.is-toggle li:last-child a {
  border-radius: 0 4px 4px 0;
}

.tabs.is-toggle li.is-active a {
  background-color: #00aac3;
  border-color: #00aac3;
  color: white;
  z-index: 1;
}

.tabs.is-toggle ul {
  border-bottom: none;
}

.tabs.is-toggle.is-toggle-rounded li:first-child a {
  border-bottom-left-radius: 290486px;
  border-top-left-radius: 290486px;
  padding-left: 1.25em;
}

.tabs.is-toggle.is-toggle-rounded li:last-child a {
  border-bottom-right-radius: 290486px;
  border-top-right-radius: 290486px;
  padding-right: 1.25em;
}

.tabs.is-small {
  font-size: 0.75rem;
}

.tabs.is-medium {
  font-size: 1.25rem;
}

.tabs.is-large {
  font-size: 1.5rem;
}

.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}

.columns.is-mobile > .column.is-narrow {
  flex: none;
}

.columns.is-mobile > .column.is-full {
  flex: none;
  width: 100%;
}

.columns.is-mobile > .column.is-three-quarters {
  flex: none;
  width: 75%;
}

.columns.is-mobile > .column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}

.columns.is-mobile > .column.is-half {
  flex: none;
  width: 50%;
}

.columns.is-mobile > .column.is-one-third {
  flex: none;
  width: 33.3333%;
}

.columns.is-mobile > .column.is-one-quarter {
  flex: none;
  width: 25%;
}

.columns.is-mobile > .column.is-one-fifth {
  flex: none;
  width: 20%;
}

.columns.is-mobile > .column.is-two-fifths {
  flex: none;
  width: 40%;
}

.columns.is-mobile > .column.is-three-fifths {
  flex: none;
  width: 60%;
}

.columns.is-mobile > .column.is-four-fifths {
  flex: none;
  width: 80%;
}

.columns.is-mobile > .column.is-offset-three-quarters {
  margin-left: 75%;
}

.columns.is-mobile > .column.is-offset-two-thirds {
  margin-left: 66.6666%;
}

.columns.is-mobile > .column.is-offset-half {
  margin-left: 50%;
}

.columns.is-mobile > .column.is-offset-one-third {
  margin-left: 33.3333%;
}

.columns.is-mobile > .column.is-offset-one-quarter {
  margin-left: 25%;
}

.columns.is-mobile > .column.is-offset-one-fifth {
  margin-left: 20%;
}

.columns.is-mobile > .column.is-offset-two-fifths {
  margin-left: 40%;
}

.columns.is-mobile > .column.is-offset-three-fifths {
  margin-left: 60%;
}

.columns.is-mobile > .column.is-offset-four-fifths {
  margin-left: 80%;
}

.columns.is-mobile > .column.is-0 {
  flex: none;
  width: 0%;
}

.columns.is-mobile > .column.is-offset-0 {
  margin-left: 0%;
}

.columns.is-mobile > .column.is-1 {
  flex: none;
  width: 8.33333%;
}

.columns.is-mobile > .column.is-offset-1 {
  margin-left: 8.33333%;
}

.columns.is-mobile > .column.is-2 {
  flex: none;
  width: 16.66667%;
}

.columns.is-mobile > .column.is-offset-2 {
  margin-left: 16.66667%;
}

.columns.is-mobile > .column.is-3 {
  flex: none;
  width: 25%;
}

.columns.is-mobile > .column.is-offset-3 {
  margin-left: 25%;
}

.columns.is-mobile > .column.is-4 {
  flex: none;
  width: 33.33333%;
}

.columns.is-mobile > .column.is-offset-4 {
  margin-left: 33.33333%;
}

.columns.is-mobile > .column.is-5 {
  flex: none;
  width: 41.66667%;
}

.columns.is-mobile > .column.is-offset-5 {
  margin-left: 41.66667%;
}

.columns.is-mobile > .column.is-6 {
  flex: none;
  width: 50%;
}

.columns.is-mobile > .column.is-offset-6 {
  margin-left: 50%;
}

.columns.is-mobile > .column.is-7 {
  flex: none;
  width: 58.33333%;
}

.columns.is-mobile > .column.is-offset-7 {
  margin-left: 58.33333%;
}

.columns.is-mobile > .column.is-8 {
  flex: none;
  width: 66.66667%;
}

.columns.is-mobile > .column.is-offset-8 {
  margin-left: 66.66667%;
}

.columns.is-mobile > .column.is-9 {
  flex: none;
  width: 75%;
}

.columns.is-mobile > .column.is-offset-9 {
  margin-left: 75%;
}

.columns.is-mobile > .column.is-10 {
  flex: none;
  width: 83.33333%;
}

.columns.is-mobile > .column.is-offset-10 {
  margin-left: 83.33333%;
}

.columns.is-mobile > .column.is-11 {
  flex: none;
  width: 91.66667%;
}

.columns.is-mobile > .column.is-offset-11 {
  margin-left: 91.66667%;
}

.columns.is-mobile > .column.is-12 {
  flex: none;
  width: 100%;
}

.columns.is-mobile > .column.is-offset-12 {
  margin-left: 100%;
}

@media screen and (max-width: 768px) {
  .column.is-narrow-mobile {
    flex: none;
  }

  .column.is-full-mobile {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-mobile {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-mobile {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-mobile {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-mobile {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-mobile {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-mobile {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-mobile {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-mobile {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-mobile {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-mobile {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-mobile {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-mobile {
    margin-left: 50%;
  }

  .column.is-offset-one-third-mobile {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-mobile {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-mobile {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-mobile {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-mobile {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-mobile {
    margin-left: 80%;
  }

  .column.is-0-mobile {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-mobile {
    margin-left: 0%;
  }

  .column.is-1-mobile {
    flex: none;
    width: 8.33333%;
  }

  .column.is-offset-1-mobile {
    margin-left: 8.33333%;
  }

  .column.is-2-mobile {
    flex: none;
    width: 16.66667%;
  }

  .column.is-offset-2-mobile {
    margin-left: 16.66667%;
  }

  .column.is-3-mobile {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-mobile {
    margin-left: 25%;
  }

  .column.is-4-mobile {
    flex: none;
    width: 33.33333%;
  }

  .column.is-offset-4-mobile {
    margin-left: 33.33333%;
  }

  .column.is-5-mobile {
    flex: none;
    width: 41.66667%;
  }

  .column.is-offset-5-mobile {
    margin-left: 41.66667%;
  }

  .column.is-6-mobile {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-mobile {
    margin-left: 50%;
  }

  .column.is-7-mobile {
    flex: none;
    width: 58.33333%;
  }

  .column.is-offset-7-mobile {
    margin-left: 58.33333%;
  }

  .column.is-8-mobile {
    flex: none;
    width: 66.66667%;
  }

  .column.is-offset-8-mobile {
    margin-left: 66.66667%;
  }

  .column.is-9-mobile {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-mobile {
    margin-left: 75%;
  }

  .column.is-10-mobile {
    flex: none;
    width: 83.33333%;
  }

  .column.is-offset-10-mobile {
    margin-left: 83.33333%;
  }

  .column.is-11-mobile {
    flex: none;
    width: 91.66667%;
  }

  .column.is-offset-11-mobile {
    margin-left: 91.66667%;
  }

  .column.is-12-mobile {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-mobile {
    margin-left: 100%;
  }
}
@media screen and (min-width: 769px), print {
  .column.is-narrow, .column.is-narrow-tablet {
    flex: none;
  }

  .column.is-full, .column.is-full-tablet {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters, .column.is-three-quarters-tablet {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds, .column.is-two-thirds-tablet {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half, .column.is-half-tablet {
    flex: none;
    width: 50%;
  }

  .column.is-one-third, .column.is-one-third-tablet {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter, .column.is-one-quarter-tablet {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth, .column.is-one-fifth-tablet {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths, .column.is-two-fifths-tablet {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths, .column.is-three-fifths-tablet {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths, .column.is-four-fifths-tablet {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
    margin-left: 66.6666%;
  }

  .column.is-offset-half, .column.is-offset-half-tablet {
    margin-left: 50%;
  }

  .column.is-offset-one-third, .column.is-offset-one-third-tablet {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
    margin-left: 80%;
  }

  .column.is-0, .column.is-0-tablet {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0, .column.is-offset-0-tablet {
    margin-left: 0%;
  }

  .column.is-1, .column.is-1-tablet {
    flex: none;
    width: 8.33333%;
  }

  .column.is-offset-1, .column.is-offset-1-tablet {
    margin-left: 8.33333%;
  }

  .column.is-2, .column.is-2-tablet {
    flex: none;
    width: 16.66667%;
  }

  .column.is-offset-2, .column.is-offset-2-tablet {
    margin-left: 16.66667%;
  }

  .column.is-3, .column.is-3-tablet {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3, .column.is-offset-3-tablet {
    margin-left: 25%;
  }

  .column.is-4, .column.is-4-tablet {
    flex: none;
    width: 33.33333%;
  }

  .column.is-offset-4, .column.is-offset-4-tablet {
    margin-left: 33.33333%;
  }

  .column.is-5, .column.is-5-tablet {
    flex: none;
    width: 41.66667%;
  }

  .column.is-offset-5, .column.is-offset-5-tablet {
    margin-left: 41.66667%;
  }

  .column.is-6, .column.is-6-tablet {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6, .column.is-offset-6-tablet {
    margin-left: 50%;
  }

  .column.is-7, .column.is-7-tablet {
    flex: none;
    width: 58.33333%;
  }

  .column.is-offset-7, .column.is-offset-7-tablet {
    margin-left: 58.33333%;
  }

  .column.is-8, .column.is-8-tablet {
    flex: none;
    width: 66.66667%;
  }

  .column.is-offset-8, .column.is-offset-8-tablet {
    margin-left: 66.66667%;
  }

  .column.is-9, .column.is-9-tablet {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9, .column.is-offset-9-tablet {
    margin-left: 75%;
  }

  .column.is-10, .column.is-10-tablet {
    flex: none;
    width: 83.33333%;
  }

  .column.is-offset-10, .column.is-offset-10-tablet {
    margin-left: 83.33333%;
  }

  .column.is-11, .column.is-11-tablet {
    flex: none;
    width: 91.66667%;
  }

  .column.is-offset-11, .column.is-offset-11-tablet {
    margin-left: 91.66667%;
  }

  .column.is-12, .column.is-12-tablet {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12, .column.is-offset-12-tablet {
    margin-left: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .column.is-narrow-touch {
    flex: none;
  }

  .column.is-full-touch {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-touch {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-touch {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-touch {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-touch {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-touch {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-touch {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-touch {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-touch {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-touch {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-touch {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-touch {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-touch {
    margin-left: 50%;
  }

  .column.is-offset-one-third-touch {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-touch {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-touch {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-touch {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-touch {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-touch {
    margin-left: 80%;
  }

  .column.is-0-touch {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-touch {
    margin-left: 0%;
  }

  .column.is-1-touch {
    flex: none;
    width: 8.33333%;
  }

  .column.is-offset-1-touch {
    margin-left: 8.33333%;
  }

  .column.is-2-touch {
    flex: none;
    width: 16.66667%;
  }

  .column.is-offset-2-touch {
    margin-left: 16.66667%;
  }

  .column.is-3-touch {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-touch {
    margin-left: 25%;
  }

  .column.is-4-touch {
    flex: none;
    width: 33.33333%;
  }

  .column.is-offset-4-touch {
    margin-left: 33.33333%;
  }

  .column.is-5-touch {
    flex: none;
    width: 41.66667%;
  }

  .column.is-offset-5-touch {
    margin-left: 41.66667%;
  }

  .column.is-6-touch {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-touch {
    margin-left: 50%;
  }

  .column.is-7-touch {
    flex: none;
    width: 58.33333%;
  }

  .column.is-offset-7-touch {
    margin-left: 58.33333%;
  }

  .column.is-8-touch {
    flex: none;
    width: 66.66667%;
  }

  .column.is-offset-8-touch {
    margin-left: 66.66667%;
  }

  .column.is-9-touch {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-touch {
    margin-left: 75%;
  }

  .column.is-10-touch {
    flex: none;
    width: 83.33333%;
  }

  .column.is-offset-10-touch {
    margin-left: 83.33333%;
  }

  .column.is-11-touch {
    flex: none;
    width: 91.66667%;
  }

  .column.is-offset-11-touch {
    margin-left: 91.66667%;
  }

  .column.is-12-touch {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-touch {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .column.is-narrow-desktop {
    flex: none;
  }

  .column.is-full-desktop {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-desktop {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-desktop {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-desktop {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-desktop {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-desktop {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-desktop {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-desktop {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-desktop {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-desktop {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-desktop {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-desktop {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-desktop {
    margin-left: 50%;
  }

  .column.is-offset-one-third-desktop {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-desktop {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-desktop {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-desktop {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-desktop {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-desktop {
    margin-left: 80%;
  }

  .column.is-0-desktop {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-desktop {
    margin-left: 0%;
  }

  .column.is-1-desktop {
    flex: none;
    width: 8.33333%;
  }

  .column.is-offset-1-desktop {
    margin-left: 8.33333%;
  }

  .column.is-2-desktop {
    flex: none;
    width: 16.66667%;
  }

  .column.is-offset-2-desktop {
    margin-left: 16.66667%;
  }

  .column.is-3-desktop {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-desktop {
    margin-left: 25%;
  }

  .column.is-4-desktop {
    flex: none;
    width: 33.33333%;
  }

  .column.is-offset-4-desktop {
    margin-left: 33.33333%;
  }

  .column.is-5-desktop {
    flex: none;
    width: 41.66667%;
  }

  .column.is-offset-5-desktop {
    margin-left: 41.66667%;
  }

  .column.is-6-desktop {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-desktop {
    margin-left: 50%;
  }

  .column.is-7-desktop {
    flex: none;
    width: 58.33333%;
  }

  .column.is-offset-7-desktop {
    margin-left: 58.33333%;
  }

  .column.is-8-desktop {
    flex: none;
    width: 66.66667%;
  }

  .column.is-offset-8-desktop {
    margin-left: 66.66667%;
  }

  .column.is-9-desktop {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-desktop {
    margin-left: 75%;
  }

  .column.is-10-desktop {
    flex: none;
    width: 83.33333%;
  }

  .column.is-offset-10-desktop {
    margin-left: 83.33333%;
  }

  .column.is-11-desktop {
    flex: none;
    width: 91.66667%;
  }

  .column.is-offset-11-desktop {
    margin-left: 91.66667%;
  }

  .column.is-12-desktop {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-desktop {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1216px) {
  .column.is-narrow-widescreen {
    flex: none;
  }

  .column.is-full-widescreen {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-widescreen {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-widescreen {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-widescreen {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-widescreen {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-widescreen {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-widescreen {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-widescreen {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-widescreen {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-widescreen {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-widescreen {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-widescreen {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-widescreen {
    margin-left: 50%;
  }

  .column.is-offset-one-third-widescreen {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-widescreen {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-widescreen {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-widescreen {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-widescreen {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-widescreen {
    margin-left: 80%;
  }

  .column.is-0-widescreen {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-widescreen {
    margin-left: 0%;
  }

  .column.is-1-widescreen {
    flex: none;
    width: 8.33333%;
  }

  .column.is-offset-1-widescreen {
    margin-left: 8.33333%;
  }

  .column.is-2-widescreen {
    flex: none;
    width: 16.66667%;
  }

  .column.is-offset-2-widescreen {
    margin-left: 16.66667%;
  }

  .column.is-3-widescreen {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-widescreen {
    margin-left: 25%;
  }

  .column.is-4-widescreen {
    flex: none;
    width: 33.33333%;
  }

  .column.is-offset-4-widescreen {
    margin-left: 33.33333%;
  }

  .column.is-5-widescreen {
    flex: none;
    width: 41.66667%;
  }

  .column.is-offset-5-widescreen {
    margin-left: 41.66667%;
  }

  .column.is-6-widescreen {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-widescreen {
    margin-left: 50%;
  }

  .column.is-7-widescreen {
    flex: none;
    width: 58.33333%;
  }

  .column.is-offset-7-widescreen {
    margin-left: 58.33333%;
  }

  .column.is-8-widescreen {
    flex: none;
    width: 66.66667%;
  }

  .column.is-offset-8-widescreen {
    margin-left: 66.66667%;
  }

  .column.is-9-widescreen {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-widescreen {
    margin-left: 75%;
  }

  .column.is-10-widescreen {
    flex: none;
    width: 83.33333%;
  }

  .column.is-offset-10-widescreen {
    margin-left: 83.33333%;
  }

  .column.is-11-widescreen {
    flex: none;
    width: 91.66667%;
  }

  .column.is-offset-11-widescreen {
    margin-left: 91.66667%;
  }

  .column.is-12-widescreen {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-widescreen {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1408px) {
  .column.is-narrow-fullhd {
    flex: none;
  }

  .column.is-full-fullhd {
    flex: none;
    width: 100%;
  }

  .column.is-three-quarters-fullhd {
    flex: none;
    width: 75%;
  }

  .column.is-two-thirds-fullhd {
    flex: none;
    width: 66.6666%;
  }

  .column.is-half-fullhd {
    flex: none;
    width: 50%;
  }

  .column.is-one-third-fullhd {
    flex: none;
    width: 33.3333%;
  }

  .column.is-one-quarter-fullhd {
    flex: none;
    width: 25%;
  }

  .column.is-one-fifth-fullhd {
    flex: none;
    width: 20%;
  }

  .column.is-two-fifths-fullhd {
    flex: none;
    width: 40%;
  }

  .column.is-three-fifths-fullhd {
    flex: none;
    width: 60%;
  }

  .column.is-four-fifths-fullhd {
    flex: none;
    width: 80%;
  }

  .column.is-offset-three-quarters-fullhd {
    margin-left: 75%;
  }

  .column.is-offset-two-thirds-fullhd {
    margin-left: 66.6666%;
  }

  .column.is-offset-half-fullhd {
    margin-left: 50%;
  }

  .column.is-offset-one-third-fullhd {
    margin-left: 33.3333%;
  }

  .column.is-offset-one-quarter-fullhd {
    margin-left: 25%;
  }

  .column.is-offset-one-fifth-fullhd {
    margin-left: 20%;
  }

  .column.is-offset-two-fifths-fullhd {
    margin-left: 40%;
  }

  .column.is-offset-three-fifths-fullhd {
    margin-left: 60%;
  }

  .column.is-offset-four-fifths-fullhd {
    margin-left: 80%;
  }

  .column.is-0-fullhd {
    flex: none;
    width: 0%;
  }

  .column.is-offset-0-fullhd {
    margin-left: 0%;
  }

  .column.is-1-fullhd {
    flex: none;
    width: 8.33333%;
  }

  .column.is-offset-1-fullhd {
    margin-left: 8.33333%;
  }

  .column.is-2-fullhd {
    flex: none;
    width: 16.66667%;
  }

  .column.is-offset-2-fullhd {
    margin-left: 16.66667%;
  }

  .column.is-3-fullhd {
    flex: none;
    width: 25%;
  }

  .column.is-offset-3-fullhd {
    margin-left: 25%;
  }

  .column.is-4-fullhd {
    flex: none;
    width: 33.33333%;
  }

  .column.is-offset-4-fullhd {
    margin-left: 33.33333%;
  }

  .column.is-5-fullhd {
    flex: none;
    width: 41.66667%;
  }

  .column.is-offset-5-fullhd {
    margin-left: 41.66667%;
  }

  .column.is-6-fullhd {
    flex: none;
    width: 50%;
  }

  .column.is-offset-6-fullhd {
    margin-left: 50%;
  }

  .column.is-7-fullhd {
    flex: none;
    width: 58.33333%;
  }

  .column.is-offset-7-fullhd {
    margin-left: 58.33333%;
  }

  .column.is-8-fullhd {
    flex: none;
    width: 66.66667%;
  }

  .column.is-offset-8-fullhd {
    margin-left: 66.66667%;
  }

  .column.is-9-fullhd {
    flex: none;
    width: 75%;
  }

  .column.is-offset-9-fullhd {
    margin-left: 75%;
  }

  .column.is-10-fullhd {
    flex: none;
    width: 83.33333%;
  }

  .column.is-offset-10-fullhd {
    margin-left: 83.33333%;
  }

  .column.is-11-fullhd {
    flex: none;
    width: 91.66667%;
  }

  .column.is-offset-11-fullhd {
    margin-left: 91.66667%;
  }

  .column.is-12-fullhd {
    flex: none;
    width: 100%;
  }

  .column.is-offset-12-fullhd {
    margin-left: 100%;
  }
}
.columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.columns:last-child {
  margin-bottom: -0.75rem;
}

.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}

.columns.is-centered {
  justify-content: center;
}

.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.columns.is-gapless > .column {
  margin: 0;
  padding: 0 !important;
}

.columns.is-gapless:not(:last-child) {
  margin-bottom: 1.5rem;
}

.columns.is-gapless:last-child {
  margin-bottom: 0;
}

.columns.is-mobile {
  display: flex;
}

.columns.is-multiline {
  flex-wrap: wrap;
}

.columns.is-vcentered {
  align-items: center;
}

@media screen and (min-width: 769px), print {
  .columns:not(.is-desktop) {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-desktop {
    display: flex;
  }
}
.columns.is-variable {
  --columnGap: 0.75rem;
  margin-left: calc(-1 * var(--columnGap));
  margin-right: calc(-1 * var(--columnGap));
}

.columns.is-variable .column {
  padding-left: var(--columnGap);
  padding-right: var(--columnGap);
}

.columns.is-variable.is-0 {
  --columnGap: 0rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-0-mobile {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-0-tablet {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-0-tablet-only {
    --columnGap: 0rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-0-touch {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-0-desktop {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-0-desktop-only {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-0-widescreen {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-0-widescreen-only {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-0-fullhd {
    --columnGap: 0rem;
  }
}
.columns.is-variable.is-1 {
  --columnGap: 0.25rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-1-mobile {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-1-tablet {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-1-tablet-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-1-touch {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-1-desktop {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-1-desktop-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-1-widescreen {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-1-widescreen-only {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-1-fullhd {
    --columnGap: 0.25rem;
  }
}
.columns.is-variable.is-2 {
  --columnGap: 0.5rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-2-mobile {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-2-tablet {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-2-tablet-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-2-touch {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-2-desktop {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-2-desktop-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-2-widescreen {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-2-widescreen-only {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-2-fullhd {
    --columnGap: 0.5rem;
  }
}
.columns.is-variable.is-3 {
  --columnGap: 0.75rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-3-mobile {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-3-tablet {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-3-tablet-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-3-touch {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-3-desktop {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-3-desktop-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-3-widescreen {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-3-widescreen-only {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-3-fullhd {
    --columnGap: 0.75rem;
  }
}
.columns.is-variable.is-4 {
  --columnGap: 1rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-4-mobile {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-4-tablet {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-4-tablet-only {
    --columnGap: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-4-touch {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-4-desktop {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-4-desktop-only {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-4-widescreen {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-4-widescreen-only {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-4-fullhd {
    --columnGap: 1rem;
  }
}
.columns.is-variable.is-5 {
  --columnGap: 1.25rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-5-mobile {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-5-tablet {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-5-tablet-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-5-touch {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-5-desktop {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-5-desktop-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-5-widescreen {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-5-widescreen-only {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-5-fullhd {
    --columnGap: 1.25rem;
  }
}
.columns.is-variable.is-6 {
  --columnGap: 1.5rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-6-mobile {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-6-tablet {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-6-tablet-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-6-touch {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-6-desktop {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-6-desktop-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-6-widescreen {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-6-widescreen-only {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-6-fullhd {
    --columnGap: 1.5rem;
  }
}
.columns.is-variable.is-7 {
  --columnGap: 1.75rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-7-mobile {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-7-tablet {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-7-tablet-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-7-touch {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-7-desktop {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-7-desktop-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-7-widescreen {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-7-widescreen-only {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-7-fullhd {
    --columnGap: 1.75rem;
  }
}
.columns.is-variable.is-8 {
  --columnGap: 2rem;
}

@media screen and (max-width: 768px) {
  .columns.is-variable.is-8-mobile {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-8-tablet {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-8-tablet-only {
    --columnGap: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-8-touch {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-8-desktop {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .columns.is-variable.is-8-desktop-only {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1216px) {
  .columns.is-variable.is-8-widescreen {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .columns.is-variable.is-8-widescreen-only {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-8-fullhd {
    --columnGap: 2rem;
  }
}
.tile {
  align-items: stretch;
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: -webkit-min-content;
  min-height: -moz-min-content;
  min-height: min-content;
}

.tile.is-ancestor {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.tile.is-ancestor:last-child {
  margin-bottom: -0.75rem;
}

.tile.is-ancestor:not(:last-child) {
  margin-bottom: 0.75rem;
}

.tile.is-child {
  margin: 0 !important;
}

.tile.is-parent {
  padding: 0.75rem;
}

.tile.is-vertical {
  flex-direction: column;
}

.tile.is-vertical > .tile.is-child:not(:last-child) {
  margin-bottom: 1.5rem !important;
}

@media screen and (min-width: 769px), print {
  .tile:not(.is-child) {
    display: flex;
  }

  .tile.is-1 {
    flex: none;
    width: 8.33333%;
  }

  .tile.is-2 {
    flex: none;
    width: 16.66667%;
  }

  .tile.is-3 {
    flex: none;
    width: 25%;
  }

  .tile.is-4 {
    flex: none;
    width: 33.33333%;
  }

  .tile.is-5 {
    flex: none;
    width: 41.66667%;
  }

  .tile.is-6 {
    flex: none;
    width: 50%;
  }

  .tile.is-7 {
    flex: none;
    width: 58.33333%;
  }

  .tile.is-8 {
    flex: none;
    width: 66.66667%;
  }

  .tile.is-9 {
    flex: none;
    width: 75%;
  }

  .tile.is-10 {
    flex: none;
    width: 83.33333%;
  }

  .tile.is-11 {
    flex: none;
    width: 91.66667%;
  }

  .tile.is-12 {
    flex: none;
    width: 100%;
  }
}
.hero {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero .navbar {
  background: none;
}

.hero .tabs ul {
  border-bottom: none;
}

.hero.is-white {
  background-color: white;
  color: #0a0a0a;
}

.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-white strong {
  color: inherit;
}

.hero.is-white .title {
  color: #0a0a0a;
}

.hero.is-white .subtitle {
  color: rgba(10, 10, 10, 0.9);
}

.hero.is-white .subtitle a:not(.button),
.hero.is-white .subtitle strong {
  color: #0a0a0a;
}

@media screen and (max-width: 1023px) {
  .hero.is-white .navbar-menu {
    background-color: white;
  }
}
.hero.is-white .navbar-item,
.hero.is-white .navbar-link {
  color: rgba(10, 10, 10, 0.7);
}

.hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active,
.hero.is-white .navbar-link:hover,
.hero.is-white .navbar-link.is-active {
  background-color: #f2f2f2;
  color: #0a0a0a;
}

.hero.is-white .tabs a {
  color: #0a0a0a;
  opacity: 0.9;
}

.hero.is-white .tabs a:hover {
  opacity: 1;
}

.hero.is-white .tabs li.is-active a {
  opacity: 1;
}

.hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a {
  color: #0a0a0a;
}

.hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: white;
}

.hero.is-white.is-bold {
  background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-white.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
  }
}
.hero.is-black {
  background-color: #0a0a0a;
  color: white;
}

.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-black strong {
  color: inherit;
}

.hero.is-black .title {
  color: white;
}

.hero.is-black .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero.is-black .subtitle a:not(.button),
.hero.is-black .subtitle strong {
  color: white;
}

@media screen and (max-width: 1023px) {
  .hero.is-black .navbar-menu {
    background-color: #0a0a0a;
  }
}
.hero.is-black .navbar-item,
.hero.is-black .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

.hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active,
.hero.is-black .navbar-link:hover,
.hero.is-black .navbar-link.is-active {
  background-color: black;
  color: white;
}

.hero.is-black .tabs a {
  color: white;
  opacity: 0.9;
}

.hero.is-black .tabs a:hover {
  opacity: 1;
}

.hero.is-black .tabs li.is-active a {
  opacity: 1;
}

.hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a {
  color: white;
}

.hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover {
  background-color: white;
  border-color: white;
  color: #0a0a0a;
}

.hero.is-black.is-bold {
  background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-black.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
  }
}
.hero.is-light {
  background-color: whitesmoke;
  color: #363636;
}

.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-light strong {
  color: inherit;
}

.hero.is-light .title {
  color: #363636;
}

.hero.is-light .subtitle {
  color: rgba(54, 54, 54, 0.9);
}

.hero.is-light .subtitle a:not(.button),
.hero.is-light .subtitle strong {
  color: #363636;
}

@media screen and (max-width: 1023px) {
  .hero.is-light .navbar-menu {
    background-color: whitesmoke;
  }
}
.hero.is-light .navbar-item,
.hero.is-light .navbar-link {
  color: rgba(54, 54, 54, 0.7);
}

.hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active,
.hero.is-light .navbar-link:hover,
.hero.is-light .navbar-link.is-active {
  background-color: #e8e8e8;
  color: #363636;
}

.hero.is-light .tabs a {
  color: #363636;
  opacity: 0.9;
}

.hero.is-light .tabs a:hover {
  opacity: 1;
}

.hero.is-light .tabs li.is-active a {
  opacity: 1;
}

.hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a {
  color: #363636;
}

.hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.is-active a:hover {
  background-color: #363636;
  border-color: #363636;
  color: whitesmoke;
}

.hero.is-light.is-bold {
  background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-light.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
  }
}
.hero.is-dark {
  background-color: #363636;
  color: whitesmoke;
}

.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-dark strong {
  color: inherit;
}

.hero.is-dark .title {
  color: whitesmoke;
}

.hero.is-dark .subtitle {
  color: rgba(245, 245, 245, 0.9);
}

.hero.is-dark .subtitle a:not(.button),
.hero.is-dark .subtitle strong {
  color: whitesmoke;
}

@media screen and (max-width: 1023px) {
  .hero.is-dark .navbar-menu {
    background-color: #363636;
  }
}
.hero.is-dark .navbar-item,
.hero.is-dark .navbar-link {
  color: rgba(245, 245, 245, 0.7);
}

.hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active,
.hero.is-dark .navbar-link:hover,
.hero.is-dark .navbar-link.is-active {
  background-color: #292929;
  color: whitesmoke;
}

.hero.is-dark .tabs a {
  color: whitesmoke;
  opacity: 0.9;
}

.hero.is-dark .tabs a:hover {
  opacity: 1;
}

.hero.is-dark .tabs li.is-active a {
  opacity: 1;
}

.hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a {
  color: whitesmoke;
}

.hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover {
  background-color: whitesmoke;
  border-color: whitesmoke;
  color: #363636;
}

.hero.is-dark.is-bold {
  background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-dark.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%);
  }
}
.hero.is-primary {
  background-color: #00aac3;
  color: white;
}

.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-primary strong {
  color: inherit;
}

.hero.is-primary .title {
  color: white;
}

.hero.is-primary .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero.is-primary .subtitle a:not(.button),
.hero.is-primary .subtitle strong {
  color: white;
}

@media screen and (max-width: 1023px) {
  .hero.is-primary .navbar-menu {
    background-color: #00aac3;
  }
}
.hero.is-primary .navbar-item,
.hero.is-primary .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

.hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active,
.hero.is-primary .navbar-link:hover,
.hero.is-primary .navbar-link.is-active {
  background-color: #6943d0;
  color: white;
}

.hero.is-primary .tabs a {
  color: white;
  opacity: 0.9;
}

.hero.is-primary .tabs a:hover {
  opacity: 1;
}

.hero.is-primary .tabs li.is-active a {
  opacity: 1;
}

.hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a {
  color: white;
}

.hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover {
  background-color: white;
  border-color: white;
  color: #00aac3;
}

.hero.is-primary.is-bold {
  background-image: linear-gradient(141deg, #3725d4 0%, #00aac3 71%, #9b67df 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-primary.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #3725d4 0%, #00aac3 71%, #9b67df 100%);
  }
}
.hero.is-link {
  background-color: #00aac3;
  color: white;
}

.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-link strong {
  color: inherit;
}

.hero.is-link .title {
  color: white;
}

.hero.is-link .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero.is-link .subtitle a:not(.button),
.hero.is-link .subtitle strong {
  color: white;
}

@media screen and (max-width: 1023px) {
  .hero.is-link .navbar-menu {
    background-color: #00aac3;
  }
}
.hero.is-link .navbar-item,
.hero.is-link .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

.hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active,
.hero.is-link .navbar-link:hover,
.hero.is-link .navbar-link.is-active {
  background-color: #6943d0;
  color: white;
}

.hero.is-link .tabs a {
  color: white;
  opacity: 0.9;
}

.hero.is-link .tabs a:hover {
  opacity: 1;
}

.hero.is-link .tabs li.is-active a {
  opacity: 1;
}

.hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a {
  color: white;
}

.hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.is-active a:hover {
  background-color: white;
  border-color: white;
  color: #00aac3;
}

.hero.is-link.is-bold {
  background-image: linear-gradient(141deg, #3725d4 0%, #00aac3 71%, #9b67df 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-link.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #3725d4 0%, #00aac3 71%, #9b67df 100%);
  }
}
.hero.is-info {
  background-color: #167df0;
  color: #fff;
}

.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-info strong {
  color: inherit;
}

.hero.is-info .title {
  color: #fff;
}

.hero.is-info .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero.is-info .subtitle a:not(.button),
.hero.is-info .subtitle strong {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .hero.is-info .navbar-menu {
    background-color: #167df0;
  }
}
.hero.is-info .navbar-item,
.hero.is-info .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

.hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active,
.hero.is-info .navbar-link:hover,
.hero.is-info .navbar-link.is-active {
  background-color: #0e71de;
  color: #fff;
}

.hero.is-info .tabs a {
  color: #fff;
  opacity: 0.9;
}

.hero.is-info .tabs a:hover {
  opacity: 1;
}

.hero.is-info .tabs li.is-active a {
  opacity: 1;
}

.hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a {
  color: #fff;
}

.hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #167df0;
}

.hero.is-info.is-bold {
  background-image: linear-gradient(141deg, #0286d1 0%, #167df0 71%, #2868f7 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-info.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #0286d1 0%, #167df0 71%, #2868f7 100%);
  }
}
.hero.is-success {
  background-color: #23d160;
  color: #fff;
}

.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-success strong {
  color: inherit;
}

.hero.is-success .title {
  color: #fff;
}

.hero.is-success .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero.is-success .subtitle a:not(.button),
.hero.is-success .subtitle strong {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .hero.is-success .navbar-menu {
    background-color: #23d160;
  }
}
.hero.is-success .navbar-item,
.hero.is-success .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

.hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active,
.hero.is-success .navbar-link:hover,
.hero.is-success .navbar-link.is-active {
  background-color: #20bc56;
  color: #fff;
}

.hero.is-success .tabs a {
  color: #fff;
  opacity: 0.9;
}

.hero.is-success .tabs a:hover {
  opacity: 1;
}

.hero.is-success .tabs li.is-active a {
  opacity: 1;
}

.hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a {
  color: #fff;
}

.hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #23d160;
}

.hero.is-success.is-bold {
  background-image: linear-gradient(141deg, #12af2f 0%, #23d160 71%, #2ce28a 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-success.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #12af2f 0%, #23d160 71%, #2ce28a 100%);
  }
}
.hero.is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-warning strong {
  color: inherit;
}

.hero.is-warning .title {
  color: rgba(0, 0, 0, 0.7);
}

.hero.is-warning .subtitle {
  color: rgba(0, 0, 0, 0.9);
}

.hero.is-warning .subtitle a:not(.button),
.hero.is-warning .subtitle strong {
  color: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 1023px) {
  .hero.is-warning .navbar-menu {
    background-color: #ffdd57;
  }
}
.hero.is-warning .navbar-item,
.hero.is-warning .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}

.hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active,
.hero.is-warning .navbar-link:hover,
.hero.is-warning .navbar-link.is-active {
  background-color: #ffd83d;
  color: rgba(0, 0, 0, 0.7);
}

.hero.is-warning .tabs a {
  color: rgba(0, 0, 0, 0.7);
  opacity: 0.9;
}

.hero.is-warning .tabs a:hover {
  opacity: 1;
}

.hero.is-warning .tabs li.is-active a {
  opacity: 1;
}

.hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a {
  color: rgba(0, 0, 0, 0.7);
}

.hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.7);
  color: #ffdd57;
}

.hero.is-warning.is-bold {
  background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-warning.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
  }
}
.hero.is-danger {
  background-color: #ff3860;
  color: #fff;
}

.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-danger strong {
  color: inherit;
}

.hero.is-danger .title {
  color: #fff;
}

.hero.is-danger .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero.is-danger .subtitle a:not(.button),
.hero.is-danger .subtitle strong {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .hero.is-danger .navbar-menu {
    background-color: #ff3860;
  }
}
.hero.is-danger .navbar-item,
.hero.is-danger .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

.hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active,
.hero.is-danger .navbar-link:hover,
.hero.is-danger .navbar-link.is-active {
  background-color: #ff1f4b;
  color: #fff;
}

.hero.is-danger .tabs a {
  color: #fff;
  opacity: 0.9;
}

.hero.is-danger .tabs a:hover {
  opacity: 1;
}

.hero.is-danger .tabs li.is-active a {
  opacity: 1;
}

.hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a {
  color: #fff;
}

.hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

.hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #ff3860;
}

.hero.is-danger.is-bold {
  background-image: linear-gradient(141deg, #ff0561 0%, #ff3860 71%, #ff5257 100%);
}

@media screen and (max-width: 768px) {
  .hero.is-danger.is-bold .navbar-menu {
    background-image: linear-gradient(141deg, #ff0561 0%, #ff3860 71%, #ff5257 100%);
  }
}
.hero.is-small .hero-body {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

@media screen and (min-width: 769px), print {
  .hero.is-medium .hero-body {
    padding-bottom: 9rem;
    padding-top: 9rem;
  }
}
@media screen and (min-width: 769px), print {
  .hero.is-large .hero-body {
    padding-bottom: 18rem;
    padding-top: 18rem;
  }
}
.hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body {
  align-items: center;
  display: flex;
}

.hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container {
  flex-grow: 1;
  flex-shrink: 1;
}

.hero.is-halfheight {
  min-height: 50vh;
}

.hero.is-fullheight {
  min-height: 100vh;
}

.hero-video {
  overflow: hidden;
}

.hero-video video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.hero-video.is-transparent {
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  .hero-video {
    display: none;
  }
}
.hero-buttons {
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .hero-buttons .button {
    display: flex;
  }

  .hero-buttons .button:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .hero-buttons {
    display: flex;
    justify-content: center;
  }

  .hero-buttons .button:not(:last-child) {
    margin-right: 1.5rem;
  }
}
.hero-head,
.hero-foot {
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-body {
  flex-grow: 1;
  flex-shrink: 0;
  padding: 3rem 1.5rem;
}

.section {
  padding: 3rem 1.5rem;
}

@media screen and (min-width: 1024px) {
  .section.is-medium {
    padding: 9rem 1.5rem;
  }

  .section.is-large {
    padding: 18rem 1.5rem;
  }
}
.footer {
  background-color: #fafafa;
  padding: 3rem 1.5rem 6rem;
}

.is-noscroll {
  position: fixed;
  overflow-y: hidden;
  width: 100%;
  bottom: 0;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

/**
 * Vue Transitions
 */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 150ms ease-out;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.zoom-in-enter-active,
.zoom-in-leave-active {
  transition: opacity 150ms ease-out;
}

.zoom-in-enter-active .animation-content,
.zoom-in-enter-active .animation-content,
.zoom-in-leave-active .animation-content,
.zoom-in-leave-active .animation-content {
  transition: transform 150ms ease-out;
}

.zoom-in-enter,
.zoom-in-leave-active {
  opacity: 0;
}

.zoom-in-enter .animation-content,
.zoom-in-enter .animation-content,
.zoom-in-leave-active .animation-content,
.zoom-in-leave-active .animation-content {
  transform: scale(0.95);
}

.zoom-out-enter-active,
.zoom-out-leave-active {
  transition: opacity 150ms ease-out;
}

.zoom-out-enter-active .animation-content,
.zoom-out-enter-active .animation-content,
.zoom-out-leave-active .animation-content,
.zoom-out-leave-active .animation-content {
  transition: transform 150ms ease-out;
}

.zoom-out-enter,
.zoom-out-leave-active {
  opacity: 0;
}

.zoom-out-enter .animation-content,
.zoom-out-enter .animation-content,
.zoom-out-leave-active .animation-content,
.zoom-out-leave-active .animation-content {
  transform: scale(1.05);
}

.slide-next-enter-active,
.slide-next-leave-active,
.slide-prev-enter-active,
.slide-prev-leave-active {
  transition: transform 250ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.slide-prev-leave-to, .slide-next-enter {
  transform: translate3d(-100%, 0, 0);
  position: absolute;
  width: 100%;
}

.slide-prev-enter, .slide-next-leave-to {
  transform: translate3d(100%, 0, 0);
  position: absolute;
  width: 100%;
}

.slide-down-enter-active,
.slide-down-leave-active,
.slide-up-enter-active,
.slide-up-leave-active {
  transition: transform 250ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.slide-up-leave-to, .slide-down-enter {
  transform: translate3d(0, -100%, 0);
  position: absolute;
  height: 100%;
}

.slide-up-enter, .slide-down-leave-to {
  transform: translate3d(0, 100%, 0);
  position: absolute;
  height: 100%;
}

.slide-enter-active {
  transition: 150ms ease-out;
}

.slide-leave-active {
  transition: 150ms ease-out;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.slide-enter-to, .slide-leave {
  max-height: 100px;
  overflow: hidden;
}

.slide-enter, .slide-leave-to {
  overflow: hidden;
  max-height: 0;
}

.autocomplete {
  position: relative;
}

.autocomplete .dropdown-menu {
  display: block;
  min-width: 100%;
  max-width: 100%;
}

.autocomplete .dropdown-menu.is-opened-top {
  top: auto;
  bottom: 100%;
}

.autocomplete .dropdown-content {
  overflow: auto;
  max-height: 200px;
}

.autocomplete .dropdown-item, .autocomplete .dropdown .dropdown-menu .has-link a, .dropdown .dropdown-menu .has-link .autocomplete a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.autocomplete .dropdown-item.is-hovered, .autocomplete .dropdown .dropdown-menu .has-link a.is-hovered, .dropdown .dropdown-menu .has-link .autocomplete a.is-hovered {
  background: whitesmoke;
  color: #0a0a0a;
}

.autocomplete .dropdown-item.is-disabled, .autocomplete .dropdown .dropdown-menu .has-link a.is-disabled, .dropdown .dropdown-menu .has-link .autocomplete a.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.autocomplete.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.autocomplete.is-medium {
  font-size: 1.25rem;
}

.autocomplete.is-large {
  font-size: 1.5rem;
}

.carousel {
  min-height: 120px;
  position: relative;
}

.carousel.is-overlay {
  background-color: rgba(10, 10, 10, 0.86);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  display: flex;
  max-height: 100vh;
  position: fixed;
  z-index: 40;
}

.carousel.is-overlay .carousel-item img {
  cursor: default;
}

.carousel.is-overlay .carousel-indicator.has-background {
  background: transparent;
}

.carousel .progress {
  border-radius: 2px;
  height: 0.25rem;
  margin-bottom: 0;
}

.carousel .carousel-items {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
}

@media screen and (min-width: 769px), print {
  .carousel .carousel-items:hover .carousel-arrow.is-hovered {
    opacity: 1;
  }
}
.carousel .carousel-items .carousel-item {
  flex-shrink: 0;
  width: 100%;
}

.carousel .carousel-pause {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0.15rem;
  z-index: 1;
}

.carousel .carousel-indicator {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel .carousel-indicator.has-background {
  background: rgba(10, 10, 10, 0.5);
}

.carousel .carousel-indicator.has-custom {
  flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overflow-x: auto;
}

.carousel .carousel-indicator.has-custom.is-small .indicator-item {
  flex: 1 0 10%;
}

.carousel .carousel-indicator.has-custom.is-medium .indicator-item {
  flex: 1 0 16.66667%;
}

.carousel .carousel-indicator.is-inside {
  position: absolute;
}

.carousel .carousel-indicator.is-inside.is-bottom {
  bottom: 0;
}

.carousel .carousel-indicator.is-inside.is-top {
  top: 0;
}

.carousel .carousel-indicator .indicator-item:not(:last-child) {
  margin-right: 0.5rem;
}

.carousel .carousel-indicator .indicator-item.is-active .indicator-style,
.carousel .carousel-indicator .indicator-item .indicator-style:hover {
  background: #00aac3;
  border: 1px solid white;
}

.carousel .carousel-indicator .indicator-item .indicator-style {
  display: block;
  border: 1px solid #00aac3;
  background: white;
  outline: none;
  transition: 150ms ease-out;
}

.carousel .carousel-indicator .indicator-item .indicator-style.is-boxes {
  height: 10px;
  width: 10px;
}

.carousel .carousel-indicator .indicator-item .indicator-style.is-dots {
  border-radius: 10px;
  height: 10px;
  width: 10px;
}

.carousel .carousel-indicator .indicator-item .indicator-style.is-lines {
  height: 5px;
  width: 25px;
}

.carousel-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-list.has-shadow {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 769px), print {
  .carousel-list:hover .carousel-arrow.is-hovered {
    opacity: 1;
  }
}
.carousel-list .carousel-slides {
  position: relative;
  display: flex;
  width: 100%;
}

.carousel-list .carousel-slides:not(.is-dragging) {
  transition: all 250ms ease-out 0s;
}

.carousel-list .carousel-slides.has-grayscale .carousel-slide img {
  filter: grayscale(100%);
}

.carousel-list .carousel-slides.has-grayscale .carousel-slide.is-active img {
  filter: grayscale(0%);
}

.carousel-list .carousel-slides.has-opacity .carousel-slide img {
  opacity: 0.25;
}

.carousel-list .carousel-slides.has-opacity .carousel-slide.is-active img {
  opacity: 1;
}

.carousel-list .carousel-slides .carousel-slide {
  border: 2px solid transparent;
  flex-shrink: 0;
}

.carousel-arrow {
  transition: 150ms ease-out;
}

.carousel-arrow.is-hovered {
  opacity: 0;
}

.carousel-arrow .icon {
  background: white;
  color: #00aac3;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 290486px;
  outline: 0;
}

.carousel-arrow .icon:hover {
  border: 1px solid #00aac3;
  opacity: 1;
}

.carousel-arrow .icon.has-icons-left, .carousel-arrow .icon.has-icons-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.carousel-arrow .icon.has-icons-left {
  left: 1.5rem;
}

.carousel-arrow .icon.has-icons-right {
  right: 1.5rem;
}

.b-checkbox.checkbox {
  outline: none;
  display: inline-flex;
  align-items: center;
}

.b-checkbox.checkbox:not(.button) {
  margin-right: 0.5em;
}

.b-checkbox.checkbox:not(.button) + .checkbox:last-child {
  margin-right: 0;
}

.b-checkbox.checkbox input[type=checkbox] {
  position: absolute;
  left: 0;
  opacity: 0;
  outline: none;
  z-index: -1;
}

.b-checkbox.checkbox input[type=checkbox] + .check {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  border-radius: 4px;
  border: 2px solid #7a7a7a;
  transition: background 150ms ease-out;
  background: transparent;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check {
  background: #00aac3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:white' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: #00aac3;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-white {
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%230a0a0a' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: white;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-black {
  background: #0a0a0a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:white' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: #0a0a0a;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-light {
  background: whitesmoke url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23363636' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: whitesmoke;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-dark {
  background: #363636 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:whitesmoke' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: #363636;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-primary {
  background: #00aac3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:white' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: #00aac3;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-link {
  background: #00aac3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:white' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: #00aac3;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-info {
  background: #167df0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: #167df0;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-success {
  background: #23d160 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: #23d160;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-warning {
  background: #ffdd57 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:rgba(0, 0, 0, 0.7)' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: #ffdd57;
}

.b-checkbox.checkbox input[type=checkbox]:checked + .check.is-danger {
  background: #ff3860 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%23fff' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
  border-color: #ff3860;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check {
  background: #00aac3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:white' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: #00aac3;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-white {
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:%230a0a0a' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: white;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-black {
  background: #0a0a0a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:white' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: #0a0a0a;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-light {
  background: whitesmoke url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:%23363636' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: whitesmoke;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-dark {
  background: #363636 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:whitesmoke' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: #363636;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-primary {
  background: #00aac3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:white' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: #00aac3;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-link {
  background: #00aac3 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:white' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: #00aac3;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-info {
  background: #167df0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:%23fff' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: #167df0;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-success {
  background: #23d160 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:%23fff' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: #23d160;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-warning {
  background: #ffdd57 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:rgba(0, 0, 0, 0.7)' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: #ffdd57;
}

.b-checkbox.checkbox input[type=checkbox]:indeterminate + .check.is-danger {
  background: #ff3860 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Crect style='fill:%23fff' width='0.7' height='0.2' x='.15' y='.4'%3E%3C/rect%3E%3C/svg%3E") no-repeat center center;
  border-color: #ff3860;
}

.b-checkbox.checkbox input[type=checkbox]:focus + .check {
  box-shadow: 0 0 0.5em rgba(122, 122, 122, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-white {
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-black {
  box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-light {
  box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-dark {
  box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-primary {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-link {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-info {
  box-shadow: 0 0 0.5em rgba(22, 125, 240, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-success {
  box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-warning {
  box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.8);
}

.b-checkbox.checkbox input[type=checkbox]:focus:checked + .check.is-danger {
  box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.8);
}

.b-checkbox.checkbox .control-label {
  padding-left: 0.5em;
}

.b-checkbox.checkbox.button {
  display: flex;
}

.b-checkbox.checkbox[disabled] {
  opacity: 0.5;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check {
  border-color: #00aac3;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-white {
  border-color: white;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-black {
  border-color: #0a0a0a;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-light {
  border-color: whitesmoke;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-dark {
  border-color: #363636;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-primary {
  border-color: #00aac3;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-link {
  border-color: #00aac3;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-info {
  border-color: #167df0;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-success {
  border-color: #23d160;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-warning {
  border-color: #ffdd57;
}

.b-checkbox.checkbox:hover input[type=checkbox]:not(:disabled) + .check.is-danger {
  border-color: #ff3860;
}

.b-checkbox.checkbox.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.b-checkbox.checkbox.is-medium {
  font-size: 1.25rem;
}

.b-checkbox.checkbox.is-large {
  font-size: 1.5rem;
}

.b-clockpicker .card-header {
  background-color: #00aac3;
  color: white;
}

.b-clockpicker .b-clockpicker-face:after {
  background-color: #00aac3;
}

.b-clockpicker .b-clockpicker-face-hand {
  background-color: #00aac3;
  border-color: #00aac3;
}

.b-clockpicker .b-clockpicker-face-number.active {
  background-color: #00aac3;
  color: white;
}

.b-clockpicker.is-white .card-header {
  background-color: white;
  color: #0a0a0a;
}

.b-clockpicker.is-white .b-clockpicker-face:after {
  background-color: white;
}

.b-clockpicker.is-white .b-clockpicker-face-hand {
  background-color: white;
  border-color: white;
}

.b-clockpicker.is-white .b-clockpicker-face-number.active {
  background-color: white;
  color: #0a0a0a;
}

.b-clockpicker.is-black .card-header {
  background-color: #0a0a0a;
  color: white;
}

.b-clockpicker.is-black .b-clockpicker-face:after {
  background-color: #0a0a0a;
}

.b-clockpicker.is-black .b-clockpicker-face-hand {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
}

.b-clockpicker.is-black .b-clockpicker-face-number.active {
  background-color: #0a0a0a;
  color: white;
}

.b-clockpicker.is-light .card-header {
  background-color: whitesmoke;
  color: #363636;
}

.b-clockpicker.is-light .b-clockpicker-face:after {
  background-color: whitesmoke;
}

.b-clockpicker.is-light .b-clockpicker-face-hand {
  background-color: whitesmoke;
  border-color: whitesmoke;
}

.b-clockpicker.is-light .b-clockpicker-face-number.active {
  background-color: whitesmoke;
  color: #363636;
}

.b-clockpicker.is-dark .card-header {
  background-color: #363636;
  color: whitesmoke;
}

.b-clockpicker.is-dark .b-clockpicker-face:after {
  background-color: #363636;
}

.b-clockpicker.is-dark .b-clockpicker-face-hand {
  background-color: #363636;
  border-color: #363636;
}

.b-clockpicker.is-dark .b-clockpicker-face-number.active {
  background-color: #363636;
  color: whitesmoke;
}

.b-clockpicker.is-primary .card-header {
  background-color: #00aac3;
  color: white;
}

.b-clockpicker.is-primary .b-clockpicker-face:after {
  background-color: #00aac3;
}

.b-clockpicker.is-primary .b-clockpicker-face-hand {
  background-color: #00aac3;
  border-color: #00aac3;
}

.b-clockpicker.is-primary .b-clockpicker-face-number.active {
  background-color: #00aac3;
  color: white;
}

.b-clockpicker.is-link .card-header {
  background-color: #00aac3;
  color: white;
}

.b-clockpicker.is-link .b-clockpicker-face:after {
  background-color: #00aac3;
}

.b-clockpicker.is-link .b-clockpicker-face-hand {
  background-color: #00aac3;
  border-color: #00aac3;
}

.b-clockpicker.is-link .b-clockpicker-face-number.active {
  background-color: #00aac3;
  color: white;
}

.b-clockpicker.is-info .card-header {
  background-color: #167df0;
  color: #fff;
}

.b-clockpicker.is-info .b-clockpicker-face:after {
  background-color: #167df0;
}

.b-clockpicker.is-info .b-clockpicker-face-hand {
  background-color: #167df0;
  border-color: #167df0;
}

.b-clockpicker.is-info .b-clockpicker-face-number.active {
  background-color: #167df0;
  color: #fff;
}

.b-clockpicker.is-success .card-header {
  background-color: #23d160;
  color: #fff;
}

.b-clockpicker.is-success .b-clockpicker-face:after {
  background-color: #23d160;
}

.b-clockpicker.is-success .b-clockpicker-face-hand {
  background-color: #23d160;
  border-color: #23d160;
}

.b-clockpicker.is-success .b-clockpicker-face-number.active {
  background-color: #23d160;
  color: #fff;
}

.b-clockpicker.is-warning .card-header {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.b-clockpicker.is-warning .b-clockpicker-face:after {
  background-color: #ffdd57;
}

.b-clockpicker.is-warning .b-clockpicker-face-hand {
  background-color: #ffdd57;
  border-color: #ffdd57;
}

.b-clockpicker.is-warning .b-clockpicker-face-number.active {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.b-clockpicker.is-danger .card-header {
  background-color: #ff3860;
  color: #fff;
}

.b-clockpicker.is-danger .b-clockpicker-face:after {
  background-color: #ff3860;
}

.b-clockpicker.is-danger .b-clockpicker-face-hand {
  background-color: #ff3860;
  border-color: #ff3860;
}

.b-clockpicker.is-danger .b-clockpicker-face-number.active {
  background-color: #ff3860;
  color: #fff;
}

.b-clockpicker .dropdown-menu {
  min-width: 0;
}

.b-clockpicker .dropdown,
.b-clockpicker .dropdown-trigger {
  width: 100%;
}

.b-clockpicker .dropdown .input[readonly], .b-clockpicker .dropdown .taginput .taginput-container.is-focusable[readonly], .taginput .b-clockpicker .dropdown .taginput-container.is-focusable[readonly],
.b-clockpicker .dropdown-trigger .input[readonly],
.b-clockpicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly],
.taginput .b-clockpicker .dropdown-trigger .taginput-container.is-focusable[readonly] {
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
}

.b-clockpicker .dropdown .input[readonly]:focus, .b-clockpicker .dropdown .taginput .taginput-container.is-focusable[readonly]:focus, .taginput .b-clockpicker .dropdown .taginput-container.is-focusable[readonly]:focus, .b-clockpicker .dropdown .input[readonly].is-focused, .b-clockpicker .dropdown .taginput .taginput-container.is-focusable[readonly].is-focused, .taginput .b-clockpicker .dropdown .taginput-container.is-focusable[readonly].is-focused, .b-clockpicker .dropdown .input[readonly]:active, .b-clockpicker .dropdown .taginput .taginput-container.is-focusable[readonly]:active, .taginput .b-clockpicker .dropdown .taginput-container.is-focusable[readonly]:active, .b-clockpicker .dropdown .input[readonly].is-active, .b-clockpicker .dropdown .taginput .taginput-container.is-focusable[readonly].is-active, .taginput .b-clockpicker .dropdown .taginput-container.is-focusable[readonly].is-active,
.b-clockpicker .dropdown-trigger .input[readonly]:focus,
.b-clockpicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly]:focus,
.taginput .b-clockpicker .dropdown-trigger .taginput-container.is-focusable[readonly]:focus,
.b-clockpicker .dropdown-trigger .input[readonly].is-focused,
.b-clockpicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly].is-focused,
.taginput .b-clockpicker .dropdown-trigger .taginput-container.is-focusable[readonly].is-focused,
.b-clockpicker .dropdown-trigger .input[readonly]:active,
.b-clockpicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly]:active,
.taginput .b-clockpicker .dropdown-trigger .taginput-container.is-focusable[readonly]:active,
.b-clockpicker .dropdown-trigger .input[readonly].is-active,
.b-clockpicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly].is-active,
.taginput .b-clockpicker .dropdown-trigger .taginput-container.is-focusable[readonly].is-active {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.b-clockpicker .dropdown-item, .b-clockpicker .dropdown .dropdown-menu .has-link a, .dropdown .dropdown-menu .has-link .b-clockpicker a {
  font-size: inherit;
  padding: 0;
}

.b-clockpicker .dropdown-content {
  padding-top: 0;
  padding-bottom: 0;
}

.b-clockpicker .card {
  border-radius: 4px;
}

.b-clockpicker .card-header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.b-clockpicker .card-content {
  padding: 12px;
}

.b-clockpicker-btn {
  cursor: pointer;
  opacity: 0.6;
}

.b-clockpicker-btn:hover, .b-clockpicker-btn.active {
  opacity: 1;
}

.b-clockpicker-period .b-clockpicker-btn {
  font-size: 16px;
  text-transform: uppercase;
}

.b-clockpicker-time span {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.b-clockpicker-header {
  display: flex;
  line-height: 1;
  justify-content: flex-end;
  color: inherit;
}

.b-clockpicker-header .b-clockpicker-time {
  white-space: nowrap;
}

.b-clockpicker-header .b-clockpicker-time span {
  height: 60px;
  font-size: 60px;
}

.b-clockpicker-header .b-clockpicker-period {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  margin: 8px 0 6px 8px;
}

.b-clockpicker-body {
  transition: 0.9s cubic-bezier(0.25, 0.8, 0.5, 1);
}

.b-clockpicker-body .b-clockpicker-btn {
  padding: 0 8px;
  border-radius: 290486px;
  margin-bottom: 2px;
}

.b-clockpicker-body .b-clockpicker-btn:hover, .b-clockpicker-body .b-clockpicker-btn.active {
  background-color: #00aac3;
  color: white;
}

.b-clockpicker-body .b-clockpicker-period {
  position: absolute;
  top: 5px;
  right: 5px;
}

.b-clockpicker-body .b-clockpicker-time {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 16px;
}

.b-clockpicker-body .b-clockpicker-face {
  border-radius: 50%;
  position: relative;
  background-color: #dbdbdb;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.b-clockpicker-body .b-clockpicker-face:after {
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  z-index: 10;
}

.b-clockpicker-body .b-clockpicker-face-outer-ring {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: calc(100% - 50px);
  width: calc(100% - 50px);
  position: relative;
  border-radius: 50%;
}

.b-clockpicker-body .b-clockpicker-face-number {
  align-items: center;
  border-radius: 100%;
  cursor: default;
  display: flex;
  font-size: 18px;
  text-align: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  left: calc(50% - 40px / 2);
  top: calc(50% - 40px / 2);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.b-clockpicker-body .b-clockpicker-face-number > span {
  z-index: 1;
}

.b-clockpicker-body .b-clockpicker-face-number:before, .b-clockpicker-body .b-clockpicker-face-number:after {
  content: "";
  height: 40px;
  width: 40px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.b-clockpicker-body .b-clockpicker-face-number.active {
  cursor: default;
  z-index: 2;
}

.b-clockpicker-body .b-clockpicker-face-number.disabled {
  pointer-events: none;
  opacity: 0.25;
}

.b-clockpicker-body .b-clockpicker-face-hand {
  height: calc(50% - 6px);
  width: 2px;
  bottom: 50%;
  left: calc(50% - 1px);
  transform-origin: center bottom;
  position: absolute;
  will-change: transform;
  z-index: 1;
}

.b-clockpicker-body .b-clockpicker-face-hand:before {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: inherit;
  border-radius: 100%;
  width: 12px;
  height: 12px;
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.b-clockpicker-footer {
  display: block;
  padding: 12px;
}

.b-clockpicker.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.b-clockpicker.is-medium {
  font-size: 1.25rem;
}

.b-clockpicker.is-large {
  font-size: 1.5rem;
}

.collapse .collapse-trigger {
  display: inline;
  cursor: pointer;
}

.collapse .collapse-content {
  display: inherit;
}

.datepicker {
  font-size: 0.875rem;
}

.datepicker .dropdown,
.datepicker .dropdown-trigger {
  width: 100%;
}

.datepicker .dropdown .input[readonly], .datepicker .dropdown .taginput .taginput-container.is-focusable[readonly], .taginput .datepicker .dropdown .taginput-container.is-focusable[readonly],
.datepicker .dropdown-trigger .input[readonly],
.datepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly],
.taginput .datepicker .dropdown-trigger .taginput-container.is-focusable[readonly] {
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
}

.datepicker .dropdown .input[readonly]:focus, .datepicker .dropdown .taginput .taginput-container.is-focusable[readonly]:focus, .taginput .datepicker .dropdown .taginput-container.is-focusable[readonly]:focus, .datepicker .dropdown .input[readonly].is-focused, .datepicker .dropdown .taginput .taginput-container.is-focusable[readonly].is-focused, .taginput .datepicker .dropdown .taginput-container.is-focusable[readonly].is-focused, .datepicker .dropdown .input[readonly]:active, .datepicker .dropdown .taginput .taginput-container.is-focusable[readonly]:active, .taginput .datepicker .dropdown .taginput-container.is-focusable[readonly]:active, .datepicker .dropdown .input[readonly].is-active, .datepicker .dropdown .taginput .taginput-container.is-focusable[readonly].is-active, .taginput .datepicker .dropdown .taginput-container.is-focusable[readonly].is-active,
.datepicker .dropdown-trigger .input[readonly]:focus,
.datepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly]:focus,
.taginput .datepicker .dropdown-trigger .taginput-container.is-focusable[readonly]:focus,
.datepicker .dropdown-trigger .input[readonly].is-focused,
.datepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly].is-focused,
.taginput .datepicker .dropdown-trigger .taginput-container.is-focusable[readonly].is-focused,
.datepicker .dropdown-trigger .input[readonly]:active,
.datepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly]:active,
.taginput .datepicker .dropdown-trigger .taginput-container.is-focusable[readonly]:active,
.datepicker .dropdown-trigger .input[readonly].is-active,
.datepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly].is-active,
.taginput .datepicker .dropdown-trigger .taginput-container.is-focusable[readonly].is-active {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.datepicker .dropdown.is-disabled {
  opacity: 1;
}

.datepicker .dropdown-content {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.datepicker .dropdown-item, .datepicker .dropdown .dropdown-menu .has-link a, .dropdown .dropdown-menu .has-link .datepicker a {
  font-size: inherit;
}

.datepicker .datepicker-header {
  padding-bottom: 0.875rem;
  margin-bottom: 0.875rem;
  border-bottom: 1px solid #dbdbdb;
}

.datepicker .datepicker-footer {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #dbdbdb;
}

.datepicker .datepicker-table {
  display: table;
  margin: 0 auto 0 auto;
}

.datepicker .datepicker-table .datepicker-cell {
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
}

.datepicker .datepicker-table .datepicker-header {
  display: table-header-group;
}

.datepicker .datepicker-table .datepicker-header .datepicker-cell {
  color: #7a7a7a;
  font-weight: 600;
}

.datepicker .datepicker-table .datepicker-body {
  display: table-row-group;
}

.datepicker .datepicker-table .datepicker-body .datepicker-row {
  display: table-row;
}

.datepicker .datepicker-table .datepicker-body .datepicker-months {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 17rem;
}

.datepicker .datepicker-table .datepicker-body .datepicker-months .datepicker-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  height: 2.5rem;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-unselectable {
  color: #b5b5b5;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-today {
  border: solid 1px rgba(121, 87, 213, 0.5);
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selectable {
  color: #4a4a4a;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selectable:hover:not(.is-selected), .datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selectable:focus:not(.is-selected) {
  background-color: whitesmoke;
  color: #0a0a0a;
  cursor: pointer;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selectable.is-within-hovered-range.is-first-hovered {
  background-color: #7a7a7a;
  color: #dbdbdb;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selectable.is-within-hovered-range.is-within-hovered {
  background-color: whitesmoke;
  color: #0a0a0a;
  border-radius: 0;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selectable.is-within-hovered-range.is-last-hovered {
  background-color: #7a7a7a;
  color: #dbdbdb;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selected {
  background-color: #00aac3;
  color: white;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selected.is-first-selected {
  background-color: #00aac3;
  color: white;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selected.is-within-selected {
  background-color: rgba(121, 87, 213, 0.5);
  border-radius: 0;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-selected.is-last-selected {
  background-color: #00aac3;
  color: white;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-nearby:not(.is-selected) {
  color: #b5b5b5;
}

.datepicker .datepicker-table .datepicker-body .datepicker-cell.is-week-number {
  cursor: default;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell {
  padding: 0.3rem 0.75rem 0.75rem;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event {
  position: relative;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events {
  bottom: 0.425rem;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 0 0.35rem;
  position: absolute;
  width: 100%;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-white {
  background-color: white;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-black {
  background-color: #0a0a0a;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-light {
  background-color: whitesmoke;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-dark {
  background-color: #363636;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-primary {
  background-color: #00aac3;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-link {
  background-color: #00aac3;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-info {
  background-color: #167df0;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-success {
  background-color: #23d160;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-warning {
  background-color: #ffdd57;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event .events .event.is-danger {
  background-color: #ff3860;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event.dots .event {
  border-radius: 50%;
  height: 0.35em;
  margin: 0 0.1em;
  width: 0.35em;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.has-event.bars .event {
  height: 0.25em;
  width: 100%;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.is-selected {
  overflow: hidden;
}

.datepicker .datepicker-table .datepicker-body.has-events .datepicker-cell.is-selected .events .event.is-primary {
  background-color: #aa94e4;
}

.datepicker.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.datepicker.is-medium {
  font-size: 1.25rem;
}

.datepicker.is-large {
  font-size: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .datepicker .footer-horizontal-timepicker {
    border: none;
    padding-left: 10px;
    margin-left: 5px;
    display: flex;
  }

  .datepicker .dropdown-horizonal-timepicker {
    display: flex;
  }

  .datepicker .content-horizonal-timepicker {
    border-right: 1px solid #dbdbdb;
  }
}
.dialog .modal-card {
  max-width: 460px;
  width: auto;
}

.dialog .modal-card .modal-card-head {
  font-size: 1.25rem;
  font-weight: 600;
}

.dialog .modal-card .modal-card-body .field {
  margin-top: 16px;
}

.dialog .modal-card .modal-card-body.is-titleless {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.dialog .modal-card .modal-card-foot {
  justify-content: flex-end;
}

.dialog .modal-card .modal-card-foot .button {
  display: inline;
  min-width: 5em;
  font-weight: 600;
}

@media screen and (min-width: 769px), print {
  .dialog .modal-card {
    min-width: 320px;
  }
}
.dialog.is-small .modal-card,
.dialog.is-small .input,
.dialog.is-small .taginput .taginput-container.is-focusable,
.taginput .dialog.is-small .taginput-container.is-focusable,
.dialog.is-small .button {
  border-radius: 2px;
  font-size: 0.75rem;
}

.dialog.is-medium .modal-card,
.dialog.is-medium .input,
.dialog.is-medium .taginput .taginput-container.is-focusable,
.taginput .dialog.is-medium .taginput-container.is-focusable,
.dialog.is-medium .button {
  font-size: 1.25rem;
}

.dialog.is-large .modal-card,
.dialog.is-large .input,
.dialog.is-large .taginput .taginput-container.is-focusable,
.taginput .dialog.is-large .taginput-container.is-focusable,
.dialog.is-large .button {
  font-size: 1.5rem;
}

.dialog.has-custom-container {
  position: absolute;
}

.dropdown + .dropdown {
  margin-left: 0.5em;
}

.dropdown .background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  position: fixed;
  background-color: rgba(10, 10, 10, 0.86);
  z-index: 40;
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
  .dropdown .background {
    display: none;
  }
}
.dropdown.dropdown-menu-animation .dropdown-menu {
  display: block;
}

.dropdown .dropdown-menu .dropdown-item.is-disabled, .dropdown .dropdown-menu .has-link a.is-disabled {
  cursor: not-allowed;
}

.dropdown .dropdown-menu .dropdown-item.is-disabled:hover, .dropdown .dropdown-menu .has-link a.is-disabled:hover {
  background: inherit;
  color: inherit;
}

.dropdown .dropdown-menu .has-link a {
  padding-right: 3rem;
  white-space: nowrap;
}

.dropdown.is-hoverable:not(.is-active) .dropdown-menu {
  display: none;
}

.dropdown.is-hoverable:hover .dropdown-menu {
  display: inherit;
}

.dropdown.is-expanded {
  width: 100%;
}

.dropdown.is-expanded .dropdown-trigger {
  width: 100%;
}

.dropdown.is-expanded .dropdown-menu {
  width: 100%;
}

.dropdown.is-expanded.is-mobile-modal .dropdown-menu {
  max-width: 100%;
}

.dropdown:not(.is-disabled) .dropdown-menu .dropdown-item.is-disabled, .dropdown:not(.is-disabled) .dropdown-menu .has-link a.is-disabled {
  opacity: 0.5;
}

.dropdown .navbar-item {
  height: 100%;
}

.dropdown.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.dropdown.is-disabled .dropdown-trigger {
  pointer-events: none;
}

.dropdown.is-inline .dropdown-menu {
  position: static;
  display: inline-block;
  padding: 0;
}

.dropdown.is-top-right .dropdown-menu {
  top: auto;
  bottom: 100%;
}

.dropdown.is-top-left .dropdown-menu {
  top: auto;
  bottom: 100%;
  right: 0;
  left: auto;
}

.dropdown.is-bottom-left .dropdown-menu {
  right: 0;
  left: auto;
}

@media screen and (max-width: 1023px) {
  .dropdown.is-mobile-modal > .dropdown-menu {
    position: fixed !important;
    width: calc(100vw - 40px);
    max-width: 460px;
    max-height: calc(100vh - 120px);
    top: 25% !important;
    left: 50% !important;
    bottom: auto !important;
    right: auto !important;
    transform: translate3d(-50%, -25%, 0);
    white-space: normal;
    overflow-y: auto;
    z-index: 50 !important;
  }

  .dropdown.is-mobile-modal > .dropdown-menu > .dropdown-content > .dropdown-item, .dropdown .dropdown-menu .has-link .dropdown.is-mobile-modal > .dropdown-menu > .dropdown-content > a, .dropdown.is-mobile-modal > .dropdown-menu > .dropdown-content > .has-link a {
    padding: 1rem 1.5rem;
  }
}
.field.is-grouped .field {
  flex-shrink: 0;
}

.field.is-grouped .field:not(:last-child) {
  margin-right: 0.75rem;
}

.field.is-grouped .field.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}

.field.has-addons .control:first-child .control .button,
.field.has-addons .control:first-child .control .input,
.field.has-addons .control:first-child .control .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:first-child .control .taginput-container.is-focusable,
.field.has-addons .control:first-child .control .select select {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.field.has-addons .control:last-child .control .button,
.field.has-addons .control:last-child .control .input,
.field.has-addons .control:last-child .control .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control:last-child .control .taginput-container.is-focusable,
.field.has-addons .control:last-child .control .select select {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.field.has-addons .control .control .button,
.field.has-addons .control .control .input,
.field.has-addons .control .control .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .control .control .taginput-container.is-focusable,
.field.has-addons .control .control .select select {
  border-radius: 0;
}

.field.has-addons .b-numberinput:not(:first-child) .control:first-child .button,
.field.has-addons .b-numberinput:not(:first-child) .control:first-child .input,
.field.has-addons .b-numberinput:not(:first-child) .control:first-child .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .b-numberinput:not(:first-child) .control:first-child .taginput-container.is-focusable,
.field.has-addons .b-numberinput:not(:first-child) .control:first-child .select select {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.field.has-addons .b-numberinput:not(:last-child) .control:last-child .button,
.field.has-addons .b-numberinput:not(:last-child) .control:last-child .input,
.field.has-addons .b-numberinput:not(:last-child) .control:last-child .taginput .taginput-container.is-focusable,
.taginput .field.has-addons .b-numberinput:not(:last-child) .control:last-child .taginput-container.is-focusable,
.field.has-addons .b-numberinput:not(:last-child) .control:last-child .select select {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.field.is-floating-label, .field.is-floating-in-label {
  position: relative;
}

.field.is-floating-label .label, .field.is-floating-in-label .label {
  position: absolute;
  left: 1em;
  font-size: calc(1rem * 3 / 4);
  background-color: transparent;
  z-index: 5;
}

.field.is-floating-label .label.is-small, .field.is-floating-in-label .label.is-small {
  font-size: calc(0.75rem * 3 / 4);
}

.field.is-floating-label .label.is-medium, .field.is-floating-in-label .label.is-medium {
  font-size: calc(1.25rem * 3 / 4);
}

.field.is-floating-label .label.is-large, .field.is-floating-in-label .label.is-large {
  font-size: calc(1.5rem * 3 / 4);
}

.field.is-floating-label .taginput .counter, .field.is-floating-in-label .taginput .counter {
  float: none;
  text-align: right;
}

.field.is-floating-label.has-addons > .label + .control .button,
.field.is-floating-label.has-addons > .label + .control .input,
.field.is-floating-label.has-addons > .label + .control .taginput .taginput-container.is-focusable,
.taginput .field.is-floating-label.has-addons > .label + .control .taginput-container.is-focusable,
.field.is-floating-label.has-addons > .label + .control .select select, .field.is-floating-in-label.has-addons > .label + .control .button,
.field.is-floating-in-label.has-addons > .label + .control .input,
.field.is-floating-in-label.has-addons > .label + .control .taginput .taginput-container.is-focusable,
.taginput .field.is-floating-in-label.has-addons > .label + .control .taginput-container.is-focusable,
.field.is-floating-in-label.has-addons > .label + .control .select select {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.field.is-floating-label .label {
  top: -0.775em;
  padding-left: 0.125em;
  padding-right: 0.125em;
}

.field.is-floating-label .label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.775em;
  left: 0;
  right: 0;
  height: 0.375em;
  background-color: white;
  z-index: -1;
}

.field.is-floating-label .input:focus, .field.is-floating-label .taginput .taginput-container.is-focusable:focus, .taginput .field.is-floating-label .taginput-container.is-focusable:focus,
.field.is-floating-label .textarea:focus,
.field.is-floating-label .select select:focus {
  box-shadow: none;
}

.field.is-floating-label .taginput .taginput-container {
  padding-top: 0.475em;
}

.field.is-floating-label .taginput .taginput-container.is-focused {
  box-shadow: none;
}

.field.is-floating-in-label .label {
  top: 0.25em;
}

.field.is-floating-in-label > .datepicker .input, .field.is-floating-in-label > .datepicker .taginput .taginput-container.is-focusable, .taginput .field.is-floating-in-label > .datepicker .taginput-container.is-focusable, .field.is-floating-in-label > .timepicker .input, .field.is-floating-in-label > .timepicker .taginput .taginput-container.is-focusable, .taginput .field.is-floating-in-label > .timepicker .taginput-container.is-focusable {
  padding-top: calc(3.25em / 2 - (1.5rem * 3 / 4) / 2);
  padding-bottom: 1px;
  height: 3.25em;
}

.field.is-floating-in-label > :not(.datepicker):not(.timepicker):not(.taginput) .input, .field.is-floating-in-label > :not(.datepicker):not(.timepicker):not(.taginput) .taginput .taginput-container.is-focusable, .taginput .field.is-floating-in-label > :not(.datepicker):not(.timepicker):not(.taginput) .taginput-container.is-focusable,
.field.is-floating-in-label > :not(.datepicker):not(.timepicker):not(.taginput) .textarea,
.field.is-floating-in-label > :not(.datepicker):not(.timepicker):not(.taginput) select {
  padding-top: calc(3.25em / 2 - (1.5rem * 3 / 4) / 2);
  padding-bottom: 1px;
  height: 3.25em;
}

.field.is-floating-in-label > :not(.datepicker):not(.timepicker):not(.taginput) .select:not(multiple) {
  height: 3.25em;
}

.field.is-floating-in-label > :not(.datepicker):not(.timepicker):not(.taginput) .select:not(multiple).is-loading::after {
  margin-top: calc(3.25em / 2 - (1.5rem * 3 / 4) / 2);
}

.field.is-floating-in-label > :not(.datepicker):not(.timepicker):not(.taginput) .select:not(multiple)::after {
  margin-top: 1px;
}

.field.is-floating-in-label > :not(.taginput) .is-left.icon,
.field.is-floating-in-label > :not(.taginput) .is-right.icon {
  height: 3.25em;
}

.field.is-floating-in-label > :not(.taginput) .is-left.icon {
  padding-top: calc(3.25em / 2 - (1.5rem * 3 / 4) / 2);
}

.field.is-floating-in-label .control.is-loading::after {
  margin-top: calc(3.25em / 2 - (1.5rem * 3 / 4) / 2);
}

.field.is-floating-in-label .taginput .taginput-container {
  padding-top: calc(3.25em / 2 - (1.5rem * 3 / 4) / 2 + (0.275em - 1px));
}

.field.is-floating-in-label.has-numberinput .b-numberinput .control .button {
  height: 3.25em;
}

.field.is-floating-in-label.has-addons .control .button,
.field.is-floating-in-label.has-addons .control .input,
.field.is-floating-in-label.has-addons .control .taginput .taginput-container.is-focusable,
.taginput .field.is-floating-in-label.has-addons .control .taginput-container.is-focusable,
.field.is-floating-in-label.has-addons .control .select select, .field.is-floating-in-label.is-grouped .control .button,
.field.is-floating-in-label.is-grouped .control .input,
.field.is-floating-in-label.is-grouped .control .taginput .taginput-container.is-focusable,
.taginput .field.is-floating-in-label.is-grouped .control .taginput-container.is-focusable,
.field.is-floating-in-label.is-grouped .control .select select {
  height: 3.25em;
}

.field.is-floating-label.has-numberinput .label, .field.is-floating-in-label.has-numberinput .label {
  margin-left: calc(1rem * 3);
}

.field.is-floating-label.has-numberinput.has-numberinput-is-small .label, .field.is-floating-in-label.has-numberinput.has-numberinput-is-small .label {
  margin-left: calc(0.75rem * 3);
}

.field.is-floating-label.has-numberinput.has-numberinput-is-medium .label, .field.is-floating-in-label.has-numberinput.has-numberinput-is-medium .label {
  margin-left: calc(1.25rem * 3);
}

.field.is-floating-label.has-numberinput.has-numberinput-is-large .label, .field.is-floating-in-label.has-numberinput.has-numberinput-is-large .label {
  margin-left: calc(1.5rem * 3);
}

.field.is-floating-label.has-numberinput-compact .label, .field.is-floating-in-label.has-numberinput-compact .label {
  margin-left: calc(1rem * 2.25);
}

.field.is-floating-label.has-numberinput-compact.has-numberinput-is-small .label, .field.is-floating-in-label.has-numberinput-compact.has-numberinput-is-small .label {
  margin-left: calc(0.75rem * 2.25);
}

.field.is-floating-label.has-numberinput-compact.has-numberinput-is-medium .label, .field.is-floating-in-label.has-numberinput-compact.has-numberinput-is-medium .label {
  margin-left: calc(1.25rem * 2.25);
}

.field.is-floating-label.has-numberinput-compact.has-numberinput-is-large .label, .field.is-floating-in-label.has-numberinput-compact.has-numberinput-is-large .label {
  margin-left: calc(1.5rem * 2.25);
}

.field.is-grouped-right.is-floating-in-label .label, .field.has-addons-right.is-floating-in-label .label {
  position: relative;
  left: calc(3.25em + 2em);
}

.field.is-grouped-right.is-floating-label .label, .field.has-addons-right.is-floating-label .label {
  position: relative;
  left: calc(3.25em + 2em);
}

.control .help.counter {
  float: right;
  margin-left: 0.5em;
}

.control .icon.is-clickable {
  pointer-events: auto;
  cursor: pointer;
}

.icon {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: inherit;
}

.icon svg {
  background-color: transparent;
  fill: currentColor;
  stroke-width: 0;
  stroke: currentColor;
  pointer-events: none;
  width: 1.5rem;
  height: 1.5rem;
}

.loading-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  align-items: center;
  display: none;
  justify-content: center;
  overflow: hidden;
  z-index: 999;
}

.loading-overlay.is-active {
  display: flex;
}

.loading-overlay.is-full-page {
  position: fixed;
}

.loading-overlay.is-full-page .loading-icon:after {
  top: calc(50% - 2.5em);
  left: calc(50% - 2.5em);
  width: 5em;
  height: 5em;
}

.loading-overlay .loading-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: #7f7f7f;
  background: rgba(255, 255, 255, 0.5);
}

.loading-overlay .loading-icon {
  position: relative;
}

.loading-overlay .loading-icon:after {
  -webkit-animation: spinAround 500ms infinite linear;
          animation: spinAround 500ms infinite linear;
  border: 2px solid #dbdbdb;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
  position: absolute;
  top: calc(50% - 1.5em);
  left: calc(50% - 1.5em);
  width: 3em;
  height: 3em;
  border-width: 0.25em;
}

.menu .menu-list li > a.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.message .media,
.notification .media {
  padding-top: 0;
  border: 0;
}

.modal.is-full-screen > .animation-content,
.modal.is-full-screen > .animation-content > .modal-card {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  margin: 0;
  background-color: whitesmoke;
}

.modal .animation-content {
  margin: 0 20px;
}

.modal .animation-content .modal-card {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .modal .animation-content {
    width: 100%;
  }
}
.modal .modal-content {
  width: 100%;
}

.notices {
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
  overflow: hidden;
  z-index: 1000;
  pointer-events: none;
}

.notices .toast {
  display: inline-flex;
  -webkit-animation-duration: 150ms;
          animation-duration: 150ms;
  margin: 0.5em 0;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  border-radius: 2em;
  padding: 0.75em 1.5em;
  pointer-events: auto;
  opacity: 0.92;
}

.notices .toast.is-white {
  color: #0a0a0a;
  background: white;
}

.notices .toast.is-black {
  color: white;
  background: #0a0a0a;
}

.notices .toast.is-light {
  color: #363636;
  background: whitesmoke;
}

.notices .toast.is-dark {
  color: whitesmoke;
  background: #363636;
}

.notices .toast.is-primary {
  color: white;
  background: #00aac3;
}

.notices .toast.is-link {
  color: white;
  background: #00aac3;
}

.notices .toast.is-info {
  color: #fff;
  background: #167df0;
}

.notices .toast.is-success {
  color: #fff;
  background: #23d160;
}

.notices .toast.is-warning {
  color: rgba(0, 0, 0, 0.7);
  background: #ffdd57;
}

.notices .toast.is-danger {
  color: #fff;
  background: #ff3860;
}

.notices .snackbar {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  -webkit-animation-duration: 150ms;
          animation-duration: 150ms;
  margin: 0.5em 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  pointer-events: auto;
  background: #363636;
  color: whitesmoke;
  min-height: 3em;
}

.notices .snackbar .text {
  padding: 0.5em 1em;
}

.notices .snackbar .action {
  margin-left: auto;
  padding: 0.5em;
  padding-left: 0;
}

.notices .snackbar .action .button {
  font-weight: 600;
  text-transform: uppercase;
  background: #363636;
  border: transparent;
}

.notices .snackbar .action .button:hover {
  background: #292929;
}

.notices .snackbar .action .button:active {
  background: #292929;
}

.notices .snackbar .action.is-white .button {
  color: white;
}

.notices .snackbar .action.is-black .button {
  color: #0a0a0a;
}

.notices .snackbar .action.is-light .button {
  color: whitesmoke;
}

.notices .snackbar .action.is-dark .button {
  color: #363636;
}

.notices .snackbar .action.is-primary .button {
  color: #00aac3;
}

.notices .snackbar .action.is-link .button {
  color: #00aac3;
}

.notices .snackbar .action.is-info .button {
  color: #167df0;
}

.notices .snackbar .action.is-success .button {
  color: #23d160;
}

.notices .snackbar .action.is-warning .button {
  color: #ffdd57;
}

.notices .snackbar .action.is-danger .button {
  color: #ff3860;
}

@media screen and (max-width: 768px) {
  .notices .snackbar {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}
@media screen and (min-width: 769px), print {
  .notices .snackbar {
    min-width: 350px;
    max-width: 600px;
    overflow: hidden;
  }
}
.notices .notification {
  max-width: 600px;
}

.notices .toast.is-top, .notices .toast.is-bottom,
.notices .snackbar.is-top,
.notices .snackbar.is-bottom,
.notices .notification.is-top,
.notices .notification.is-bottom {
  align-self: center;
}

.notices .toast.is-top-right, .notices .toast.is-bottom-right,
.notices .snackbar.is-top-right,
.notices .snackbar.is-bottom-right,
.notices .notification.is-top-right,
.notices .notification.is-bottom-right {
  align-self: flex-end;
}

.notices .toast.is-top-left, .notices .toast.is-bottom-left,
.notices .snackbar.is-top-left,
.notices .snackbar.is-bottom-left,
.notices .notification.is-top-left,
.notices .notification.is-bottom-left {
  align-self: flex-start;
}

.notices .toast.is-toast,
.notices .snackbar.is-toast,
.notices .notification.is-toast {
  opacity: 0.92;
}

.notices.is-top {
  flex-direction: column;
}

.notices.is-bottom {
  flex-direction: column-reverse;
}

.notices.is-bottom .notification {
  margin-bottom: 0;
}

.notices.is-bottom .notification:not(:first-child) {
  margin-bottom: 1.5rem;
}

.notices.has-custom-container {
  position: absolute;
}

@media screen and (max-width: 768px) {
  .notices {
    padding: 0;
    position: fixed !important;
  }
}
.b-numberinput.field {
  margin-bottom: 0;
}

.b-numberinput.field.is-grouped div.control {
  flex-grow: 1;
  flex-shrink: 1;
}

.b-numberinput.field.has-addons.is-expanded {
  flex-grow: 1;
  flex-shrink: 1;
}

.b-numberinput input[type=number]::-webkit-inner-spin-button,
.b-numberinput input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.b-numberinput input[type=number] {
  -moz-appearance: textfield;
}

.b-numberinput input[type=number] {
  text-align: center;
}

.b-numberinput .button.is-rounded {
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.pagination .pagination-next,
.pagination .pagination-previous {
  padding-left: 0.25em;
  padding-right: 0.25em;
}

.pagination .pagination-next.is-disabled,
.pagination .pagination-previous.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.pagination.is-simple {
  justify-content: normal;
}

.pagination.is-simple.is-centered {
  justify-content: center;
}

.pagination.is-simple.is-right {
  justify-content: flex-end;
}

.pagination .is-current {
  pointer-events: none;
  cursor: not-allowed;
}

.progress-wrapper {
  position: relative;
  overflow: hidden;
}

.progress-wrapper:not(:last-child) {
  margin-bottom: 1.5rem;
}

.progress-wrapper .progress-value {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: calc(1rem / 1.5);
  line-height: 1rem;
  font-weight: bold;
  color: white;
  white-space: nowrap;
}

.progress-wrapper .progress {
  margin-bottom: 0;
}

.progress-wrapper .progress.is-small + .progress-value {
  font-size: calc(0.75rem / 1.5);
  line-height: 0.75rem;
}

.progress-wrapper .progress.is-medium + .progress-value {
  font-size: calc(1.25rem / 1.5);
  line-height: 1.25rem;
}

.progress-wrapper .progress.is-large + .progress-value {
  font-size: calc(1.5rem / 1.5);
  line-height: 1.5rem;
}

.progress-wrapper .progress:indeterminate::-ms-fill {
  animation-name: none;
}

.progress-wrapper .progress::-webkit-progress-value {
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.b-radio.radio {
  outline: none;
  display: inline-flex;
  align-items: center;
}

.b-radio.radio:not(.button) {
  margin-right: 0.5em;
}

.b-radio.radio:not(.button) + .radio:last-child {
  margin-right: 0;
}

.b-radio.radio + .radio {
  margin-left: 0;
}

.b-radio.radio input[type=radio] {
  position: absolute;
  left: 0;
  opacity: 0;
  outline: none;
  z-index: -1;
}

.b-radio.radio input[type=radio] + .check {
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  width: 1.25em;
  height: 1.25em;
  transition: background 150ms ease-out;
  border-radius: 50%;
  border: 2px solid #7a7a7a;
}

.b-radio.radio input[type=radio] + .check:before {
  content: "";
  display: flex;
  position: absolute;
  left: 50%;
  margin-left: calc(-1.25em/2);
  bottom: 50%;
  margin-bottom: calc(-1.25em/2);
  width: 1.25em;
  height: 1.25em;
  transition: transform 150ms ease-out;
  border-radius: 50%;
  transform: scale(0);
  background-color: #00aac3;
}

.b-radio.radio input[type=radio] + .check.is-white:before {
  background: white;
}

.b-radio.radio input[type=radio] + .check.is-black:before {
  background: #0a0a0a;
}

.b-radio.radio input[type=radio] + .check.is-light:before {
  background: whitesmoke;
}

.b-radio.radio input[type=radio] + .check.is-dark:before {
  background: #363636;
}

.b-radio.radio input[type=radio] + .check.is-primary:before {
  background: #00aac3;
}

.b-radio.radio input[type=radio] + .check.is-link:before {
  background: #00aac3;
}

.b-radio.radio input[type=radio] + .check.is-info:before {
  background: #167df0;
}

.b-radio.radio input[type=radio] + .check.is-success:before {
  background: #23d160;
}

.b-radio.radio input[type=radio] + .check.is-warning:before {
  background: #ffdd57;
}

.b-radio.radio input[type=radio] + .check.is-danger:before {
  background: #ff3860;
}

.b-radio.radio input[type=radio]:checked + .check {
  border-color: #00aac3;
}

.b-radio.radio input[type=radio]:checked + .check.is-white {
  border-color: white;
}

.b-radio.radio input[type=radio]:checked + .check.is-black {
  border-color: #0a0a0a;
}

.b-radio.radio input[type=radio]:checked + .check.is-light {
  border-color: whitesmoke;
}

.b-radio.radio input[type=radio]:checked + .check.is-dark {
  border-color: #363636;
}

.b-radio.radio input[type=radio]:checked + .check.is-primary {
  border-color: #00aac3;
}

.b-radio.radio input[type=radio]:checked + .check.is-link {
  border-color: #00aac3;
}

.b-radio.radio input[type=radio]:checked + .check.is-info {
  border-color: #167df0;
}

.b-radio.radio input[type=radio]:checked + .check.is-success {
  border-color: #23d160;
}

.b-radio.radio input[type=radio]:checked + .check.is-warning {
  border-color: #ffdd57;
}

.b-radio.radio input[type=radio]:checked + .check.is-danger {
  border-color: #ff3860;
}

.b-radio.radio input[type=radio]:checked + .check:before {
  transform: scale(0.5);
}

.b-radio.radio input[type=radio]:focus + .check {
  box-shadow: 0 0 0.5em rgba(122, 122, 122, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-white {
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-black {
  box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-light {
  box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-dark {
  box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-primary {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-link {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-info {
  box-shadow: 0 0 0.5em rgba(22, 125, 240, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-success {
  box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-warning {
  box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.8);
}

.b-radio.radio input[type=radio]:focus:checked + .check.is-danger {
  box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.8);
}

.b-radio.radio .control-label {
  padding-left: 0.5em;
}

.b-radio.radio.button {
  display: flex;
}

.b-radio.radio[disabled] {
  opacity: 0.5;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check {
  border-color: #00aac3;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-white {
  border-color: white;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-black {
  border-color: #0a0a0a;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-light {
  border-color: whitesmoke;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-dark {
  border-color: #363636;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-primary {
  border-color: #00aac3;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-link {
  border-color: #00aac3;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-info {
  border-color: #167df0;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-success {
  border-color: #23d160;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-warning {
  border-color: #ffdd57;
}

.b-radio.radio:hover input[type=radio]:not(:disabled) + .check.is-danger {
  border-color: #ff3860;
}

.b-radio.radio.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.b-radio.radio.is-medium {
  font-size: 1.25rem;
}

.b-radio.radio.is-large {
  font-size: 1.5rem;
}

.rate {
  align-items: center;
  display: flex;
}

.rate:not(:last-child) {
  margin-bottom: 0.75rem;
}

.rate.is-spaced .rate-item:not(:last-child) {
  margin-right: 0.25rem;
}

.rate.is-disabled .rate-item {
  cursor: initial;
}

.rate.is-disabled .rate-item:hover {
  transform: none;
}

.rate.is-rtl .rate-item {
  order: 1;
}

.rate.is-rtl .rate-text {
  margin-left: 0;
  margin-right: 0.35rem;
}

.rate .rate-item {
  cursor: pointer;
  display: inline-flex;
  position: relative;
  transition: all 0.3s;
}

.rate .rate-item:hover {
  transform: scale(1.1);
}

.rate .rate-item.set-on .icon,
.rate .rate-item.set-half .is-half {
  color: #ffd83d;
}

.rate .rate-item.set-half .is-half {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}

.rate .icon {
  color: #dbdbdb;
  line-height: 1;
  pointer-events: none;
  width: inherit;
}

.rate .is-half > i {
  position: absolute;
  left: 0;
}

.rate .rate-text {
  font-size: calc(1rem / 1.25);
  margin-left: 0.35rem;
}

.rate .rate-text.is-small {
  font-size: calc(0.75rem / 1.25);
}

.rate .rate-text.is-medium {
  font-size: calc(1.25rem / 1.25);
}

.rate .rate-text.is-large {
  font-size: calc(1.5rem / 1.25);
}

.select select {
  text-rendering: auto !important;
  padding-right: 2.5em;
}

.select select option {
  color: #4a4a4a;
  padding: 0.25em 0.5em;
}

.select select option:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.select select optgroup {
  color: #b5b5b5;
  font-weight: 400;
  font-style: normal;
  padding: 0.25em 0;
}

.select.is-empty select {
  color: rgba(122, 122, 122, 0.7);
}

.b-skeleton {
  width: 100%;
}

.b-skeleton > .b-skeleton-item {
  background: linear-gradient(90deg, #dbdbdb 25%, rgba(219, 219, 219, 0.5) 50%, #dbdbdb 75%);
  background-size: 400% 100%;
  width: 100%;
}

.b-skeleton > .b-skeleton-item.is-rounded {
  border-radius: 4px;
}

.b-skeleton > .b-skeleton-item::after {
  content: " ";
}

.b-skeleton > .b-skeleton-item + .b-skeleton-item {
  margin-top: 0.5rem;
}

.b-skeleton.is-animated > .b-skeleton-item {
  -webkit-animation: skeleton-loading 1.5s infinite;
          animation: skeleton-loading 1.5s infinite;
}

.b-skeleton + .b-skeleton {
  margin-top: 0.5rem;
}

.b-skeleton > .b-skeleton-item {
  line-height: 1rem;
}

.b-skeleton.is-small > .b-skeleton-item {
  line-height: 0.75rem;
}

.b-skeleton.is-medium > .b-skeleton-item {
  line-height: 1.25rem;
}

.b-skeleton.is-large > .b-skeleton-item {
  line-height: 1.5rem;
}

@-webkit-keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.b-sidebar .sidebar-content {
  background-color: whitesmoke;
  box-shadow: 5px 0px 13px 3px rgba(10, 10, 10, 0.1);
  width: 260px;
  z-index: 41;
}

.b-sidebar .sidebar-content.is-white {
  background-color: white;
}

.b-sidebar .sidebar-content.is-black {
  background-color: #0a0a0a;
}

.b-sidebar .sidebar-content.is-light {
  background-color: whitesmoke;
}

.b-sidebar .sidebar-content.is-dark {
  background-color: #363636;
}

.b-sidebar .sidebar-content.is-primary {
  background-color: #00aac3;
}

.b-sidebar .sidebar-content.is-link {
  background-color: #00aac3;
}

.b-sidebar .sidebar-content.is-info {
  background-color: #167df0;
}

.b-sidebar .sidebar-content.is-success {
  background-color: #23d160;
}

.b-sidebar .sidebar-content.is-warning {
  background-color: #ffdd57;
}

.b-sidebar .sidebar-content.is-danger {
  background-color: #ff3860;
}

.b-sidebar .sidebar-content.is-fixed {
  position: fixed;
  left: 0;
  top: 0;
}

.b-sidebar .sidebar-content.is-fixed.is-right {
  left: auto;
  right: 0;
}

.b-sidebar .sidebar-content.is-absolute {
  position: absolute;
  left: 0;
  top: 0;
}

.b-sidebar .sidebar-content.is-absolute.is-right {
  left: auto;
  right: 0;
}

.b-sidebar .sidebar-content.is-mini {
  width: 80px;
}

.b-sidebar .sidebar-content.is-mini.is-mini-expand:hover {
  transition: width 150ms ease-out;
}

.b-sidebar .sidebar-content.is-mini.is-mini-expand:hover:not(.is-fullwidth) {
  width: 260px;
}

.b-sidebar .sidebar-content.is-mini.is-mini-expand:hover:not(.is-fullwidth).is-mini-expand-fixed {
  position: fixed;
}

.b-sidebar .sidebar-content.is-static {
  position: static;
}

.b-sidebar .sidebar-content.is-absolute, .b-sidebar .sidebar-content.is-static {
  transition: width 150ms ease-out;
}

.b-sidebar .sidebar-content.is-fullwidth {
  width: 100%;
  max-width: 100%;
}

.b-sidebar .sidebar-content.is-fullheight {
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-content: stretch;
}

@media screen and (max-width: 1023px) {
  .b-sidebar .sidebar-content.is-mini-mobile {
    width: 80px;
  }

  .b-sidebar .sidebar-content.is-mini-mobile.is-mini-expand:hover:not(.is-fullwidth-mobile) {
    width: 260px;
  }

  .b-sidebar .sidebar-content.is-mini-mobile.is-mini-expand:hover:not(.is-fullwidth-mobile).is-mini-expand-fixed {
    position: fixed;
  }

  .b-sidebar .sidebar-content.is-hidden-mobile {
    width: 0;
    height: 0;
    overflow: hidden;
  }

  .b-sidebar .sidebar-content.is-fullwidth-mobile {
    width: 100%;
    max-width: 100%;
  }
}
.b-sidebar .sidebar-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(10, 10, 10, 0.86);
  position: fixed;
  z-index: 40;
}

.b-slider {
  margin: 1em 0;
  background: transparent;
  width: 100%;
}

.b-slider .b-slider-track {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  background: #dbdbdb;
  border-radius: 4px;
}

.b-slider .b-slider-fill {
  position: absolute;
  height: 100%;
  box-shadow: 0px 0px 0px #7a7a7a;
  background: #dbdbdb;
  border-radius: 4px;
  border: 0px solid #7a7a7a;
  top: 50%;
  transform: translateY(-50%);
}

.b-slider .b-slider-thumb-wrapper {
  display: inline-flex;
  align-items: center;
  position: absolute;
  cursor: -webkit-grab;
  cursor: grab;
  transform: translate(-50%, -50%);
  top: 50%;
  flex-direction: column;
}

.b-slider .b-slider-thumb-wrapper .b-slider-thumb {
  box-shadow: none;
  border: 1px solid #b5b5b5;
  border-radius: 4px;
  background: white;
}

.b-slider .b-slider-thumb-wrapper .b-slider-thumb:focus {
  transform: scale(1.25);
}

.b-slider .b-slider-thumb-wrapper.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.b-slider .b-slider-thumb-wrapper.is-dragging .b-slider-thumb {
  transform: scale(1.25);
}

.b-slider.slider-focus {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: -20px;
  margin-bottom: -20px;
  cursor: pointer;
}

.b-slider.is-rounded .b-slider-thumb {
  border-radius: 290486px;
}

.b-slider.is-disabled .b-slider-track {
  cursor: not-allowed;
  opacity: 0.5;
}

.b-slider.is-disabled .b-slider-thumb-wrapper {
  cursor: not-allowed;
}

.b-slider.is-disabled .b-slider-thumb-wrapper .b-slider-thumb {
  transform: scale(1);
}

.b-slider .b-slider-track {
  height: 0.5rem;
}

.b-slider .b-slider-thumb {
  height: 1rem;
  width: 1rem;
}

.b-slider .b-slider-tick {
  height: 0.25rem;
}

.b-slider .b-slider-tick-label {
  font-size: 0.75rem;
  position: absolute;
  top: calc(0.5rem / 2 + 2px);
  left: 50%;
  transform: translateX(-50%);
}

.b-slider.is-small .b-slider-track {
  height: 0.375rem;
}

.b-slider.is-small .b-slider-thumb {
  height: 0.75rem;
  width: 0.75rem;
}

.b-slider.is-small .b-slider-tick {
  height: 0.1875rem;
}

.b-slider.is-small .b-slider-tick-label {
  font-size: 0.75rem;
  position: absolute;
  top: calc(0.375rem / 2 + 2px);
  left: 50%;
  transform: translateX(-50%);
}

.b-slider.is-medium .b-slider-track {
  height: 0.625rem;
}

.b-slider.is-medium .b-slider-thumb {
  height: 1.25rem;
  width: 1.25rem;
}

.b-slider.is-medium .b-slider-tick {
  height: 0.3125rem;
}

.b-slider.is-medium .b-slider-tick-label {
  font-size: 0.75rem;
  position: absolute;
  top: calc(0.625rem / 2 + 2px);
  left: 50%;
  transform: translateX(-50%);
}

.b-slider.is-large .b-slider-track {
  height: 0.75rem;
}

.b-slider.is-large .b-slider-thumb {
  height: 1.5rem;
  width: 1.5rem;
}

.b-slider.is-large .b-slider-tick {
  height: 0.375rem;
}

.b-slider.is-large .b-slider-tick-label {
  font-size: 0.75rem;
  position: absolute;
  top: calc(0.75rem / 2 + 2px);
  left: 50%;
  transform: translateX(-50%);
}

.b-slider.is-white .b-slider-fill {
  background: white !important;
}

.b-slider.is-black .b-slider-fill {
  background: #0a0a0a !important;
}

.b-slider.is-light .b-slider-fill {
  background: whitesmoke !important;
}

.b-slider.is-dark .b-slider-fill {
  background: #363636 !important;
}

.b-slider.is-primary .b-slider-fill {
  background: #00aac3 !important;
}

.b-slider.is-link .b-slider-fill {
  background: #00aac3 !important;
}

.b-slider.is-info .b-slider-fill {
  background: #167df0 !important;
}

.b-slider.is-success .b-slider-fill {
  background: #23d160 !important;
}

.b-slider.is-warning .b-slider-fill {
  background: #ffdd57 !important;
}

.b-slider.is-danger .b-slider-fill {
  background: #ff3860 !important;
}

.b-slider .b-slider-tick {
  position: absolute;
  width: 3px;
  transform: translate(-50%, -50%);
  top: 50%;
  background: #b5b5b5;
  border-radius: 4px;
}

.b-slider .b-slider-tick.is-tick-hidden {
  background: transparent;
}

/*
This project is based on
"bulma-steps" (https://github.com/Wikiki/bulma-steps) by
Wikiki (https://github.com/Wikiki) licensed under
MIT (https://github.com/Wikiki/bulma-steps/blob/master/LICENSE)
*/
.b-steps .steps .step-items {
  display: flex;
  flex-wrap: wrap;
}

.b-steps .steps .step-items .step-item {
  margin-top: 0;
  position: relative;
  flex-grow: 1;
  flex-basis: 1em;
}

.b-steps .steps .step-items .step-item .step-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #4a4a4a;
}

.b-steps .steps .step-items .step-item .step-link:not(.is-clickable) {
  cursor: not-allowed;
}

.b-steps .steps .step-items .step-item .step-marker {
  align-items: center;
  display: flex;
  border-radius: 4px;
  font-weight: 700;
  justify-content: center;
  background: #b5b5b5;
  color: white;
  border: 0.2em solid #fff;
  z-index: 1;
  overflow: hidden;
}

.b-steps .steps .step-items .step-item.is-white::before, .b-steps .steps .step-items .step-item.is-white::after {
  background: linear-gradient(to left, #dbdbdb 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-white.is-active .step-marker {
  background-color: white;
  border-color: white;
  color: white;
}

.b-steps .steps .step-items .step-item.is-white.is-active::before, .b-steps .steps .step-items .step-item.is-white.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-white.is-previous .step-marker {
  color: #0a0a0a;
  background-color: white;
}

.b-steps .steps .step-items .step-item.is-white.is-previous::before, .b-steps .steps .step-items .step-item.is-white.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-black::before, .b-steps .steps .step-items .step-item.is-black::after {
  background: linear-gradient(to left, #dbdbdb 50%, #0a0a0a 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-black.is-active .step-marker {
  background-color: white;
  border-color: #0a0a0a;
  color: #0a0a0a;
}

.b-steps .steps .step-items .step-item.is-black.is-active::before, .b-steps .steps .step-items .step-item.is-black.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-black.is-previous .step-marker {
  color: white;
  background-color: #0a0a0a;
}

.b-steps .steps .step-items .step-item.is-black.is-previous::before, .b-steps .steps .step-items .step-item.is-black.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-light::before, .b-steps .steps .step-items .step-item.is-light::after {
  background: linear-gradient(to left, #dbdbdb 50%, whitesmoke 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-light.is-active .step-marker {
  background-color: white;
  border-color: whitesmoke;
  color: whitesmoke;
}

.b-steps .steps .step-items .step-item.is-light.is-active::before, .b-steps .steps .step-items .step-item.is-light.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-light.is-previous .step-marker {
  color: #363636;
  background-color: whitesmoke;
}

.b-steps .steps .step-items .step-item.is-light.is-previous::before, .b-steps .steps .step-items .step-item.is-light.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-dark::before, .b-steps .steps .step-items .step-item.is-dark::after {
  background: linear-gradient(to left, #dbdbdb 50%, #363636 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-dark.is-active .step-marker {
  background-color: white;
  border-color: #363636;
  color: #363636;
}

.b-steps .steps .step-items .step-item.is-dark.is-active::before, .b-steps .steps .step-items .step-item.is-dark.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-dark.is-previous .step-marker {
  color: whitesmoke;
  background-color: #363636;
}

.b-steps .steps .step-items .step-item.is-dark.is-previous::before, .b-steps .steps .step-items .step-item.is-dark.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-primary::before, .b-steps .steps .step-items .step-item.is-primary::after {
  background: linear-gradient(to left, #dbdbdb 50%, #00aac3 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-primary.is-active .step-marker {
  background-color: white;
  border-color: #00aac3;
  color: #00aac3;
}

.b-steps .steps .step-items .step-item.is-primary.is-active::before, .b-steps .steps .step-items .step-item.is-primary.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-primary.is-previous .step-marker {
  color: white;
  background-color: #00aac3;
}

.b-steps .steps .step-items .step-item.is-primary.is-previous::before, .b-steps .steps .step-items .step-item.is-primary.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-link::before, .b-steps .steps .step-items .step-item.is-link::after {
  background: linear-gradient(to left, #dbdbdb 50%, #00aac3 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-link.is-active .step-marker {
  background-color: white;
  border-color: #00aac3;
  color: #00aac3;
}

.b-steps .steps .step-items .step-item.is-link.is-active::before, .b-steps .steps .step-items .step-item.is-link.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-link.is-previous .step-marker {
  color: white;
  background-color: #00aac3;
}

.b-steps .steps .step-items .step-item.is-link.is-previous::before, .b-steps .steps .step-items .step-item.is-link.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-info::before, .b-steps .steps .step-items .step-item.is-info::after {
  background: linear-gradient(to left, #dbdbdb 50%, #167df0 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-info.is-active .step-marker {
  background-color: white;
  border-color: #167df0;
  color: #167df0;
}

.b-steps .steps .step-items .step-item.is-info.is-active::before, .b-steps .steps .step-items .step-item.is-info.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-info.is-previous .step-marker {
  color: #fff;
  background-color: #167df0;
}

.b-steps .steps .step-items .step-item.is-info.is-previous::before, .b-steps .steps .step-items .step-item.is-info.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-success::before, .b-steps .steps .step-items .step-item.is-success::after {
  background: linear-gradient(to left, #dbdbdb 50%, #23d160 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-success.is-active .step-marker {
  background-color: white;
  border-color: #23d160;
  color: #23d160;
}

.b-steps .steps .step-items .step-item.is-success.is-active::before, .b-steps .steps .step-items .step-item.is-success.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-success.is-previous .step-marker {
  color: #fff;
  background-color: #23d160;
}

.b-steps .steps .step-items .step-item.is-success.is-previous::before, .b-steps .steps .step-items .step-item.is-success.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-warning::before, .b-steps .steps .step-items .step-item.is-warning::after {
  background: linear-gradient(to left, #dbdbdb 50%, #ffdd57 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-warning.is-active .step-marker {
  background-color: white;
  border-color: #ffdd57;
  color: #ffdd57;
}

.b-steps .steps .step-items .step-item.is-warning.is-active::before, .b-steps .steps .step-items .step-item.is-warning.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-warning.is-previous .step-marker {
  color: rgba(0, 0, 0, 0.7);
  background-color: #ffdd57;
}

.b-steps .steps .step-items .step-item.is-warning.is-previous::before, .b-steps .steps .step-items .step-item.is-warning.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-danger::before, .b-steps .steps .step-items .step-item.is-danger::after {
  background: linear-gradient(to left, #dbdbdb 50%, #ff3860 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-danger.is-active .step-marker {
  background-color: white;
  border-color: #ff3860;
  color: #ff3860;
}

.b-steps .steps .step-items .step-item.is-danger.is-active::before, .b-steps .steps .step-items .step-item.is-danger.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-danger.is-previous .step-marker {
  color: #fff;
  background-color: #ff3860;
}

.b-steps .steps .step-items .step-item.is-danger.is-previous::before, .b-steps .steps .step-items .step-item.is-danger.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item .step-marker {
  color: white;
}

.b-steps .steps .step-items .step-item .step-details {
  text-align: center;
  z-index: 1;
}

.b-steps .steps .step-items .step-item:not(:first-child), .b-steps .steps .step-items .step-item:only-child {
  flex-shrink: 1;
}

.b-steps .steps .step-items .step-item:not(:first-child)::before, .b-steps .steps .step-items .step-item:only-child::before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: -50%;
}

.b-steps .steps .step-items .step-item:only-child::after {
  content: " ";
  display: block;
  position: absolute;
  height: 0.2em;
  bottom: 0;
}

.b-steps .steps .step-items .step-item:only-child::before, .b-steps .steps .step-items .step-item:only-child::after {
  width: 25%;
  left: 50%;
}

.b-steps .steps .step-items .step-item:only-child::before {
  right: 50%;
  left: auto;
}

.b-steps .steps .step-items .step-item::before, .b-steps .steps .step-items .step-item::after {
  background: linear-gradient(to left, #dbdbdb 50%, #00aac3 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.b-steps .steps .step-items .step-item.is-active .step-link {
  cursor: default;
}

.b-steps .steps .step-items .step-item.is-active .step-marker {
  background-color: white;
  border-color: #00aac3;
  color: #00aac3;
}

.b-steps .steps .step-items .step-item.is-active::before, .b-steps .steps .step-items .step-item.is-active::after {
  background-position: left bottom;
}

.b-steps .steps .step-items .step-item.is-previous .step-marker {
  color: white;
  background-color: #00aac3;
}

.b-steps .steps .step-items .step-item.is-previous::before, .b-steps .steps .step-items .step-item.is-previous::after {
  background-position: left bottom;
}

.b-steps .steps + .step-content {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.b-steps .steps + .step-content .step-item {
  flex-shrink: 0;
  flex-basis: auto;
}

.b-steps .steps + .step-content.is-transitioning {
  overflow: hidden;
}

.b-steps .steps.is-rounded .step-item .step-marker {
  border-radius: 290486px;
}

.b-steps .steps.is-animated .step-item:not(:first-child)::before, .b-steps .steps.is-animated .step-item:only-child::before {
  transition: background 150ms ease-out;
}

.b-steps .steps.has-label-right .step-items .step-item .step-link, .b-steps .steps.has-label-left .step-items .step-item .step-link {
  flex-direction: row;
}

.b-steps .steps.has-label-right .step-items .step-item .step-link > .step-details, .b-steps .steps.has-label-left .step-items .step-item .step-link > .step-details {
  background-color: white;
  padding: 0.2em;
}

.b-steps .steps.has-label-left .step-items .step-item .step-link {
  flex-direction: row-reverse;
}

.b-steps .steps {
  font-size: 1rem;
  min-height: 2rem;
}

.b-steps .steps .step-items .step-item .step-marker {
  height: 2rem;
  width: 2rem;
}

.b-steps .steps .step-items .step-item .step-marker .icon *, .b-steps .steps .step-items .step-item .step-marker .icon *:before {
  font-size: 1rem;
}

.b-steps .steps .step-items .step-item .step-details .step-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1rem;
}

.b-steps .steps .step-items .step-item:not(:first-child)::before, .b-steps .steps .step-items .step-item:only-child::before {
  height: 0.2em;
  top: 1rem;
}

.b-steps .steps .step-items .step-item:only-child::after {
  top: 1rem;
}

@media screen and (max-width: 768px) {
  .b-steps .steps .step-items .step-item::before, .b-steps .steps .step-items .step-item::after, .b-steps .steps .step-items .step-item:not(:first-child)::before {
    top: 1rem;
  }
}
.b-steps.is-vertical > .steps.has-label-right .step-items .step-item:not(:first-child)::before, .b-steps.is-vertical > .steps.has-label-right .step-items .step-item:not(:first-child)::after, .b-steps.is-vertical > .steps.has-label-right .step-items .step-item:only-child::before, .b-steps.is-vertical > .steps.has-label-right .step-items .step-item:only-child::after {
  left: calc(1rem - 0.1em);
}

.b-steps.is-vertical > .steps.has-label-left .step-items .step-item:not(:first-child)::before, .b-steps.is-vertical > .steps.has-label-left .step-items .step-item:not(:first-child)::after, .b-steps.is-vertical > .steps.has-label-left .step-items .step-item:only-child::before, .b-steps.is-vertical > .steps.has-label-left .step-items .step-item:only-child::after {
  left: auto;
  right: calc(1rem - 0.1em);
}

.b-steps.is-vertical.is-right > .steps.has-label-right .step-items .step-item:not(:first-child)::before, .b-steps.is-vertical.is-right > .steps.has-label-right .step-items .step-item:not(:first-child)::after, .b-steps.is-vertical.is-right > .steps.has-label-right .step-items .step-item:only-child::before, .b-steps.is-vertical.is-right > .steps.has-label-right .step-items .step-item:only-child::after {
  left: calc(1rem - 0.1em);
}

.b-steps.is-vertical.is-right > .steps.has-label-left .step-items .step-item:not(:first-child)::before, .b-steps.is-vertical.is-right > .steps.has-label-left .step-items .step-item:not(:first-child)::after, .b-steps.is-vertical.is-right > .steps.has-label-left .step-items .step-item:only-child::before, .b-steps.is-vertical.is-right > .steps.has-label-left .step-items .step-item:only-child::after {
  left: auto;
  right: calc(1rem - 0.1em);
}

.b-steps.is-small .steps {
  font-size: 0.75rem;
  min-height: 1.5rem;
}

.b-steps.is-small .steps .step-items .step-item .step-marker {
  height: 1.5rem;
  width: 1.5rem;
}

.b-steps.is-small .steps .step-items .step-item .step-marker .icon *, .b-steps.is-small .steps .step-items .step-item .step-marker .icon *:before {
  font-size: 0.75rem;
}

.b-steps.is-small .steps .step-items .step-item .step-details .step-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 0.75rem;
}

.b-steps.is-small .steps .step-items .step-item:not(:first-child)::before, .b-steps.is-small .steps .step-items .step-item:only-child::before {
  height: 0.2em;
  top: 0.75rem;
}

.b-steps.is-small .steps .step-items .step-item:only-child::after {
  top: 0.75rem;
}

@media screen and (max-width: 768px) {
  .b-steps.is-small .steps .step-items .step-item::before, .b-steps.is-small .steps .step-items .step-item::after, .b-steps.is-small .steps .step-items .step-item:not(:first-child)::before {
    top: 0.75rem;
  }
}
.b-steps.is-small.is-vertical > .steps.has-label-right .step-items .step-item:not(:first-child)::before, .b-steps.is-small.is-vertical > .steps.has-label-right .step-items .step-item:not(:first-child)::after, .b-steps.is-small.is-vertical > .steps.has-label-right .step-items .step-item:only-child::before, .b-steps.is-small.is-vertical > .steps.has-label-right .step-items .step-item:only-child::after {
  left: calc(0.75rem - 0.1em);
}

.b-steps.is-small.is-vertical > .steps.has-label-left .step-items .step-item:not(:first-child)::before, .b-steps.is-small.is-vertical > .steps.has-label-left .step-items .step-item:not(:first-child)::after, .b-steps.is-small.is-vertical > .steps.has-label-left .step-items .step-item:only-child::before, .b-steps.is-small.is-vertical > .steps.has-label-left .step-items .step-item:only-child::after {
  left: auto;
  right: calc(0.75rem - 0.1em);
}

.b-steps.is-small.is-vertical.is-right > .steps.has-label-right .step-items .step-item:not(:first-child)::before, .b-steps.is-small.is-vertical.is-right > .steps.has-label-right .step-items .step-item:not(:first-child)::after, .b-steps.is-small.is-vertical.is-right > .steps.has-label-right .step-items .step-item:only-child::before, .b-steps.is-small.is-vertical.is-right > .steps.has-label-right .step-items .step-item:only-child::after {
  left: calc(0.75rem - 0.1em);
}

.b-steps.is-small.is-vertical.is-right > .steps.has-label-left .step-items .step-item:not(:first-child)::before, .b-steps.is-small.is-vertical.is-right > .steps.has-label-left .step-items .step-item:not(:first-child)::after, .b-steps.is-small.is-vertical.is-right > .steps.has-label-left .step-items .step-item:only-child::before, .b-steps.is-small.is-vertical.is-right > .steps.has-label-left .step-items .step-item:only-child::after {
  left: auto;
  right: calc(0.75rem - 0.1em);
}

.b-steps.is-medium .steps {
  font-size: 1.25rem;
  min-height: 2.5rem;
}

.b-steps.is-medium .steps .step-items .step-item .step-marker {
  height: 2.5rem;
  width: 2.5rem;
}

.b-steps.is-medium .steps .step-items .step-item .step-marker .icon *, .b-steps.is-medium .steps .step-items .step-item .step-marker .icon *:before {
  font-size: 1.25rem;
}

.b-steps.is-medium .steps .step-items .step-item .step-details .step-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.b-steps.is-medium .steps .step-items .step-item:not(:first-child)::before, .b-steps.is-medium .steps .step-items .step-item:only-child::before {
  height: 0.2em;
  top: 1.25rem;
}

.b-steps.is-medium .steps .step-items .step-item:only-child::after {
  top: 1.25rem;
}

@media screen and (max-width: 768px) {
  .b-steps.is-medium .steps .step-items .step-item::before, .b-steps.is-medium .steps .step-items .step-item::after, .b-steps.is-medium .steps .step-items .step-item:not(:first-child)::before {
    top: 1.25rem;
  }
}
.b-steps.is-medium.is-vertical > .steps.has-label-right .step-items .step-item:not(:first-child)::before, .b-steps.is-medium.is-vertical > .steps.has-label-right .step-items .step-item:not(:first-child)::after, .b-steps.is-medium.is-vertical > .steps.has-label-right .step-items .step-item:only-child::before, .b-steps.is-medium.is-vertical > .steps.has-label-right .step-items .step-item:only-child::after {
  left: calc(1.25rem - 0.1em);
}

.b-steps.is-medium.is-vertical > .steps.has-label-left .step-items .step-item:not(:first-child)::before, .b-steps.is-medium.is-vertical > .steps.has-label-left .step-items .step-item:not(:first-child)::after, .b-steps.is-medium.is-vertical > .steps.has-label-left .step-items .step-item:only-child::before, .b-steps.is-medium.is-vertical > .steps.has-label-left .step-items .step-item:only-child::after {
  left: auto;
  right: calc(1.25rem - 0.1em);
}

.b-steps.is-medium.is-vertical.is-right > .steps.has-label-right .step-items .step-item:not(:first-child)::before, .b-steps.is-medium.is-vertical.is-right > .steps.has-label-right .step-items .step-item:not(:first-child)::after, .b-steps.is-medium.is-vertical.is-right > .steps.has-label-right .step-items .step-item:only-child::before, .b-steps.is-medium.is-vertical.is-right > .steps.has-label-right .step-items .step-item:only-child::after {
  left: calc(1.25rem - 0.1em);
}

.b-steps.is-medium.is-vertical.is-right > .steps.has-label-left .step-items .step-item:not(:first-child)::before, .b-steps.is-medium.is-vertical.is-right > .steps.has-label-left .step-items .step-item:not(:first-child)::after, .b-steps.is-medium.is-vertical.is-right > .steps.has-label-left .step-items .step-item:only-child::before, .b-steps.is-medium.is-vertical.is-right > .steps.has-label-left .step-items .step-item:only-child::after {
  left: auto;
  right: calc(1.25rem - 0.1em);
}

.b-steps.is-large .steps {
  font-size: 1.5rem;
  min-height: 3rem;
}

.b-steps.is-large .steps .step-items .step-item .step-marker {
  height: 3rem;
  width: 3rem;
}

.b-steps.is-large .steps .step-items .step-item .step-marker .icon *, .b-steps.is-large .steps .step-items .step-item .step-marker .icon *:before {
  font-size: 1.5rem;
}

.b-steps.is-large .steps .step-items .step-item .step-details .step-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.b-steps.is-large .steps .step-items .step-item:not(:first-child)::before, .b-steps.is-large .steps .step-items .step-item:only-child::before {
  height: 0.2em;
  top: 1.5rem;
}

.b-steps.is-large .steps .step-items .step-item:only-child::after {
  top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .b-steps.is-large .steps .step-items .step-item::before, .b-steps.is-large .steps .step-items .step-item::after, .b-steps.is-large .steps .step-items .step-item:not(:first-child)::before {
    top: 1.5rem;
  }
}
.b-steps.is-large.is-vertical > .steps.has-label-right .step-items .step-item:not(:first-child)::before, .b-steps.is-large.is-vertical > .steps.has-label-right .step-items .step-item:not(:first-child)::after, .b-steps.is-large.is-vertical > .steps.has-label-right .step-items .step-item:only-child::before, .b-steps.is-large.is-vertical > .steps.has-label-right .step-items .step-item:only-child::after {
  left: calc(1.5rem - 0.1em);
}

.b-steps.is-large.is-vertical > .steps.has-label-left .step-items .step-item:not(:first-child)::before, .b-steps.is-large.is-vertical > .steps.has-label-left .step-items .step-item:not(:first-child)::after, .b-steps.is-large.is-vertical > .steps.has-label-left .step-items .step-item:only-child::before, .b-steps.is-large.is-vertical > .steps.has-label-left .step-items .step-item:only-child::after {
  left: auto;
  right: calc(1.5rem - 0.1em);
}

.b-steps.is-large.is-vertical.is-right > .steps.has-label-right .step-items .step-item:not(:first-child)::before, .b-steps.is-large.is-vertical.is-right > .steps.has-label-right .step-items .step-item:not(:first-child)::after, .b-steps.is-large.is-vertical.is-right > .steps.has-label-right .step-items .step-item:only-child::before, .b-steps.is-large.is-vertical.is-right > .steps.has-label-right .step-items .step-item:only-child::after {
  left: calc(1.5rem - 0.1em);
}

.b-steps.is-large.is-vertical.is-right > .steps.has-label-left .step-items .step-item:not(:first-child)::before, .b-steps.is-large.is-vertical.is-right > .steps.has-label-left .step-items .step-item:not(:first-child)::after, .b-steps.is-large.is-vertical.is-right > .steps.has-label-left .step-items .step-item:only-child::before, .b-steps.is-large.is-vertical.is-right > .steps.has-label-left .step-items .step-item:only-child::after {
  left: auto;
  right: calc(1.5rem - 0.1em);
}

.b-steps.is-vertical {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.b-steps.is-vertical > .steps .step-items {
  height: 100%;
  flex-direction: column;
  border-bottom-color: transparent;
}

.b-steps.is-vertical > .steps .step-items .step-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0;
}

.b-steps.is-vertical > .steps .step-items .step-item::before, .b-steps.is-vertical > .steps .step-items .step-item::after {
  background: linear-gradient(to top, #dbdbdb 50%, #00aac3 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-white::before, .b-steps.is-vertical > .steps .step-items .step-item.is-white::after {
  background: linear-gradient(to top, #dbdbdb 50%, white 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-black::before, .b-steps.is-vertical > .steps .step-items .step-item.is-black::after {
  background: linear-gradient(to top, #dbdbdb 50%, #0a0a0a 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-light::before, .b-steps.is-vertical > .steps .step-items .step-item.is-light::after {
  background: linear-gradient(to top, #dbdbdb 50%, whitesmoke 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-dark::before, .b-steps.is-vertical > .steps .step-items .step-item.is-dark::after {
  background: linear-gradient(to top, #dbdbdb 50%, #363636 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-primary::before, .b-steps.is-vertical > .steps .step-items .step-item.is-primary::after {
  background: linear-gradient(to top, #dbdbdb 50%, #00aac3 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-link::before, .b-steps.is-vertical > .steps .step-items .step-item.is-link::after {
  background: linear-gradient(to top, #dbdbdb 50%, #00aac3 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-info::before, .b-steps.is-vertical > .steps .step-items .step-item.is-info::after {
  background: linear-gradient(to top, #dbdbdb 50%, #167df0 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-success::before, .b-steps.is-vertical > .steps .step-items .step-item.is-success::after {
  background: linear-gradient(to top, #dbdbdb 50%, #23d160 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-warning::before, .b-steps.is-vertical > .steps .step-items .step-item.is-warning::after {
  background: linear-gradient(to top, #dbdbdb 50%, #ffdd57 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item.is-danger::before, .b-steps.is-vertical > .steps .step-items .step-item.is-danger::after {
  background: linear-gradient(to top, #dbdbdb 50%, #ff3860 50%);
  background-size: 100% 200%;
  background-position: left bottom;
}

.b-steps.is-vertical > .steps .step-items .step-item:not(:first-child)::before, .b-steps.is-vertical > .steps .step-items .step-item:only-child::before {
  height: 100%;
  width: 0.2em;
  top: -50%;
  left: calc(50% - 0.1em);
}

.b-steps.is-vertical > .steps .step-items .step-item.is-active::before, .b-steps.is-vertical > .steps .step-items .step-item.is-active::after, .b-steps.is-vertical > .steps .step-items .step-item.is-previous::before, .b-steps.is-vertical > .steps .step-items .step-item.is-previous::after {
  background-position: right top;
}

.b-steps.is-vertical > .steps .step-items .step-item:only-child::before {
  top: 50%;
}

.b-steps.is-vertical > .steps .step-items .step-item:only-child::after {
  width: 0.2em;
  top: auto;
  bottom: 50%;
}

.b-steps.is-vertical > .steps .step-items .step-item:only-child::before, .b-steps.is-vertical > .steps .step-items .step-item:only-child::after {
  height: 25%;
}

.b-steps.is-vertical > .steps.has-label-right .step-items .step-item {
  justify-content: flex-start;
}

.b-steps.is-vertical > .steps.has-label-left .step-items .step-item {
  justify-content: flex-end;
}

.b-steps.is-vertical > .steps:not(.has-label-right):not(.has-label-left) .step-items .step-item .step-link > .step-details {
  background-color: white;
}

.b-steps.is-vertical > .step-content {
  flex-grow: 1;
}

.b-steps.is-vertical > .step-navigation {
  flex-basis: 100%;
}

.b-steps.is-vertical.is-right {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .b-steps:not(.is-vertical) .steps.mobile-minimalist .step-items .step-item:not(.is-active) {
    display: none;
  }

  .b-steps:not(.is-vertical) .steps.mobile-minimalist .step-items .step-item::before, .b-steps:not(.is-vertical) .steps.mobile-minimalist .step-items .step-item::after, .b-steps:not(.is-vertical) .steps.mobile-minimalist .step-items .step-item:not(:first-child)::before {
    content: " ";
    display: block;
    position: absolute;
    height: 0.2em;
    width: 25%;
    bottom: 0;
    left: 50%;
  }

  .b-steps:not(.is-vertical) .steps.mobile-minimalist .step-items .step-item::before, .b-steps:not(.is-vertical) .steps.mobile-minimalist .step-items .step-item:not(:first-child)::before {
    right: 50%;
    left: auto;
  }

  .b-steps:not(.is-vertical) .steps.mobile-compact .step-items .step-item:not(.is-active) .step-details {
    display: none;
  }
}
.switch {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-right: 0.5em;
}

.switch + .switch:last-child {
  margin-right: 0;
}

.switch input[type=checkbox] {
  position: absolute;
  left: 0;
  opacity: 0;
  outline: none;
  z-index: -1;
}

.switch input[type=checkbox] + .check {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 2.75em;
  height: 1.575em;
  padding: 0.2em;
  background: #b5b5b5;
  border-radius: 4px;
  transition: background 150ms ease-out, box-shadow 150ms ease-out;
}

.switch input[type=checkbox] + .check.is-white-passive, .switch input[type=checkbox] + .check:hover {
  background: white;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check.is-black-passive, .switch input[type=checkbox] + .check:hover {
  background: #0a0a0a;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check.is-light-passive, .switch input[type=checkbox] + .check:hover {
  background: whitesmoke;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check.is-dark-passive, .switch input[type=checkbox] + .check:hover {
  background: #363636;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check.is-primary-passive, .switch input[type=checkbox] + .check:hover {
  background: #00aac3;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check.is-link-passive, .switch input[type=checkbox] + .check:hover {
  background: #00aac3;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check.is-info-passive, .switch input[type=checkbox] + .check:hover {
  background: #167df0;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check.is-success-passive, .switch input[type=checkbox] + .check:hover {
  background: #23d160;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check.is-warning-passive, .switch input[type=checkbox] + .check:hover {
  background: #ffdd57;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check.is-danger-passive, .switch input[type=checkbox] + .check:hover {
  background: #ff3860;
}

.switch input[type=checkbox] + .check.input[type=checkbox] + .switch input[type=checkbox] + .check.check, .switch .taginput input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check, .taginput .switch input[type=checkbox] + .check.taginput-container.is-focusable[type=checkbox] + .switch input[type=checkbox] + .check.check {
  background: "pink";
}

.switch input[type=checkbox] + .check:before {
  content: "";
  display: block;
  border-radius: 4px;
  width: 1.175em;
  height: 1.175em;
  background: whitesmoke;
  box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.05), 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
  transition: transform 150ms ease-out;
  will-change: transform;
  transform-origin: left;
}

.switch input[type=checkbox] + .check.is-elastic:before {
  transform: scaleX(1.5);
  border-radius: 4px;
}

.switch input[type=checkbox]:checked + .check {
  background: #00aac3;
}

.switch input[type=checkbox]:checked + .check.is-white {
  background: white;
}

.switch input[type=checkbox]:checked + .check.is-black {
  background: #0a0a0a;
}

.switch input[type=checkbox]:checked + .check.is-light {
  background: whitesmoke;
}

.switch input[type=checkbox]:checked + .check.is-dark {
  background: #363636;
}

.switch input[type=checkbox]:checked + .check.is-primary {
  background: #00aac3;
}

.switch input[type=checkbox]:checked + .check.is-link {
  background: #00aac3;
}

.switch input[type=checkbox]:checked + .check.is-info {
  background: #167df0;
}

.switch input[type=checkbox]:checked + .check.is-success {
  background: #23d160;
}

.switch input[type=checkbox]:checked + .check.is-warning {
  background: #ffdd57;
}

.switch input[type=checkbox]:checked + .check.is-danger {
  background: #ff3860;
}

.switch input[type=checkbox]:checked + .check:before {
  transform: translate3d(100%, 0, 0);
}

.switch input[type=checkbox]:checked + .check.is-elastic:before {
  transform: translate3d(50%, 0, 0) scaleX(1.5);
}

.switch input[type=checkbox]:focus, .switch input[type=checkbox]:active {
  outline: none;
}

.switch input[type=checkbox]:focus + .check, .switch input[type=checkbox]:active + .check {
  box-shadow: 0 0 0.5em rgba(122, 122, 122, 0.6);
}

.switch input[type=checkbox]:focus + .check.is-white-passive, .switch input[type=checkbox]:active + .check.is-white-passive {
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
}

.switch input[type=checkbox]:focus + .check.is-black-passive, .switch input[type=checkbox]:active + .check.is-black-passive {
  box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.8);
}

.switch input[type=checkbox]:focus + .check.is-light-passive, .switch input[type=checkbox]:active + .check.is-light-passive {
  box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.8);
}

.switch input[type=checkbox]:focus + .check.is-dark-passive, .switch input[type=checkbox]:active + .check.is-dark-passive {
  box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.8);
}

.switch input[type=checkbox]:focus + .check.is-primary-passive, .switch input[type=checkbox]:active + .check.is-primary-passive {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.switch input[type=checkbox]:focus + .check.is-link-passive, .switch input[type=checkbox]:active + .check.is-link-passive {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.switch input[type=checkbox]:focus + .check.is-info-passive, .switch input[type=checkbox]:active + .check.is-info-passive {
  box-shadow: 0 0 0.5em rgba(22, 125, 240, 0.8);
}

.switch input[type=checkbox]:focus + .check.is-success-passive, .switch input[type=checkbox]:active + .check.is-success-passive {
  box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.8);
}

.switch input[type=checkbox]:focus + .check.is-warning-passive, .switch input[type=checkbox]:active + .check.is-warning-passive {
  box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.8);
}

.switch input[type=checkbox]:focus + .check.is-danger-passive, .switch input[type=checkbox]:active + .check.is-danger-passive {
  box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check, .switch input[type=checkbox]:active:checked + .check {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-white, .switch input[type=checkbox]:active:checked + .check.is-white {
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-black, .switch input[type=checkbox]:active:checked + .check.is-black {
  box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-light, .switch input[type=checkbox]:active:checked + .check.is-light {
  box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-dark, .switch input[type=checkbox]:active:checked + .check.is-dark {
  box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-primary, .switch input[type=checkbox]:active:checked + .check.is-primary {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-link, .switch input[type=checkbox]:active:checked + .check.is-link {
  box-shadow: 0 0 0.5em rgba(121, 87, 213, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-info, .switch input[type=checkbox]:active:checked + .check.is-info {
  box-shadow: 0 0 0.5em rgba(22, 125, 240, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-success, .switch input[type=checkbox]:active:checked + .check.is-success {
  box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-warning, .switch input[type=checkbox]:active:checked + .check.is-warning {
  box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.8);
}

.switch input[type=checkbox]:focus:checked + .check.is-danger, .switch input[type=checkbox]:active:checked + .check.is-danger {
  box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.8);
}

.switch .control-label {
  padding-left: 0.5em;
}

.switch:hover input[type=checkbox] + .check {
  background: rgba(181, 181, 181, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-white-passive {
  background: rgba(255, 255, 255, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-black-passive {
  background: rgba(10, 10, 10, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-light-passive {
  background: rgba(245, 245, 245, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-dark-passive {
  background: rgba(54, 54, 54, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-primary-passive {
  background: rgba(121, 87, 213, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-link-passive {
  background: rgba(121, 87, 213, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-info-passive {
  background: rgba(22, 125, 240, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-success-passive {
  background: rgba(35, 209, 96, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-warning-passive {
  background: rgba(255, 221, 87, 0.9);
}

.switch:hover input[type=checkbox] + .check.is-danger-passive {
  background: rgba(255, 56, 96, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check {
  background: rgba(121, 87, 213, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-white {
  background: rgba(255, 255, 255, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-black {
  background: rgba(10, 10, 10, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-light {
  background: rgba(245, 245, 245, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-dark {
  background: rgba(54, 54, 54, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-primary {
  background: rgba(121, 87, 213, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-link {
  background: rgba(121, 87, 213, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-info {
  background: rgba(22, 125, 240, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-success {
  background: rgba(35, 209, 96, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-warning {
  background: rgba(255, 221, 87, 0.9);
}

.switch:hover input[type=checkbox]:checked + .check.is-danger {
  background: rgba(255, 56, 96, 0.9);
}

.switch.is-rounded input[type=checkbox] + .check {
  border-radius: 290486px;
}

.switch.is-rounded input[type=checkbox] + .check:before {
  border-radius: 290486px;
}

.switch.is-rounded input[type=checkbox].is-elastic:before {
  transform: scaleX(1.5);
  border-radius: 290486px;
}

.switch.is-outlined input[type=checkbox] + .check {
  background: transparent;
  border: 0.1rem solid #b5b5b5;
}

.switch.is-outlined input[type=checkbox] + .check.is-white-passive {
  border: 0.1rem solid rgba(255, 255, 255, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-white-passive:before {
  background: white;
}

.switch.is-outlined input[type=checkbox] + .check.is-white-passive:hover {
  border-color: rgba(255, 255, 255, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-black-passive {
  border: 0.1rem solid rgba(10, 10, 10, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-black-passive:before {
  background: #0a0a0a;
}

.switch.is-outlined input[type=checkbox] + .check.is-black-passive:hover {
  border-color: rgba(10, 10, 10, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-light-passive {
  border: 0.1rem solid rgba(245, 245, 245, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-light-passive:before {
  background: whitesmoke;
}

.switch.is-outlined input[type=checkbox] + .check.is-light-passive:hover {
  border-color: rgba(245, 245, 245, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-dark-passive {
  border: 0.1rem solid rgba(54, 54, 54, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-dark-passive:before {
  background: #363636;
}

.switch.is-outlined input[type=checkbox] + .check.is-dark-passive:hover {
  border-color: rgba(54, 54, 54, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-primary-passive {
  border: 0.1rem solid rgba(121, 87, 213, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-primary-passive:before {
  background: #00aac3;
}

.switch.is-outlined input[type=checkbox] + .check.is-primary-passive:hover {
  border-color: rgba(121, 87, 213, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-link-passive {
  border: 0.1rem solid rgba(121, 87, 213, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-link-passive:before {
  background: #00aac3;
}

.switch.is-outlined input[type=checkbox] + .check.is-link-passive:hover {
  border-color: rgba(121, 87, 213, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-info-passive {
  border: 0.1rem solid rgba(22, 125, 240, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-info-passive:before {
  background: #167df0;
}

.switch.is-outlined input[type=checkbox] + .check.is-info-passive:hover {
  border-color: rgba(22, 125, 240, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-success-passive {
  border: 0.1rem solid rgba(35, 209, 96, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-success-passive:before {
  background: #23d160;
}

.switch.is-outlined input[type=checkbox] + .check.is-success-passive:hover {
  border-color: rgba(35, 209, 96, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-warning-passive {
  border: 0.1rem solid rgba(255, 221, 87, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-warning-passive:before {
  background: #ffdd57;
}

.switch.is-outlined input[type=checkbox] + .check.is-warning-passive:hover {
  border-color: rgba(255, 221, 87, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-danger-passive {
  border: 0.1rem solid rgba(255, 56, 96, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check.is-danger-passive:before {
  background: #ff3860;
}

.switch.is-outlined input[type=checkbox] + .check.is-danger-passive:hover {
  border-color: rgba(255, 56, 96, 0.9);
}

.switch.is-outlined input[type=checkbox] + .check:before {
  background: #b5b5b5;
}

.switch.is-outlined input[type=checkbox]:checked + .check {
  border-color: #00aac3;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-white {
  background: transparent;
  border-color: white;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-white:before {
  background: white;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-black {
  background: transparent;
  border-color: #0a0a0a;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-black:before {
  background: #0a0a0a;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-light {
  background: transparent;
  border-color: whitesmoke;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-light:before {
  background: whitesmoke;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-dark {
  background: transparent;
  border-color: #363636;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-dark:before {
  background: #363636;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-primary {
  background: transparent;
  border-color: #00aac3;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-primary:before {
  background: #00aac3;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-link {
  background: transparent;
  border-color: #00aac3;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-link:before {
  background: #00aac3;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-info {
  background: transparent;
  border-color: #167df0;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-info:before {
  background: #167df0;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-success {
  background: transparent;
  border-color: #23d160;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-success:before {
  background: #23d160;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-warning {
  background: transparent;
  border-color: #ffdd57;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-warning:before {
  background: #ffdd57;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-danger {
  background: transparent;
  border-color: #ff3860;
}

.switch.is-outlined input[type=checkbox]:checked + .check.is-danger:before {
  background: #ff3860;
}

.switch.is-outlined input[type=checkbox]:checked + .check:before {
  background: #00aac3;
}

.switch.is-outlined:hover input[type=checkbox] + .check {
  background: transparent;
  border-color: rgba(181, 181, 181, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check {
  background: transparent;
  border-color: rgba(121, 87, 213, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-white {
  border-color: rgba(255, 255, 255, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-black {
  border-color: rgba(10, 10, 10, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-light {
  border-color: rgba(245, 245, 245, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-dark {
  border-color: rgba(54, 54, 54, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-primary {
  border-color: rgba(121, 87, 213, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-link {
  border-color: rgba(121, 87, 213, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-info {
  border-color: rgba(22, 125, 240, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-success {
  border-color: rgba(35, 209, 96, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-warning {
  border-color: rgba(255, 221, 87, 0.9);
}

.switch.is-outlined:hover input[type=checkbox]:checked + .check.is-danger {
  border-color: rgba(255, 56, 96, 0.9);
}

.switch.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.switch.is-medium {
  font-size: 1.25rem;
}

.switch.is-large {
  font-size: 1.5rem;
}

.switch[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  color: #7a7a7a;
}

.table-wrapper .table {
  margin-bottom: 0;
}

.table-wrapper:not(:last-child) {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 1023px) {
  .table-wrapper {
    overflow-x: auto;
  }
}
.b-table {
  transition: opacity 86ms ease-out;
}

@media screen and (min-width: 769px), print {
  .b-table .table-mobile-sort {
    display: none;
  }
}
.b-table .icon {
  transition: transform 150ms ease-out, opacity 86ms ease-out;
}

.b-table .icon.is-desc {
  transform: rotate(180deg);
}

.b-table .icon.is-expanded {
  transform: rotate(90deg);
}

.b-table .table {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  border-collapse: separate;
}

.b-table .table th {
  font-weight: 600;
}

.b-table .table thead tr:first-child {
  font-size: 1rem;
  align-content: flex-end;
}

.b-table .table th .th-wrap {
  display: flex;
  align-items: center;
}

.b-table .table th .th-wrap .icon {
  margin-left: 0.5rem;
  margin-right: 0;
  font-size: 1rem;
}

.b-table .table th .th-wrap.is-numeric {
  flex-direction: row-reverse;
  text-align: right;
}

.b-table .table th .th-wrap.is-numeric .icon {
  margin-left: 0;
  margin-right: 0.5rem;
}

.b-table .table th .th-wrap.is-centered {
  justify-content: center;
  text-align: center;
}

.b-table .table th.is-current-sort {
  border-color: #7a7a7a;
  font-weight: 700;
}

.b-table .table th.is-sortable:hover {
  border-color: #7a7a7a;
}

.b-table .table th.is-sortable,
.b-table .table th.is-sortable .th-wrap {
  cursor: pointer;
}

.b-table .table th .multi-sort-cancel-icon {
  margin-left: 10px;
}

.b-table .table th.is-sticky {
  position: sticky;
  left: 0;
  z-index: 3 !important;
  background: white;
}

.b-table .table tr.is-selected .checkbox input:checked + .check {
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1'%3E%3Cpath style='fill:%237957d5' d='M 0.04038059,0.6267767 0.14644661,0.52071068 0.42928932,0.80355339 0.3232233,0.90961941 z M 0.21715729,0.80355339 0.85355339,0.16715729 0.95961941,0.2732233 0.3232233,0.90961941 z'%3E%3C/path%3E%3C/svg%3E") no-repeat center center;
}

.b-table .table tr.is-selected .checkbox input + .check {
  border-color: white;
}

.b-table .table tr.is-empty:hover {
  background-color: transparent;
}

.b-table .table .chevron-cell {
  vertical-align: middle;
}

.b-table .table .checkbox-cell {
  width: 40px;
}

.b-table .table .checkbox-cell .checkbox {
  vertical-align: middle;
}

.b-table .table .checkbox-cell .checkbox .check {
  transition: none;
}

.b-table .table tr.detail {
  box-shadow: inset 0 1px 3px #dbdbdb;
  background: #fafafa;
}

.b-table .table tr.detail .detail-container {
  padding: 1rem;
}

.b-table .table:focus {
  border-color: #00aac3;
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.b-table .table.is-bordered th.is-current-sort,
.b-table .table.is-bordered th.is-sortable:hover {
  border-color: #dbdbdb;
  background: whitesmoke;
}

.b-table .table td.is-sticky {
  position: sticky;
  left: 0;
  z-index: 1;
  background: white;
}

.b-table .level:not(.top) {
  padding-bottom: 1.5rem;
}

.b-table .table-wrapper.has-sticky-header {
  height: 300px;
  overflow-y: auto;
}

@media screen and (max-width: 768px) {
  .b-table .table-wrapper.has-sticky-header.has-mobile-cards {
    height: initial !important;
    overflow-y: initial !important;
  }
}
.b-table .table-wrapper.has-sticky-header tr:first-child th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: white;
}

@media screen and (max-width: 768px) {
  .b-table .table-wrapper.has-mobile-cards thead {
    display: none;
  }

  .b-table .table-wrapper.has-mobile-cards tfoot th {
    border: 0;
    display: inherit;
  }

  .b-table .table-wrapper.has-mobile-cards tr {
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    max-width: 100%;
    position: relative;
    display: block;
  }

  .b-table .table-wrapper.has-mobile-cards tr td {
    border: 0;
    display: inherit;
  }

  .b-table .table-wrapper.has-mobile-cards tr td:last-child {
    border-bottom: 0;
  }

  .b-table .table-wrapper.has-mobile-cards tr:not(:last-child) {
    margin-bottom: 1rem;
  }

  .b-table .table-wrapper.has-mobile-cards tr:not([class*=is-]) {
    background: inherit;
  }

  .b-table .table-wrapper.has-mobile-cards tr:not([class*=is-]):hover {
    background-color: inherit;
  }

  .b-table .table-wrapper.has-mobile-cards tr.detail {
    margin-top: -1rem;
  }

  .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td {
    display: flex;
    width: auto;
    justify-content: space-between;
    text-align: right;
    border-bottom: 1px solid whitesmoke;
  }

  .b-table .table-wrapper.has-mobile-cards tr:not(.detail):not(.is-empty):not(.table-footer) td:before {
    content: attr(data-label);
    font-weight: 600;
    padding-right: 0.5em;
    text-align: left;
  }
}
.b-table .table-wrapper.is-card-list thead {
  display: none;
}

.b-table .table-wrapper.is-card-list tfoot th {
  border: 0;
  display: inherit;
}

.b-table .table-wrapper.is-card-list tr {
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
  max-width: 100%;
  position: relative;
  display: block;
}

.b-table .table-wrapper.is-card-list tr td {
  border: 0;
  display: inherit;
}

.b-table .table-wrapper.is-card-list tr td:last-child {
  border-bottom: 0;
}

.b-table .table-wrapper.is-card-list tr:not(:last-child) {
  margin-bottom: 1rem;
}

.b-table .table-wrapper.is-card-list tr:not([class*=is-]) {
  background: inherit;
}

.b-table .table-wrapper.is-card-list tr:not([class*=is-]):hover {
  background-color: inherit;
}

.b-table .table-wrapper.is-card-list tr.detail {
  margin-top: -1rem;
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td {
  display: flex;
  width: auto;
  justify-content: space-between;
  text-align: right;
  border-bottom: 1px solid whitesmoke;
}

.b-table .table-wrapper.is-card-list tr:not(.detail):not(.is-empty):not(.table-footer) td:before {
  content: attr(data-label);
  font-weight: 600;
  padding-right: 0.5em;
  text-align: left;
}

.b-table.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.5;
}

.b-table.is-loading:after {
  -webkit-animation: spinAround 500ms infinite linear;
          animation: spinAround 500ms infinite linear;
  border: 2px solid #dbdbdb;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
  position: absolute;
  top: 4em;
  left: calc(50% - 2.5em);
  width: 5em;
  height: 5em;
  border-width: 0.25em;
}

.b-tabs .tabs {
  margin-bottom: 0;
  flex-shrink: 0;
}

.b-tabs .tabs li.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.b-tabs .tab-content {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #cccccc;
}
.b-tabs .tab-content .border--bottom {
  border-bottom: 1px solid #cccccc;
}

.b-tabs .tab-content .tab-item {
  flex-shrink: 0;
  flex-basis: auto;
}

.b-tabs .tab-content.is-transitioning {
  overflow: hidden;
}

.b-tabs:not(:last-child) {
  margin-bottom: 1.5rem;
}

.b-tabs.is-fullwidth {
  width: 100%;
}

.b-tabs.is-vertical {
  display: flex;
  flex-direction: row;
}

.b-tabs.is-vertical > .tabs ul {
  flex-direction: column;
  border-bottom-color: transparent;
}

.b-tabs.is-vertical > .tabs ul li {
  width: 100%;
}

.b-tabs.is-vertical > .tabs ul li a {
  justify-content: left;
}

.b-tabs.is-vertical > .tabs.is-boxed li a {
  border-bottom-color: transparent !important;
  border-right-color: #dbdbdb !important;
  border-radius: 4px 0 0 4px;
}

.b-tabs.is-vertical > .tabs.is-boxed li.is-active a {
  border-bottom-color: #dbdbdb !important;
  border-right-color: transparent !important;
}

.b-tabs.is-vertical > .tabs.is-toggle li + li {
  margin-left: 0;
}

.b-tabs.is-vertical > .tabs.is-toggle li:first-child a {
  border-radius: 4px 4px 0 0;
}

.b-tabs.is-vertical > .tabs.is-toggle li:last-child a {
  border-radius: 0 0 4px 4px;
}

.b-tabs.is-vertical > .tabs.is-fullwidth li a {
  height: 100%;
}

.b-tabs.is-vertical > .tab-content {
  flex-grow: 1;
}

.b-tabs.is-vertical.is-right {
  flex-direction: row-reverse;
}

.b-tabs.is-vertical.is-right > .tabs ul a {
  flex-direction: row-reverse;
}

.b-tabs.is-vertical.is-right > .tabs ul a .icon:first-child {
  margin-right: 0;
  margin-left: 0.5em;
}

.b-tabs.is-vertical.is-right > .tabs.is-boxed li a {
  border-bottom-color: transparent !important;
  border-right-color: transparent !important;
  border-left-color: #dbdbdb !important;
  border-radius: 0 4px 4px 0;
}

.b-tabs.is-vertical.is-right > .tabs.is-boxed li.is-active a {
  border-bottom-color: #dbdbdb !important;
  border-right-color: #dbdbdb !important;
  border-left-color: transparent !important;
}

.b-tabs.is-multiline > .tabs ul {
  flex-wrap: wrap;
  flex-shrink: 1;
}

.tag .has-ellipsis {
  max-width: 10em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tag .delete.is-white, .tag.is-delete.is-white {
  background: white;
}

.tag .delete.is-white:hover, .tag.is-delete.is-white:hover {
  background-color: #e6e6e6;
}

.tag .delete.is-black, .tag.is-delete.is-black {
  background: #0a0a0a;
}

.tag .delete.is-black:hover, .tag.is-delete.is-black:hover {
  background-color: black;
}

.tag .delete.is-light, .tag.is-delete.is-light {
  background: whitesmoke;
}

.tag .delete.is-light:hover, .tag.is-delete.is-light:hover {
  background-color: #dbdbdb;
}

.tag .delete.is-dark, .tag.is-delete.is-dark {
  background: #363636;
}

.tag .delete.is-dark:hover, .tag.is-delete.is-dark:hover {
  background-color: #1c1c1c;
}

.tag .delete.is-primary, .tag.is-delete.is-primary {
  background: #00aac3;
}

.tag .delete.is-primary:hover, .tag.is-delete.is-primary:hover {
  background-color: #5a32c7;
}

.tag .delete.is-link, .tag.is-delete.is-link {
  background: #00aac3;
}

.tag .delete.is-link:hover, .tag.is-delete.is-link:hover {
  background-color: #5a32c7;
}

.tag .delete.is-info, .tag.is-delete.is-info {
  background: #167df0;
}

.tag .delete.is-info:hover, .tag.is-delete.is-info:hover {
  background-color: #0d64c6;
}

.tag .delete.is-success, .tag.is-delete.is-success {
  background: #23d160;
}

.tag .delete.is-success:hover, .tag.is-delete.is-success:hover {
  background-color: #1ca64c;
}

.tag .delete.is-warning, .tag.is-delete.is-warning {
  background: #ffdd57;
}

.tag .delete.is-warning:hover, .tag.is-delete.is-warning:hover {
  background-color: #ffd324;
}

.tag .delete.is-danger, .tag.is-delete.is-danger {
  background: #ff3860;
}

.tag .delete.is-danger:hover, .tag.is-delete.is-danger:hover {
  background-color: #ff0537;
}

.taginput .taginput-container {
  display: flex;
}

.taginput .taginput-container.is-focusable {
  padding-bottom: 0;
  padding-top: calc(0.275em - 1px);
  padding-left: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: auto;
  cursor: text;
}

.taginput .taginput-container:not(.is-focusable) {
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: auto;
}

.taginput .taginput-container:not(.is-focusable).is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.taginput .taginput-container:not(.is-focusable).is-medium {
  font-size: 1.25rem;
}

.taginput .taginput-container:not(.is-focusable).is-large {
  font-size: 1.5rem;
}

.taginput .taginput-container > .tag,
.taginput .taginput-container > .tags {
  margin-left: 0.275rem;
  margin-bottom: calc(0.275em - 1px);
  font-size: 0.9em;
  height: 1.7em;
}

.taginput .taginput-container > .tag .tag,
.taginput .taginput-container > .tags .tag {
  margin-bottom: 0;
  font-size: 0.9em;
  height: 1.7em;
}

.taginput .taginput-container > .tag .tag.is-delete,
.taginput .taginput-container > .tags .tag.is-delete {
  width: 1.7em;
}

.taginput .taginput-container .autocomplete {
  position: static;
  flex: 1;
}

.taginput .taginput-container .autocomplete input {
  height: 1.7em;
  margin-bottom: calc(0.275em - 1px);
  padding-top: 0;
  padding-bottom: 0;
  border: none;
  box-shadow: none;
  min-width: 8em;
}

.taginput .taginput-container .autocomplete input:focus {
  box-shadow: none !important;
}

.taginput .taginput-container .autocomplete .icon {
  height: 1.7em;
}

.taginput .taginput-container .autocomplete > .control.is-loading::after {
  top: 0.375em;
}

.timepicker .dropdown-menu {
  min-width: 0;
}

.timepicker .dropdown,
.timepicker .dropdown-trigger {
  width: 100%;
}

.timepicker .dropdown .input[readonly], .timepicker .dropdown .taginput .taginput-container.is-focusable[readonly], .taginput .timepicker .dropdown .taginput-container.is-focusable[readonly],
.timepicker .dropdown-trigger .input[readonly],
.timepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly],
.taginput .timepicker .dropdown-trigger .taginput-container.is-focusable[readonly] {
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
}

.timepicker .dropdown .input[readonly]:focus, .timepicker .dropdown .taginput .taginput-container.is-focusable[readonly]:focus, .taginput .timepicker .dropdown .taginput-container.is-focusable[readonly]:focus, .timepicker .dropdown .input[readonly].is-focused, .timepicker .dropdown .taginput .taginput-container.is-focusable[readonly].is-focused, .taginput .timepicker .dropdown .taginput-container.is-focusable[readonly].is-focused, .timepicker .dropdown .input[readonly]:active, .timepicker .dropdown .taginput .taginput-container.is-focusable[readonly]:active, .taginput .timepicker .dropdown .taginput-container.is-focusable[readonly]:active, .timepicker .dropdown .input[readonly].is-active, .timepicker .dropdown .taginput .taginput-container.is-focusable[readonly].is-active, .taginput .timepicker .dropdown .taginput-container.is-focusable[readonly].is-active,
.timepicker .dropdown-trigger .input[readonly]:focus,
.timepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly]:focus,
.taginput .timepicker .dropdown-trigger .taginput-container.is-focusable[readonly]:focus,
.timepicker .dropdown-trigger .input[readonly].is-focused,
.timepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly].is-focused,
.taginput .timepicker .dropdown-trigger .taginput-container.is-focusable[readonly].is-focused,
.timepicker .dropdown-trigger .input[readonly]:active,
.timepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly]:active,
.taginput .timepicker .dropdown-trigger .taginput-container.is-focusable[readonly]:active,
.timepicker .dropdown-trigger .input[readonly].is-active,
.timepicker .dropdown-trigger .taginput .taginput-container.is-focusable[readonly].is-active,
.taginput .timepicker .dropdown-trigger .taginput-container.is-focusable[readonly].is-active {
  box-shadow: 0 0 0 0.125em rgba(121, 87, 213, 0.25);
}

.timepicker .dropdown.is-disabled {
  opacity: 1;
}

.timepicker .dropdown-item, .timepicker .dropdown .dropdown-menu .has-link a, .dropdown .dropdown-menu .has-link .timepicker a {
  font-size: inherit;
  padding: 0;
}

.timepicker .timepicker-footer {
  padding: 0 0.5rem 0 0.5rem;
}

.timepicker .dropdown-content .control {
  font-size: 1.25em;
  margin-right: 0 !important;
}

.timepicker .dropdown-content .control .select select {
  font-weight: 600;
  padding-right: calc(0.625em - 1px);
  border: 0;
}

.timepicker .dropdown-content .control .select select option:disabled {
  color: rgba(122, 122, 122, 0.7);
}

.timepicker .dropdown-content .control .select:after {
  display: none;
}

.timepicker .dropdown-content .control.is-colon {
  font-size: 1.7em;
}

.timepicker.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

.timepicker.is-medium {
  font-size: 1.25rem;
}

.timepicker.is-large {
  font-size: 1.5rem;
}

.b-tooltip {
  position: relative;
  display: inline-flex;
}

.b-tooltip.is-top:before, .b-tooltip.is-top:after {
  top: auto;
  right: auto;
  bottom: calc(100% + 5px + 2px);
  left: 50%;
  transform: translateX(-50%);
}

.b-tooltip.is-top.is-white:before {
  border-top: 5px solid white;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-black:before {
  border-top: 5px solid #0a0a0a;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-light:before {
  border-top: 5px solid whitesmoke;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-dark:before {
  border-top: 5px solid #363636;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-primary:before {
  border-top: 5px solid #00aac3;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-link:before {
  border-top: 5px solid #00aac3;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-info:before {
  border-top: 5px solid #167df0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-success:before {
  border-top: 5px solid #23d160;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-warning:before {
  border-top: 5px solid #ffdd57;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-danger:before {
  border-top: 5px solid #ff3860;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  bottom: calc(100% + 2px);
}

.b-tooltip.is-top.is-multiline.is-small:after {
  width: 180px;
}

.b-tooltip.is-top.is-multiline.is-medium:after {
  width: 240px;
}

.b-tooltip.is-top.is-multiline.is-large:after {
  width: 300px;
}

.b-tooltip.is-right:before, .b-tooltip.is-right:after {
  top: 50%;
  right: auto;
  bottom: auto;
  left: calc(100% + 5px + 2px);
  transform: translateY(-50%);
}

.b-tooltip.is-right.is-white:before {
  border-top: 5px solid transparent;
  border-right: 5px solid white;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-black:before {
  border-top: 5px solid transparent;
  border-right: 5px solid #0a0a0a;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-light:before {
  border-top: 5px solid transparent;
  border-right: 5px solid whitesmoke;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-dark:before {
  border-top: 5px solid transparent;
  border-right: 5px solid #363636;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-primary:before {
  border-top: 5px solid transparent;
  border-right: 5px solid #00aac3;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-link:before {
  border-top: 5px solid transparent;
  border-right: 5px solid #00aac3;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-info:before {
  border-top: 5px solid transparent;
  border-right: 5px solid #167df0;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-success:before {
  border-top: 5px solid transparent;
  border-right: 5px solid #23d160;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-warning:before {
  border-top: 5px solid transparent;
  border-right: 5px solid #ffdd57;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-danger:before {
  border-top: 5px solid transparent;
  border-right: 5px solid #ff3860;
  border-bottom: 5px solid transparent;
  left: calc(100% + 2px);
}

.b-tooltip.is-right.is-multiline.is-small:after {
  width: 180px;
}

.b-tooltip.is-right.is-multiline.is-medium:after {
  width: 240px;
}

.b-tooltip.is-right.is-multiline.is-large:after {
  width: 300px;
}

.b-tooltip.is-bottom:before, .b-tooltip.is-bottom:after {
  top: calc(100% + 5px + 2px);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

.b-tooltip.is-bottom.is-white:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid white;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-black:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid #0a0a0a;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-light:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid whitesmoke;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-dark:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid #363636;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-primary:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid #00aac3;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-link:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid #00aac3;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-info:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid #167df0;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-success:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid #23d160;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-warning:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid #ffdd57;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-danger:before {
  border-right: 5px solid transparent;
  border-bottom: 5px solid #ff3860;
  border-left: 5px solid transparent;
  top: calc(100% + 2px);
}

.b-tooltip.is-bottom.is-multiline.is-small:after {
  width: 180px;
}

.b-tooltip.is-bottom.is-multiline.is-medium:after {
  width: 240px;
}

.b-tooltip.is-bottom.is-multiline.is-large:after {
  width: 300px;
}

.b-tooltip.is-left:before, .b-tooltip.is-left:after {
  top: 50%;
  right: calc(100% + 5px + 2px);
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

.b-tooltip.is-left.is-white:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid white;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-black:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #0a0a0a;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-light:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid whitesmoke;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-dark:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #363636;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-primary:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #00aac3;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-link:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #00aac3;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-info:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #167df0;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-success:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #23d160;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-warning:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #ffdd57;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-danger:before {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #ff3860;
  right: calc(100% + 2px);
}

.b-tooltip.is-left.is-multiline.is-small:after {
  width: 180px;
}

.b-tooltip.is-left.is-multiline.is-medium:after {
  width: 240px;
}

.b-tooltip.is-left.is-multiline.is-large:after {
  width: 300px;
}

.b-tooltip:before, .b-tooltip:after {
  position: absolute;
  content: "";
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.b-tooltip:before {
  z-index: 39;
}

.b-tooltip:after {
  content: attr(data-label);
  width: auto;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 400;
  box-shadow: 0px 1px 2px 1px rgba(0, 1, 0, 0.2);
  z-index: 38;
  white-space: nowrap;
}

.b-tooltip:not([data-label=""]):hover:before, .b-tooltip:not([data-label=""]):hover:after {
  transition-delay: inherit;
  opacity: 1;
  visibility: visible;
}

.b-tooltip.is-white:after {
  background: white;
  color: #0a0a0a;
}

.b-tooltip.is-black:after {
  background: #0a0a0a;
  color: white;
}

.b-tooltip.is-light:after {
  background: whitesmoke;
  color: #363636;
}

.b-tooltip.is-dark:after {
  background: #363636;
  color: whitesmoke;
}

.b-tooltip.is-primary:after {
  background: #00aac3;
  color: white;
}

.b-tooltip.is-link:after {
  background: #00aac3;
  color: white;
}

.b-tooltip.is-info:after {
  background: #167df0;
  color: #fff;
}

.b-tooltip.is-success:after {
  background: #23d160;
  color: #fff;
}

.b-tooltip.is-warning:after {
  background: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

.b-tooltip.is-danger:after {
  background: #ff3860;
  color: #fff;
}

.b-tooltip:not([data-label=""]).is-always:before, .b-tooltip:not([data-label=""]).is-always:after {
  opacity: 1;
  visibility: visible;
}

.b-tooltip.is-multiline:after {
  display: flex-block;
  text-align: center;
  white-space: normal;
}

.b-tooltip.is-dashed {
  border-bottom: 1px dashed #b5b5b5;
  cursor: default;
}

.b-tooltip.is-square:after {
  border-radius: 0;
}

.b-tooltip.is-animated:before, .b-tooltip.is-animated:after {
  transition: opacity 86ms ease-out, visibility 86ms ease-out;
}

.upload {
  position: relative;
  display: inline-flex;
}

.upload input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  outline: none;
  cursor: pointer;
  z-index: -1;
}

.upload .upload-draggable {
  cursor: pointer;
  padding: 0.25em;
  border: 1px dashed #b5b5b5;
  border-radius: 6px;
}

.upload .upload-draggable.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.upload .upload-draggable.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.5;
}

.upload .upload-draggable.is-loading:after {
  -webkit-animation: spinAround 500ms infinite linear;
          animation: spinAround 500ms infinite linear;
  border: 2px solid #dbdbdb;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
  top: 0;
  left: calc(50% - 1.5em);
  width: 3em;
  height: 3em;
  border-width: 0.25em;
}

.upload .upload-draggable:hover.is-white, .upload .upload-draggable.is-hovered.is-white {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

.upload .upload-draggable:hover.is-black, .upload .upload-draggable.is-hovered.is-black {
  border-color: #0a0a0a;
  background: rgba(10, 10, 10, 0.05);
}

.upload .upload-draggable:hover.is-light, .upload .upload-draggable.is-hovered.is-light {
  border-color: whitesmoke;
  background: rgba(245, 245, 245, 0.05);
}

.upload .upload-draggable:hover.is-dark, .upload .upload-draggable.is-hovered.is-dark {
  border-color: #363636;
  background: rgba(54, 54, 54, 0.05);
}

.upload .upload-draggable:hover.is-primary, .upload .upload-draggable.is-hovered.is-primary {
  border-color: #00aac3;
  background: rgba(121, 87, 213, 0.05);
}

.upload .upload-draggable:hover.is-link, .upload .upload-draggable.is-hovered.is-link {
  border-color: #00aac3;
  background: rgba(121, 87, 213, 0.05);
}

.upload .upload-draggable:hover.is-info, .upload .upload-draggable.is-hovered.is-info {
  border-color: #167df0;
  background: rgba(22, 125, 240, 0.05);
}

.upload .upload-draggable:hover.is-success, .upload .upload-draggable.is-hovered.is-success {
  border-color: #23d160;
  background: rgba(35, 209, 96, 0.05);
}

.upload .upload-draggable:hover.is-warning, .upload .upload-draggable.is-hovered.is-warning {
  border-color: #ffdd57;
  background: rgba(255, 221, 87, 0.05);
}

.upload .upload-draggable:hover.is-danger, .upload .upload-draggable.is-hovered.is-danger {
  border-color: #ff3860;
  background: rgba(255, 56, 96, 0.05);
}

.upload .upload-draggable.is-expanded {
  width: 100%;
}

.upload.is-expanded {
  width: 100%;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .upload input[type=file] {
    z-index: auto;
  }

  .upload .upload-draggable + input[type=file] {
    z-index: -1;
  }
}
/*!
 * Bootstrap v4.6.0 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-moz-placeholder {
  color: #bec6cc;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #bec6cc;
  opacity: 1;
}
.form-control::placeholder {
  color: #bec6cc;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
          animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
          animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
.spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

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

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

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

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #fff !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
/*
@mixin icon-power-white{
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='16.5pt' height='25.5pt' viewBox='0 0 16.5 25.5'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -25.5)'%3E%3Cg id='MouseOff'%3E%3Cpath d='M 5.208,0.573 L 5.208,2.586 C 5.208,2.916 5.407,3.159 5.651,3.159 L 10.853,3.159 C 11.095,3.159 11.294,2.916 11.294,2.586 L 11.294,0.573 C 11.294,0.243 11.095,0 10.853,0 L 5.651,0 C 5.407,0 5.208,0.243 5.208,0.573 Z M 5.208,5.814 L 5.208,6.353 L 5.208,6.353 C 4.886,12.68 0.257,13.202 0.25,17.167 L 0.249,18.459 C 0.249,18.894 0.603,19.249 1.039,19.249 L 3.268,19.249 L 3.268,24.679 C 3.268,25.132 3.636,25.5 4.089,25.5 L 4.092,25.5 C 4.546,25.5 4.913,25.132 4.913,24.679 L 4.913,19.249 L 11.629,19.249 L 11.629,24.679 C 11.629,25.132 11.998,25.5 12.451,25.5 L 12.453,25.5 C 12.906,25.5 13.276,25.132 13.276,24.679 L 13.276,19.249 L 15.461,19.249 C 15.897,19.249 16.251,18.894 16.251,18.459 L 16.248,17.167 C 16.24,13.205 11.621,12.68 11.294,6.368 L 11.294,5.814 C 11.294,5.484 11.095,5.241 10.853,5.241 L 5.651,5.241 C 5.407,5.241 5.208,5.484 5.208,5.814 Z' stroke-linejoin='miter' stroke-linecap='round' stroke='none' stroke-width='0.207' fill='%23ffffff' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@mixin icon-power-green{
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='16.5pt' height='25.5pt' viewBox='0 0 16.5 25.5'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -25.5)'%3E%3Cg id='MouseOff'%3E%3Cpath d='M 5.208,0.573 L 5.208,2.586 C 5.208,2.916 5.407,3.159 5.651,3.159 L 10.853,3.159 C 11.095,3.159 11.294,2.916 11.294,2.586 L 11.294,0.573 C 11.294,0.243 11.095,0 10.853,0 L 5.651,0 C 5.407,0 5.208,0.243 5.208,0.573 Z M 5.208,5.814 L 5.208,6.353 L 5.208,6.353 C 4.886,12.68 0.257,13.202 0.25,17.167 L 0.249,18.459 C 0.249,18.894 0.603,19.249 1.039,19.249 L 3.268,19.249 L 3.268,24.679 C 3.268,25.132 3.636,25.5 4.089,25.5 L 4.092,25.5 C 4.546,25.5 4.913,25.132 4.913,24.679 L 4.913,19.249 L 11.629,19.249 L 11.629,24.679 C 11.629,25.132 11.998,25.5 12.451,25.5 L 12.453,25.5 C 12.906,25.5 13.276,25.132 13.276,24.679 L 13.276,19.249 L 15.461,19.249 C 15.897,19.249 16.251,18.894 16.251,18.459 L 16.248,17.167 C 16.24,13.205 11.621,12.68 11.294,6.368 L 11.294,5.814 C 11.294,5.484 11.095,5.241 10.853,5.241 L 5.651,5.241 C 5.407,5.241 5.208,5.484 5.208,5.814 Z' stroke-linejoin='miter' stroke-linecap='round' stroke='none' stroke-width='0.207' fill='%23549a00' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}*/
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layouts + grid > page layouts > components

1em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 26.25em) {
  html {
    font-size: 40%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "DINPro Regular", sans-serif;
  font-weight: 300;
  background-color: #f6f6f6;
  outline: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: auto;
  min-height: 100vh;
}

.background-color--gradient {
  background: linear-gradient(-45deg, #18c7cc, #9be9ef);
  background-size: 400% 400%;
  -webkit-animation: gradient 3s ease infinite;
          animation: gradient 3s ease infinite;
}
.background-color--primary-light {
  background-color: rgba(24, 199, 204, 0.15);
}
.background-color--sigi {
  background-color: #459182;
}

.text-parent {
  position: relative;
}

.text-box-vertical-horizontal-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-color--white {
  color: #ffffff;
}

.full-height {
  height: 100vh;
}

.flex-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

.position-ref {
  position: relative;
}

.code {
  border-right: 2px solid;
  font-size: 26px;
  padding: 0 15px 0 15px;
  text-align: center;
}

.message-box {
  font-size: 18px;
  text-align: center;
}

.background-color-header {
  background-color: #ffffff;
}

.u-margin-auto {
  margin: 0 auto;
}

.opacity-50 {
  opacity: 0.5;
}

.line-color--primary {
  height: 3px;
  margin: 2.5rem 0;
  border: none;
  background: linear-gradient(-45deg, #18c7cc, #9be9ef);
  background-size: 400% 400%;
  -webkit-animation: gradient 3s ease infinite;
          animation: gradient 3s ease infinite;
}
.line-color--error {
  height: 3px;
  margin: 2.5rem 0;
  border: none;
  background: linear-gradient(-45deg, #ff0000, #ff6666);
  background-size: 400% 400%;
  -webkit-animation: gradient 3s ease infinite;
          animation: gradient 3s ease infinite;
}
.line-color--dark {
  background-color: #2a2a2a;
}
.line-color--grey {
  background-color: #cccccc;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.text-section-headline {
  color: #18c7cc;
  text-transform: uppercase;
  font-family: "DINPro Bold", sans-serif;
}
.text-section-headline--error {
  height: 4rem;
  color: red;
}

.text-section-sub-headline {
  font-family: "Azonix Regular", sans-serif;
}

.headline-product {
  font-family: "DINPro Bold", sans-serif;
  text-transform: uppercase;
  font-size: 2.1rem;
}
.headline-product--highlighted {
  color: red;
}
.headline-product--not-highlighted {
  color: #cccccc;
}

.text-product {
  font-family: "Azonix Regular", sans-serif;
}

.text-product-selection {
  line-height: 6.18rem;
}

.border {
  border-radius: 0.5rem;
}

.Analytics {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.3 -1401.68 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375' fill='%237f7f7f'%3E%3Cpath d='M -856.742,1398.81 L -856.742,1392.11' fill='none'/%3E%3Cpath d='M -859.864,1401.49 L -859.864,1392.11' fill='none'/%3E%3Cpath d='M -862.987,1398.35 L -862.987,1392.11' fill='none'/%3E%3Cpath d='M -866.108,1396.27 L -866.108,1392.11' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1396.8) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.Infocenter {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.297 -2211.54 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke-width='0.375'%3E%3Cpath d='M -864.737,2209.97 C -866.567,2208.15 -866.567,2205.18 -864.737,2203.35 C -862.902,2201.51 -859.933,2201.51 -858.107,2203.35 C -856.277,2205.18 -856.277,2208.15 -858.107,2209.97 C -859.933,2211.8 -862.902,2211.8 -864.737,2209.97 Z' stroke='%23ffffff' marker-start='none' marker-end='none'/%3E%3Cpath d='M -861.421,2208.22 L -861.421,2203.56' fill='none' stroke='%23ffffff'/%3E%3Cellipse rx='0.373' ry='0.373' transform='translate(-861.422 2209.46) rotate(-90)' stroke='none' fill='%23ffffff'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.422 2206.66) rotate(-90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.Kontakte {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.753pt' height='9.751pt' viewBox='-866.299 -1235.67 9.753 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'%3E%3Cpath d='M -866.112,1226.11 C -866.112,1227.31 -865.653,1228.51 -864.738,1229.42 C -862.908,1231.26 -859.937,1231.26 -858.105,1229.42 C -857.191,1228.51 -856.734,1227.31 -856.734,1226.11' fill='none'/%3E%3Cellipse rx='1.582' ry='1.582' transform='translate(-861.424 1233.9) rotate(135)'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.423 1230.79) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.Kundenverwaltung {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.768pt' viewBox='-866.3 -1353.36 9.75 9.768'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375' fill='%23ffffff'%3E%3Cg id='Group_1'%3E%3Cpath d='M -861.43,1347.76 L -856.738,1345.06' fill='none'/%3E%3Cpath d='M -861.43,1347.76 L -866.112,1345.06' fill='none'/%3E%3Cpath d='M -861.43,1353.18 L -861.43,1347.76' fill='none'/%3E%3C/g%3E%3Cg id='Group_2'%3E%3Cpath d='M -859.111,1349.12 L -856.803,1347.79' fill='none'/%3E%3Cpath d='M -859.111,1351.78 L -859.111,1349.12' fill='none'/%3E%3C/g%3E%3Cg id='Group_3'%3E%3Cpath d='M -863.74,1349.12 L -866.048,1347.79' fill='none'/%3E%3Cpath d='M -863.74,1351.78 L -863.74,1349.12' fill='none'/%3E%3C/g%3E%3Cg id='Group_4'%3E%3Cpath d='M -861.401,1345.11 L -859.101,1343.79' fill='none'/%3E%3Cpath d='M -861.401,1345.11 L -863.696,1343.78' fill='none'/%3E%3C/g%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1348.48) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.Scouter {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='10.091pt' viewBox='-866.3 -1283.18 9.75 10.091'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'%3E%3Cpath d='M -865.862,1274.39 L -861.869,1279.59 L -861.868,1282.62 C -861.868,1282.83 -861.702,1282.99 -861.499,1282.99 L -859.118,1282.99 C -858.915,1282.99 -858.749,1282.83 -858.749,1282.62 L -858.749,1280.75 C -858.749,1280.55 -858.915,1280.38 -859.118,1280.38 L -860.982,1280.38 L -860.982,1279.59 L -856.987,1274.39 C -856.518,1273.77 -856.764,1273.28 -857.535,1273.28 L -865.314,1273.28 C -866.085,1273.28 -866.331,1273.77 -865.862,1274.39 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -864.826,1275.66 L -862.513,1275.67 C -861.937,1275.74 -861.563,1276.04 -861.287,1276.44 L -860.119,1278.47' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1278.13) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.Bindung {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1280.13 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1288 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%23043a4f' stroke-width='0.75'%3E%3Cpath d='M 1286.99,-85.021 L 1282.23,-82.276 C 1281.67,-81.952 1281.21,-81.162 1281.22,-80.513 L 1281.21,-75.025 C 1281.21,-74.376 1281.67,-73.586 1282.23,-73.262 L 1286.99,-70.517 C 1287.55,-70.193 1288.46,-70.193 1289.02,-70.517 L 1293.78,-73.262 C 1294.34,-73.586 1294.79,-74.376 1294.79,-75.025 L 1294.79,-80.513 C 1294.79,-81.162 1294.34,-81.952 1293.78,-82.276 L 1289.02,-85.021 C 1288.46,-85.346 1287.55,-85.346 1286.99,-85.021 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke-linecap='round' fill='%23ffffff'%3E%3Cg id='Group_2'%3E%3Cpath d='M 1291.66,-75.659 L 1284.35,-79.879' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_3' stroke-linejoin='round' stroke-linecap='round' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 1291.66,-79.878 L 1284.35,-75.658' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.Entwurf {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1436.4 69.893 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1444.28 -77.768) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke-linejoin='miter' stroke='%23cccccc' stroke-width='0.75'%3E%3Cpath d='M 1443.25,-85.012 L 1438.51,-82.262 C 1437.94,-81.936 1437.49,-81.146 1437.49,-80.497 L 1437.5,-75.014 C 1437.5,-74.365 1437.96,-73.576 1438.52,-73.253 L 1443.28,-70.52 C 1443.84,-70.197 1444.75,-70.198 1445.31,-70.524 L 1450.06,-73.274 C 1450.62,-73.6 1451.07,-74.39 1451.07,-75.039 L 1451.06,-80.522 C 1451.06,-81.171 1450.6,-81.96 1450.04,-82.283 L 1445.28,-85.016 C 1444.72,-85.339 1443.81,-85.337 1443.25,-85.012 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.InBelieferung {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1255.93 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1263.81 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%2300aac3' stroke-width='0.75'%3E%3Cpath d='M 1262.79,-85.021 L 1258.04,-82.276 C 1257.48,-81.952 1257.02,-81.162 1257.02,-80.513 L 1257.02,-75.025 C 1257.02,-74.376 1257.48,-73.586 1258.04,-73.262 L 1262.79,-70.517 C 1263.35,-70.193 1264.27,-70.193 1264.83,-70.517 L 1269.58,-73.262 C 1270.14,-73.586 1270.6,-74.376 1270.6,-75.025 L 1270.6,-80.513 C 1270.6,-81.162 1270.14,-81.952 1269.58,-82.276 L 1264.83,-85.021 C 1264.27,-85.346 1263.35,-85.346 1262.79,-85.021 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke-linecap='round' fill='%23ffffff'%3E%3Cg id='Group_2'%3E%3Cpath d='M 1267.46,-75.659 L 1260.16,-79.879' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_3' stroke-linejoin='round' stroke-linecap='round' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 1267.46,-79.878 L 1260.16,-75.658' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' stroke-linejoin='round' stroke-linecap='round' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cpath d='M 1263.81,-81.988 L 1263.81,-73.55' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.Intervention {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1330.23 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1338.11 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%23ffbf00' stroke-width='0.75'%3E%3Cpath d='M 1337.09,-85.021 L 1332.34,-82.276 C 1331.77,-81.952 1331.32,-81.162 1331.32,-80.513 L 1331.32,-75.025 C 1331.32,-74.376 1331.77,-73.586 1332.34,-73.262 L 1337.09,-70.517 C 1337.65,-70.193 1338.56,-70.193 1339.13,-70.517 L 1343.88,-73.262 C 1344.44,-73.586 1344.9,-74.376 1344.9,-75.025 L 1344.9,-80.513 C 1344.9,-81.162 1344.44,-81.952 1343.88,-82.276 L 1339.13,-85.021 C 1338.56,-85.346 1337.65,-85.346 1337.09,-85.021 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke-linecap='round' fill='%23ffffff'%3E%3Cg id='Group_2'%3E%3Cpath d='M 1338.11,-81.988 L 1338.11,-73.55' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-box-dashboard-table {
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.icon-box-dashboard-brand {
  width: 100%;
  height: 2.5rem;
  margin-top: 0.25rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-box-brand-table {
  width: 100%;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

.icon-box-table {
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-box-table-edit {
  width: 4rem;
  height: 3rem;
  margin-left: -2rem;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

.icon-box-large {
  width: auto;
  height: 6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-box-product-large {
  width: 9rem;
  height: 9rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-box-product-minimized {
  width: 6.18rem;
  height: 6.18rem;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  float: right;
}

.icon-box-cockpit {
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.icon-box-medium {
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 80%;
  margin: 0 auto;
}

.icon-box-small {
  width: 0.5rem;
  height: 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.icon-box-very-large {
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 80%;
}

.icon-box-logo {
  margin-top: 0.75rem;
  width: 100%;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 80%;
}

.icon-box-small, .icon-box-small-center {
  width: 3rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 80%;
}

.icon-box-small-center {
  margin: 0.75rem auto;
}

.min-height {
  min-height: 100vh;
}

.icon-menu-box {
  width: auto;
  height: 4rem;
}
.icon-menu-box a {
  font-size: 1.3rem;
  color: #ffffff;
  text-decoration: none;
}

.icon-menu {
  width: 3rem;
  height: 3rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-power-dashboard--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.761pt' height='15.751pt' viewBox='1143.86 69.897 15.761 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1151.75 -77.772) rotate(90)' stroke='none' stroke-width='0.75' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='%2300aac3' stroke-width='0.75'%3E%3Cpath d='M 1150.33,-70.378 C 1151.18,-70.931 1152,-71.523 1152.79,-72.153 M 1153.92,-73.099 C 1154.81,-73.88 1155.65,-74.71 1156.43,-75.59 M 1157.39,-76.707 C 1158.03,-77.497 1158.64,-78.318 1159.2,-79.171 L 1155.98,-82.419 L 1151.13,-83.492 C 1149.13,-81.985 1147.4,-80.275 1146.01,-78.385 L 1147.21,-73.742 L 1150.33,-70.378' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1147.21,-73.742 C 1149.81,-77.077 1152.77,-79.924 1155.98,-82.419' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1154.65,-70.297 L 1151.04,-73.904 C 1151.01,-73.938 1151.01,-73.996 1151.04,-74.031 L 1151.95,-74.941 C 1151.98,-74.976 1152.04,-74.976 1152.08,-74.941 L 1155.68,-71.334 C 1155.72,-71.3 1155.72,-71.242 1155.68,-71.207 L 1154.78,-70.297 C 1154.74,-70.262 1154.68,-70.262 1154.65,-70.297 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1158.2,-73.825 L 1154.59,-77.432 C 1154.56,-77.468 1154.56,-77.526 1154.59,-77.561 L 1155.5,-78.469 C 1155.54,-78.504 1155.59,-78.504 1155.63,-78.469 L 1159.24,-74.862 C 1159.27,-74.826 1159.27,-74.768 1159.24,-74.733 L 1158.33,-73.825 C 1158.29,-73.79 1158.24,-73.79 1158.2,-73.825 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1150.01,-82.603 L 1148.58,-84.041 C 1148.54,-84.076 1148.48,-84.076 1148.45,-84.041 L 1145.51,-81.105 C 1145.47,-81.068 1145.47,-81.011 1145.51,-80.975 L 1146.93,-79.555' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1146.48,-82.064 L 1144.24,-84.303' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1147.44,-83.03 L 1145.2,-85.269' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.icon-power-dashboard--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.761pt' height='15.751pt' viewBox='1143.86 69.897 15.761 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1151.75 -77.772) rotate(90)' stroke='none' stroke-width='0.75' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='%23bec6cc' stroke-width='0.75'%3E%3Cpath d='M 1150.33,-70.378 C 1151.18,-70.931 1152,-71.523 1152.79,-72.153 M 1153.92,-73.099 C 1154.81,-73.88 1155.65,-74.71 1156.43,-75.59 M 1157.39,-76.707 C 1158.03,-77.497 1158.64,-78.318 1159.2,-79.171 L 1155.98,-82.419 L 1151.13,-83.492 C 1149.13,-81.985 1147.4,-80.275 1146.01,-78.385 L 1147.21,-73.742 L 1150.33,-70.378' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1147.21,-73.742 C 1149.81,-77.077 1152.77,-79.924 1155.98,-82.419' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1154.65,-70.297 L 1151.04,-73.904 C 1151.01,-73.938 1151.01,-73.996 1151.04,-74.031 L 1151.95,-74.941 C 1151.98,-74.976 1152.04,-74.976 1152.08,-74.941 L 1155.68,-71.334 C 1155.72,-71.3 1155.72,-71.242 1155.68,-71.207 L 1154.78,-70.297 C 1154.74,-70.262 1154.68,-70.262 1154.65,-70.297 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1158.2,-73.825 L 1154.59,-77.432 C 1154.56,-77.468 1154.56,-77.526 1154.59,-77.561 L 1155.5,-78.469 C 1155.54,-78.504 1155.59,-78.504 1155.63,-78.469 L 1159.24,-74.862 C 1159.27,-74.826 1159.27,-74.768 1159.24,-74.733 L 1158.33,-73.825 C 1158.29,-73.79 1158.24,-73.79 1158.2,-73.825 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1150.01,-82.603 L 1148.58,-84.041 C 1148.54,-84.076 1148.48,-84.076 1148.45,-84.041 L 1145.51,-81.105 C 1145.47,-81.068 1145.47,-81.011 1145.51,-80.975 L 1146.93,-79.555' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1146.48,-82.064 L 1144.24,-84.303' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1147.44,-83.03 L 1145.2,-85.269' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-gas-dashboard--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1185.45 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1193.33 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cpath d='M 1191.94,-85.174 C 1186.61,-83.658 1188,-79.063 1189.5,-76.516 C 1190.64,-74.585 1191.74,-72.343 1192.05,-70.27 C 1192.82,-71.027 1194.65,-72.981 1195.51,-73.99 C 1200.74,-80.063 1198.28,-84.603 1194.64,-85.269 C 1197.58,-82.469 1197.53,-79.056 1193.72,-75.211 C 1193.75,-77.343 1193.54,-79.48 1192.76,-80.967 C 1192.61,-80.133 1192.15,-78.906 1191.5,-78.234 C 1191.47,-78.864 1191.1,-79.609 1190.85,-80.156 C 1190.09,-81.821 1189.81,-84.034 1191.94,-85.174 Z' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-gas-dashboard--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1185.45 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1193.33 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cpath d='M 1191.94,-85.174 C 1186.61,-83.658 1188,-79.063 1189.5,-76.516 C 1190.64,-74.585 1191.74,-72.343 1192.05,-70.27 C 1192.82,-71.027 1194.65,-72.981 1195.51,-73.99 C 1200.74,-80.063 1198.28,-84.603 1194.64,-85.269 C 1197.58,-82.469 1197.53,-79.056 1193.72,-75.211 C 1193.75,-77.343 1193.54,-79.48 1192.76,-80.967 C 1192.61,-80.133 1192.15,-78.906 1191.5,-78.234 C 1191.47,-78.864 1191.1,-79.609 1190.85,-80.156 C 1190.09,-81.821 1189.81,-84.034 1191.94,-85.174 Z' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-internet-dashboard--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1206.46 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1214.34 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%2300aac3'%3E%3Cpath d='M 1217.94,-75.708 C 1217.56,-73.813 1216.63,-72.007 1215.16,-70.538 C 1215.08,-70.458 1215,-70.382 1214.92,-70.307 C 1212.82,-70.143 1210.67,-70.863 1209.07,-72.468 C 1208.13,-73.401 1207.5,-74.521 1207.16,-75.708' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1221.51,-75.708 C 1221.18,-74.521 1220.55,-73.401 1219.61,-72.468 C 1218.31,-71.16 1216.63,-70.44 1214.92,-70.307' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1213.75,-70.307 C 1213.67,-70.382 1213.59,-70.458 1213.52,-70.538 C 1212.05,-72.006 1211.12,-73.813 1210.74,-75.708' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1214.33,-70.284 L 1214.33,-75.371' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1220.09,-73.008 C 1216.54,-75.067 1212.12,-75.067 1208.57,-73.008' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1217.94,-79.826 C 1217.56,-81.721 1216.63,-83.529 1215.16,-84.998 C 1215.08,-85.077 1215,-85.153 1214.92,-85.227 C 1212.82,-85.392 1210.67,-84.671 1209.07,-83.068 C 1208.13,-82.135 1207.5,-81.013 1207.16,-79.826' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1221.51,-79.826 C 1221.18,-81.013 1220.55,-82.135 1219.61,-83.068 C 1218.31,-84.374 1216.63,-85.095 1214.92,-85.227' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1213.75,-85.227 C 1213.67,-85.153 1213.6,-85.077 1213.52,-84.998 C 1212.05,-83.529 1211.12,-81.723 1210.74,-79.826' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1220.08,-82.538 C 1216.54,-80.479 1212.12,-80.479 1208.57,-82.538' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 1207.55,-79.064 L 1206.73,-76.468 L 1207.38,-76.468 L 1207.96,-78.544 L 1207.97,-78.544 L 1208.5,-76.468 L 1209.35,-76.468 L 1209.9,-78.544 L 1209.91,-78.544 L 1210.49,-76.468 L 1211.1,-76.468 L 1210.29,-79.064 L 1209.48,-79.064 L 1208.92,-76.988 L 1208.91,-76.988 L 1208.36,-79.064 L 1207.55,-79.064 Z' fill='%2300aac3' stroke-linecap='round' stroke='none' stroke-width='0.75' fill-rule='nonzero' stroke-linejoin='round' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4'%3E%3Cg id='Group_5'%3E%3Cpath d='M 1212.98,-79.064 L 1212.16,-76.468 L 1212.81,-76.468 L 1213.39,-78.544 L 1213.4,-78.544 L 1213.93,-76.468 L 1214.78,-76.468 L 1215.33,-78.544 L 1215.34,-78.544 L 1215.92,-76.468 L 1216.53,-76.468 L 1215.71,-79.064 L 1214.91,-79.064 L 1214.35,-76.988 L 1214.34,-76.988 L 1213.79,-79.064 L 1212.98,-79.064 Z' fill='%2300aac3' stroke-linecap='round' stroke='none' stroke-width='0.75' fill-rule='nonzero' stroke-linejoin='round' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 1218.41,-79.064 L 1217.58,-76.468 L 1218.24,-76.468 L 1218.82,-78.544 L 1218.83,-78.544 L 1219.36,-76.468 L 1220.2,-76.468 L 1220.75,-78.544 L 1220.76,-78.544 L 1221.35,-76.468 L 1221.95,-76.468 L 1221.14,-79.064 L 1220.34,-79.064 L 1219.78,-76.988 L 1219.77,-76.988 L 1219.21,-79.064 L 1218.41,-79.064 Z' fill='%2300aac3' stroke-linecap='round' stroke='none' stroke-width='0.75' fill-rule='nonzero' stroke-linejoin='round' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 1214.33,-80.168 L 1214.33,-85.255' fill='none' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-internet-dashboard--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1206.46 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1214.34 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%23bec6cc'%3E%3Cpath d='M 1217.94,-75.708 C 1217.56,-73.813 1216.63,-72.007 1215.16,-70.538 C 1215.08,-70.458 1215,-70.382 1214.92,-70.307 C 1212.82,-70.143 1210.67,-70.863 1209.07,-72.468 C 1208.13,-73.401 1207.5,-74.521 1207.16,-75.708' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1221.51,-75.708 C 1221.18,-74.521 1220.55,-73.401 1219.61,-72.468 C 1218.31,-71.16 1216.63,-70.44 1214.92,-70.307' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1213.75,-70.307 C 1213.67,-70.382 1213.59,-70.458 1213.52,-70.538 C 1212.05,-72.006 1211.12,-73.813 1210.74,-75.708' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1214.33,-70.284 L 1214.33,-75.371' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1220.09,-73.008 C 1216.54,-75.067 1212.12,-75.067 1208.57,-73.008' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1217.94,-79.826 C 1217.56,-81.721 1216.63,-83.529 1215.16,-84.998 C 1215.08,-85.077 1215,-85.153 1214.92,-85.227 C 1212.82,-85.392 1210.67,-84.671 1209.07,-83.068 C 1208.13,-82.135 1207.5,-81.013 1207.16,-79.826' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1221.51,-79.826 C 1221.18,-81.013 1220.55,-82.135 1219.61,-83.068 C 1218.31,-84.374 1216.63,-85.095 1214.92,-85.227' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1213.75,-85.227 C 1213.67,-85.153 1213.6,-85.077 1213.52,-84.998 C 1212.05,-83.529 1211.12,-81.723 1210.74,-79.826' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 1220.08,-82.538 C 1216.54,-80.479 1212.12,-80.479 1208.57,-82.538' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 1207.55,-79.064 L 1206.73,-76.468 L 1207.38,-76.468 L 1207.96,-78.544 L 1207.97,-78.544 L 1208.5,-76.468 L 1209.35,-76.468 L 1209.9,-78.544 L 1209.91,-78.544 L 1210.49,-76.468 L 1211.1,-76.468 L 1210.29,-79.064 L 1209.48,-79.064 L 1208.92,-76.988 L 1208.91,-76.988 L 1208.36,-79.064 L 1207.55,-79.064 Z' fill='%23bec6cc' stroke-linecap='round' stroke='none' stroke-width='0.75' fill-rule='nonzero' stroke-linejoin='round' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4'%3E%3Cg id='Group_5'%3E%3Cpath d='M 1212.98,-79.064 L 1212.16,-76.468 L 1212.81,-76.468 L 1213.39,-78.544 L 1213.4,-78.544 L 1213.93,-76.468 L 1214.78,-76.468 L 1215.33,-78.544 L 1215.34,-78.544 L 1215.92,-76.468 L 1216.53,-76.468 L 1215.71,-79.064 L 1214.91,-79.064 L 1214.35,-76.988 L 1214.34,-76.988 L 1213.79,-79.064 L 1212.98,-79.064 Z' fill='%23bec6cc' stroke-linecap='round' stroke='none' stroke-width='0.75' fill-rule='nonzero' stroke-linejoin='round' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 1218.41,-79.064 L 1217.58,-76.468 L 1218.24,-76.468 L 1218.82,-78.544 L 1218.83,-78.544 L 1219.36,-76.468 L 1220.2,-76.468 L 1220.75,-78.544 L 1220.76,-78.544 L 1221.35,-76.468 L 1221.95,-76.468 L 1221.14,-79.064 L 1220.34,-79.064 L 1219.78,-76.988 L 1219.77,-76.988 L 1219.21,-79.064 L 1218.41,-79.064 Z' fill='%23bec6cc' stroke-linecap='round' stroke='none' stroke-width='0.75' fill-rule='nonzero' stroke-linejoin='round' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 1214.33,-80.168 L 1214.33,-85.255' fill='none' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-district-heat-dashboard--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.753pt' height='15.753pt' viewBox='1164.11 69.894 15.753 15.753'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1171.99 -77.771) rotate(90)' stroke='none' stroke-width='0.75' stroke-linejoin='miter'/%3E%3Cpath d='M 1169.14,-73.165 C 1170.09,-74.67 1170.86,-75.809 1169.14,-77.807 C 1167.42,-79.8 1168.14,-81.086 1169.14,-82.373' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.75'/%3E%3Cpath d='M 1172,-73.167 C 1172.95,-74.672 1173.71,-75.811 1172,-77.807 C 1170.28,-79.8 1171,-81.089 1172,-82.375' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.75'/%3E%3Cpath d='M 1174.85,-73.167 C 1175.8,-74.672 1176.57,-75.811 1174.85,-77.807 C 1173.13,-79.8 1173.85,-81.089 1174.85,-82.375' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.75'/%3E%3Cellipse rx='7.5' ry='7.499' transform='translate(1171.99 -77.77) rotate(135.005)' stroke-linejoin='miter' stroke-width='0.75' stroke='%2300aac3'/%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-district-heat-dashboard--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.753pt' height='15.753pt' viewBox='1164.11 69.894 15.753 15.753'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1171.99 -77.771) rotate(90)' stroke='none' stroke-width='0.75' stroke-linejoin='miter'/%3E%3Cpath d='M 1169.14,-73.165 C 1170.09,-74.67 1170.86,-75.809 1169.14,-77.807 C 1167.42,-79.8 1168.14,-81.086 1169.14,-82.373' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.75'/%3E%3Cpath d='M 1172,-73.167 C 1172.95,-74.672 1173.71,-75.811 1172,-77.807 C 1170.28,-79.8 1171,-81.089 1172,-82.375' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.75'/%3E%3Cpath d='M 1174.85,-73.167 C 1175.8,-74.672 1176.57,-75.811 1174.85,-77.807 C 1173.13,-79.8 1173.85,-81.089 1174.85,-82.375' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.75'/%3E%3Cellipse rx='7.5' ry='7.499' transform='translate(1171.99 -77.77) rotate(135.005)' stroke-linejoin='miter' stroke-width='0.75' stroke='%23bec6cc'/%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-private-dashboard--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1114.08 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1125.07,-73.355 L 1125.07,-72.468 C 1125.07,-72.356 1125.16,-72.262 1125.28,-72.262 L 1126.42,-72.262 C 1126.53,-72.262 1126.62,-72.356 1126.62,-72.468 L 1126.62,-74.289 L 1128.27,-75.277 C 1128.28,-75.281 1128.29,-75.286 1128.3,-75.293 L 1128.66,-75.512 C 1128.73,-75.554 1128.85,-75.621 1128.93,-75.667 L 1129.29,-75.884 C 1129.54,-76.036 1129.51,-76.159 1129.22,-76.159 L 1128.18,-76.159 C 1128.18,-76.16 1128.18,-76.16 1128.18,-76.161 L 1128.07,-76.161 L 1128.07,-83.398 C 1128.07,-83.692 1127.83,-83.933 1127.54,-83.933 L 1124.49,-83.933 C 1124.21,-83.933 1123.99,-83.721 1123.96,-83.449 L 1123.96,-80.588 C 1123.96,-80.291 1123.72,-80.049 1123.42,-80.049 L 1120.39,-80.049 C 1120.09,-80.049 1119.85,-80.291 1119.85,-80.588 L 1119.85,-81.997 C 1119.85,-82.013 1119.85,-82.031 1119.85,-82.048 L 1119.85,-83.447 C 1119.82,-83.721 1119.6,-83.933 1119.32,-83.933 L 1116.27,-83.933 C 1115.98,-83.933 1115.74,-83.692 1115.74,-83.398 L 1115.74,-76.161 L 1115.73,-76.161 C 1115.73,-76.16 1115.73,-76.16 1115.73,-76.159 L 1114.7,-76.159 C 1114.41,-76.159 1114.37,-76.036 1114.63,-75.886 L 1114.99,-75.667 L 1121.55,-71.729 C 1121.82,-71.57 1122.1,-71.564 1122.36,-71.729 L 1125.02,-73.323 C 1125.03,-73.335 1125.05,-73.343 1125.07,-73.355' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1121.96 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-private-dashboard--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1114.08 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1125.07,-73.355 L 1125.07,-72.468 C 1125.07,-72.356 1125.16,-72.262 1125.28,-72.262 L 1126.42,-72.262 C 1126.53,-72.262 1126.62,-72.356 1126.62,-72.468 L 1126.62,-74.289 L 1128.27,-75.277 C 1128.28,-75.281 1128.29,-75.286 1128.3,-75.293 L 1128.66,-75.512 C 1128.73,-75.554 1128.85,-75.621 1128.93,-75.667 L 1129.29,-75.884 C 1129.54,-76.036 1129.51,-76.159 1129.22,-76.159 L 1128.18,-76.159 C 1128.18,-76.16 1128.18,-76.16 1128.18,-76.161 L 1128.07,-76.161 L 1128.07,-83.398 C 1128.07,-83.692 1127.83,-83.933 1127.54,-83.933 L 1124.49,-83.933 C 1124.21,-83.933 1123.99,-83.721 1123.96,-83.449 L 1123.96,-80.588 C 1123.96,-80.291 1123.72,-80.049 1123.42,-80.049 L 1120.39,-80.049 C 1120.09,-80.049 1119.85,-80.291 1119.85,-80.588 L 1119.85,-81.997 C 1119.85,-82.013 1119.85,-82.031 1119.85,-82.048 L 1119.85,-83.447 C 1119.82,-83.721 1119.6,-83.933 1119.32,-83.933 L 1116.27,-83.933 C 1115.98,-83.933 1115.74,-83.692 1115.74,-83.398 L 1115.74,-76.161 L 1115.73,-76.161 C 1115.73,-76.16 1115.73,-76.16 1115.73,-76.159 L 1114.7,-76.159 C 1114.41,-76.159 1114.37,-76.036 1114.63,-75.886 L 1114.99,-75.667 L 1121.55,-71.729 C 1121.82,-71.57 1122.1,-71.564 1122.36,-71.729 L 1125.02,-73.323 C 1125.03,-73.335 1125.05,-73.343 1125.07,-73.355' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1121.96 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-private-dashboard--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1114.08 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23ffffff' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1125.07,-73.355 L 1125.07,-72.468 C 1125.07,-72.356 1125.16,-72.262 1125.28,-72.262 L 1126.42,-72.262 C 1126.53,-72.262 1126.62,-72.356 1126.62,-72.468 L 1126.62,-74.289 L 1128.27,-75.277 C 1128.28,-75.281 1128.29,-75.286 1128.3,-75.293 L 1128.66,-75.512 C 1128.73,-75.554 1128.85,-75.621 1128.93,-75.667 L 1129.29,-75.884 C 1129.54,-76.036 1129.51,-76.159 1129.22,-76.159 L 1128.18,-76.159 C 1128.18,-76.16 1128.18,-76.16 1128.18,-76.161 L 1128.07,-76.161 L 1128.07,-83.398 C 1128.07,-83.692 1127.83,-83.933 1127.54,-83.933 L 1124.49,-83.933 C 1124.21,-83.933 1123.99,-83.721 1123.96,-83.449 L 1123.96,-80.588 C 1123.96,-80.291 1123.72,-80.049 1123.42,-80.049 L 1120.39,-80.049 C 1120.09,-80.049 1119.85,-80.291 1119.85,-80.588 L 1119.85,-81.997 C 1119.85,-82.013 1119.85,-82.031 1119.85,-82.048 L 1119.85,-83.447 C 1119.82,-83.721 1119.6,-83.933 1119.32,-83.933 L 1116.27,-83.933 C 1115.98,-83.933 1115.74,-83.692 1115.74,-83.398 L 1115.74,-76.161 L 1115.73,-76.161 C 1115.73,-76.16 1115.73,-76.16 1115.73,-76.159 L 1114.7,-76.159 C 1114.41,-76.159 1114.37,-76.036 1114.63,-75.886 L 1114.99,-75.667 L 1121.55,-71.729 C 1121.82,-71.57 1122.1,-71.564 1122.36,-71.729 L 1125.02,-73.323 C 1125.03,-73.335 1125.05,-73.343 1125.07,-73.355' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1121.96 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-private-dashboard--grey {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1114.08 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23cccccc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1125.07,-73.355 L 1125.07,-72.468 C 1125.07,-72.356 1125.16,-72.262 1125.28,-72.262 L 1126.42,-72.262 C 1126.53,-72.262 1126.62,-72.356 1126.62,-72.468 L 1126.62,-74.289 L 1128.27,-75.277 C 1128.28,-75.281 1128.29,-75.286 1128.3,-75.293 L 1128.66,-75.512 C 1128.73,-75.554 1128.85,-75.621 1128.93,-75.667 L 1129.29,-75.884 C 1129.54,-76.036 1129.51,-76.159 1129.22,-76.159 L 1128.18,-76.159 C 1128.18,-76.16 1128.18,-76.16 1128.18,-76.161 L 1128.07,-76.161 L 1128.07,-83.398 C 1128.07,-83.692 1127.83,-83.933 1127.54,-83.933 L 1124.49,-83.933 C 1124.21,-83.933 1123.99,-83.721 1123.96,-83.449 L 1123.96,-80.588 C 1123.96,-80.291 1123.72,-80.049 1123.42,-80.049 L 1120.39,-80.049 C 1120.09,-80.049 1119.85,-80.291 1119.85,-80.588 L 1119.85,-81.997 C 1119.85,-82.013 1119.85,-82.031 1119.85,-82.048 L 1119.85,-83.447 C 1119.82,-83.721 1119.6,-83.933 1119.32,-83.933 L 1116.27,-83.933 C 1115.98,-83.933 1115.74,-83.692 1115.74,-83.398 L 1115.74,-76.161 L 1115.73,-76.161 C 1115.73,-76.16 1115.73,-76.16 1115.73,-76.159 L 1114.7,-76.159 C 1114.41,-76.159 1114.37,-76.036 1114.63,-75.886 L 1114.99,-75.667 L 1121.55,-71.729 C 1121.82,-71.57 1122.1,-71.564 1122.36,-71.729 L 1125.02,-73.323 C 1125.03,-73.335 1125.05,-73.343 1125.07,-73.355' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1121.96 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-business-dashboard--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1136.58 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1144.46 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1146.52,-73.482 L 1150.09,-73.482 C 1150.38,-73.482 1150.62,-73.724 1150.62,-74.018 L 1150.62,-83.395 C 1150.62,-83.692 1150.38,-83.932 1150.09,-83.932 L 1147.04,-83.932 C 1146.75,-83.932 1146.52,-83.692 1146.52,-83.395 L 1146.52,-82.046 C 1146.52,-81.749 1146.27,-81.505 1145.97,-81.505 L 1142.94,-81.505 C 1142.65,-81.505 1142.4,-81.749 1142.4,-82.046 L 1142.4,-83.42 L 1142.4,-83.445 C 1142.38,-83.718 1142.15,-83.932 1141.87,-83.932 L 1138.83,-83.932 C 1138.53,-83.932 1138.3,-83.692 1138.3,-83.395 L 1138.3,-74.018 C 1138.3,-73.724 1138.53,-73.482 1138.83,-73.482 L 1142.41,-73.482 L 1142.41,-72.144 C 1142.41,-71.849 1142.64,-71.607 1142.93,-71.607 L 1145.98,-71.607 C 1146.28,-71.607 1146.52,-71.849 1146.52,-72.144 L 1146.52,-73.482' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-business-dashboard--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1136.58 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1144.46 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1146.52,-73.482 L 1150.09,-73.482 C 1150.38,-73.482 1150.62,-73.724 1150.62,-74.018 L 1150.62,-83.395 C 1150.62,-83.692 1150.38,-83.932 1150.09,-83.932 L 1147.04,-83.932 C 1146.75,-83.932 1146.52,-83.692 1146.52,-83.395 L 1146.52,-82.046 C 1146.52,-81.749 1146.27,-81.505 1145.97,-81.505 L 1142.94,-81.505 C 1142.65,-81.505 1142.4,-81.749 1142.4,-82.046 L 1142.4,-83.42 L 1142.4,-83.445 C 1142.38,-83.718 1142.15,-83.932 1141.87,-83.932 L 1138.83,-83.932 C 1138.53,-83.932 1138.3,-83.692 1138.3,-83.395 L 1138.3,-74.018 C 1138.3,-73.724 1138.53,-73.482 1138.83,-73.482 L 1142.41,-73.482 L 1142.41,-72.144 C 1142.41,-71.849 1142.64,-71.607 1142.93,-71.607 L 1145.98,-71.607 C 1146.28,-71.607 1146.52,-71.849 1146.52,-72.144 L 1146.52,-73.482' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-business-dashboard--white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1136.58 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1144.46 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%23ffffff' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1146.52,-73.482 L 1150.09,-73.482 C 1150.38,-73.482 1150.62,-73.724 1150.62,-74.018 L 1150.62,-83.395 C 1150.62,-83.692 1150.38,-83.932 1150.09,-83.932 L 1147.04,-83.932 C 1146.75,-83.932 1146.52,-83.692 1146.52,-83.395 L 1146.52,-82.046 C 1146.52,-81.749 1146.27,-81.505 1145.97,-81.505 L 1142.94,-81.505 C 1142.65,-81.505 1142.4,-81.749 1142.4,-82.046 L 1142.4,-83.42 L 1142.4,-83.445 C 1142.38,-83.718 1142.15,-83.932 1141.87,-83.932 L 1138.83,-83.932 C 1138.53,-83.932 1138.3,-83.692 1138.3,-83.395 L 1138.3,-74.018 C 1138.3,-73.724 1138.53,-73.482 1138.83,-73.482 L 1142.41,-73.482 L 1142.41,-72.144 C 1142.41,-71.849 1142.64,-71.607 1142.93,-71.607 L 1145.98,-71.607 C 1146.28,-71.607 1146.52,-71.849 1146.52,-72.144 L 1146.52,-73.482' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-business-dashboard--grey {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1136.58 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1144.46 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%23cccccc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1146.52,-73.482 L 1150.09,-73.482 C 1150.38,-73.482 1150.62,-73.724 1150.62,-74.018 L 1150.62,-83.395 C 1150.62,-83.692 1150.38,-83.932 1150.09,-83.932 L 1147.04,-83.932 C 1146.75,-83.932 1146.52,-83.692 1146.52,-83.395 L 1146.52,-82.046 C 1146.52,-81.749 1146.27,-81.505 1145.97,-81.505 L 1142.94,-81.505 C 1142.65,-81.505 1142.4,-81.749 1142.4,-82.046 L 1142.4,-83.42 L 1142.4,-83.445 C 1142.38,-83.718 1142.15,-83.932 1141.87,-83.932 L 1138.83,-83.932 C 1138.53,-83.932 1138.3,-83.692 1138.3,-83.395 L 1138.3,-74.018 C 1138.3,-73.724 1138.53,-73.482 1138.83,-73.482 L 1142.41,-73.482 L 1142.41,-72.144 C 1142.41,-71.849 1142.64,-71.607 1142.93,-71.607 L 1145.98,-71.607 C 1146.28,-71.607 1146.52,-71.849 1146.52,-72.144 L 1146.52,-73.482' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-industry-dashboard--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1161.94 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1169.82 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%2300aac3' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1172.91,-74.023 L 1172.91,-72.624 C 1172.91,-72.473 1173.03,-72.353 1173.18,-72.353 L 1175.73,-72.353 C 1175.88,-72.353 1176,-72.473 1176,-72.624 L 1176,-83.394 C 1176,-83.69 1175.76,-83.932 1175.47,-83.932 L 1172.41,-83.932 C 1172.12,-83.932 1171.88,-83.69 1171.88,-83.394 L 1171.88,-82.04 C 1171.88,-81.741 1171.64,-81.497 1171.34,-81.497 L 1168.3,-81.497 C 1168,-81.497 1167.76,-81.741 1167.76,-82.04 L 1167.76,-83.443 C 1167.73,-83.718 1167.51,-83.932 1167.23,-83.932 L 1164.17,-83.932 C 1163.88,-83.932 1163.64,-83.69 1163.64,-83.394 L 1163.64,-76.138 L 1163.64,-71.928 C 1163.64,-71.643 1163.84,-71.528 1164.09,-71.67 L 1168.38,-74.143 L 1168.38,-71.928 C 1168.38,-71.643 1168.58,-71.526 1168.83,-71.67 L 1172.91,-74.023' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.icon-industry-dashboard--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1161.94 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1169.82 -77.77) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%23bec6cc' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1172.91,-74.023 L 1172.91,-72.624 C 1172.91,-72.473 1173.03,-72.353 1173.18,-72.353 L 1175.73,-72.353 C 1175.88,-72.353 1176,-72.473 1176,-72.624 L 1176,-83.394 C 1176,-83.69 1175.76,-83.932 1175.47,-83.932 L 1172.41,-83.932 C 1172.12,-83.932 1171.88,-83.69 1171.88,-83.394 L 1171.88,-82.04 C 1171.88,-81.741 1171.64,-81.497 1171.34,-81.497 L 1168.3,-81.497 C 1168,-81.497 1167.76,-81.741 1167.76,-82.04 L 1167.76,-83.443 C 1167.73,-83.718 1167.51,-83.932 1167.23,-83.932 L 1164.17,-83.932 C 1163.88,-83.932 1163.64,-83.69 1163.64,-83.394 L 1163.64,-76.138 L 1163.64,-71.928 C 1163.64,-71.643 1163.84,-71.528 1164.09,-71.67 L 1168.38,-74.143 L 1168.38,-71.928 C 1168.38,-71.643 1168.58,-71.526 1168.83,-71.67 L 1172.91,-74.023' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

/*
$icon-color-highlighted : "#00aac3";
$icon-color-not-highlighted : "#ffffff";

$icon-color-highlighted : "#00aac3";
$icon-color-not-highlighted : "#bec6cc";*/
.icon-copy-dashboard {
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' standalone='no'?%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!--Generator: Xara Designer (www.xara.com), SVG filter version: 6.0.0.4--%3E%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='41.25pt' height='41.25pt' viewBox='0 0 41.25 41.25'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -41.25)'%3E%3Cg id='Page background'%3E%3Cpath d='M 0,41.249 L 0,0 L 41.249,0 L 41.249,41.249 L 0,41.249 Z' stroke='none' stroke-width='0' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3C/g%3E%3Cg id='MouseOff'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%232a2a2a' stroke-width='2.25' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_1'%3E%3Cpath d='M 29.389,5.383 L 35.366,8.898 C 36.801,9.743 37.967,11.799 37.967,13.487 L 37.967,27.766 C 37.967,29.454 36.801,31.51 35.366,32.354 L 23.226,39.492 C 21.791,40.336 19.46,40.336 18.025,39.492 L 5.885,32.352 C 4.45,31.507 3.284,29.451 3.284,27.763 L 3.284,13.484 C 3.285,11.796 4.45,9.74 5.885,8.895 L 11.859,5.383' fill='none'/%3E%3C/g%3E%3Cpath d='M 20.626,21.608 L 20.626,1.125' fill='none'/%3E%3Cpath d='M 29.295,17.49 L 22.121,21.608 C 21.294,22.083 19.946,22.082 19.12,21.608 L 11.957,17.471' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-status-intervention {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='20.25pt' height='20.25pt' viewBox='0 0 20.25 20.25'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -20.25)'%3E%3Cg id='Ebene 1'%3E%3Cg id='Group' stroke='%23bbff00' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_1'%3E%3Cpath d='M 10.125,4.594 L 10.125,15.656' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 3.225,16.099 L 8.401,19.088 C 9.352,19.637 10.898,19.637 11.849,19.088 L 17.025,16.099 C 17.977,15.55 18.749,14.212 18.749,13.113 L 18.749,7.137 C 18.749,6.039 17.977,4.701 17.025,4.151 L 11.85,1.162 C 10.898,0.613 9.353,0.613 8.401,1.162 L 3.225,4.151 C 2.274,4.701 1.501,6.039 1.501,7.137 L 1.501,13.113 C 1.501,14.212 2.274,15.55 3.225,16.099 Z' stroke='%23bbff00' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-status-storno {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='20.25pt' height='20.25pt' viewBox='0 0 20.25 20.25'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -20.25)'%3E%3Cg id='Ebene 1'%3E%3Cpath d='M 3.225,4.151 L 8.401,1.162 C 9.352,0.613 10.898,0.613 11.849,1.162 L 17.025,4.151 C 17.977,4.7 18.749,6.038 18.749,7.137 L 18.749,13.113 C 18.749,14.211 17.977,15.549 17.025,16.099 L 11.85,19.088 C 10.898,19.637 9.353,19.637 8.401,19.088 L 3.225,16.099 C 2.274,15.549 1.501,14.211 1.501,13.113 L 1.501,7.137 C 1.501,6.038 2.274,4.7 3.225,4.151 Z' stroke='%23ffffff' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cpath d='M 3.225,16.099 L 8.401,19.088 C 9.352,19.637 10.898,19.637 11.849,19.088 L 17.025,16.099 C 17.977,15.55 18.749,14.212 18.749,13.113 L 18.749,7.137 C 18.749,6.039 17.977,4.701 17.025,4.151 L 11.85,1.162 C 10.898,0.613 9.353,0.613 8.401,1.162 L 3.225,4.151 C 2.274,4.701 1.501,6.039 1.501,7.137 L 1.501,13.113 C 1.501,14.212 2.274,15.55 3.225,16.099 Z' stroke='%23ff00ff' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cg id='Group' stroke='%23ff00ff' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_1'%3E%3Cpath d='M 14.915,12.89 L 5.335,7.359' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-status-transfer {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='20.25pt' height='20.25pt' viewBox='0 0 20.25 20.25'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -20.25)'%3E%3Cg id='Ebene 1'%3E%3Cpath d='M 15.315,8.32 L 15.315,11.99 C 15.317,12.662 14.84,13.484 14.256,13.824 L 11.081,15.658' fill='none' stroke='%2334efff' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'/%3E%3Cpath d='M 3.225,16.099 L 8.401,19.088 C 9.352,19.637 10.898,19.637 11.849,19.088 L 17.025,16.099 C 17.977,15.55 18.749,14.212 18.749,13.113 L 18.749,7.137 C 18.749,6.039 17.977,4.701 17.025,4.151 L 11.85,1.162 C 10.898,0.613 9.353,0.613 8.401,1.162 L 3.225,4.151 C 2.274,4.701 1.501,6.039 1.501,7.137 L 1.501,13.113 C 1.501,14.212 2.274,15.55 3.225,16.099 Z' stroke='%2334efff' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cpath d='M 4.932,11.932 L 4.932,8.262 C 4.93,7.59 5.407,6.768 5.991,6.428 L 9.166,4.594' fill='none' stroke='%2334efff' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-status-inaktiv {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='20.25pt' height='20.25pt' viewBox='0 0 20.25 20.25'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -20.25)'%3E%3Cg id='Ebene 1'%3E%3Cpath d='M 17.025,4.151 L 11.849,1.162 C 10.898,0.613 9.352,0.613 8.401,1.162 L 3.225,4.151 C 2.273,4.7 1.501,6.038 1.501,7.137 L 1.501,13.113 C 1.501,14.211 2.273,15.549 3.225,16.099 L 8.4,19.088 C 9.352,19.637 10.897,19.637 11.849,19.088 L 17.025,16.099 C 17.976,15.549 18.749,14.211 18.749,13.113 L 18.749,7.137 C 18.749,6.038 17.976,4.7 17.025,4.151 Z' stroke='%23ffffff' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cpath d='M 17.025,16.099 L 11.849,19.088 C 10.898,19.637 9.352,19.637 8.401,19.088 L 3.225,16.099 C 2.273,15.55 1.501,14.212 1.501,13.113 L 1.501,7.137 C 1.501,6.039 2.273,4.701 3.225,4.151 L 8.4,1.162 C 9.352,0.613 10.897,0.613 11.849,1.162 L 17.025,4.151 C 17.976,4.701 18.749,6.039 18.749,7.137 L 18.749,13.113 C 18.749,14.212 17.976,15.55 17.025,16.099 Z' stroke='%23ffffff' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cg id='Group' stroke='%23ffffff' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_1'%3E%3Cpath d='M 5.335,12.89 L 14.915,7.359' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-status-belieferung {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='20.25pt' height='20.25pt' viewBox='0 0 20.25 20.25'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -20.25)'%3E%3Cg id='Ebene 1'%3E%3Cpath d='M 3.225,16.099 L 8.401,19.088 C 9.352,19.637 10.898,19.637 11.849,19.088 L 17.025,16.099 C 17.977,15.55 18.749,14.212 18.749,13.113 L 18.749,7.137 C 18.749,6.039 17.977,4.701 17.025,4.151 L 11.85,1.162 C 10.898,0.613 9.353,0.613 8.401,1.162 L 3.225,4.151 C 2.274,4.701 1.501,6.039 1.501,7.137 L 1.501,13.113 C 1.501,14.212 2.274,15.55 3.225,16.099 Z' stroke='%2300ff00' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cg id='Group' stroke='%2300ff00' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_1'%3E%3Cpath d='M 14.915,12.89 L 5.335,7.359' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_2' stroke='%2300ff00' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_3'%3E%3Cpath d='M 14.915,7.36 L 5.335,12.891' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' stroke='%2300ff00' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_5'%3E%3Cpath d='M 10.125,4.593 L 10.125,15.655' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-status-erstellt {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='20.25pt' height='20.25pt' viewBox='0 0 20.25 20.25'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -20.25)'%3E%3Cg id='Ebene 1'%3E%3Cpath d='M 17.025,4.151 L 11.849,1.162 C 10.898,0.613 9.352,0.613 8.401,1.162 L 3.225,4.151 C 2.273,4.7 1.501,6.038 1.501,7.137 L 1.501,13.113 C 1.501,14.211 2.273,15.549 3.225,16.099 L 8.4,19.088 C 9.352,19.637 10.897,19.637 11.849,19.088 L 17.025,16.099 C 17.976,15.549 18.749,14.211 18.749,13.113 L 18.749,7.137 C 18.749,6.038 17.976,4.7 17.025,4.151 Z' stroke='%2300ffce' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cpath d='M 17.025,16.099 L 11.849,19.088 C 10.898,19.637 9.352,19.637 8.401,19.088 L 3.225,16.099 C 2.273,15.55 1.501,14.212 1.501,13.113 L 1.501,7.137 C 1.501,6.039 2.273,4.701 3.225,4.151 L 8.4,1.162 C 9.352,0.613 10.897,0.613 11.849,1.162 L 17.025,4.151 C 17.976,4.701 18.749,6.039 18.749,7.137 L 18.749,13.113 C 18.749,14.212 17.976,15.55 17.025,16.099 Z' stroke='%2300ffb3' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.icon-status-active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='20.25pt' height='20.25pt' viewBox='0 0 20.25 20.25'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -20.25)'%3E%3Cg id='Ebene 1'%3E%3Cpath d='M 3.225,16.099 L 8.401,19.088 C 9.352,19.637 10.898,19.637 11.849,19.088 L 17.025,16.099 C 17.977,15.55 18.749,14.212 18.749,13.113 L 18.749,7.137 C 18.749,6.039 17.977,4.701 17.025,4.151 L 11.85,1.162 C 10.898,0.613 9.353,0.613 8.401,1.162 L 3.225,4.151 C 2.274,4.701 1.501,6.039 1.501,7.137 L 1.501,13.113 C 1.501,14.212 2.274,15.55 3.225,16.099 Z' stroke='%23999999' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cg id='Group' stroke='%23999999' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_1'%3E%3Cpath d='M 14.915,12.89 L 5.335,7.359' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_2' stroke='%23999999' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_3'%3E%3Cpath d='M 14.915,7.36 L 5.335,12.891' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' stroke='%23999999' stroke-width='0.9' stroke-linejoin='round' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cg id='Group_5'%3E%3Cpath d='M 10.125,4.593 L 10.125,15.655' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.menu-vega-logo {
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' standalone='no'?%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!--Generator: Xara Designer (www.xara.com), SVG filter version: 6.3.0.23--%3E%3Csvg fill='none' fill-rule='evenodd' stroke='%23666666' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='81.53pt' height='36.343pt' viewBox='13.235 -38.797 81.53 36.343'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Ebene 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.9' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'%3E%3Cg id='Group_1'%3E%3Cpath d='M 94.315,11.757 L 84.079,29.489' fill='none'/%3E%3Cpath d='M 73.841,11.757 L 84.079,29.489' fill='none'/%3E%3C/g%3E%3Cpath d='M 69.357,20.644 L 69.357,11.777' fill='none'/%3E%3Cpath d='M 46.323,20.622 L 38.646,20.622' fill='none'/%3E%3Cg id='Group_2'%3E%3Cpath d='M 34.158,29.487 L 23.922,11.755' fill='none'/%3E%3Cpath d='M 13.685,29.487 L 23.922,11.755' fill='none'/%3E%3C/g%3E%3Cg id='Group_3' fill='%23262626'%3E%3Cpath d='M 38.653,11.762 L 69.357,29.498' fill='none'/%3E%3Cpath d='M 69.357,11.767 L 38.646,29.477' fill='none'/%3E%3Cpath d='M 54.003,2.904 L 54.003,38.347' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.document-icon-edit {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.786pt' height='15.786pt' viewBox='1073.29 -873.549 15.786 15.786'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.563'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1081.18 865.656) rotate(90)' stroke='none' stroke-linejoin='miter'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke='%23bec6cc'%3E%3Cpath d='M 1073.57,858.044 L 1077.25,859.033 L 1087.92,869.695 L 1087.92,869.695 L 1088.15,869.927 C 1088.95,870.739 1089.01,872.004 1088.27,872.749 L 1088.27,872.749 C 1087.53,873.488 1086.26,873.435 1085.45,872.622 L 1077.99,865.167 C 1077.99,865.167 1077.99,865.167 1077.99,865.167 L 1074.56,861.735 L 1073.57,858.044 Z' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1087.27,869.047 L 1084.57,871.747' fill='none'/%3E%3Cpath d='M 1077.24,859.03 L 1074.56,861.735' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-edit:hover:not(:disabled) {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%2300aac3' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.786pt' height='15.786pt' viewBox='1073.29 -873.549 15.786 15.786'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.563'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1081.18 865.656) rotate(90)' stroke='none' stroke-linejoin='miter'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke='%2300aac3'%3E%3Cpath d='M 1073.57,858.044 L 1077.25,859.033 L 1087.92,869.695 L 1087.92,869.695 L 1088.15,869.927 C 1088.95,870.739 1089.01,872.004 1088.27,872.749 L 1088.27,872.749 C 1087.53,873.488 1086.26,873.435 1085.45,872.622 L 1077.99,865.167 C 1077.99,865.167 1077.99,865.167 1077.99,865.167 L 1074.56,861.735 L 1073.57,858.044 Z' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1087.27,869.047 L 1084.57,871.747' fill='none'/%3E%3Cpath d='M 1077.24,859.03 L 1074.56,861.735' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-edit--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.786pt' height='15.786pt' viewBox='1073.29 -873.549 15.786 15.786'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.563'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1081.18 865.656) rotate(90)' stroke='none' stroke-linejoin='miter'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke='%23bec6cc'%3E%3Cpath d='M 1073.57,858.044 L 1077.25,859.033 L 1087.92,869.695 L 1087.92,869.695 L 1088.15,869.927 C 1088.95,870.739 1089.01,872.004 1088.27,872.749 L 1088.27,872.749 C 1087.53,873.488 1086.26,873.435 1085.45,872.622 L 1077.99,865.167 C 1077.99,865.167 1077.99,865.167 1077.99,865.167 L 1074.56,861.735 L 1073.57,858.044 Z' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1087.27,869.047 L 1084.57,871.747' fill='none'/%3E%3Cpath d='M 1077.24,859.03 L 1074.56,861.735' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.document-icon-copy {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.75pt' height='15.75pt' viewBox='-817.826 -2274.11 15.75 15.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.563' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc'%3E%3Cpath d='M -802.568,2270.38 L -802.568,2262.26 C -802.568,2261.65 -803.063,2261.16 -803.672,2261.16 L -810.422,2261.16 C -811.029,2261.16 -811.523,2261.65 -811.523,2262.26 L -811.523,2272.52 C -811.523,2273.13 -811.029,2273.63 -810.422,2273.63 L -805.815,2273.63' fill='none'/%3E%3Cpath d='M -808.377,2261.16 L -808.378,2259.95 C -808.378,2259.34 -808.874,2258.85 -809.48,2258.85 L -816.231,2258.85 C -816.839,2258.85 -817.334,2259.34 -817.334,2259.95 L -817.334,2270.21 C -817.334,2270.82 -816.839,2271.32 -816.231,2271.32 L -811.523,2271.32' fill='none'/%3E%3Cpath d='M -805.815,2273.63 L -802.568,2270.38' fill='none'/%3E%3Cpath d='M -805.815,2273.63 L -805.815,2271.29 C -805.815,2270.79 -805.404,2270.38 -804.898,2270.38 L -802.568,2270.38' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-809.951 2266.24) rotate(90)' stroke='none' stroke-width='0.563'/%3E%3Cpath d='M -815.117,2261.16 L -812.584,2261.16' fill='none' stroke-width='0.563' stroke='%23bec6cc' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -815.117,2263.4 L -812.584,2263.4' fill='none' stroke-width='0.563' stroke='%23bec6cc' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -815.117,2265.64 L -812.584,2265.64' fill='none' stroke-width='0.563' stroke='%23bec6cc' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-copy:hover:not(:disabled) {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%2300aac3' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.75pt' height='15.75pt' viewBox='-817.826 -2274.11 15.75 15.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.563' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3'%3E%3Cpath d='M -802.568,2270.38 L -802.568,2262.26 C -802.568,2261.65 -803.063,2261.16 -803.672,2261.16 L -810.422,2261.16 C -811.029,2261.16 -811.523,2261.65 -811.523,2262.26 L -811.523,2272.52 C -811.523,2273.13 -811.029,2273.63 -810.422,2273.63 L -805.815,2273.63' fill='none'/%3E%3Cpath d='M -808.377,2261.16 L -808.378,2259.95 C -808.378,2259.34 -808.874,2258.85 -809.48,2258.85 L -816.231,2258.85 C -816.839,2258.85 -817.334,2259.34 -817.334,2259.95 L -817.334,2270.21 C -817.334,2270.82 -816.839,2271.32 -816.231,2271.32 L -811.523,2271.32' fill='none'/%3E%3Cpath d='M -805.815,2273.63 L -802.568,2270.38' fill='none'/%3E%3Cpath d='M -805.815,2273.63 L -805.815,2271.29 C -805.815,2270.79 -805.404,2270.38 -804.898,2270.38 L -802.568,2270.38' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-809.951 2266.24) rotate(90)' stroke='none' stroke-width='0.563'/%3E%3Cpath d='M -815.117,2261.16 L -812.584,2261.16' fill='none' stroke-width='0.563' stroke='%2300aac3' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -815.117,2263.4 L -812.584,2263.4' fill='none' stroke-width='0.563' stroke='%2300aac3' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -815.117,2265.64 L -812.584,2265.64' fill='none' stroke-width='0.563' stroke='%2300aac3' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-copy--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.75pt' height='15.75pt' viewBox='-817.826 -2274.11 15.75 15.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.563' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc'%3E%3Cpath d='M -802.568,2270.38 L -802.568,2262.26 C -802.568,2261.65 -803.063,2261.16 -803.672,2261.16 L -810.422,2261.16 C -811.029,2261.16 -811.523,2261.65 -811.523,2262.26 L -811.523,2272.52 C -811.523,2273.13 -811.029,2273.63 -810.422,2273.63 L -805.815,2273.63' fill='none'/%3E%3Cpath d='M -808.377,2261.16 L -808.378,2259.95 C -808.378,2259.34 -808.874,2258.85 -809.48,2258.85 L -816.231,2258.85 C -816.839,2258.85 -817.334,2259.34 -817.334,2259.95 L -817.334,2270.21 C -817.334,2270.82 -816.839,2271.32 -816.231,2271.32 L -811.523,2271.32' fill='none'/%3E%3Cpath d='M -805.815,2273.63 L -802.568,2270.38' fill='none'/%3E%3Cpath d='M -805.815,2273.63 L -805.815,2271.29 C -805.815,2270.79 -805.404,2270.38 -804.898,2270.38 L -802.568,2270.38' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-809.951 2266.24) rotate(90)' stroke='none' stroke-width='0.563'/%3E%3Cpath d='M -815.117,2261.16 L -812.584,2261.16' fill='none' stroke-width='0.563' stroke='%23bec6cc' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -815.117,2263.4 L -812.584,2263.4' fill='none' stroke-width='0.563' stroke='%23bec6cc' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -815.117,2265.64 L -812.584,2265.64' fill='none' stroke-width='0.563' stroke='%23bec6cc' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.document-icon-save {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.788pt' height='15.788pt' viewBox='-818.506 -2675.77 15.788 15.788'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23bec6cc' stroke-width='0.563' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -803,2667.88 L -803,2661.34 C -803,2660.75 -803.482,2660.27 -804.076,2660.27 L -817.149,2660.27 C -817.743,2660.27 -818.225,2660.75 -818.225,2661.34 L -818.225,2667.88' fill='none'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M -810.61,2666.32 L -810.61,2675.49' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M -814.635,2668.31 L -811.615,2666.57 C -811.063,2666.25 -810.16,2666.25 -809.603,2666.57 L -806.586,2668.31' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.613 2667.88) rotate(90)' stroke='none' stroke-width='0.563'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-save:hover:not(:disabled) {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%2300aac3' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.788pt' height='15.788pt' viewBox='-818.506 -2675.77 15.788 15.788'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%2300aac3' stroke-width='0.563' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -803,2667.88 L -803,2661.34 C -803,2660.75 -803.482,2660.27 -804.076,2660.27 L -817.149,2660.27 C -817.743,2660.27 -818.225,2660.75 -818.225,2661.34 L -818.225,2667.88' fill='none'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M -810.61,2666.32 L -810.61,2675.49' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M -814.635,2668.31 L -811.615,2666.57 C -811.063,2666.25 -810.16,2666.25 -809.603,2666.57 L -806.586,2668.31' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.613 2667.88) rotate(90)' stroke='none' stroke-width='0.563'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-save--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.788pt' height='15.788pt' viewBox='-818.506 -2675.77 15.788 15.788'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23bec6cc' stroke-width='0.563' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -803,2667.88 L -803,2661.34 C -803,2660.75 -803.482,2660.27 -804.076,2660.27 L -817.149,2660.27 C -817.743,2660.27 -818.225,2660.75 -818.225,2661.34 L -818.225,2667.88' fill='none'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M -810.61,2666.32 L -810.61,2675.49' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M -814.635,2668.31 L -811.615,2666.57 C -811.063,2666.25 -810.16,2666.25 -809.603,2666.57 L -806.586,2668.31' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.613 2667.88) rotate(90)' stroke='none' stroke-width='0.563'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.document-icon-print {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.801pt' height='15.787pt' viewBox='-818.513 -2669.37 15.801 15.787'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23bec6cc' stroke-linejoin='round' stroke-width='0.563'%3E%3Cpath d='M -815.157,2656.93 L -817.653,2656.93 C -817.972,2656.93 -818.231,2657.19 -818.232,2657.51 L -818.231,2664.41 C -818.231,2664.73 -817.972,2664.99 -817.653,2664.99 L -803.573,2664.99 C -803.251,2664.99 -802.994,2664.73 -802.994,2664.41 L -802.994,2657.51 C -802.994,2657.19 -803.251,2656.93 -803.573,2656.93 L -806.065,2656.93' fill='none'/%3E%3Cpath d='M -815.157,2661.3 L -806.065,2661.3 L -806.065,2654.44 C -806.065,2654.12 -806.325,2653.86 -806.642,2653.86 L -814.58,2653.86 C -814.899,2653.86 -815.157,2654.12 -815.157,2654.44 L -815.157,2661.3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M -815.157,2664.99 L -815.157,2668.51 C -815.157,2668.83 -814.898,2669.08 -814.58,2669.08 L -806.642,2669.08 C -806.325,2669.08 -806.065,2668.83 -806.065,2668.51 L -806.065,2664.99' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.613 2661.47) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-print:hover:not(:disabled) {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%2300aac3' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.801pt' height='15.787pt' viewBox='-818.513 -2669.37 15.801 15.787'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%2300aac3' stroke-linejoin='round' stroke-width='0.563'%3E%3Cpath d='M -815.157,2656.93 L -817.653,2656.93 C -817.972,2656.93 -818.231,2657.19 -818.232,2657.51 L -818.231,2664.41 C -818.231,2664.73 -817.972,2664.99 -817.653,2664.99 L -803.573,2664.99 C -803.251,2664.99 -802.994,2664.73 -802.994,2664.41 L -802.994,2657.51 C -802.994,2657.19 -803.251,2656.93 -803.573,2656.93 L -806.065,2656.93' fill='none'/%3E%3Cpath d='M -815.157,2661.3 L -806.065,2661.3 L -806.065,2654.44 C -806.065,2654.12 -806.325,2653.86 -806.642,2653.86 L -814.58,2653.86 C -814.899,2653.86 -815.157,2654.12 -815.157,2654.44 L -815.157,2661.3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M -815.157,2664.99 L -815.157,2668.51 C -815.157,2668.83 -814.898,2669.08 -814.58,2669.08 L -806.642,2669.08 C -806.325,2669.08 -806.065,2668.83 -806.065,2668.51 L -806.065,2664.99' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.613 2661.47) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-print--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.801pt' height='15.787pt' viewBox='-818.513 -2669.37 15.801 15.787'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23bec6cc' stroke-linejoin='round' stroke-width='0.563'%3E%3Cpath d='M -815.157,2656.93 L -817.653,2656.93 C -817.972,2656.93 -818.231,2657.19 -818.232,2657.51 L -818.231,2664.41 C -818.231,2664.73 -817.972,2664.99 -817.653,2664.99 L -803.573,2664.99 C -803.251,2664.99 -802.994,2664.73 -802.994,2664.41 L -802.994,2657.51 C -802.994,2657.19 -803.251,2656.93 -803.573,2656.93 L -806.065,2656.93' fill='none'/%3E%3Cpath d='M -815.157,2661.3 L -806.065,2661.3 L -806.065,2654.44 C -806.065,2654.12 -806.325,2653.86 -806.642,2653.86 L -814.58,2653.86 C -814.899,2653.86 -815.157,2654.12 -815.157,2654.44 L -815.157,2661.3' fill='none' stroke-linecap='round'/%3E%3Cpath d='M -815.157,2664.99 L -815.157,2668.51 C -815.157,2668.83 -814.898,2669.08 -814.58,2669.08 L -806.642,2669.08 C -806.325,2669.08 -806.065,2668.83 -806.065,2668.51 L -806.065,2664.99' fill='none'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.613 2661.47) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.document-icon-emaillink {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.786pt' height='15.75pt' viewBox='-920.589 -2653.66 15.786 15.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-912.696 2645.78) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.563'%3E%3Cpath d='M -911.207,2646.02 C -911.361,2646.6 -911.957,2647.19 -912.532,2647.35 L -915.668,2648.18 C -916.245,2648.34 -917.056,2648.12 -917.476,2647.7 L -919.777,2645.41 C -920.192,2644.99 -920.413,2644.18 -920.26,2643.6 L -919.42,2640.46 C -919.265,2639.89 -918.673,2639.29 -918.096,2639.14 L -914.958,2638.3 C -914.384,2638.15 -913.567,2638.36 -913.152,2638.78 L -910.857,2641.08' fill='none'/%3E%3Cpath d='M -914.181,2645.54 C -914.029,2644.97 -913.435,2644.37 -912.857,2644.22 L -909.724,2643.38 C -909.147,2643.22 -908.334,2643.44 -907.915,2643.86 L -905.615,2646.16 C -905.198,2646.58 -904.979,2647.39 -905.132,2647.97 L -905.974,2651.1 C -906.125,2651.68 -906.719,2652.27 -907.298,2652.43 L -910.434,2653.26 C -911.005,2653.42 -911.82,2653.2 -912.24,2652.78 L -914.536,2650.48' fill='none'/%3E%3Cpath d='M -913.614,2642.01 L -911.428,2641.43 C -911.025,2641.32 -910.613,2640.91 -910.501,2640.51 L -909.917,2638.32' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-emaillink:hover:not(:disabled) {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%2300aac3' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.786pt' height='15.75pt' viewBox='-920.589 -2653.66 15.786 15.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-912.696 2645.78) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.563'%3E%3Cpath d='M -911.207,2646.02 C -911.361,2646.6 -911.957,2647.19 -912.532,2647.35 L -915.668,2648.18 C -916.245,2648.34 -917.056,2648.12 -917.476,2647.7 L -919.777,2645.41 C -920.192,2644.99 -920.413,2644.18 -920.26,2643.6 L -919.42,2640.46 C -919.265,2639.89 -918.673,2639.29 -918.096,2639.14 L -914.958,2638.3 C -914.384,2638.15 -913.567,2638.36 -913.152,2638.78 L -910.857,2641.08' fill='none'/%3E%3Cpath d='M -914.181,2645.54 C -914.029,2644.97 -913.435,2644.37 -912.857,2644.22 L -909.724,2643.38 C -909.147,2643.22 -908.334,2643.44 -907.915,2643.86 L -905.615,2646.16 C -905.198,2646.58 -904.979,2647.39 -905.132,2647.97 L -905.974,2651.1 C -906.125,2651.68 -906.719,2652.27 -907.298,2652.43 L -910.434,2653.26 C -911.005,2653.42 -911.82,2653.2 -912.24,2652.78 L -914.536,2650.48' fill='none'/%3E%3Cpath d='M -913.614,2642.01 L -911.428,2641.43 C -911.025,2641.32 -910.613,2640.91 -910.501,2640.51 L -909.917,2638.32' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-emaillink--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.786pt' height='15.75pt' viewBox='-920.589 -2653.66 15.786 15.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-912.696 2645.78) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.563'%3E%3Cpath d='M -911.207,2646.02 C -911.361,2646.6 -911.957,2647.19 -912.532,2647.35 L -915.668,2648.18 C -916.245,2648.34 -917.056,2648.12 -917.476,2647.7 L -919.777,2645.41 C -920.192,2644.99 -920.413,2644.18 -920.26,2643.6 L -919.42,2640.46 C -919.265,2639.89 -918.673,2639.29 -918.096,2639.14 L -914.958,2638.3 C -914.384,2638.15 -913.567,2638.36 -913.152,2638.78 L -910.857,2641.08' fill='none'/%3E%3Cpath d='M -914.181,2645.54 C -914.029,2644.97 -913.435,2644.37 -912.857,2644.22 L -909.724,2643.38 C -909.147,2643.22 -908.334,2643.44 -907.915,2643.86 L -905.615,2646.16 C -905.198,2646.58 -904.979,2647.39 -905.132,2647.97 L -905.974,2651.1 C -906.125,2651.68 -906.719,2652.27 -907.298,2652.43 L -910.434,2653.26 C -911.005,2653.42 -911.82,2653.2 -912.24,2652.78 L -914.536,2650.48' fill='none'/%3E%3Cpath d='M -913.614,2642.01 L -911.428,2641.43 C -911.025,2641.32 -910.613,2640.91 -910.501,2640.51 L -909.917,2638.32' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.document-icon-message {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.751pt' height='9.75pt' viewBox='-866.299 -1259.03 9.751 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-866.11' y='1250.31' width='9.374' height='7.7' rx='0.83060964756141' ry='0.83060964756141' stroke='%23bec6cc' stroke-width='0.375' stroke-linejoin='miter'/%3E%3Cpath d='M -856.736,1256.94 L -860.78,1253.65 C -861.135,1253.36 -861.713,1253.36 -862.068,1253.65 L -866.111,1256.94' fill='none' stroke-width='0.375' stroke='%23bec6cc' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -865.845,1250.58 L -863.279,1253.17' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.375'/%3E%3Cpath d='M -859.567,1253.17 L -857.001,1250.58' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.424 1254.16) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-message:hover:not(:disabled) {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.751pt' height='9.75pt' viewBox='-866.299 -1259.03 9.751 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-866.11' y='1250.31' width='9.374' height='7.7' rx='0.83060964756141' ry='0.83060964756141' stroke='%2300aac3' stroke-width='0.375' stroke-linejoin='miter'/%3E%3Cpath d='M -856.736,1256.94 L -860.78,1253.65 C -861.135,1253.36 -861.713,1253.36 -862.068,1253.65 L -866.111,1256.94' fill='none' stroke-width='0.375' stroke='%2300aac3' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -865.845,1250.58 L -863.279,1253.17' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.375'/%3E%3Cpath d='M -859.567,1253.17 L -857.001,1250.58' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.424 1254.16) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-message--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.751pt' height='9.75pt' viewBox='-866.299 -1259.03 9.751 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-866.11' y='1250.31' width='9.374' height='7.7' rx='0.83060964756141' ry='0.83060964756141' stroke='%23bec6cc' stroke-width='0.375' stroke-linejoin='miter'/%3E%3Cpath d='M -856.736,1256.94 L -860.78,1253.65 C -861.135,1253.36 -861.713,1253.36 -862.068,1253.65 L -866.111,1256.94' fill='none' stroke-width='0.375' stroke='%23bec6cc' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -865.845,1250.58 L -863.279,1253.17' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.375'/%3E%3Cpath d='M -859.567,1253.17 L -857.001,1250.58' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.424 1254.16) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.document-icon-signpad {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.788pt' height='15.788pt' viewBox='-818.508 -2652.04 15.788 15.788'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23bec6cc' stroke-linejoin='round' stroke-width='0.563'%3E%3Cpath d='M -803.002,2644.14 L -803.002,2637.61 C -803.002,2637.01 -803.484,2636.53 -804.078,2636.53 L -817.151,2636.53 C -817.745,2636.53 -818.227,2637.01 -818.227,2637.61 L -818.227,2650.68 C -818.227,2651.27 -817.745,2651.75 -817.151,2651.75 L -810.615,2651.75' fill='none' stroke-linecap='round'/%3E%3Cg id='Group_1'%3E%3Cpath d='M -812.41,2642.34 L -810.133,2642.95 L -803.54,2649.55 L -803.54,2649.55 L -803.396,2649.69 C -802.9,2650.19 -802.864,2650.97 -803.323,2651.43 L -803.323,2651.43 C -803.782,2651.89 -804.564,2651.86 -805.068,2651.35 L -809.676,2646.75 C -809.676,2646.75 -809.676,2646.75 -809.678,2646.75 L -811.799,2644.63 L -812.41,2642.34 Z' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M -803.941,2649.14 L -805.608,2650.81' fill='none'/%3E%3Cpath d='M -810.139,2642.95 L -811.799,2644.63' fill='none'/%3E%3C/g%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.614 2644.14) rotate(90)' stroke='none' stroke-width='0.563'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-signpad:hover:not(:disabled) {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%2300aac3' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.788pt' height='15.788pt' viewBox='-818.508 -2652.04 15.788 15.788'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%2300aac3' stroke-linejoin='round' stroke-width='0.563'%3E%3Cpath d='M -803.002,2644.14 L -803.002,2637.61 C -803.002,2637.01 -803.484,2636.53 -804.078,2636.53 L -817.151,2636.53 C -817.745,2636.53 -818.227,2637.01 -818.227,2637.61 L -818.227,2650.68 C -818.227,2651.27 -817.745,2651.75 -817.151,2651.75 L -810.615,2651.75' fill='none' stroke-linecap='round'/%3E%3Cg id='Group_1'%3E%3Cpath d='M -812.41,2642.34 L -810.133,2642.95 L -803.54,2649.55 L -803.54,2649.55 L -803.396,2649.69 C -802.9,2650.19 -802.864,2650.97 -803.323,2651.43 L -803.323,2651.43 C -803.782,2651.89 -804.564,2651.86 -805.068,2651.35 L -809.676,2646.75 C -809.676,2646.75 -809.676,2646.75 -809.678,2646.75 L -811.799,2644.63 L -812.41,2642.34 Z' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M -803.941,2649.14 L -805.608,2650.81' fill='none'/%3E%3Cpath d='M -810.139,2642.95 L -811.799,2644.63' fill='none'/%3E%3C/g%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.614 2644.14) rotate(90)' stroke='none' stroke-width='0.563'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-signpad--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.788pt' height='15.788pt' viewBox='-818.508 -2652.04 15.788 15.788'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23bec6cc' stroke-linejoin='round' stroke-width='0.563'%3E%3Cpath d='M -803.002,2644.14 L -803.002,2637.61 C -803.002,2637.01 -803.484,2636.53 -804.078,2636.53 L -817.151,2636.53 C -817.745,2636.53 -818.227,2637.01 -818.227,2637.61 L -818.227,2650.68 C -818.227,2651.27 -817.745,2651.75 -817.151,2651.75 L -810.615,2651.75' fill='none' stroke-linecap='round'/%3E%3Cg id='Group_1'%3E%3Cpath d='M -812.41,2642.34 L -810.133,2642.95 L -803.54,2649.55 L -803.54,2649.55 L -803.396,2649.69 C -802.9,2650.19 -802.864,2650.97 -803.323,2651.43 L -803.323,2651.43 C -803.782,2651.89 -804.564,2651.86 -805.068,2651.35 L -809.676,2646.75 C -809.676,2646.75 -809.676,2646.75 -809.678,2646.75 L -811.799,2644.63 L -812.41,2642.34 Z' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M -803.941,2649.14 L -805.608,2650.81' fill='none'/%3E%3Cpath d='M -810.139,2642.95 L -811.799,2644.63' fill='none'/%3E%3C/g%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.614 2644.14) rotate(90)' stroke='none' stroke-width='0.563'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-icon-calcore {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.3 -1377.81 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'%3E%3Cpath d='M -866.112,1372.93 L -856.738,1372.93' fill='none'/%3E%3Cpath d='M -861.425,1368.24 L -861.425,1377.62' fill='none'/%3E%3Cpath d='M -865.362,1375.87 L -863.357,1375.87' fill='none'/%3E%3Cpath d='M -864.359,1374.86 L -864.359,1376.87' fill='none'/%3E%3Cpath d='M -865.362,1370.41 L -863.944,1368.99' fill='none'/%3E%3Cpath d='M -865.362,1368.99 L -863.944,1370.41' fill='none'/%3E%3Cpath d='M -859.494,1375.87 L -857.488,1375.87' fill='none'/%3E%3Cpath d='M -859.494,1370.48 L -857.488,1370.48' fill='none'/%3E%3Cpath d='M -859.494,1369.51 L -857.488,1369.51' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1372.93) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-item-cockpit {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.775pt' height='9.751pt' viewBox='-866.312 -2524.63 9.775 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -866.125,2515.51 L -866.125,2519.62 C -866.125,2519.86 -865.932,2520.05 -865.695,2520.05 L -862.883,2520.05 C -862.646,2520.05 -862.453,2519.86 -862.453,2519.62 L -862.453,2515.51 C -862.453,2515.27 -862.646,2515.07 -862.883,2515.07 L -865.695,2515.07 C -865.932,2515.07 -866.125,2515.27 -866.125,2515.51 Z M -860.397,2515.51 L -860.397,2516.95 C -860.397,2517.19 -860.204,2517.38 -859.967,2517.38 L -857.155,2517.38 C -856.918,2517.38 -856.725,2517.19 -856.725,2516.95 L -856.725,2515.51 C -856.725,2515.27 -856.918,2515.07 -857.155,2515.07 L -859.967,2515.07 C -860.204,2515.07 -860.397,2515.27 -860.397,2515.51 Z M -860.397,2519.9 L -860.397,2524.01 C -860.397,2524.25 -860.204,2524.45 -859.967,2524.45 L -857.155,2524.45 C -856.918,2524.45 -856.725,2524.25 -856.725,2524.01 L -856.725,2519.9 C -856.725,2519.66 -856.918,2519.47 -857.155,2519.47 L -859.967,2519.47 C -860.204,2519.47 -860.397,2519.66 -860.397,2519.9 Z M -866.124,2522.57 L -866.124,2524.01 C -866.124,2524.25 -865.932,2524.45 -865.695,2524.45 L -862.883,2524.45 C -862.646,2524.45 -862.453,2524.25 -862.453,2524.01 L -862.453,2522.57 C -862.453,2522.33 -862.646,2522.13 -862.883,2522.13 L -865.695,2522.13 C -865.932,2522.13 -866.124,2522.33 -866.124,2522.57 Z' stroke='%23ffffff' stroke-width='0.375' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 2519.76) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-cockpit--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.775pt' height='9.751pt' viewBox='-866.312 -2524.63 9.775 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -866.125,2515.51 L -866.125,2519.62 C -866.125,2519.86 -865.932,2520.05 -865.695,2520.05 L -862.883,2520.05 C -862.646,2520.05 -862.453,2519.86 -862.453,2519.62 L -862.453,2515.51 C -862.453,2515.27 -862.646,2515.07 -862.883,2515.07 L -865.695,2515.07 C -865.932,2515.07 -866.125,2515.27 -866.125,2515.51 Z M -860.397,2515.51 L -860.397,2516.95 C -860.397,2517.19 -860.204,2517.38 -859.967,2517.38 L -857.155,2517.38 C -856.918,2517.38 -856.725,2517.19 -856.725,2516.95 L -856.725,2515.51 C -856.725,2515.27 -856.918,2515.07 -857.155,2515.07 L -859.967,2515.07 C -860.204,2515.07 -860.397,2515.27 -860.397,2515.51 Z M -860.397,2519.9 L -860.397,2524.01 C -860.397,2524.25 -860.204,2524.45 -859.967,2524.45 L -857.155,2524.45 C -856.918,2524.45 -856.725,2524.25 -856.725,2524.01 L -856.725,2519.9 C -856.725,2519.66 -856.918,2519.47 -857.155,2519.47 L -859.967,2519.47 C -860.204,2519.47 -860.397,2519.66 -860.397,2519.9 Z M -866.124,2522.57 L -866.124,2524.01 C -866.124,2524.25 -865.932,2524.45 -865.695,2524.45 L -862.883,2524.45 C -862.646,2524.45 -862.453,2524.25 -862.453,2524.01 L -862.453,2522.57 C -862.453,2522.33 -862.646,2522.13 -862.883,2522.13 L -865.695,2522.13 C -865.932,2522.13 -866.124,2522.33 -866.124,2522.57 Z' stroke='%23ffffff' stroke-width='0.375' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 2519.76) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-item-verwaltung {
  /*@include icon-list-of-contracts($icon-color-sidebar-not-highlighted);

  &--active{
      @include icon-list-of-contracts($icon-color-sidebar-highlighted);
  }*/
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='13.459pt' height='13.459pt' viewBox='-41.245 -1795.57 13.459 13.459'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' fill='%23000000' stroke='%23000000' stroke-width='0.5' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -34.515,1793.53 L -34.515,1784.15' fill='none'/%3E%3Cpath d='M -30.455,1791.18 L -38.576,1786.5' fill='none'/%3E%3Cpath d='M -38.576,1791.18 L -30.455,1786.5' fill='none'/%3E%3C/g%3E%3Crect x='-41.244' y='1782.11' width='13.459' height='13.459' stroke='none' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}

.menu-item-auftrag {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='13.459pt' height='13.459pt' viewBox='-41.244 -1818.37 13.459 13.459'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' fill='%23000000' stroke='%23000000' stroke-width='0.5' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -29.83,1814.26 L -29.83,1809.11 C -29.83,1808.73 -30.144,1808.42 -30.53,1808.42 L -34.812,1808.42 C -35.198,1808.42 -35.511,1808.73 -35.511,1809.11 L -35.511,1815.63 C -35.511,1816.01 -35.198,1816.32 -34.812,1816.32 L -31.89,1816.32' fill='none'/%3E%3Cpath d='M -33.515,1808.42 L -33.516,1807.65 C -33.516,1807.26 -33.83,1806.95 -34.215,1806.95 L -38.498,1806.95 C -38.883,1806.95 -39.197,1807.26 -39.197,1807.65 L -39.197,1814.16 C -39.197,1814.55 -38.883,1814.86 -38.498,1814.86 L -35.511,1814.86' fill='none'/%3E%3Cpath d='M -31.092,1816.05 L -30.106,1815.06' fill='none'/%3E%3Cpath d='M -31.89,1816.32 L -31.89,1814.85 C -31.89,1814.52 -31.629,1814.26 -31.308,1814.26 L -29.83,1814.26' fill='none'/%3E%3C/g%3E%3Crect x='-41.243' y='1804.908' width='13.459' height='13.459' stroke='none' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.menu-item-auftrag--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.301 -1423.89 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'%3E%3Cpath d='M -856.742,1421.64 L -856.742,1416.49 C -856.742,1416.11 -857.056,1415.79 -857.442,1415.79 L -861.724,1415.79 C -862.11,1415.79 -862.423,1416.11 -862.423,1416.49 L -862.423,1423 C -862.423,1423.39 -862.11,1423.7 -861.724,1423.7 L -858.802,1423.7' fill='none'/%3E%3Cpath d='M -860.427,1415.79 L -860.428,1415.03 C -860.428,1414.64 -860.742,1414.33 -861.127,1414.33 L -865.41,1414.33 C -865.795,1414.33 -866.109,1414.64 -866.109,1415.03 L -866.109,1421.54 C -866.109,1421.92 -865.795,1422.24 -865.41,1422.24 L -862.423,1422.24' fill='none'/%3E%3Cpath d='M -858.802,1423.7 L -856.742,1421.64' fill='none'/%3E%3Cpath d='M -858.802,1423.7 L -858.802,1422.22 C -858.802,1421.9 -858.541,1421.64 -858.22,1421.64 L -856.742,1421.64' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 1419.01) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-auftrag--activation {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.301 -1423.89 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.375'%3E%3Cpath d='M -856.742,1421.64 L -856.742,1416.49 C -856.742,1416.11 -857.056,1415.79 -857.442,1415.79 L -861.724,1415.79 C -862.11,1415.79 -862.423,1416.11 -862.423,1416.49 L -862.423,1423 C -862.423,1423.39 -862.11,1423.7 -861.724,1423.7 L -858.802,1423.7' fill='none'/%3E%3Cpath d='M -860.427,1415.79 L -860.428,1415.03 C -860.428,1414.64 -860.742,1414.33 -861.127,1414.33 L -865.41,1414.33 C -865.795,1414.33 -866.109,1414.64 -866.109,1415.03 L -866.109,1421.54 C -866.109,1421.92 -865.795,1422.24 -865.41,1422.24 L -862.423,1422.24' fill='none'/%3E%3Cpath d='M -858.802,1423.7 L -856.742,1421.64' fill='none'/%3E%3Cpath d='M -858.802,1423.7 L -858.802,1422.22 C -858.802,1421.9 -858.541,1421.64 -858.22,1421.64 L -856.742,1421.64' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 1419.01) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-auftrag--activation-done {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.301 -1423.89 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23bec6cc' stroke-width='0.375'%3E%3Cpath d='M -856.742,1421.64 L -856.742,1416.49 C -856.742,1416.11 -857.056,1415.79 -857.442,1415.79 L -861.724,1415.79 C -862.11,1415.79 -862.423,1416.11 -862.423,1416.49 L -862.423,1423 C -862.423,1423.39 -862.11,1423.7 -861.724,1423.7 L -858.802,1423.7' fill='none'/%3E%3Cpath d='M -860.427,1415.79 L -860.428,1415.03 C -860.428,1414.64 -860.742,1414.33 -861.127,1414.33 L -865.41,1414.33 C -865.795,1414.33 -866.109,1414.64 -866.109,1415.03 L -866.109,1421.54 C -866.109,1421.92 -865.795,1422.24 -865.41,1422.24 L -862.423,1422.24' fill='none'/%3E%3Cpath d='M -858.802,1423.7 L -856.742,1421.64' fill='none'/%3E%3Cpath d='M -858.802,1423.7 L -858.802,1422.22 C -858.802,1421.9 -858.541,1421.64 -858.22,1421.64 L -856.742,1421.64' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 1419.01) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-icon-calcore {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.3 -1377.81 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'%3E%3Cpath d='M -866.112,1372.93 L -856.738,1372.93' fill='none'/%3E%3Cpath d='M -861.425,1368.24 L -861.425,1377.62' fill='none'/%3E%3Cpath d='M -865.362,1375.87 L -863.357,1375.87' fill='none'/%3E%3Cpath d='M -864.359,1374.86 L -864.359,1376.87' fill='none'/%3E%3Cpath d='M -865.362,1370.41 L -863.944,1368.99' fill='none'/%3E%3Cpath d='M -865.362,1368.99 L -863.944,1370.41' fill='none'/%3E%3Cpath d='M -859.494,1375.87 L -857.488,1375.87' fill='none'/%3E%3Cpath d='M -859.494,1370.48 L -857.488,1370.48' fill='none'/%3E%3Cpath d='M -859.494,1369.51 L -857.488,1369.51' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1372.93) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-icon-calcore--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.3 -1377.81 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'%3E%3Cpath d='M -866.112,1372.93 L -856.738,1372.93' fill='none'/%3E%3Cpath d='M -861.425,1368.24 L -861.425,1377.62' fill='none'/%3E%3Cpath d='M -865.362,1375.87 L -863.357,1375.87' fill='none'/%3E%3Cpath d='M -864.359,1374.86 L -864.359,1376.87' fill='none'/%3E%3Cpath d='M -865.362,1370.41 L -863.944,1368.99' fill='none'/%3E%3Cpath d='M -865.362,1368.99 L -863.944,1370.41' fill='none'/%3E%3Cpath d='M -859.494,1375.87 L -857.488,1375.87' fill='none'/%3E%3Cpath d='M -859.494,1370.48 L -857.488,1370.48' fill='none'/%3E%3Cpath d='M -859.494,1369.51 L -857.488,1369.51' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1372.93) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-item-settings {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.682pt' height='15.77pt' viewBox='872.141 -615.246 15.682 15.77'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='none' stroke-width='0.306' fill='%23ffffff'%3E%3Cpath d='M 879.793,601.023 C 879.584,601.032 879.365,601.029 879.154,601.062 C 878.944,601.103 878.731,601.117 878.53,601.174 C 878.254,600.701 877.942,600.245 877.596,599.8 C 877.31,599.901 877.018,599.994 876.741,600.121 C 876.735,600.7 876.777,601.251 876.858,601.8 C 876.68,601.914 876.486,602.015 876.317,602.138 C 876.145,602.27 875.967,602.384 875.81,602.526 C 875.353,602.241 874.866,601.981 874.351,601.747 C 874.145,601.97 873.931,602.186 873.744,602.421 C 874.009,602.935 874.297,603.408 874.631,603.856 C 874.52,604.039 874.398,604.218 874.302,604.411 C 874.214,604.604 874.106,604.787 874.033,604.991 C 873.498,604.951 872.942,604.947 872.377,604.98 C 872.299,605.274 872.213,605.563 872.158,605.86 C 872.63,606.195 873.116,606.477 873.608,606.718 L 873.573,607.362 L 873.608,607.999 C 873.111,608.208 872.624,608.466 872.141,608.746 C 872.181,609.051 872.274,609.344 872.348,609.636 C 872.915,609.714 873.492,609.738 874.033,609.723 C 874.106,609.926 874.214,610.115 874.302,610.305 C 874.398,610.496 874.52,610.671 874.631,610.857 C 874.283,611.279 873.973,611.727 873.68,612.207 C 873.856,612.459 874.08,612.669 874.276,612.895 C 874.812,612.7 875.33,612.453 875.81,612.189 C 875.967,612.329 876.145,612.451 876.317,612.581 C 876.486,612.7 876.68,612.804 876.858,612.915 C 876.748,613.451 876.685,613.989 876.646,614.552 C 876.916,614.689 877.212,614.778 877.497,614.886 C 877.881,614.461 878.228,614.007 878.53,613.548 C 878.731,613.598 878.944,613.615 879.154,613.649 C 879.365,613.689 879.584,613.681 879.793,613.696 C 879.945,614.233 880.137,614.73 880.366,615.246 C 880.67,615.24 880.968,615.193 881.266,615.142 C 881.417,614.597 881.51,614.029 881.558,613.485 C 881.768,613.438 881.968,613.36 882.169,613.287 C 882.37,613.221 882.556,613.124 882.752,613.029 C 883.137,613.431 883.541,613.795 883.979,614.134 C 884.244,613.989 884.497,613.809 884.732,613.619 C 884.615,613.075 884.431,612.531 884.217,612.017 C 884.38,611.882 884.523,611.717 884.666,611.56 C 884.816,611.408 884.933,611.232 885.067,611.063 C 885.591,611.243 886.116,611.375 886.668,611.472 C 886.832,611.218 886.967,610.95 887.098,610.669 C 886.733,610.242 886.314,609.839 885.89,609.489 C 885.977,609.288 886.022,609.081 886.072,608.874 C 886.135,608.673 886.165,608.454 886.197,608.247 C 886.738,608.158 887.279,608.035 887.804,607.863 C 887.822,607.562 887.835,607.261 887.805,606.958 C 887.281,606.751 886.745,606.587 886.197,606.471 C 886.165,606.256 886.135,606.045 886.072,605.838 C 886.022,605.634 885.977,605.428 885.89,605.227 C 886.318,604.903 886.76,604.532 887.14,604.14 C 887.005,603.866 886.886,603.591 886.72,603.33 C 886.15,603.399 885.608,603.497 885.067,603.653 C 884.933,603.485 884.816,603.304 884.666,603.157 C 884.523,602.999 884.38,602.834 884.217,602.702 C 884.446,602.208 884.66,601.683 884.822,601.156 C 884.576,600.974 884.335,600.785 884.072,600.638 C 883.596,600.957 883.162,601.298 882.752,601.687 C 882.556,601.594 882.37,601.499 882.169,601.432 C 881.968,601.355 881.768,601.279 881.558,601.235 C 881.537,600.698 881.48,600.129 881.373,599.591 C 881.071,599.544 880.774,599.48 880.471,599.476 C 880.198,599.987 879.976,600.48 879.793,601.023 Z M 882.111,605.231 C 883.287,606.406 883.287,608.315 882.111,609.49 C 880.936,610.666 879.027,610.666 877.852,609.49 C 876.676,608.315 876.676,606.406 877.852,605.231 C 879.027,604.055 880.936,604.055 882.111,605.231 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-settings--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.682pt' height='15.77pt' viewBox='872.141 -615.246 15.682 15.77'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='none' stroke-width='0.306' fill='%23ffffff'%3E%3Cpath d='M 879.793,601.023 C 879.584,601.032 879.365,601.029 879.154,601.062 C 878.944,601.103 878.731,601.117 878.53,601.174 C 878.254,600.701 877.942,600.245 877.596,599.8 C 877.31,599.901 877.018,599.994 876.741,600.121 C 876.735,600.7 876.777,601.251 876.858,601.8 C 876.68,601.914 876.486,602.015 876.317,602.138 C 876.145,602.27 875.967,602.384 875.81,602.526 C 875.353,602.241 874.866,601.981 874.351,601.747 C 874.145,601.97 873.931,602.186 873.744,602.421 C 874.009,602.935 874.297,603.408 874.631,603.856 C 874.52,604.039 874.398,604.218 874.302,604.411 C 874.214,604.604 874.106,604.787 874.033,604.991 C 873.498,604.951 872.942,604.947 872.377,604.98 C 872.299,605.274 872.213,605.563 872.158,605.86 C 872.63,606.195 873.116,606.477 873.608,606.718 L 873.573,607.362 L 873.608,607.999 C 873.111,608.208 872.624,608.466 872.141,608.746 C 872.181,609.051 872.274,609.344 872.348,609.636 C 872.915,609.714 873.492,609.738 874.033,609.723 C 874.106,609.926 874.214,610.115 874.302,610.305 C 874.398,610.496 874.52,610.671 874.631,610.857 C 874.283,611.279 873.973,611.727 873.68,612.207 C 873.856,612.459 874.08,612.669 874.276,612.895 C 874.812,612.7 875.33,612.453 875.81,612.189 C 875.967,612.329 876.145,612.451 876.317,612.581 C 876.486,612.7 876.68,612.804 876.858,612.915 C 876.748,613.451 876.685,613.989 876.646,614.552 C 876.916,614.689 877.212,614.778 877.497,614.886 C 877.881,614.461 878.228,614.007 878.53,613.548 C 878.731,613.598 878.944,613.615 879.154,613.649 C 879.365,613.689 879.584,613.681 879.793,613.696 C 879.945,614.233 880.137,614.73 880.366,615.246 C 880.67,615.24 880.968,615.193 881.266,615.142 C 881.417,614.597 881.51,614.029 881.558,613.485 C 881.768,613.438 881.968,613.36 882.169,613.287 C 882.37,613.221 882.556,613.124 882.752,613.029 C 883.137,613.431 883.541,613.795 883.979,614.134 C 884.244,613.989 884.497,613.809 884.732,613.619 C 884.615,613.075 884.431,612.531 884.217,612.017 C 884.38,611.882 884.523,611.717 884.666,611.56 C 884.816,611.408 884.933,611.232 885.067,611.063 C 885.591,611.243 886.116,611.375 886.668,611.472 C 886.832,611.218 886.967,610.95 887.098,610.669 C 886.733,610.242 886.314,609.839 885.89,609.489 C 885.977,609.288 886.022,609.081 886.072,608.874 C 886.135,608.673 886.165,608.454 886.197,608.247 C 886.738,608.158 887.279,608.035 887.804,607.863 C 887.822,607.562 887.835,607.261 887.805,606.958 C 887.281,606.751 886.745,606.587 886.197,606.471 C 886.165,606.256 886.135,606.045 886.072,605.838 C 886.022,605.634 885.977,605.428 885.89,605.227 C 886.318,604.903 886.76,604.532 887.14,604.14 C 887.005,603.866 886.886,603.591 886.72,603.33 C 886.15,603.399 885.608,603.497 885.067,603.653 C 884.933,603.485 884.816,603.304 884.666,603.157 C 884.523,602.999 884.38,602.834 884.217,602.702 C 884.446,602.208 884.66,601.683 884.822,601.156 C 884.576,600.974 884.335,600.785 884.072,600.638 C 883.596,600.957 883.162,601.298 882.752,601.687 C 882.556,601.594 882.37,601.499 882.169,601.432 C 881.968,601.355 881.768,601.279 881.558,601.235 C 881.537,600.698 881.48,600.129 881.373,599.591 C 881.071,599.544 880.774,599.48 880.471,599.476 C 880.198,599.987 879.976,600.48 879.793,601.023 Z M 882.111,605.231 C 883.287,606.406 883.287,608.315 882.111,609.49 C 880.936,610.666 879.027,610.666 877.852,609.49 C 876.676,608.315 876.676,606.406 877.852,605.231 C 879.027,604.055 880.936,604.055 882.111,605.231 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-item-ertrag {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.75pt' viewBox='-866.301 -1474.02 9.75 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -858.697,1466.29 L -858.697,1465.61 C -858.697,1465.16 -859.069,1464.79 -859.522,1464.79 L -865.255,1464.79 C -865.693,1464.79 -866.053,1465.13 -866.078,1465.57 C -866.063,1465.97 -865.737,1466.29 -865.329,1466.29 L -858.697,1466.29 M -866.113,1467.24 L -866.113,1472.68 C -866.113,1473.13 -865.743,1473.5 -865.287,1473.5 L -857.565,1473.5 C -857.11,1473.5 -856.739,1473.13 -856.739,1472.68 L -856.739,1468.36 C -856.74,1467.9 -857.111,1467.53 -857.566,1467.53 L -865.362,1467.53 C -865.705,1467.53 -865.957,1467.4 -866.113,1467.24' fill='none' stroke-linecap='round' stroke-linejoin='round' stroke='%23ffffff' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 1469.15) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-ertrag--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.75pt' viewBox='-866.301 -1474.02 9.75 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -858.697,1466.29 L -858.697,1465.61 C -858.697,1465.16 -859.069,1464.79 -859.522,1464.79 L -865.255,1464.79 C -865.693,1464.79 -866.053,1465.13 -866.078,1465.57 C -866.063,1465.97 -865.737,1466.29 -865.329,1466.29 L -858.697,1466.29 M -866.113,1467.24 L -866.113,1472.68 C -866.113,1473.13 -865.743,1473.5 -865.287,1473.5 L -857.565,1473.5 C -857.11,1473.5 -856.739,1473.13 -856.739,1472.68 L -856.739,1468.36 C -856.74,1467.9 -857.111,1467.53 -857.566,1467.53 L -865.362,1467.53 C -865.705,1467.53 -865.957,1467.4 -866.113,1467.24' fill='none' stroke-linecap='round' stroke-linejoin='round' stroke='%23ffffff' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 1469.15) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-item-kalendar {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.752pt' viewBox='-866.301 -2450.35 9.75 9.752'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -866.109,2447.86 L -856.742,2447.86' fill='none' stroke='%23ffffff' stroke-width='0.375' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -866.109,2449.33 L -866.109,2441.61 C -866.109,2441.16 -865.737,2440.78 -865.279,2440.78 L -857.572,2440.78 C -857.114,2440.78 -856.742,2441.16 -856.742,2441.61 L -856.742,2449.33 C -856.742,2449.79 -857.114,2450.16 -857.572,2450.16 L -865.279,2450.16 C -865.737,2450.16 -866.109,2449.79 -866.109,2449.33 Z' stroke='%23ffffff' stroke-width='0.375' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 2445.47) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-kalendar--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.752pt' viewBox='-866.301 -2450.35 9.75 9.752'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -866.109,2447.86 L -856.742,2447.86' fill='none' stroke='%23ffffff' stroke-width='0.375' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -866.109,2449.33 L -866.109,2441.61 C -866.109,2441.16 -865.737,2440.78 -865.279,2440.78 L -857.572,2440.78 C -857.114,2440.78 -856.742,2441.16 -856.742,2441.61 L -856.742,2449.33 C -856.742,2449.79 -857.114,2450.16 -857.572,2450.16 L -865.279,2450.16 C -865.737,2450.16 -866.109,2449.79 -866.109,2449.33 Z' stroke='%23ffffff' stroke-width='0.375' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 2445.47) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-item-messages {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.751pt' height='9.75pt' viewBox='-866.299 -1259.03 9.751 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-866.11' y='1250.31' width='9.374' height='7.7' rx='0.83060964756141' ry='0.83060964756141' stroke='%23ffffff' stroke-width='0.375' stroke-linejoin='miter'/%3E%3Cpath d='M -856.736,1256.94 L -860.78,1253.65 C -861.135,1253.36 -861.713,1253.36 -862.068,1253.65 L -866.111,1256.94' fill='none' stroke-width='0.375' stroke='%23ffffff' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -865.845,1250.58 L -863.279,1253.17' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'/%3E%3Cpath d='M -859.567,1253.17 L -857.001,1250.58' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.424 1254.16) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-messages--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.751pt' height='9.75pt' viewBox='-866.299 -1259.03 9.751 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-866.11' y='1250.31' width='9.374' height='7.7' rx='0.83060964756141' ry='0.83060964756141' stroke='%23ffffff' stroke-width='0.375' stroke-linejoin='miter'/%3E%3Cpath d='M -856.736,1256.94 L -860.78,1253.65 C -861.135,1253.36 -861.713,1253.36 -862.068,1253.65 L -866.111,1256.94' fill='none' stroke-width='0.375' stroke='%23ffffff' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -865.845,1250.58 L -863.279,1253.17' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'/%3E%3Cpath d='M -859.567,1253.17 L -857.001,1250.58' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.424 1254.16) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-messages--activation {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.751pt' height='9.75pt' viewBox='-866.299 -1259.03 9.751 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-866.11' y='1250.31' width='9.374' height='7.7' rx='0.83060964756141' ry='0.83060964756141' stroke='%2300aac3' stroke-width='0.375' stroke-linejoin='miter'/%3E%3Cpath d='M -856.736,1256.94 L -860.78,1253.65 C -861.135,1253.36 -861.713,1253.36 -862.068,1253.65 L -866.111,1256.94' fill='none' stroke-width='0.375' stroke='%2300aac3' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -865.845,1250.58 L -863.279,1253.17' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.375'/%3E%3Cpath d='M -859.567,1253.17 L -857.001,1250.58' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.424 1254.16) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-item-settings {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.749pt' height='15.783pt' viewBox='-818.488 -2497.56 15.749 15.783'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.613 2489.67) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke-width='0.563' stroke='%23000000'%3E%3Cpath d='M -810.796,2483.55 C -810.998,2483.56 -811.209,2483.55 -811.413,2483.59 C -811.615,2483.63 -811.821,2483.64 -812.015,2483.69 C -812.282,2483.24 -812.582,2482.8 -812.917,2482.37 C -813.193,2482.46 -813.474,2482.55 -813.742,2482.68 C -813.748,2483.24 -813.708,2483.77 -813.63,2484.3 C -813.801,2484.41 -813.988,2484.51 -814.151,2484.62 C -814.318,2484.75 -814.489,2484.86 -814.641,2485 C -815.082,2484.72 -815.552,2484.47 -816.049,2484.25 C -816.248,2484.46 -816.455,2484.67 -816.636,2484.9 C -816.379,2485.39 -816.102,2485.85 -815.779,2486.28 C -815.886,2486.46 -816.004,2486.63 -816.097,2486.82 C -816.181,2487.01 -816.286,2487.18 -816.357,2487.38 C -816.873,2487.34 -817.409,2487.34 -817.956,2487.37 C -818.031,2487.65 -818.114,2487.93 -818.167,2488.22 C -817.711,2488.54 -817.242,2488.81 -816.767,2489.05 L -816.8,2489.67 L -816.767,2490.28 C -817.247,2490.48 -817.717,2490.73 -818.183,2491 C -818.144,2491.3 -818.055,2491.58 -817.983,2491.86 C -817.436,2491.94 -816.879,2491.96 -816.357,2491.95 C -816.286,2492.14 -816.181,2492.33 -816.097,2492.51 C -816.004,2492.69 -815.886,2492.86 -815.779,2493.04 C -816.115,2493.45 -816.415,2493.88 -816.697,2494.34 C -816.527,2494.59 -816.311,2494.79 -816.121,2495.01 C -815.605,2494.82 -815.104,2494.58 -814.641,2494.33 C -814.489,2494.46 -814.318,2494.58 -814.151,2494.7 C -813.988,2494.82 -813.801,2494.92 -813.63,2495.03 C -813.735,2495.55 -813.796,2496.07 -813.834,2496.61 C -813.573,2496.74 -813.288,2496.83 -813.012,2496.93 C -812.642,2496.52 -812.306,2496.08 -812.015,2495.64 C -811.821,2495.69 -811.615,2495.7 -811.413,2495.74 C -811.209,2495.78 -810.998,2495.77 -810.796,2495.78 C -810.649,2496.3 -810.464,2496.78 -810.243,2497.28 C -809.949,2497.27 -809.661,2497.23 -809.374,2497.18 C -809.228,2496.65 -809.138,2496.1 -809.092,2495.58 C -808.889,2495.53 -808.696,2495.46 -808.502,2495.39 C -808.308,2495.32 -808.128,2495.23 -807.938,2495.14 C -807.567,2495.53 -807.177,2495.88 -806.754,2496.2 C -806.498,2496.07 -806.255,2495.89 -806.027,2495.71 C -806.14,2495.18 -806.318,2494.66 -806.525,2494.16 C -806.367,2494.03 -806.229,2493.87 -806.091,2493.72 C -805.946,2493.57 -805.833,2493.4 -805.703,2493.24 C -805.198,2493.41 -804.691,2493.54 -804.159,2493.64 C -804,2493.39 -803.869,2493.13 -803.743,2492.86 C -804.096,2492.45 -804.5,2492.06 -804.91,2491.72 C -804.825,2491.53 -804.782,2491.33 -804.733,2491.13 C -804.673,2490.93 -804.644,2490.72 -804.613,2490.52 C -804.091,2490.43 -803.568,2490.32 -803.061,2490.15 C -803.044,2489.86 -803.032,2489.57 -803.06,2489.28 C -803.566,2489.08 -804.084,2488.92 -804.613,2488.81 C -804.644,2488.6 -804.673,2488.4 -804.733,2488.2 C -804.782,2488 -804.825,2487.8 -804.91,2487.61 C -804.496,2487.29 -804.069,2486.93 -803.703,2486.56 C -803.833,2486.29 -803.947,2486.03 -804.108,2485.77 C -804.658,2485.84 -805.182,2485.94 -805.703,2486.09 C -805.833,2485.92 -805.946,2485.75 -806.091,2485.61 C -806.229,2485.45 -806.367,2485.3 -806.525,2485.17 C -806.303,2484.69 -806.097,2484.18 -805.94,2483.68 C -806.177,2483.5 -806.411,2483.32 -806.665,2483.18 C -807.124,2483.48 -807.543,2483.81 -807.938,2484.19 C -808.128,2484.1 -808.308,2484.01 -808.502,2483.94 C -808.696,2483.87 -808.889,2483.79 -809.092,2483.75 C -809.112,2483.23 -809.167,2482.68 -809.27,2482.16 C -809.561,2482.12 -809.849,2482.06 -810.141,2482.05 C -810.405,2482.55 -810.619,2483.02 -810.796,2483.55 Z M -809.557,2488.61 C -808.976,2489.19 -808.976,2490.14 -809.557,2490.72 C -810.14,2491.3 -811.086,2491.3 -811.669,2490.72 C -812.25,2490.14 -812.25,2489.19 -811.669,2488.61 C -811.086,2488.03 -810.14,2488.03 -809.557,2488.61 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-settings--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.749pt' height='15.783pt' viewBox='-818.488 -2497.56 15.749 15.783'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(-810.613 2489.67) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke-width='0.563' stroke='%23000000'%3E%3Cpath d='M -810.796,2483.55 C -810.998,2483.56 -811.209,2483.55 -811.413,2483.59 C -811.615,2483.63 -811.821,2483.64 -812.015,2483.69 C -812.282,2483.24 -812.582,2482.8 -812.917,2482.37 C -813.193,2482.46 -813.474,2482.55 -813.742,2482.68 C -813.748,2483.24 -813.708,2483.77 -813.63,2484.3 C -813.801,2484.41 -813.988,2484.51 -814.151,2484.62 C -814.318,2484.75 -814.489,2484.86 -814.641,2485 C -815.082,2484.72 -815.552,2484.47 -816.049,2484.25 C -816.248,2484.46 -816.455,2484.67 -816.636,2484.9 C -816.379,2485.39 -816.102,2485.85 -815.779,2486.28 C -815.886,2486.46 -816.004,2486.63 -816.097,2486.82 C -816.181,2487.01 -816.286,2487.18 -816.357,2487.38 C -816.873,2487.34 -817.409,2487.34 -817.956,2487.37 C -818.031,2487.65 -818.114,2487.93 -818.167,2488.22 C -817.711,2488.54 -817.242,2488.81 -816.767,2489.05 L -816.8,2489.67 L -816.767,2490.28 C -817.247,2490.48 -817.717,2490.73 -818.183,2491 C -818.144,2491.3 -818.055,2491.58 -817.983,2491.86 C -817.436,2491.94 -816.879,2491.96 -816.357,2491.95 C -816.286,2492.14 -816.181,2492.33 -816.097,2492.51 C -816.004,2492.69 -815.886,2492.86 -815.779,2493.04 C -816.115,2493.45 -816.415,2493.88 -816.697,2494.34 C -816.527,2494.59 -816.311,2494.79 -816.121,2495.01 C -815.605,2494.82 -815.104,2494.58 -814.641,2494.33 C -814.489,2494.46 -814.318,2494.58 -814.151,2494.7 C -813.988,2494.82 -813.801,2494.92 -813.63,2495.03 C -813.735,2495.55 -813.796,2496.07 -813.834,2496.61 C -813.573,2496.74 -813.288,2496.83 -813.012,2496.93 C -812.642,2496.52 -812.306,2496.08 -812.015,2495.64 C -811.821,2495.69 -811.615,2495.7 -811.413,2495.74 C -811.209,2495.78 -810.998,2495.77 -810.796,2495.78 C -810.649,2496.3 -810.464,2496.78 -810.243,2497.28 C -809.949,2497.27 -809.661,2497.23 -809.374,2497.18 C -809.228,2496.65 -809.138,2496.1 -809.092,2495.58 C -808.889,2495.53 -808.696,2495.46 -808.502,2495.39 C -808.308,2495.32 -808.128,2495.23 -807.938,2495.14 C -807.567,2495.53 -807.177,2495.88 -806.754,2496.2 C -806.498,2496.07 -806.255,2495.89 -806.027,2495.71 C -806.14,2495.18 -806.318,2494.66 -806.525,2494.16 C -806.367,2494.03 -806.229,2493.87 -806.091,2493.72 C -805.946,2493.57 -805.833,2493.4 -805.703,2493.24 C -805.198,2493.41 -804.691,2493.54 -804.159,2493.64 C -804,2493.39 -803.869,2493.13 -803.743,2492.86 C -804.096,2492.45 -804.5,2492.06 -804.91,2491.72 C -804.825,2491.53 -804.782,2491.33 -804.733,2491.13 C -804.673,2490.93 -804.644,2490.72 -804.613,2490.52 C -804.091,2490.43 -803.568,2490.32 -803.061,2490.15 C -803.044,2489.86 -803.032,2489.57 -803.06,2489.28 C -803.566,2489.08 -804.084,2488.92 -804.613,2488.81 C -804.644,2488.6 -804.673,2488.4 -804.733,2488.2 C -804.782,2488 -804.825,2487.8 -804.91,2487.61 C -804.496,2487.29 -804.069,2486.93 -803.703,2486.56 C -803.833,2486.29 -803.947,2486.03 -804.108,2485.77 C -804.658,2485.84 -805.182,2485.94 -805.703,2486.09 C -805.833,2485.92 -805.946,2485.75 -806.091,2485.61 C -806.229,2485.45 -806.367,2485.3 -806.525,2485.17 C -806.303,2484.69 -806.097,2484.18 -805.94,2483.68 C -806.177,2483.5 -806.411,2483.32 -806.665,2483.18 C -807.124,2483.48 -807.543,2483.81 -807.938,2484.19 C -808.128,2484.1 -808.308,2484.01 -808.502,2483.94 C -808.696,2483.87 -808.889,2483.79 -809.092,2483.75 C -809.112,2483.23 -809.167,2482.68 -809.27,2482.16 C -809.561,2482.12 -809.849,2482.06 -810.141,2482.05 C -810.405,2482.55 -810.619,2483.02 -810.796,2483.55 Z M -809.557,2488.61 C -808.976,2489.19 -808.976,2490.14 -809.557,2490.72 C -810.14,2491.3 -811.086,2491.3 -811.669,2490.72 C -812.25,2490.14 -812.25,2489.19 -811.669,2488.61 C -811.086,2488.03 -810.14,2488.03 -809.557,2488.61 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu-item-organisation {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='10.094pt' height='9.779pt' viewBox='-866.471 -1329.37 10.094 9.779'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke='%23ffffff' stroke-width='0.375'%3E%3Cpath d='M -864.544,1319.85 L -865.976,1320.68 C -866.147,1320.78 -866.284,1321.02 -866.284,1321.21 L -866.284,1322.87 C -866.284,1323.06 -866.147,1323.3 -865.976,1323.4 L -864.544,1324.23 C -864.375,1324.32 -864.099,1324.32 -863.93,1324.23 L -862.496,1323.4 C -862.326,1323.3 -862.189,1323.06 -862.189,1322.87 L -862.189,1321.21 C -862.189,1321.02 -862.326,1320.78 -862.496,1320.68 L -863.93,1319.85 C -864.099,1319.75 -864.375,1319.75 -864.544,1319.85 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -861.732,1324.73 L -863.164,1325.56 C -863.335,1325.65 -863.472,1325.89 -863.472,1326.09 L -863.472,1327.74 C -863.472,1327.94 -863.335,1328.18 -863.164,1328.27 L -861.732,1329.1 C -861.563,1329.2 -861.287,1329.2 -861.118,1329.1 L -859.684,1328.27 C -859.514,1328.18 -859.377,1327.94 -859.377,1327.74 L -859.377,1326.09 C -859.377,1325.89 -859.514,1325.65 -859.684,1325.56 L -861.118,1324.73 C -861.287,1324.63 -861.563,1324.63 -861.732,1324.73 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -858.919,1319.85 L -860.352,1320.68 C -860.523,1320.78 -860.66,1321.02 -860.66,1321.21 L -860.66,1322.87 C -860.66,1323.06 -860.523,1323.3 -860.352,1323.4 L -858.919,1324.23 C -858.75,1324.32 -858.475,1324.32 -858.306,1324.23 L -856.872,1323.4 C -856.702,1323.3 -856.565,1323.06 -856.565,1322.87 L -856.565,1321.21 C -856.565,1321.02 -856.702,1320.78 -856.872,1320.68 L -858.306,1319.85 C -858.475,1319.75 -858.75,1319.75 -858.919,1319.85 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1324.48) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu-item-organisation--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='10.094pt' height='9.779pt' viewBox='-866.471 -1329.37 10.094 9.779'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke='%23ffffff' stroke-width='0.375'%3E%3Cpath d='M -864.544,1319.85 L -865.976,1320.68 C -866.147,1320.78 -866.284,1321.02 -866.284,1321.21 L -866.284,1322.87 C -866.284,1323.06 -866.147,1323.3 -865.976,1323.4 L -864.544,1324.23 C -864.375,1324.32 -864.099,1324.32 -863.93,1324.23 L -862.496,1323.4 C -862.326,1323.3 -862.189,1323.06 -862.189,1322.87 L -862.189,1321.21 C -862.189,1321.02 -862.326,1320.78 -862.496,1320.68 L -863.93,1319.85 C -864.099,1319.75 -864.375,1319.75 -864.544,1319.85 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -861.732,1324.73 L -863.164,1325.56 C -863.335,1325.65 -863.472,1325.89 -863.472,1326.09 L -863.472,1327.74 C -863.472,1327.94 -863.335,1328.18 -863.164,1328.27 L -861.732,1329.1 C -861.563,1329.2 -861.287,1329.2 -861.118,1329.1 L -859.684,1328.27 C -859.514,1328.18 -859.377,1327.94 -859.377,1327.74 L -859.377,1326.09 C -859.377,1325.89 -859.514,1325.65 -859.684,1325.56 L -861.118,1324.73 C -861.287,1324.63 -861.563,1324.63 -861.732,1324.73 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -858.919,1319.85 L -860.352,1320.68 C -860.523,1320.78 -860.66,1321.02 -860.66,1321.21 L -860.66,1322.87 C -860.66,1323.06 -860.523,1323.3 -860.352,1323.4 L -858.919,1324.23 C -858.75,1324.32 -858.475,1324.32 -858.306,1324.23 L -856.872,1323.4 C -856.702,1323.3 -856.565,1323.06 -856.565,1322.87 L -856.565,1321.21 C -856.565,1321.02 -856.702,1320.78 -856.872,1320.68 L -858.306,1319.85 C -858.475,1319.75 -858.75,1319.75 -858.919,1319.85 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1324.48) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-status-created {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1305.1 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1312.97 -77.77) rotate(90)' stroke='none' stroke-width='0.75' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linejoin='miter' stroke-width='0.75'%3E%3Cg id='Group_1' stroke='%23cccccc'%3E%3Cpath d='M 1311.95,-85.021 L 1307.2,-82.276 C 1306.64,-81.952 1306.18,-81.162 1306.18,-80.513 L 1306.18,-75.025 C 1306.18,-74.376 1306.64,-73.586 1307.2,-73.262 L 1311.95,-70.517 C 1312.52,-70.193 1313.43,-70.193 1313.99,-70.517 L 1318.74,-73.262 C 1319.3,-73.586 1319.76,-74.376 1319.76,-75.025 L 1319.76,-80.513 C 1319.76,-81.162 1319.3,-81.952 1318.74,-82.276 L 1313.99,-85.021 C 1313.43,-85.346 1312.52,-85.346 1311.95,-85.021 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cellipse rx='0.475' ry='0.475' transform='translate(1312.97 -77.77) rotate(135)' stroke='none' fill='%23cccccc'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-status-signed {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1415.82 69.895 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1423.7 -77.771) rotate(-90)' stroke='none' stroke-width='0.75' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='%23b2b2b2' stroke-width='0.75'%3E%3Cpath d='M 1424.73,-70.527 L 1429.47,-73.277 C 1430.03,-73.603 1430.49,-74.393 1430.49,-75.042 L 1430.48,-80.525 C 1430.48,-81.174 1430.02,-81.963 1429.46,-82.286 L 1424.7,-85.019 C 1424.14,-85.342 1423.23,-85.341 1422.67,-85.015 L 1417.92,-82.265 C 1417.36,-81.939 1416.91,-81.149 1416.91,-80.5 L 1416.92,-75.017 C 1416.92,-74.368 1417.38,-73.579 1417.94,-73.256 L 1422.69,-70.523 C 1423.26,-70.2 1424.17,-70.202 1424.73,-70.527 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1423.1,-82.1 L 1420.25,-80.446 C 1419.92,-80.254 1419.66,-79.79 1419.66,-79.41 L 1419.66,-76.115' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-status-cancellation {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1353.1 69.894 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1360.97 -77.769) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%23e50000' stroke-width='0.75'%3E%3Cpath d='M 1359.94,-85.013 L 1355.2,-82.263 C 1354.64,-81.937 1354.18,-81.147 1354.18,-80.498 L 1354.19,-75.015 C 1354.19,-74.366 1354.65,-73.577 1355.21,-73.254 L 1359.97,-70.521 C 1360.53,-70.198 1361.44,-70.199 1362,-70.525 L 1366.75,-73.275 C 1367.31,-73.601 1367.76,-74.391 1367.76,-75.04 L 1367.75,-80.523 C 1367.75,-81.172 1367.29,-81.961 1366.73,-82.284 L 1361.98,-85.017 C 1361.41,-85.34 1360.5,-85.338 1359.94,-85.013 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1364.84,-75.534 L 1357.1,-80.004' fill='none' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-status-submitted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='1397.28 69.894 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1405.15 -77.769) rotate(90)' stroke='none' stroke-linejoin='miter' stroke-width='0.75'/%3E%3Cg id='Group' stroke='%23999999' stroke-width='0.75'%3E%3Cpath d='M 1404.12,-85.013 L 1399.38,-82.263 C 1398.82,-81.937 1398.36,-81.147 1398.37,-80.498 L 1398.38,-75.015 C 1398.38,-74.366 1398.83,-73.577 1399.4,-73.254 L 1404.15,-70.521 C 1404.71,-70.198 1405.62,-70.199 1406.18,-70.525 L 1410.93,-73.275 C 1411.49,-73.601 1411.94,-74.391 1411.94,-75.04 L 1411.93,-80.523 C 1411.93,-81.172 1411.47,-81.961 1410.91,-82.284 L 1406.16,-85.017 C 1405.6,-85.34 1404.68,-85.338 1404.12,-85.013 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M 1405.75,-73.44 L 1408.6,-75.094 C 1408.93,-75.286 1409.2,-75.75 1409.2,-76.13 L 1409.2,-79.425' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Layer_2' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-arrow-small {
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 80%;
  margin: 0 auto;
}

.icon-arrow {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.749pt' height='3.207pt' viewBox='983.767 -490.839 9.749 3.207'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' stroke='%23333333' fill='%23333333'%3E%3Cpath d='M 984.142,490.464 L 987.52,488.304 C 988.136,487.907 989.146,487.91 989.768,488.303 L 993.141,490.464' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-arrow-rotate {
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23ffffff' clip-rule='evenodd'%3E%3Cpath d='M23.245 4l-11.245 14.374-11.219-14.374-.781.619 12 15.381 12-15.391-.755-.609z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 2.5rem 1.5rem;
  transform: rotate(90deg);
  transform: rotate(180deg);
}

.icon-box-header {
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.icon-settlement-less {
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' standalone='no'?%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!--Generator: Xara Designer (www.xara.com), SVG filter version: 6.3.0.23--%3E%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='41.25pt' height='35.828pt' viewBox='0 -38.539 41.25 35.828'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Ebene 1' transform='scale(1 -1)'%3E%3Cpath d='M 0.375,38.164 L 20.628,3.086' fill='none' stroke-width='0.75' stroke='%23ffffff' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 40.875,38.164 L 20.628,3.086' fill='none' stroke-width='0.75' stroke='%23ffffff' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-settlement-equal {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.5pt' height='25.5pt' viewBox='-734.274 -2480.32 25.5 25.5'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.523 2467.57) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cpath d='M -733.898,2467.57 L -709.149,2467.57' fill='none' stroke='%23000000' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-settlement-more {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.501pt' height='25.5pt' viewBox='-734.275 -2561.14 25.501 25.5'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.524 2548.39) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%2300a9c8' stroke-width='0.75'%3E%3Cpath d='M -733.899,2537.67 L -721.521,2559.11' fill='none'/%3E%3Cpath d='M -709.149,2537.67 L -721.521,2559.11' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-settlement {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.5pt' height='25.503pt' viewBox='-734.274 -2602.96 25.5 25.503'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23000000' stroke-width='0.75' fill='%23ffffff'%3E%3Cg id='Group_1'%3E%3Cpath d='M -732.241,2577.83 L -710.804,2590.21' fill='none'/%3E%3Cpath d='M -732.241,2602.58 L -710.804,2590.21' fill='none'/%3E%3C/g%3E%3Cpath d='M -732.241,2590.21 L -722.701,2590.21' fill='none'/%3E%3C/g%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.523 2590.21) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-settlement-less {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.501pt' height='25.5pt' viewBox='-734.275 -2521.96 25.501 25.5'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.524 2509.21) rotate(-90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23e50000' stroke-width='0.75'%3E%3Cpath d='M -733.899,2519.93 L -721.521,2498.49' fill='none'/%3E%3Cpath d='M -709.149,2519.93 L -721.521,2498.49' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-orgamotion-performance-index {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.5pt' height='25.5pt' viewBox='-734.269 -2034.55 25.5 25.5'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23000000' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -728.528,2019.91 C -723.662,2029.03 -717.786,2034.75 -710.044,2034.13 C -709.821,2034.12 -709.629,2034.06 -709.489,2033.94 C -709.45,2033.91 -709.411,2033.87 -709.375,2033.83 C -709.263,2033.69 -709.2,2033.5 -709.188,2033.27 C -708.574,2025.53 -714.285,2019.66 -723.409,2014.79 C -723.928,2014.61 -724.317,2014.76 -724.593,2015.23 C -722.143,2017.15 -720.656,2019.64 -722.167,2021.15 C -723.674,2022.66 -726.172,2021.18 -728.089,2018.72 C -728.564,2019 -728.715,2019.39 -728.528,2019.91 Z M -715.789,2025.41 C -714.62,2025.41 -713.669,2026.36 -713.669,2027.53 C -713.669,2028.7 -714.622,2029.65 -715.792,2029.65 C -716.961,2029.65 -717.917,2028.7 -717.914,2027.53 C -717.917,2026.36 -716.963,2025.41 -715.789,2025.41 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -724.275,2019.04 L -728.797,2014.52' fill='none'/%3E%3Cpath d='M -733.788,2022.93 C -733.96,2023.26 -733.916,2023.63 -733.679,2023.87 L -731.568,2025.98 C -729.925,2027.62 -727.713,2027.83 -726.975,2027.4 L -726.949,2027.39 L -726.963,2027.36 C -728.152,2025.75 -729.137,2024.1 -729.957,2022.56 L -729.967,2022.55 L -729.986,2022.55 C -730.605,2022.69 -731.189,2022.64 -732.924,2022.46 C -733.271,2022.42 -733.62,2022.62 -733.788,2022.93 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -720.377,2009.53 C -720.056,2009.36 -719.685,2009.4 -719.443,2009.63 L -717.33,2011.75 C -715.69,2013.39 -715.479,2015.6 -715.915,2016.34 L -715.925,2016.36 L -715.954,2016.35 C -717.565,2015.16 -719.215,2014.18 -720.75,2013.35 L -720.767,2013.34 L -720.765,2013.33 C -720.624,2012.71 -720.668,2012.12 -720.85,2010.39 C -720.891,2010.04 -720.69,2009.69 -720.377,2009.53 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.518 2021.8) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-orgamotion-zipCode {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.501pt' height='25.502pt' viewBox='-734.269 -2075.62 25.501 25.502'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -733.892,2050.49 L -709.143,2050.49' fill='none' stroke='%23000000' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -721.518,2050.49 L -721.518,2070.01' fill='none' stroke-width='0.75' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cellipse rx='2.617' ry='2.617' transform='translate(-721.518 2072.63) rotate(135)' stroke-width='0.75' stroke='%23000000' stroke-linejoin='miter'/%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.518 2062.87) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-orgamotion-products {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.5pt' height='25.504pt' viewBox='-734.274 -2313 25.5 25.504'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.523 2300.25) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke-width='0.75'%3E%3Cpath d='M -723.204,2288.28 L -731.051,2292.81 C -731.978,2293.35 -732.733,2294.65 -732.733,2295.72 L -732.733,2304.78 C -732.733,2305.86 -731.978,2307.16 -731.051,2307.69 L -723.204,2312.22 C -722.276,2312.76 -720.772,2312.76 -719.842,2312.22 L -711.994,2307.69 C -711.067,2307.16 -710.312,2305.86 -710.314,2304.78 L -710.312,2295.72 C -710.314,2294.65 -711.067,2293.35 -711.994,2292.81 L -719.842,2288.28 C -720.77,2287.74 -722.276,2287.74 -723.204,2288.28 Z' stroke='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M -720.053,2301.09 L -712.563,2305.41' fill='none' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -722.993,2301.09 L -730.482,2305.41' fill='none' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -721.523,2289.95 L -721.523,2298.44' fill='none' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-orgamotion-contracts {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.5pt' height='25.501pt' viewBox='-734.274 -2357.03 25.5 25.501'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -709.158,2351.22 L -709.158,2337.62 C -709.158,2336.6 -709.987,2335.78 -711.006,2335.78 L -722.311,2335.78 C -723.33,2335.78 -724.156,2336.6 -724.156,2337.62 L -724.156,2354.81 C -724.156,2355.83 -723.33,2356.66 -722.311,2356.66 L -714.597,2356.66' fill='none'/%3E%3Cpath d='M -718.887,2335.78 L -718.888,2333.76 C -718.888,2332.74 -719.718,2331.91 -720.735,2331.91 L -732.042,2331.91 C -733.059,2331.91 -733.888,2332.74 -733.888,2333.76 L -733.888,2350.94 C -733.888,2351.96 -733.059,2352.79 -732.042,2352.79 L -724.156,2352.79' fill='none'/%3E%3Cpath d='M -714.597,2356.66 L -709.158,2351.22' fill='none'/%3E%3Cpath d='M -714.597,2356.66 L -714.597,2352.75 C -714.597,2351.91 -713.908,2351.22 -713.06,2351.22 L -709.158,2351.22' fill='none'/%3E%3C/g%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.523 2344.28) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cpath d='M -720.463,2339.53 L -712.846,2339.53' fill='none' stroke='%23000000' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -720.463,2343.28 L -712.846,2343.28' fill='none' stroke='%23000000' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -720.463,2347.03 L -712.846,2347.03' fill='none' stroke='%23000000' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -730.175,2335.78 L -725.933,2335.78' fill='none' stroke='%23000000' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -730.175,2339.53 L -725.933,2339.53' fill='none' stroke='%23000000' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -730.175,2343.28 L -725.933,2343.28' fill='none' stroke='%23000000' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-orgamotion-contracts-index {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.5pt' height='25.515pt' viewBox='-734.272 -2269.77 25.5 25.515'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.521 2257.01) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke='%23000000' stroke-width='0.75'%3E%3Cpath d='M -723.204,2245.03 L -731.053,2249.57 C -731.983,2250.1 -732.736,2251.41 -732.735,2252.48 L -732.736,2261.55 C -732.736,2262.62 -731.983,2263.92 -731.055,2264.46 L -723.204,2268.99 C -722.276,2269.53 -720.77,2269.53 -719.84,2268.99 L -711.991,2264.46 C -711.063,2263.92 -710.308,2262.62 -710.31,2261.55 L -710.308,2252.48 C -710.31,2251.41 -711.063,2250.1 -711.991,2249.57 L -719.84,2245.03 C -720.768,2244.5 -722.276,2244.5 -723.204,2245.03 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke-linecap='round' fill='%23ffffff'%3E%3Cg id='Group_2'%3E%3Cpath d='M -715.488,2260.5 L -727.558,2253.53' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_3' stroke-linejoin='round' stroke-linecap='round' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M -715.488,2253.53 L -727.558,2260.5' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' stroke-linejoin='round' stroke-linecap='round' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cpath d='M -721.523,2250.04 L -721.523,2263.98' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-orgamotion-partner {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.5pt' height='25.504pt' viewBox='-734.274 -2398.93 25.5 25.504'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.523 2386.18) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cpath d='M -723.207,2374.2 L -731.048,2378.74 C -731.985,2379.27 -732.736,2380.58 -732.736,2381.65 L -732.736,2390.71 C -732.736,2391.79 -731.985,2393.09 -731.048,2393.62 L -723.207,2398.16 C -722.28,2398.69 -720.77,2398.69 -719.844,2398.16 L -711.992,2393.62 C -711.061,2393.09 -710.31,2391.79 -710.31,2390.71 L -710.31,2381.65 C -710.31,2380.58 -711.061,2379.27 -711.992,2378.74 L -719.844,2374.2 C -720.77,2373.68 -722.28,2373.68 -723.207,2374.2 Z' stroke='%23ffffff' stroke-width='0.75' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' stroke-width='0.75'%3E%3Cpath d='M -729.283,2378.43 C -729.283,2380.42 -728.523,2382.4 -727.008,2383.92 C -723.98,2386.95 -719.064,2386.95 -716.032,2383.92 C -714.519,2382.4 -713.763,2380.42 -713.763,2378.43' fill='none'/%3E%3Cellipse rx='2.618' ry='2.617' transform='translate(-721.525 2391.32) rotate(135.015)'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-orgamotion-goal-index {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.501pt' height='25.501pt' viewBox='-734.269 -2118.03 25.501 25.501'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cellipse rx='12.377' ry='12.377' transform='translate(-721.518 2105.28) rotate(135)' stroke-width='0.75' stroke='%23000000' stroke-linejoin='miter'/%3E%3Cellipse rx='0.478' ry='0.478' transform='translate(-721.518 2105.28) rotate(135)' stroke-width='0.75' stroke='none' fill='%23000000' stroke-linejoin='miter'/%3E%3Cpath d='M -730.893,2105.27 L -724.518,2105.27' fill='none' stroke-width='0.75' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -718.518,2105.27 L -712.143,2105.27' fill='none' stroke-width='0.75' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -721.518,2095.9 L -721.518,2102.27' fill='none' stroke-width='0.75' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -721.518,2108.27 L -721.518,2114.65' fill='none' stroke-width='0.75' stroke='%23000000' stroke-linejoin='round' stroke-linecap='round'/%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.518 2105.28) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-orgamotion-organiation {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='25.502pt' height='25.5pt' viewBox='-734.275 -2440.78 25.502 25.5'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-12.749' y='-12.749' width='25.499' height='25.499' transform='translate(-721.524 2428.03) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3Cg id='Group' stroke-linejoin='miter' stroke='%23000000' stroke-width='0.75'%3E%3Cpath d='M -729.467,2416.26 L -733.113,2418.37 C -733.549,2418.62 -733.898,2419.23 -733.898,2419.72 L -733.898,2423.93 C -733.898,2424.44 -733.549,2425.04 -733.113,2425.29 L -729.467,2427.4 C -729.036,2427.65 -728.333,2427.65 -727.903,2427.4 L -724.251,2425.29 C -723.818,2425.04 -723.47,2424.44 -723.47,2423.93 L -723.47,2419.72 C -723.47,2419.23 -723.818,2418.62 -724.251,2418.37 L -727.903,2416.26 C -728.333,2416.01 -729.036,2416.01 -729.467,2416.26 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -722.306,2428.67 L -725.952,2430.78 C -726.388,2431.03 -726.737,2431.64 -726.737,2432.14 L -726.737,2436.35 C -726.737,2436.85 -726.388,2437.45 -725.952,2437.7 L -722.306,2439.81 C -721.875,2440.06 -721.173,2440.06 -720.742,2439.81 L -717.091,2437.7 C -716.658,2437.45 -716.309,2436.85 -716.309,2436.35 L -716.309,2432.14 C -716.309,2431.64 -716.658,2431.03 -717.091,2430.78 L -720.742,2428.67 C -721.173,2428.43 -721.875,2428.43 -722.306,2428.67 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -715.142,2416.26 L -718.792,2418.37 C -719.227,2418.62 -719.576,2419.23 -719.576,2419.72 L -719.576,2423.93 C -719.576,2424.44 -719.227,2425.04 -718.792,2425.29 L -715.142,2427.4 C -714.712,2427.65 -714.012,2427.65 -713.581,2427.4 L -709.93,2425.29 C -709.497,2425.04 -709.148,2424.44 -709.148,2423.93 L -709.148,2419.72 C -709.148,2419.23 -709.497,2418.62 -709.93,2418.37 L -713.581,2416.26 C -714.012,2416.01 -714.712,2416.01 -715.142,2416.26 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.icon-location-pin--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%2300aac3' width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M12 10c-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2-.896 2-2 2m0-5c-1.657 0-3 1.343-3 3s1.343 3 3 3 3-1.343 3-3-1.343-3-3-3m-7 2.602c0-3.517 3.271-6.602 7-6.602s7 3.085 7 6.602c0 3.455-2.563 7.543-7 14.527-4.489-7.073-7-11.072-7-14.527m7-7.602c-4.198 0-8 3.403-8 7.602 0 4.198 3.469 9.21 8 16.398 4.531-7.188 8-12.2 8-16.398 0-4.199-3.801-7.602-8-7.602'/%3E%3C/svg%3E");
}
.icon-location-pin--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%23bec6cc' width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M12 10c-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2-.896 2-2 2m0-5c-1.657 0-3 1.343-3 3s1.343 3 3 3 3-1.343 3-3-1.343-3-3-3m-7 2.602c0-3.517 3.271-6.602 7-6.602s7 3.085 7 6.602c0 3.455-2.563 7.543-7 14.527-4.489-7.073-7-11.072-7-14.527m7-7.602c-4.198 0-8 3.403-8 7.602 0 4.198 3.469 9.21 8 16.398 4.531-7.188 8-12.2 8-16.398 0-4.199-3.801-7.602-8-7.602'/%3E%3C/svg%3E");
}
.icon-location-pin--not-highlighted:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%2300aac3' width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M12 10c-1.104 0-2-.896-2-2s.896-2 2-2 2 .896 2 2-.896 2-2 2m0-5c-1.657 0-3 1.343-3 3s1.343 3 3 3 3-1.343 3-3-1.343-3-3-3m-7 2.602c0-3.517 3.271-6.602 7-6.602s7 3.085 7 6.602c0 3.455-2.563 7.543-7 14.527-4.489-7.073-7-11.072-7-14.527m7-7.602c-4.198 0-8 3.403-8 7.602 0 4.198 3.469 9.21 8 16.398 4.531-7.188 8-12.2 8-16.398 0-4.199-3.801-7.602-8-7.602'/%3E%3C/svg%3E");
}

.icon-remove-item {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.789pt' height='15.789pt' viewBox='88.254 -631.377 15.789 15.789'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23cccccc'%3E%3Crect x='-7.628' y='-7.628' width='15.256' height='15.256' rx='63.2118414840139' ry='63.2118414840139' transform='translate(96.149 623.483) rotate(90)' stroke-width='0.532' stroke-linejoin='miter'/%3E%3Cpath d='M 91.563,623.483 L 100.735,623.483' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke-width='0.563'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(96.148 623.482) rotate(90)' stroke='none' stroke-width='0.75' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-add-item {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.789pt' height='15.789pt' viewBox='64.314 -631.377 15.789 15.789'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='%23cccccc'%3E%3Crect x='-7.628' y='-7.628' width='15.256' height='15.256' rx='62.9307694857272' ry='62.9307694857272' transform='translate(72.209 623.483) rotate(90)' stroke-width='0.532' stroke-linejoin='miter'/%3E%3Cpath d='M 72.209,618.897 L 72.209,628.069' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke-width='0.563'/%3E%3Cpath d='M 67.623,623.483 L 76.795,623.483' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke-width='0.563'/%3E%3C/g%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(72.208 623.482) rotate(90)' stroke='none' stroke-width='0.75' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}

.icon-backoffice-check {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.751pt' height='15.751pt' viewBox='176.87 -460.852 15.751 15.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(184.746 452.977) rotate(90)' stroke='none' stroke-width='0.75' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linejoin='miter' stroke-width='0.75'%3E%3Cg id='Group_1' stroke='%23666666'%3E%3Cpath d='M 183.729,445.727 L 178.977,448.472 C 178.414,448.796 177.958,449.586 177.959,450.235 L 177.958,455.723 C 177.958,456.372 178.414,457.162 178.976,457.486 L 183.729,460.231 C 184.291,460.555 185.203,460.555 185.766,460.231 L 190.518,457.486 C 191.08,457.162 191.537,456.372 191.536,455.723 L 191.537,450.235 C 191.536,449.586 191.08,448.796 190.518,448.472 L 185.766,445.727 C 185.204,445.402 184.291,445.402 183.729,445.727 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cellipse rx='0.475' ry='0.475' transform='translate(184.746 452.978) rotate(135)' fill='%23666666' stroke='none'/%3E%3C/g%3E%3Cellipse rx='3.641' ry='3.641' transform='translate(188.691 449.049) rotate(-135)' stroke='%23ffffff' stroke-width='0.576' fill='%2300bf02' stroke-linejoin='miter'/%3E%3Cg id='Group_2' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' stroke-width='0.576' fill='%23ffffff'%3E%3Cpath d='M 189.869,450.418 L 188.288,447.681' fill='none'/%3E%3Cpath d='M 187.513,449.024 L 188.288,447.681' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.KAZE_LIGHT--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='61.181pt' height='43.944pt' viewBox='824.313 -1593.94 61.181 43.944'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='36.417' y2='0' gradientTransform='translate(846.173 1565.66) rotate(8.15369) skewX(-0.365873)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='22.142' y2='0' gradientTransform='translate(844.912 1580.42) rotate(-11.9133) skewX(-0.278181)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='25.519' y2='0' gradientTransform='translate(849.754 1581.98) rotate(-11.8537) skewX(-0.283312)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='13.178' y2='0' gradientTransform='translate(864.596 1577.75) rotate(-13.4267) skewX(-0.264499)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='16.279' y2='0' gradientTransform='translate(854.22 1566.32) rotate(20.4209) skewX(-0.369778)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.275' y2='0' gradientTransform='translate(854.946 1577.68) rotate(-12.9535) skewX(-0.255069)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group'%3E%3Cg id='Group_1'%3E%3Cpath d='M 885.392,1571.38 L 885.38,1571.84 C 882.091,1571.91 878.79,1571.72 875.437,1570.54 C 867.775,1567.64 861.199,1566.43 855.622,1566.44' fill='none' stroke='%23000000' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 883.048,1571.27 C 882.889,1571.72 883.06,1572.24 883.432,1572.42 C 883.803,1572.61 884.236,1572.4 884.395,1571.96 C 884.556,1571.51 884.384,1571 884.013,1570.81 C 883.642,1570.62 883.209,1570.83 883.048,1571.27 Z' stroke='%23000000' fill='%23000000' stroke-width='0.209' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 884.395,1571.38 L 884.431,1571.85 L 885.297,1571.85 C 885.353,1571.85 885.411,1571.8 885.412,1571.77 L 885.431,1571.46 C 885.431,1571.42 885.372,1571.38 885.322,1571.38 L 884.395,1571.38 Z' fill='%23000000' stroke='none' stroke-width='0.026' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 847.347,1567.68 C 847.391,1567.62 847.444,1567.55 847.501,1567.49 C 847.447,1567.55 847.395,1567.61 847.347,1567.68 Z M 857.383,1568.88 L 857.382,1568.88 L 877.831,1571.23 C 876.582,1570.95 875.429,1570.43 874.253,1570.11 C 869.733,1568.87 863.895,1568.41 857.112,1567.91 C 857.26,1568.2 857.355,1568.52 857.383,1568.88 Z' fill='%23000000' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 857.256,1568.25 C 857.389,1568.65 857.43,1569.1 857.354,1569.61 L 872.615,1572.45 C 871.28,1571.9 869.811,1571.43 868.386,1570.86 C 864.542,1568.85 860.265,1567.98 857.256,1568.25 Z' fill='%23000000' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 873.28,1572.18 C 875.086,1572.53 876.693,1573.12 878.417,1573.5 C 880.018,1573.85 881.752,1574.21 883.264,1574.38 L 883.231,1574.92 C 881.253,1574.78 878.978,1574.29 876.594,1573.57 L 872.615,1572.45' fill='none' stroke='%23000000' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 880.854,1574.08 C 880.687,1574.52 880.867,1575.04 881.257,1575.23 C 881.647,1575.41 882.102,1575.2 882.269,1574.76 C 882.438,1574.31 882.259,1573.8 881.868,1573.61 C 881.477,1573.42 881.023,1573.63 880.854,1574.08 Z' stroke='%23000000' fill='%23000000' stroke-width='0.209' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 854.432,1565.85 C 854.509,1565.88 854.586,1565.91 854.663,1565.95 C 855.81,1566.46 856.873,1567.14 857.249,1568.23 L 857.243,1568.23 L 877.942,1570.46 C 875.455,1569.71 872.541,1568.71 870.228,1567.95 C 864.902,1566.21 859.337,1565.57 854.432,1565.85 Z M 847.857,1567.11 C 847.931,1567.03 848.034,1566.93 848.146,1566.85 C 848.042,1566.93 847.945,1567.02 847.857,1567.11 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 854.228,1565.76 C 861.461,1565.31 868.09,1567.19 874.56,1569.48 C 880.264,1571.51 883.126,1571.32 885.392,1571.38' fill='none' stroke='%23000000' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 859.66,1577.24 L 855.978,1578.14 C 855.951,1578.42 855.898,1578.68 855.824,1578.94 C 857.081,1578.51 858.358,1577.95 859.66,1577.24 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 855.824,1578.94 C 857.081,1578.51 858.358,1577.95 859.66,1577.24 C 866.061,1573.42 872.838,1571.67 879.924,1571.6' fill='none' stroke='%23000000' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 859.482,1577.93 L 883.605,1571.89 C 873.653,1571.83 866.059,1574.3 859.482,1577.93 Z' fill='%23000000' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 859.482,1577.93 L 855.859,1578.81 C 855.78,1579.11 855.672,1579.4 855.537,1579.66 C 856.829,1579.23 858.142,1578.66 859.482,1577.93 Z' fill='%23000000' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 866.757,1578.34 L 853.763,1581.62 C 853.533,1581.78 853.291,1581.92 853.043,1582.04 C 857.382,1581.88 862.054,1580.9 866.757,1578.34 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 853.043,1582.04 C 857.382,1581.88 862.054,1580.9 866.757,1578.34 C 873.744,1574.38 876.628,1574.27 880.992,1574.72' fill='none' stroke='%23000000' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 866.757,1578.34 L 880.992,1574.72 C 874.462,1573.7 870.413,1576.54 866.757,1578.34 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 868.73,1576.61 L 877.753,1573.9 C 875.473,1573.79 870.177,1575.38 868.73,1576.61 Z' fill='%23000000' stroke='none' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 868.73,1576.61 L 854.733,1580.8 C 854.478,1581.07 854.192,1581.32 853.885,1581.54 C 858.073,1581.23 865.8,1578.76 868.73,1576.61 Z' fill='%23000000' stroke='none' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 857.457,1568.04 C 857.365,1568.05 857.277,1568.07 857.189,1568.08 C 857.331,1568.41 857.405,1568.79 857.389,1569.22 L 873.28,1572.18 C 871.949,1571.63 870.483,1571.16 869.052,1570.6 C 865.005,1568.48 860.479,1567.62 857.457,1568.04 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 859.66,1577.24 L 879.924,1571.6 C 871.505,1571.77 865.14,1574.02 859.66,1577.24 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_2' fill='%23000000' fill-rule='nonzero' stroke-linejoin='miter' stroke='none' stroke-width='0.003'%3E%3Cpath d='M 848.862,1567.4 L 848.368,1568.38 L 848.534,1568.46 L 848.79,1567.97 L 848.871,1568.17 L 848.939,1568.35 L 849.081,1568.74 L 849.341,1568.88 L 849.118,1568.26 L 849.834,1567.9 L 849.618,1567.79 L 849.044,1568.08 L 848.911,1567.73 L 849.038,1567.49 L 848.862,1567.4 Z M 849.909,1567.94 L 849.912,1568.16 L 849.91,1569.16 L 850.729,1568.57 L 850.906,1568.45 L 850.711,1568.34 L 850.529,1568.47 L 850.107,1568.79 L 850.106,1568.26 L 850.107,1568.03 L 849.909,1567.94 Z M 850.982,1568.48 L 850.982,1568.48 L 851.027,1568.73 L 851.108,1569.16 L 851.147,1569.36 L 851.192,1569.6 L 850.574,1569.28 L 850.484,1569.46 L 851.457,1569.95 L 851.41,1569.71 L 851.33,1569.27 L 851.287,1569.07 L 851.247,1568.84 L 851.865,1569.16 L 851.955,1568.98 L 851.204,1568.59 L 851.204,1568.59 L 850.982,1568.48 Z M 851.948,1569.31 L 851.718,1569.76 C 851.647,1569.9 851.7,1570.08 851.847,1570.15 L 852.556,1570.52 L 852.648,1570.34 L 851.937,1569.98 C 851.89,1569.96 851.867,1569.89 851.891,1569.85 L 851.938,1569.76 L 852.564,1570.07 L 852.656,1569.9 L 852.027,1569.58 L 852.124,1569.4 C 852.148,1569.35 852.203,1569.33 852.257,1569.35 L 852.969,1569.72 L 853.054,1569.54 L 852.342,1569.18 C 852.199,1569.1 852.021,1569.16 851.948,1569.31 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cpath d='M 833.651,1593.73 L 825.851,1583.96' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 831.781,1591.39 L 841.929,1585.58 C 842.183,1585.43 842.286,1585.14 842.072,1584.84 L 841.069,1583.36 C 840.874,1583.06 840.664,1583.03 840.364,1583.22 L 829.988,1589.15' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 833.651,1593.73 C 835.064,1594.57 838.507,1593.03 847.347,1586.11 L 844.035,1587.76 C 840.3,1590.31 836.327,1593.63 833.42,1593.44 L 833.651,1593.73 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 832.991,1592.91 C 834.317,1592.77 835.584,1592.25 836.818,1591.55 C 836.827,1591.52 836.886,1591.45 836.756,1591.5 C 835.379,1591.95 833.699,1592.57 832.714,1592.56 L 832.991,1592.91 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 832.521,1592.32 C 833.66,1591.92 834.856,1591.48 835.838,1590.91 C 835.882,1590.88 835.86,1590.84 835.781,1590.87 C 834.562,1591.26 833.14,1591.82 832.099,1591.82 L 832.521,1592.32 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 836.687,1591.58 C 839.535,1590.11 842.559,1587.83 845.264,1585.69' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 835.654,1590.97 C 838.792,1589.55 841.771,1587.41 844.337,1585.25' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 851.704,1581.8 L 850.67,1581.88 C 850.489,1583.05 849.117,1584.14 846.981,1586.4 C 849.455,1584.76 851.658,1582.91 851.725,1581.8 L 851.704,1581.8 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 849.21,1582.01 L 848.35,1582.08 C 847.971,1582.87 846.682,1584.28 845.047,1585.86 C 846.239,1585.2 847.503,1584.39 849.212,1582.01 L 849.21,1582.01 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 850.415,1581.91 L 849.622,1581.97 L 849.611,1582.04 C 848.239,1584.55 845.766,1586.33 843.879,1587.86 C 847.968,1585.35 849.668,1583.53 850.4,1581.98 L 850.415,1581.91 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 852.19,1581.76 L 825.81,1583.96 C 824.874,1584.04 824.287,1583.62 824.377,1582.33 L 824.374,1561.03 C 824.334,1560.14 824.705,1559.77 825.584,1560.04 L 853.693,1566.8 C 856.39,1567.25 857.807,1568.72 855.103,1573.45 C 854.445,1574.99 854.464,1575.32 854.962,1576.52 C 856.108,1579.27 854.985,1581.56 852.19,1581.76 Z' stroke='%23000000' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 848.077,1582.1 L 847.103,1582.18 C 846.272,1583.24 845.307,1584.25 844.301,1585.23 L 844.366,1585.28 L 848.077,1582.1 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 824.401,1582.99 C 825.419,1584.05 835.48,1582.43 852.582,1580.96 C 854.533,1580.8 855.832,1578.12 853.714,1576.05 C 853.109,1575.45 852.924,1573.62 853.761,1572.34 C 854.696,1570.92 856.385,1568.8 851.94,1567.54 L 824.383,1560.67' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 840.189,1582.14 L 853.482,1575.73' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 853.63,1572.56 L 841.073,1564.83' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 843.568,1582.48 L 847.378,1582.7 L 848.006,1582.11 L 843.568,1582.48 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 847.237,1565.25 L 853.693,1566.8 C 856.39,1567.25 857.807,1568.72 855.103,1573.45 C 854.445,1574.99 854.464,1575.32 854.962,1576.52 C 856.108,1579.27 854.985,1581.56 852.19,1581.76 L 850.363,1581.91 L 851.567,1582.57 C 854.192,1581.96 856.711,1579.72 855.903,1576.49 C 855.657,1575.5 854.999,1574.31 855.784,1573.29 C 856.238,1572.55 856.599,1571.78 856.969,1570.97 C 858.308,1568.1 856.63,1566.77 854.722,1565.92 C 853.231,1565.25 851.58,1564.81 849.942,1564.76 C 849.026,1564.74 848.072,1564.98 847.237,1565.25 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 834.864,1562.27 L 847.378,1565.28 C 845.87,1564.29 841.099,1563.25 834.822,1562.26 L 834.864,1562.27 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 849.942,1564.76 C 844.325,1558.63 839.584,1553.34 834.846,1550.21 C 834.596,1550.04 834.38,1549.97 834.166,1550.22 L 825.259,1559.96' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 833.508,1550.94 L 839.683,1557.18' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 832.691,1551.84 L 845.824,1564.58' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 839.661,1557.12 L 839.605,1557.16 L 847.759,1565.21 L 848.762,1565.08 C 845.088,1561.45 842.101,1558.91 839.661,1557.12 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 834.349,1550.08 L 845.984,1561.84 L 846.046,1561.8 C 844.861,1560.01 843.529,1558.18 842.057,1556.35 C 838.437,1552.77 834.721,1549.63 834.349,1550.08 L 834.349,1550.08 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 848.762,1565.08 C 848.534,1563.87 847.699,1562.68 846.941,1561.49 L 850.148,1565.01 L 848.762,1565.08 Z' fill='%23000000' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 846.006,1561.82 L 848.796,1564.85' fill='none' stroke='%23000000' stroke-width='0.121' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_LIGHT--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='61.181pt' height='43.944pt' viewBox='824.313 -1593.94 61.181 43.944'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='36.417' y2='0' gradientTransform='translate(846.173 1565.66) rotate(8.15369) skewX(-0.365873)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='22.142' y2='0' gradientTransform='translate(844.912 1580.42) rotate(-11.9133) skewX(-0.278181)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='25.519' y2='0' gradientTransform='translate(849.754 1581.98) rotate(-11.8537) skewX(-0.283312)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='13.178' y2='0' gradientTransform='translate(864.596 1577.75) rotate(-13.4267) skewX(-0.264499)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='16.279' y2='0' gradientTransform='translate(854.22 1566.32) rotate(20.4209) skewX(-0.369778)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.275' y2='0' gradientTransform='translate(854.946 1577.68) rotate(-12.9535) skewX(-0.255069)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group'%3E%3Cg id='Group_1'%3E%3Cpath d='M 885.392,1571.38 L 885.38,1571.84 C 882.091,1571.91 878.79,1571.72 875.437,1570.54 C 867.775,1567.64 861.199,1566.43 855.622,1566.44' fill='none' stroke='%23cccccc' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 883.048,1571.27 C 882.889,1571.72 883.06,1572.24 883.432,1572.42 C 883.803,1572.61 884.236,1572.4 884.395,1571.96 C 884.556,1571.51 884.384,1571 884.013,1570.81 C 883.642,1570.62 883.209,1570.83 883.048,1571.27 Z' stroke='%23cccccc' fill='%23cccccc' stroke-width='0.209' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 884.395,1571.38 L 884.431,1571.85 L 885.297,1571.85 C 885.353,1571.85 885.411,1571.8 885.412,1571.77 L 885.431,1571.46 C 885.431,1571.42 885.372,1571.38 885.322,1571.38 L 884.395,1571.38 Z' fill='%23cccccc' stroke='none' stroke-width='0.026' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 847.347,1567.68 C 847.391,1567.62 847.444,1567.55 847.501,1567.49 C 847.447,1567.55 847.395,1567.61 847.347,1567.68 Z M 857.383,1568.88 L 857.382,1568.88 L 877.831,1571.23 C 876.582,1570.95 875.429,1570.43 874.253,1570.11 C 869.733,1568.87 863.895,1568.41 857.112,1567.91 C 857.26,1568.2 857.355,1568.52 857.383,1568.88 Z' fill='%23cccccc' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 857.256,1568.25 C 857.389,1568.65 857.43,1569.1 857.354,1569.61 L 872.615,1572.45 C 871.28,1571.9 869.811,1571.43 868.386,1570.86 C 864.542,1568.85 860.265,1567.98 857.256,1568.25 Z' fill='%23cccccc' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 873.28,1572.18 C 875.086,1572.53 876.693,1573.12 878.417,1573.5 C 880.018,1573.85 881.752,1574.21 883.264,1574.38 L 883.231,1574.92 C 881.253,1574.78 878.978,1574.29 876.594,1573.57 L 872.615,1572.45' fill='none' stroke='%23cccccc' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 880.854,1574.08 C 880.687,1574.52 880.867,1575.04 881.257,1575.23 C 881.647,1575.41 882.102,1575.2 882.269,1574.76 C 882.438,1574.31 882.259,1573.8 881.868,1573.61 C 881.477,1573.42 881.023,1573.63 880.854,1574.08 Z' stroke='%23cccccc' fill='%23cccccc' stroke-width='0.209' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 854.432,1565.85 C 854.509,1565.88 854.586,1565.91 854.663,1565.95 C 855.81,1566.46 856.873,1567.14 857.249,1568.23 L 857.243,1568.23 L 877.942,1570.46 C 875.455,1569.71 872.541,1568.71 870.228,1567.95 C 864.902,1566.21 859.337,1565.57 854.432,1565.85 Z M 847.857,1567.11 C 847.931,1567.03 848.034,1566.93 848.146,1566.85 C 848.042,1566.93 847.945,1567.02 847.857,1567.11 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 854.228,1565.76 C 861.461,1565.31 868.09,1567.19 874.56,1569.48 C 880.264,1571.51 883.126,1571.32 885.392,1571.38' fill='none' stroke='%23cccccc' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 859.66,1577.24 L 855.978,1578.14 C 855.951,1578.42 855.898,1578.68 855.824,1578.94 C 857.081,1578.51 858.358,1577.95 859.66,1577.24 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 855.824,1578.94 C 857.081,1578.51 858.358,1577.95 859.66,1577.24 C 866.061,1573.42 872.838,1571.67 879.924,1571.6' fill='none' stroke='%23cccccc' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 859.482,1577.93 L 883.605,1571.89 C 873.653,1571.83 866.059,1574.3 859.482,1577.93 Z' fill='%23cccccc' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 859.482,1577.93 L 855.859,1578.81 C 855.78,1579.11 855.672,1579.4 855.537,1579.66 C 856.829,1579.23 858.142,1578.66 859.482,1577.93 Z' fill='%23cccccc' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 866.757,1578.34 L 853.763,1581.62 C 853.533,1581.78 853.291,1581.92 853.043,1582.04 C 857.382,1581.88 862.054,1580.9 866.757,1578.34 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 853.043,1582.04 C 857.382,1581.88 862.054,1580.9 866.757,1578.34 C 873.744,1574.38 876.628,1574.27 880.992,1574.72' fill='none' stroke='%23cccccc' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 866.757,1578.34 L 880.992,1574.72 C 874.462,1573.7 870.413,1576.54 866.757,1578.34 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 868.73,1576.61 L 877.753,1573.9 C 875.473,1573.79 870.177,1575.38 868.73,1576.61 Z' fill='%23cccccc' stroke='none' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 868.73,1576.61 L 854.733,1580.8 C 854.478,1581.07 854.192,1581.32 853.885,1581.54 C 858.073,1581.23 865.8,1578.76 868.73,1576.61 Z' fill='%23cccccc' stroke='none' stroke-width='0.204' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 857.457,1568.04 C 857.365,1568.05 857.277,1568.07 857.189,1568.08 C 857.331,1568.41 857.405,1568.79 857.389,1569.22 L 873.28,1572.18 C 871.949,1571.63 870.483,1571.16 869.052,1570.6 C 865.005,1568.48 860.479,1567.62 857.457,1568.04 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 859.66,1577.24 L 879.924,1571.6 C 871.505,1571.77 865.14,1574.02 859.66,1577.24 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_2' fill='%23cccccc' fill-rule='nonzero' stroke-linejoin='miter' stroke='none' stroke-width='0.003'%3E%3Cpath d='M 848.862,1567.4 L 848.368,1568.38 L 848.534,1568.46 L 848.79,1567.97 L 848.871,1568.17 L 848.939,1568.35 L 849.081,1568.74 L 849.341,1568.88 L 849.118,1568.26 L 849.834,1567.9 L 849.618,1567.79 L 849.044,1568.08 L 848.911,1567.73 L 849.038,1567.49 L 848.862,1567.4 Z M 849.909,1567.94 L 849.912,1568.16 L 849.91,1569.16 L 850.729,1568.57 L 850.906,1568.45 L 850.711,1568.34 L 850.529,1568.47 L 850.107,1568.79 L 850.106,1568.26 L 850.107,1568.03 L 849.909,1567.94 Z M 850.982,1568.48 L 850.982,1568.48 L 851.027,1568.73 L 851.108,1569.16 L 851.147,1569.36 L 851.192,1569.6 L 850.574,1569.28 L 850.484,1569.46 L 851.457,1569.95 L 851.41,1569.71 L 851.33,1569.27 L 851.287,1569.07 L 851.247,1568.84 L 851.865,1569.16 L 851.955,1568.98 L 851.204,1568.59 L 851.204,1568.59 L 850.982,1568.48 Z M 851.948,1569.31 L 851.718,1569.76 C 851.647,1569.9 851.7,1570.08 851.847,1570.15 L 852.556,1570.52 L 852.648,1570.34 L 851.937,1569.98 C 851.89,1569.96 851.867,1569.89 851.891,1569.85 L 851.938,1569.76 L 852.564,1570.07 L 852.656,1569.9 L 852.027,1569.58 L 852.124,1569.4 C 852.148,1569.35 852.203,1569.33 852.257,1569.35 L 852.969,1569.72 L 853.054,1569.54 L 852.342,1569.18 C 852.199,1569.1 852.021,1569.16 851.948,1569.31 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cpath d='M 833.651,1593.73 L 825.851,1583.96' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 831.781,1591.39 L 841.929,1585.58 C 842.183,1585.43 842.286,1585.14 842.072,1584.84 L 841.069,1583.36 C 840.874,1583.06 840.664,1583.03 840.364,1583.22 L 829.988,1589.15' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 833.651,1593.73 C 835.064,1594.57 838.507,1593.03 847.347,1586.11 L 844.035,1587.76 C 840.3,1590.31 836.327,1593.63 833.42,1593.44 L 833.651,1593.73 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 832.991,1592.91 C 834.317,1592.77 835.584,1592.25 836.818,1591.55 C 836.827,1591.52 836.886,1591.45 836.756,1591.5 C 835.379,1591.95 833.699,1592.57 832.714,1592.56 L 832.991,1592.91 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 832.521,1592.32 C 833.66,1591.92 834.856,1591.48 835.838,1590.91 C 835.882,1590.88 835.86,1590.84 835.781,1590.87 C 834.562,1591.26 833.14,1591.82 832.099,1591.82 L 832.521,1592.32 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 836.687,1591.58 C 839.535,1590.11 842.559,1587.83 845.264,1585.69' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 835.654,1590.97 C 838.792,1589.55 841.771,1587.41 844.337,1585.25' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 851.704,1581.8 L 850.67,1581.88 C 850.489,1583.05 849.117,1584.14 846.981,1586.4 C 849.455,1584.76 851.658,1582.91 851.725,1581.8 L 851.704,1581.8 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 849.21,1582.01 L 848.35,1582.08 C 847.971,1582.87 846.682,1584.28 845.047,1585.86 C 846.239,1585.2 847.503,1584.39 849.212,1582.01 L 849.21,1582.01 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 850.415,1581.91 L 849.622,1581.97 L 849.611,1582.04 C 848.239,1584.55 845.766,1586.33 843.879,1587.86 C 847.968,1585.35 849.668,1583.53 850.4,1581.98 L 850.415,1581.91 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 852.19,1581.76 L 825.81,1583.96 C 824.874,1584.04 824.287,1583.62 824.377,1582.33 L 824.374,1561.03 C 824.334,1560.14 824.705,1559.77 825.584,1560.04 L 853.693,1566.8 C 856.39,1567.25 857.807,1568.72 855.103,1573.45 C 854.445,1574.99 854.464,1575.32 854.962,1576.52 C 856.108,1579.27 854.985,1581.56 852.19,1581.76 Z' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 848.077,1582.1 L 847.103,1582.18 C 846.272,1583.24 845.307,1584.25 844.301,1585.23 L 844.366,1585.28 L 848.077,1582.1 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 824.401,1582.99 C 825.419,1584.05 835.48,1582.43 852.582,1580.96 C 854.533,1580.8 855.832,1578.12 853.714,1576.05 C 853.109,1575.45 852.924,1573.62 853.761,1572.34 C 854.696,1570.92 856.385,1568.8 851.94,1567.54 L 824.383,1560.67' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 840.189,1582.14 L 853.482,1575.73' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 853.63,1572.56 L 841.073,1564.83' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 843.568,1582.48 L 847.378,1582.7 L 848.006,1582.11 L 843.568,1582.48 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 847.237,1565.25 L 853.693,1566.8 C 856.39,1567.25 857.807,1568.72 855.103,1573.45 C 854.445,1574.99 854.464,1575.32 854.962,1576.52 C 856.108,1579.27 854.985,1581.56 852.19,1581.76 L 850.363,1581.91 L 851.567,1582.57 C 854.192,1581.96 856.711,1579.72 855.903,1576.49 C 855.657,1575.5 854.999,1574.31 855.784,1573.29 C 856.238,1572.55 856.599,1571.78 856.969,1570.97 C 858.308,1568.1 856.63,1566.77 854.722,1565.92 C 853.231,1565.25 851.58,1564.81 849.942,1564.76 C 849.026,1564.74 848.072,1564.98 847.237,1565.25 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 834.864,1562.27 L 847.378,1565.28 C 845.87,1564.29 841.099,1563.25 834.822,1562.26 L 834.864,1562.27 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 849.942,1564.76 C 844.325,1558.63 839.584,1553.34 834.846,1550.21 C 834.596,1550.04 834.38,1549.97 834.166,1550.22 L 825.259,1559.96' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 833.508,1550.94 L 839.683,1557.18' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 832.691,1551.84 L 845.824,1564.58' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-dasharray='0.484 0.484' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 839.661,1557.12 L 839.605,1557.16 L 847.759,1565.21 L 848.762,1565.08 C 845.088,1561.45 842.101,1558.91 839.661,1557.12 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 834.349,1550.08 L 845.984,1561.84 L 846.046,1561.8 C 844.861,1560.01 843.529,1558.18 842.057,1556.35 C 838.437,1552.77 834.721,1549.63 834.349,1550.08 L 834.349,1550.08 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 848.762,1565.08 C 848.534,1563.87 847.699,1562.68 846.941,1561.49 L 850.148,1565.01 L 848.762,1565.08 Z' fill='%23cccccc' stroke='none' stroke-width='0.121' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 846.006,1561.82 L 848.796,1564.85' fill='none' stroke='%23cccccc' stroke-width='0.121' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.KAZE_MINI--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='58.621pt' height='43.946pt' viewBox='724.155 -1593.94 58.621 43.946'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.146' y2='4.457' gradientTransform='translate(759.642 1569.47)'%3E%3Cstop offset='0' stop-color='%23dbdbdb'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='15.466' y2='11.834' gradientTransform='translate(754.897 1569.4)'%3E%3Cstop offset='0' stop-color='%23cacaca'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.111' y2='0' gradientTransform='translate(755.386 1569.53) rotate(43.7104) skewX(34.6451)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='10.735' y2='6.332' gradientTransform='translate(763.67 1571.18)'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='18.521' y2='0' gradientTransform='translate(755.875 1574.56) rotate(22.3862) skewX(2.06419)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='20.366' y2='0' gradientTransform='translate(755.502 1576.21) rotate(16.27) skewX(-11.3257)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_6' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='13.153' y2='-2.161' gradientTransform='translate(756.858 1581.02)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_7' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='1.94' y2='-2.389' gradientTransform='translate(774.612 1584.43)'%3E%3Cstop offset='0' stop-color='%23d8d8d8'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_8' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.568' y2='0' gradientTransform='translate(756.567 1581.14) rotate(-11.4109) skewX(-3.78435)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_9' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='4.971' y2='0' gradientTransform='translate(769.083 1579.07) rotate(-7.3852) skewX(4.40311)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_10' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='20.849' y2='-8.784' gradientTransform='translate(759.108 1583.24)'%3E%3Cstop offset='0' stop-color='%23d4d4d4'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_11' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='1.79' y2='0' gradientTransform='translate(776.855 1581.64) rotate(-0.608145) skewX(0.120593)'%3E%3Cstop offset='0' stop-color='%23cacaca'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group'%3E%3Cpath d='M 731.884,1593.72 C 728.347,1588.08 725.656,1582.64 724.509,1577.81 C 723.127,1571.99 726.422,1556.99 741.343,1550.06 C 747.365,1555.57 752.432,1561.17 757.476,1566.77 C 760.063,1570.6 757.559,1571.84 755.155,1572.96 C 752.184,1574.34 753.525,1577.06 758.368,1579.81 C 764.137,1583.33 761.235,1587.87 758.461,1588.55 C 757.003,1588.91 755.769,1588.68 754.314,1588.54 C 751.604,1588.28 749.317,1588.06 745.494,1588.13 C 743.737,1588.08 741.415,1588.59 739.727,1589.28 C 736.898,1590.49 730.998,1592.2 731.884,1593.72 Z' stroke='%23000000' stroke-width='0.137' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 731.487,1592.22 C 740.078,1587.8 742.216,1586.27 754.085,1587.77 C 757.068,1588.14 759.013,1588.33 760.476,1586.51 C 761.724,1584.96 761.74,1582.63 758.414,1580.51 C 756.612,1579.36 754.741,1578.11 753.639,1576.72 C 752.227,1574.94 753.464,1572.83 754.575,1572.35 C 756.263,1571.61 759.372,1570.45 757.074,1567.65 C 752.403,1561.96 746.85,1556.8 742.026,1551.41' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 731.578,1591.38 C 737.199,1588.79 741.793,1585.61 748.96,1586.57 C 752.217,1586.81 756.308,1587.68 758.627,1586.96 C 761.211,1586.17 760.725,1583.42 759.075,1581.79 C 757.796,1580.74 756.233,1579.77 754.842,1578.77 C 752.204,1576.85 750.794,1573.73 754.81,1571.51 C 757.643,1570.4 757.432,1568.83 755.703,1567.03 L 741.243,1551.65' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 730.109,1590.37 C 735.082,1588.09 739.73,1585.95 744.935,1584.31 L 744.456,1581.8 L 728.953,1587.86' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 727.448,1585.77 C 731.941,1583.49 736.283,1581.95 740.346,1581.79 C 739.601,1578.5 739.393,1575.16 739.761,1571.77 C 740.229,1568.96 739.985,1566.47 739.362,1563.93 C 738.744,1561.4 737.636,1559.13 736.112,1556.83' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 726.811,1583.39 C 729.526,1581.8 732.899,1580.71 737.924,1580.87 C 737.042,1578.03 736.976,1573.85 736.998,1569.52 C 736.843,1565.75 735.823,1562.47 734.033,1559.62' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 725.962,1582.37 L 726.666,1582 C 725.691,1579.44 724.93,1576.17 725.166,1573.81 C 726.117,1564.22 732.413,1555.15 742.023,1550.69' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 741.211,1589.83 L 735.121,1591.97 L 737.337,1590.73 L 735.232,1591.52 L 737.766,1590.05 C 734.83,1591.16 731.173,1592.5 731.884,1593.72 C 732.155,1594.21 732.483,1593.79 733.517,1593.33 C 735.649,1592.38 739.45,1590.75 741.237,1589.93 L 741.211,1589.83 Z' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 745.494,1588.13 C 745.228,1588.13 744.95,1588.13 744.663,1588.15 C 744.657,1588.16 744.651,1588.18 744.645,1588.2 L 747.235,1588.27 C 746.113,1588.45 745.104,1588.67 744.056,1588.94 C 743.095,1589.19 742.094,1589.53 741.211,1589.83 L 741.237,1589.93 C 744.271,1588.57 750.286,1588.97 754.487,1589.05 C 755.906,1589.07 758.19,1589.13 758.961,1588.42 L 758.755,1588.47 C 758.657,1588.5 758.558,1588.53 758.461,1588.55 C 757.003,1588.91 755.769,1588.68 754.314,1588.54 C 751.604,1588.28 749.317,1588.06 745.494,1588.13 Z' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 754.124,1588.06 C 755.133,1588.19 756.326,1588.15 757.403,1588.17 C 758.606,1588.18 758.489,1588.43 757.463,1588.53 C 756.92,1588.6 756.36,1588.65 755.723,1588.68 C 756.598,1588.72 757.121,1588.99 758.927,1588.4 C 759.767,1587.77 760.361,1587.22 760.997,1586.31 C 760.511,1586.76 759.376,1587.47 758.851,1587.72 C 758.457,1587.9 755.968,1588.09 754.124,1588.06 Z' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 756.966,1578.95 C 754.458,1576.71 753.557,1574.67 755.155,1572.96 C 752.496,1574.2 753.291,1576.5 756.966,1578.95 Z' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 756.916,1574.84 L 758.695,1578.46 C 758.017,1578.14 757.497,1577.71 757.088,1577.21 L 757.126,1578.56 C 755.011,1575.64 755.482,1573.88 756.762,1572.57 L 756.916,1574.84 Z' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 758.695,1578.46 L 760.971,1582.17 C 761.029,1582.26 761.083,1582.34 761.132,1582.43 L 761.038,1582.28 L 761.137,1582.44 C 762.696,1585.17 760.737,1587.82 758.709,1588.48 L 758.709,1588.48 L 758.69,1588.6 C 762.615,1587.25 763.42,1584.89 762.528,1582.52 C 762.198,1581.64 761.59,1581.04 760.889,1580.09 C 760.258,1579.35 759.511,1578.84 758.695,1578.46 Z' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cellipse rx='0.622' ry='0.622' transform='translate(755.897 1585.33) rotate(149.147)' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter'/%3E%3Cellipse rx='0.669' ry='0.669' transform='translate(755.19 1569.04) rotate(149.183)' stroke='none' fill='%23000000' stroke-width='0.146' stroke-linejoin='miter'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke='none' stroke-width='0.004' fill='%23000000'%3E%3Cpath d='M 750.058,1562.37 L 749.043,1563.35 L 749.21,1563.53 L 749.732,1563.03 L 749.746,1563.31 L 749.751,1563.57 L 749.76,1564.1 L 750.02,1564.38 L 750.008,1563.53 L 751.039,1563.39 L 750.822,1563.16 L 749.995,1563.28 L 749.98,1562.79 L 750.235,1562.56 L 750.058,1562.37 Z M 751.116,1563.47 L 751.025,1563.74 L 750.597,1564.97 L 751.849,1564.59 L 752.117,1564.51 L 751.924,1564.3 L 751.645,1564.38 L 750.996,1564.59 L 751.22,1563.94 L 751.316,1563.67 L 751.116,1563.47 Z M 752.196,1564.59 L 752.196,1564.59 L 752.148,1564.91 L 752.064,1565.47 L 752.028,1565.73 L 751.979,1566.04 L 751.359,1565.39 L 751.174,1565.57 L 752.155,1566.59 L 752.199,1566.28 L 752.287,1565.7 L 752.321,1565.44 L 752.37,1565.14 L 752.992,1565.79 L 753.176,1565.61 L 752.421,1564.82 L 752.421,1564.82 L 752.196,1564.59 Z M 753.029,1566.01 L 752.558,1566.46 C 752.41,1566.6 752.4,1566.84 752.548,1567 L 753.259,1567.75 L 753.449,1567.57 L 752.729,1566.83 C 752.682,1566.78 752.682,1566.69 752.732,1566.64 L 752.827,1566.55 L 753.459,1567.2 L 753.644,1567.03 L 753.011,1566.37 L 753.206,1566.19 C 753.256,1566.14 753.333,1566.14 753.389,1566.19 L 754.103,1566.94 L 754.282,1566.76 L 753.567,1566.01 C 753.423,1565.87 753.18,1565.86 753.029,1566.01 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cpath d='M 755.118,1570.03 C 759.301,1576.64 764.23,1581.89 770.425,1584.84' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 772.506,1586.16 L 773.79,1586.02 C 776.643,1585.44 776.996,1583.36 776.264,1580.53 C 777.198,1583.28 776.869,1585.5 773.86,1586.59 L 772.598,1586.67 C 769.668,1586.59 767.025,1583.4 765.994,1582.46 C 767.862,1584.03 769.693,1585.65 772.506,1586.16 Z' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cellipse rx='0.685' ry='0.685' transform='translate(773.211 1586.37) rotate(109.069)' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter'/%3E%3Cellipse rx='0.747' ry='0.747' transform='translate(778.977 1582.11) rotate(109.138)' stroke='none' fill='%23000000' stroke-width='0.15' stroke-linejoin='miter'/%3E%3Cpath d='M 776.84,1584.03 C 776.388,1588.05 772.233,1588.03 768.526,1585.34 C 766.241,1583.68 764.048,1580.78 762.528,1578.03' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 755.48,1569.73 C 758.562,1573.96 761.237,1578.07 766.54,1582.99' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 756.895,1568.82 C 767.968,1569.78 773.852,1573.91 776.217,1580.19' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 755.834,1568.85 C 767.879,1570.49 774.905,1574.02 776.777,1579.51' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 756.432,1585.02 C 757.05,1576.93 763.455,1574.57 770.578,1577.43 C 772.468,1578.18 773.869,1579.36 775.659,1580.97' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 760.199,1569.57 C 764.033,1570.63 767.827,1572.29 771.554,1574.93 C 768.661,1572.35 765.014,1570.44 760.199,1569.57 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 755.747,1569.68 L 773.65,1585.03 C 769.078,1582.41 763.667,1578.35 755.747,1569.68 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 755.747,1569.68 L 763.941,1579.13 C 760.973,1577.16 758.197,1574.27 755.747,1569.68 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 763.513,1571.03 C 767.253,1573.65 771.658,1576.55 775.058,1579.05 C 774.34,1577.57 772.12,1575.42 763.513,1571.03 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 756.762,1585.35 C 766.959,1578.5 774.1,1574.16 778.172,1574.69 C 780.674,1575.01 782.708,1576.12 782.708,1578.97 C 782.708,1580.02 781.8,1581.89 779.642,1582.12' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 756.432,1585.02 L 760.539,1581.43 C 761.847,1580.58 763.138,1579.68 764.518,1579.03 C 772.185,1575.75 778.52,1574.22 781.04,1576.26 C 779.665,1574.84 777.23,1574.64 775.421,1574.79 C 768.332,1575.38 762.42,1579.37 756.432,1585.02 Z' stroke='none' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 756.908,1585.4 L 772.313,1577.08 C 769.59,1578.12 766.658,1579.35 762.378,1581.8 L 762.378,1581.8 L 756.908,1585.4 L 756.908,1585.4 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_6)'/%3E%3Cpath d='M 774.573,1585.22 L 776.264,1580.53 C 776.565,1581.8 776.65,1583.76 774.573,1585.22 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_7)'/%3E%3Cpath d='M 756.772,1585.07 C 761.379,1581.44 767.573,1576.58 773.996,1574.71 C 778.085,1573.52 781.56,1574.39 782.195,1577.25 C 782.409,1578.22 782.331,1579.01 782,1580' fill='none' stroke='%23000000' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 775.498,1580.41 C 773.815,1578.43 771.707,1577.46 768.973,1577.68 C 771.014,1577.16 774.56,1576.97 775.498,1580.41 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_9)'/%3E%3Cpath d='M 780.502,1581.31 C 781.482,1579.47 781.522,1578.03 780.6,1577 C 780.315,1576.68 779.937,1576.39 779.466,1576.15 C 776.511,1574.82 771.97,1576.33 766.957,1578.44 C 763.023,1580.34 759.657,1582.63 756.432,1585.02 C 759.017,1582.62 761.617,1580.24 765.54,1578.6 C 769.259,1577.04 773.385,1574.8 777.473,1575.34 C 779.159,1575.56 781.248,1576.52 781.878,1577.92 C 782.376,1579.54 781.43,1580.73 780.502,1581.31 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_10)'/%3E%3Cpath d='M 775.971,1581.34 C 776.624,1581.83 777.395,1582.19 778.477,1582.23 C 781.173,1581.99 781.636,1580.92 782.064,1579.84 C 781.147,1582.01 779.12,1582.31 775.971,1581.34 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_11)'/%3E%3Cpath d='M 781.04,1576.26 C 781.695,1577.14 782.109,1578.37 782.035,1579.92 C 782.553,1578.13 782.063,1576.93 781.04,1576.26 Z' stroke='none' fill='%23000000' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_MINI--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='58.621pt' height='43.946pt' viewBox='724.155 -1593.94 58.621 43.946'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.146' y2='4.457' gradientTransform='translate(759.642 1569.47)'%3E%3Cstop offset='0' stop-color='%23dbdbdb'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='15.466' y2='11.834' gradientTransform='translate(754.897 1569.4)'%3E%3Cstop offset='0' stop-color='%23cacaca'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.111' y2='0' gradientTransform='translate(755.386 1569.53) rotate(43.7104) skewX(34.6451)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='10.735' y2='6.332' gradientTransform='translate(763.67 1571.18)'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='18.521' y2='0' gradientTransform='translate(755.875 1574.56) rotate(22.3862) skewX(2.06419)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='20.366' y2='0' gradientTransform='translate(755.502 1576.21) rotate(16.27) skewX(-11.3257)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_6' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='13.153' y2='-2.161' gradientTransform='translate(756.858 1581.02)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_7' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='1.94' y2='-2.389' gradientTransform='translate(774.612 1584.43)'%3E%3Cstop offset='0' stop-color='%23d8d8d8'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_8' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.568' y2='0' gradientTransform='translate(756.567 1581.14) rotate(-11.4109) skewX(-3.78435)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_9' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='4.971' y2='0' gradientTransform='translate(769.083 1579.07) rotate(-7.3852) skewX(4.40311)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_10' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='20.849' y2='-8.784' gradientTransform='translate(759.108 1583.24)'%3E%3Cstop offset='0' stop-color='%23d4d4d4'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_11' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='1.79' y2='0' gradientTransform='translate(776.855 1581.64) rotate(-0.608145) skewX(0.120593)'%3E%3Cstop offset='0' stop-color='%23cacaca'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group'%3E%3Cpath d='M 731.884,1593.72 C 728.347,1588.08 725.656,1582.64 724.509,1577.81 C 723.127,1571.99 726.422,1556.99 741.343,1550.06 C 747.365,1555.57 752.432,1561.17 757.476,1566.77 C 760.063,1570.6 757.559,1571.84 755.155,1572.96 C 752.184,1574.34 753.525,1577.06 758.368,1579.81 C 764.137,1583.33 761.235,1587.87 758.461,1588.55 C 757.003,1588.91 755.769,1588.68 754.314,1588.54 C 751.604,1588.28 749.317,1588.06 745.494,1588.13 C 743.737,1588.08 741.415,1588.59 739.727,1589.28 C 736.898,1590.49 730.998,1592.2 731.884,1593.72 Z' stroke='%23cccccc' stroke-width='0.137' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 731.487,1592.22 C 740.078,1587.8 742.216,1586.27 754.085,1587.77 C 757.068,1588.14 759.013,1588.33 760.476,1586.51 C 761.724,1584.96 761.74,1582.63 758.414,1580.51 C 756.612,1579.36 754.741,1578.11 753.639,1576.72 C 752.227,1574.94 753.464,1572.83 754.575,1572.35 C 756.263,1571.61 759.372,1570.45 757.074,1567.65 C 752.403,1561.96 746.85,1556.8 742.026,1551.41' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 731.578,1591.38 C 737.199,1588.79 741.793,1585.61 748.96,1586.57 C 752.217,1586.81 756.308,1587.68 758.627,1586.96 C 761.211,1586.17 760.725,1583.42 759.075,1581.79 C 757.796,1580.74 756.233,1579.77 754.842,1578.77 C 752.204,1576.85 750.794,1573.73 754.81,1571.51 C 757.643,1570.4 757.432,1568.83 755.703,1567.03 L 741.243,1551.65' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 730.109,1590.37 C 735.082,1588.09 739.73,1585.95 744.935,1584.31 L 744.456,1581.8 L 728.953,1587.86' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 727.448,1585.77 C 731.941,1583.49 736.283,1581.95 740.346,1581.79 C 739.601,1578.5 739.393,1575.16 739.761,1571.77 C 740.229,1568.96 739.985,1566.47 739.362,1563.93 C 738.744,1561.4 737.636,1559.13 736.112,1556.83' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 726.811,1583.39 C 729.526,1581.8 732.899,1580.71 737.924,1580.87 C 737.042,1578.03 736.976,1573.85 736.998,1569.52 C 736.843,1565.75 735.823,1562.47 734.033,1559.62' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-dasharray='0.544 0.544' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 725.962,1582.37 L 726.666,1582 C 725.691,1579.44 724.93,1576.17 725.166,1573.81 C 726.117,1564.22 732.413,1555.15 742.023,1550.69' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 741.211,1589.83 L 735.121,1591.97 L 737.337,1590.73 L 735.232,1591.52 L 737.766,1590.05 C 734.83,1591.16 731.173,1592.5 731.884,1593.72 C 732.155,1594.21 732.483,1593.79 733.517,1593.33 C 735.649,1592.38 739.45,1590.75 741.237,1589.93 L 741.211,1589.83 Z' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 745.494,1588.13 C 745.228,1588.13 744.95,1588.13 744.663,1588.15 C 744.657,1588.16 744.651,1588.18 744.645,1588.2 L 747.235,1588.27 C 746.113,1588.45 745.104,1588.67 744.056,1588.94 C 743.095,1589.19 742.094,1589.53 741.211,1589.83 L 741.237,1589.93 C 744.271,1588.57 750.286,1588.97 754.487,1589.05 C 755.906,1589.07 758.19,1589.13 758.961,1588.42 L 758.755,1588.47 C 758.657,1588.5 758.558,1588.53 758.461,1588.55 C 757.003,1588.91 755.769,1588.68 754.314,1588.54 C 751.604,1588.28 749.317,1588.06 745.494,1588.13 Z' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 754.124,1588.06 C 755.133,1588.19 756.326,1588.15 757.403,1588.17 C 758.606,1588.18 758.489,1588.43 757.463,1588.53 C 756.92,1588.6 756.36,1588.65 755.723,1588.68 C 756.598,1588.72 757.121,1588.99 758.927,1588.4 C 759.767,1587.77 760.361,1587.22 760.997,1586.31 C 760.511,1586.76 759.376,1587.47 758.851,1587.72 C 758.457,1587.9 755.968,1588.09 754.124,1588.06 Z' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 756.966,1578.95 C 754.458,1576.71 753.557,1574.67 755.155,1572.96 C 752.496,1574.2 753.291,1576.5 756.966,1578.95 Z' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 756.916,1574.84 L 758.695,1578.46 C 758.017,1578.14 757.497,1577.71 757.088,1577.21 L 757.126,1578.56 C 755.011,1575.64 755.482,1573.88 756.762,1572.57 L 756.916,1574.84 Z' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 758.695,1578.46 L 760.971,1582.17 C 761.029,1582.26 761.083,1582.34 761.132,1582.43 L 761.038,1582.28 L 761.137,1582.44 C 762.696,1585.17 760.737,1587.82 758.709,1588.48 L 758.709,1588.48 L 758.69,1588.6 C 762.615,1587.25 763.42,1584.89 762.528,1582.52 C 762.198,1581.64 761.59,1581.04 760.889,1580.09 C 760.258,1579.35 759.511,1578.84 758.695,1578.46 Z' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cellipse rx='0.622' ry='0.622' transform='translate(755.897 1585.33) rotate(149.147)' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter'/%3E%3Cellipse rx='0.669' ry='0.669' transform='translate(755.19 1569.04) rotate(149.183)' stroke='none' fill='%23cccccc' stroke-width='0.146' stroke-linejoin='miter'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke='none' stroke-width='0.004' fill='%23cccccc'%3E%3Cpath d='M 750.058,1562.37 L 749.043,1563.35 L 749.21,1563.53 L 749.732,1563.03 L 749.746,1563.31 L 749.751,1563.57 L 749.76,1564.1 L 750.02,1564.38 L 750.008,1563.53 L 751.039,1563.39 L 750.822,1563.16 L 749.995,1563.28 L 749.98,1562.79 L 750.235,1562.56 L 750.058,1562.37 Z M 751.116,1563.47 L 751.025,1563.74 L 750.597,1564.97 L 751.849,1564.59 L 752.117,1564.51 L 751.924,1564.3 L 751.645,1564.38 L 750.996,1564.59 L 751.22,1563.94 L 751.316,1563.67 L 751.116,1563.47 Z M 752.196,1564.59 L 752.196,1564.59 L 752.148,1564.91 L 752.064,1565.47 L 752.028,1565.73 L 751.979,1566.04 L 751.359,1565.39 L 751.174,1565.57 L 752.155,1566.59 L 752.199,1566.28 L 752.287,1565.7 L 752.321,1565.44 L 752.37,1565.14 L 752.992,1565.79 L 753.176,1565.61 L 752.421,1564.82 L 752.421,1564.82 L 752.196,1564.59 Z M 753.029,1566.01 L 752.558,1566.46 C 752.41,1566.6 752.4,1566.84 752.548,1567 L 753.259,1567.75 L 753.449,1567.57 L 752.729,1566.83 C 752.682,1566.78 752.682,1566.69 752.732,1566.64 L 752.827,1566.55 L 753.459,1567.2 L 753.644,1567.03 L 753.011,1566.37 L 753.206,1566.19 C 753.256,1566.14 753.333,1566.14 753.389,1566.19 L 754.103,1566.94 L 754.282,1566.76 L 753.567,1566.01 C 753.423,1565.87 753.18,1565.86 753.029,1566.01 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cpath d='M 755.118,1570.03 C 759.301,1576.64 764.23,1581.89 770.425,1584.84' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 772.506,1586.16 L 773.79,1586.02 C 776.643,1585.44 776.996,1583.36 776.264,1580.53 C 777.198,1583.28 776.869,1585.5 773.86,1586.59 L 772.598,1586.67 C 769.668,1586.59 767.025,1583.4 765.994,1582.46 C 767.862,1584.03 769.693,1585.65 772.506,1586.16 Z' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cellipse rx='0.685' ry='0.685' transform='translate(773.211 1586.37) rotate(109.069)' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter'/%3E%3Cellipse rx='0.747' ry='0.747' transform='translate(778.977 1582.11) rotate(109.138)' stroke='none' fill='%23cccccc' stroke-width='0.15' stroke-linejoin='miter'/%3E%3Cpath d='M 776.84,1584.03 C 776.388,1588.05 772.233,1588.03 768.526,1585.34 C 766.241,1583.68 764.048,1580.78 762.528,1578.03' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 755.48,1569.73 C 758.562,1573.96 761.237,1578.07 766.54,1582.99' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 756.895,1568.82 C 767.968,1569.78 773.852,1573.91 776.217,1580.19' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 755.834,1568.85 C 767.879,1570.49 774.905,1574.02 776.777,1579.51' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 756.432,1585.02 C 757.05,1576.93 763.455,1574.57 770.578,1577.43 C 772.468,1578.18 773.869,1579.36 775.659,1580.97' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 760.199,1569.57 C 764.033,1570.63 767.827,1572.29 771.554,1574.93 C 768.661,1572.35 765.014,1570.44 760.199,1569.57 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 755.747,1569.68 L 773.65,1585.03 C 769.078,1582.41 763.667,1578.35 755.747,1569.68 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 755.747,1569.68 L 763.941,1579.13 C 760.973,1577.16 758.197,1574.27 755.747,1569.68 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 763.513,1571.03 C 767.253,1573.65 771.658,1576.55 775.058,1579.05 C 774.34,1577.57 772.12,1575.42 763.513,1571.03 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 756.762,1585.35 C 766.959,1578.5 774.1,1574.16 778.172,1574.69 C 780.674,1575.01 782.708,1576.12 782.708,1578.97 C 782.708,1580.02 781.8,1581.89 779.642,1582.12' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 756.432,1585.02 L 760.539,1581.43 C 761.847,1580.58 763.138,1579.68 764.518,1579.03 C 772.185,1575.75 778.52,1574.22 781.04,1576.26 C 779.665,1574.84 777.23,1574.64 775.421,1574.79 C 768.332,1575.38 762.42,1579.37 756.432,1585.02 Z' stroke='none' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 756.908,1585.4 L 772.313,1577.08 C 769.59,1578.12 766.658,1579.35 762.378,1581.8 L 762.378,1581.8 L 756.908,1585.4 L 756.908,1585.4 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_6)'/%3E%3Cpath d='M 774.573,1585.22 L 776.264,1580.53 C 776.565,1581.8 776.65,1583.76 774.573,1585.22 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_7)'/%3E%3Cpath d='M 756.772,1585.07 C 761.379,1581.44 767.573,1576.58 773.996,1574.71 C 778.085,1573.52 781.56,1574.39 782.195,1577.25 C 782.409,1578.22 782.331,1579.01 782,1580' fill='none' stroke='%23cccccc' stroke-width='0.136' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 775.498,1580.41 C 773.815,1578.43 771.707,1577.46 768.973,1577.68 C 771.014,1577.16 774.56,1576.97 775.498,1580.41 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_9)'/%3E%3Cpath d='M 780.502,1581.31 C 781.482,1579.47 781.522,1578.03 780.6,1577 C 780.315,1576.68 779.937,1576.39 779.466,1576.15 C 776.511,1574.82 771.97,1576.33 766.957,1578.44 C 763.023,1580.34 759.657,1582.63 756.432,1585.02 C 759.017,1582.62 761.617,1580.24 765.54,1578.6 C 769.259,1577.04 773.385,1574.8 777.473,1575.34 C 779.159,1575.56 781.248,1576.52 781.878,1577.92 C 782.376,1579.54 781.43,1580.73 780.502,1581.31 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_10)'/%3E%3Cpath d='M 775.971,1581.34 C 776.624,1581.83 777.395,1582.19 778.477,1582.23 C 781.173,1581.99 781.636,1580.92 782.064,1579.84 C 781.147,1582.01 779.12,1582.31 775.971,1581.34 Z' stroke='none' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_11)'/%3E%3Cpath d='M 781.04,1576.26 C 781.695,1577.14 782.109,1578.37 782.035,1579.92 C 782.553,1578.13 782.063,1576.93 781.04,1576.26 Z' stroke='none' fill='%23cccccc' stroke-width='0.137' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.PPF2_NR--highlighted, .KN95_NR--highlighted, .ORIGINAL--highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='62.143pt' height='44.004pt' viewBox='543.466 -1593.99 62.143 44.004'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='37.018' y2='0' gradientTransform='translate(565.681 1563.72) rotate(8.08917)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='21.969' y2='-4.681' gradientTransform='translate(564.513 1578.73)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='25.325' y2='-5.366' gradientTransform='translate(569.441 1580.32)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.996' y2='-3.13' gradientTransform='translate(584.483 1576)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='16.571' y2='0' gradientTransform='translate(573.858 1564.38) rotate(20.3432)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.662' y2='0' gradientTransform='translate(574.683 1575.93) rotate(-13.0667)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23000000'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group'%3E%3Cpath d='M 552.022,1592.9 L 543.526,1582.7 L 543.526,1561.69 L 556.322,1550.04' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 556.322,1550.04 C 562.699,1553.17 567.216,1557.92 570.195,1564.02 L 556.322,1550.04 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 570.195,1564.02 C 572.649,1569.24 573.512,1574.73 572.55,1578.24 C 571.854,1574.07 571.256,1568.75 570.195,1564.02 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 550.47,1591.04 C 550.723,1590.23 551.828,1589.23 553.946,1588.11 C 555.803,1587.13 558.109,1585.61 560.902,1584.27 L 559.075,1582.04 L 551.259,1586.44 C 550.228,1587.02 549.411,1587.66 548.63,1588.83' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.22 0.22' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 551.697,1592.54 C 552.138,1591.49 553.268,1590.58 554.361,1590.05 L 551.697,1592.54 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 552.022,1592.92 C 552.436,1591.85 553.547,1590.92 554.629,1590.37 L 552.022,1592.92 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 572.55,1578.24 C 571.405,1582.77 569.034,1586.09 565.168,1587.96 L 572.55,1578.24 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 545.639,1563.29 L 558.508,1565.38' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.44 0.44' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke-linecap='round' stroke='%23000000' stroke-width='0.11' fill='%23ff00fc'%3E%3Cpath d='M 543.526,1582.49 L 544.487,1582.49' fill='none'/%3E%3Cpath d='M 543.526,1581.94 L 544.487,1581.94' fill='none'/%3E%3Cpath d='M 543.526,1581.39 L 544.487,1581.39' fill='none'/%3E%3Cpath d='M 543.526,1580.84 L 544.487,1580.84' fill='none'/%3E%3Cpath d='M 543.526,1580.29 L 544.487,1580.29' fill='none'/%3E%3Cpath d='M 543.526,1579.73 L 544.487,1579.73' fill='none'/%3E%3Cpath d='M 543.526,1579.17 L 544.487,1579.17' fill='none'/%3E%3Cpath d='M 543.521,1578.62 L 544.487,1578.62' fill='none'/%3E%3Cpath d='M 543.526,1578.07 L 544.487,1578.07' fill='none'/%3E%3Cpath d='M 543.526,1577.52 L 544.487,1577.52' fill='none'/%3E%3Cpath d='M 543.526,1576.97 L 544.487,1576.97' fill='none'/%3E%3Cpath d='M 543.526,1576.41 L 544.487,1576.41' fill='none'/%3E%3Cpath d='M 543.526,1575.86 L 544.487,1575.86' fill='none'/%3E%3Cpath d='M 543.526,1575.31 L 544.487,1575.31' fill='none'/%3E%3Cpath d='M 543.526,1574.76 L 544.487,1574.76' fill='none'/%3E%3Cpath d='M 543.526,1574.2 L 544.487,1574.2' fill='none'/%3E%3Cpath d='M 543.526,1573.65 L 544.487,1573.65' fill='none'/%3E%3Cpath d='M 543.526,1573.09 L 544.487,1573.09' fill='none'/%3E%3Cpath d='M 543.526,1572.54 L 544.487,1572.54' fill='none'/%3E%3Cpath d='M 543.526,1571.99 L 544.487,1571.99' fill='none'/%3E%3Cpath d='M 543.526,1571.44 L 544.487,1571.44' fill='none'/%3E%3Cpath d='M 543.526,1570.89 L 544.487,1570.89' fill='none'/%3E%3Cpath d='M 543.526,1570.33 L 544.487,1570.33' fill='none'/%3E%3Cpath d='M 543.526,1569.78 L 544.487,1569.78' fill='none'/%3E%3Cpath d='M 543.526,1569.22 L 544.487,1569.22' fill='none'/%3E%3Cpath d='M 543.526,1568.68 L 544.487,1568.68' fill='none'/%3E%3Cpath d='M 543.526,1568.12 L 544.487,1568.12' fill='none'/%3E%3Cpath d='M 543.526,1567.57 L 544.487,1567.57' fill='none'/%3E%3Cpath d='M 543.526,1567.01 L 544.487,1567.01' fill='none'/%3E%3Cpath d='M 543.526,1566.45 L 544.487,1566.45' fill='none'/%3E%3Cpath d='M 543.526,1565.91 L 544.487,1565.91' fill='none'/%3E%3Cpath d='M 543.526,1565.36 L 544.487,1565.36' fill='none'/%3E%3Cpath d='M 543.526,1564.8 L 544.487,1564.8' fill='none'/%3E%3Cpath d='M 543.609,1564.8 L 544.575,1564.8' fill='none'/%3E%3Cpath d='M 543.609,1564.25 L 544.575,1564.25' fill='none'/%3E%3Cpath d='M 543.609,1563.7 L 544.575,1563.7' fill='none'/%3E%3Cpath d='M 543.609,1563.14 L 544.575,1563.14' fill='none'/%3E%3Cpath d='M 543.609,1562.58 L 544.575,1562.58' fill='none'/%3E%3Cpath d='M 543.609,1562.04 L 544.575,1562.04' fill='none'/%3E%3C/g%3E%3Cpath d='M 544.373,1560.92 L 545.02,1561.64' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 544.778,1560.55 L 545.431,1561.27' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 545.189,1560.18 L 545.839,1560.89' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 545.599,1559.81 L 546.246,1560.52' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 546.008,1559.44 L 546.654,1560.15' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 546.42,1559.06 L 547.067,1559.78' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 546.827,1558.69 L 547.474,1559.41' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 547.237,1558.32 L 547.883,1559.03' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 547.645,1557.95 L 548.294,1558.66' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 548.054,1557.58 L 548.704,1558.29' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 548.46,1557.2 L 549.113,1557.92' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 548.875,1556.83 L 549.522,1557.55' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 549.282,1556.46 L 549.929,1557.17' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 549.69,1556.09 L 550.341,1556.8' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 550.094,1555.72 L 550.751,1556.43' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 550.51,1555.34 L 551.159,1556.06' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 550.92,1554.97 L 551.567,1555.69' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 551.325,1554.6 L 551.976,1555.31' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 551.735,1554.23 L 552.387,1554.94' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 552.145,1553.86 L 552.792,1554.57' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 552.552,1553.49 L 553.206,1554.19' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 552.963,1553.11 L 553.612,1553.83' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 553.368,1552.74 L 554.022,1553.45' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 553.778,1552.37 L 554.428,1553.08' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 554.192,1552 L 554.835,1552.71' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 554.599,1551.62 L 555.245,1552.34' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 555.008,1551.25 L 555.655,1551.97' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 555.413,1550.88 L 556.063,1551.59' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 555.828,1550.51 L 556.475,1551.22' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 556.539,1551.23 C 561.829,1554.52 565.351,1559.08 567.414,1564.67 L 556.539,1551.23 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 556.712,1550.8 C 562.17,1554.2 565.808,1558.9 567.934,1564.67 L 556.712,1550.8 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 557.188,1550.8 C 562.639,1554.2 566.281,1558.9 568.408,1564.67 L 557.188,1550.8 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 569.576,1579.02 C 568.552,1582.02 566.593,1584.2 563.884,1585.73 L 569.576,1579.02 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 569.23,1578.87 C 568.227,1581.81 566.31,1583.94 563.654,1585.44 L 569.23,1578.87 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 568.861,1578.68 C 567.903,1581.48 566.071,1583.52 563.542,1584.94 L 568.861,1578.68 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 565.521,1587.7 L 556.055,1593.04 C 555.013,1593.63 552.971,1594.38 552.517,1593.62 C 552.065,1592.87 553.199,1591.78 554.737,1590.82 L 564.127,1585.58' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 568.861,1578.68 L 567.676,1565.38 C 568.625,1568.4 570.446,1572.51 568.861,1578.68 Z' stroke='none' fill='%23000000' stroke-width='0.002' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 569.375,1578.52 L 568.113,1565.38 C 569.034,1568.3 570.912,1572.55 569.375,1578.52 Z' stroke='none' fill='%23000000' stroke-width='0.002' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 554.737,1590.82 L 556.055,1593.04 C 555.072,1593.61 552.971,1594.38 552.517,1593.62 C 552.065,1592.87 553.199,1591.78 554.737,1590.82 Z' stroke='%23000000' fill='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cellipse rx='0.887' ry='0.887' transform='translate(566.197 1578.86) rotate(112.809)' stroke='%23000000' fill='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cellipse rx='0.887' ry='0.887' transform='translate(565.439 1565.41) rotate(112.809)' stroke='%23000000' fill='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 605.554,1569.49 L 605.546,1569.95 C 602.207,1570.03 598.85,1569.84 595.437,1568.64 C 582.781,1563.88 573.063,1563.62 565.883,1565.85' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cellipse rx='0.748' ry='0.654' transform='translate(603.745 1569.75) rotate(109.355) skewX(-7.40418)' stroke='%23000000' fill='%23000000' stroke-width='0.098' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 554.47,1590.49 L 563.985,1585.14' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.22 0.22' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 554.199,1590.16 L 563.687,1584.86' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.22 0.22' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 604.58,1569.96 L 604.542,1569.49 L 605.482,1569.49 C 605.535,1569.49 605.594,1569.53 605.594,1569.57 L 605.577,1569.88 C 605.577,1569.92 605.518,1569.97 605.461,1569.97 L 604.58,1569.96 L 604.58,1569.96 Z' stroke='none' fill='%23000000' stroke-width='0.014' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 566.257,1565.75 L 597.874,1569.34 C 596.601,1569.06 595.427,1568.54 594.231,1568.21 C 587.765,1566.44 578.667,1566.26 567.968,1565.29 L 566.257,1565.75 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 570.889,1566.58 L 592.586,1570.59 C 591.227,1570.03 589.731,1569.56 588.281,1568.98 C 584.153,1566.83 579.548,1565.97 576.482,1566.4 C 573.905,1566.76 572.916,1566.43 570.889,1566.58 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 593.26,1570.32 C 595.097,1570.66 596.732,1571.27 598.488,1571.65 C 600.117,1572.01 601.878,1572.37 603.414,1572.54 L 603.386,1573.09 C 601.375,1572.95 599.064,1572.46 596.636,1571.72 L 592.586,1570.59' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cellipse rx='0.748' ry='0.654' transform='translate(601.644 1572.48) rotate(109.355) skewX(-7.40418)' stroke='%23000000' fill='%23000000' stroke-width='0.098' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 566.511,1565.21 L 597.981,1568.56 C 595.449,1567.8 592.482,1566.79 590.128,1566.02 C 581.672,1563.26 572.649,1563.25 566.511,1565.21 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 565.44,1565.41 C 576.183,1561.98 585.511,1564.38 594.54,1567.57 C 600.347,1569.62 603.252,1569.42 605.554,1569.49' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 566.763,1578.61 C 570.843,1578.58 575.015,1577.94 579.467,1575.48 L 566.763,1578.61 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 566.763,1578.61 C 570.843,1578.58 575.015,1577.94 579.467,1575.48 C 585.938,1571.59 592.808,1569.8 600.001,1569.71' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 603.743,1570.01 C 593.636,1569.96 585.943,1572.48 579.291,1576.18 L 603.743,1570.01 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 566.585,1579.32 C 570.666,1579.28 574.841,1578.64 579.291,1576.18 L 566.585,1579.32 Z' stroke='none' fill='%23000000' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 570.268,1574.39 C 570.183,1571.41 569.701,1568.48 568.665,1565.64 L 570.268,1574.39 Z' stroke='none' fill='%23000000' stroke-width='0.002' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 570.268,1574.39 C 570.389,1575.93 570.169,1577.4 569.699,1578.81 L 570.268,1574.39 Z' stroke='none' fill='%23000000' stroke-width='0.002' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 571.726,1580.4 C 576.428,1580.36 581.544,1579.42 586.68,1576.59 L 571.726,1580.4 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 571.726,1580.4 C 576.428,1580.36 581.544,1579.42 586.68,1576.59 C 593.748,1572.55 596.678,1572.44 601.111,1572.89' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 601.111,1572.89 L 586.68,1576.59 C 590.381,1574.76 594.471,1571.86 601.111,1572.89 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 597.815,1572.06 L 588.672,1574.83 C 590.131,1573.58 595.497,1571.95 597.815,1572.06 Z' stroke='none' fill='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 588.672,1574.83 L 572.043,1579.85 C 575.521,1580.29 585.286,1577.34 588.672,1574.83 Z' stroke='none' fill='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 571.564,1566.3 L 593.26,1570.32 C 591.905,1569.76 590.412,1569.28 588.955,1568.71 C 584.829,1566.56 580.224,1565.69 577.159,1566.12 C 574.583,1566.49 573.591,1566.16 571.564,1566.3 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 600.001,1569.71 C 591.453,1569.91 585.007,1572.2 579.467,1575.48 L 600.001,1569.71 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 555.75,1553.77 L 555.044,1554.54 L 555.176,1554.66 L 555.539,1554.27 L 555.563,1554.48 L 555.579,1554.67 L 555.61,1555.06 L 555.817,1555.26 L 555.769,1554.63 L 556.526,1554.47 L 556.354,1554.32 L 555.745,1554.44 L 555.712,1554.08 L 555.891,1553.89 L 555.75,1553.77 Z M 556.586,1554.53 L 556.532,1554.74 L 556.274,1555.67 L 557.185,1555.32 L 557.38,1555.26 L 557.226,1555.11 L 557.022,1555.18 L 556.551,1555.37 L 556.686,1554.87 L 556.745,1554.67 L 556.586,1554.53 Z M 557.442,1555.31 L 557.442,1555.31 L 557.419,1555.54 L 557.385,1555.97 L 557.371,1556.16 L 557.35,1556.4 L 556.859,1555.94 L 556.731,1556.08 L 557.506,1556.79 L 557.525,1556.56 L 557.561,1556.13 L 557.573,1555.93 L 557.597,1555.71 L 558.089,1556.16 L 558.217,1556.02 L 557.619,1555.47 L 557.619,1555.47 L 557.442,1555.31 Z M 558.125,1556.32 L 557.799,1556.68 C 557.697,1556.79 557.7,1556.97 557.816,1557.08 L 558.38,1557.6 L 558.511,1557.45 L 557.944,1556.94 C 557.907,1556.91 557.902,1556.84 557.937,1556.8 L 558.001,1556.73 L 558.502,1557.19 L 558.63,1557.05 L 558.13,1556.59 L 558.268,1556.45 C 558.302,1556.41 558.359,1556.4 558.402,1556.44 L 558.968,1556.96 L 559.091,1556.82 L 558.525,1556.3 C 558.411,1556.19 558.231,1556.2 558.125,1556.32 Z' stroke='none' fill='%23000000' stroke-width='0.002' fill-rule='nonzero' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 546.182,1581.44 L 559.051,1579.36' fill='none' stroke='%23000000' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.44 0.44' stroke-dashoffset='0' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR--not-highlighted, .KN95_NR--not-highlighted, .ORIGINAL--not-highlighted {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='62.143pt' height='44.004pt' viewBox='543.466 -1593.99 62.143 44.004'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='37.018' y2='0' gradientTransform='translate(565.681 1563.72) rotate(8.08917)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='21.969' y2='-4.681' gradientTransform='translate(564.513 1578.73)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='25.325' y2='-5.366' gradientTransform='translate(569.441 1580.32)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.996' y2='-3.13' gradientTransform='translate(584.483 1576)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='16.571' y2='0' gradientTransform='translate(573.858 1564.38) rotate(20.3432)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.662' y2='0' gradientTransform='translate(574.683 1575.93) rotate(-13.0667)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%23cccccc'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group'%3E%3Cpath d='M 552.022,1592.9 L 543.526,1582.7 L 543.526,1561.69 L 556.322,1550.04' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 556.322,1550.04 C 562.699,1553.17 567.216,1557.92 570.195,1564.02 L 556.322,1550.04 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 570.195,1564.02 C 572.649,1569.24 573.512,1574.73 572.55,1578.24 C 571.854,1574.07 571.256,1568.75 570.195,1564.02 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 550.47,1591.04 C 550.723,1590.23 551.828,1589.23 553.946,1588.11 C 555.803,1587.13 558.109,1585.61 560.902,1584.27 L 559.075,1582.04 L 551.259,1586.44 C 550.228,1587.02 549.411,1587.66 548.63,1588.83' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.22 0.22' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 551.697,1592.54 C 552.138,1591.49 553.268,1590.58 554.361,1590.05 L 551.697,1592.54 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 552.022,1592.92 C 552.436,1591.85 553.547,1590.92 554.629,1590.37 L 552.022,1592.92 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 572.55,1578.24 C 571.405,1582.77 569.034,1586.09 565.168,1587.96 L 572.55,1578.24 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 545.639,1563.29 L 558.508,1565.38' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.44 0.44' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke-linecap='round' stroke='%23cccccc' stroke-width='0.11' fill='%23ff00fc'%3E%3Cpath d='M 543.526,1582.49 L 544.487,1582.49' fill='none'/%3E%3Cpath d='M 543.526,1581.94 L 544.487,1581.94' fill='none'/%3E%3Cpath d='M 543.526,1581.39 L 544.487,1581.39' fill='none'/%3E%3Cpath d='M 543.526,1580.84 L 544.487,1580.84' fill='none'/%3E%3Cpath d='M 543.526,1580.29 L 544.487,1580.29' fill='none'/%3E%3Cpath d='M 543.526,1579.73 L 544.487,1579.73' fill='none'/%3E%3Cpath d='M 543.526,1579.17 L 544.487,1579.17' fill='none'/%3E%3Cpath d='M 543.521,1578.62 L 544.487,1578.62' fill='none'/%3E%3Cpath d='M 543.526,1578.07 L 544.487,1578.07' fill='none'/%3E%3Cpath d='M 543.526,1577.52 L 544.487,1577.52' fill='none'/%3E%3Cpath d='M 543.526,1576.97 L 544.487,1576.97' fill='none'/%3E%3Cpath d='M 543.526,1576.41 L 544.487,1576.41' fill='none'/%3E%3Cpath d='M 543.526,1575.86 L 544.487,1575.86' fill='none'/%3E%3Cpath d='M 543.526,1575.31 L 544.487,1575.31' fill='none'/%3E%3Cpath d='M 543.526,1574.76 L 544.487,1574.76' fill='none'/%3E%3Cpath d='M 543.526,1574.2 L 544.487,1574.2' fill='none'/%3E%3Cpath d='M 543.526,1573.65 L 544.487,1573.65' fill='none'/%3E%3Cpath d='M 543.526,1573.09 L 544.487,1573.09' fill='none'/%3E%3Cpath d='M 543.526,1572.54 L 544.487,1572.54' fill='none'/%3E%3Cpath d='M 543.526,1571.99 L 544.487,1571.99' fill='none'/%3E%3Cpath d='M 543.526,1571.44 L 544.487,1571.44' fill='none'/%3E%3Cpath d='M 543.526,1570.89 L 544.487,1570.89' fill='none'/%3E%3Cpath d='M 543.526,1570.33 L 544.487,1570.33' fill='none'/%3E%3Cpath d='M 543.526,1569.78 L 544.487,1569.78' fill='none'/%3E%3Cpath d='M 543.526,1569.22 L 544.487,1569.22' fill='none'/%3E%3Cpath d='M 543.526,1568.68 L 544.487,1568.68' fill='none'/%3E%3Cpath d='M 543.526,1568.12 L 544.487,1568.12' fill='none'/%3E%3Cpath d='M 543.526,1567.57 L 544.487,1567.57' fill='none'/%3E%3Cpath d='M 543.526,1567.01 L 544.487,1567.01' fill='none'/%3E%3Cpath d='M 543.526,1566.45 L 544.487,1566.45' fill='none'/%3E%3Cpath d='M 543.526,1565.91 L 544.487,1565.91' fill='none'/%3E%3Cpath d='M 543.526,1565.36 L 544.487,1565.36' fill='none'/%3E%3Cpath d='M 543.526,1564.8 L 544.487,1564.8' fill='none'/%3E%3Cpath d='M 543.609,1564.8 L 544.575,1564.8' fill='none'/%3E%3Cpath d='M 543.609,1564.25 L 544.575,1564.25' fill='none'/%3E%3Cpath d='M 543.609,1563.7 L 544.575,1563.7' fill='none'/%3E%3Cpath d='M 543.609,1563.14 L 544.575,1563.14' fill='none'/%3E%3Cpath d='M 543.609,1562.58 L 544.575,1562.58' fill='none'/%3E%3Cpath d='M 543.609,1562.04 L 544.575,1562.04' fill='none'/%3E%3C/g%3E%3Cpath d='M 544.373,1560.92 L 545.02,1561.64' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 544.778,1560.55 L 545.431,1561.27' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 545.189,1560.18 L 545.839,1560.89' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 545.599,1559.81 L 546.246,1560.52' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 546.008,1559.44 L 546.654,1560.15' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 546.42,1559.06 L 547.067,1559.78' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 546.827,1558.69 L 547.474,1559.41' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 547.237,1558.32 L 547.883,1559.03' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 547.645,1557.95 L 548.294,1558.66' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 548.054,1557.58 L 548.704,1558.29' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 548.46,1557.2 L 549.113,1557.92' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 548.875,1556.83 L 549.522,1557.55' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 549.282,1556.46 L 549.929,1557.17' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 549.69,1556.09 L 550.341,1556.8' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 550.094,1555.72 L 550.751,1556.43' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 550.51,1555.34 L 551.159,1556.06' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 550.92,1554.97 L 551.567,1555.69' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 551.325,1554.6 L 551.976,1555.31' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 551.735,1554.23 L 552.387,1554.94' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 552.145,1553.86 L 552.792,1554.57' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 552.552,1553.49 L 553.206,1554.19' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 552.963,1553.11 L 553.612,1553.83' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 553.368,1552.74 L 554.022,1553.45' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 553.778,1552.37 L 554.428,1553.08' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 554.192,1552 L 554.835,1552.71' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 554.599,1551.62 L 555.245,1552.34' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 555.008,1551.25 L 555.655,1551.97' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 555.413,1550.88 L 556.063,1551.59' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 555.828,1550.51 L 556.475,1551.22' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 556.539,1551.23 C 561.829,1554.52 565.351,1559.08 567.414,1564.67 L 556.539,1551.23 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 556.712,1550.8 C 562.17,1554.2 565.808,1558.9 567.934,1564.67 L 556.712,1550.8 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 557.188,1550.8 C 562.639,1554.2 566.281,1558.9 568.408,1564.67 L 557.188,1550.8 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 569.576,1579.02 C 568.552,1582.02 566.593,1584.2 563.884,1585.73 L 569.576,1579.02 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 569.23,1578.87 C 568.227,1581.81 566.31,1583.94 563.654,1585.44 L 569.23,1578.87 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 568.861,1578.68 C 567.903,1581.48 566.071,1583.52 563.542,1584.94 L 568.861,1578.68 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 565.521,1587.7 L 556.055,1593.04 C 555.013,1593.63 552.971,1594.38 552.517,1593.62 C 552.065,1592.87 553.199,1591.78 554.737,1590.82 L 564.127,1585.58' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 568.861,1578.68 L 567.676,1565.38 C 568.625,1568.4 570.446,1572.51 568.861,1578.68 Z' stroke='none' fill='%23cccccc' stroke-width='0.002' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 569.375,1578.52 L 568.113,1565.38 C 569.034,1568.3 570.912,1572.55 569.375,1578.52 Z' stroke='none' fill='%23cccccc' stroke-width='0.002' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 554.737,1590.82 L 556.055,1593.04 C 555.072,1593.61 552.971,1594.38 552.517,1593.62 C 552.065,1592.87 553.199,1591.78 554.737,1590.82 Z' stroke='%23cccccc' fill='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cellipse rx='0.887' ry='0.887' transform='translate(566.197 1578.86) rotate(112.809)' stroke='%23cccccc' fill='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cellipse rx='0.887' ry='0.887' transform='translate(565.439 1565.41) rotate(112.809)' stroke='%23cccccc' fill='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 605.554,1569.49 L 605.546,1569.95 C 602.207,1570.03 598.85,1569.84 595.437,1568.64 C 582.781,1563.88 573.063,1563.62 565.883,1565.85' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cellipse rx='0.748' ry='0.654' transform='translate(603.745 1569.75) rotate(109.355) skewX(-7.40418)' stroke='%23cccccc' fill='%23cccccc' stroke-width='0.098' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 554.47,1590.49 L 563.985,1585.14' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.22 0.22' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 554.199,1590.16 L 563.687,1584.86' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.22 0.22' stroke-dashoffset='0' stroke-linecap='round'/%3E%3Cpath d='M 604.58,1569.96 L 604.542,1569.49 L 605.482,1569.49 C 605.535,1569.49 605.594,1569.53 605.594,1569.57 L 605.577,1569.88 C 605.577,1569.92 605.518,1569.97 605.461,1569.97 L 604.58,1569.96 L 604.58,1569.96 Z' stroke='none' fill='%23cccccc' stroke-width='0.014' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 566.257,1565.75 L 597.874,1569.34 C 596.601,1569.06 595.427,1568.54 594.231,1568.21 C 587.765,1566.44 578.667,1566.26 567.968,1565.29 L 566.257,1565.75 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 570.889,1566.58 L 592.586,1570.59 C 591.227,1570.03 589.731,1569.56 588.281,1568.98 C 584.153,1566.83 579.548,1565.97 576.482,1566.4 C 573.905,1566.76 572.916,1566.43 570.889,1566.58 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 593.26,1570.32 C 595.097,1570.66 596.732,1571.27 598.488,1571.65 C 600.117,1572.01 601.878,1572.37 603.414,1572.54 L 603.386,1573.09 C 601.375,1572.95 599.064,1572.46 596.636,1571.72 L 592.586,1570.59' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cellipse rx='0.748' ry='0.654' transform='translate(601.644 1572.48) rotate(109.355) skewX(-7.40418)' stroke='%23cccccc' fill='%23cccccc' stroke-width='0.098' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 566.511,1565.21 L 597.981,1568.56 C 595.449,1567.8 592.482,1566.79 590.128,1566.02 C 581.672,1563.26 572.649,1563.25 566.511,1565.21 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 565.44,1565.41 C 576.183,1561.98 585.511,1564.38 594.54,1567.57 C 600.347,1569.62 603.252,1569.42 605.554,1569.49' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 566.763,1578.61 C 570.843,1578.58 575.015,1577.94 579.467,1575.48 L 566.763,1578.61 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 566.763,1578.61 C 570.843,1578.58 575.015,1577.94 579.467,1575.48 C 585.938,1571.59 592.808,1569.8 600.001,1569.71' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 603.743,1570.01 C 593.636,1569.96 585.943,1572.48 579.291,1576.18 L 603.743,1570.01 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 566.585,1579.32 C 570.666,1579.28 574.841,1578.64 579.291,1576.18 L 566.585,1579.32 Z' stroke='none' fill='%23cccccc' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 570.268,1574.39 C 570.183,1571.41 569.701,1568.48 568.665,1565.64 L 570.268,1574.39 Z' stroke='none' fill='%23cccccc' stroke-width='0.002' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 570.268,1574.39 C 570.389,1575.93 570.169,1577.4 569.699,1578.81 L 570.268,1574.39 Z' stroke='none' fill='%23cccccc' stroke-width='0.002' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 571.726,1580.4 C 576.428,1580.36 581.544,1579.42 586.68,1576.59 L 571.726,1580.4 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 571.726,1580.4 C 576.428,1580.36 581.544,1579.42 586.68,1576.59 C 593.748,1572.55 596.678,1572.44 601.111,1572.89' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M 601.111,1572.89 L 586.68,1576.59 C 590.381,1574.76 594.471,1571.86 601.111,1572.89 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 597.815,1572.06 L 588.672,1574.83 C 590.131,1573.58 595.497,1571.95 597.815,1572.06 Z' stroke='none' fill='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 588.672,1574.83 L 572.043,1579.85 C 575.521,1580.29 585.286,1577.34 588.672,1574.83 Z' stroke='none' fill='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 571.564,1566.3 L 593.26,1570.32 C 591.905,1569.76 590.412,1569.28 588.955,1568.71 C 584.829,1566.56 580.224,1565.69 577.159,1566.12 C 574.583,1566.49 573.591,1566.16 571.564,1566.3 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 600.001,1569.71 C 591.453,1569.91 585.007,1572.2 579.467,1575.48 L 600.001,1569.71 Z' stroke='none' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 555.75,1553.77 L 555.044,1554.54 L 555.176,1554.66 L 555.539,1554.27 L 555.563,1554.48 L 555.579,1554.67 L 555.61,1555.06 L 555.817,1555.26 L 555.769,1554.63 L 556.526,1554.47 L 556.354,1554.32 L 555.745,1554.44 L 555.712,1554.08 L 555.891,1553.89 L 555.75,1553.77 Z M 556.586,1554.53 L 556.532,1554.74 L 556.274,1555.67 L 557.185,1555.32 L 557.38,1555.26 L 557.226,1555.11 L 557.022,1555.18 L 556.551,1555.37 L 556.686,1554.87 L 556.745,1554.67 L 556.586,1554.53 Z M 557.442,1555.31 L 557.442,1555.31 L 557.419,1555.54 L 557.385,1555.97 L 557.371,1556.16 L 557.35,1556.4 L 556.859,1555.94 L 556.731,1556.08 L 557.506,1556.79 L 557.525,1556.56 L 557.561,1556.13 L 557.573,1555.93 L 557.597,1555.71 L 558.089,1556.16 L 558.217,1556.02 L 557.619,1555.47 L 557.619,1555.47 L 557.442,1555.31 Z M 558.125,1556.32 L 557.799,1556.68 C 557.697,1556.79 557.7,1556.97 557.816,1557.08 L 558.38,1557.6 L 558.511,1557.45 L 557.944,1556.94 C 557.907,1556.91 557.902,1556.84 557.937,1556.8 L 558.001,1556.73 L 558.502,1557.19 L 558.63,1557.05 L 558.13,1556.59 L 558.268,1556.45 C 558.302,1556.41 558.359,1556.4 558.402,1556.44 L 558.968,1556.96 L 559.091,1556.82 L 558.525,1556.3 C 558.411,1556.19 558.231,1556.2 558.125,1556.32 Z' stroke='none' fill='%23cccccc' stroke-width='0.002' fill-rule='nonzero' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cpath d='M 546.182,1581.44 L 559.051,1579.36' fill='none' stroke='%23cccccc' stroke-width='0.11' stroke-linejoin='round' stroke-dasharray='0.44 0.44' stroke-dashoffset='0' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.document-icon-edit {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.786pt' height='15.786pt' viewBox='1073.29 -873.549 15.786 15.786'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.563'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1081.18 865.656) rotate(90)' stroke='none' stroke-linejoin='miter'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke='%23bec6cc'%3E%3Cpath d='M 1073.57,858.044 L 1077.25,859.033 L 1087.92,869.695 L 1087.92,869.695 L 1088.15,869.927 C 1088.95,870.739 1089.01,872.004 1088.27,872.749 L 1088.27,872.749 C 1087.53,873.488 1086.26,873.435 1085.45,872.622 L 1077.99,865.167 C 1077.99,865.167 1077.99,865.167 1077.99,865.167 L 1074.56,861.735 L 1073.57,858.044 Z' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1087.27,869.047 L 1084.57,871.747' fill='none'/%3E%3Cpath d='M 1077.24,859.03 L 1074.56,861.735' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-edit:hover:not(:disabled) {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%2300aac3' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.786pt' height='15.786pt' viewBox='1073.29 -873.549 15.786 15.786'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.563'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1081.18 865.656) rotate(90)' stroke='none' stroke-linejoin='miter'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke='%2300aac3'%3E%3Cpath d='M 1073.57,858.044 L 1077.25,859.033 L 1087.92,869.695 L 1087.92,869.695 L 1088.15,869.927 C 1088.95,870.739 1089.01,872.004 1088.27,872.749 L 1088.27,872.749 C 1087.53,873.488 1086.26,873.435 1085.45,872.622 L 1077.99,865.167 C 1077.99,865.167 1077.99,865.167 1077.99,865.167 L 1074.56,861.735 L 1073.57,858.044 Z' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1087.27,869.047 L 1084.57,871.747' fill='none'/%3E%3Cpath d='M 1077.24,859.03 L 1074.56,861.735' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.document-icon-edit--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='%23bec6cc' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.786pt' height='15.786pt' viewBox='1073.29 -873.549 15.786 15.786'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.563'%3E%3Crect x='-7.875' y='-7.875' width='15.75' height='15.75' transform='translate(1081.18 865.656) rotate(90)' stroke='none' stroke-linejoin='miter'/%3E%3Cg id='Group_1' stroke-linejoin='round' stroke='%23bec6cc'%3E%3Cpath d='M 1073.57,858.044 L 1077.25,859.033 L 1087.92,869.695 L 1087.92,869.695 L 1088.15,869.927 C 1088.95,870.739 1089.01,872.004 1088.27,872.749 L 1088.27,872.749 C 1087.53,873.488 1086.26,873.435 1085.45,872.622 L 1077.99,865.167 C 1077.99,865.167 1077.99,865.167 1077.99,865.167 L 1074.56,861.735 L 1073.57,858.044 Z' stroke-linecap='round' marker-start='none' marker-end='none'/%3E%3Cpath d='M 1087.27,869.047 L 1084.57,871.747' fill='none'/%3E%3Cpath d='M 1077.24,859.03 L 1074.56,861.735' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.Attention {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.591pt' height='15.591pt' viewBox='461.969 -2212.25 15.591 15.591'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linecap='round' stroke='%23e50000' stroke-width='0.75'%3E%3Cpath d='M 476.915,2209.37 L 474.739,2205.6 C 474.225,2204.71 473.387,2203.26 472.874,2202.37 L 470.699,2198.6 C 470.185,2197.71 469.347,2197.71 468.833,2198.6 L 466.658,2202.37 C 466.144,2203.26 465.306,2204.71 464.792,2205.6 L 462.616,2209.37 C 462.102,2210.26 462.52,2210.98 463.549,2210.98 L 467.899,2210.98 C 468.928,2210.98 470.602,2210.98 471.631,2210.98 L 475.982,2210.98 C 477.011,2210.98 477.429,2210.26 476.915,2209.37 Z' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Cg id='Group_1' stroke-linejoin='round' fill='%23ffffff'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 469.759,2208.53 L 469.759,2203.96' fill='none'/%3E%3C/g%3E%3Cpath d='M 469.762,2201.87 L 469.762,2201.82' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Crect x='461.97' y='2196.663' width='15.59' height='15.59' stroke='none' stroke-linejoin='miter' stroke-width='0.25'/%3E%3C/g%3E%3C/svg%3E");
}

.PPF2_NR_individuals, .KN95_NR_individuals {
  width: 100%;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.PPF2_NR_individuals--VIBRANT, .KN95_NR_individuals--VIBRANT {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='265.301 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.89' y2='69.197' gradientTransform='translate(309.377 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.716' y2='69.454' gradientTransform='translate(297.04 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.401' y2='7.324' gradientTransform='translate(309.356 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.801' gradientTransform='translate(293.06 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.57' gradientTransform='translate(338.361 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.57' y2='0' gradientTransform='translate(299.506 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(323.629 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 299.22,2776.57 L 299.22,2858.45 L 360.051,2862.36 C 360.094,2862.31 360.126,2862.24 360.126,2862.16 L 360.126,2784.82 L 299.22,2776.57 Z' stroke-width='8.031' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 299.22,2776.57 L 287.145,2788.29 L 287.138,2865.07 L 299.22,2858.45 L 299.22,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 299.22,2858.45 L 287.138,2865.07 L 346.173,2868.31 L 359.921,2862.45 C 359.968,2862.43 360.015,2862.4 360.051,2862.36 L 299.22,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 298.916,2857.52 L 287.134,2864.11 L 287.132,2865.07 L 298.916,2858.62 L 298.916,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 316.09,2819.56 L 316.082,2826.71 L 317.263,2826.83 L 317.269,2823.18 L 318.244,2824.24 L 319.12,2825.19 L 320.961,2827.21 L 322.713,2827.39 L 319.823,2824.22 L 322.696,2820.23 L 321.238,2820.08 L 318.947,2823.27 L 317.271,2821.45 L 317.271,2819.68 L 316.09,2819.56 Z M 323.298,2820.29 L 323.904,2821.63 L 326.666,2827.79 L 329.448,2822.2 L 330.049,2820.98 L 328.731,2820.85 L 328.122,2822.06 L 326.67,2824.98 L 325.224,2821.77 L 324.621,2820.43 L 323.298,2820.29 Z M 330.648,2821.04 L 330.658,2821.04 L 331.565,2822.41 L 333.187,2824.86 L 333.938,2825.98 L 334.84,2827.35 L 330.633,2826.92 L 330.631,2828.19 L 335.748,2828.71 L 337.229,2828.86 L 336.317,2827.49 L 334.674,2825.01 L 333.931,2823.89 L 333.037,2822.56 L 337.267,2822.99 L 337.27,2821.71 L 332.15,2821.19 L 332.141,2821.19 L 330.648,2821.04 Z M 339.281,2822.07 C 339.068,2822.15 338.874,2822.27 338.717,2822.43 C 338.551,2822.59 338.423,2822.78 338.335,2823 C 338.242,2823.23 338.198,2823.47 338.195,2823.74 L 338.189,2827.03 C 338.189,2827.3 338.234,2827.55 338.327,2827.79 C 338.416,2828.04 338.542,2828.25 338.71,2828.45 C 338.868,2828.64 339.059,2828.8 339.272,2828.92 C 339.487,2829.04 339.719,2829.12 339.966,2829.14 L 344.798,2829.63 L 344.798,2828.36 L 339.966,2827.86 C 339.853,2827.85 339.753,2827.81 339.661,2827.74 C 339.57,2827.68 339.502,2827.59 339.447,2827.49 C 339.392,2827.38 339.366,2827.27 339.366,2827.15 L 339.366,2826.49 L 343.619,2826.92 L 343.622,2825.64 L 339.366,2825.21 L 339.366,2823.86 C 339.366,2823.74 339.395,2823.63 339.451,2823.54 C 339.508,2823.45 339.576,2823.37 339.666,2823.33 C 339.76,2823.27 339.857,2823.26 339.972,2823.27 L 344.805,2823.76 L 344.807,2822.48 L 339.972,2821.99 C 339.73,2821.97 339.498,2821.99 339.281,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 323.076,2815.76 L 323.076,2817.28 C 323.076,2817.36 323.09,2817.43 323.117,2817.51 C 323.145,2817.58 323.185,2817.64 323.236,2817.7 C 323.287,2817.76 323.347,2817.8 323.413,2817.84 C 323.481,2817.87 323.554,2817.9 323.632,2817.9 L 325.141,2818.07 L 325.141,2817.69 L 323.632,2817.53 C 323.598,2817.53 323.566,2817.51 323.536,2817.49 C 323.509,2817.47 323.487,2817.45 323.468,2817.42 C 323.451,2817.39 323.445,2817.36 323.445,2817.32 L 323.445,2817.13 L 324.772,2817.26 L 324.772,2816.89 L 323.443,2816.75 L 323.445,2815.8 L 323.076,2815.76 Z M 325.441,2816.01 L 325.439,2817.53 C 325.439,2817.61 325.451,2817.68 325.481,2817.76 C 325.506,2817.83 325.547,2817.89 325.596,2817.95 C 325.649,2818 325.708,2818.05 325.774,2818.09 C 325.84,2818.12 325.911,2818.14 325.994,2818.15 L 327.501,2818.31 L 327.502,2817.94 L 325.996,2817.78 C 325.96,2817.78 325.925,2817.76 325.9,2817.75 C 325.87,2817.72 325.849,2817.7 325.83,2817.67 C 325.813,2817.64 325.807,2817.61 325.807,2817.57 L 325.807,2817.38 L 327.134,2817.52 L 327.134,2817.15 L 325.804,2817 L 325.807,2816.04 L 325.441,2816.01 Z M 327.803,2816.26 L 327.799,2818.35 L 329.1,2818.49 C 329.175,2818.49 329.25,2818.49 329.313,2818.46 C 329.382,2818.44 329.441,2818.41 329.492,2818.36 L 329.494,2818.36 C 329.545,2818.31 329.584,2818.25 329.615,2818.19 C 329.641,2818.12 329.658,2818.05 329.658,2817.98 C 329.658,2817.9 329.641,2817.83 329.618,2817.76 C 329.588,2817.69 329.549,2817.62 329.503,2817.57 C 329.454,2817.51 329.398,2817.47 329.335,2817.43 C 329.283,2817.4 329.231,2817.38 329.173,2817.37 C 329.169,2817.37 329.162,2817.37 329.158,2817.37 L 329.158,2817.36 L 328.168,2817.26 L 328.171,2816.3 L 327.803,2816.26 Z M 329.95,2816.47 L 329.95,2817.1 C 329.95,2817.14 329.952,2817.18 329.961,2817.22 C 329.968,2817.26 329.983,2817.3 329.997,2817.34 C 330.028,2817.42 330.071,2817.48 330.124,2817.54 C 330.178,2817.61 330.237,2817.66 330.309,2817.7 C 330.377,2817.73 330.454,2817.76 330.537,2817.77 L 331.42,2817.87 L 331.43,2817.87 C 331.471,2817.88 331.509,2817.89 331.541,2817.92 C 331.574,2817.94 331.599,2817.98 331.618,2818.02 C 331.637,2818.05 331.646,2818.09 331.646,2818.13 C 331.646,2818.18 331.635,2818.22 331.614,2818.25 C 331.592,2818.29 331.566,2818.31 331.529,2818.33 C 331.493,2818.35 331.452,2818.36 331.408,2818.36 L 329.952,2818.2 L 329.952,2818.57 L 331.405,2818.73 C 331.493,2818.74 331.574,2818.73 331.644,2818.7 C 331.716,2818.68 331.78,2818.64 331.839,2818.59 C 331.894,2818.54 331.939,2818.48 331.967,2818.41 C 331.999,2818.34 332.014,2818.26 332.016,2818.17 C 332.016,2818.13 332.012,2818.09 332.003,2818.05 C 331.994,2818.01 331.982,2817.97 331.964,2817.93 C 331.952,2817.89 331.935,2817.86 331.913,2817.82 C 331.894,2817.79 331.869,2817.76 331.843,2817.73 C 331.792,2817.67 331.726,2817.61 331.656,2817.57 C 331.584,2817.53 331.511,2817.51 331.427,2817.49 L 331.418,2817.49 C 331.415,2817.49 331.412,2817.49 331.408,2817.49 L 330.537,2817.4 C 330.496,2817.39 330.46,2817.38 330.426,2817.35 C 330.392,2817.33 330.366,2817.29 330.35,2817.26 C 330.329,2817.22 330.322,2817.18 330.322,2817.14 L 330.322,2816.89 L 332.008,2817.07 L 332.009,2816.7 L 330.554,2816.54 L 329.95,2816.47 Z M 333.75,2816.88 L 333.748,2818.96 L 334.116,2818.72 L 335.446,2817.82 L 335.444,2819.15 L 335.812,2819.19 L 335.816,2817.1 L 335.446,2817.35 L 334.116,2818.24 L 334.12,2816.92 L 333.75,2816.88 Z M 336.11,2817.14 L 336.108,2819.22 L 337.412,2819.36 C 337.487,2819.37 337.559,2819.37 337.625,2819.34 C 337.695,2819.32 337.753,2819.28 337.804,2819.24 C 337.852,2819.19 337.893,2819.14 337.923,2819.07 C 337.951,2819 337.966,2818.93 337.967,2818.86 C 337.967,2818.78 337.951,2818.71 337.925,2818.63 C 337.897,2818.57 337.859,2818.5 337.81,2818.45 C 337.764,2818.39 337.706,2818.35 337.644,2818.3 C 337.593,2818.28 337.538,2818.25 337.482,2818.24 L 337.78,2817.68 L 337.97,2817.33 L 337.557,2817.29 L 337.367,2817.64 L 337.167,2818.01 L 337.159,2818.03 C 337.127,2818.08 337.085,2818.12 337.027,2818.14 C 336.974,2818.17 336.912,2818.18 336.844,2818.17 L 336.478,2818.13 L 336.48,2817.17 L 336.11,2817.14 Z M 328.168,2817.62 L 329.105,2817.72 C 329.115,2817.72 329.129,2817.73 329.143,2817.73 C 329.156,2817.74 329.166,2817.74 329.18,2817.75 L 329.18,2817.75 C 329.213,2817.77 329.243,2817.8 329.26,2817.83 C 329.281,2817.86 329.29,2817.9 329.29,2817.94 C 329.29,2817.97 329.283,2818 329.271,2818.02 C 329.258,2818.04 329.247,2818.06 329.237,2818.07 C 329.222,2818.08 329.205,2818.09 329.184,2818.1 C 329.162,2818.11 329.135,2818.11 329.105,2818.11 L 328.168,2818.01 L 328.168,2817.62 Z M 336.478,2818.5 L 337.414,2818.6 C 337.425,2818.6 337.438,2818.61 337.453,2818.61 C 337.466,2818.62 337.476,2818.62 337.487,2818.63 C 337.523,2818.65 337.55,2818.68 337.568,2818.71 C 337.591,2818.74 337.602,2818.78 337.602,2818.82 C 337.598,2818.85 337.593,2818.88 337.578,2818.9 C 337.565,2818.92 337.557,2818.94 337.544,2818.95 C 337.532,2818.96 337.514,2818.97 337.493,2818.98 C 337.469,2818.99 337.444,2818.99 337.412,2818.99 L 336.476,2818.89 L 336.478,2818.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 316.499,2811.59 L 316.497,2812.97 L 317.341,2813.06 C 317.393,2813.07 317.444,2813.06 317.485,2813.05 C 317.525,2813.03 317.567,2813.01 317.597,2812.98 L 317.599,2812.97 C 317.636,2812.94 317.659,2812.91 317.678,2812.87 C 317.695,2812.82 317.708,2812.78 317.708,2812.72 C 317.708,2812.67 317.697,2812.62 317.68,2812.58 C 317.663,2812.53 317.64,2812.49 317.606,2812.45 C 317.576,2812.41 317.537,2812.38 317.497,2812.36 C 317.463,2812.34 317.429,2812.32 317.393,2812.32 C 317.389,2812.32 317.385,2812.32 317.382,2812.32 L 317.382,2812.32 L 316.74,2812.25 L 316.741,2811.61 L 316.499,2811.59 Z M 317.897,2811.73 L 317.895,2813.11 L 318.744,2813.2 C 318.797,2813.21 318.842,2813.2 318.884,2813.19 C 318.929,2813.17 318.963,2813.15 318.998,2813.12 C 319.031,2813.09 319.055,2813.05 319.08,2813.01 C 319.095,2812.97 319.104,2812.92 319.106,2812.87 C 319.104,2812.82 319.095,2812.77 319.083,2812.72 C 319.057,2812.68 319.035,2812.64 319.004,2812.6 C 318.969,2812.56 318.938,2812.53 318.895,2812.51 C 318.861,2812.49 318.827,2812.47 318.793,2812.46 L 318.983,2812.09 L 319.106,2811.85 L 318.84,2811.82 L 318.715,2812.06 L 318.586,2812.31 L 318.58,2812.32 C 318.559,2812.35 318.529,2812.38 318.495,2812.39 C 318.457,2812.41 318.42,2812.42 318.378,2812.41 L 318.136,2812.39 L 318.136,2811.75 L 317.897,2811.73 Z M 319.661,2811.97 C 319.584,2811.99 319.512,2812.04 319.453,2812.09 C 319.387,2812.15 319.337,2812.22 319.306,2812.3 C 319.272,2812.38 319.255,2812.47 319.251,2812.57 C 319.255,2812.66 319.272,2812.75 319.304,2812.84 C 319.337,2812.93 319.387,2813.01 319.451,2813.08 C 319.51,2813.15 319.583,2813.2 319.659,2813.25 C 319.742,2813.29 319.829,2813.32 319.923,2813.33 C 320.015,2813.34 320.104,2813.33 320.187,2813.3 C 320.263,2813.27 320.338,2813.24 320.398,2813.18 C 320.461,2813.12 320.51,2813.05 320.542,2812.97 C 320.576,2812.89 320.596,2812.8 320.596,2812.7 C 320.596,2812.61 320.578,2812.52 320.542,2812.43 C 320.51,2812.34 320.464,2812.27 320.4,2812.19 C 320.34,2812.12 320.265,2812.06 320.189,2812.02 C 320.104,2811.98 320.017,2811.95 319.925,2811.94 L 319.791,2811.94 C 319.744,2811.95 319.704,2811.95 319.661,2811.97 Z M 321.291,2812.08 L 321.289,2813.22 L 320.74,2813.16 L 320.74,2813.41 L 322.078,2813.55 L 322.078,2813.3 L 321.534,2813.25 L 321.536,2812.11 L 321.291,2812.08 Z M 319.925,2812.19 C 319.982,2812.19 320.04,2812.21 320.093,2812.24 C 320.148,2812.27 320.193,2812.31 320.229,2812.35 C 320.268,2812.39 320.299,2812.45 320.325,2812.51 C 320.344,2812.56 320.357,2812.62 320.357,2812.68 C 320.357,2812.74 320.344,2812.8 320.323,2812.85 C 320.299,2812.9 320.268,2812.95 320.229,2812.98 C 320.191,2813.02 320.147,2813.05 320.091,2813.06 C 320.038,2813.08 319.982,2813.09 319.923,2813.08 C 319.865,2813.08 319.808,2813.06 319.755,2813.03 C 319.704,2813 319.655,2812.97 319.617,2812.92 C 319.58,2812.87 319.548,2812.83 319.525,2812.76 C 319.508,2812.71 319.495,2812.65 319.495,2812.59 C 319.495,2812.53 319.508,2812.47 319.525,2812.42 C 319.548,2812.37 319.583,2812.32 319.619,2812.29 C 319.657,2812.25 319.706,2812.22 319.755,2812.21 C 319.808,2812.19 319.867,2812.18 319.925,2812.19 Z M 322.496,2812.24 C 322.457,2812.25 322.419,2812.27 322.383,2812.31 C 322.351,2812.34 322.325,2812.37 322.306,2812.42 C 322.289,2812.46 322.281,2812.51 322.281,2812.56 L 322.279,2813.2 C 322.281,2813.25 322.285,2813.3 322.304,2813.35 C 322.325,2813.4 322.349,2813.43 322.383,2813.47 C 322.417,2813.51 322.453,2813.54 322.496,2813.57 C 322.541,2813.59 322.587,2813.61 322.636,2813.61 L 323.619,2813.71 L 323.619,2813.47 L 322.636,2813.36 C 322.614,2813.36 322.593,2813.35 322.574,2813.34 C 322.559,2813.33 322.542,2813.31 322.532,2813.29 C 322.521,2813.27 322.515,2813.24 322.515,2813.22 L 322.515,2813.09 L 323.379,2813.18 L 323.379,2812.93 L 322.515,2812.85 L 322.519,2812.59 C 322.519,2812.56 322.521,2812.54 322.533,2812.52 C 322.545,2812.51 322.562,2812.49 322.577,2812.48 C 322.598,2812.47 322.617,2812.47 322.636,2812.47 L 323.621,2812.57 L 323.621,2812.32 L 322.638,2812.22 C 322.589,2812.22 322.542,2812.22 322.496,2812.24 Z M 324.198,2812.44 C 324.119,2812.46 324.051,2812.51 323.989,2812.56 C 323.925,2812.62 323.877,2812.69 323.843,2812.77 C 323.808,2812.85 323.789,2812.94 323.789,2813.03 C 323.789,2813.13 323.808,2813.22 323.843,2813.31 C 323.874,2813.4 323.923,2813.47 323.989,2813.55 C 324.051,2813.62 324.119,2813.67 324.198,2813.72 C 324.281,2813.76 324.368,2813.79 324.462,2813.8 L 325.13,2813.87 L 325.13,2813.62 L 324.462,2813.55 C 324.402,2813.55 324.345,2813.53 324.294,2813.5 C 324.242,2813.47 324.194,2813.43 324.154,2813.39 C 324.117,2813.34 324.087,2813.3 324.062,2813.24 C 324.045,2813.18 324.03,2813.12 324.03,2813.06 C 324.03,2813 324.045,2812.94 324.064,2812.89 C 324.087,2812.84 324.117,2812.79 324.155,2812.76 C 324.196,2812.72 324.245,2812.69 324.296,2812.68 C 324.345,2812.66 324.402,2812.65 324.464,2812.66 L 325.132,2812.73 L 325.132,2812.48 L 324.464,2812.41 L 324.327,2812.41 C 324.283,2812.41 324.242,2812.42 324.198,2812.44 Z M 316.74,2812.5 L 317.346,2812.56 C 317.356,2812.56 317.367,2812.56 317.374,2812.56 C 317.382,2812.56 317.389,2812.57 317.399,2812.58 C 317.419,2812.59 317.437,2812.6 317.452,2812.63 C 317.463,2812.65 317.467,2812.67 317.467,2812.7 C 317.467,2812.72 317.463,2812.74 317.457,2812.75 C 317.45,2812.77 317.44,2812.78 317.433,2812.78 C 317.425,2812.79 317.414,2812.8 317.401,2812.8 C 317.385,2812.81 317.37,2812.82 317.346,2812.81 L 316.74,2812.75 L 316.74,2812.5 Z M 325.875,2812.56 L 325.875,2813.7 L 325.324,2813.64 L 325.324,2813.89 L 326.666,2814.03 L 326.666,2813.78 L 326.115,2813.72 L 326.115,2812.58 L 325.875,2812.56 Z M 318.136,2812.64 L 318.744,2812.7 C 318.752,2812.7 318.761,2812.7 318.77,2812.7 C 318.781,2812.71 318.787,2812.71 318.797,2812.72 C 318.817,2812.73 318.833,2812.74 318.848,2812.77 C 318.861,2812.79 318.867,2812.82 318.867,2812.84 C 318.867,2812.87 318.861,2812.88 318.855,2812.9 C 318.848,2812.91 318.84,2812.92 318.829,2812.93 C 318.823,2812.93 318.81,2812.94 318.802,2812.95 C 318.785,2812.96 318.763,2812.96 318.744,2812.96 L 318.136,2812.89 L 318.136,2812.64 Z M 326.858,2812.66 L 326.856,2814.05 L 327.1,2814.07 L 327.103,2812.68 L 326.858,2812.66 Z M 327.9,2812.77 L 327.336,2813.85 L 327.211,2814.08 L 327.481,2814.11 L 327.604,2813.88 L 327.899,2813.31 L 328.19,2813.94 L 328.315,2814.2 L 328.581,2814.23 L 328.458,2813.97 L 327.9,2812.77 Z M 328.924,2812.9 C 328.882,2812.92 328.843,2812.94 328.811,2812.97 C 328.777,2813 328.749,2813.04 328.735,2813.08 C 328.713,2813.12 328.702,2813.17 328.702,2813.22 L 328.702,2813.86 C 328.702,2813.92 328.711,2813.97 328.732,2814.01 C 328.747,2814.06 328.775,2814.1 328.809,2814.14 C 328.841,2814.18 328.879,2814.21 328.922,2814.23 C 328.964,2814.26 329.014,2814.27 329.064,2814.28 L 330.041,2814.38 L 330.041,2814.13 L 329.064,2814.03 C 329.037,2814.03 329.018,2814.02 328.999,2814.01 C 328.981,2813.99 328.969,2813.98 328.956,2813.95 C 328.945,2813.94 328.939,2813.91 328.939,2813.89 L 328.939,2813.76 L 329.807,2813.85 L 329.807,2813.61 L 328.941,2813.52 L 328.941,2813.25 C 328.941,2813.23 328.948,2813.21 328.958,2813.19 C 328.969,2813.17 328.981,2813.15 329.003,2813.15 C 329.02,2813.14 329.039,2813.13 329.066,2813.13 L 330.043,2813.24 L 330.043,2812.99 L 329.066,2812.89 C 329.015,2812.88 328.967,2812.89 328.924,2812.9 Z M 331.167,2813.1 L 331.165,2814.49 L 332.012,2814.58 C 332.063,2814.59 332.109,2814.58 332.154,2814.57 C 332.199,2814.55 332.235,2814.53 332.269,2814.5 C 332.303,2814.47 332.326,2814.43 332.347,2814.38 C 332.362,2814.34 332.373,2814.29 332.373,2814.24 C 332.373,2814.19 332.365,2814.14 332.35,2814.1 C 332.331,2814.05 332.307,2814.01 332.275,2813.97 C 332.244,2813.94 332.21,2813.91 332.165,2813.88 C 332.135,2813.86 332.094,2813.85 332.06,2813.84 L 332.256,2813.46 L 332.376,2813.23 L 332.105,2813.2 L 331.986,2813.43 L 331.858,2813.68 L 331.852,2813.69 C 331.831,2813.72 331.801,2813.75 331.762,2813.77 C 331.728,2813.79 331.69,2813.79 331.65,2813.79 L 331.405,2813.76 L 331.408,2813.13 L 331.167,2813.1 Z M 332.793,2813.3 C 332.75,2813.32 332.709,2813.34 332.68,2813.37 C 332.645,2813.4 332.62,2813.44 332.601,2813.48 C 332.584,2813.53 332.573,2813.58 332.573,2813.63 L 332.573,2814.27 C 332.573,2814.32 332.582,2814.37 332.599,2814.41 C 332.618,2814.46 332.644,2814.5 332.678,2814.54 C 332.709,2814.58 332.748,2814.61 332.79,2814.64 C 332.835,2814.66 332.882,2814.68 332.931,2814.68 L 333.912,2814.78 L 333.912,2814.53 L 332.931,2814.43 C 332.911,2814.43 332.888,2814.42 332.869,2814.41 C 332.856,2814.39 332.84,2814.38 332.826,2814.36 C 332.816,2814.34 332.81,2814.31 332.81,2814.29 L 332.81,2814.16 L 333.673,2814.25 L 333.673,2814 L 332.811,2813.91 L 332.811,2813.65 C 332.811,2813.63 332.818,2813.61 332.829,2813.59 C 332.84,2813.57 332.856,2813.56 332.871,2813.55 C 332.89,2813.54 332.914,2813.54 332.931,2813.54 L 333.914,2813.64 L 333.914,2813.39 L 332.933,2813.29 C 332.884,2813.29 332.837,2813.29 332.793,2813.3 Z M 334.365,2813.47 C 334.316,2813.49 334.271,2813.52 334.231,2813.55 C 334.191,2813.59 334.163,2813.63 334.137,2813.68 C 334.12,2813.73 334.105,2813.79 334.105,2813.85 L 334.35,2813.87 C 334.35,2813.84 334.357,2813.8 334.372,2813.78 C 334.388,2813.75 334.409,2813.73 334.438,2813.72 C 334.465,2813.7 334.493,2813.7 334.531,2813.7 L 334.952,2813.75 C 334.987,2813.75 335.016,2813.76 335.046,2813.78 C 335.069,2813.8 335.095,2813.82 335.11,2813.86 C 335.127,2813.89 335.135,2813.92 335.135,2813.96 C 335.135,2813.99 335.127,2814.02 335.11,2814.05 C 335.095,2814.08 335.069,2814.1 335.046,2814.11 C 335.014,2814.13 334.987,2814.13 334.952,2814.13 L 334.465,2814.08 L 334.397,2814.08 C 334.372,2814.08 334.35,2814.08 334.329,2814.09 C 334.286,2814.1 334.252,2814.13 334.214,2814.15 C 334.201,2814.17 334.18,2814.19 334.167,2814.21 C 334.146,2814.24 334.133,2814.27 334.122,2814.31 C 334.112,2814.34 334.105,2814.38 334.105,2814.42 L 334.105,2814.42 C 334.105,2814.47 334.116,2814.52 334.133,2814.57 C 334.15,2814.62 334.176,2814.66 334.212,2814.7 C 334.248,2814.74 334.282,2814.77 334.327,2814.79 C 334.367,2814.82 334.416,2814.83 334.465,2814.84 L 335.01,2814.89 C 335.059,2814.9 335.105,2814.89 335.15,2814.88 C 335.195,2814.87 335.233,2814.84 335.269,2814.81 C 335.299,2814.78 335.327,2814.74 335.344,2814.7 C 335.365,2814.66 335.371,2814.61 335.371,2814.56 L 335.371,2814.55 L 335.133,2814.52 L 335.133,2814.53 C 335.133,2814.55 335.127,2814.57 335.116,2814.59 C 335.103,2814.61 335.091,2814.62 335.072,2814.64 C 335.054,2814.64 335.033,2814.65 335.01,2814.64 L 334.465,2814.59 C 334.444,2814.59 334.42,2814.58 334.403,2814.56 C 334.388,2814.55 334.372,2814.53 334.358,2814.51 C 334.35,2814.49 334.346,2814.47 334.346,2814.45 L 334.346,2814.44 C 334.346,2814.41 334.35,2814.4 334.358,2814.38 C 334.372,2814.36 334.388,2814.34 334.406,2814.34 C 334.42,2814.33 334.444,2814.32 334.465,2814.32 L 334.952,2814.37 L 335.042,2814.37 C 335.067,2814.37 335.097,2814.36 335.123,2814.36 C 335.18,2814.34 335.225,2814.31 335.263,2814.27 C 335.269,2814.26 335.271,2814.26 335.274,2814.26 C 335.276,2814.26 335.276,2814.25 335.28,2814.25 C 335.308,2814.22 335.331,2814.18 335.346,2814.13 C 335.367,2814.08 335.374,2814.03 335.374,2813.98 C 335.374,2813.92 335.363,2813.86 335.341,2813.8 C 335.323,2813.75 335.289,2813.7 335.253,2813.66 C 335.21,2813.62 335.168,2813.58 335.114,2813.55 C 335.063,2813.53 335.01,2813.5 334.952,2813.5 L 334.531,2813.45 C 334.472,2813.45 334.416,2813.45 334.365,2813.47 Z M 335.572,2813.57 L 335.566,2814.95 L 336.414,2815.04 C 336.465,2815.05 336.51,2815.04 336.552,2815.02 C 336.597,2815.01 336.636,2814.99 336.674,2814.96 L 336.674,2814.96 C 336.703,2814.92 336.731,2814.88 336.751,2814.84 C 336.766,2814.8 336.776,2814.75 336.776,2814.7 C 336.776,2814.65 336.77,2814.6 336.751,2814.55 C 336.733,2814.51 336.71,2814.47 336.678,2814.43 C 336.644,2814.39 336.61,2814.36 336.565,2814.34 C 336.535,2814.32 336.499,2814.3 336.463,2814.3 C 336.459,2814.3 336.455,2814.29 336.453,2814.29 L 336.453,2814.29 L 335.81,2814.23 L 335.81,2813.59 L 335.572,2813.57 Z M 336.972,2813.71 L 336.969,2815.1 L 337.204,2815.12 L 337.208,2813.73 L 336.972,2813.71 Z M 337.402,2813.75 L 337.399,2815.14 L 338.246,2815.22 C 338.298,2815.23 338.344,2815.22 338.389,2815.21 C 338.431,2815.2 338.466,2815.17 338.502,2815.14 C 338.536,2815.11 338.559,2815.07 338.578,2815.03 C 338.597,2814.99 338.606,2814.94 338.608,2814.89 C 338.606,2814.84 338.597,2814.79 338.581,2814.74 C 338.561,2814.7 338.538,2814.65 338.508,2814.62 C 338.476,2814.58 338.438,2814.55 338.395,2814.52 C 338.364,2814.51 338.329,2814.49 338.295,2814.48 L 338.487,2814.11 L 338.608,2813.87 L 338.342,2813.85 L 338.217,2814.08 L 338.089,2814.33 L 338.083,2814.34 C 338.061,2814.37 338.033,2814.4 337.997,2814.41 C 337.963,2814.43 337.923,2814.44 337.882,2814.44 L 337.642,2814.41 L 337.642,2813.77 L 337.402,2813.75 Z M 338.725,2813.89 L 338.849,2814.15 L 339.41,2815.35 L 339.972,2814.27 L 340.1,2814.03 L 339.83,2814 L 339.706,2814.24 L 339.41,2814.8 L 339.117,2814.18 L 338.994,2813.92 L 338.725,2813.89 Z M 331.405,2814.01 L 332.014,2814.08 C 332.024,2814.08 332.033,2814.08 332.039,2814.08 C 332.048,2814.08 332.056,2814.09 332.063,2814.09 C 332.084,2814.11 332.103,2814.13 332.12,2814.15 C 332.13,2814.17 332.139,2814.19 332.139,2814.22 C 332.139,2814.24 332.135,2814.26 332.124,2814.27 C 332.118,2814.29 332.105,2814.3 332.099,2814.3 C 332.09,2814.31 332.08,2814.32 332.069,2814.32 C 332.058,2814.33 332.05,2814.33 332.041,2814.33 L 332.012,2814.33 L 331.405,2814.27 L 331.405,2814.01 Z M 340.761,2814.1 L 340.761,2815.24 L 340.21,2815.19 L 340.209,2815.43 L 341.551,2815.57 L 341.551,2815.33 L 341,2815.26 L 341.002,2814.13 L 340.761,2814.1 Z M 342.109,2814.29 C 342.028,2814.32 341.959,2814.36 341.896,2814.42 C 341.836,2814.48 341.787,2814.55 341.749,2814.63 C 341.717,2814.7 341.698,2814.8 341.698,2814.89 C 341.698,2814.99 341.715,2815.08 341.749,2815.17 C 341.785,2815.25 341.834,2815.34 341.896,2815.4 C 341.958,2815.47 342.025,2815.53 342.106,2815.58 C 342.191,2815.62 342.279,2815.65 342.368,2815.66 C 342.466,2815.67 342.549,2815.66 342.63,2815.63 C 342.711,2815.6 342.785,2815.56 342.847,2815.5 C 342.906,2815.44 342.953,2815.38 342.987,2815.3 C 343.023,2815.21 343.041,2815.13 343.043,2815.03 C 343.041,2814.93 343.023,2814.84 342.989,2814.75 C 342.953,2814.67 342.906,2814.59 342.847,2814.52 C 342.79,2814.45 342.713,2814.39 342.632,2814.35 C 342.551,2814.31 342.468,2814.28 342.372,2814.27 L 342.236,2814.27 C 342.194,2814.27 342.153,2814.28 342.109,2814.29 Z M 343.188,2814.35 L 343.185,2815.74 L 344.032,2815.82 C 344.081,2815.83 344.128,2815.82 344.172,2815.81 C 344.217,2815.8 344.256,2815.77 344.289,2815.74 C 344.324,2815.71 344.347,2815.67 344.364,2815.63 C 344.383,2815.59 344.392,2815.54 344.392,2815.49 C 344.392,2815.44 344.383,2815.39 344.368,2815.34 C 344.349,2815.3 344.328,2815.26 344.292,2815.22 C 344.262,2815.18 344.223,2815.15 344.186,2815.12 C 344.147,2815.11 344.115,2815.09 344.077,2815.09 L 344.274,2814.71 L 344.394,2814.47 L 344.126,2814.45 L 344.006,2814.68 L 343.873,2814.93 L 343.868,2814.94 C 343.847,2814.97 343.822,2815 343.783,2815.02 C 343.747,2815.03 343.709,2815.04 343.664,2815.03 L 343.426,2815.01 L 343.426,2814.37 L 343.188,2814.35 Z M 335.808,2814.47 L 336.416,2814.53 C 336.425,2814.54 336.435,2814.54 336.444,2814.54 C 336.45,2814.55 336.459,2814.55 336.468,2814.55 L 336.468,2814.55 C 336.486,2814.57 336.506,2814.59 336.519,2814.61 C 336.534,2814.63 336.538,2814.65 336.54,2814.68 C 336.538,2814.7 336.535,2814.72 336.527,2814.73 C 336.516,2814.75 336.51,2814.76 336.501,2814.76 C 336.493,2814.77 336.484,2814.78 336.47,2814.78 C 336.455,2814.79 336.44,2814.79 336.416,2814.79 L 335.808,2814.73 L 335.808,2814.47 Z M 342.372,2814.51 C 342.432,2814.52 342.487,2814.54 342.538,2814.57 C 342.589,2814.6 342.636,2814.64 342.675,2814.68 C 342.715,2814.72 342.747,2814.78 342.768,2814.83 C 342.796,2814.89 342.802,2814.95 342.802,2815.01 C 342.802,2815.07 342.794,2815.12 342.768,2815.18 C 342.747,2815.23 342.713,2815.28 342.673,2815.31 C 342.634,2815.35 342.589,2815.38 342.538,2815.39 C 342.487,2815.41 342.43,2815.41 342.368,2815.41 C 342.308,2815.4 342.253,2815.38 342.202,2815.36 C 342.153,2815.33 342.104,2815.29 342.064,2815.25 C 342.024,2815.2 341.994,2815.15 341.973,2815.09 C 341.949,2815.04 341.94,2814.98 341.938,2814.92 C 341.94,2814.85 341.949,2814.8 341.973,2814.75 C 341.994,2814.7 342.024,2814.65 342.064,2814.62 C 342.104,2814.58 342.153,2814.55 342.205,2814.53 C 342.256,2814.51 342.308,2814.51 342.372,2814.51 Z M 337.642,2814.66 L 338.246,2814.72 C 338.257,2814.72 338.263,2814.73 338.272,2814.73 C 338.28,2814.73 338.289,2814.74 338.298,2814.74 C 338.321,2814.75 338.338,2814.77 338.349,2814.79 C 338.364,2814.82 338.37,2814.84 338.37,2814.86 C 338.37,2814.89 338.364,2814.91 338.357,2814.92 C 338.349,2814.93 338.342,2814.94 338.334,2814.95 C 338.325,2814.96 338.314,2814.97 338.299,2814.97 C 338.287,2814.98 338.265,2814.98 338.246,2814.98 L 337.642,2814.92 L 337.642,2814.66 Z M 343.426,2815.26 L 344.032,2815.33 C 344.042,2815.33 344.051,2815.33 344.06,2815.33 C 344.068,2815.34 344.075,2815.34 344.081,2815.34 C 344.105,2815.35 344.121,2815.37 344.136,2815.39 C 344.147,2815.41 344.153,2815.43 344.153,2815.46 C 344.151,2815.48 344.147,2815.5 344.143,2815.52 C 344.136,2815.53 344.126,2815.54 344.117,2815.55 C 344.111,2815.56 344.098,2815.56 344.085,2815.57 C 344.072,2815.58 344.056,2815.58 344.032,2815.58 L 343.426,2815.52 L 343.426,2815.26 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 299.521,2858.06 L 298.916,2858.62 L 359.611,2862.58 L 359.921,2862.45 C 360.024,2862.41 360.126,2862.32 360.126,2862.16 L 360.126,2862.01 L 299.521,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 298.916,2858.62 L 298.914,2776.86 L 299.22,2776.57 L 299.521,2776.61 L 299.521,2858.06 L 298.916,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_9' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(317.491 2789.88) rotate(90) skewX(-7.19518)' fill='%23e01a1a'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.973' transform='translate(323.955 2790.7) rotate(90) skewX(-7.19518)' fill='%23dc5500'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(330.42 2791.51) rotate(90) skewX(-7.19316)' fill='%23d4126a'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(336.887 2792.33) rotate(90) skewX(-7.19518)' fill='%238d56c4'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(343.351 2793.14) rotate(90) skewX(-7.19316)' fill='%23e8b3c0'/%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.334' fill='%23000000'%3E%3Cg id='Group_11'%3E%3Cpath d='M 321.9,2795.83 L 321.319,2796.92 L 321.191,2797.15 L 321.47,2797.19 L 321.595,2796.95 L 321.9,2796.38 L 322.204,2797.02 L 322.33,2797.29 L 322.608,2797.32 L 322.481,2797.06 L 321.9,2795.83 Z M 322.729,2795.93 L 322.729,2797.34 L 322.976,2797.37 L 322.976,2795.96 L 322.729,2795.93 Z M 323.174,2795.98 L 323.174,2797.39 L 324.049,2797.49 C 324.102,2797.5 324.151,2797.5 324.196,2797.48 C 324.241,2797.47 324.281,2797.45 324.315,2797.41 C 324.349,2797.38 324.377,2797.35 324.396,2797.3 C 324.415,2797.26 324.426,2797.21 324.426,2797.16 C 324.426,2797.12 324.419,2797.08 324.408,2797.05 C 324.4,2797.01 324.386,2796.98 324.366,2796.95 C 324.407,2796.92 324.441,2796.9 324.47,2796.86 C 324.5,2796.83 324.523,2796.79 324.538,2796.74 C 324.555,2796.7 324.564,2796.65 324.564,2796.6 C 324.564,2796.53 324.551,2796.47 324.529,2796.42 C 324.507,2796.36 324.474,2796.31 324.434,2796.26 C 324.393,2796.22 324.347,2796.18 324.294,2796.15 C 324.241,2796.12 324.183,2796.1 324.121,2796.1 L 323.174,2795.98 Z M 324.71,2796.17 L 324.71,2797.57 L 325.587,2797.68 C 325.641,2797.68 325.689,2797.68 325.734,2797.67 C 325.779,2797.65 325.817,2797.63 325.851,2797.6 C 325.885,2797.57 325.913,2797.53 325.932,2797.49 C 325.951,2797.44 325.962,2797.4 325.962,2797.34 C 325.962,2797.29 325.951,2797.24 325.934,2797.19 C 325.915,2797.15 325.889,2797.1 325.858,2797.06 C 325.824,2797.03 325.785,2796.99 325.743,2796.97 C 325.708,2796.95 325.675,2796.93 325.636,2796.93 L 325.834,2796.55 L 325.962,2796.31 L 325.683,2796.28 L 325.556,2796.52 L 325.424,2796.76 L 325.417,2796.78 C 325.396,2796.81 325.366,2796.84 325.33,2796.85 C 325.294,2796.87 325.253,2796.88 325.207,2796.87 L 324.96,2796.84 L 324.96,2796.2 L 324.71,2796.17 Z M 323.424,2796.26 L 324.121,2796.35 L 324.121,2796.35 C 324.157,2796.35 324.19,2796.37 324.219,2796.39 C 324.249,2796.41 324.272,2796.43 324.29,2796.47 C 324.306,2796.5 324.315,2796.53 324.315,2796.57 C 324.315,2796.61 324.306,2796.64 324.29,2796.67 C 324.272,2796.69 324.249,2796.71 324.219,2796.73 C 324.19,2796.74 324.157,2796.75 324.121,2796.74 L 323.424,2796.66 L 323.424,2796.26 Z M 326.083,2796.33 L 326.211,2796.6 L 326.792,2797.82 L 327.372,2796.74 L 327.501,2796.5 L 327.221,2796.46 L 327.096,2796.7 L 326.792,2797.27 L 326.488,2796.63 L 326.362,2796.36 L 326.083,2796.33 Z M 327.619,2796.51 L 327.619,2797.92 L 327.866,2797.75 L 328.76,2797.16 L 328.76,2798.06 L 329.007,2798.08 L 329.007,2796.68 L 328.76,2796.84 L 327.866,2797.43 L 327.866,2796.54 L 327.619,2796.51 Z M 329.775,2796.77 L 329.775,2797.93 L 329.205,2797.86 L 329.205,2798.11 L 330.592,2798.28 L 330.592,2798.03 L 330.024,2797.96 L 330.024,2796.8 L 329.775,2796.77 Z M 323.424,2796.91 L 324.051,2796.99 C 324.074,2796.99 324.096,2797 324.115,2797.01 C 324.134,2797.02 324.149,2797.04 324.161,2797.06 C 324.172,2797.08 324.179,2797.11 324.179,2797.13 C 324.179,2797.15 324.172,2797.18 324.161,2797.19 C 324.149,2797.21 324.134,2797.22 324.115,2797.23 C 324.096,2797.24 324.074,2797.24 324.051,2797.24 L 323.424,2797.17 L 323.424,2796.91 Z M 332.029,2797.07 C 331.975,2797.09 331.928,2797.12 331.888,2797.15 C 331.848,2797.19 331.818,2797.23 331.795,2797.28 C 331.771,2797.33 331.761,2797.39 331.761,2797.45 L 332.008,2797.48 C 332.009,2797.45 332.018,2797.41 332.035,2797.39 C 332.052,2797.36 332.073,2797.34 332.103,2797.33 C 332.13,2797.31 332.163,2797.31 332.199,2797.31 L 332.633,2797.36 C 332.669,2797.37 332.701,2797.38 332.731,2797.4 C 332.759,2797.42 332.782,2797.45 332.799,2797.48 C 332.816,2797.51 332.825,2797.54 332.826,2797.58 C 332.825,2797.61 332.816,2797.65 332.799,2797.67 C 332.782,2797.7 332.759,2797.72 332.731,2797.74 C 332.701,2797.75 332.669,2797.75 332.633,2797.75 L 332.133,2797.69 L 332.058,2797.69 C 332.035,2797.69 332.012,2797.69 331.99,2797.7 C 331.946,2797.71 331.907,2797.74 331.873,2797.76 C 331.856,2797.78 331.839,2797.8 331.827,2797.82 C 331.806,2797.85 331.788,2797.88 331.777,2797.91 C 331.767,2797.95 331.761,2797.99 331.761,2798.03 L 331.761,2798.03 C 331.761,2798.09 331.771,2798.14 331.791,2798.19 C 331.809,2798.24 331.835,2798.28 331.869,2798.32 C 331.903,2798.36 331.943,2798.39 331.988,2798.41 C 332.033,2798.44 332.082,2798.45 332.133,2798.46 L 332.697,2798.53 C 332.748,2798.53 332.796,2798.53 332.844,2798.51 C 332.888,2798.5 332.926,2798.48 332.962,2798.45 C 332.997,2798.42 333.022,2798.38 333.042,2798.34 C 333.063,2798.29 333.071,2798.24 333.071,2798.19 L 333.071,2798.18 L 332.825,2798.15 L 332.825,2798.16 C 332.825,2798.18 332.818,2798.21 332.807,2798.22 C 332.795,2798.24 332.78,2798.25 332.76,2798.26 C 332.741,2798.27 332.72,2798.28 332.697,2798.27 L 332.133,2798.21 C 332.109,2798.2 332.088,2798.2 332.069,2798.18 C 332.05,2798.17 332.035,2798.15 332.024,2798.13 C 332.012,2798.11 332.008,2798.09 332.008,2798.06 L 332.008,2798.05 C 332.008,2798.03 332.012,2798.01 332.024,2797.99 C 332.035,2797.97 332.05,2797.96 332.069,2797.95 C 332.088,2797.94 332.109,2797.94 332.133,2797.94 L 332.633,2798 L 332.726,2798 C 332.756,2798 332.786,2797.99 332.814,2797.98 C 332.869,2797.96 332.916,2797.93 332.956,2797.9 C 332.961,2797.89 332.962,2797.89 332.965,2797.89 C 332.967,2797.88 332.969,2797.88 332.973,2797.88 C 333.003,2797.84 333.028,2797.8 333.046,2797.76 C 333.063,2797.71 333.071,2797.66 333.071,2797.61 C 333.071,2797.55 333.061,2797.49 333.037,2797.43 C 333.016,2797.38 332.984,2797.33 332.944,2797.28 C 332.903,2797.23 332.856,2797.2 332.804,2797.17 C 332.752,2797.14 332.695,2797.12 332.633,2797.11 L 332.199,2797.06 C 332.137,2797.05 332.082,2797.06 332.029,2797.07 Z M 324.96,2797.09 L 325.587,2797.17 C 325.598,2797.17 325.607,2797.17 325.615,2797.17 C 325.623,2797.18 325.632,2797.18 325.641,2797.19 C 325.662,2797.2 325.681,2797.22 325.694,2797.24 C 325.708,2797.26 325.715,2797.29 325.715,2797.31 C 325.715,2797.34 325.711,2797.35 325.702,2797.37 C 325.694,2797.38 325.686,2797.4 325.677,2797.4 C 325.671,2797.41 325.658,2797.42 325.643,2797.42 C 325.628,2797.43 325.611,2797.43 325.587,2797.43 L 324.96,2797.35 L 324.96,2797.09 Z M 333.501,2797.24 C 333.456,2797.26 333.416,2797.28 333.382,2797.31 C 333.348,2797.34 333.323,2797.38 333.303,2797.43 C 333.284,2797.47 333.273,2797.52 333.273,2797.57 L 333.273,2798.22 C 333.273,2798.27 333.284,2798.32 333.303,2798.37 C 333.323,2798.42 333.348,2798.46 333.382,2798.5 C 333.416,2798.54 333.456,2798.57 333.501,2798.59 C 333.546,2798.62 333.595,2798.64 333.646,2798.64 L 334.661,2798.76 L 334.661,2798.51 L 333.646,2798.39 C 333.622,2798.39 333.601,2798.38 333.582,2798.37 C 333.562,2798.35 333.548,2798.33 333.537,2798.31 C 333.525,2798.29 333.52,2798.27 333.52,2798.25 L 333.52,2798.11 L 334.412,2798.22 L 334.412,2797.97 L 333.52,2797.86 L 333.52,2797.6 C 333.52,2797.57 333.525,2797.55 333.537,2797.53 C 333.548,2797.52 333.562,2797.5 333.582,2797.49 C 333.601,2797.48 333.622,2797.48 333.646,2797.48 L 334.661,2797.61 L 334.661,2797.35 L 333.646,2797.23 C 333.595,2797.23 333.546,2797.23 333.501,2797.24 Z M 334.857,2797.37 L 334.857,2798.78 L 335.733,2798.89 C 335.784,2798.89 335.834,2798.89 335.878,2798.87 C 335.925,2798.86 335.963,2798.84 335.997,2798.81 C 336.031,2798.78 336.059,2798.74 336.078,2798.7 C 336.097,2798.65 336.106,2798.61 336.106,2798.55 C 336.106,2798.5 336.097,2798.45 336.078,2798.41 C 336.061,2798.36 336.036,2798.32 336.001,2798.28 C 335.97,2798.24 335.931,2798.21 335.889,2798.18 C 335.855,2798.16 335.819,2798.15 335.78,2798.14 L 335.98,2797.76 L 336.106,2797.52 L 335.829,2797.49 L 335.702,2797.72 L 335.569,2797.97 L 335.563,2797.98 C 335.54,2798.02 335.512,2798.04 335.474,2798.06 C 335.437,2798.08 335.397,2798.08 335.352,2798.08 L 335.103,2798.05 L 335.103,2797.4 L 334.857,2797.37 Z M 336.306,2797.55 L 336.306,2798.96 L 336.555,2798.99 L 336.555,2797.58 L 336.306,2797.55 Z M 336.983,2797.66 C 336.935,2797.68 336.897,2797.7 336.863,2797.73 C 336.829,2797.76 336.802,2797.8 336.782,2797.84 C 336.763,2797.88 336.755,2797.93 336.752,2797.98 L 336.752,2798.63 C 336.755,2798.68 336.763,2798.74 336.782,2798.78 C 336.802,2798.83 336.829,2798.87 336.863,2798.91 C 336.897,2798.95 336.935,2798.98 336.983,2799.01 C 337.027,2799.03 337.074,2799.05 337.127,2799.06 L 338.142,2799.18 L 338.142,2798.93 L 337.127,2798.81 C 337.104,2798.8 337.083,2798.79 337.063,2798.78 C 337.044,2798.76 337.029,2798.75 337.016,2798.73 C 337.005,2798.71 336.999,2798.68 336.999,2798.66 L 336.999,2798.53 L 337.893,2798.64 L 337.893,2798.39 L 336.999,2798.28 L 336.999,2798.01 C 336.999,2797.99 337.005,2797.97 337.016,2797.95 C 337.029,2797.93 337.044,2797.92 337.063,2797.91 C 337.083,2797.9 337.104,2797.9 337.127,2797.9 L 338.142,2798.02 L 338.142,2797.77 L 337.127,2797.65 C 337.074,2797.64 337.027,2797.65 336.983,2797.66 Z M 338.608,2797.86 C 338.555,2797.88 338.51,2797.9 338.47,2797.94 C 338.43,2797.97 338.397,2798.02 338.374,2798.07 C 338.353,2798.12 338.34,2798.18 338.34,2798.24 L 338.589,2798.27 C 338.589,2798.23 338.597,2798.2 338.615,2798.17 C 338.632,2798.15 338.655,2798.13 338.683,2798.11 C 338.712,2798.1 338.744,2798.09 338.778,2798.1 L 339.215,2798.15 C 339.248,2798.15 339.281,2798.17 339.311,2798.19 C 339.34,2798.21 339.363,2798.23 339.381,2798.26 C 339.398,2798.29 339.406,2798.33 339.406,2798.37 C 339.406,2798.4 339.398,2798.43 339.381,2798.46 C 339.363,2798.49 339.34,2798.51 339.311,2798.52 C 339.281,2798.53 339.248,2798.54 339.215,2798.53 L 338.714,2798.47 C 338.663,2798.47 338.615,2798.47 338.572,2798.49 C 338.527,2798.5 338.487,2798.52 338.453,2798.55 C 338.436,2798.57 338.421,2798.58 338.406,2798.61 C 338.385,2798.63 338.37,2798.67 338.357,2798.7 C 338.346,2798.74 338.34,2798.77 338.34,2798.81 L 338.34,2798.82 C 338.34,2798.87 338.35,2798.92 338.37,2798.97 C 338.389,2799.02 338.416,2799.06 338.451,2799.1 C 338.485,2799.14 338.523,2799.17 338.567,2799.2 C 338.612,2799.22 338.661,2799.24 338.714,2799.25 L 339.276,2799.31 L 339.353,2799.31 C 339.377,2799.31 339.399,2799.31 339.423,2799.3 C 339.468,2799.29 339.508,2799.26 339.543,2799.23 C 339.576,2799.2 339.604,2799.17 339.623,2799.12 C 339.642,2799.08 339.653,2799.03 339.653,2798.98 L 339.653,2798.97 L 339.404,2798.94 L 339.404,2798.95 C 339.404,2798.97 339.398,2798.99 339.387,2799.01 C 339.377,2799.03 339.359,2799.04 339.34,2799.05 C 339.321,2799.06 339.3,2799.06 339.276,2799.06 L 338.714,2798.99 C 338.691,2798.99 338.67,2798.98 338.651,2798.97 C 338.632,2798.95 338.615,2798.93 338.604,2798.92 C 338.593,2798.89 338.587,2798.87 338.587,2798.85 L 338.587,2798.84 C 338.587,2798.82 338.593,2798.8 338.604,2798.78 C 338.615,2798.76 338.632,2798.75 338.651,2798.74 C 338.67,2798.73 338.691,2798.72 338.714,2798.73 L 339.215,2798.79 C 339.278,2798.79 339.338,2798.79 339.393,2798.77 C 339.449,2798.75 339.498,2798.72 339.538,2798.68 C 339.54,2798.68 339.543,2798.68 339.544,2798.67 C 339.549,2798.67 339.55,2798.67 339.553,2798.67 C 339.585,2798.63 339.609,2798.59 339.625,2798.54 C 339.642,2798.5 339.653,2798.45 339.653,2798.4 C 339.653,2798.33 339.64,2798.27 339.619,2798.22 C 339.595,2798.16 339.564,2798.11 339.523,2798.07 C 339.485,2798.02 339.438,2797.98 339.384,2797.95 C 339.332,2797.92 339.274,2797.91 339.215,2797.9 L 338.778,2797.85 C 338.719,2797.84 338.661,2797.84 338.608,2797.86 Z M 335.103,2798.3 L 335.733,2798.38 C 335.742,2798.38 335.75,2798.38 335.761,2798.38 C 335.769,2798.39 335.778,2798.39 335.784,2798.4 C 335.808,2798.41 335.827,2798.43 335.84,2798.45 C 335.853,2798.47 335.861,2798.49 335.861,2798.52 C 335.859,2798.54 335.855,2798.56 335.846,2798.58 C 335.838,2798.59 335.831,2798.6 335.823,2798.61 C 335.814,2798.62 335.804,2798.62 335.789,2798.63 C 335.774,2798.64 335.754,2798.64 335.733,2798.64 L 335.103,2798.56 L 335.103,2798.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--VARIETY_BUNDLE, .KN95_NR_individuals--VARIETY_BUNDLE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.658pt' height='116.655pt' viewBox='139.941 -3355.14 116.658 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='48.599' y2='24.666' gradientTransform='translate(153.64 3296.44)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23f4f4f4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='75.855' y2='0' gradientTransform='translate(250.234 3285.85) rotate(-173.019) skewX(2.01923)'%3E%3Cstop offset='0' stop-color='%23e7e7e7'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='3.029' y2='0' gradientTransform='translate(141.625 3300.16) rotate(3.51971) skewX(1.04747)'%3E%3Cstop offset='0' stop-color='%23f0f0f0'/%3E%3Cstop offset='1' stop-color='%23e5e5e5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0' y2='0.464' gradientTransform='translate(225.06 3293.29) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23ececec'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.401' y2='0.082' gradientTransform='translate(144.46 3307.3) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23e6e6e6'/%3E%3Cstop offset='1' stop-color='%23d3d3d3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.657' y2='-0.453' gradientTransform='translate(245.99 3307.57) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23ebebeb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_6' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.292' y2='0.037' gradientTransform='translate(254.841 3283.6)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23d5d5d5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_7' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.356' y2='-0.029' gradientTransform='translate(145.705 3285.51)'%3E%3Cstop offset='0' stop-color='%23c9c9c9'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(198.27 3296.81) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 145.876,3293.93 L 141.163,3318.56 L 240.053,3317.7 L 256.201,3294.67 L 256.273,3294.57 C 256.393,3294.38 256.479,3294.17 256.53,3293.93 L 145.876,3293.93 Z' stroke-width='0.26' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.162' fill='%23000000'%3E%3Cg id='Group_4'%3E%3Cpath d='M 192.7,3305.67 L 191.86,3305.67 L 190.102,3306.72 L 189.346,3306.22 L 189.569,3305.68 L 188.885,3305.68 L 187.993,3307.85 L 188.672,3307.85 L 189.129,3306.75 L 189.567,3307.03 L 189.963,3307.29 L 190.787,3307.84 L 191.789,3307.83 L 190.497,3306.98 L 192.7,3305.67 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 196.824,3305.65 L 196.062,3305.66 L 195.539,3306.05 L 194.298,3306.98 L 193.875,3306.05 L 193.694,3305.67 L 192.929,3305.67 L 193.111,3306.06 L 193.926,3307.82 L 196.301,3306.04 L 196.824,3305.65 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 200.969,3305.64 L 198.03,3305.65 L 198.025,3305.65 L 197.165,3305.65 L 197.171,3305.65 L 197.517,3306.04 L 198.134,3306.73 L 198.417,3307.04 L 198.756,3307.42 L 196.356,3307.43 L 196.185,3307.81 L 199.095,3307.8 L 199.941,3307.79 L 199.598,3307.41 L 198.983,3306.72 L 198.7,3306.41 L 198.364,3306.03 L 200.788,3306.02 L 200.969,3305.64 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 205.29,3305.62 L 202.522,3305.63 C 202.381,3305.63 202.24,3305.65 202.101,3305.68 C 201.965,3305.71 201.836,3305.75 201.719,3305.81 C 201.599,3305.86 201.498,3305.92 201.414,3305.99 C 201.328,3306.06 201.264,3306.14 201.226,3306.22 L 200.757,3307.21 C 200.718,3307.29 200.709,3307.37 200.729,3307.44 C 200.748,3307.51 200.789,3307.57 200.858,3307.62 C 200.924,3307.67 201.012,3307.71 201.121,3307.74 C 201.227,3307.77 201.353,3307.79 201.492,3307.79 L 204.232,3307.77 L 204.42,3307.39 L 201.676,3307.4 C 201.61,3307.4 201.558,3307.4 201.515,3307.38 C 201.471,3307.36 201.44,3307.34 201.424,3307.31 C 201.408,3307.28 201.408,3307.24 201.423,3307.21 L 201.518,3307.01 L 203.941,3307 L 204.129,3306.61 L 201.7,3306.63 L 201.895,3306.22 C 201.914,3306.18 201.947,3306.15 201.991,3306.12 C 202.036,3306.09 202.089,3306.06 202.15,3306.05 C 202.21,3306.03 202.272,3306.02 202.337,3306.02 L 205.098,3306.01 L 205.29,3305.62 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 144.522,3275.06 L 145.869,3293.93 L 256.531,3293.93 C 256.629,3293.49 256.617,3292.97 256.518,3292.39 L 256.291,3290.68 L 254.222,3275.06 L 144.522,3275.06 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 144.522,3275.06 L 139.941,3299.47 L 141.163,3318.56 L 145.884,3293.93 L 144.522,3275.06 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 145.838,3293.49 L 145.869,3293.93 L 256.531,3293.93 C 256.562,3293.79 256.581,3293.65 256.592,3293.49 L 145.838,3293.49 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.046' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 197.81,3276.59 L 197.81,3277.89 L 198.043,3277.89 L 198.043,3277.22 L 198.235,3277.4 L 198.408,3277.56 L 198.773,3277.89 L 199.118,3277.89 L 198.546,3277.37 L 199.111,3276.59 L 198.825,3276.59 L 198.373,3277.21 L 198.043,3276.91 L 198.043,3276.59 L 197.81,3276.59 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 199.19,3276.59 L 199.31,3276.82 L 199.856,3277.89 L 200.403,3276.82 L 200.522,3276.59 L 200.261,3276.59 L 200.141,3276.82 L 199.856,3277.38 L 199.571,3276.82 L 199.451,3276.59 L 199.19,3276.59 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 200.641,3276.59 L 200.82,3276.82 L 201.14,3277.24 L 201.288,3277.43 L 201.467,3277.66 L 200.638,3277.66 L 200.638,3277.89 L 201.939,3277.89 L 201.758,3277.66 L 201.433,3277.24 L 201.287,3277.05 L 201.111,3276.82 L 201.944,3276.82 L 201.944,3276.59 L 200.641,3276.59 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 202.341,3276.62 C 202.299,3276.63 202.262,3276.66 202.23,3276.69 C 202.199,3276.72 202.173,3276.76 202.155,3276.8 C 202.136,3276.85 202.127,3276.89 202.127,3276.94 L 202.127,3277.54 C 202.127,3277.59 202.136,3277.63 202.155,3277.68 C 202.173,3277.72 202.199,3277.76 202.23,3277.79 C 202.262,3277.82 202.299,3277.85 202.341,3277.87 C 202.384,3277.88 202.429,3277.89 202.478,3277.89 L 203.431,3277.89 L 203.431,3277.66 L 202.478,3277.66 C 202.456,3277.66 202.436,3277.66 202.418,3277.64 C 202.4,3277.63 202.386,3277.62 202.376,3277.6 C 202.364,3277.58 202.358,3277.56 202.358,3277.54 L 202.358,3277.42 L 203.198,3277.42 L 203.198,3277.19 L 202.358,3277.19 L 202.358,3276.94 C 202.358,3276.92 202.364,3276.9 202.376,3276.88 C 202.386,3276.86 202.4,3276.85 202.418,3276.84 C 202.436,3276.83 202.456,3276.82 202.478,3276.82 L 203.431,3276.82 L 203.431,3276.59 L 202.478,3276.59 C 202.429,3276.59 202.384,3276.6 202.341,3276.62 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 146.933,3293.93 L 142.015,3318.56 L 142.359,3318.55 L 147.386,3293.93 L 146.933,3293.93 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 254.813,3293.91 L 238.282,3317.72 L 238.851,3317.71 L 255.576,3293.93 L 254.813,3293.91 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 253.322,3275.06 L 255.762,3293.49 L 256.207,3293.49 L 253.81,3275.06 L 253.322,3275.06 Z' stroke-width='0.143' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_6)'/%3E%3Cpath d='M 144.925,3275.07 L 146.302,3293.49 L 146.746,3293.49 L 145.415,3275.07 L 144.925,3275.07 Z' stroke-width='0.143' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_7)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--VOUGE, .KN95_NR_individuals--VOUGE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='390.486 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.89' y2='69.197' gradientTransform='translate(434.563 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.717' y2='69.453' gradientTransform='translate(422.226 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.402' y2='7.324' gradientTransform='translate(434.541 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.8' gradientTransform='translate(418.246 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.569' gradientTransform='translate(463.547 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.569' y2='0' gradientTransform='translate(424.691 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 424.406,2776.57 L 424.406,2858.45 L 485.237,2862.36 C 485.279,2862.31 485.311,2862.24 485.311,2862.16 L 485.311,2784.82 L 424.406,2776.57 Z' stroke-width='8.03' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 424.406,2776.57 L 412.331,2788.29 L 412.324,2865.07 L 424.406,2858.45 L 424.406,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 424.406,2858.45 L 412.324,2865.07 L 471.358,2868.31 L 485.107,2862.45 C 485.154,2862.43 485.201,2862.4 485.237,2862.36 L 424.406,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 424.102,2857.52 L 412.32,2864.11 L 412.318,2865.07 L 424.102,2858.62 L 424.102,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 441.276,2819.56 L 441.268,2826.71 L 442.449,2826.83 L 442.455,2823.18 L 443.43,2824.24 L 444.306,2825.19 L 446.148,2827.21 L 447.898,2827.39 L 445.009,2824.22 L 447.882,2820.23 L 446.424,2820.09 L 444.132,2823.27 L 442.458,2821.45 L 442.458,2819.68 L 441.276,2819.56 Z M 448.483,2820.29 L 449.09,2821.63 L 451.852,2827.79 L 454.633,2822.2 L 455.236,2820.98 L 453.917,2820.85 L 453.307,2822.06 L 451.856,2824.98 L 450.409,2821.76 L 449.807,2820.43 L 448.483,2820.29 Z M 455.833,2821.04 L 455.844,2821.04 L 456.75,2822.41 L 458.372,2824.86 L 459.123,2825.98 L 460.025,2827.35 L 455.818,2826.92 L 455.816,2828.19 L 460.934,2828.71 L 462.415,2828.87 L 461.502,2827.49 L 459.86,2825.01 L 459.117,2823.89 L 458.223,2822.56 L 462.453,2822.99 L 462.455,2821.71 L 457.335,2821.19 L 457.328,2821.19 L 455.833,2821.04 Z M 464.466,2822.07 C 464.253,2822.15 464.06,2822.27 463.902,2822.43 C 463.736,2822.59 463.609,2822.78 463.522,2823 C 463.428,2823.23 463.383,2823.47 463.381,2823.74 L 463.375,2827.03 C 463.375,2827.3 463.419,2827.55 463.513,2827.79 C 463.602,2828.04 463.728,2828.25 463.896,2828.45 C 464.053,2828.64 464.245,2828.8 464.457,2828.92 C 464.673,2829.04 464.904,2829.12 465.152,2829.14 L 469.984,2829.63 L 469.984,2828.36 L 465.152,2827.86 C 465.039,2827.85 464.939,2827.81 464.847,2827.74 C 464.755,2827.68 464.687,2827.59 464.632,2827.49 C 464.577,2827.38 464.551,2827.27 464.551,2827.15 L 464.551,2826.49 L 468.806,2826.92 L 468.806,2825.64 L 464.551,2825.21 L 464.551,2823.86 C 464.551,2823.74 464.581,2823.63 464.636,2823.54 C 464.693,2823.45 464.762,2823.37 464.851,2823.33 C 464.945,2823.27 465.043,2823.26 465.158,2823.27 L 469.99,2823.76 L 469.992,2822.48 L 465.158,2821.99 C 464.915,2821.97 464.684,2821.99 464.466,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 448.262,2815.76 L 448.262,2817.28 C 448.262,2817.36 448.275,2817.43 448.303,2817.51 C 448.331,2817.58 448.371,2817.64 448.422,2817.7 C 448.473,2817.75 448.533,2817.8 448.598,2817.84 C 448.666,2817.87 448.739,2817.9 448.817,2817.9 L 450.327,2818.07 L 450.327,2817.69 L 448.817,2817.53 C 448.784,2817.53 448.751,2817.51 448.722,2817.5 C 448.694,2817.47 448.673,2817.45 448.654,2817.42 C 448.637,2817.39 448.63,2817.36 448.63,2817.32 L 448.63,2817.13 L 449.958,2817.26 L 449.958,2816.89 L 448.628,2816.75 L 448.63,2815.8 L 448.262,2815.76 Z M 450.627,2816.01 L 450.625,2817.53 C 450.625,2817.61 450.637,2817.68 450.666,2817.75 C 450.692,2817.82 450.733,2817.89 450.781,2817.95 C 450.835,2818 450.894,2818.05 450.961,2818.09 C 451.027,2818.12 451.097,2818.15 451.18,2818.16 L 452.686,2818.31 L 452.688,2817.94 L 451.182,2817.78 C 451.145,2817.78 451.112,2817.76 451.086,2817.75 C 451.056,2817.72 451.035,2817.7 451.016,2817.67 C 450.999,2817.64 450.992,2817.61 450.992,2817.57 L 450.992,2817.38 L 452.32,2817.52 L 452.32,2817.15 L 450.99,2817 L 450.992,2816.04 L 450.627,2816.01 Z M 452.988,2816.26 L 452.984,2818.35 L 454.286,2818.48 C 454.361,2818.49 454.435,2818.48 454.5,2818.46 C 454.568,2818.44 454.627,2818.41 454.678,2818.36 L 454.68,2818.36 C 454.732,2818.31 454.77,2818.26 454.802,2818.19 C 454.827,2818.12 454.844,2818.05 454.844,2817.97 C 454.844,2817.9 454.827,2817.82 454.804,2817.76 C 454.774,2817.69 454.735,2817.62 454.688,2817.57 C 454.64,2817.51 454.584,2817.47 454.521,2817.43 C 454.47,2817.4 454.416,2817.38 454.359,2817.37 C 454.355,2817.37 454.348,2817.37 454.344,2817.37 L 454.344,2817.36 L 453.354,2817.26 L 453.357,2816.3 L 452.988,2816.26 Z M 455.135,2816.48 L 455.135,2817.1 C 455.135,2817.14 455.137,2817.18 455.146,2817.22 C 455.155,2817.26 455.17,2817.3 455.182,2817.34 C 455.214,2817.42 455.257,2817.48 455.31,2817.54 C 455.363,2817.61 455.422,2817.66 455.495,2817.7 C 455.564,2817.73 455.64,2817.76 455.722,2817.77 L 456.606,2817.87 L 456.617,2817.87 C 456.657,2817.88 456.695,2817.89 456.727,2817.92 C 456.759,2817.94 456.784,2817.97 456.804,2818.02 C 456.823,2818.05 456.831,2818.09 456.831,2818.13 C 456.831,2818.18 456.821,2818.22 456.8,2818.26 C 456.778,2818.29 456.753,2818.31 456.715,2818.33 C 456.678,2818.35 456.638,2818.36 456.593,2818.36 L 455.137,2818.2 L 455.137,2818.57 L 456.591,2818.73 C 456.678,2818.74 456.759,2818.73 456.83,2818.7 C 456.901,2818.68 456.966,2818.64 457.025,2818.59 C 457.081,2818.54 457.125,2818.48 457.153,2818.41 C 457.185,2818.34 457.199,2818.26 457.202,2818.17 C 457.202,2818.13 457.197,2818.09 457.188,2818.05 C 457.18,2818.01 457.167,2817.97 457.151,2817.93 C 457.138,2817.89 457.121,2817.85 457.099,2817.82 C 457.081,2817.79 457.055,2817.76 457.03,2817.73 C 456.978,2817.67 456.912,2817.61 456.842,2817.57 C 456.77,2817.53 456.697,2817.51 456.612,2817.5 L 456.603,2817.5 C 456.601,2817.5 456.598,2817.5 456.593,2817.49 L 455.722,2817.4 C 455.682,2817.39 455.646,2817.38 455.612,2817.35 C 455.578,2817.33 455.553,2817.29 455.536,2817.26 C 455.514,2817.22 455.509,2817.18 455.509,2817.14 L 455.509,2816.9 L 457.193,2817.07 L 457.195,2816.7 L 455.74,2816.54 L 455.135,2816.48 Z M 458.936,2816.88 L 458.933,2818.96 L 459.302,2818.72 L 460.631,2817.82 L 460.629,2819.15 L 460.998,2819.19 L 461.003,2817.1 L 460.631,2817.35 L 459.302,2818.24 L 459.305,2816.92 L 458.936,2816.88 Z M 461.296,2817.14 L 461.294,2819.22 L 462.598,2819.36 C 462.672,2819.37 462.745,2819.37 462.811,2819.34 C 462.881,2819.32 462.939,2819.28 462.989,2819.24 C 463.039,2819.19 463.079,2819.14 463.109,2819.07 C 463.136,2819 463.151,2818.93 463.154,2818.86 C 463.154,2818.78 463.136,2818.7 463.111,2818.63 C 463.083,2818.57 463.044,2818.5 462.996,2818.45 C 462.949,2818.39 462.892,2818.35 462.83,2818.31 C 462.778,2818.28 462.723,2818.26 462.668,2818.24 L 462.966,2817.68 L 463.156,2817.33 L 462.743,2817.29 L 462.553,2817.64 L 462.354,2818.01 L 462.344,2818.03 C 462.313,2818.08 462.27,2818.12 462.213,2818.14 C 462.159,2818.17 462.098,2818.18 462.03,2818.17 L 461.663,2818.13 L 461.666,2817.17 L 461.296,2817.14 Z M 453.354,2817.62 L 454.29,2817.72 C 454.301,2817.72 454.314,2817.73 454.329,2817.73 C 454.341,2817.74 454.352,2817.74 454.365,2817.75 L 454.365,2817.75 C 454.399,2817.77 454.429,2817.8 454.446,2817.83 C 454.467,2817.86 454.476,2817.9 454.476,2817.94 C 454.476,2817.97 454.47,2818 454.456,2818.02 C 454.444,2818.04 454.433,2818.06 454.422,2818.07 C 454.408,2818.08 454.391,2818.09 454.369,2818.1 C 454.348,2818.11 454.32,2818.11 454.29,2818.11 L 453.354,2818.01 L 453.354,2817.62 Z M 461.663,2818.5 L 462.6,2818.6 C 462.611,2818.6 462.623,2818.61 462.638,2818.61 C 462.652,2818.62 462.661,2818.62 462.672,2818.63 C 462.709,2818.65 462.737,2818.68 462.753,2818.71 C 462.776,2818.74 462.787,2818.78 462.787,2818.82 C 462.783,2818.85 462.778,2818.88 462.764,2818.9 C 462.751,2818.92 462.743,2818.94 462.73,2818.95 C 462.717,2818.96 462.7,2818.97 462.679,2818.98 C 462.656,2818.99 462.63,2818.99 462.598,2818.99 L 461.662,2818.89 L 461.663,2818.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 441.684,2811.59 L 441.683,2812.97 L 442.528,2813.06 C 442.579,2813.07 442.63,2813.06 442.67,2813.05 C 442.711,2813.03 442.753,2813.01 442.783,2812.98 L 442.785,2812.97 C 442.822,2812.94 442.844,2812.91 442.863,2812.87 C 442.881,2812.82 442.893,2812.78 442.893,2812.72 C 442.893,2812.67 442.883,2812.62 442.866,2812.58 C 442.849,2812.53 442.826,2812.49 442.792,2812.45 C 442.762,2812.41 442.723,2812.38 442.683,2812.36 C 442.649,2812.34 442.615,2812.32 442.579,2812.32 C 442.574,2812.32 442.57,2812.32 442.568,2812.32 L 442.568,2812.32 L 441.925,2812.25 L 441.927,2811.61 L 441.684,2811.59 Z M 443.083,2811.73 L 443.081,2813.11 L 443.93,2813.2 C 443.982,2813.21 444.028,2813.2 444.07,2813.19 C 444.115,2813.17 444.149,2813.15 444.184,2813.12 C 444.217,2813.09 444.241,2813.05 444.266,2813.01 C 444.281,2812.97 444.29,2812.92 444.292,2812.87 C 444.29,2812.82 444.281,2812.77 444.269,2812.72 C 444.243,2812.68 444.222,2812.64 444.189,2812.6 C 444.155,2812.56 444.124,2812.53 444.081,2812.51 C 444.047,2812.49 444.012,2812.47 443.979,2812.46 L 444.168,2812.09 L 444.292,2811.85 L 444.026,2811.82 L 443.9,2812.06 L 443.772,2812.31 L 443.766,2812.32 C 443.744,2812.35 443.714,2812.38 443.681,2812.39 C 443.643,2812.41 443.607,2812.42 443.564,2812.41 L 443.322,2812.39 L 443.322,2811.75 L 443.083,2811.73 Z M 444.847,2811.97 C 444.77,2811.99 444.698,2812.04 444.638,2812.09 C 444.572,2812.15 444.524,2812.22 444.491,2812.3 C 444.457,2812.38 444.441,2812.47 444.436,2812.57 C 444.441,2812.66 444.457,2812.75 444.49,2812.84 C 444.524,2812.93 444.572,2813.01 444.636,2813.08 C 444.696,2813.15 444.769,2813.2 444.845,2813.25 C 444.928,2813.29 445.015,2813.32 445.109,2813.33 C 445.201,2813.34 445.29,2813.33 445.373,2813.3 C 445.45,2813.27 445.524,2813.24 445.584,2813.18 C 445.647,2813.12 445.696,2813.05 445.728,2812.97 C 445.762,2812.89 445.781,2812.8 445.781,2812.7 C 445.781,2812.61 445.765,2812.52 445.728,2812.43 C 445.696,2812.34 445.65,2812.27 445.585,2812.19 C 445.526,2812.12 445.451,2812.07 445.374,2812.02 C 445.29,2811.98 445.202,2811.95 445.111,2811.94 L 444.977,2811.94 C 444.93,2811.95 444.89,2811.95 444.847,2811.97 Z M 446.477,2812.08 L 446.475,2813.22 L 445.926,2813.17 L 445.926,2813.41 L 447.264,2813.55 L 447.264,2813.31 L 446.719,2813.25 L 446.722,2812.11 L 446.477,2812.08 Z M 445.111,2812.19 C 445.168,2812.19 445.226,2812.21 445.279,2812.24 C 445.334,2812.27 445.379,2812.31 445.415,2812.35 C 445.453,2812.39 445.485,2812.45 445.511,2812.51 C 445.53,2812.56 445.543,2812.62 445.543,2812.68 C 445.543,2812.74 445.53,2812.8 445.509,2812.85 C 445.485,2812.9 445.453,2812.95 445.415,2812.98 C 445.377,2813.02 445.332,2813.05 445.277,2813.06 C 445.223,2813.08 445.168,2813.09 445.109,2813.08 C 445.051,2813.08 444.994,2813.06 444.941,2813.03 C 444.89,2813 444.84,2812.97 444.803,2812.92 C 444.767,2812.87 444.734,2812.83 444.711,2812.76 C 444.693,2812.71 444.682,2812.65 444.682,2812.59 C 444.682,2812.53 444.693,2812.47 444.711,2812.42 C 444.734,2812.37 444.769,2812.32 444.804,2812.29 C 444.843,2812.25 444.892,2812.22 444.941,2812.21 C 444.994,2812.19 445.054,2812.18 445.111,2812.19 Z M 447.682,2812.24 C 447.643,2812.25 447.605,2812.27 447.569,2812.31 C 447.537,2812.34 447.511,2812.37 447.492,2812.42 C 447.475,2812.46 447.466,2812.51 447.466,2812.56 L 447.464,2813.2 C 447.466,2813.25 447.471,2813.3 447.49,2813.35 C 447.511,2813.39 447.535,2813.43 447.569,2813.47 C 447.602,2813.51 447.639,2813.54 447.682,2813.57 C 447.726,2813.59 447.773,2813.61 447.822,2813.61 L 448.805,2813.71 L 448.805,2813.47 L 447.822,2813.36 C 447.801,2813.36 447.779,2813.35 447.761,2813.34 C 447.745,2813.33 447.728,2813.31 447.717,2813.29 C 447.707,2813.27 447.701,2813.25 447.701,2813.22 L 447.701,2813.09 L 448.565,2813.18 L 448.565,2812.93 L 447.701,2812.85 L 447.705,2812.59 C 447.705,2812.56 447.707,2812.54 447.72,2812.52 C 447.731,2812.51 447.747,2812.49 447.762,2812.48 C 447.783,2812.47 447.803,2812.47 447.822,2812.47 L 448.806,2812.57 L 448.806,2812.32 L 447.824,2812.22 C 447.775,2812.22 447.728,2812.22 447.682,2812.24 Z M 449.384,2812.44 C 449.304,2812.47 449.237,2812.51 449.175,2812.57 C 449.112,2812.62 449.063,2812.69 449.028,2812.77 C 448.994,2812.85 448.976,2812.94 448.976,2813.03 C 448.976,2813.13 448.994,2813.22 449.028,2813.31 C 449.06,2813.4 449.109,2813.47 449.175,2813.55 C 449.237,2813.62 449.304,2813.67 449.384,2813.72 C 449.467,2813.76 449.554,2813.79 449.648,2813.8 L 450.316,2813.87 L 450.316,2813.62 L 449.648,2813.55 C 449.588,2813.55 449.531,2813.53 449.48,2813.5 C 449.429,2813.47 449.38,2813.43 449.339,2813.39 C 449.304,2813.34 449.274,2813.3 449.247,2813.24 C 449.23,2813.18 449.215,2813.12 449.215,2813.06 C 449.215,2813 449.23,2812.94 449.249,2812.89 C 449.274,2812.84 449.304,2812.79 449.341,2812.76 C 449.381,2812.72 449.43,2812.7 449.481,2812.68 C 449.531,2812.66 449.588,2812.65 449.65,2812.66 L 450.318,2812.73 L 450.318,2812.48 L 449.65,2812.41 L 449.513,2812.41 C 449.469,2812.41 449.429,2812.42 449.384,2812.44 Z M 441.925,2812.5 L 442.532,2812.56 C 442.542,2812.56 442.553,2812.56 442.56,2812.56 C 442.568,2812.57 442.574,2812.57 442.585,2812.58 C 442.604,2812.59 442.623,2812.6 442.638,2812.63 C 442.649,2812.65 442.653,2812.67 442.653,2812.7 C 442.653,2812.72 442.649,2812.74 442.642,2812.75 C 442.636,2812.77 442.626,2812.78 442.62,2812.78 C 442.611,2812.79 442.6,2812.8 442.587,2812.8 C 442.57,2812.81 442.555,2812.82 442.532,2812.81 L 441.925,2812.75 L 441.925,2812.5 Z M 451.06,2812.56 L 451.06,2813.7 L 450.509,2813.64 L 450.509,2813.89 L 451.852,2814.03 L 451.852,2813.78 L 451.301,2813.72 L 451.301,2812.58 L 451.06,2812.56 Z M 443.322,2812.64 L 443.93,2812.7 C 443.938,2812.7 443.947,2812.7 443.955,2812.7 C 443.966,2812.71 443.973,2812.71 443.982,2812.72 C 444.002,2812.73 444.019,2812.75 444.034,2812.77 C 444.047,2812.79 444.053,2812.82 444.053,2812.84 C 444.053,2812.86 444.047,2812.88 444.04,2812.9 C 444.034,2812.91 444.026,2812.92 444.015,2812.93 C 444.008,2812.93 443.996,2812.94 443.987,2812.95 C 443.971,2812.96 443.949,2812.96 443.93,2812.96 L 443.322,2812.89 L 443.322,2812.64 Z M 452.043,2812.66 L 452.041,2814.05 L 452.286,2814.07 L 452.288,2812.69 L 452.043,2812.66 Z M 453.086,2812.77 L 452.522,2813.85 L 452.397,2814.08 L 452.667,2814.11 L 452.791,2813.88 L 453.084,2813.31 L 453.376,2813.94 L 453.502,2814.2 L 453.767,2814.23 L 453.644,2813.97 L 453.086,2812.77 Z M 454.109,2812.9 C 454.068,2812.92 454.029,2812.94 453.997,2812.97 C 453.963,2813 453.936,2813.04 453.921,2813.08 C 453.899,2813.12 453.888,2813.17 453.888,2813.22 L 453.888,2813.87 C 453.888,2813.92 453.897,2813.97 453.918,2814.01 C 453.933,2814.06 453.961,2814.1 453.995,2814.14 C 454.027,2814.18 454.065,2814.21 454.108,2814.23 C 454.15,2814.26 454.199,2814.27 454.25,2814.28 L 455.227,2814.38 L 455.227,2814.13 L 454.25,2814.03 C 454.223,2814.03 454.204,2814.02 454.185,2814.01 C 454.167,2813.99 454.155,2813.98 454.142,2813.95 C 454.131,2813.94 454.125,2813.91 454.125,2813.89 L 454.125,2813.76 L 454.993,2813.85 L 454.993,2813.61 L 454.128,2813.52 L 454.128,2813.25 C 454.128,2813.23 454.133,2813.21 454.144,2813.19 C 454.155,2813.17 454.167,2813.15 454.188,2813.15 C 454.205,2813.14 454.224,2813.13 454.252,2813.14 L 455.229,2813.24 L 455.229,2812.99 L 454.252,2812.89 C 454.201,2812.88 454.153,2812.89 454.109,2812.9 Z M 456.352,2813.1 L 456.351,2814.49 L 457.197,2814.58 C 457.248,2814.59 457.295,2814.58 457.339,2814.57 C 457.385,2814.55 457.421,2814.53 457.454,2814.5 C 457.489,2814.47 457.512,2814.43 457.534,2814.38 C 457.549,2814.34 457.56,2814.29 457.56,2814.24 C 457.56,2814.19 457.55,2814.14 457.536,2814.1 C 457.516,2814.05 457.493,2814.01 457.461,2813.97 C 457.429,2813.94 457.395,2813.91 457.35,2813.88 C 457.32,2813.86 457.28,2813.85 457.246,2813.84 L 457.442,2813.46 L 457.561,2813.23 L 457.291,2813.2 L 457.172,2813.43 L 457.044,2813.68 L 457.038,2813.69 C 457.016,2813.72 456.986,2813.75 456.948,2813.77 C 456.915,2813.79 456.876,2813.79 456.835,2813.79 L 456.591,2813.76 L 456.593,2813.13 L 456.352,2813.1 Z M 457.979,2813.31 C 457.935,2813.32 457.895,2813.34 457.865,2813.37 C 457.832,2813.4 457.806,2813.44 457.787,2813.48 C 457.77,2813.53 457.759,2813.58 457.759,2813.63 L 457.759,2814.27 C 457.759,2814.32 457.768,2814.37 457.784,2814.41 C 457.804,2814.46 457.829,2814.5 457.863,2814.54 C 457.895,2814.58 457.934,2814.61 457.976,2814.64 C 458.02,2814.66 458.068,2814.68 458.116,2814.68 L 459.098,2814.78 L 459.098,2814.53 L 458.116,2814.43 C 458.097,2814.43 458.074,2814.42 458.055,2814.41 C 458.042,2814.4 458.025,2814.38 458.012,2814.36 C 458.002,2814.34 457.995,2814.31 457.995,2814.29 L 457.995,2814.16 L 458.86,2814.25 L 458.86,2814 L 457.998,2813.91 L 457.998,2813.65 C 457.998,2813.63 458.004,2813.61 458.014,2813.59 C 458.025,2813.57 458.042,2813.56 458.057,2813.55 C 458.076,2813.54 458.099,2813.54 458.116,2813.54 L 459.099,2813.64 L 459.099,2813.39 L 458.119,2813.29 C 458.069,2813.29 458.023,2813.29 457.979,2813.31 Z M 459.551,2813.47 C 459.502,2813.49 459.457,2813.52 459.417,2813.55 C 459.376,2813.59 459.349,2813.63 459.324,2813.68 C 459.305,2813.73 459.291,2813.79 459.291,2813.85 L 459.536,2813.87 C 459.536,2813.84 459.542,2813.8 459.557,2813.78 C 459.574,2813.76 459.596,2813.73 459.623,2813.72 C 459.651,2813.7 459.679,2813.7 459.717,2813.7 L 460.138,2813.75 C 460.172,2813.75 460.202,2813.76 460.232,2813.78 C 460.255,2813.8 460.281,2813.82 460.296,2813.86 C 460.312,2813.89 460.322,2813.92 460.322,2813.96 C 460.322,2813.99 460.312,2814.03 460.296,2814.05 C 460.281,2814.08 460.255,2814.09 460.232,2814.11 C 460.2,2814.12 460.172,2814.13 460.138,2814.13 L 459.651,2814.08 L 459.583,2814.08 C 459.557,2814.08 459.536,2814.08 459.515,2814.09 C 459.472,2814.1 459.438,2814.13 459.4,2814.15 C 459.387,2814.17 459.365,2814.19 459.353,2814.21 C 459.332,2814.24 459.319,2814.27 459.308,2814.31 C 459.298,2814.34 459.291,2814.38 459.291,2814.42 L 459.291,2814.43 C 459.291,2814.47 459.302,2814.53 459.319,2814.57 C 459.335,2814.62 459.362,2814.66 459.397,2814.7 C 459.434,2814.74 459.468,2814.77 459.512,2814.79 C 459.553,2814.82 459.602,2814.83 459.651,2814.84 L 460.196,2814.89 C 460.245,2814.9 460.292,2814.89 460.336,2814.88 C 460.381,2814.87 460.419,2814.84 460.455,2814.81 C 460.484,2814.78 460.513,2814.74 460.53,2814.7 C 460.551,2814.66 460.557,2814.61 460.557,2814.56 L 460.557,2814.55 L 460.319,2814.52 L 460.319,2814.53 C 460.319,2814.55 460.312,2814.57 460.303,2814.59 C 460.289,2814.61 460.276,2814.62 460.257,2814.64 C 460.241,2814.64 460.219,2814.65 460.196,2814.64 L 459.651,2814.59 C 459.629,2814.59 459.606,2814.58 459.589,2814.56 C 459.574,2814.55 459.557,2814.53 459.545,2814.51 C 459.536,2814.49 459.532,2814.47 459.532,2814.45 L 459.532,2814.44 C 459.532,2814.41 459.536,2814.4 459.545,2814.38 C 459.557,2814.36 459.574,2814.34 459.592,2814.34 C 459.606,2814.33 459.629,2814.32 459.651,2814.32 L 460.138,2814.37 L 460.227,2814.37 C 460.253,2814.37 460.283,2814.37 460.308,2814.36 C 460.366,2814.34 460.41,2814.31 460.449,2814.27 C 460.455,2814.26 460.457,2814.26 460.459,2814.26 C 460.462,2814.26 460.462,2814.26 460.465,2814.25 C 460.494,2814.22 460.517,2814.18 460.532,2814.13 C 460.553,2814.08 460.56,2814.03 460.56,2813.98 C 460.56,2813.92 460.549,2813.86 460.528,2813.8 C 460.509,2813.76 460.475,2813.7 460.438,2813.66 C 460.395,2813.62 460.353,2813.58 460.3,2813.55 C 460.248,2813.53 460.196,2813.5 460.138,2813.5 L 459.717,2813.45 C 459.657,2813.45 459.602,2813.45 459.551,2813.47 Z M 460.757,2813.56 L 460.751,2814.95 L 461.6,2815.04 C 461.651,2815.05 461.695,2815.04 461.739,2815.03 C 461.783,2815.01 461.821,2814.99 461.86,2814.96 L 461.86,2814.96 C 461.89,2814.92 461.917,2814.88 461.936,2814.84 C 461.952,2814.8 461.961,2814.75 461.961,2814.7 C 461.961,2814.65 461.955,2814.6 461.936,2814.55 C 461.92,2814.51 461.895,2814.47 461.864,2814.43 C 461.83,2814.39 461.796,2814.36 461.751,2814.34 C 461.721,2814.32 461.685,2814.3 461.649,2814.3 C 461.644,2814.3 461.64,2814.29 461.638,2814.29 L 461.638,2814.29 L 460.996,2814.23 L 460.996,2813.59 L 460.757,2813.56 Z M 462.158,2813.71 L 462.156,2815.1 L 462.39,2815.12 L 462.393,2813.73 L 462.158,2813.71 Z M 462.587,2813.75 L 462.585,2815.14 L 463.432,2815.22 C 463.483,2815.23 463.53,2815.22 463.574,2815.21 C 463.618,2815.2 463.651,2815.17 463.688,2815.14 C 463.721,2815.11 463.745,2815.07 463.764,2815.03 C 463.783,2814.99 463.792,2814.94 463.794,2814.89 C 463.792,2814.84 463.783,2814.79 463.766,2814.74 C 463.746,2814.7 463.724,2814.65 463.694,2814.62 C 463.662,2814.58 463.624,2814.55 463.581,2814.53 C 463.549,2814.51 463.514,2814.49 463.481,2814.48 L 463.673,2814.11 L 463.794,2813.87 L 463.528,2813.85 L 463.402,2814.08 L 463.275,2814.33 L 463.268,2814.34 C 463.246,2814.37 463.219,2814.4 463.183,2814.41 C 463.15,2814.43 463.109,2814.44 463.069,2814.44 L 462.828,2814.41 L 462.828,2813.77 L 462.587,2813.75 Z M 463.911,2813.89 L 464.034,2814.15 L 464.597,2815.35 L 465.158,2814.27 L 465.286,2814.03 L 465.015,2814 L 464.892,2814.24 L 464.597,2814.8 L 464.303,2814.18 L 464.179,2813.92 L 463.911,2813.89 Z M 456.591,2814.01 L 457.199,2814.08 C 457.21,2814.08 457.218,2814.08 457.225,2814.08 C 457.234,2814.08 457.243,2814.09 457.248,2814.09 C 457.27,2814.11 457.289,2814.12 457.306,2814.15 C 457.317,2814.17 457.325,2814.19 457.325,2814.22 C 457.325,2814.24 457.32,2814.26 457.31,2814.27 C 457.304,2814.29 457.291,2814.3 457.284,2814.3 C 457.276,2814.31 457.265,2814.32 457.254,2814.32 C 457.244,2814.33 457.236,2814.33 457.227,2814.33 L 457.197,2814.33 L 456.591,2814.27 L 456.591,2814.01 Z M 465.948,2814.1 L 465.948,2815.24 L 465.396,2815.19 L 465.393,2815.43 L 466.737,2815.57 L 466.737,2815.33 L 466.186,2815.26 L 466.188,2814.12 L 465.948,2814.1 Z M 467.294,2814.29 C 467.214,2814.32 467.145,2814.37 467.081,2814.42 C 467.022,2814.48 466.973,2814.55 466.935,2814.63 C 466.902,2814.7 466.884,2814.79 466.884,2814.89 C 466.884,2814.99 466.9,2815.08 466.935,2815.17 C 466.971,2815.25 467.02,2815.34 467.081,2815.4 C 467.143,2815.47 467.212,2815.53 467.292,2815.58 C 467.377,2815.62 467.465,2815.65 467.554,2815.66 C 467.652,2815.67 467.735,2815.66 467.816,2815.63 C 467.896,2815.6 467.971,2815.56 468.033,2815.5 C 468.092,2815.44 468.139,2815.38 468.173,2815.29 C 468.21,2815.21 468.226,2815.13 468.228,2815.03 C 468.226,2814.94 468.21,2814.84 468.175,2814.75 C 468.139,2814.67 468.092,2814.59 468.033,2814.52 C 467.975,2814.45 467.898,2814.4 467.818,2814.35 C 467.737,2814.31 467.654,2814.28 467.558,2814.27 L 467.422,2814.27 C 467.379,2814.27 467.339,2814.28 467.294,2814.29 Z M 468.373,2814.35 L 468.371,2815.74 L 469.218,2815.83 C 469.267,2815.83 469.314,2815.82 469.359,2815.81 C 469.403,2815.8 469.441,2815.77 469.476,2815.74 C 469.51,2815.71 469.533,2815.67 469.55,2815.63 C 469.569,2815.59 469.577,2815.54 469.577,2815.49 C 469.577,2815.44 469.569,2815.39 469.554,2815.34 C 469.535,2815.3 469.513,2815.26 469.478,2815.22 C 469.448,2815.18 469.41,2815.15 469.371,2815.13 C 469.333,2815.11 469.301,2815.09 469.263,2815.09 L 469.46,2814.71 L 469.58,2814.47 L 469.311,2814.45 L 469.192,2814.68 L 469.058,2814.93 L 469.054,2814.94 C 469.033,2814.97 469.008,2815 468.969,2815.02 C 468.932,2815.03 468.894,2815.04 468.85,2815.03 L 468.611,2815.01 L 468.611,2814.37 L 468.373,2814.35 Z M 460.993,2814.47 L 461.602,2814.53 C 461.611,2814.54 461.622,2814.54 461.629,2814.54 C 461.636,2814.55 461.644,2814.55 461.654,2814.55 L 461.654,2814.55 C 461.673,2814.57 461.692,2814.59 461.704,2814.61 C 461.719,2814.63 461.723,2814.65 461.725,2814.68 C 461.723,2814.7 461.721,2814.72 461.713,2814.73 C 461.702,2814.75 461.695,2814.76 461.687,2814.76 C 461.679,2814.77 461.67,2814.78 461.655,2814.78 C 461.64,2814.79 461.625,2814.79 461.602,2814.79 L 460.993,2814.73 L 460.993,2814.47 Z M 467.558,2814.51 C 467.618,2814.52 467.673,2814.54 467.724,2814.57 C 467.775,2814.6 467.822,2814.64 467.86,2814.68 C 467.9,2814.72 467.933,2814.78 467.953,2814.83 C 467.981,2814.89 467.988,2814.95 467.988,2815.01 C 467.988,2815.07 467.98,2815.13 467.953,2815.18 C 467.933,2815.23 467.898,2815.28 467.858,2815.31 C 467.819,2815.35 467.775,2815.38 467.724,2815.39 C 467.673,2815.41 467.616,2815.41 467.554,2815.41 C 467.494,2815.4 467.439,2815.38 467.388,2815.36 C 467.339,2815.33 467.29,2815.29 467.249,2815.25 C 467.209,2815.2 467.179,2815.15 467.158,2815.1 C 467.134,2815.04 467.127,2814.98 467.124,2814.92 C 467.127,2814.85 467.134,2814.8 467.158,2814.75 C 467.179,2814.7 467.209,2814.65 467.249,2814.62 C 467.29,2814.58 467.339,2814.55 467.39,2814.53 C 467.441,2814.51 467.494,2814.51 467.558,2814.51 Z M 462.828,2814.66 L 463.432,2814.72 C 463.443,2814.72 463.449,2814.73 463.457,2814.73 C 463.467,2814.73 463.475,2814.74 463.483,2814.74 C 463.507,2814.75 463.524,2814.77 463.534,2814.79 C 463.549,2814.82 463.555,2814.84 463.555,2814.86 C 463.555,2814.89 463.549,2814.91 463.543,2814.92 C 463.534,2814.93 463.528,2814.94 463.519,2814.95 C 463.511,2814.96 463.5,2814.97 463.485,2814.97 C 463.473,2814.97 463.452,2814.98 463.432,2814.98 L 462.828,2814.92 L 462.828,2814.66 Z M 468.611,2815.26 L 469.218,2815.33 C 469.229,2815.33 469.237,2815.33 469.246,2815.33 C 469.254,2815.34 469.26,2815.34 469.267,2815.34 C 469.29,2815.35 469.307,2815.37 469.322,2815.39 C 469.333,2815.41 469.339,2815.43 469.339,2815.46 C 469.337,2815.48 469.333,2815.5 469.329,2815.52 C 469.322,2815.53 469.311,2815.54 469.303,2815.55 C 469.296,2815.56 469.284,2815.56 469.271,2815.57 C 469.258,2815.58 469.241,2815.58 469.218,2815.58 L 468.611,2815.52 L 468.611,2815.26 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 424.707,2858.06 L 424.102,2858.62 L 484.796,2862.58 L 485.107,2862.45 C 485.209,2862.41 485.311,2862.32 485.311,2862.16 L 485.311,2862.01 L 424.707,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 424.102,2858.62 L 424.1,2776.86 L 424.406,2776.57 L 424.707,2776.61 L 424.707,2858.06 L 424.102,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_9' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(442.677 2789.88) rotate(90) skewX(-7.19518)' fill='%23860c0c'/%3E%3Crect x='-2.639' y='-2.486' width='5.279' height='4.972' transform='translate(449.141 2790.7) rotate(90) skewX(-7.19721)' fill='%231e4212'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(455.606 2791.51) rotate(90) skewX(-7.19518)' fill='%237caba7'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(462.072 2792.33) rotate(90) skewX(-7.19316)' fill='%23e9b4c0'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(468.537 2793.14) rotate(90) skewX(-7.19518)' fill='%23ddd2ac'/%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.334' fill='%23000000'%3E%3Cg id='Group_11'%3E%3Cpath d='M 447.994,2795.9 L 447.414,2796.99 L 447.286,2797.22 L 447.565,2797.26 L 447.69,2797.02 L 447.994,2796.45 L 448.298,2797.09 L 448.426,2797.36 L 448.703,2797.39 L 448.575,2797.13 L 447.994,2795.9 Z M 449.199,2796.1 C 449.113,2796.12 449.041,2796.17 448.978,2796.22 C 448.913,2796.28 448.864,2796.35 448.828,2796.43 C 448.792,2796.51 448.773,2796.6 448.773,2796.7 C 448.773,2796.79 448.792,2796.89 448.828,2796.98 C 448.864,2797.07 448.913,2797.15 448.978,2797.22 C 449.041,2797.29 449.113,2797.35 449.199,2797.4 C 449.281,2797.44 449.371,2797.47 449.469,2797.49 C 449.565,2797.49 449.654,2797.49 449.739,2797.46 C 449.823,2797.44 449.896,2797.39 449.96,2797.34 C 450.022,2797.28 450.073,2797.21 450.11,2797.13 C 450.143,2797.05 450.162,2796.96 450.162,2796.86 C 450.162,2796.76 450.143,2796.67 450.11,2796.58 C 450.073,2796.49 450.022,2796.41 449.96,2796.34 C 449.896,2796.27 449.823,2796.21 449.739,2796.16 C 449.654,2796.12 449.565,2796.09 449.469,2796.08 C 449.371,2796.07 449.281,2796.07 449.199,2796.1 Z M 450.735,2796.28 C 450.652,2796.31 450.578,2796.35 450.513,2796.41 C 450.452,2796.46 450.401,2796.53 450.364,2796.61 C 450.331,2796.7 450.311,2796.78 450.311,2796.88 C 450.311,2796.98 450.331,2797.07 450.364,2797.16 C 450.401,2797.25 450.452,2797.33 450.513,2797.4 C 450.578,2797.47 450.652,2797.53 450.735,2797.58 C 450.82,2797.63 450.909,2797.66 451.005,2797.67 L 451.701,2797.75 L 451.701,2797.5 L 451.005,2797.42 C 450.944,2797.41 450.887,2797.39 450.833,2797.36 C 450.777,2797.33 450.731,2797.29 450.69,2797.25 C 450.65,2797.2 450.618,2797.15 450.595,2797.09 C 450.57,2797.03 450.561,2796.97 450.559,2796.91 C 450.561,2796.85 450.57,2796.79 450.595,2796.74 C 450.618,2796.69 450.65,2796.64 450.69,2796.61 C 450.731,2796.57 450.777,2796.54 450.833,2796.53 C 450.887,2796.51 450.944,2796.5 451.005,2796.51 L 451.452,2796.57 L 451.452,2796.83 L 451.005,2796.78 L 451.005,2797.03 L 451.701,2797.11 L 451.701,2796.34 L 451.005,2796.26 C 450.909,2796.25 450.82,2796.26 450.735,2796.28 Z M 449.469,2796.33 C 449.531,2796.34 449.588,2796.35 449.641,2796.38 C 449.697,2796.41 449.744,2796.45 449.784,2796.5 C 449.824,2796.54 449.856,2796.59 449.88,2796.65 C 449.903,2796.71 449.916,2796.77 449.916,2796.83 C 449.916,2796.9 449.903,2796.95 449.88,2797.01 C 449.856,2797.06 449.824,2797.1 449.784,2797.14 C 449.744,2797.17 449.697,2797.2 449.641,2797.22 C 449.588,2797.24 449.531,2797.24 449.469,2797.23 C 449.407,2797.22 449.348,2797.21 449.295,2797.18 C 449.241,2797.15 449.194,2797.11 449.152,2797.06 C 449.112,2797.02 449.079,2796.97 449.056,2796.91 C 449.033,2796.85 449.022,2796.79 449.022,2796.73 C 449.022,2796.66 449.033,2796.61 449.056,2796.55 C 449.079,2796.5 449.112,2796.46 449.152,2796.42 C 449.194,2796.39 449.241,2796.36 449.295,2796.34 C 449.348,2796.32 449.407,2796.32 449.469,2796.33 Z M 452.323,2796.47 C 452.239,2796.5 452.165,2796.54 452.101,2796.6 C 452.037,2796.65 451.988,2796.72 451.951,2796.8 C 451.916,2796.88 451.899,2796.97 451.899,2797.07 L 451.899,2797.77 L 452.146,2797.8 L 452.146,2797.1 C 452.146,2797.04 452.158,2796.98 452.182,2796.93 C 452.203,2796.88 452.238,2796.83 452.277,2796.79 C 452.318,2796.76 452.364,2796.73 452.419,2796.72 C 452.474,2796.7 452.531,2796.69 452.593,2796.7 C 452.655,2796.71 452.712,2796.73 452.767,2796.76 C 452.82,2796.79 452.867,2796.82 452.908,2796.87 C 452.95,2796.92 452.982,2796.97 453.004,2797.03 C 453.027,2797.08 453.039,2797.14 453.039,2797.21 L 453.039,2797.91 L 453.286,2797.94 L 453.286,2797.24 C 453.286,2797.14 453.27,2797.04 453.233,2796.96 C 453.197,2796.87 453.148,2796.79 453.084,2796.71 C 453.02,2796.64 452.946,2796.58 452.862,2796.54 C 452.78,2796.49 452.688,2796.46 452.593,2796.45 C 452.497,2796.44 452.405,2796.45 452.323,2796.47 Z M 453.715,2796.61 C 453.669,2796.63 453.631,2796.65 453.597,2796.68 C 453.563,2796.71 453.535,2796.75 453.516,2796.79 C 453.497,2796.84 453.486,2796.88 453.486,2796.94 L 453.486,2797.58 C 453.486,2797.64 453.497,2797.69 453.516,2797.74 C 453.535,2797.78 453.563,2797.83 453.597,2797.87 C 453.631,2797.9 453.669,2797.93 453.715,2797.96 C 453.759,2797.99 453.807,2798 453.861,2798.01 L 454.874,2798.13 L 454.874,2797.88 L 453.861,2797.76 C 453.837,2797.75 453.816,2797.75 453.797,2797.73 C 453.778,2797.72 453.761,2797.7 453.75,2797.68 C 453.74,2797.66 453.734,2797.64 453.734,2797.61 L 453.734,2797.48 L 454.627,2797.59 L 454.627,2797.34 L 453.734,2797.23 L 453.734,2796.97 C 453.734,2796.94 453.74,2796.92 453.75,2796.9 C 453.761,2796.88 453.778,2796.87 453.797,2796.86 C 453.816,2796.85 453.837,2796.85 453.861,2796.85 L 454.874,2796.97 L 454.874,2796.72 L 453.861,2796.6 L 453.784,2796.6 C 453.759,2796.6 453.735,2796.61 453.715,2796.61 Z M 456.308,2796.93 C 456.255,2796.94 456.208,2796.97 456.168,2797.01 C 456.127,2797.04 456.098,2797.08 456.073,2797.14 C 456.05,2797.19 456.039,2797.24 456.039,2797.3 L 456.286,2797.34 C 456.289,2797.3 456.297,2797.27 456.314,2797.24 C 456.332,2797.21 456.352,2797.19 456.382,2797.18 C 456.41,2797.17 456.442,2797.16 456.478,2797.17 L 456.912,2797.22 C 456.948,2797.22 456.981,2797.23 457.01,2797.26 C 457.038,2797.28 457.062,2797.3 457.078,2797.33 C 457.096,2797.36 457.103,2797.4 457.106,2797.43 C 457.103,2797.47 457.096,2797.5 457.078,2797.53 C 457.062,2797.55 457.038,2797.57 457.01,2797.59 C 456.981,2797.6 456.948,2797.61 456.912,2797.6 L 456.412,2797.54 L 456.337,2797.54 C 456.314,2797.54 456.291,2797.55 456.27,2797.55 C 456.225,2797.57 456.186,2797.59 456.153,2797.62 C 456.135,2797.64 456.119,2797.65 456.105,2797.67 C 456.084,2797.7 456.068,2797.73 456.057,2797.77 C 456.046,2797.8 456.039,2797.84 456.039,2797.88 L 456.039,2797.89 C 456.039,2797.94 456.05,2797.99 456.069,2798.04 C 456.089,2798.09 456.114,2798.13 456.149,2798.17 C 456.183,2798.21 456.223,2798.24 456.267,2798.26 C 456.312,2798.29 456.362,2798.31 456.412,2798.31 L 456.976,2798.38 C 457.027,2798.39 457.076,2798.38 457.123,2798.37 C 457.167,2798.36 457.206,2798.33 457.243,2798.3 C 457.276,2798.27 457.302,2798.23 457.32,2798.19 C 457.342,2798.15 457.35,2798.1 457.35,2798.05 L 457.35,2798.04 L 457.103,2798.01 L 457.103,2798.01 C 457.103,2798.04 457.098,2798.06 457.087,2798.08 C 457.074,2798.1 457.059,2798.11 457.04,2798.12 C 457.021,2798.13 457,2798.13 456.976,2798.13 L 456.412,2798.06 C 456.389,2798.06 456.367,2798.05 456.348,2798.03 C 456.33,2798.02 456.314,2798 456.304,2797.98 C 456.291,2797.96 456.286,2797.94 456.286,2797.92 L 456.286,2797.91 C 456.286,2797.88 456.291,2797.86 456.304,2797.85 C 456.314,2797.83 456.33,2797.81 456.348,2797.8 C 456.367,2797.8 456.389,2797.79 456.412,2797.8 L 456.912,2797.85 L 457.006,2797.85 C 457.036,2797.85 457.066,2797.84 457.093,2797.84 C 457.148,2797.82 457.195,2797.79 457.236,2797.75 C 457.24,2797.75 457.243,2797.74 457.244,2797.74 C 457.246,2797.74 457.248,2797.73 457.253,2797.73 C 457.282,2797.7 457.308,2797.66 457.325,2797.61 C 457.342,2797.57 457.35,2797.52 457.35,2797.46 C 457.35,2797.4 457.339,2797.34 457.317,2797.28 C 457.295,2797.23 457.263,2797.18 457.223,2797.13 C 457.183,2797.09 457.136,2797.05 457.082,2797.02 C 457.032,2796.99 456.974,2796.97 456.912,2796.97 L 456.478,2796.91 C 456.417,2796.91 456.362,2796.91 456.308,2796.93 Z M 457.781,2797.1 C 457.736,2797.11 457.695,2797.14 457.661,2797.17 C 457.627,2797.2 457.601,2797.23 457.582,2797.28 C 457.563,2797.32 457.552,2797.37 457.552,2797.42 L 457.552,2798.07 C 457.552,2798.12 457.563,2798.17 457.582,2798.22 C 457.601,2798.27 457.627,2798.31 457.661,2798.35 C 457.695,2798.39 457.736,2798.42 457.781,2798.45 C 457.825,2798.47 457.874,2798.49 457.924,2798.49 L 458.941,2798.62 L 458.941,2798.36 L 457.924,2798.24 C 457.902,2798.24 457.88,2798.23 457.862,2798.22 C 457.842,2798.2 457.828,2798.19 457.817,2798.17 C 457.804,2798.14 457.8,2798.12 457.8,2798.1 L 457.8,2797.97 L 458.691,2798.08 L 458.691,2797.82 L 457.8,2797.72 L 457.8,2797.45 C 457.8,2797.43 457.804,2797.41 457.817,2797.39 C 457.828,2797.37 457.842,2797.36 457.862,2797.35 C 457.88,2797.34 457.902,2797.34 457.924,2797.34 L 458.941,2797.46 L 458.941,2797.21 L 457.924,2797.09 C 457.874,2797.08 457.825,2797.08 457.781,2797.1 Z M 459.136,2797.23 L 459.136,2798.64 L 460.012,2798.74 C 460.064,2798.75 460.112,2798.74 460.157,2798.73 C 460.204,2798.71 460.243,2798.69 460.276,2798.66 C 460.311,2798.63 460.338,2798.59 460.358,2798.55 C 460.377,2798.51 460.385,2798.46 460.385,2798.41 C 460.385,2798.36 460.377,2798.31 460.358,2798.26 C 460.34,2798.21 460.314,2798.17 460.281,2798.13 C 460.248,2798.09 460.211,2798.06 460.168,2798.03 C 460.134,2798.01 460.098,2798 460.06,2797.99 L 460.259,2797.61 L 460.385,2797.38 L 460.108,2797.34 L 459.981,2797.58 L 459.849,2797.83 L 459.842,2797.84 C 459.819,2797.87 459.791,2797.9 459.753,2797.91 C 459.717,2797.93 459.677,2797.94 459.631,2797.93 L 459.383,2797.9 L 459.383,2797.26 L 459.136,2797.23 Z M 460.585,2797.4 L 460.585,2798.81 L 460.834,2798.84 L 460.834,2797.43 L 460.585,2797.4 Z M 461.261,2797.51 C 461.215,2797.53 461.176,2797.55 461.143,2797.58 C 461.108,2797.61 461.08,2797.65 461.062,2797.69 C 461.042,2797.74 461.034,2797.78 461.032,2797.84 L 461.032,2798.48 C 461.034,2798.54 461.042,2798.59 461.062,2798.64 C 461.08,2798.68 461.108,2798.73 461.143,2798.77 C 461.176,2798.81 461.215,2798.84 461.261,2798.86 C 461.306,2798.89 461.353,2798.9 461.406,2798.91 L 462.421,2799.03 L 462.421,2798.78 L 461.406,2798.66 C 461.383,2798.65 461.362,2798.65 461.342,2798.63 C 461.323,2798.62 461.309,2798.6 461.296,2798.58 C 461.285,2798.56 461.279,2798.54 461.279,2798.51 L 461.279,2798.38 L 462.172,2798.49 L 462.172,2798.24 L 461.279,2798.13 L 461.279,2797.87 C 461.279,2797.84 461.285,2797.82 461.296,2797.8 C 461.309,2797.79 461.323,2797.77 461.342,2797.76 C 461.362,2797.75 461.383,2797.75 461.406,2797.75 L 462.421,2797.87 L 462.421,2797.62 L 461.406,2797.5 C 461.353,2797.49 461.306,2797.5 461.261,2797.51 Z M 462.888,2797.71 C 462.834,2797.73 462.787,2797.76 462.748,2797.79 C 462.709,2797.83 462.677,2797.87 462.653,2797.92 C 462.632,2797.97 462.62,2798.03 462.62,2798.09 L 462.868,2798.12 C 462.868,2798.08 462.877,2798.05 462.893,2798.03 C 462.911,2798 462.934,2797.98 462.962,2797.97 C 462.992,2797.95 463.024,2797.95 463.058,2797.95 L 463.494,2798 C 463.528,2798.01 463.56,2798.02 463.59,2798.04 C 463.62,2798.06 463.64,2798.09 463.659,2798.12 C 463.677,2798.15 463.686,2798.18 463.686,2798.22 C 463.686,2798.26 463.677,2798.29 463.659,2798.31 C 463.64,2798.34 463.62,2798.36 463.59,2798.37 C 463.56,2798.39 463.528,2798.39 463.494,2798.39 L 462.994,2798.33 C 462.943,2798.32 462.893,2798.33 462.852,2798.34 C 462.806,2798.35 462.767,2798.37 462.732,2798.4 C 462.715,2798.42 462.7,2798.44 462.686,2798.46 C 462.664,2798.49 462.649,2798.52 462.636,2798.55 C 462.626,2798.59 462.62,2798.63 462.62,2798.67 L 462.62,2798.67 C 462.62,2798.73 462.63,2798.78 462.649,2798.83 C 462.668,2798.87 462.696,2798.92 462.73,2798.96 C 462.764,2798.99 462.803,2799.03 462.847,2799.05 C 462.892,2799.08 462.94,2799.09 462.994,2799.1 L 463.555,2799.17 L 463.632,2799.17 C 463.656,2799.17 463.679,2799.16 463.702,2799.15 C 463.746,2799.14 463.787,2799.12 463.821,2799.09 C 463.856,2799.06 463.883,2799.02 463.902,2798.98 C 463.922,2798.93 463.932,2798.89 463.932,2798.83 L 463.932,2798.82 L 463.684,2798.79 L 463.684,2798.8 C 463.684,2798.82 463.677,2798.84 463.666,2798.86 C 463.656,2798.88 463.639,2798.89 463.62,2798.9 C 463.6,2798.91 463.579,2798.92 463.555,2798.91 L 462.994,2798.85 C 462.97,2798.84 462.949,2798.84 462.929,2798.82 C 462.911,2798.81 462.893,2798.79 462.883,2798.77 C 462.872,2798.75 462.866,2798.72 462.866,2798.7 L 462.866,2798.69 C 462.866,2798.67 462.872,2798.65 462.883,2798.63 C 462.893,2798.61 462.911,2798.6 462.929,2798.59 C 462.949,2798.58 462.97,2798.58 462.994,2798.58 L 463.494,2798.64 C 463.558,2798.65 463.618,2798.64 463.673,2798.62 C 463.728,2798.6 463.776,2798.57 463.817,2798.53 C 463.82,2798.53 463.821,2798.53 463.824,2798.53 C 463.826,2798.52 463.831,2798.52 463.832,2798.52 C 463.864,2798.48 463.888,2798.44 463.905,2798.4 C 463.922,2798.35 463.932,2798.3 463.932,2798.25 C 463.932,2798.19 463.92,2798.13 463.897,2798.07 C 463.875,2798.01 463.842,2797.96 463.802,2797.92 C 463.762,2797.87 463.717,2797.84 463.664,2797.81 C 463.61,2797.78 463.553,2797.76 463.494,2797.75 L 463.058,2797.7 C 462.998,2797.69 462.94,2797.7 462.888,2797.71 Z M 459.383,2798.15 L 460.012,2798.23 C 460.021,2798.23 460.03,2798.23 460.04,2798.24 C 460.049,2798.24 460.057,2798.24 460.064,2798.25 C 460.087,2798.26 460.106,2798.28 460.119,2798.3 C 460.131,2798.33 460.14,2798.35 460.14,2798.37 C 460.138,2798.4 460.134,2798.42 460.126,2798.43 C 460.117,2798.45 460.11,2798.46 460.101,2798.46 C 460.093,2798.47 460.082,2798.48 460.068,2798.48 C 460.053,2798.49 460.034,2798.49 460.012,2798.49 L 459.383,2798.41 L 459.383,2798.15 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(448.814 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--ELEMENTS, .KN95_NR_individuals--ELEMENTS {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='14.953 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.891' y2='69.197' gradientTransform='translate(59.028 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.716' y2='69.453' gradientTransform='translate(46.692 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.402' y2='7.324' gradientTransform='translate(59.007 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.801' gradientTransform='translate(42.712 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.57' gradientTransform='translate(88.013 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.57' y2='0' gradientTransform='translate(49.157 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(73.281 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 48.872,2776.57 L 48.872,2858.45 L 109.703,2862.36 C 109.745,2862.31 109.777,2862.24 109.777,2862.16 L 109.777,2784.82 L 48.872,2776.57 Z' stroke-width='8.031' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 48.872,2776.57 L 36.797,2788.29 L 36.79,2865.07 L 48.872,2858.45 L 48.872,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 48.872,2858.45 L 36.79,2865.07 L 95.824,2868.31 L 109.573,2862.45 C 109.62,2862.43 109.667,2862.4 109.703,2862.36 L 48.872,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 48.568,2857.52 L 36.786,2864.11 L 36.784,2865.07 L 48.568,2858.62 L 48.568,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 65.742,2819.56 L 65.734,2826.71 L 66.914,2826.83 L 66.921,2823.18 L 67.896,2824.24 L 68.772,2825.19 L 70.613,2827.21 L 72.365,2827.39 L 69.474,2824.22 L 72.347,2820.23 L 70.89,2820.08 L 68.598,2823.26 L 66.923,2821.45 L 66.923,2819.68 L 65.742,2819.56 Z M 72.949,2820.29 L 73.556,2821.63 L 76.318,2827.79 L 79.1,2822.2 L 79.701,2820.98 L 78.382,2820.85 L 77.773,2822.06 L 76.323,2824.98 L 74.876,2821.77 L 74.273,2820.43 L 72.949,2820.29 Z M 80.299,2821.04 L 80.31,2821.04 L 81.217,2822.41 L 82.838,2824.86 L 83.589,2825.98 L 84.492,2827.35 L 80.284,2826.92 L 80.283,2828.19 L 85.4,2828.71 L 86.881,2828.87 L 85.968,2827.49 L 84.325,2825.01 L 83.583,2823.89 L 82.689,2822.56 L 86.919,2822.99 L 86.922,2821.71 L 81.802,2821.19 L 81.793,2821.19 L 80.299,2821.04 Z M 88.932,2822.07 C 88.719,2822.15 88.526,2822.27 88.368,2822.43 C 88.202,2822.59 88.075,2822.78 87.987,2823 C 87.894,2823.23 87.849,2823.47 87.847,2823.74 L 87.84,2827.03 C 87.84,2827.3 87.885,2827.55 87.979,2827.79 C 88.068,2828.04 88.193,2828.25 88.362,2828.45 C 88.519,2828.64 88.711,2828.8 88.923,2828.92 C 89.139,2829.04 89.371,2829.12 89.618,2829.14 L 94.45,2829.63 L 94.45,2828.36 L 89.618,2827.86 C 89.504,2827.85 89.405,2827.81 89.313,2827.74 C 89.221,2827.68 89.154,2827.59 89.099,2827.49 C 89.043,2827.38 89.018,2827.27 89.018,2827.15 L 89.018,2826.49 L 93.271,2826.92 L 93.272,2825.64 L 89.018,2825.21 L 89.018,2823.86 C 89.018,2823.74 89.047,2823.63 89.102,2823.54 C 89.16,2823.45 89.228,2823.37 89.317,2823.33 C 89.411,2823.28 89.509,2823.26 89.624,2823.26 L 94.456,2823.76 L 94.458,2822.48 L 89.624,2821.99 C 89.381,2821.97 89.149,2821.99 88.932,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 72.728,2815.76 L 72.728,2817.28 C 72.728,2817.36 72.741,2817.43 72.769,2817.51 C 72.796,2817.58 72.836,2817.65 72.888,2817.7 C 72.939,2817.76 72.998,2817.8 73.065,2817.84 C 73.132,2817.87 73.205,2817.9 73.283,2817.9 L 74.792,2818.07 L 74.792,2817.69 L 73.283,2817.53 C 73.249,2817.53 73.218,2817.51 73.187,2817.49 C 73.16,2817.47 73.138,2817.45 73.12,2817.42 C 73.103,2817.39 73.097,2817.36 73.097,2817.32 L 73.097,2817.13 L 74.423,2817.26 L 74.423,2816.89 L 73.094,2816.75 L 73.097,2815.8 L 72.728,2815.76 Z M 75.092,2816.01 L 75.09,2817.53 C 75.09,2817.61 75.103,2817.68 75.132,2817.76 C 75.158,2817.83 75.199,2817.89 75.248,2817.95 C 75.301,2818 75.361,2818.05 75.426,2818.09 C 75.492,2818.12 75.562,2818.14 75.645,2818.15 L 77.152,2818.31 L 77.155,2817.94 L 75.648,2817.78 C 75.611,2817.78 75.577,2817.76 75.552,2817.74 C 75.522,2817.72 75.501,2817.7 75.481,2817.67 C 75.465,2817.64 75.458,2817.61 75.458,2817.57 L 75.458,2817.38 L 76.787,2817.52 L 76.787,2817.15 L 75.456,2817 L 75.458,2816.04 L 75.092,2816.01 Z M 77.454,2816.26 L 77.45,2818.35 L 78.752,2818.49 C 78.827,2818.49 78.902,2818.49 78.965,2818.46 C 79.033,2818.44 79.093,2818.41 79.144,2818.36 L 79.145,2818.36 C 79.197,2818.31 79.235,2818.26 79.267,2818.19 C 79.293,2818.12 79.31,2818.05 79.31,2817.98 C 79.31,2817.9 79.293,2817.83 79.269,2817.76 C 79.24,2817.69 79.202,2817.62 79.155,2817.57 C 79.105,2817.51 79.05,2817.46 78.986,2817.43 C 78.935,2817.4 78.882,2817.38 78.824,2817.37 C 78.821,2817.37 78.814,2817.37 78.81,2817.37 L 78.81,2817.36 L 77.82,2817.25 L 77.822,2816.3 L 77.454,2816.26 Z M 79.601,2816.47 L 79.601,2817.1 C 79.601,2817.14 79.603,2817.18 79.613,2817.22 C 79.62,2817.26 79.635,2817.3 79.648,2817.34 C 79.68,2817.42 79.723,2817.48 79.776,2817.54 C 79.829,2817.61 79.889,2817.66 79.961,2817.7 C 80.029,2817.73 80.106,2817.76 80.188,2817.77 L 81.072,2817.87 L 81.082,2817.87 C 81.122,2817.88 81.161,2817.89 81.192,2817.92 C 81.225,2817.94 81.251,2817.98 81.27,2818.02 C 81.288,2818.05 81.298,2818.09 81.298,2818.13 C 81.298,2818.18 81.287,2818.22 81.266,2818.26 C 81.244,2818.29 81.218,2818.31 81.18,2818.33 C 81.144,2818.35 81.104,2818.36 81.059,2818.36 L 79.603,2818.2 L 79.603,2818.57 L 81.056,2818.73 C 81.144,2818.74 81.225,2818.73 81.295,2818.7 C 81.368,2818.68 81.431,2818.64 81.491,2818.59 C 81.546,2818.54 81.591,2818.48 81.619,2818.41 C 81.65,2818.34 81.666,2818.26 81.667,2818.17 C 81.667,2818.13 81.663,2818.09 81.655,2818.05 C 81.646,2818.01 81.634,2817.97 81.616,2817.93 C 81.603,2817.89 81.586,2817.86 81.565,2817.82 C 81.546,2817.79 81.52,2817.76 81.495,2817.73 C 81.444,2817.67 81.379,2817.61 81.308,2817.57 C 81.236,2817.53 81.163,2817.51 81.078,2817.49 L 81.069,2817.49 C 81.067,2817.49 81.063,2817.49 81.059,2817.49 L 80.188,2817.4 C 80.148,2817.39 80.112,2817.38 80.078,2817.35 C 80.044,2817.33 80.018,2817.29 80.002,2817.25 C 79.981,2817.22 79.974,2817.18 79.974,2817.14 L 79.974,2816.9 L 81.66,2817.07 L 81.661,2816.7 L 80.205,2816.54 L 79.601,2816.47 Z M 83.402,2816.88 L 83.4,2818.96 L 83.768,2818.72 L 85.098,2817.82 L 85.096,2819.15 L 85.464,2819.19 L 85.468,2817.1 L 85.098,2817.35 L 83.768,2818.24 L 83.772,2816.92 L 83.402,2816.88 Z M 85.762,2817.14 L 85.76,2819.22 L 87.064,2819.36 C 87.139,2819.37 87.21,2819.37 87.276,2819.34 C 87.346,2819.32 87.405,2819.28 87.455,2819.24 C 87.505,2819.19 87.545,2819.14 87.575,2819.07 C 87.603,2819 87.617,2818.93 87.619,2818.86 C 87.619,2818.78 87.603,2818.71 87.577,2818.63 C 87.549,2818.57 87.511,2818.5 87.462,2818.45 C 87.415,2818.39 87.357,2818.35 87.296,2818.3 C 87.244,2818.28 87.189,2818.26 87.134,2818.24 L 87.432,2817.68 L 87.621,2817.33 L 87.209,2817.29 L 87.019,2817.64 L 86.82,2818.01 L 86.811,2818.02 C 86.779,2818.08 86.736,2818.12 86.679,2818.14 C 86.625,2818.17 86.563,2818.18 86.496,2818.17 L 86.13,2818.13 L 86.131,2817.17 L 85.762,2817.14 Z M 77.82,2817.62 L 78.756,2817.72 C 78.767,2817.72 78.78,2817.73 78.795,2817.73 C 78.808,2817.74 78.818,2817.74 78.831,2817.75 L 78.831,2817.75 C 78.865,2817.77 78.895,2817.8 78.912,2817.83 C 78.933,2817.86 78.942,2817.9 78.942,2817.94 C 78.942,2817.97 78.935,2818 78.923,2818.02 C 78.91,2818.04 78.899,2818.06 78.889,2818.07 C 78.873,2818.08 78.857,2818.09 78.835,2818.1 C 78.814,2818.11 78.787,2818.11 78.756,2818.11 L 77.82,2818.01 L 77.82,2817.62 Z M 86.13,2818.5 L 87.066,2818.6 C 87.076,2818.6 87.089,2818.61 87.103,2818.61 C 87.117,2818.62 87.128,2818.62 87.139,2818.63 C 87.174,2818.65 87.203,2818.68 87.219,2818.71 C 87.243,2818.74 87.253,2818.78 87.253,2818.82 C 87.249,2818.85 87.244,2818.88 87.23,2818.9 C 87.217,2818.92 87.209,2818.94 87.195,2818.95 C 87.183,2818.96 87.166,2818.97 87.144,2818.98 C 87.122,2818.99 87.096,2818.99 87.064,2818.99 L 86.127,2818.89 L 86.13,2818.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 66.151,2811.59 L 66.148,2812.97 L 66.994,2813.06 C 67.044,2813.07 67.096,2813.06 67.135,2813.05 C 67.176,2813.03 67.22,2813.01 67.249,2812.98 L 67.25,2812.97 C 67.287,2812.94 67.311,2812.91 67.33,2812.87 C 67.346,2812.82 67.36,2812.78 67.36,2812.72 C 67.36,2812.67 67.349,2812.62 67.331,2812.58 C 67.315,2812.53 67.291,2812.49 67.257,2812.45 C 67.227,2812.41 67.189,2812.38 67.149,2812.36 C 67.114,2812.34 67.08,2812.32 67.044,2812.32 C 67.04,2812.32 67.036,2812.32 67.033,2812.32 L 67.033,2812.32 L 66.391,2812.25 L 66.394,2811.61 L 66.151,2811.59 Z M 67.549,2811.73 L 67.547,2813.11 L 68.395,2813.2 C 68.449,2813.21 68.494,2813.2 68.536,2813.19 C 68.581,2813.17 68.615,2813.15 68.649,2813.12 C 68.683,2813.09 68.707,2813.05 68.732,2813.01 C 68.746,2812.97 68.756,2812.92 68.757,2812.87 C 68.756,2812.82 68.746,2812.77 68.734,2812.72 C 68.708,2812.68 68.687,2812.64 68.655,2812.6 C 68.621,2812.56 68.589,2812.53 68.546,2812.5 C 68.513,2812.49 68.479,2812.47 68.444,2812.46 L 68.634,2812.09 L 68.757,2811.85 L 68.491,2811.82 L 68.366,2812.06 L 68.238,2812.31 L 68.232,2812.32 C 68.211,2812.35 68.181,2812.38 68.147,2812.39 C 68.108,2812.41 68.073,2812.42 68.03,2812.41 L 67.787,2812.39 L 67.787,2811.75 L 67.549,2811.73 Z M 69.312,2811.97 C 69.236,2811.99 69.165,2812.04 69.105,2812.09 C 69.038,2812.15 68.989,2812.22 68.957,2812.3 C 68.923,2812.38 68.907,2812.47 68.902,2812.57 C 68.907,2812.66 68.923,2812.75 68.955,2812.84 C 68.989,2812.93 69.038,2813.01 69.102,2813.08 C 69.161,2813.15 69.234,2813.2 69.311,2813.25 C 69.393,2813.29 69.481,2813.32 69.575,2813.33 C 69.666,2813.34 69.755,2813.33 69.838,2813.3 C 69.916,2813.27 69.989,2813.23 70.048,2813.18 C 70.113,2813.12 70.162,2813.05 70.194,2812.97 C 70.229,2812.89 70.247,2812.8 70.247,2812.7 C 70.247,2812.61 70.23,2812.51 70.194,2812.43 C 70.162,2812.34 70.115,2812.27 70.052,2812.19 C 69.992,2812.12 69.917,2812.07 69.841,2812.02 C 69.755,2811.98 69.669,2811.95 69.577,2811.94 L 69.442,2811.94 C 69.397,2811.95 69.356,2811.95 69.312,2811.97 Z M 70.943,2812.08 L 70.94,2813.22 L 70.392,2813.16 L 70.392,2813.41 L 71.731,2813.55 L 71.731,2813.3 L 71.186,2813.25 L 71.187,2812.11 L 70.943,2812.08 Z M 69.577,2812.19 C 69.635,2812.19 69.691,2812.21 69.745,2812.24 C 69.8,2812.27 69.845,2812.31 69.881,2812.35 C 69.919,2812.39 69.951,2812.45 69.977,2812.5 C 69.997,2812.56 70.008,2812.62 70.008,2812.68 C 70.008,2812.74 69.997,2812.8 69.975,2812.85 C 69.951,2812.9 69.919,2812.95 69.881,2812.98 C 69.842,2813.02 69.798,2813.05 69.743,2813.06 C 69.69,2813.08 69.635,2813.09 69.575,2813.08 C 69.517,2813.08 69.459,2813.06 69.406,2813.03 C 69.356,2813 69.307,2812.96 69.268,2812.92 C 69.232,2812.87 69.2,2812.83 69.177,2812.76 C 69.16,2812.71 69.146,2812.65 69.146,2812.59 C 69.146,2812.53 69.16,2812.47 69.177,2812.42 C 69.2,2812.37 69.234,2812.32 69.27,2812.29 C 69.308,2812.25 69.357,2812.22 69.406,2812.21 C 69.459,2812.19 69.519,2812.18 69.577,2812.19 Z M 72.148,2812.24 C 72.109,2812.25 72.071,2812.27 72.034,2812.31 C 72.003,2812.34 71.977,2812.37 71.958,2812.42 C 71.941,2812.46 71.932,2812.51 71.932,2812.56 L 71.93,2813.2 C 71.932,2813.25 71.937,2813.3 71.956,2813.35 C 71.977,2813.4 72,2813.43 72.034,2813.48 C 72.068,2813.51 72.105,2813.54 72.148,2813.57 C 72.192,2813.59 72.239,2813.61 72.287,2813.61 L 73.271,2813.71 L 73.271,2813.47 L 72.287,2813.36 C 72.266,2813.36 72.245,2813.35 72.225,2813.34 C 72.211,2813.33 72.194,2813.31 72.184,2813.29 C 72.173,2813.27 72.166,2813.24 72.166,2813.22 L 72.166,2813.09 L 73.03,2813.18 L 73.03,2812.93 L 72.166,2812.85 L 72.17,2812.59 C 72.17,2812.56 72.173,2812.54 72.185,2812.52 C 72.196,2812.5 72.213,2812.49 72.229,2812.48 C 72.25,2812.47 72.269,2812.47 72.287,2812.47 L 73.273,2812.57 L 73.273,2812.32 L 72.29,2812.22 C 72.241,2812.22 72.194,2812.22 72.148,2812.24 Z M 73.849,2812.44 C 73.771,2812.47 73.703,2812.51 73.641,2812.56 C 73.577,2812.62 73.528,2812.69 73.494,2812.77 C 73.46,2812.85 73.44,2812.94 73.44,2813.03 C 73.44,2813.13 73.46,2813.22 73.494,2813.31 C 73.526,2813.4 73.575,2813.48 73.641,2813.55 C 73.703,2813.62 73.771,2813.67 73.849,2813.72 C 73.932,2813.76 74.019,2813.79 74.114,2813.8 L 74.781,2813.87 L 74.781,2813.62 L 74.114,2813.55 C 74.054,2813.55 73.996,2813.53 73.945,2813.5 C 73.894,2813.47 73.845,2813.43 73.805,2813.39 C 73.768,2813.34 73.739,2813.3 73.713,2813.24 C 73.697,2813.18 73.682,2813.12 73.682,2813.06 C 73.682,2813 73.697,2812.94 73.716,2812.89 C 73.739,2812.84 73.768,2812.8 73.807,2812.76 C 73.848,2812.72 73.897,2812.69 73.948,2812.68 C 73.996,2812.66 74.054,2812.65 74.115,2812.66 L 74.784,2812.73 L 74.784,2812.48 L 74.115,2812.41 L 73.979,2812.41 C 73.935,2812.41 73.894,2812.42 73.849,2812.44 Z M 66.391,2812.5 L 66.998,2812.56 C 67.009,2812.56 67.019,2812.56 67.025,2812.56 C 67.033,2812.56 67.04,2812.57 67.051,2812.58 C 67.07,2812.59 67.09,2812.6 67.104,2812.63 C 67.114,2812.65 67.119,2812.67 67.119,2812.7 C 67.119,2812.72 67.114,2812.74 67.108,2812.75 C 67.102,2812.77 67.091,2812.78 67.085,2812.78 C 67.076,2812.79 67.065,2812.8 67.053,2812.8 C 67.036,2812.81 67.021,2812.82 66.998,2812.81 L 66.391,2812.75 L 66.391,2812.5 Z M 75.526,2812.56 L 75.526,2813.7 L 74.975,2813.64 L 74.975,2813.89 L 76.318,2814.03 L 76.318,2813.78 L 75.767,2813.72 L 75.767,2812.58 L 75.526,2812.56 Z M 67.787,2812.64 L 68.395,2812.7 C 68.404,2812.7 68.413,2812.7 68.421,2812.7 C 68.432,2812.71 68.438,2812.71 68.449,2812.72 C 68.468,2812.73 68.485,2812.75 68.5,2812.77 C 68.513,2812.79 68.519,2812.82 68.519,2812.84 C 68.519,2812.87 68.513,2812.88 68.506,2812.9 C 68.5,2812.91 68.491,2812.92 68.481,2812.93 C 68.475,2812.93 68.462,2812.94 68.454,2812.95 C 68.436,2812.96 68.415,2812.96 68.395,2812.96 L 67.787,2812.89 L 67.787,2812.64 Z M 76.509,2812.66 L 76.508,2814.05 L 76.752,2814.07 L 76.755,2812.69 L 76.509,2812.66 Z M 77.552,2812.77 L 76.988,2813.85 L 76.863,2814.08 L 77.133,2814.11 L 77.257,2813.88 L 77.55,2813.31 L 77.841,2813.94 L 77.967,2814.2 L 78.233,2814.23 L 78.11,2813.97 L 77.552,2812.77 Z M 78.576,2812.9 C 78.533,2812.92 78.495,2812.94 78.463,2812.97 C 78.429,2813 78.401,2813.04 78.386,2813.08 C 78.365,2813.12 78.354,2813.17 78.354,2813.22 L 78.354,2813.87 C 78.354,2813.92 78.363,2813.97 78.384,2814.01 C 78.399,2814.06 78.427,2814.1 78.461,2814.14 C 78.493,2814.18 78.531,2814.21 78.573,2814.23 C 78.616,2814.26 78.665,2814.27 78.716,2814.28 L 79.694,2814.38 L 79.694,2814.13 L 78.716,2814.03 C 78.688,2814.03 78.67,2814.02 78.651,2814.01 C 78.633,2813.99 78.62,2813.98 78.608,2813.95 C 78.597,2813.94 78.591,2813.91 78.591,2813.89 L 78.591,2813.76 L 79.458,2813.85 L 79.458,2813.61 L 78.592,2813.52 L 78.592,2813.25 C 78.592,2813.23 78.599,2813.21 78.61,2813.19 C 78.62,2813.17 78.633,2813.15 78.654,2813.15 C 78.672,2813.14 78.691,2813.13 78.718,2813.14 L 79.695,2813.24 L 79.695,2812.99 L 78.718,2812.89 C 78.667,2812.88 78.618,2812.89 78.576,2812.9 Z M 80.818,2813.1 L 80.817,2814.49 L 81.663,2814.58 C 81.715,2814.59 81.761,2814.58 81.806,2814.57 C 81.851,2814.55 81.887,2814.53 81.921,2814.5 C 81.955,2814.47 81.978,2814.43 82,2814.38 C 82.014,2814.34 82.025,2814.3 82.025,2814.24 C 82.025,2814.19 82.017,2814.14 82.002,2814.1 C 81.982,2814.05 81.959,2814.01 81.927,2813.97 C 81.895,2813.94 81.861,2813.91 81.817,2813.89 C 81.786,2813.86 81.746,2813.85 81.712,2813.84 L 81.908,2813.46 L 82.028,2813.23 L 81.757,2813.2 L 81.638,2813.43 L 81.51,2813.68 L 81.504,2813.69 C 81.483,2813.72 81.452,2813.75 81.414,2813.77 C 81.38,2813.78 81.342,2813.79 81.301,2813.79 L 81.056,2813.76 L 81.059,2813.13 L 80.818,2813.1 Z M 82.445,2813.3 C 82.401,2813.32 82.362,2813.34 82.331,2813.37 C 82.297,2813.4 82.271,2813.44 82.253,2813.48 C 82.235,2813.53 82.225,2813.58 82.225,2813.63 L 82.225,2814.27 C 82.225,2814.32 82.234,2814.37 82.25,2814.41 C 82.27,2814.46 82.295,2814.5 82.33,2814.54 C 82.362,2814.58 82.4,2814.61 82.441,2814.64 C 82.487,2814.66 82.533,2814.68 82.582,2814.68 L 83.564,2814.78 L 83.564,2814.53 L 82.582,2814.43 C 82.563,2814.43 82.54,2814.42 82.521,2814.41 C 82.508,2814.39 82.492,2814.38 82.478,2814.36 C 82.467,2814.34 82.461,2814.31 82.461,2814.29 L 82.461,2814.16 L 83.325,2814.25 L 83.325,2814 L 82.463,2813.91 L 82.463,2813.65 C 82.463,2813.63 82.47,2813.61 82.481,2813.59 C 82.492,2813.57 82.508,2813.56 82.522,2813.55 C 82.542,2813.54 82.565,2813.54 82.582,2813.54 L 83.565,2813.64 L 83.565,2813.39 L 82.585,2813.29 C 82.536,2813.29 82.489,2813.29 82.445,2813.3 Z M 84.017,2813.47 C 83.968,2813.49 83.923,2813.52 83.882,2813.55 C 83.843,2813.59 83.815,2813.63 83.789,2813.68 C 83.772,2813.73 83.757,2813.79 83.757,2813.85 L 84.002,2813.87 C 84.002,2813.84 84.008,2813.8 84.023,2813.78 C 84.04,2813.76 84.061,2813.73 84.089,2813.72 C 84.117,2813.7 84.145,2813.7 84.183,2813.7 L 84.604,2813.74 C 84.638,2813.75 84.667,2813.76 84.698,2813.78 C 84.721,2813.8 84.746,2813.83 84.761,2813.86 C 84.779,2813.89 84.787,2813.92 84.787,2813.96 C 84.787,2813.99 84.779,2814.03 84.761,2814.05 C 84.746,2814.08 84.721,2814.1 84.698,2814.11 C 84.665,2814.12 84.638,2814.13 84.604,2814.13 L 84.117,2814.08 L 84.049,2814.08 C 84.023,2814.08 84.002,2814.08 83.98,2814.09 C 83.938,2814.1 83.904,2814.13 83.866,2814.15 C 83.853,2814.17 83.832,2814.19 83.818,2814.21 C 83.797,2814.24 83.785,2814.27 83.774,2814.31 C 83.763,2814.34 83.757,2814.38 83.757,2814.42 L 83.757,2814.43 C 83.757,2814.47 83.768,2814.52 83.785,2814.57 C 83.802,2814.62 83.827,2814.66 83.864,2814.7 C 83.899,2814.74 83.934,2814.77 83.979,2814.79 C 84.018,2814.82 84.068,2814.83 84.117,2814.84 L 84.662,2814.89 C 84.71,2814.9 84.757,2814.89 84.802,2814.88 C 84.847,2814.86 84.885,2814.84 84.921,2814.81 C 84.951,2814.78 84.978,2814.74 84.996,2814.7 C 85.017,2814.66 85.023,2814.61 85.023,2814.56 L 85.023,2814.55 L 84.785,2814.52 L 84.785,2814.53 C 84.785,2814.55 84.779,2814.57 84.768,2814.59 C 84.755,2814.61 84.742,2814.62 84.724,2814.64 C 84.706,2814.64 84.685,2814.65 84.662,2814.64 L 84.117,2814.59 C 84.096,2814.59 84.072,2814.58 84.055,2814.56 C 84.04,2814.55 84.023,2814.53 84.01,2814.51 C 84.002,2814.49 83.997,2814.47 83.997,2814.45 L 83.997,2814.44 C 83.997,2814.41 84.002,2814.4 84.01,2814.38 C 84.023,2814.36 84.04,2814.34 84.057,2814.34 C 84.072,2814.33 84.096,2814.32 84.117,2814.32 L 84.604,2814.37 L 84.693,2814.37 C 84.719,2814.37 84.748,2814.37 84.774,2814.36 C 84.832,2814.34 84.876,2814.31 84.915,2814.27 C 84.921,2814.26 84.923,2814.26 84.925,2814.26 C 84.928,2814.26 84.928,2814.25 84.931,2814.25 C 84.959,2814.22 84.983,2814.18 84.998,2814.13 C 85.019,2814.08 85.026,2814.03 85.026,2813.98 C 85.026,2813.92 85.015,2813.86 84.993,2813.8 C 84.974,2813.76 84.94,2813.7 84.904,2813.66 C 84.861,2813.62 84.819,2813.58 84.766,2813.55 C 84.714,2813.52 84.662,2813.5 84.604,2813.5 L 84.183,2813.45 C 84.124,2813.45 84.068,2813.45 84.017,2813.47 Z M 85.223,2813.56 L 85.217,2814.95 L 86.065,2815.04 C 86.117,2815.05 86.161,2815.04 86.205,2815.03 C 86.249,2815.01 86.287,2814.99 86.325,2814.96 L 86.325,2814.96 C 86.356,2814.92 86.383,2814.88 86.403,2814.84 C 86.417,2814.8 86.427,2814.75 86.427,2814.7 C 86.427,2814.65 86.421,2814.6 86.403,2814.55 C 86.385,2814.51 86.362,2814.47 86.33,2814.43 C 86.296,2814.39 86.262,2814.36 86.217,2814.34 C 86.187,2814.32 86.151,2814.3 86.115,2814.3 C 86.111,2814.3 86.106,2814.3 86.104,2814.3 L 86.104,2814.29 L 85.461,2814.23 L 85.461,2813.59 L 85.223,2813.56 Z M 86.623,2813.71 L 86.621,2815.1 L 86.855,2815.12 L 86.86,2813.73 L 86.623,2813.71 Z M 87.053,2813.75 L 87.052,2815.14 L 87.898,2815.22 C 87.949,2815.23 87.996,2815.22 88.041,2815.21 C 88.083,2815.2 88.117,2815.17 88.153,2815.14 C 88.187,2815.11 88.211,2815.07 88.23,2815.03 C 88.249,2814.99 88.258,2814.94 88.26,2814.89 C 88.258,2814.84 88.249,2814.79 88.232,2814.74 C 88.213,2814.7 88.19,2814.65 88.16,2814.62 C 88.128,2814.58 88.09,2814.55 88.047,2814.52 C 88.015,2814.51 87.981,2814.49 87.947,2814.48 L 88.138,2814.11 L 88.26,2813.87 L 87.994,2813.85 L 87.869,2814.08 L 87.74,2814.33 L 87.734,2814.34 C 87.713,2814.37 87.685,2814.4 87.648,2814.41 C 87.615,2814.43 87.575,2814.44 87.534,2814.44 L 87.294,2814.41 L 87.294,2813.77 L 87.053,2813.75 Z M 88.377,2813.89 L 88.5,2814.15 L 89.062,2815.35 L 89.624,2814.27 L 89.751,2814.03 L 89.481,2814 L 89.358,2814.24 L 89.062,2814.8 L 88.768,2814.18 L 88.645,2813.92 L 88.377,2813.89 Z M 81.056,2814.01 L 81.666,2814.08 C 81.676,2814.08 81.684,2814.08 81.69,2814.08 C 81.7,2814.08 81.708,2814.09 81.715,2814.09 C 81.736,2814.11 81.755,2814.12 81.771,2814.15 C 81.782,2814.17 81.791,2814.19 81.791,2814.22 C 81.791,2814.24 81.786,2814.26 81.776,2814.27 C 81.77,2814.29 81.757,2814.3 81.75,2814.3 C 81.742,2814.31 81.731,2814.32 81.721,2814.32 C 81.71,2814.33 81.701,2814.33 81.693,2814.33 L 81.663,2814.33 L 81.056,2814.27 L 81.056,2814.01 Z M 90.413,2814.1 L 90.413,2815.24 L 89.862,2815.19 L 89.86,2815.43 L 91.202,2815.57 L 91.202,2815.33 L 90.651,2815.26 L 90.654,2814.12 L 90.413,2814.1 Z M 91.76,2814.3 C 91.679,2814.32 91.611,2814.37 91.548,2814.42 C 91.488,2814.48 91.439,2814.55 91.401,2814.63 C 91.368,2814.71 91.349,2814.79 91.349,2814.89 C 91.349,2814.99 91.366,2815.08 91.401,2815.17 C 91.436,2815.25 91.486,2815.34 91.548,2815.4 C 91.609,2815.47 91.677,2815.53 91.758,2815.58 C 91.843,2815.62 91.931,2815.65 92.02,2815.66 C 92.118,2815.66 92.2,2815.66 92.281,2815.63 C 92.362,2815.6 92.437,2815.56 92.499,2815.5 C 92.558,2815.44 92.605,2815.38 92.639,2815.3 C 92.675,2815.21 92.692,2815.13 92.694,2815.03 C 92.692,2814.93 92.675,2814.84 92.641,2814.75 C 92.605,2814.67 92.558,2814.59 92.499,2814.52 C 92.441,2814.45 92.364,2814.39 92.283,2814.35 C 92.203,2814.31 92.12,2814.28 92.023,2814.27 L 91.888,2814.27 C 91.845,2814.27 91.805,2814.28 91.76,2814.3 Z M 92.839,2814.35 L 92.837,2815.74 L 93.684,2815.83 C 93.732,2815.83 93.78,2815.82 93.824,2815.81 C 93.869,2815.79 93.907,2815.77 93.941,2815.74 C 93.975,2815.71 93.999,2815.67 94.016,2815.63 C 94.034,2815.59 94.043,2815.54 94.043,2815.49 C 94.043,2815.44 94.034,2815.39 94.02,2815.34 C 94.001,2815.3 93.979,2815.26 93.943,2815.22 C 93.913,2815.18 93.876,2815.15 93.837,2815.12 C 93.799,2815.11 93.767,2815.09 93.729,2815.09 L 93.926,2814.71 L 94.045,2814.47 L 93.777,2814.45 L 93.659,2814.68 L 93.524,2814.93 L 93.52,2814.94 C 93.499,2814.97 93.473,2815 93.434,2815.02 C 93.399,2815.03 93.36,2815.04 93.316,2815.03 L 93.077,2815.01 L 93.077,2814.37 L 92.839,2814.35 Z M 85.46,2814.47 L 86.068,2814.53 C 86.076,2814.54 86.087,2814.54 86.096,2814.54 C 86.102,2814.55 86.111,2814.55 86.119,2814.55 L 86.119,2814.55 C 86.138,2814.57 86.157,2814.59 86.171,2814.61 C 86.185,2814.63 86.189,2814.65 86.192,2814.68 C 86.189,2814.7 86.187,2814.72 86.179,2814.73 C 86.168,2814.75 86.161,2814.76 86.153,2814.76 C 86.145,2814.77 86.136,2814.78 86.122,2814.78 C 86.106,2814.79 86.091,2814.79 86.068,2814.79 L 85.46,2814.73 L 85.46,2814.47 Z M 92.023,2814.51 C 92.083,2814.52 92.138,2814.54 92.19,2814.57 C 92.241,2814.6 92.288,2814.64 92.326,2814.68 C 92.367,2814.72 92.398,2814.78 92.419,2814.83 C 92.448,2814.89 92.454,2814.95 92.454,2815.01 C 92.454,2815.07 92.445,2815.12 92.419,2815.18 C 92.398,2815.23 92.364,2815.28 92.324,2815.31 C 92.286,2815.35 92.241,2815.38 92.19,2815.39 C 92.138,2815.41 92.082,2815.41 92.02,2815.41 C 91.96,2815.4 91.905,2815.38 91.854,2815.36 C 91.805,2815.33 91.756,2815.29 91.715,2815.25 C 91.675,2815.2 91.645,2815.15 91.624,2815.1 C 91.6,2815.04 91.592,2814.98 91.59,2814.92 C 91.592,2814.85 91.6,2814.8 91.624,2814.75 C 91.645,2814.7 91.675,2814.65 91.715,2814.62 C 91.756,2814.58 91.805,2814.55 91.856,2814.53 C 91.907,2814.51 91.96,2814.51 92.023,2814.51 Z M 87.294,2814.66 L 87.898,2814.72 C 87.908,2814.72 87.915,2814.73 87.924,2814.73 C 87.932,2814.73 87.94,2814.74 87.949,2814.74 C 87.972,2814.75 87.989,2814.77 88,2814.79 C 88.015,2814.82 88.021,2814.84 88.021,2814.86 C 88.021,2814.89 88.015,2814.91 88.009,2814.92 C 88,2814.93 87.994,2814.94 87.986,2814.95 C 87.976,2814.96 87.966,2814.97 87.951,2814.97 C 87.939,2814.98 87.917,2814.98 87.898,2814.98 L 87.294,2814.92 L 87.294,2814.66 Z M 93.077,2815.26 L 93.684,2815.33 C 93.694,2815.33 93.703,2815.33 93.712,2815.33 C 93.72,2815.34 93.726,2815.34 93.732,2815.34 C 93.756,2815.35 93.773,2815.37 93.788,2815.39 C 93.799,2815.41 93.805,2815.43 93.805,2815.46 C 93.802,2815.48 93.799,2815.5 93.795,2815.52 C 93.788,2815.53 93.777,2815.54 93.769,2815.55 C 93.762,2815.56 93.75,2815.56 93.736,2815.57 C 93.725,2815.58 93.707,2815.58 93.684,2815.58 L 93.077,2815.52 L 93.077,2815.26 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 49.172,2858.06 L 48.568,2858.62 L 109.262,2862.58 L 109.573,2862.45 C 109.675,2862.41 109.777,2862.32 109.777,2862.16 L 109.777,2862.01 L 49.172,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 48.568,2858.62 L 48.566,2776.86 L 48.872,2776.57 L 49.172,2776.61 L 49.172,2858.06 L 48.568,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_9' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(67.142 2789.88) rotate(90) skewX(-7.19316)' fill='%2339332f'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(73.607 2790.7) rotate(90) skewX(-7.19721)' fill='%23b6b6b3'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(80.072 2791.51) rotate(90) skewX(-7.19518)' fill='%23dcd5c6'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(86.538 2792.33) rotate(90) skewX(-7.19316)' fill='%23ccb7b3'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(93.003 2793.14) rotate(90) skewX(-7.19518)' fill='%23d8b590'/%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.334' fill='%23000000'%3E%3Cg id='Group_11'%3E%3Cpath d='M 69.685,2795.62 C 69.641,2795.63 69.6,2795.65 69.566,2795.69 C 69.533,2795.72 69.507,2795.75 69.487,2795.8 C 69.468,2795.84 69.458,2795.89 69.458,2795.94 L 69.458,2796.59 C 69.458,2796.64 69.468,2796.69 69.487,2796.74 C 69.507,2796.79 69.533,2796.83 69.566,2796.87 C 69.6,2796.91 69.641,2796.94 69.685,2796.97 C 69.73,2796.99 69.779,2797.01 69.83,2797.01 L 70.845,2797.14 L 70.845,2796.88 L 69.83,2796.76 C 69.807,2796.76 69.786,2796.75 69.766,2796.74 C 69.747,2796.72 69.732,2796.7 69.721,2796.68 C 69.711,2796.66 69.705,2796.64 69.705,2796.62 L 69.705,2796.49 L 70.597,2796.59 L 70.597,2796.34 L 69.705,2796.24 L 69.705,2795.97 C 69.705,2795.95 69.711,2795.93 69.721,2795.91 C 69.732,2795.89 69.747,2795.88 69.766,2795.87 C 69.786,2795.86 69.807,2795.85 69.83,2795.86 L 70.845,2795.98 L 70.845,2795.73 L 69.83,2795.61 C 69.779,2795.6 69.73,2795.6 69.685,2795.62 Z M 71.289,2795.83 C 71.245,2795.84 71.207,2795.87 71.171,2795.9 C 71.137,2795.93 71.109,2795.97 71.088,2796.01 C 71.072,2796.03 71.062,2796.06 71.054,2796.1 C 71.047,2796.13 71.043,2796.16 71.043,2796.2 L 71.043,2797.16 L 71.289,2797.19 L 71.289,2796.2 C 71.294,2796.18 71.304,2796.15 71.32,2796.13 C 71.337,2796.1 71.356,2796.09 71.379,2796.07 C 71.403,2796.06 71.43,2796.05 71.46,2796.05 L 72.188,2796.14 L 72.188,2795.89 L 71.484,2795.8 L 71.382,2795.8 C 71.349,2795.8 71.32,2795.81 71.289,2795.83 Z M 72.613,2795.97 C 72.569,2795.98 72.531,2796.01 72.496,2796.03 C 72.462,2796.06 72.435,2796.1 72.415,2796.15 C 72.396,2796.19 72.387,2796.24 72.386,2796.29 L 72.386,2796.94 C 72.387,2796.99 72.396,2797.04 72.415,2797.09 C 72.435,2797.14 72.462,2797.18 72.496,2797.22 C 72.531,2797.26 72.569,2797.29 72.613,2797.32 C 72.66,2797.34 72.707,2797.36 72.76,2797.36 L 73.773,2797.48 L 73.773,2797.23 L 72.76,2797.11 C 72.737,2797.11 72.715,2797.1 72.696,2797.09 C 72.677,2797.07 72.662,2797.06 72.649,2797.04 C 72.639,2797.01 72.633,2796.99 72.633,2796.97 L 72.633,2796.84 L 73.526,2796.94 L 73.526,2796.69 L 72.633,2796.59 L 72.633,2796.32 C 72.633,2796.3 72.639,2796.28 72.649,2796.26 C 72.662,2796.24 72.677,2796.23 72.696,2796.22 C 72.715,2796.21 72.737,2796.2 72.76,2796.21 L 73.773,2796.33 L 73.773,2796.08 L 72.76,2795.95 L 72.683,2795.95 C 72.66,2795.96 72.636,2795.96 72.613,2795.97 Z M 73.971,2796.1 L 73.971,2797.51 L 74.219,2797.34 L 74.667,2797.05 L 75.114,2797.45 L 75.361,2797.67 L 75.361,2796.26 L 75.114,2796.24 L 75.114,2797.13 L 74.869,2796.92 L 74.667,2796.73 L 74.464,2796.87 L 74.219,2797.03 L 74.219,2796.13 L 73.971,2796.1 Z M 75.788,2796.35 C 75.744,2796.36 75.703,2796.38 75.669,2796.41 C 75.635,2796.45 75.609,2796.48 75.59,2796.52 C 75.572,2796.57 75.561,2796.62 75.561,2796.67 L 75.561,2797.32 C 75.561,2797.37 75.572,2797.42 75.59,2797.47 C 75.609,2797.52 75.635,2797.56 75.669,2797.6 C 75.703,2797.64 75.744,2797.67 75.788,2797.7 C 75.833,2797.72 75.882,2797.74 75.933,2797.74 L 76.947,2797.86 L 76.947,2797.61 L 75.933,2797.49 C 75.909,2797.49 75.888,2797.48 75.869,2797.47 C 75.849,2797.45 75.834,2797.43 75.824,2797.41 C 75.814,2797.39 75.807,2797.37 75.807,2797.35 L 75.807,2797.22 L 76.699,2797.32 L 76.699,2797.07 L 75.807,2796.97 L 75.807,2796.7 C 75.807,2796.68 75.814,2796.65 75.824,2796.64 C 75.834,2796.62 75.849,2796.61 75.869,2796.59 C 75.888,2796.59 75.909,2796.58 75.933,2796.59 L 76.947,2796.71 L 76.947,2796.45 L 75.933,2796.33 L 75.856,2796.33 C 75.833,2796.34 75.809,2796.34 75.788,2796.35 Z M 77.145,2796.48 L 77.145,2797.88 L 77.392,2797.72 L 78.286,2797.13 L 78.286,2798.03 L 78.535,2798.05 L 78.535,2796.64 L 78.286,2796.81 L 77.392,2797.4 L 77.392,2796.51 L 77.145,2796.48 Z M 79.301,2796.74 L 79.301,2797.89 L 78.733,2797.82 L 78.733,2798.08 L 80.121,2798.24 L 80.121,2797.99 L 79.55,2797.92 L 79.55,2796.76 L 79.301,2796.74 Z M 80.588,2796.92 C 80.536,2796.94 80.49,2796.97 80.451,2797 C 80.41,2797.04 80.378,2797.08 80.356,2797.13 C 80.333,2797.18 80.323,2797.24 80.321,2797.3 L 80.57,2797.33 C 80.57,2797.3 80.577,2797.26 80.596,2797.24 C 80.612,2797.21 80.636,2797.19 80.663,2797.18 C 80.693,2797.16 80.725,2797.16 80.759,2797.16 L 81.196,2797.21 C 81.229,2797.22 81.263,2797.23 81.291,2797.25 C 81.321,2797.27 81.343,2797.3 81.361,2797.33 C 81.379,2797.36 81.387,2797.39 81.387,2797.43 C 81.387,2797.47 81.379,2797.5 81.361,2797.52 C 81.343,2797.55 81.321,2797.57 81.291,2797.58 C 81.263,2797.6 81.229,2797.6 81.196,2797.6 L 80.695,2797.54 C 80.644,2797.53 80.596,2797.54 80.553,2797.55 C 80.507,2797.57 80.467,2797.59 80.435,2797.62 C 80.415,2797.63 80.401,2797.65 80.386,2797.67 C 80.365,2797.7 80.35,2797.73 80.338,2797.76 C 80.327,2797.8 80.321,2797.84 80.321,2797.88 L 80.321,2797.89 C 80.323,2797.94 80.331,2797.99 80.35,2798.04 C 80.37,2798.09 80.397,2798.13 80.431,2798.17 C 80.466,2798.21 80.504,2798.24 80.548,2798.26 C 80.592,2798.29 80.642,2798.31 80.695,2798.31 L 81.259,2798.38 C 81.31,2798.38 81.359,2798.38 81.403,2798.37 C 81.449,2798.35 81.489,2798.33 81.523,2798.3 C 81.557,2798.27 81.585,2798.23 81.603,2798.19 C 81.623,2798.14 81.634,2798.1 81.634,2798.04 L 81.634,2798.03 L 81.384,2798 L 81.384,2798.01 C 81.384,2798.03 81.379,2798.06 81.368,2798.07 C 81.357,2798.09 81.34,2798.11 81.322,2798.11 C 81.304,2798.12 81.282,2798.13 81.259,2798.12 L 80.695,2798.06 C 80.672,2798.05 80.651,2798.05 80.631,2798.03 C 80.612,2798.02 80.597,2798 80.585,2797.98 C 80.574,2797.96 80.567,2797.94 80.567,2797.91 L 80.567,2797.91 C 80.567,2797.88 80.574,2797.86 80.585,2797.84 C 80.597,2797.82 80.612,2797.81 80.631,2797.8 C 80.651,2797.79 80.672,2797.79 80.695,2797.79 L 81.196,2797.85 L 81.287,2797.85 C 81.316,2797.85 81.347,2797.84 81.374,2797.83 C 81.429,2797.81 81.478,2797.79 81.519,2797.75 C 81.52,2797.74 81.523,2797.74 81.525,2797.74 C 81.529,2797.74 81.531,2797.73 81.533,2797.73 C 81.565,2797.7 81.589,2797.65 81.606,2797.61 C 81.625,2797.56 81.634,2797.51 81.634,2797.46 C 81.634,2797.4 81.62,2797.34 81.599,2797.28 C 81.575,2797.23 81.544,2797.18 81.504,2797.13 C 81.465,2797.08 81.418,2797.05 81.366,2797.02 C 81.312,2796.99 81.255,2796.97 81.196,2796.96 L 80.759,2796.91 C 80.699,2796.9 80.642,2796.91 80.588,2796.92 Z M 83.067,2797.22 C 83.014,2797.24 82.968,2797.26 82.93,2797.3 C 82.889,2797.34 82.857,2797.38 82.834,2797.43 C 82.813,2797.48 82.8,2797.54 82.8,2797.6 L 83.049,2797.63 C 83.049,2797.59 83.056,2797.56 83.074,2797.53 C 83.092,2797.51 83.115,2797.49 83.142,2797.47 C 83.172,2797.46 83.203,2797.45 83.238,2797.46 L 83.675,2797.51 C 83.708,2797.51 83.741,2797.53 83.77,2797.55 C 83.8,2797.57 83.821,2797.6 83.84,2797.63 C 83.857,2797.66 83.866,2797.69 83.866,2797.73 C 83.866,2797.76 83.857,2797.79 83.84,2797.82 C 83.821,2797.85 83.8,2797.87 83.77,2797.88 C 83.741,2797.9 83.708,2797.9 83.675,2797.9 L 83.174,2797.84 C 83.123,2797.83 83.074,2797.84 83.032,2797.85 C 82.986,2797.86 82.946,2797.88 82.912,2797.91 C 82.895,2797.93 82.881,2797.95 82.865,2797.97 C 82.844,2797.99 82.829,2798.03 82.817,2798.06 C 82.806,2798.1 82.8,2798.13 82.8,2798.17 L 82.8,2798.18 C 82.8,2798.24 82.81,2798.29 82.829,2798.33 C 82.849,2798.38 82.876,2798.43 82.91,2798.46 C 82.944,2798.5 82.983,2798.53 83.027,2798.56 C 83.072,2798.58 83.121,2798.6 83.174,2798.61 L 83.736,2798.67 C 83.789,2798.68 83.838,2798.68 83.882,2798.66 C 83.927,2798.65 83.968,2798.63 84.002,2798.59 C 84.036,2798.56 84.064,2798.53 84.083,2798.48 C 84.102,2798.44 84.113,2798.39 84.113,2798.34 L 84.113,2798.33 L 83.864,2798.3 L 83.864,2798.31 C 83.864,2798.33 83.857,2798.35 83.846,2798.37 C 83.836,2798.39 83.818,2798.4 83.8,2798.41 C 83.78,2798.42 83.759,2798.42 83.736,2798.42 L 83.174,2798.36 C 83.151,2798.35 83.13,2798.34 83.11,2798.33 C 83.092,2798.31 83.074,2798.3 83.063,2798.28 C 83.053,2798.26 83.046,2798.23 83.046,2798.21 L 83.046,2798.2 C 83.046,2798.18 83.053,2798.16 83.063,2798.14 C 83.074,2798.12 83.092,2798.11 83.11,2798.1 C 83.13,2798.09 83.151,2798.09 83.174,2798.09 L 83.675,2798.15 L 83.765,2798.15 C 83.796,2798.14 83.826,2798.14 83.853,2798.13 C 83.908,2798.11 83.957,2798.08 83.997,2798.04 C 84,2798.04 84.002,2798.03 84.004,2798.03 C 84.006,2798.03 84.01,2798.03 84.012,2798.03 C 84.044,2797.99 84.068,2797.95 84.085,2797.9 C 84.102,2797.86 84.113,2797.81 84.113,2797.75 C 84.11,2797.69 84.099,2797.64 84.076,2797.58 C 84.055,2797.52 84.023,2797.47 83.983,2797.43 C 83.942,2797.38 83.898,2797.34 83.844,2797.31 C 83.791,2797.28 83.734,2797.26 83.675,2797.26 L 83.238,2797.2 C 83.178,2797.2 83.121,2797.2 83.067,2797.22 Z M 84.54,2797.39 C 84.496,2797.41 84.457,2797.43 84.423,2797.46 C 84.389,2797.49 84.362,2797.53 84.342,2797.57 C 84.323,2797.61 84.312,2797.66 84.312,2797.72 L 84.312,2798.36 C 84.312,2798.42 84.323,2798.47 84.342,2798.51 C 84.362,2798.56 84.389,2798.61 84.423,2798.64 C 84.457,2798.68 84.496,2798.72 84.54,2798.74 C 84.584,2798.76 84.634,2798.78 84.687,2798.79 L 85.7,2798.91 L 85.7,2798.66 L 84.687,2798.54 C 84.664,2798.53 84.643,2798.52 84.623,2798.51 C 84.604,2798.5 84.588,2798.48 84.577,2798.46 C 84.566,2798.44 84.559,2798.42 84.559,2798.39 L 84.559,2798.26 L 85.453,2798.37 L 85.453,2798.12 L 84.559,2798.01 L 84.559,2797.74 C 84.559,2797.72 84.566,2797.7 84.577,2797.68 C 84.588,2797.66 84.604,2797.65 84.623,2797.64 C 84.643,2797.63 84.664,2797.63 84.687,2797.63 L 85.7,2797.75 L 85.7,2797.5 L 84.687,2797.38 C 84.634,2797.37 84.584,2797.38 84.54,2797.39 Z M 85.895,2797.52 L 85.895,2798.93 L 86.772,2799.03 C 86.826,2799.04 86.875,2799.04 86.919,2799.02 C 86.963,2799.01 87.003,2798.98 87.037,2798.95 C 87.07,2798.92 87.098,2798.89 87.117,2798.84 C 87.136,2798.8 87.147,2798.75 87.147,2798.7 C 87.147,2798.65 87.136,2798.6 87.119,2798.55 C 87.1,2798.51 87.074,2798.46 87.043,2798.42 C 87.009,2798.38 86.971,2798.35 86.928,2798.33 C 86.894,2798.31 86.86,2798.29 86.821,2798.28 L 87.019,2797.91 L 87.147,2797.67 L 86.868,2797.64 L 86.74,2797.87 L 86.609,2798.12 L 86.602,2798.13 C 86.581,2798.17 86.551,2798.19 86.514,2798.21 C 86.479,2798.23 86.438,2798.23 86.392,2798.23 L 86.145,2798.2 L 86.145,2797.55 L 85.895,2797.52 Z M 87.345,2797.7 L 87.345,2799.11 L 87.593,2799.14 L 87.593,2797.73 L 87.345,2797.7 Z M 88.021,2797.81 C 87.976,2797.82 87.937,2797.84 87.902,2797.88 C 87.869,2797.91 87.843,2797.94 87.824,2797.99 C 87.804,2798.03 87.794,2798.08 87.794,2798.13 L 87.794,2798.78 C 87.794,2798.83 87.804,2798.88 87.824,2798.93 C 87.843,2798.98 87.869,2799.02 87.902,2799.06 C 87.937,2799.1 87.976,2799.13 88.021,2799.16 C 88.067,2799.18 88.116,2799.2 88.166,2799.2 L 89.181,2799.33 L 89.181,2799.07 L 88.166,2798.95 C 88.143,2798.95 88.122,2798.94 88.102,2798.93 C 88.083,2798.91 88.068,2798.9 88.057,2798.88 C 88.045,2798.85 88.041,2798.83 88.038,2798.81 L 88.038,2798.68 L 88.932,2798.78 L 88.932,2798.53 L 88.038,2798.43 L 88.038,2798.16 C 88.041,2798.14 88.045,2798.12 88.057,2798.1 C 88.068,2798.08 88.083,2798.06 88.102,2798.06 C 88.122,2798.05 88.143,2798.04 88.166,2798.05 L 89.181,2798.17 L 89.181,2797.92 L 88.166,2797.8 C 88.116,2797.79 88.067,2797.79 88.021,2797.81 Z M 89.647,2798.01 C 89.596,2798.02 89.549,2798.05 89.509,2798.09 C 89.468,2798.12 89.436,2798.17 89.415,2798.22 C 89.392,2798.27 89.381,2798.32 89.381,2798.38 L 89.628,2798.41 C 89.628,2798.38 89.637,2798.35 89.653,2798.32 C 89.671,2798.29 89.694,2798.27 89.723,2798.26 C 89.751,2798.25 89.783,2798.24 89.819,2798.24 L 90.253,2798.3 C 90.289,2798.3 90.322,2798.31 90.349,2798.33 C 90.379,2798.36 90.403,2798.38 90.419,2798.41 C 90.436,2798.44 90.445,2798.48 90.445,2798.51 C 90.445,2798.55 90.436,2798.58 90.419,2798.61 C 90.403,2798.63 90.379,2798.65 90.349,2798.67 C 90.322,2798.68 90.289,2798.69 90.253,2798.68 L 89.754,2798.62 C 89.702,2798.62 89.655,2798.62 89.611,2798.63 C 89.566,2798.65 89.528,2798.67 89.494,2798.7 C 89.475,2798.72 89.46,2798.73 89.445,2798.75 C 89.426,2798.78 89.409,2798.81 89.398,2798.85 C 89.386,2798.88 89.381,2798.92 89.381,2798.96 L 89.381,2798.97 C 89.381,2799.02 89.39,2799.07 89.409,2799.12 C 89.428,2799.17 89.456,2799.21 89.49,2799.25 C 89.523,2799.29 89.562,2799.32 89.609,2799.35 C 89.653,2799.37 89.702,2799.39 89.754,2799.39 L 90.317,2799.46 C 90.369,2799.47 90.418,2799.46 90.462,2799.45 C 90.506,2799.43 90.547,2799.41 90.581,2799.38 C 90.615,2799.35 90.643,2799.31 90.662,2799.27 C 90.682,2799.22 90.692,2799.18 90.692,2799.13 L 90.692,2799.12 L 90.444,2799.08 L 90.444,2799.09 C 90.444,2799.12 90.439,2799.14 90.425,2799.16 C 90.415,2799.17 90.401,2799.19 90.381,2799.2 C 90.363,2799.2 90.341,2799.21 90.317,2799.21 L 89.754,2799.14 C 89.73,2799.14 89.709,2799.13 89.689,2799.11 C 89.671,2799.1 89.655,2799.08 89.642,2799.06 C 89.632,2799.04 89.626,2799.02 89.626,2798.99 L 89.626,2798.99 C 89.626,2798.96 89.632,2798.94 89.642,2798.92 C 89.655,2798.91 89.671,2798.89 89.689,2798.89 C 89.709,2798.87 89.73,2798.87 89.754,2798.87 L 90.253,2798.93 C 90.317,2798.94 90.379,2798.93 90.435,2798.92 C 90.49,2798.9 90.537,2798.87 90.576,2798.83 C 90.58,2798.83 90.583,2798.82 90.586,2798.82 C 90.587,2798.82 90.59,2798.81 90.592,2798.81 C 90.624,2798.78 90.647,2798.74 90.667,2798.69 C 90.683,2798.64 90.692,2798.59 90.692,2798.54 C 90.692,2798.48 90.679,2798.42 90.657,2798.36 C 90.635,2798.31 90.602,2798.26 90.565,2798.21 C 90.524,2798.17 90.477,2798.13 90.424,2798.1 C 90.37,2798.07 90.315,2798.05 90.253,2798.04 L 89.819,2797.99 C 89.758,2797.99 89.7,2797.99 89.647,2798.01 Z M 86.145,2798.45 L 86.772,2798.52 C 86.783,2798.52 86.792,2798.53 86.8,2798.53 C 86.809,2798.53 86.816,2798.54 86.826,2798.54 C 86.849,2798.56 86.866,2798.57 86.879,2798.6 C 86.894,2798.62 86.901,2798.64 86.901,2798.67 C 86.901,2798.69 86.896,2798.71 86.887,2798.72 C 86.879,2798.74 86.87,2798.75 86.862,2798.76 C 86.855,2798.76 86.842,2798.77 86.827,2798.78 C 86.82,2798.78 86.811,2798.78 86.802,2798.78 L 86.772,2798.78 L 86.145,2798.71 L 86.145,2798.45 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--CHARACTER, .KN95_NR_individuals--CHARACTER {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='139.942 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.889' y2='69.196' gradientTransform='translate(184.018 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.715' y2='69.451' gradientTransform='translate(171.681 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.4' y2='7.324' gradientTransform='translate(183.997 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.416' y2='-0.8' gradientTransform='translate(167.702 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.037' y2='-0.57' gradientTransform='translate(213.001 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.57' y2='0' gradientTransform='translate(174.147 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(198.27 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 173.861,2776.57 L 173.861,2858.45 L 234.691,2862.36 C 234.733,2862.31 234.766,2862.24 234.766,2862.15 L 234.766,2784.82 L 173.861,2776.57 Z' stroke-width='8.03' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 173.861,2776.57 L 161.785,2788.29 L 161.78,2865.07 L 173.861,2858.45 L 173.861,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 173.861,2858.45 L 161.78,2865.07 L 220.813,2868.31 L 234.562,2862.45 C 234.608,2862.43 234.654,2862.4 234.691,2862.36 L 173.861,2858.45 Z' stroke-width='1.027' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 173.558,2857.52 L 161.775,2864.11 L 161.773,2865.07 L 173.558,2858.62 L 173.558,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 190.732,2819.56 L 190.723,2826.71 L 191.904,2826.83 L 191.91,2823.18 L 192.884,2824.24 L 193.761,2825.19 L 195.601,2827.21 L 197.353,2827.39 L 194.464,2824.22 L 197.336,2820.23 L 195.879,2820.09 L 193.587,2823.26 L 191.913,2821.45 L 191.913,2819.68 L 190.732,2819.56 Z M 197.939,2820.29 L 198.544,2821.63 L 201.307,2827.79 L 204.088,2822.2 L 204.69,2820.98 L 203.371,2820.85 L 202.763,2822.06 L 201.312,2824.98 L 199.865,2821.77 L 199.261,2820.43 L 197.939,2820.29 Z M 205.289,2821.04 L 205.299,2821.04 L 206.206,2822.41 L 207.827,2824.86 L 208.578,2825.98 L 209.48,2827.35 L 205.273,2826.92 L 205.271,2828.19 L 210.389,2828.71 L 211.87,2828.86 L 210.957,2827.49 L 209.315,2825.01 L 208.571,2823.89 L 207.677,2822.56 L 211.907,2822.99 L 211.91,2821.71 L 206.79,2821.19 L 206.781,2821.19 L 205.289,2821.04 Z M 213.921,2822.07 C 213.708,2822.15 213.514,2822.27 213.358,2822.43 C 213.192,2822.59 213.063,2822.78 212.976,2823 C 212.883,2823.23 212.838,2823.47 212.836,2823.74 L 212.829,2827.03 C 212.829,2827.3 212.874,2827.55 212.968,2827.79 C 213.057,2828.04 213.183,2828.25 213.351,2828.45 C 213.508,2828.64 213.7,2828.8 213.912,2828.92 C 214.128,2829.04 214.359,2829.12 214.606,2829.14 L 219.438,2829.63 L 219.438,2828.36 L 214.606,2827.86 C 214.493,2827.85 214.393,2827.81 214.301,2827.74 C 214.21,2827.68 214.142,2827.59 214.087,2827.49 C 214.032,2827.38 214.006,2827.27 214.006,2827.15 L 214.006,2826.49 L 218.26,2826.92 L 218.262,2825.64 L 214.006,2825.21 L 214.006,2823.86 C 214.006,2823.74 214.036,2823.63 214.091,2823.54 C 214.149,2823.45 214.216,2823.37 214.306,2823.33 C 214.4,2823.27 214.497,2823.26 214.613,2823.26 L 219.445,2823.76 L 219.447,2822.48 L 214.613,2821.99 C 214.37,2821.97 214.138,2821.99 213.921,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 197.717,2815.76 L 197.717,2817.28 C 197.717,2817.36 197.73,2817.43 197.757,2817.51 C 197.785,2817.58 197.825,2817.64 197.877,2817.7 C 197.928,2817.76 197.987,2817.8 198.053,2817.84 C 198.121,2817.87 198.194,2817.9 198.273,2817.9 L 199.781,2818.07 L 199.781,2817.69 L 198.273,2817.53 C 198.238,2817.53 198.207,2817.51 198.177,2817.49 C 198.149,2817.47 198.127,2817.45 198.109,2817.42 C 198.091,2817.39 198.086,2817.36 198.086,2817.32 L 198.086,2817.13 L 199.413,2817.26 L 199.413,2816.89 L 198.083,2816.75 L 198.086,2815.8 L 197.717,2815.76 Z M 200.082,2816.01 L 200.079,2817.53 C 200.079,2817.61 200.092,2817.68 200.122,2817.76 C 200.147,2817.83 200.187,2817.89 200.237,2817.95 C 200.29,2818 200.349,2818.05 200.416,2818.09 C 200.481,2818.12 200.551,2818.14 200.635,2818.16 L 202.141,2818.31 L 202.143,2817.94 L 200.637,2817.78 C 200.6,2817.78 200.566,2817.76 200.541,2817.75 C 200.511,2817.72 200.49,2817.7 200.47,2817.67 C 200.453,2817.64 200.447,2817.61 200.447,2817.57 L 200.447,2817.38 L 201.775,2817.52 L 201.775,2817.15 L 200.444,2817 L 200.447,2816.04 L 200.082,2816.01 Z M 202.443,2816.26 L 202.439,2818.35 L 203.741,2818.49 C 203.816,2818.49 203.89,2818.49 203.954,2818.46 C 204.022,2818.44 204.082,2818.41 204.133,2818.36 L 204.134,2818.36 C 204.186,2818.31 204.225,2818.26 204.256,2818.19 C 204.281,2818.12 204.299,2818.05 204.299,2817.98 C 204.299,2817.9 204.281,2817.83 204.259,2817.76 C 204.229,2817.69 204.19,2817.62 204.143,2817.57 C 204.094,2817.51 204.039,2817.47 203.975,2817.43 C 203.924,2817.4 203.872,2817.38 203.813,2817.37 C 203.809,2817.37 203.803,2817.37 203.798,2817.37 L 203.798,2817.36 L 202.809,2817.26 L 202.811,2816.3 L 202.443,2816.26 Z M 204.59,2816.47 L 204.59,2817.1 C 204.59,2817.14 204.593,2817.18 204.601,2817.22 C 204.609,2817.26 204.624,2817.3 204.637,2817.34 C 204.669,2817.42 204.712,2817.48 204.764,2817.54 C 204.818,2817.61 204.877,2817.66 204.95,2817.7 C 205.017,2817.73 205.094,2817.76 205.177,2817.77 L 206.06,2817.87 L 206.071,2817.87 C 206.111,2817.88 206.15,2817.89 206.181,2817.92 C 206.214,2817.94 206.239,2817.98 206.258,2818.02 C 206.277,2818.05 206.286,2818.09 206.286,2818.13 C 206.286,2818.18 206.276,2818.22 206.254,2818.26 C 206.233,2818.29 206.207,2818.31 206.169,2818.33 C 206.133,2818.35 206.092,2818.36 206.048,2818.36 L 204.593,2818.2 L 204.593,2818.57 L 206.046,2818.73 C 206.133,2818.74 206.214,2818.73 206.284,2818.7 C 206.356,2818.68 206.42,2818.64 206.48,2818.59 C 206.534,2818.54 206.58,2818.48 206.608,2818.41 C 206.639,2818.34 206.654,2818.26 206.656,2818.17 C 206.656,2818.13 206.652,2818.09 206.643,2818.05 C 206.634,2818.01 206.622,2817.97 206.605,2817.93 C 206.593,2817.89 206.575,2817.86 206.554,2817.82 C 206.534,2817.79 206.51,2817.76 206.484,2817.73 C 206.433,2817.67 206.367,2817.61 206.297,2817.57 C 206.225,2817.53 206.151,2817.51 206.067,2817.49 L 206.059,2817.49 C 206.056,2817.49 206.052,2817.49 206.048,2817.49 L 205.177,2817.4 C 205.137,2817.39 205.101,2817.38 205.067,2817.35 C 205.033,2817.33 205.007,2817.29 204.99,2817.26 C 204.969,2817.22 204.963,2817.18 204.963,2817.14 L 204.963,2816.9 L 206.648,2817.07 L 206.65,2816.7 L 205.194,2816.54 L 204.59,2816.47 Z M 208.39,2816.88 L 208.389,2818.96 L 208.756,2818.72 L 210.086,2817.82 L 210.084,2819.15 L 210.453,2819.19 L 210.457,2817.1 L 210.086,2817.35 L 208.756,2818.24 L 208.76,2816.92 L 208.39,2816.88 Z M 210.751,2817.14 L 210.748,2819.22 L 212.053,2819.36 C 212.128,2819.37 212.199,2819.37 212.266,2819.34 C 212.336,2819.32 212.393,2819.28 212.445,2819.24 C 212.493,2819.19 212.533,2819.14 212.563,2819.07 C 212.592,2819 212.606,2818.93 212.607,2818.86 C 212.607,2818.78 212.592,2818.71 212.566,2818.63 C 212.537,2818.57 212.499,2818.5 212.45,2818.45 C 212.404,2818.39 212.346,2818.35 212.285,2818.3 C 212.233,2818.28 212.179,2818.26 212.123,2818.24 L 212.42,2817.68 L 212.61,2817.33 L 212.198,2817.29 L 212.007,2817.64 L 211.808,2818.01 L 211.799,2818.03 C 211.767,2818.08 211.725,2818.12 211.668,2818.14 C 211.614,2818.17 211.553,2818.18 211.484,2818.17 L 211.119,2818.13 L 211.12,2817.17 L 210.751,2817.14 Z M 202.809,2817.62 L 203.746,2817.72 C 203.756,2817.72 203.769,2817.73 203.784,2817.73 C 203.796,2817.74 203.807,2817.74 203.82,2817.75 L 203.82,2817.75 C 203.854,2817.77 203.883,2817.8 203.901,2817.83 C 203.922,2817.86 203.931,2817.9 203.931,2817.93 C 203.931,2817.97 203.924,2818 203.912,2818.02 C 203.898,2818.04 203.887,2818.06 203.877,2818.07 C 203.863,2818.08 203.846,2818.09 203.824,2818.1 C 203.803,2818.11 203.776,2818.11 203.746,2818.11 L 202.809,2818.01 L 202.809,2817.62 Z M 211.119,2818.5 L 212.054,2818.6 C 212.065,2818.6 212.079,2818.61 212.093,2818.61 C 212.106,2818.62 212.116,2818.62 212.128,2818.63 C 212.163,2818.65 212.191,2818.68 212.208,2818.71 C 212.231,2818.74 212.242,2818.78 212.242,2818.82 C 212.238,2818.85 212.233,2818.88 212.219,2818.9 C 212.206,2818.92 212.198,2818.94 212.184,2818.95 C 212.172,2818.96 212.154,2818.97 212.133,2818.98 C 212.11,2818.99 212.084,2818.99 212.053,2818.99 L 211.116,2818.89 L 211.119,2818.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 191.14,2811.59 L 191.138,2812.97 L 191.983,2813.06 C 192.034,2813.07 192.084,2813.06 192.125,2813.05 C 192.165,2813.03 192.209,2813.01 192.239,2812.98 L 192.24,2812.98 C 192.276,2812.94 192.3,2812.91 192.319,2812.87 C 192.336,2812.82 192.349,2812.78 192.349,2812.72 C 192.349,2812.67 192.338,2812.62 192.321,2812.58 C 192.304,2812.53 192.28,2812.49 192.246,2812.45 C 192.217,2812.41 192.179,2812.38 192.137,2812.36 C 192.104,2812.34 192.07,2812.32 192.034,2812.32 C 192.029,2812.32 192.025,2812.32 192.023,2812.32 L 192.023,2812.32 L 191.38,2812.25 L 191.383,2811.61 L 191.14,2811.59 Z M 192.538,2811.73 L 192.536,2813.11 L 193.384,2813.2 C 193.439,2813.21 193.483,2813.2 193.525,2813.19 C 193.57,2813.17 193.604,2813.15 193.638,2813.12 C 193.671,2813.09 193.696,2813.05 193.721,2813.01 C 193.736,2812.97 193.745,2812.92 193.747,2812.87 C 193.745,2812.82 193.736,2812.77 193.723,2812.72 C 193.697,2812.68 193.676,2812.64 193.645,2812.6 C 193.61,2812.56 193.579,2812.53 193.536,2812.51 C 193.502,2812.49 193.468,2812.47 193.434,2812.46 L 193.623,2812.09 L 193.747,2811.85 L 193.48,2811.82 L 193.355,2812.06 L 193.227,2812.31 L 193.222,2812.32 C 193.2,2812.35 193.17,2812.38 193.136,2812.4 C 193.097,2812.41 193.061,2812.42 193.019,2812.41 L 192.776,2812.39 L 192.776,2811.75 L 192.538,2811.73 Z M 194.301,2811.97 C 194.226,2811.99 194.153,2812.04 194.093,2812.09 C 194.027,2812.15 193.978,2812.22 193.947,2812.3 C 193.913,2812.38 193.896,2812.47 193.892,2812.57 C 193.896,2812.66 193.913,2812.75 193.944,2812.84 C 193.978,2812.93 194.027,2813.01 194.091,2813.08 C 194.151,2813.15 194.223,2813.2 194.3,2813.25 C 194.383,2813.29 194.47,2813.32 194.564,2813.33 C 194.655,2813.34 194.744,2813.33 194.828,2813.3 C 194.905,2813.27 194.979,2813.24 195.038,2813.18 C 195.102,2813.12 195.152,2813.05 195.183,2812.97 C 195.217,2812.89 195.236,2812.8 195.236,2812.7 C 195.236,2812.61 195.219,2812.52 195.183,2812.43 C 195.152,2812.34 195.104,2812.27 195.04,2812.2 C 194.98,2812.12 194.906,2812.07 194.83,2812.02 C 194.744,2811.98 194.657,2811.95 194.566,2811.94 L 194.432,2811.94 C 194.385,2811.95 194.345,2811.95 194.301,2811.97 Z M 195.932,2812.08 L 195.93,2813.22 L 195.38,2813.17 L 195.38,2813.41 L 196.719,2813.55 L 196.719,2813.3 L 196.175,2813.25 L 196.177,2812.11 L 195.932,2812.08 Z M 194.566,2812.19 C 194.623,2812.2 194.68,2812.21 194.734,2812.24 C 194.789,2812.27 194.834,2812.31 194.87,2812.35 C 194.909,2812.4 194.94,2812.45 194.966,2812.51 C 194.985,2812.56 194.997,2812.62 194.997,2812.68 C 194.997,2812.74 194.985,2812.8 194.964,2812.85 C 194.94,2812.9 194.909,2812.95 194.87,2812.98 C 194.831,2813.02 194.787,2813.05 194.732,2813.06 C 194.679,2813.08 194.623,2813.09 194.564,2813.08 C 194.506,2813.08 194.448,2813.06 194.396,2813.03 C 194.345,2813 194.296,2812.97 194.257,2812.92 C 194.221,2812.87 194.189,2812.83 194.166,2812.76 C 194.149,2812.71 194.135,2812.65 194.135,2812.59 C 194.135,2812.53 194.149,2812.47 194.166,2812.42 C 194.189,2812.37 194.223,2812.32 194.26,2812.29 C 194.297,2812.25 194.347,2812.22 194.396,2812.21 C 194.448,2812.19 194.508,2812.18 194.566,2812.19 Z M 197.136,2812.24 C 197.098,2812.25 197.06,2812.27 197.023,2812.31 C 196.992,2812.34 196.966,2812.37 196.947,2812.42 C 196.93,2812.46 196.922,2812.51 196.922,2812.56 L 196.919,2813.2 C 196.922,2813.25 196.926,2813.3 196.945,2813.35 C 196.966,2813.4 196.989,2813.43 197.023,2813.47 C 197.057,2813.51 197.094,2813.54 197.136,2813.57 C 197.181,2813.59 197.228,2813.61 197.277,2813.61 L 198.26,2813.71 L 198.26,2813.47 L 197.277,2813.36 C 197.255,2813.36 197.234,2813.35 197.214,2813.34 C 197.2,2813.33 197.183,2813.31 197.173,2813.29 C 197.162,2813.27 197.155,2813.24 197.155,2813.22 L 197.155,2813.1 L 198.019,2813.18 L 198.019,2812.93 L 197.155,2812.85 L 197.16,2812.59 C 197.16,2812.56 197.162,2812.54 197.174,2812.52 C 197.185,2812.51 197.202,2812.49 197.218,2812.48 C 197.239,2812.47 197.258,2812.47 197.277,2812.47 L 198.262,2812.57 L 198.262,2812.32 L 197.279,2812.22 C 197.23,2812.22 197.183,2812.22 197.136,2812.24 Z M 198.838,2812.44 C 198.76,2812.47 198.691,2812.51 198.63,2812.57 C 198.566,2812.62 198.518,2812.69 198.483,2812.77 C 198.449,2812.85 198.43,2812.94 198.43,2813.03 C 198.43,2813.13 198.449,2813.22 198.483,2813.31 C 198.515,2813.4 198.564,2813.47 198.63,2813.55 C 198.691,2813.62 198.76,2813.67 198.838,2813.72 C 198.922,2813.76 199.009,2813.79 199.103,2813.8 L 199.77,2813.87 L 199.77,2813.62 L 199.103,2813.55 C 199.043,2813.55 198.985,2813.53 198.934,2813.5 C 198.883,2813.47 198.834,2813.43 198.794,2813.39 C 198.757,2813.34 198.727,2813.3 198.702,2813.24 C 198.686,2813.18 198.67,2813.12 198.67,2813.06 C 198.67,2813 198.686,2812.94 198.705,2812.89 C 198.727,2812.84 198.757,2812.8 198.796,2812.76 C 198.836,2812.72 198.886,2812.7 198.936,2812.68 C 198.985,2812.66 199.043,2812.65 199.104,2812.66 L 199.773,2812.73 L 199.773,2812.48 L 199.104,2812.41 L 198.969,2812.41 C 198.923,2812.41 198.883,2812.42 198.838,2812.44 Z M 191.38,2812.5 L 191.987,2812.56 C 191.997,2812.56 192.008,2812.56 192.014,2812.56 C 192.023,2812.57 192.029,2812.57 192.04,2812.58 C 192.058,2812.59 192.078,2812.6 192.093,2812.63 C 192.104,2812.65 192.108,2812.67 192.108,2812.7 C 192.108,2812.72 192.104,2812.74 192.097,2812.75 C 192.092,2812.77 192.081,2812.78 192.074,2812.78 C 192.066,2812.79 192.055,2812.8 192.042,2812.8 C 192.025,2812.81 192.01,2812.82 191.987,2812.81 L 191.38,2812.75 L 191.38,2812.5 Z M 200.516,2812.56 L 200.516,2813.7 L 199.965,2813.64 L 199.965,2813.89 L 201.307,2814.03 L 201.307,2813.78 L 200.756,2813.72 L 200.756,2812.58 L 200.516,2812.56 Z M 192.776,2812.64 L 193.384,2812.7 C 193.393,2812.7 193.402,2812.7 193.41,2812.7 C 193.421,2812.71 193.427,2812.71 193.439,2812.72 C 193.458,2812.73 193.474,2812.74 193.489,2812.77 C 193.502,2812.79 193.509,2812.82 193.509,2812.84 C 193.509,2812.87 193.502,2812.88 193.495,2812.9 C 193.489,2812.91 193.48,2812.92 193.47,2812.93 C 193.463,2812.93 193.451,2812.94 193.443,2812.95 C 193.425,2812.96 193.404,2812.96 193.384,2812.96 L 192.776,2812.89 L 192.776,2812.64 Z M 201.499,2812.66 L 201.496,2814.05 L 201.741,2814.07 L 201.743,2812.69 L 201.499,2812.66 Z M 202.542,2812.77 L 201.977,2813.85 L 201.851,2814.08 L 202.122,2814.11 L 202.245,2813.88 L 202.539,2813.31 L 202.83,2813.94 L 202.956,2814.2 L 203.222,2814.23 L 203.099,2813.97 L 202.542,2812.77 Z M 203.564,2812.9 C 203.522,2812.92 203.483,2812.94 203.452,2812.97 C 203.418,2813 203.39,2813.04 203.375,2813.08 C 203.354,2813.12 203.343,2813.17 203.343,2813.22 L 203.343,2813.87 C 203.343,2813.92 203.352,2813.97 203.373,2814.01 C 203.388,2814.06 203.415,2814.1 203.45,2814.14 C 203.482,2814.18 203.52,2814.21 203.563,2814.23 C 203.605,2814.26 203.655,2814.27 203.705,2814.28 L 204.682,2814.38 L 204.682,2814.13 L 203.705,2814.03 C 203.677,2814.03 203.658,2814.02 203.639,2814.01 C 203.621,2813.99 203.609,2813.98 203.596,2813.95 C 203.586,2813.94 203.58,2813.91 203.58,2813.89 L 203.58,2813.76 L 204.447,2813.85 L 204.447,2813.61 L 203.581,2813.52 L 203.581,2813.25 C 203.581,2813.23 203.588,2813.21 203.599,2813.19 C 203.609,2813.17 203.621,2813.15 203.643,2813.15 C 203.66,2813.14 203.68,2813.13 203.707,2813.14 L 204.684,2813.24 L 204.684,2812.99 L 203.707,2812.89 C 203.656,2812.88 203.607,2812.89 203.564,2812.9 Z M 205.807,2813.1 L 205.805,2814.49 L 206.652,2814.58 C 206.703,2814.59 206.75,2814.58 206.795,2814.57 C 206.839,2814.55 206.876,2814.53 206.91,2814.5 C 206.943,2814.47 206.967,2814.43 206.988,2814.38 C 207.003,2814.34 207.014,2814.3 207.014,2814.24 C 207.014,2814.19 207.006,2814.14 206.991,2814.1 C 206.972,2814.05 206.947,2814.01 206.916,2813.97 C 206.884,2813.94 206.85,2813.91 206.806,2813.88 C 206.776,2813.86 206.735,2813.85 206.701,2813.84 L 206.897,2813.46 L 207.016,2813.23 L 206.746,2813.2 L 206.626,2813.43 L 206.499,2813.68 L 206.493,2813.69 C 206.472,2813.72 206.442,2813.75 206.403,2813.77 C 206.369,2813.79 206.331,2813.8 206.29,2813.79 L 206.046,2813.76 L 206.048,2813.13 L 205.807,2813.1 Z M 207.433,2813.3 C 207.39,2813.32 207.35,2813.34 207.32,2813.37 C 207.286,2813.4 207.26,2813.44 207.241,2813.48 C 207.224,2813.53 207.214,2813.58 207.214,2813.63 L 207.214,2814.27 C 207.214,2814.32 207.223,2814.37 207.239,2814.41 C 207.259,2814.46 207.284,2814.5 207.319,2814.54 C 207.35,2814.58 207.389,2814.61 207.43,2814.64 C 207.476,2814.66 207.523,2814.68 207.572,2814.68 L 208.552,2814.78 L 208.552,2814.53 L 207.572,2814.43 C 207.552,2814.43 207.529,2814.42 207.51,2814.41 C 207.497,2814.4 207.48,2814.38 207.467,2814.36 C 207.456,2814.34 207.45,2814.31 207.45,2814.29 L 207.45,2814.16 L 208.314,2814.25 L 208.314,2814 L 207.451,2813.91 L 207.451,2813.65 C 207.451,2813.63 207.459,2813.61 207.469,2813.59 C 207.48,2813.57 207.497,2813.56 207.512,2813.55 C 207.53,2813.54 207.554,2813.54 207.572,2813.54 L 208.555,2813.64 L 208.555,2813.39 L 207.573,2813.29 C 207.525,2813.29 207.477,2813.29 207.433,2813.3 Z M 209.005,2813.47 C 208.956,2813.49 208.912,2813.52 208.872,2813.55 C 208.832,2813.59 208.803,2813.63 208.777,2813.68 C 208.76,2813.73 208.746,2813.79 208.746,2813.85 L 208.991,2813.87 C 208.991,2813.84 208.997,2813.8 209.012,2813.78 C 209.029,2813.75 209.05,2813.73 209.078,2813.72 C 209.106,2813.7 209.133,2813.7 209.171,2813.7 L 209.593,2813.74 C 209.627,2813.75 209.656,2813.76 209.686,2813.78 C 209.71,2813.8 209.736,2813.83 209.75,2813.86 C 209.768,2813.89 209.776,2813.92 209.776,2813.96 C 209.776,2813.99 209.768,2814.03 209.75,2814.05 C 209.736,2814.08 209.71,2814.1 209.686,2814.11 C 209.654,2814.13 209.627,2814.13 209.593,2814.13 L 209.106,2814.08 L 209.038,2814.08 C 209.012,2814.08 208.991,2814.08 208.969,2814.09 C 208.927,2814.1 208.893,2814.13 208.854,2814.15 C 208.842,2814.17 208.821,2814.19 208.807,2814.21 C 208.786,2814.24 208.773,2814.27 208.763,2814.31 C 208.752,2814.34 208.746,2814.38 208.746,2814.42 L 208.746,2814.43 C 208.746,2814.47 208.756,2814.53 208.773,2814.57 C 208.79,2814.62 208.816,2814.66 208.852,2814.7 C 208.888,2814.74 208.923,2814.77 208.967,2814.79 C 209.008,2814.82 209.056,2814.83 209.106,2814.84 L 209.65,2814.89 C 209.699,2814.9 209.746,2814.89 209.79,2814.88 C 209.836,2814.87 209.874,2814.84 209.91,2814.81 C 209.94,2814.78 209.967,2814.74 209.985,2814.7 C 210.006,2814.66 210.012,2814.61 210.012,2814.56 L 210.012,2814.55 L 209.773,2814.52 L 209.773,2814.53 C 209.773,2814.55 209.768,2814.57 209.757,2814.59 C 209.744,2814.61 209.731,2814.62 209.712,2814.64 C 209.694,2814.64 209.673,2814.65 209.65,2814.64 L 209.106,2814.59 C 209.084,2814.59 209.061,2814.58 209.044,2814.56 C 209.029,2814.55 209.012,2814.53 208.999,2814.51 C 208.991,2814.49 208.986,2814.47 208.986,2814.45 L 208.986,2814.44 C 208.986,2814.41 208.991,2814.4 208.999,2814.38 C 209.012,2814.36 209.029,2814.34 209.046,2814.34 C 209.061,2814.33 209.084,2814.32 209.106,2814.33 L 209.593,2814.37 L 209.682,2814.37 C 209.708,2814.37 209.738,2814.37 209.763,2814.36 C 209.82,2814.34 209.865,2814.31 209.904,2814.27 C 209.91,2814.26 209.911,2814.26 209.915,2814.26 C 209.916,2814.26 209.916,2814.25 209.92,2814.25 C 209.948,2814.22 209.971,2814.18 209.986,2814.13 C 210.007,2814.08 210.014,2814.03 210.014,2813.98 C 210.014,2813.92 210.003,2813.86 209.982,2813.8 C 209.963,2813.75 209.929,2813.7 209.893,2813.66 C 209.85,2813.62 209.808,2813.58 209.754,2813.55 C 209.703,2813.53 209.65,2813.5 209.593,2813.5 L 209.171,2813.45 C 209.112,2813.45 209.056,2813.45 209.005,2813.47 Z M 210.212,2813.57 L 210.206,2814.95 L 211.055,2815.04 C 211.106,2815.05 211.15,2815.04 211.193,2815.03 C 211.237,2815.01 211.276,2814.99 211.314,2814.96 L 211.314,2814.96 C 211.344,2814.92 211.372,2814.88 211.391,2814.84 C 211.406,2814.8 211.416,2814.75 211.416,2814.7 C 211.416,2814.65 211.41,2814.6 211.391,2814.55 C 211.374,2814.51 211.351,2814.47 211.318,2814.43 C 211.285,2814.39 211.25,2814.36 211.206,2814.34 C 211.176,2814.32 211.14,2814.3 211.103,2814.3 C 211.099,2814.3 211.095,2814.3 211.093,2814.3 L 211.093,2814.29 L 210.45,2814.23 L 210.45,2813.59 L 210.212,2813.57 Z M 211.612,2813.71 L 211.61,2815.1 L 211.844,2815.12 L 211.848,2813.73 L 211.612,2813.71 Z M 212.042,2813.75 L 212.04,2815.14 L 212.887,2815.22 C 212.938,2815.23 212.985,2815.22 213.029,2815.21 C 213.071,2815.2 213.106,2815.17 213.142,2815.14 C 213.176,2815.11 213.199,2815.07 213.218,2815.03 C 213.237,2814.99 213.246,2814.94 213.248,2814.89 C 213.246,2814.84 213.237,2814.79 213.221,2814.74 C 213.202,2814.7 213.178,2814.65 213.148,2814.62 C 213.116,2814.58 213.078,2814.55 213.036,2814.53 C 213.004,2814.51 212.97,2814.49 212.936,2814.48 L 213.127,2814.11 L 213.248,2813.87 L 212.982,2813.85 L 212.857,2814.08 L 212.729,2814.33 L 212.723,2814.34 C 212.702,2814.37 212.674,2814.4 212.637,2814.41 C 212.603,2814.43 212.563,2814.44 212.523,2814.44 L 212.283,2814.41 L 212.283,2813.77 L 212.042,2813.75 Z M 213.365,2813.89 L 213.489,2814.15 L 214.05,2815.35 L 214.613,2814.27 L 214.74,2814.03 L 214.47,2814 L 214.346,2814.24 L 214.05,2814.8 L 213.757,2814.18 L 213.634,2813.92 L 213.365,2813.89 Z M 206.046,2814.01 L 206.654,2814.08 C 206.664,2814.08 206.673,2814.08 206.68,2814.08 C 206.689,2814.08 206.697,2814.09 206.703,2814.09 C 206.725,2814.11 206.743,2814.13 206.76,2814.15 C 206.771,2814.17 206.78,2814.19 206.78,2814.22 C 206.78,2814.24 206.776,2814.26 206.765,2814.27 C 206.759,2814.29 206.746,2814.3 206.739,2814.3 C 206.73,2814.31 206.72,2814.32 206.71,2814.33 C 206.699,2814.33 206.69,2814.33 206.682,2814.33 L 206.652,2814.33 L 206.046,2814.27 L 206.046,2814.01 Z M 215.402,2814.1 L 215.402,2815.24 L 214.85,2815.19 L 214.849,2815.43 L 216.191,2815.57 L 216.191,2815.33 L 215.64,2815.26 L 215.642,2814.13 L 215.402,2814.1 Z M 216.749,2814.3 C 216.668,2814.32 216.6,2814.37 216.536,2814.42 C 216.476,2814.48 216.427,2814.55 216.389,2814.63 C 216.357,2814.7 216.338,2814.8 216.338,2814.89 C 216.338,2814.99 216.355,2815.08 216.389,2815.17 C 216.426,2815.25 216.474,2815.34 216.536,2815.4 C 216.598,2815.47 216.666,2815.53 216.746,2815.58 C 216.832,2815.62 216.919,2815.65 217.009,2815.66 C 217.106,2815.67 217.189,2815.66 217.27,2815.63 C 217.351,2815.6 217.426,2815.56 217.487,2815.5 C 217.547,2815.44 217.593,2815.38 217.627,2815.3 C 217.663,2815.21 217.681,2815.13 217.683,2815.03 C 217.681,2814.93 217.663,2814.84 217.63,2814.75 C 217.593,2814.67 217.547,2814.59 217.487,2814.52 C 217.43,2814.45 217.353,2814.4 217.272,2814.35 C 217.191,2814.31 217.109,2814.28 217.013,2814.27 L 216.876,2814.27 C 216.834,2814.27 216.794,2814.28 216.749,2814.3 Z M 217.828,2814.35 L 217.826,2815.74 L 218.672,2815.83 C 218.722,2815.83 218.768,2815.82 218.813,2815.81 C 218.857,2815.8 218.896,2815.77 218.93,2815.74 C 218.964,2815.71 218.988,2815.67 219.004,2815.63 C 219.023,2815.59 219.032,2815.54 219.032,2815.49 C 219.032,2815.44 219.023,2815.39 219.009,2815.34 C 218.989,2815.3 218.969,2815.26 218.932,2815.22 C 218.902,2815.18 218.864,2815.15 218.826,2815.13 C 218.787,2815.11 218.756,2815.09 218.717,2815.09 L 218.915,2814.71 L 219.034,2814.47 L 218.766,2814.45 L 218.647,2814.68 L 218.513,2814.93 L 218.509,2814.94 C 218.488,2814.97 218.462,2815 218.423,2815.02 C 218.388,2815.03 218.349,2815.04 218.304,2815.03 L 218.066,2815.01 L 218.066,2814.37 L 217.828,2814.35 Z M 210.449,2814.47 L 211.057,2814.53 C 211.066,2814.54 211.076,2814.54 211.085,2814.54 C 211.09,2814.55 211.099,2814.55 211.108,2814.55 L 211.108,2814.55 C 211.127,2814.57 211.146,2814.59 211.159,2814.61 C 211.174,2814.63 211.178,2814.65 211.18,2814.68 C 211.178,2814.7 211.176,2814.72 211.167,2814.73 C 211.157,2814.75 211.15,2814.76 211.141,2814.76 C 211.134,2814.77 211.125,2814.78 211.11,2814.78 C 211.095,2814.79 211.08,2814.79 211.057,2814.79 L 210.449,2814.73 L 210.449,2814.47 Z M 217.013,2814.51 C 217.072,2814.52 217.128,2814.54 217.179,2814.57 C 217.23,2814.6 217.276,2814.64 217.315,2814.68 C 217.355,2814.72 217.387,2814.78 217.409,2814.83 C 217.436,2814.89 217.443,2814.95 217.443,2815.01 C 217.443,2815.07 217.435,2815.13 217.409,2815.18 C 217.387,2815.23 217.353,2815.28 217.313,2815.31 C 217.275,2815.35 217.23,2815.38 217.179,2815.39 C 217.128,2815.41 217.07,2815.41 217.009,2815.41 C 216.948,2815.4 216.893,2815.38 216.843,2815.36 C 216.794,2815.33 216.745,2815.29 216.705,2815.25 C 216.663,2815.2 216.634,2815.15 216.613,2815.1 C 216.589,2815.04 216.58,2814.98 216.579,2814.92 C 216.58,2814.85 216.589,2814.8 216.613,2814.74 C 216.634,2814.7 216.663,2814.65 216.705,2814.62 C 216.745,2814.58 216.794,2814.55 216.845,2814.53 C 216.896,2814.51 216.948,2814.51 217.013,2814.51 Z M 212.283,2814.66 L 212.887,2814.72 C 212.898,2814.72 212.903,2814.73 212.912,2814.73 C 212.92,2814.73 212.929,2814.74 212.938,2814.74 C 212.961,2814.75 212.979,2814.77 212.989,2814.79 C 213.004,2814.82 213.01,2814.84 213.01,2814.86 C 213.01,2814.89 213.004,2814.91 212.997,2814.92 C 212.989,2814.93 212.982,2814.94 212.975,2814.95 C 212.966,2814.96 212.955,2814.97 212.94,2814.97 C 212.927,2814.97 212.906,2814.98 212.887,2814.98 L 212.283,2814.92 L 212.283,2814.66 Z M 218.066,2815.26 L 218.672,2815.33 C 218.683,2815.33 218.692,2815.33 218.7,2815.33 C 218.709,2815.34 218.715,2815.34 218.722,2815.34 C 218.745,2815.35 218.762,2815.37 218.776,2815.39 C 218.787,2815.41 218.793,2815.43 218.793,2815.46 C 218.792,2815.48 218.787,2815.5 218.783,2815.52 C 218.776,2815.53 218.766,2815.54 218.757,2815.55 C 218.752,2815.56 218.738,2815.56 218.726,2815.57 C 218.713,2815.58 218.696,2815.58 218.672,2815.58 L 218.066,2815.52 L 218.066,2815.26 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 174.162,2858.06 L 173.558,2858.62 L 234.25,2862.58 L 234.562,2862.45 C 234.663,2862.41 234.766,2862.31 234.766,2862.15 L 234.766,2862.01 L 174.162,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 173.558,2858.62 L 173.555,2776.86 L 173.861,2776.57 L 174.162,2776.61 L 174.162,2858.06 L 173.558,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_9' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.639' y='-2.486' width='5.279' height='4.973' transform='translate(192.132 2789.88) rotate(90) skewX(-7.19518)' fill='%23df5600'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(198.596 2790.7) rotate(90) skewX(-7.18117)' fill='%230b3a60'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(205.06 2791.51) rotate(90) skewX(-7.19316)' fill='%2390c6e4'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(211.527 2792.33) rotate(90) skewX(-7.17713)' fill='%23a6a5a5'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(217.991 2793.14) rotate(90) skewX(-7.17713)' fill='%23ddd2ac'/%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.334' fill='%23000000'%3E%3Cg id='Group_11'%3E%3Cpath d='M 194.28,2795.66 C 194.198,2795.69 194.123,2795.73 194.06,2795.79 C 193.997,2795.85 193.947,2795.91 193.911,2795.99 C 193.876,2796.08 193.857,2796.16 193.857,2796.26 C 193.857,2796.36 193.876,2796.45 193.911,2796.54 C 193.947,2796.63 193.997,2796.71 194.06,2796.78 C 194.123,2796.86 194.198,2796.92 194.28,2796.96 C 194.364,2797.01 194.456,2797.04 194.552,2797.05 L 195.247,2797.13 L 195.247,2796.88 L 194.552,2796.8 C 194.489,2796.79 194.432,2796.77 194.378,2796.74 C 194.323,2796.71 194.276,2796.67 194.236,2796.63 C 194.196,2796.58 194.163,2796.53 194.14,2796.47 C 194.117,2796.42 194.104,2796.36 194.104,2796.29 C 194.104,2796.23 194.117,2796.17 194.14,2796.12 C 194.163,2796.07 194.196,2796.02 194.236,2795.99 C 194.276,2795.95 194.323,2795.93 194.378,2795.91 C 194.432,2795.89 194.489,2795.89 194.552,2795.89 L 195.247,2795.98 L 195.247,2795.72 L 194.552,2795.64 C 194.456,2795.63 194.364,2795.64 194.28,2795.66 Z M 195.444,2795.75 L 195.444,2797.16 L 195.692,2797.18 L 195.692,2796.67 L 196.585,2796.78 L 196.585,2797.29 L 196.835,2797.32 L 196.835,2795.91 L 196.585,2795.89 L 196.585,2796.53 L 195.692,2796.42 L 195.692,2795.78 L 195.444,2795.75 Z M 196.953,2795.93 L 197.081,2796.2 L 197.662,2797.42 L 198.245,2796.33 L 198.37,2796.1 L 198.094,2796.06 L 197.966,2796.3 L 197.662,2796.87 L 197.36,2796.23 L 197.232,2795.96 L 196.953,2795.93 Z M 198.488,2796.11 L 198.488,2797.52 L 199.365,2797.63 L 199.438,2797.63 C 199.462,2797.62 199.486,2797.62 199.508,2797.61 C 199.556,2797.6 199.594,2797.58 199.629,2797.54 C 199.662,2797.51 199.69,2797.48 199.709,2797.43 C 199.729,2797.39 199.736,2797.34 199.736,2797.29 C 199.736,2797.24 199.729,2797.19 199.709,2797.14 C 199.692,2797.09 199.666,2797.05 199.632,2797.01 C 199.6,2796.97 199.562,2796.94 199.52,2796.92 C 199.486,2796.89 199.449,2796.88 199.413,2796.87 L 199.611,2796.49 L 199.736,2796.26 L 199.46,2796.23 L 199.331,2796.46 L 199.2,2796.71 L 199.194,2796.72 C 199.17,2796.75 199.143,2796.78 199.107,2796.8 C 199.069,2796.81 199.027,2796.82 198.983,2796.82 L 198.736,2796.79 L 198.736,2796.14 L 198.488,2796.11 Z M 199.86,2796.27 L 199.986,2796.54 L 200.569,2797.77 L 201.15,2796.68 L 201.277,2796.44 L 200.999,2796.41 L 200.871,2796.65 L 200.569,2797.22 L 200.264,2796.57 L 200.137,2796.31 L 199.86,2796.27 Z M 201.624,2796.54 C 201.541,2796.57 201.466,2796.61 201.403,2796.67 C 201.338,2796.72 201.29,2796.79 201.254,2796.87 C 201.217,2796.95 201.2,2797.04 201.2,2797.14 C 201.2,2797.24 201.217,2797.33 201.254,2797.42 C 201.29,2797.51 201.338,2797.59 201.403,2797.66 C 201.466,2797.73 201.541,2797.79 201.624,2797.84 C 201.707,2797.89 201.799,2797.91 201.894,2797.93 L 202.59,2798.01 L 202.59,2797.76 L 201.894,2797.67 C 201.833,2797.67 201.775,2797.65 201.72,2797.62 C 201.666,2797.59 201.62,2797.55 201.579,2797.5 C 201.539,2797.46 201.504,2797.41 201.483,2797.35 C 201.46,2797.29 201.447,2797.23 201.447,2797.17 C 201.447,2797.11 201.46,2797.05 201.483,2797 C 201.504,2796.94 201.539,2796.9 201.579,2796.86 C 201.62,2796.83 201.666,2796.8 201.72,2796.78 C 201.775,2796.77 201.833,2796.76 201.894,2796.77 L 202.59,2796.85 L 202.59,2796.6 L 201.894,2796.52 C 201.799,2796.51 201.707,2796.51 201.624,2796.54 Z M 203.356,2796.69 L 203.356,2797.85 L 202.788,2797.78 L 202.788,2798.03 L 204.176,2798.2 L 204.176,2797.95 L 203.605,2797.88 L 203.605,2796.72 L 203.356,2796.69 Z M 204.603,2796.87 C 204.558,2796.89 204.52,2796.91 204.486,2796.94 C 204.452,2796.97 204.424,2797.01 204.405,2797.05 C 204.386,2797.09 204.377,2797.14 204.376,2797.2 L 204.376,2797.84 C 204.377,2797.9 204.386,2797.95 204.405,2797.99 C 204.424,2798.04 204.452,2798.09 204.486,2798.13 C 204.52,2798.16 204.558,2798.2 204.603,2798.22 C 204.65,2798.24 204.696,2798.26 204.75,2798.27 L 205.763,2798.39 L 205.763,2798.14 L 204.75,2798.02 C 204.726,2798.01 204.704,2798 204.686,2797.99 C 204.667,2797.98 204.652,2797.96 204.639,2797.94 C 204.629,2797.92 204.622,2797.9 204.622,2797.87 L 204.622,2797.74 L 205.516,2797.85 L 205.516,2797.6 L 204.622,2797.49 L 204.622,2797.22 C 204.622,2797.2 204.629,2797.18 204.639,2797.16 C 204.652,2797.14 204.667,2797.13 204.686,2797.12 C 204.704,2797.11 204.726,2797.11 204.75,2797.11 L 205.763,2797.23 L 205.763,2796.98 L 204.75,2796.86 C 204.696,2796.85 204.65,2796.86 204.603,2796.87 Z M 205.959,2797 L 205.959,2798.41 L 206.837,2798.52 C 206.888,2798.52 206.937,2798.52 206.982,2798.5 C 207.026,2798.49 207.067,2798.47 207.101,2798.44 C 207.135,2798.41 207.16,2798.37 207.18,2798.33 C 207.199,2798.28 207.21,2798.23 207.21,2798.18 C 207.21,2798.13 207.199,2798.08 207.182,2798.03 C 207.163,2797.98 207.138,2797.94 207.105,2797.9 C 207.073,2797.86 207.035,2797.83 206.991,2797.81 C 206.956,2797.79 206.922,2797.77 206.884,2797.76 L 207.082,2797.39 L 207.21,2797.15 L 206.93,2797.12 L 206.806,2797.36 L 206.671,2797.6 L 206.664,2797.61 C 206.643,2797.65 206.614,2797.67 206.578,2797.69 C 206.542,2797.71 206.501,2797.71 206.456,2797.71 L 206.207,2797.68 L 206.207,2797.03 L 205.959,2797 Z M 198.736,2797.03 L 199.365,2797.11 C 199.373,2797.12 199.383,2797.12 199.391,2797.12 C 199.4,2797.12 199.409,2797.13 199.416,2797.13 C 199.438,2797.14 199.457,2797.16 199.47,2797.18 C 199.483,2797.21 199.492,2797.23 199.492,2797.26 C 199.49,2797.28 199.486,2797.3 199.477,2797.31 C 199.468,2797.33 199.462,2797.34 199.453,2797.35 C 199.445,2797.36 199.435,2797.36 199.42,2797.37 C 199.405,2797.37 199.386,2797.37 199.365,2797.37 L 198.736,2797.3 L 198.736,2797.03 Z M 208.644,2797.36 C 208.59,2797.38 208.546,2797.4 208.506,2797.44 C 208.464,2797.47 208.433,2797.52 208.412,2797.57 C 208.389,2797.62 208.376,2797.67 208.376,2797.74 L 208.625,2797.76 C 208.625,2797.73 208.633,2797.7 208.65,2797.67 C 208.667,2797.64 208.69,2797.63 208.718,2797.61 C 208.748,2797.6 208.78,2797.59 208.814,2797.6 L 209.25,2797.65 C 209.285,2797.65 209.316,2797.67 209.346,2797.68 C 209.376,2797.71 209.399,2797.73 209.416,2797.76 C 209.433,2797.79 209.442,2797.83 209.442,2797.86 C 209.442,2797.9 209.433,2797.93 209.416,2797.96 C 209.399,2797.98 209.376,2798.01 209.346,2798.02 C 209.316,2798.03 209.285,2798.04 209.25,2798.03 L 208.75,2797.97 C 208.699,2797.97 208.65,2797.97 208.608,2797.98 C 208.563,2798 208.523,2798.02 208.489,2798.05 C 208.471,2798.07 208.457,2798.09 208.442,2798.1 C 208.42,2798.13 208.405,2798.16 208.393,2798.2 C 208.382,2798.23 208.376,2798.27 208.376,2798.31 L 208.376,2798.32 C 208.376,2798.37 208.386,2798.42 208.405,2798.47 C 208.424,2798.52 208.452,2798.56 208.486,2798.6 C 208.52,2798.64 208.559,2798.67 208.603,2798.7 C 208.648,2798.72 208.697,2798.74 208.75,2798.74 L 209.311,2798.81 C 209.365,2798.82 209.414,2798.82 209.458,2798.8 C 209.503,2798.78 209.544,2798.76 209.577,2798.73 C 209.612,2798.7 209.64,2798.66 209.659,2798.62 C 209.678,2798.58 209.689,2798.53 209.689,2798.48 L 209.689,2798.47 L 209.44,2798.44 L 209.44,2798.44 C 209.44,2798.47 209.433,2798.49 209.423,2798.51 C 209.412,2798.53 209.395,2798.54 209.376,2798.55 C 209.356,2798.56 209.336,2798.56 209.311,2798.56 L 208.75,2798.49 C 208.727,2798.49 208.706,2798.48 208.686,2798.47 C 208.667,2798.45 208.652,2798.44 208.64,2798.42 C 208.629,2798.39 208.622,2798.37 208.622,2798.35 L 208.622,2798.34 C 208.622,2798.32 208.629,2798.3 208.64,2798.28 C 208.652,2798.26 208.667,2798.24 208.686,2798.24 C 208.706,2798.23 208.727,2798.22 208.75,2798.22 L 209.25,2798.28 C 209.315,2798.29 209.374,2798.29 209.429,2798.27 C 209.484,2798.25 209.533,2798.22 209.573,2798.18 C 209.576,2798.18 209.577,2798.17 209.58,2798.17 C 209.584,2798.17 209.586,2798.17 209.589,2798.16 C 209.62,2798.13 209.644,2798.09 209.661,2798.04 C 209.678,2797.99 209.689,2797.95 209.689,2797.89 C 209.689,2797.83 209.676,2797.77 209.654,2797.72 C 209.631,2797.66 209.599,2797.61 209.559,2797.56 C 209.521,2797.52 209.473,2797.48 209.42,2797.45 C 209.367,2797.42 209.31,2797.4 209.25,2797.4 L 208.814,2797.34 C 208.755,2797.34 208.697,2797.34 208.644,2797.36 Z M 210.116,2797.53 C 210.072,2797.54 210.033,2797.57 209.999,2797.6 C 209.965,2797.63 209.937,2797.67 209.919,2797.71 C 209.899,2797.75 209.889,2797.8 209.889,2797.85 L 209.889,2798.5 C 209.889,2798.55 209.899,2798.6 209.919,2798.65 C 209.937,2798.7 209.965,2798.74 209.999,2798.78 C 210.033,2798.82 210.072,2798.85 210.116,2798.88 C 210.163,2798.9 210.21,2798.92 210.263,2798.93 L 211.276,2799.05 L 211.276,2798.8 L 210.263,2798.67 C 210.24,2798.67 210.219,2798.66 210.199,2798.65 C 210.18,2798.64 210.165,2798.62 210.153,2798.6 C 210.142,2798.58 210.136,2798.55 210.136,2798.53 L 210.136,2798.4 L 211.029,2798.51 L 211.029,2798.26 L 210.136,2798.15 L 210.136,2797.88 C 210.136,2797.86 210.142,2797.84 210.153,2797.82 C 210.165,2797.8 210.18,2797.79 210.199,2797.78 C 210.219,2797.77 210.24,2797.76 210.263,2797.77 L 211.276,2797.89 L 211.276,2797.64 L 210.263,2797.52 C 210.21,2797.51 210.163,2797.51 210.116,2797.53 Z M 211.472,2797.66 L 211.472,2799.07 L 212.349,2799.17 L 212.425,2799.17 C 212.448,2799.17 212.472,2799.17 212.495,2799.16 C 212.54,2799.14 212.581,2799.12 212.614,2799.09 C 212.649,2799.06 212.674,2799.03 212.693,2798.98 C 212.712,2798.94 212.723,2798.89 212.723,2798.84 C 212.723,2798.79 212.712,2798.74 212.695,2798.69 C 212.676,2798.64 212.651,2798.6 212.618,2798.56 C 212.585,2798.52 212.548,2798.49 212.504,2798.47 C 212.47,2798.44 212.436,2798.43 212.397,2798.42 L 212.595,2798.04 L 212.723,2797.81 L 212.445,2797.77 L 212.319,2798.01 L 212.184,2798.26 L 212.179,2798.27 C 212.158,2798.3 212.128,2798.33 212.091,2798.35 C 212.054,2798.36 212.014,2798.37 211.967,2798.37 L 211.72,2798.34 L 211.72,2797.69 L 211.472,2797.66 Z M 212.92,2797.83 L 212.92,2799.24 L 213.17,2799.27 L 213.17,2797.86 L 212.92,2797.83 Z M 206.207,2797.93 L 206.837,2798.01 C 206.846,2798.01 206.855,2798.01 206.863,2798.01 C 206.872,2798.01 206.88,2798.02 206.888,2798.02 C 206.912,2798.04 206.928,2798.05 206.943,2798.08 C 206.956,2798.1 206.963,2798.13 206.963,2798.15 C 206.963,2798.17 206.958,2798.19 206.95,2798.21 C 206.942,2798.22 206.933,2798.23 206.926,2798.24 C 206.918,2798.25 206.906,2798.25 206.89,2798.26 C 206.876,2798.26 206.858,2798.27 206.837,2798.26 L 206.207,2798.19 L 206.207,2797.93 Z M 213.597,2797.94 C 213.553,2797.96 213.512,2797.98 213.479,2798.01 C 213.444,2798.04 213.419,2798.08 213.4,2798.13 C 213.38,2798.17 213.37,2798.22 213.37,2798.27 L 213.37,2798.92 C 213.37,2798.97 213.38,2799.02 213.4,2799.07 C 213.419,2799.12 213.444,2799.16 213.479,2799.2 C 213.512,2799.24 213.553,2799.27 213.597,2799.29 C 213.642,2799.32 213.691,2799.33 213.742,2799.34 L 214.757,2799.46 L 214.757,2799.21 L 213.742,2799.09 C 213.719,2799.09 213.697,2799.08 213.678,2799.06 C 213.659,2799.05 213.645,2799.03 213.634,2799.01 C 213.62,2798.99 213.616,2798.97 213.616,2798.95 L 213.616,2798.82 L 214.508,2798.92 L 214.508,2798.67 L 213.616,2798.56 L 213.616,2798.3 C 213.616,2798.27 213.62,2798.25 213.634,2798.24 C 213.645,2798.22 213.659,2798.2 213.678,2798.19 C 213.697,2798.18 213.719,2798.18 213.742,2798.18 L 214.757,2798.31 L 214.757,2798.05 L 213.742,2797.93 C 213.691,2797.93 213.642,2797.93 213.597,2797.94 Z M 215.225,2798.14 C 215.172,2798.16 215.125,2798.19 215.085,2798.22 C 215.045,2798.26 215.015,2798.3 214.992,2798.35 C 214.967,2798.4 214.957,2798.46 214.957,2798.52 L 215.204,2798.55 C 215.204,2798.52 215.214,2798.49 215.229,2798.46 C 215.246,2798.43 215.27,2798.41 215.3,2798.4 C 215.328,2798.38 215.359,2798.38 215.396,2798.38 L 215.83,2798.43 C 215.866,2798.44 215.898,2798.45 215.925,2798.47 C 215.954,2798.49 215.979,2798.52 215.996,2798.55 C 216.013,2798.58 216.021,2798.61 216.021,2798.65 C 216.021,2798.68 216.013,2798.72 215.996,2798.74 C 215.979,2798.77 215.954,2798.79 215.925,2798.8 C 215.898,2798.82 215.866,2798.82 215.83,2798.82 L 215.329,2798.76 C 215.279,2798.76 215.232,2798.76 215.187,2798.77 C 215.142,2798.78 215.104,2798.81 215.07,2798.84 C 215.051,2798.85 215.036,2798.87 215.022,2798.89 C 215.002,2798.92 214.985,2798.95 214.975,2798.99 C 214.962,2799.02 214.957,2799.06 214.957,2799.1 L 214.957,2799.11 C 214.957,2799.16 214.966,2799.21 214.985,2799.26 C 215.004,2799.31 215.032,2799.35 215.066,2799.39 C 215.1,2799.43 215.14,2799.46 215.185,2799.48 C 215.229,2799.51 215.279,2799.53 215.329,2799.53 L 215.893,2799.6 C 215.944,2799.6 215.993,2799.6 216.038,2799.59 C 216.085,2799.57 216.124,2799.55 216.157,2799.52 C 216.194,2799.49 216.219,2799.45 216.238,2799.41 C 216.257,2799.36 216.267,2799.32 216.267,2799.26 L 216.267,2799.26 L 216.021,2799.22 L 216.021,2799.23 C 216.019,2799.26 216.015,2799.28 216.002,2799.29 C 215.991,2799.31 215.976,2799.33 215.958,2799.33 C 215.938,2799.35 215.917,2799.35 215.893,2799.35 L 215.329,2799.28 C 215.306,2799.27 215.284,2799.26 215.266,2799.25 C 215.246,2799.24 215.232,2799.22 215.221,2799.2 C 215.209,2799.18 215.202,2799.16 215.202,2799.13 L 215.202,2799.13 C 215.202,2799.1 215.209,2799.08 215.221,2799.06 C 215.232,2799.05 215.246,2799.03 215.266,2799.02 C 215.284,2799.01 215.306,2799.01 215.329,2799.01 L 215.83,2799.07 L 215.923,2799.07 C 215.953,2799.07 215.983,2799.06 216.01,2799.05 C 216.066,2799.03 216.113,2799 216.153,2798.97 C 216.155,2798.96 216.159,2798.96 216.161,2798.96 C 216.164,2798.95 216.166,2798.95 216.17,2798.95 C 216.2,2798.92 216.226,2798.87 216.242,2798.83 C 216.259,2798.78 216.267,2798.73 216.267,2798.68 C 216.267,2798.62 216.257,2798.56 216.234,2798.5 C 216.21,2798.45 216.18,2798.4 216.14,2798.35 C 216.1,2798.3 216.053,2798.26 216,2798.24 C 215.947,2798.21 215.892,2798.19 215.83,2798.18 L 215.396,2798.13 C 215.333,2798.12 215.276,2798.13 215.225,2798.14 Z M 211.72,2798.59 L 212.349,2798.66 C 212.359,2798.66 212.367,2798.67 212.376,2798.67 C 212.385,2798.67 212.393,2798.68 212.401,2798.68 C 212.425,2798.69 212.441,2798.71 212.455,2798.73 C 212.47,2798.76 212.476,2798.78 212.476,2798.81 C 212.476,2798.83 212.472,2798.85 212.463,2798.86 C 212.455,2798.88 212.446,2798.89 212.437,2798.89 C 212.431,2798.9 212.419,2798.91 212.404,2798.92 C 212.389,2798.92 212.371,2798.92 212.349,2798.92 L 211.72,2798.85 L 211.72,2798.59 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--ULTRA_VIOLET, .KN95_NR_individuals--ULTRA_VIOLET {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='206.002 -433.287 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.848' gradientTransform='translate(218.644 405.816)'%3E%3Cstop offset='0' stop-color='%2372469e'/%3E%3Cstop offset='1' stop-color='%23955cd1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.922' gradientTransform='translate(215.105 406.431)'%3E%3Cstop offset='0' stop-color='%235d3981'/%3E%3Cstop offset='1' stop-color='%23814fb3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.1' gradientTransform='translate(218.638 425.801)'%3E%3Cstop offset='0' stop-color='%236e4499'/%3E%3Cstop offset='1' stop-color='%238351b6'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.229' gradientTransform='translate(213.964 427.856)'%3E%3Cstop offset='0' stop-color='%235b387f'/%3E%3Cstop offset='1' stop-color='%236e4499'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.01' y2='-0.164' gradientTransform='translate(226.958 427.672) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%237749a5'/%3E%3Cstop offset='1' stop-color='%238753bc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(215.812 415.559) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%236e4499'/%3E%3Cstop offset='1' stop-color='%23814fb3'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(222.731 416.558) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 215.731,403.403 L 215.731,426.89 L 233.179,428.009 C 233.191,427.996 233.199,427.975 233.199,427.951 L 233.199,405.77 L 215.731,403.403 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 215.731,403.403 L 212.267,406.765 L 212.265,428.787 L 215.731,426.89 L 215.731,403.403 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 215.731,426.89 L 212.265,428.787 L 229.197,429.715 L 233.141,428.035 C 233.155,428.03 233.168,428.022 233.179,428.009 L 215.731,426.89 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 215.644,426.621 L 212.264,428.511 L 212.264,428.787 L 215.644,426.937 L 215.644,426.621 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 222.773,409.005 L 222.773,409.414 L 222.844,409.423 L 222.844,409.012 L 222.773,409.005 Z M 222.903,409.017 L 222.903,409.427 L 222.974,409.38 L 223.236,409.204 L 223.236,409.465 L 223.308,409.474 L 223.308,409.063 L 223.236,409.111 L 222.974,409.287 L 222.974,409.027 L 222.903,409.017 Z M 223.365,409.069 L 223.365,409.48 L 223.567,409.502 C 223.595,409.504 223.622,409.502 223.645,409.494 C 223.671,409.486 223.691,409.475 223.71,409.456 C 223.729,409.44 223.743,409.42 223.753,409.397 C 223.764,409.373 223.77,409.346 223.77,409.318 C 223.77,409.293 223.765,409.269 223.757,409.246 C 223.748,409.222 223.736,409.2 223.721,409.181 C 223.719,409.179 223.717,409.176 223.716,409.174 C 223.715,409.172 223.712,409.169 223.709,409.166 C 223.691,409.146 223.671,409.13 223.645,409.115 C 223.622,409.103 223.596,409.094 223.567,409.091 L 223.365,409.069 Z M 223.828,409.119 L 223.828,409.53 L 223.901,409.536 L 223.901,409.127 L 223.828,409.119 Z M 223.438,409.149 L 223.567,409.163 C 223.585,409.166 223.601,409.172 223.618,409.18 C 223.633,409.188 223.647,409.198 223.658,409.212 C 223.671,409.225 223.68,409.241 223.687,409.257 C 223.694,409.275 223.697,409.292 223.697,409.309 C 223.697,409.328 223.694,409.344 223.687,409.36 C 223.68,409.376 223.671,409.388 223.658,409.399 C 223.647,409.411 223.633,409.418 223.618,409.423 C 223.601,409.428 223.585,409.429 223.567,409.427 L 223.438,409.413 L 223.438,409.149 Z M 224.142,409.154 L 223.971,409.473 L 223.934,409.541 L 224.016,409.549 L 224.052,409.481 L 224.142,409.315 L 224.23,409.501 L 224.266,409.578 L 224.348,409.586 L 224.311,409.508 L 224.142,409.154 Z M 224.383,409.18 L 224.383,409.59 L 224.456,409.598 L 224.456,409.187 L 224.383,409.18 Z M 224.514,409.194 L 224.514,409.604 L 224.716,409.626 C 224.743,409.628 224.77,409.626 224.795,409.618 C 224.819,409.612 224.839,409.599 224.858,409.582 C 224.878,409.565 224.892,409.544 224.902,409.521 C 224.913,409.497 224.917,409.472 224.917,409.443 C 224.917,409.418 224.914,409.394 224.905,409.371 C 224.897,409.346 224.885,409.326 224.87,409.305 C 224.868,409.303 224.866,409.302 224.865,409.299 C 224.863,409.296 224.86,409.294 224.858,409.292 C 224.839,409.271 224.819,409.254 224.795,409.24 C 224.77,409.227 224.743,409.219 224.716,409.216 L 224.514,409.194 Z M 225.101,409.274 C 225.076,409.282 225.053,409.294 225.035,409.311 C 225.018,409.327 225.003,409.347 224.994,409.372 C 224.982,409.395 224.976,409.421 224.976,409.45 L 224.976,409.654 L 225.048,409.662 L 225.048,409.456 C 225.048,409.438 225.052,409.422 225.059,409.407 C 225.064,409.392 225.075,409.38 225.088,409.369 C 225.099,409.357 225.113,409.35 225.129,409.344 C 225.143,409.339 225.161,409.337 225.179,409.339 C 225.197,409.341 225.214,409.346 225.229,409.355 C 225.246,409.364 225.258,409.375 225.271,409.388 C 225.283,409.401 225.291,409.417 225.298,409.433 C 225.305,409.45 225.31,409.467 225.31,409.486 L 225.31,409.69 L 225.381,409.699 L 225.381,409.494 C 225.381,409.465 225.376,409.437 225.365,409.412 C 225.355,409.386 225.341,409.362 225.322,409.341 C 225.304,409.321 225.282,409.305 225.257,409.29 C 225.233,409.279 225.207,409.27 225.179,409.266 C 225.15,409.263 225.125,409.266 225.101,409.274 Z M 224.585,409.275 L 224.716,409.289 C 224.733,409.29 224.749,409.295 224.767,409.305 C 224.782,409.313 224.796,409.323 224.807,409.337 C 224.82,409.351 224.828,409.366 224.836,409.383 C 224.841,409.399 224.845,409.417 224.845,409.435 C 224.845,409.452 224.841,409.47 224.836,409.486 C 224.828,409.501 224.82,409.514 224.807,409.523 C 224.796,409.534 224.782,409.542 224.767,409.547 C 224.749,409.553 224.733,409.554 224.716,409.553 L 224.585,409.538 L 224.585,409.275 Z M 225.417,409.292 L 225.453,409.37 L 225.622,409.724 L 225.794,409.406 L 225.829,409.336 L 225.749,409.328 L 225.712,409.398 L 225.622,409.562 L 225.535,409.379 L 225.497,409.302 L 225.417,409.292 Z M 225.964,409.355 C 225.953,409.357 225.944,409.358 225.936,409.362 C 225.924,409.368 225.912,409.374 225.902,409.385 C 225.892,409.393 225.885,409.403 225.878,409.416 C 225.873,409.424 225.872,409.432 225.868,409.442 C 225.866,409.451 225.866,409.462 225.866,409.472 L 225.866,409.75 L 225.936,409.758 L 225.936,409.473 C 225.937,409.464 225.941,409.455 225.945,409.45 C 225.949,409.443 225.955,409.437 225.962,409.433 C 225.97,409.43 225.979,409.428 225.987,409.427 L 226.199,409.45 L 226.199,409.378 L 225.994,409.355 C 225.982,409.354 225.973,409.354 225.964,409.355 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 220.57,415.733 L 220.567,417.785 L 220.907,417.819 L 220.908,416.771 L 221.187,417.075 L 221.438,417.35 L 221.966,417.927 L 222.47,417.978 L 221.64,417.071 L 222.464,415.926 L 222.046,415.884 L 221.389,416.796 L 220.908,416.276 L 220.908,415.768 L 220.57,415.733 Z M 222.637,415.944 L 222.811,416.328 L 223.603,418.094 L 224.4,416.49 L 224.574,416.141 L 224.195,416.103 L 224.02,416.451 L 223.605,417.289 L 223.189,416.366 L 223.017,415.983 L 222.637,415.944 Z M 224.745,416.158 L 224.748,416.158 L 225.008,416.551 L 225.473,417.254 L 225.688,417.575 L 225.947,417.967 L 224.74,417.843 L 224.74,418.21 L 226.208,418.358 L 226.634,418.403 L 226.371,418.009 L 225.9,417.297 L 225.686,416.977 L 225.431,416.595 L 226.644,416.718 L 226.645,416.351 L 225.175,416.203 L 225.173,416.203 L 224.745,416.158 Z M 227.221,416.454 C 227.159,416.477 227.105,416.51 227.059,416.557 C 227.011,416.602 226.976,416.657 226.949,416.721 C 226.923,416.785 226.91,416.857 226.91,416.932 L 226.908,417.877 C 226.908,417.954 226.921,418.026 226.947,418.095 C 226.974,418.164 227.009,418.226 227.057,418.282 C 227.103,418.339 227.157,418.383 227.219,418.417 C 227.28,418.453 227.347,418.474 227.418,418.482 L 228.803,418.623 L 228.803,418.257 L 227.418,418.115 C 227.384,418.112 227.356,418.1 227.331,418.081 C 227.304,418.061 227.284,418.036 227.268,418.008 C 227.253,417.978 227.246,417.945 227.246,417.91 L 227.246,417.719 L 228.465,417.845 L 228.466,417.478 L 227.246,417.354 L 227.246,416.967 C 227.246,416.932 227.254,416.902 227.269,416.876 C 227.286,416.847 227.306,416.827 227.331,416.813 C 227.358,416.799 227.386,416.794 227.42,416.796 L 228.805,416.937 L 228.806,416.571 L 227.42,416.43 C 227.35,416.423 227.283,416.431 227.221,416.454 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 222.573,414.642 L 222.573,415.08 C 222.573,415.104 222.577,415.124 222.585,415.144 C 222.593,415.164 222.605,415.184 222.619,415.2 C 222.633,415.216 222.65,415.229 222.67,415.24 C 222.689,415.249 222.71,415.256 222.733,415.258 L 223.166,415.306 L 223.166,415.198 L 222.733,415.152 C 222.722,415.15 222.714,415.147 222.705,415.141 C 222.697,415.135 222.691,415.129 222.686,415.12 C 222.681,415.111 222.679,415.102 222.679,415.093 L 222.679,415.036 L 223.059,415.075 L 223.059,414.968 L 222.678,414.929 L 222.679,414.655 L 222.573,414.642 Z M 223.251,414.714 L 223.251,415.152 C 223.251,415.173 223.255,415.196 223.263,415.216 C 223.27,415.235 223.282,415.254 223.296,415.271 C 223.31,415.287 223.329,415.3 223.348,415.312 C 223.367,415.322 223.386,415.328 223.41,415.331 L 223.842,415.376 L 223.843,415.268 L 223.41,415.224 C 223.4,415.222 223.391,415.219 223.383,415.214 C 223.374,415.208 223.368,415.2 223.363,415.191 C 223.358,415.182 223.357,415.173 223.357,415.163 L 223.357,415.108 L 223.737,415.147 L 223.737,415.041 L 223.356,415.001 L 223.357,414.724 L 223.251,414.714 Z M 223.929,414.786 L 223.928,415.386 L 224.301,415.425 C 224.323,415.428 224.344,415.425 224.362,415.419 C 224.381,415.413 224.399,415.402 224.413,415.389 L 224.413,415.388 C 224.429,415.375 224.44,415.359 224.449,415.34 C 224.457,415.322 224.461,415.3 224.461,415.279 C 224.461,415.256 224.457,415.235 224.45,415.216 C 224.441,415.196 224.431,415.178 224.416,415.162 C 224.402,415.146 224.387,415.132 224.368,415.123 C 224.354,415.113 224.339,415.108 224.323,415.105 C 224.321,415.105 224.32,415.105 224.318,415.105 L 224.318,415.104 L 224.033,415.072 L 224.034,414.798 L 223.929,414.786 Z M 224.545,414.848 L 224.545,415.027 C 224.545,415.039 224.546,415.049 224.548,415.062 C 224.55,415.073 224.555,415.086 224.558,415.097 C 224.568,415.119 224.58,415.137 224.594,415.155 C 224.61,415.173 224.626,415.188 224.648,415.2 C 224.668,415.209 224.69,415.218 224.713,415.221 L 224.966,415.247 L 224.969,415.247 C 224.981,415.251 224.993,415.255 225.001,415.263 C 225.011,415.27 225.018,415.279 225.023,415.291 C 225.029,415.3 225.031,415.312 225.031,415.325 C 225.031,415.338 225.028,415.349 225.022,415.359 C 225.016,415.368 225.008,415.376 224.998,415.382 C 224.988,415.387 224.975,415.389 224.962,415.388 L 224.546,415.344 L 224.546,415.451 L 224.961,415.494 C 224.988,415.497 225.011,415.494 225.031,415.488 C 225.052,415.481 225.07,415.47 225.087,415.456 C 225.103,415.442 225.116,415.425 225.123,415.403 C 225.132,415.384 225.136,415.361 225.137,415.336 C 225.137,415.324 225.136,415.312 225.133,415.299 C 225.131,415.287 225.128,415.276 225.123,415.265 C 225.119,415.254 225.114,415.245 225.108,415.235 C 225.103,415.226 225.096,415.218 225.088,415.209 C 225.072,415.19 225.054,415.175 225.034,415.163 C 225.013,415.152 224.994,415.145 224.968,415.141 L 224.965,415.141 C 224.965,415.141 224.963,415.141 224.962,415.141 L 224.713,415.115 C 224.702,415.112 224.691,415.108 224.682,415.1 C 224.671,415.094 224.665,415.083 224.659,415.072 C 224.654,415.062 224.652,415.051 224.652,415.04 L 224.652,414.969 L 225.135,415.019 L 225.136,414.912 L 224.717,414.867 L 224.545,414.848 Z M 225.635,414.966 L 225.633,415.563 L 225.739,415.492 L 226.121,415.235 L 226.121,415.616 L 226.227,415.627 L 226.227,415.029 L 226.121,415.1 L 225.739,415.357 L 225.741,414.977 L 225.635,414.966 Z M 226.311,415.038 L 226.311,415.638 L 226.685,415.678 C 226.706,415.68 226.727,415.678 226.746,415.67 C 226.767,415.665 226.783,415.654 226.797,415.641 C 226.811,415.627 226.823,415.612 226.832,415.593 C 226.839,415.574 226.843,415.554 226.844,415.532 C 226.844,415.509 226.839,415.488 226.832,415.467 C 226.824,415.448 226.813,415.43 226.799,415.414 C 226.786,415.398 226.769,415.385 226.752,415.374 C 226.736,415.365 226.721,415.359 226.705,415.356 L 226.791,415.196 L 226.845,415.095 L 226.726,415.081 L 226.672,415.182 L 226.614,415.288 L 226.612,415.293 C 226.603,415.309 226.591,415.32 226.575,415.326 C 226.559,415.334 226.542,415.337 226.522,415.335 L 226.418,415.324 L 226.418,415.048 L 226.311,415.038 Z M 224.033,415.178 L 224.302,415.207 C 224.305,415.207 224.309,415.208 224.314,415.209 C 224.317,415.211 224.321,415.213 224.324,415.215 L 224.324,415.215 C 224.334,415.221 224.342,415.228 224.347,415.238 C 224.354,415.247 224.355,415.256 224.355,415.267 C 224.355,415.278 224.354,415.285 224.35,415.292 C 224.347,415.298 224.344,415.304 224.341,415.306 C 224.336,415.309 224.331,415.312 224.325,415.314 C 224.32,415.318 224.311,415.319 224.302,415.318 L 224.033,415.288 L 224.033,415.178 Z M 226.418,415.43 L 226.685,415.459 C 226.688,415.459 226.692,415.46 226.697,415.461 C 226.7,415.464 226.703,415.465 226.706,415.467 C 226.717,415.472 226.724,415.48 226.73,415.489 C 226.736,415.499 226.74,415.509 226.74,415.52 C 226.739,415.532 226.736,415.538 226.732,415.545 C 226.729,415.551 226.726,415.556 226.723,415.558 C 226.719,415.562 226.714,415.564 226.708,415.567 C 226.701,415.57 226.695,415.57 226.685,415.57 L 226.417,415.541 L 226.418,415.43 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 220.687,413.446 L 220.686,413.844 L 220.929,413.869 C 220.943,413.872 220.958,413.869 220.97,413.865 C 220.981,413.86 220.993,413.855 221.002,413.845 L 221.003,413.845 C 221.013,413.835 221.02,413.826 221.025,413.814 C 221.031,413.801 221.033,413.788 221.033,413.774 C 221.033,413.757 221.031,413.743 221.025,413.73 C 221.021,413.717 221.014,413.706 221.005,413.695 C 220.995,413.684 220.984,413.675 220.972,413.669 C 220.963,413.663 220.953,413.659 220.943,413.658 C 220.942,413.658 220.94,413.656 220.94,413.656 L 220.94,413.656 L 220.756,413.636 L 220.756,413.454 L 220.687,413.446 Z M 221.088,413.486 L 221.087,413.885 L 221.33,413.911 C 221.347,413.911 221.359,413.911 221.371,413.907 C 221.384,413.902 221.394,413.896 221.404,413.886 C 221.413,413.878 221.419,413.867 221.427,413.855 C 221.431,413.843 221.433,413.829 221.434,413.815 C 221.433,413.8 221.431,413.786 221.428,413.774 C 221.42,413.759 221.414,413.748 221.405,413.736 C 221.395,413.726 221.386,413.717 221.374,413.71 C 221.365,413.705 221.355,413.7 221.345,413.698 L 221.398,413.591 L 221.434,413.522 L 221.358,413.515 L 221.321,413.582 L 221.286,413.653 L 221.284,413.656 C 221.278,413.667 221.269,413.674 221.259,413.679 C 221.249,413.684 221.238,413.685 221.226,413.684 L 221.156,413.677 L 221.156,413.494 L 221.088,413.486 Z M 221.593,413.556 C 221.572,413.563 221.551,413.576 221.533,413.592 C 221.514,413.608 221.501,413.628 221.492,413.652 C 221.482,413.675 221.477,413.7 221.476,413.728 C 221.477,413.755 221.482,413.782 221.491,413.806 C 221.501,413.831 221.514,413.853 221.533,413.874 C 221.55,413.894 221.572,413.911 221.593,413.924 C 221.617,413.936 221.642,413.943 221.67,413.946 C 221.695,413.949 221.721,413.946 221.745,413.938 C 221.766,413.93 221.788,413.919 221.805,413.903 C 221.823,413.886 221.837,413.866 221.846,413.843 C 221.856,413.82 221.862,413.795 221.862,413.768 C 221.862,413.739 221.856,413.713 221.846,413.687 C 221.837,413.664 221.824,413.641 221.805,413.62 C 221.789,413.601 221.767,413.584 221.745,413.572 C 221.721,413.559 221.695,413.551 221.67,413.549 L 221.63,413.55 C 221.618,413.55 221.606,413.552 221.593,413.556 Z M 222.061,413.588 L 222.061,413.916 L 221.903,413.899 L 221.903,413.969 L 222.287,414.011 L 222.287,413.94 L 222.131,413.924 L 222.132,413.595 L 222.061,413.588 Z M 221.67,413.619 C 221.686,413.62 221.702,413.627 221.717,413.634 C 221.734,413.643 221.746,413.653 221.756,413.666 C 221.767,413.679 221.778,413.693 221.784,413.71 C 221.79,413.725 221.794,413.743 221.794,413.76 C 221.794,413.778 221.79,413.794 221.784,413.809 C 221.778,413.823 221.767,413.836 221.756,413.846 C 221.746,413.857 221.733,413.865 221.717,413.869 C 221.702,413.875 221.686,413.877 221.67,413.875 C 221.652,413.874 221.636,413.868 221.62,413.859 C 221.606,413.852 221.592,413.842 221.581,413.829 C 221.571,413.816 221.562,413.802 221.555,413.785 C 221.549,413.769 221.546,413.752 221.546,413.735 C 221.546,413.717 221.549,413.7 221.555,413.685 C 221.562,413.671 221.572,413.659 221.582,413.647 C 221.592,413.637 221.606,413.629 221.62,413.625 C 221.636,413.62 221.653,413.618 221.67,413.619 Z M 222.407,413.633 C 222.395,413.636 222.385,413.643 222.374,413.653 C 222.365,413.662 222.358,413.672 222.353,413.685 C 222.347,413.698 222.345,413.711 222.345,413.726 L 222.345,413.91 C 222.345,413.924 222.347,413.938 222.352,413.951 C 222.358,413.965 222.365,413.976 222.374,413.989 C 222.384,414 222.394,414.008 222.407,414.015 C 222.419,414.021 222.432,414.027 222.447,414.027 L 222.728,414.056 L 222.728,413.987 L 222.447,413.956 C 222.442,413.955 222.434,413.953 222.429,413.949 C 222.424,413.945 222.419,413.94 222.417,413.935 C 222.413,413.929 222.411,413.923 222.411,413.916 L 222.411,413.879 L 222.66,413.905 L 222.66,413.833 L 222.411,413.808 L 222.413,413.733 C 222.413,413.726 222.413,413.72 222.418,413.715 C 222.42,413.71 222.425,413.706 222.43,413.704 C 222.437,413.7 222.442,413.699 222.447,413.7 L 222.73,413.73 L 222.73,413.659 L 222.448,413.629 C 222.433,413.627 222.419,413.629 222.407,413.633 Z M 222.896,413.691 C 222.871,413.698 222.852,413.711 222.835,413.727 C 222.817,413.743 222.803,413.764 222.793,413.787 C 222.784,413.809 222.778,413.834 222.778,413.862 C 222.778,413.89 222.784,413.917 222.793,413.941 C 222.802,413.966 222.817,413.989 222.835,414.009 C 222.852,414.03 222.871,414.045 222.896,414.058 C 222.919,414.07 222.944,414.078 222.97,414.081 L 223.162,414.102 L 223.162,414.03 L 222.97,414.01 C 222.954,414.008 222.937,414.003 222.922,413.995 C 222.908,413.989 222.894,413.976 222.883,413.963 C 222.871,413.95 222.863,413.937 222.856,413.921 C 222.85,413.905 222.846,413.887 222.846,413.869 C 222.846,413.852 222.85,413.835 222.857,413.82 C 222.863,413.806 222.871,413.794 222.883,413.783 C 222.895,413.774 222.909,413.765 222.923,413.759 C 222.937,413.754 222.954,413.752 222.971,413.754 L 223.162,413.775 L 223.162,413.704 L 222.971,413.684 L 222.933,413.684 C 222.92,413.684 222.908,413.687 222.896,413.691 Z M 220.756,413.708 L 220.93,413.724 C 220.933,413.725 220.936,413.726 220.938,413.726 C 220.94,413.727 220.942,413.729 220.945,413.73 C 220.95,413.734 220.956,413.738 220.96,413.744 C 220.963,413.75 220.965,413.757 220.965,413.766 C 220.965,413.771 220.963,413.777 220.961,413.782 C 220.959,413.786 220.957,413.788 220.955,413.79 C 220.952,413.793 220.949,413.795 220.946,413.796 C 220.94,413.798 220.937,413.8 220.93,413.798 L 220.756,413.781 L 220.756,413.708 Z M 223.376,413.725 L 223.376,414.053 L 223.219,414.036 L 223.219,414.108 L 223.603,414.148 L 223.603,414.075 L 223.445,414.059 L 223.445,413.732 L 223.376,413.725 Z M 221.156,413.748 L 221.33,413.766 C 221.334,413.767 221.335,413.768 221.339,413.768 C 221.341,413.769 221.344,413.769 221.347,413.77 C 221.352,413.776 221.357,413.779 221.361,413.787 C 221.365,413.792 221.366,413.8 221.366,413.807 C 221.366,413.813 221.365,413.818 221.363,413.822 C 221.361,413.827 221.358,413.83 221.355,413.832 C 221.353,413.833 221.35,413.835 221.347,413.837 C 221.343,413.84 221.337,413.84 221.33,413.84 L 221.156,413.82 L 221.156,413.748 Z M 223.658,413.754 L 223.658,414.152 L 223.728,414.16 L 223.728,413.763 L 223.658,413.754 Z M 223.957,413.786 L 223.795,414.097 L 223.76,414.163 L 223.837,414.17 L 223.872,414.104 L 223.956,413.942 L 224.04,414.122 L 224.076,414.195 L 224.153,414.205 L 224.117,414.13 L 223.957,413.786 Z M 224.251,413.824 C 224.239,413.829 224.227,413.834 224.219,413.843 C 224.208,413.852 224.199,413.863 224.196,413.876 C 224.19,413.888 224.186,413.902 224.186,413.917 L 224.186,414.1 C 224.186,414.115 224.189,414.129 224.195,414.143 C 224.199,414.156 224.208,414.168 224.218,414.179 C 224.226,414.189 224.238,414.199 224.25,414.207 C 224.262,414.214 224.277,414.217 224.29,414.219 L 224.571,414.247 L 224.571,414.175 L 224.29,414.148 C 224.283,414.147 224.277,414.143 224.271,414.141 C 224.267,414.137 224.264,414.132 224.259,414.126 C 224.257,414.121 224.255,414.115 224.255,414.108 L 224.255,414.07 L 224.503,414.097 L 224.503,414.026 L 224.256,414.001 L 224.256,413.924 C 224.256,413.917 224.258,413.911 224.26,413.907 C 224.264,413.901 224.267,413.897 224.273,413.894 C 224.278,413.892 224.283,413.891 224.291,413.892 L 224.572,413.921 L 224.572,413.848 L 224.291,413.82 C 224.277,413.819 224.263,413.82 224.251,413.824 Z M 224.894,413.882 L 224.894,414.279 L 225.136,414.305 C 225.151,414.306 225.164,414.305 225.176,414.3 C 225.189,414.297 225.201,414.29 225.21,414.281 C 225.22,414.272 225.226,414.261 225.233,414.249 C 225.237,414.237 225.239,414.224 225.239,414.209 C 225.239,414.193 225.238,414.18 225.233,414.167 C 225.228,414.154 225.221,414.142 225.212,414.131 C 225.203,414.122 225.194,414.111 225.18,414.106 C 225.171,414.1 225.16,414.095 225.15,414.094 L 225.207,413.985 L 225.24,413.917 L 225.162,413.91 L 225.129,413.976 L 225.093,414.046 L 225.091,414.051 C 225.085,414.059 225.075,414.067 225.064,414.072 C 225.055,414.077 225.044,414.079 225.032,414.078 L 224.961,414.071 L 224.962,413.888 L 224.894,413.882 Z M 225.36,413.94 C 225.348,413.943 225.336,413.95 225.328,413.959 C 225.318,413.968 225.311,413.977 225.305,413.991 C 225.299,414.003 225.297,414.017 225.297,414.032 L 225.297,414.216 C 225.297,414.231 225.299,414.245 225.305,414.258 C 225.31,414.271 225.318,414.283 225.328,414.294 C 225.336,414.305 225.347,414.314 225.36,414.322 C 225.372,414.328 225.386,414.333 225.399,414.333 L 225.681,414.362 L 225.681,414.291 L 225.399,414.261 C 225.394,414.261 225.387,414.259 225.381,414.255 C 225.378,414.252 225.374,414.247 225.37,414.242 C 225.367,414.235 225.365,414.229 225.365,414.222 L 225.365,414.185 L 225.613,414.211 L 225.613,414.139 L 225.365,414.115 L 225.365,414.04 C 225.365,414.033 225.367,414.027 225.37,414.021 C 225.374,414.017 225.378,414.013 225.383,414.01 C 225.387,414.007 225.394,414.007 225.399,414.007 L 225.682,414.035 L 225.682,413.964 L 225.4,413.935 C 225.386,413.934 225.373,413.936 225.36,413.94 Z M 225.811,413.989 C 225.797,413.993 225.784,414.001 225.773,414.01 C 225.762,414.021 225.754,414.034 225.746,414.047 C 225.741,414.062 225.736,414.078 225.736,414.097 L 225.807,414.103 C 225.807,414.093 225.808,414.083 225.813,414.075 C 225.818,414.068 225.824,414.061 225.832,414.058 C 225.839,414.054 225.847,414.053 225.859,414.054 L 225.98,414.065 C 225.99,414.067 225.998,414.07 226.007,414.075 C 226.013,414.082 226.02,414.088 226.025,414.098 C 226.029,414.108 226.033,414.117 226.033,414.126 C 226.033,414.137 226.029,414.145 226.025,414.152 C 226.02,414.161 226.013,414.166 226.007,414.169 C 225.997,414.175 225.99,414.175 225.98,414.175 L 225.839,414.161 L 225.82,414.161 C 225.813,414.162 225.807,414.163 225.801,414.164 C 225.788,414.169 225.779,414.175 225.769,414.182 C 225.765,414.188 225.759,414.193 225.755,414.199 C 225.749,414.208 225.745,414.217 225.742,414.227 C 225.738,414.236 225.736,414.247 225.736,414.258 L 225.736,414.26 C 225.736,414.275 225.739,414.289 225.745,414.303 C 225.749,414.318 225.757,414.329 225.768,414.34 C 225.778,414.35 225.788,414.359 225.801,414.366 C 225.812,414.373 225.826,414.376 225.839,414.379 L 225.996,414.395 C 226.01,414.396 226.024,414.395 226.036,414.39 C 226.049,414.387 226.059,414.38 226.07,414.371 C 226.079,414.362 226.087,414.351 226.092,414.34 C 226.098,414.327 226.1,414.314 226.1,414.298 L 226.1,414.297 L 226.032,414.288 L 226.032,414.29 C 226.032,414.297 226.029,414.303 226.027,414.308 C 226.023,414.314 226.02,414.318 226.014,414.322 C 226.009,414.324 226.003,414.324 225.996,414.324 L 225.839,414.307 C 225.833,414.306 225.826,414.304 225.821,414.3 C 225.818,414.297 225.813,414.291 225.809,414.285 C 225.807,414.28 225.806,414.273 225.806,414.267 L 225.806,414.265 C 225.806,414.258 225.807,414.253 225.809,414.247 C 225.813,414.242 225.818,414.237 225.823,414.235 C 225.826,414.233 225.833,414.232 225.839,414.232 L 225.98,414.247 L 226.005,414.247 C 226.013,414.245 226.021,414.244 226.028,414.241 C 226.045,414.235 226.058,414.227 226.068,414.216 C 226.07,414.215 226.071,414.215 226.071,414.214 C 226.071,414.213 226.071,414.213 226.072,414.211 C 226.082,414.201 226.088,414.189 226.093,414.175 C 226.099,414.163 226.101,414.149 226.101,414.134 C 226.101,414.117 226.098,414.1 226.091,414.083 C 226.086,414.068 226.077,414.054 226.065,414.041 C 226.053,414.028 226.041,414.018 226.026,414.01 C 226.011,414.002 225.996,413.997 225.98,413.995 L 225.859,413.981 C 225.841,413.98 225.826,413.981 225.811,413.989 Z M 226.157,414.014 L 226.155,414.412 L 226.399,414.438 C 226.414,414.44 226.427,414.438 226.439,414.433 C 226.452,414.429 226.462,414.422 226.473,414.413 L 226.473,414.413 C 226.482,414.403 226.49,414.392 226.495,414.38 C 226.499,414.368 226.502,414.355 226.502,414.34 C 226.502,414.325 226.5,414.311 226.495,414.298 C 226.491,414.284 226.484,414.272 226.474,414.261 C 226.465,414.251 226.455,414.242 226.442,414.235 C 226.433,414.231 226.424,414.227 226.414,414.224 C 226.412,414.224 226.411,414.224 226.41,414.224 L 226.41,414.223 L 226.226,414.204 L 226.226,414.021 L 226.157,414.014 Z M 226.559,414.056 L 226.558,414.453 L 226.625,414.46 L 226.627,414.062 L 226.559,414.056 Z M 226.682,414.066 L 226.682,414.466 L 226.924,414.49 C 226.939,414.492 226.952,414.49 226.966,414.485 C 226.977,414.482 226.988,414.475 226.998,414.467 C 227.008,414.457 227.014,414.447 227.02,414.434 C 227.025,414.422 227.027,414.408 227.027,414.394 C 227.027,414.379 227.025,414.365 227.021,414.352 C 227.014,414.338 227.008,414.327 227,414.317 C 226.99,414.306 226.979,414.297 226.968,414.289 C 226.958,414.284 226.948,414.281 226.938,414.278 L 226.994,414.169 L 227.027,414.103 L 226.951,414.095 L 226.916,414.162 L 226.879,414.233 L 226.878,414.235 C 226.872,414.246 226.864,414.253 226.853,414.258 C 226.843,414.263 226.832,414.266 226.82,414.265 L 226.751,414.257 L 226.751,414.073 L 226.682,414.066 Z M 227.061,414.108 L 227.098,414.182 L 227.258,414.525 L 227.42,414.216 L 227.456,414.149 L 227.378,414.14 L 227.343,414.208 L 227.258,414.369 L 227.174,414.189 L 227.138,414.116 L 227.061,414.108 Z M 224.961,414.143 L 225.136,414.161 C 225.14,414.162 225.142,414.162 225.144,414.163 C 225.146,414.163 225.149,414.164 225.151,414.165 C 225.156,414.169 225.162,414.175 225.167,414.181 C 225.17,414.188 225.172,414.193 225.172,414.201 C 225.172,414.208 225.171,414.215 225.168,414.218 C 225.166,414.222 225.162,414.226 225.161,414.227 C 225.159,414.229 225.155,414.231 225.153,414.232 C 225.149,414.233 225.147,414.234 225.145,414.234 L 225.136,414.234 L 224.961,414.216 L 224.961,414.143 Z M 227.647,414.167 L 227.647,414.495 L 227.487,414.479 L 227.487,414.55 L 227.873,414.59 L 227.873,414.518 L 227.714,414.502 L 227.714,414.175 L 227.647,414.167 Z M 228.032,414.224 C 228.008,414.232 227.989,414.244 227.971,414.259 C 227.955,414.276 227.939,414.295 227.929,414.319 C 227.92,414.342 227.914,414.367 227.914,414.395 C 227.914,414.422 227.919,414.449 227.929,414.473 C 227.939,414.498 227.954,414.522 227.971,414.542 C 227.989,414.562 228.008,414.577 228.031,414.591 C 228.055,414.604 228.081,414.612 228.106,414.614 C 228.134,414.616 228.158,414.614 228.182,414.606 C 228.205,414.599 228.227,414.586 228.244,414.569 C 228.26,414.553 228.274,414.534 228.285,414.51 C 228.295,414.487 228.299,414.462 228.3,414.434 C 228.299,414.407 228.295,414.381 228.286,414.356 C 228.274,414.331 228.26,414.308 228.244,414.287 C 228.228,414.268 228.206,414.252 228.183,414.24 C 228.159,414.227 228.135,414.219 228.108,414.216 L 228.069,414.216 C 228.056,414.218 228.045,414.22 228.032,414.224 Z M 228.342,414.24 L 228.341,414.636 L 228.584,414.663 C 228.597,414.663 228.611,414.661 228.624,414.658 C 228.637,414.654 228.648,414.647 228.658,414.639 C 228.667,414.629 228.673,414.619 228.679,414.607 C 228.685,414.594 228.686,414.581 228.686,414.566 C 228.686,414.551 228.685,414.538 228.68,414.524 C 228.675,414.511 228.669,414.499 228.658,414.488 C 228.649,414.477 228.639,414.469 228.628,414.461 C 228.617,414.456 228.608,414.453 228.596,414.451 L 228.654,414.342 L 228.687,414.274 L 228.61,414.266 L 228.576,414.335 L 228.538,414.405 L 228.537,414.408 C 228.531,414.418 228.524,414.427 228.512,414.432 C 228.503,414.435 228.491,414.438 228.478,414.436 L 228.41,414.43 L 228.41,414.247 L 228.342,414.24 Z M 226.225,414.274 L 226.399,414.292 C 226.401,414.292 226.405,414.293 226.408,414.294 C 226.409,414.295 226.412,414.295 226.414,414.297 L 226.414,414.298 C 226.42,414.301 226.426,414.306 226.429,414.314 C 226.433,414.32 226.434,414.326 226.435,414.334 C 226.434,414.34 226.433,414.346 226.431,414.35 C 226.428,414.354 226.427,414.356 226.424,414.358 C 226.421,414.361 226.42,414.362 226.415,414.364 C 226.411,414.366 226.407,414.366 226.399,414.366 L 226.225,414.348 L 226.225,414.274 Z M 228.108,414.285 C 228.124,414.288 228.14,414.293 228.155,414.302 C 228.169,414.31 228.184,414.322 228.195,414.334 C 228.206,414.347 228.215,414.361 228.221,414.376 C 228.229,414.393 228.231,414.409 228.231,414.428 C 228.231,414.446 228.228,414.461 228.221,414.476 C 228.215,414.492 228.206,414.504 228.195,414.514 C 228.183,414.524 228.169,414.534 228.155,414.538 C 228.14,414.543 228.124,414.544 228.106,414.543 C 228.09,414.541 228.073,414.536 228.059,414.527 C 228.045,414.52 228.031,414.509 228.02,414.497 C 228.008,414.483 227.999,414.469 227.994,414.453 C 227.987,414.437 227.984,414.419 227.984,414.402 C 227.984,414.383 227.987,414.368 227.994,414.353 C 227.999,414.338 228.008,414.326 228.02,414.316 C 228.031,414.305 228.045,414.297 228.059,414.292 C 228.074,414.285 228.09,414.284 228.108,414.285 Z M 226.751,414.328 L 226.924,414.347 C 226.927,414.347 226.93,414.348 226.931,414.349 C 226.934,414.35 226.936,414.35 226.939,414.351 C 226.945,414.355 226.95,414.36 226.954,414.366 C 226.958,414.373 226.96,414.379 226.96,414.386 C 226.96,414.393 226.958,414.399 226.956,414.402 C 226.954,414.406 226.951,414.409 226.949,414.412 C 226.946,414.414 226.943,414.415 226.939,414.417 C 226.936,414.418 226.93,414.419 226.924,414.419 L 226.751,414.401 L 226.751,414.328 Z M 228.41,414.499 L 228.584,414.518 C 228.587,414.518 228.589,414.519 228.591,414.52 C 228.594,414.522 228.595,414.522 228.597,414.523 C 228.604,414.526 228.609,414.531 228.614,414.538 C 228.617,414.544 228.619,414.55 228.619,414.558 C 228.619,414.565 228.617,414.569 228.616,414.575 C 228.614,414.578 228.61,414.582 228.608,414.582 C 228.606,414.585 228.602,414.588 228.599,414.589 C 228.595,414.591 228.59,414.592 228.584,414.591 L 228.41,414.574 L 228.41,414.499 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 215.818,426.777 L 215.644,426.937 L 233.052,428.073 L 233.141,428.035 C 233.171,428.024 233.199,427.997 233.199,427.951 L 233.199,427.908 L 215.818,426.777 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 215.644,426.937 L 215.643,403.486 L 215.731,403.402 L 215.818,403.415 L 215.818,426.777 L 215.644,426.937 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--SILVER_GREY, .KN95_NR_individuals--SILVER_GREY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.434 -475.375 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.846' gradientTransform='translate(30.076 447.904)'%3E%3Cstop offset='0' stop-color='%23b5b5b2'/%3E%3Cstop offset='1' stop-color='%23eeeeea'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.92' gradientTransform='translate(26.537 448.519)'%3E%3Cstop offset='0' stop-color='%23969694'/%3E%3Cstop offset='1' stop-color='%23cacac7'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.1' gradientTransform='translate(30.07 467.888)'%3E%3Cstop offset='0' stop-color='%23b2b2af'/%3E%3Cstop offset='1' stop-color='%23cececb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.229' gradientTransform='translate(25.397 469.943)'%3E%3Cstop offset='0' stop-color='%2390908e'/%3E%3Cstop offset='1' stop-color='%23b2b2af'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(38.389 469.758) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23babab7'/%3E%3Cstop offset='1' stop-color='%23d4d4d1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.244 457.647) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b0b0ad'/%3E%3Cstop offset='1' stop-color='%23cacac7'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.163 458.646) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.163,445.49 L 27.163,468.976 L 44.61,470.096 C 44.622,470.081 44.632,470.062 44.632,470.038 L 44.632,447.857 L 27.163,445.49 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.163,445.49 L 23.699,448.853 L 23.698,470.874 L 27.163,468.976 L 27.163,445.49 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.163,468.976 L 23.698,470.874 L 40.63,471.802 L 44.574,470.123 C 44.587,470.117 44.6,470.109 44.61,470.096 L 27.163,468.976 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.076,468.708 L 23.696,470.598 L 23.695,470.874 L 27.076,469.024 L 27.076,468.708 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.204,451.091 L 34.204,451.502 L 34.276,451.51 L 34.276,451.099 L 34.204,451.091 Z M 34.334,451.106 L 34.334,451.513 L 34.406,451.467 L 34.668,451.291 L 34.668,451.551 L 34.739,451.559 L 34.739,451.151 L 34.668,451.198 L 34.406,451.373 L 34.406,451.113 L 34.334,451.106 Z M 34.797,451.156 L 34.797,451.567 L 35,451.589 C 35.028,451.591 35.054,451.589 35.077,451.581 C 35.102,451.573 35.124,451.561 35.143,451.543 C 35.161,451.526 35.175,451.507 35.185,451.484 C 35.196,451.46 35.202,451.433 35.202,451.405 C 35.202,451.38 35.198,451.356 35.189,451.332 C 35.18,451.309 35.168,451.287 35.153,451.268 C 35.152,451.266 35.15,451.263 35.148,451.261 C 35.146,451.259 35.145,451.256 35.141,451.255 C 35.124,451.233 35.102,451.216 35.077,451.203 C 35.055,451.19 35.029,451.181 35,451.178 L 34.797,451.156 Z M 35.259,451.206 L 35.259,451.616 L 35.333,451.623 L 35.333,451.215 L 35.259,451.206 Z M 34.869,451.236 L 35,451.25 C 35.017,451.254 35.034,451.259 35.049,451.268 C 35.066,451.275 35.079,451.287 35.091,451.3 C 35.102,451.313 35.113,451.327 35.12,451.345 C 35.126,451.362 35.129,451.379 35.13,451.397 C 35.129,451.416 35.126,451.431 35.12,451.446 C 35.113,451.463 35.102,451.476 35.091,451.486 C 35.079,451.497 35.066,451.505 35.049,451.51 C 35.034,451.515 35.017,451.516 35,451.514 L 34.869,451.5 L 34.869,451.236 Z M 35.574,451.242 L 35.403,451.558 L 35.366,451.629 L 35.448,451.636 L 35.484,451.568 L 35.574,451.403 L 35.662,451.588 L 35.698,451.663 L 35.779,451.674 L 35.742,451.596 L 35.574,451.242 Z M 35.815,451.268 L 35.815,451.677 L 35.888,451.685 L 35.888,451.275 L 35.815,451.268 Z M 35.946,451.281 L 35.946,451.691 L 36.148,451.713 C 36.176,451.715 36.202,451.713 36.227,451.706 C 36.251,451.698 36.272,451.686 36.29,451.668 C 36.31,451.652 36.323,451.631 36.334,451.608 C 36.345,451.585 36.35,451.558 36.35,451.53 C 36.35,451.505 36.346,451.481 36.338,451.458 C 36.329,451.433 36.318,451.412 36.302,451.392 C 36.3,451.39 36.298,451.388 36.296,451.386 C 36.295,451.384 36.293,451.381 36.289,451.379 C 36.271,451.358 36.251,451.341 36.227,451.327 C 36.202,451.314 36.176,451.306 36.148,451.302 L 35.946,451.281 Z M 36.534,451.362 C 36.508,451.369 36.486,451.381 36.468,451.397 C 36.449,451.415 36.435,451.435 36.424,451.459 C 36.415,451.482 36.409,451.509 36.409,451.536 L 36.409,451.74 L 36.48,451.749 L 36.48,451.544 C 36.48,451.525 36.484,451.51 36.49,451.494 C 36.497,451.48 36.507,451.467 36.52,451.456 C 36.532,451.444 36.545,451.436 36.561,451.431 C 36.576,451.426 36.592,451.423 36.611,451.426 C 36.629,451.429 36.646,451.433 36.661,451.442 C 36.677,451.449 36.691,451.462 36.703,451.476 C 36.714,451.488 36.724,451.504 36.73,451.52 C 36.738,451.537 36.741,451.554 36.741,451.573 L 36.741,451.777 L 36.814,451.786 L 36.814,451.581 C 36.814,451.551 36.808,451.525 36.798,451.5 C 36.786,451.473 36.773,451.448 36.753,451.429 C 36.736,451.409 36.714,451.391 36.689,451.378 C 36.666,451.365 36.639,451.357 36.611,451.353 C 36.582,451.351 36.557,451.353 36.534,451.362 Z M 36.017,451.362 L 36.148,451.377 C 36.165,451.378 36.181,451.383 36.198,451.391 C 36.214,451.4 36.228,451.41 36.24,451.423 C 36.252,451.437 36.261,451.454 36.267,451.47 C 36.274,451.486 36.277,451.504 36.278,451.521 C 36.277,451.539 36.274,451.557 36.267,451.572 C 36.261,451.588 36.252,451.601 36.24,451.611 C 36.228,451.622 36.214,451.629 36.198,451.635 C 36.181,451.64 36.165,451.641 36.148,451.639 L 36.017,451.625 L 36.017,451.362 Z M 36.849,451.379 L 36.885,451.457 L 37.054,451.811 L 37.225,451.494 L 37.261,451.423 L 37.181,451.416 L 37.144,451.485 L 37.054,451.649 L 36.967,451.465 L 36.929,451.388 L 36.849,451.379 Z M 37.396,451.442 C 37.385,451.443 37.377,451.445 37.368,451.448 C 37.355,451.455 37.344,451.462 37.334,451.472 C 37.325,451.481 37.316,451.49 37.31,451.502 C 37.306,451.511 37.303,451.52 37.301,451.528 C 37.298,451.538 37.297,451.547 37.297,451.558 L 37.297,451.837 L 37.368,451.845 L 37.368,451.558 C 37.37,451.551 37.372,451.543 37.377,451.537 C 37.381,451.53 37.386,451.525 37.394,451.521 C 37.402,451.517 37.411,451.515 37.418,451.514 L 37.631,451.537 L 37.631,451.465 L 37.425,451.442 C 37.415,451.44 37.405,451.442 37.396,451.442 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.002,457.82 L 32,459.873 L 32.338,459.906 L 32.34,458.859 L 32.619,459.162 L 32.87,459.436 L 33.398,460.014 L 33.901,460.066 L 33.072,459.157 L 33.896,458.013 L 33.478,457.972 L 32.821,458.884 L 32.34,458.362 L 32.34,457.855 L 32.002,457.82 Z M 34.068,458.031 L 34.242,458.415 L 35.035,460.182 L 35.832,458.578 L 36.005,458.228 L 35.627,458.19 L 35.453,458.538 L 35.036,459.375 L 34.621,458.453 L 34.449,458.072 L 34.068,458.031 Z M 36.177,458.246 L 36.179,458.246 L 36.44,458.638 L 36.905,459.342 L 37.121,459.662 L 37.379,460.054 L 36.172,459.93 L 36.172,460.297 L 37.64,460.446 L 38.065,460.488 L 37.802,460.096 L 37.331,459.384 L 37.119,459.063 L 36.863,458.682 L 38.076,458.805 L 38.077,458.438 L 36.608,458.29 L 36.604,458.29 L 36.177,458.246 Z M 38.652,458.541 C 38.592,458.563 38.537,458.597 38.49,458.644 C 38.444,458.689 38.407,458.744 38.381,458.808 C 38.355,458.872 38.342,458.943 38.341,459.02 L 38.34,459.963 C 38.34,460.04 38.352,460.113 38.379,460.183 C 38.406,460.252 38.441,460.314 38.489,460.37 C 38.535,460.425 38.589,460.471 38.651,460.505 C 38.712,460.54 38.779,460.562 38.85,460.569 L 40.235,460.709 L 40.235,460.343 L 38.85,460.202 C 38.817,460.199 38.788,460.188 38.762,460.169 C 38.736,460.149 38.715,460.124 38.7,460.095 C 38.684,460.065 38.677,460.032 38.677,459.997 L 38.677,459.807 L 39.897,459.931 L 39.897,459.565 L 38.677,459.441 L 38.677,459.053 C 38.677,459.019 38.685,458.989 38.702,458.963 C 38.717,458.936 38.738,458.914 38.764,458.901 C 38.79,458.886 38.818,458.881 38.852,458.884 L 40.237,459.025 L 40.238,458.659 L 38.852,458.517 C 38.781,458.511 38.715,458.518 38.652,458.541 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.005,456.729 L 34.005,457.167 C 34.005,457.19 34.01,457.211 34.017,457.232 C 34.025,457.252 34.036,457.271 34.051,457.286 C 34.066,457.304 34.082,457.316 34.102,457.327 C 34.122,457.336 34.142,457.343 34.164,457.346 L 34.597,457.392 L 34.597,457.284 L 34.164,457.239 C 34.155,457.238 34.146,457.234 34.137,457.228 C 34.129,457.223 34.124,457.216 34.118,457.207 C 34.113,457.198 34.111,457.189 34.111,457.179 L 34.111,457.123 L 34.492,457.161 L 34.492,457.056 L 34.111,457.015 L 34.111,456.741 L 34.005,456.729 Z M 34.683,456.801 L 34.683,457.239 C 34.683,457.26 34.687,457.283 34.695,457.304 C 34.702,457.323 34.713,457.342 34.728,457.358 C 34.743,457.374 34.76,457.387 34.779,457.398 C 34.798,457.409 34.818,457.415 34.842,457.418 L 35.274,457.463 L 35.275,457.356 L 34.842,457.31 C 34.832,457.31 34.823,457.306 34.815,457.301 C 34.807,457.294 34.801,457.286 34.796,457.278 C 34.791,457.27 34.789,457.26 34.789,457.25 L 34.789,457.195 L 35.169,457.234 L 35.169,457.128 L 34.788,457.088 L 34.789,456.812 L 34.683,456.801 Z M 35.36,456.873 L 35.359,457.473 L 35.733,457.512 C 35.755,457.514 35.776,457.512 35.794,457.505 C 35.814,457.499 35.83,457.49 35.845,457.477 L 35.846,457.475 C 35.862,457.461 35.872,457.446 35.881,457.427 C 35.888,457.409 35.894,457.388 35.894,457.366 C 35.894,457.343 35.888,457.323 35.882,457.304 C 35.873,457.283 35.863,457.264 35.848,457.249 C 35.835,457.233 35.818,457.22 35.8,457.21 C 35.786,457.2 35.771,457.195 35.754,457.192 C 35.753,457.192 35.751,457.192 35.75,457.192 L 35.75,457.19 L 35.466,457.159 L 35.466,456.885 L 35.36,456.873 Z M 35.977,456.935 L 35.977,457.114 C 35.977,457.126 35.978,457.136 35.98,457.148 C 35.983,457.16 35.987,457.173 35.99,457.183 C 35.999,457.207 36.011,457.225 36.027,457.242 C 36.042,457.26 36.059,457.274 36.08,457.285 C 36.1,457.297 36.121,457.304 36.145,457.308 L 36.398,457.335 L 36.401,457.335 C 36.413,457.338 36.424,457.342 36.434,457.349 C 36.443,457.357 36.45,457.366 36.455,457.377 C 36.461,457.387 36.463,457.399 36.463,457.412 C 36.463,457.425 36.46,457.436 36.454,457.446 C 36.448,457.456 36.441,457.463 36.43,457.469 C 36.419,457.474 36.408,457.476 36.394,457.475 L 35.978,457.432 L 35.978,457.538 L 36.394,457.581 C 36.419,457.584 36.443,457.581 36.463,457.574 C 36.483,457.568 36.501,457.557 36.519,457.542 C 36.535,457.53 36.547,457.51 36.555,457.49 C 36.565,457.471 36.569,457.448 36.569,457.423 C 36.569,457.411 36.568,457.398 36.566,457.387 C 36.563,457.374 36.56,457.362 36.554,457.352 C 36.552,457.342 36.547,457.332 36.54,457.323 C 36.535,457.314 36.528,457.304 36.521,457.295 C 36.505,457.277 36.486,457.262 36.466,457.251 C 36.445,457.239 36.424,457.232 36.4,457.228 L 36.398,457.228 C 36.397,457.228 36.396,457.228 36.394,457.227 L 36.145,457.201 C 36.133,457.2 36.123,457.195 36.114,457.187 C 36.104,457.18 36.096,457.17 36.091,457.159 C 36.086,457.148 36.084,457.137 36.084,457.126 L 36.084,457.056 L 36.567,457.105 L 36.567,456.999 L 36.15,456.954 L 35.977,456.935 Z M 37.067,457.052 L 37.067,457.65 L 37.172,457.58 L 37.553,457.323 L 37.553,457.703 L 37.658,457.714 L 37.659,457.116 L 37.553,457.187 L 37.172,457.443 L 37.172,457.064 L 37.067,457.052 Z M 37.744,457.125 L 37.743,457.724 L 38.117,457.764 C 38.138,457.767 38.159,457.765 38.179,457.757 C 38.199,457.751 38.215,457.742 38.229,457.728 C 38.243,457.715 38.255,457.699 38.263,457.68 C 38.271,457.661 38.276,457.64 38.276,457.619 C 38.276,457.596 38.271,457.575 38.264,457.555 C 38.256,457.536 38.245,457.517 38.231,457.501 C 38.218,457.485 38.201,457.472 38.184,457.46 C 38.168,457.452 38.153,457.446 38.137,457.443 L 38.223,457.282 L 38.276,457.181 L 38.158,457.168 L 38.104,457.27 L 38.047,457.375 L 38.044,457.38 C 38.035,457.394 38.023,457.407 38.006,457.413 C 37.992,457.422 37.974,457.424 37.954,457.422 L 37.85,457.411 L 37.851,457.135 L 37.744,457.125 Z M 35.466,457.264 L 35.734,457.293 C 35.737,457.293 35.74,457.294 35.746,457.297 C 35.749,457.298 35.752,457.299 35.756,457.303 L 35.756,457.303 C 35.766,457.308 35.774,457.315 35.779,457.325 C 35.785,457.334 35.788,457.343 35.788,457.355 C 35.788,457.365 35.786,457.373 35.782,457.379 C 35.779,457.385 35.775,457.39 35.772,457.393 C 35.768,457.395 35.764,457.398 35.757,457.4 C 35.751,457.404 35.742,457.405 35.734,457.404 L 35.466,457.375 L 35.466,457.264 Z M 37.85,457.517 L 38.117,457.546 C 38.121,457.547 38.124,457.548 38.128,457.549 C 38.132,457.55 38.135,457.552 38.138,457.554 C 38.148,457.559 38.156,457.568 38.161,457.576 C 38.167,457.586 38.172,457.596 38.172,457.607 C 38.17,457.617 38.168,457.625 38.164,457.633 C 38.16,457.639 38.158,457.642 38.154,457.646 C 38.151,457.648 38.147,457.652 38.14,457.653 C 38.134,457.657 38.126,457.658 38.117,457.657 L 37.849,457.629 L 37.85,457.517 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.119,455.535 L 32.119,455.931 L 32.361,455.957 C 32.376,455.958 32.389,455.957 32.402,455.953 C 32.413,455.947 32.425,455.942 32.435,455.933 L 32.435,455.932 C 32.445,455.923 32.452,455.913 32.457,455.901 C 32.462,455.888 32.466,455.875 32.466,455.859 C 32.466,455.844 32.463,455.831 32.458,455.818 C 32.453,455.805 32.447,455.793 32.437,455.782 C 32.428,455.771 32.416,455.762 32.405,455.756 C 32.396,455.748 32.386,455.745 32.376,455.744 C 32.374,455.744 32.373,455.743 32.372,455.743 L 32.372,455.743 L 32.188,455.724 L 32.188,455.542 L 32.119,455.535 Z M 32.519,455.573 L 32.519,455.971 L 32.763,455.998 C 32.778,455.999 32.791,455.998 32.803,455.994 C 32.815,455.989 32.826,455.983 32.835,455.974 C 32.845,455.964 32.852,455.954 32.859,455.942 C 32.863,455.93 32.866,455.916 32.867,455.903 C 32.866,455.887 32.863,455.873 32.86,455.859 C 32.852,455.846 32.846,455.835 32.837,455.824 C 32.828,455.812 32.818,455.804 32.806,455.797 C 32.796,455.792 32.787,455.786 32.777,455.786 L 32.831,455.677 L 32.867,455.61 L 32.79,455.602 L 32.754,455.669 L 32.717,455.74 L 32.715,455.743 C 32.71,455.755 32.701,455.761 32.692,455.766 C 32.68,455.771 32.67,455.773 32.658,455.771 L 32.589,455.764 L 32.589,455.581 L 32.519,455.573 Z M 33.026,455.644 C 33.004,455.651 32.983,455.664 32.966,455.679 C 32.947,455.696 32.933,455.715 32.925,455.737 C 32.914,455.762 32.91,455.786 32.908,455.814 C 32.91,455.842 32.914,455.869 32.924,455.893 C 32.933,455.918 32.947,455.941 32.964,455.96 C 32.983,455.981 33.003,455.998 33.026,456.01 C 33.049,456.023 33.073,456.031 33.101,456.034 C 33.127,456.036 33.152,456.034 33.177,456.025 C 33.198,456.018 33.22,456.006 33.237,455.99 C 33.255,455.973 33.269,455.954 33.278,455.93 C 33.288,455.907 33.293,455.882 33.293,455.853 C 33.293,455.826 33.288,455.8 33.278,455.775 C 33.269,455.749 33.255,455.728 33.238,455.709 C 33.221,455.688 33.198,455.671 33.177,455.659 C 33.152,455.646 33.128,455.637 33.102,455.635 L 33.063,455.636 C 33.05,455.637 33.038,455.638 33.026,455.644 Z M 33.493,455.676 L 33.493,456.003 L 33.336,455.987 L 33.336,456.057 L 33.719,456.098 L 33.719,456.026 L 33.564,456.01 L 33.564,455.683 L 33.493,455.676 Z M 33.102,455.706 C 33.119,455.709 33.135,455.713 33.15,455.722 C 33.165,455.729 33.178,455.74 33.188,455.754 C 33.199,455.766 33.21,455.78 33.216,455.797 C 33.222,455.812 33.226,455.829 33.226,455.847 C 33.226,455.865 33.222,455.881 33.216,455.896 C 33.21,455.91 33.199,455.923 33.188,455.934 C 33.177,455.944 33.164,455.953 33.15,455.957 C 33.134,455.961 33.119,455.963 33.101,455.961 C 33.084,455.96 33.067,455.956 33.053,455.947 C 33.038,455.94 33.024,455.928 33.013,455.916 C 33.003,455.903 32.994,455.89 32.987,455.872 C 32.982,455.856 32.977,455.838 32.977,455.823 C 32.977,455.804 32.982,455.786 32.987,455.773 C 32.994,455.759 33.003,455.745 33.014,455.734 C 33.025,455.724 33.038,455.716 33.053,455.711 C 33.067,455.707 33.085,455.705 33.102,455.706 Z M 33.838,455.72 C 33.828,455.724 33.816,455.73 33.807,455.74 C 33.797,455.748 33.79,455.76 33.784,455.772 C 33.779,455.785 33.778,455.799 33.778,455.812 L 33.777,455.997 C 33.778,456.011 33.778,456.025 33.784,456.038 C 33.79,456.052 33.797,456.064 33.807,456.075 C 33.816,456.087 33.826,456.095 33.838,456.102 C 33.851,456.109 33.865,456.114 33.879,456.115 L 34.161,456.143 L 34.161,456.072 L 33.879,456.043 C 33.874,456.042 33.867,456.039 33.861,456.036 C 33.857,456.033 33.852,456.027 33.849,456.022 C 33.846,456.016 33.844,456.01 33.844,456.003 L 33.844,455.966 L 34.093,455.993 L 34.093,455.921 L 33.844,455.895 L 33.845,455.82 C 33.845,455.812 33.846,455.807 33.849,455.802 C 33.852,455.797 33.857,455.793 33.861,455.791 C 33.867,455.786 33.875,455.786 33.879,455.786 L 34.161,455.816 L 34.161,455.745 L 33.88,455.716 C 33.865,455.715 33.852,455.716 33.838,455.72 Z M 34.327,455.778 C 34.304,455.786 34.285,455.799 34.267,455.814 C 34.249,455.831 34.235,455.85 34.225,455.873 C 34.216,455.896 34.21,455.922 34.21,455.949 C 34.21,455.977 34.216,456.004 34.225,456.028 C 34.235,456.052 34.249,456.075 34.267,456.097 C 34.285,456.116 34.304,456.132 34.327,456.145 C 34.351,456.158 34.376,456.166 34.403,456.168 L 34.595,456.187 L 34.595,456.117 L 34.403,456.097 C 34.385,456.096 34.37,456.09 34.354,456.083 C 34.34,456.074 34.326,456.064 34.314,456.051 C 34.304,456.038 34.294,456.025 34.288,456.007 C 34.283,455.992 34.279,455.974 34.279,455.957 C 34.279,455.939 34.283,455.922 34.288,455.908 C 34.294,455.893 34.304,455.88 34.315,455.871 C 34.326,455.859 34.34,455.851 34.355,455.846 C 34.37,455.84 34.385,455.838 34.403,455.84 L 34.595,455.861 L 34.595,455.791 L 34.403,455.771 L 34.364,455.771 C 34.352,455.771 34.34,455.774 34.327,455.778 Z M 32.188,455.795 L 32.362,455.812 C 32.364,455.812 32.368,455.812 32.37,455.813 C 32.372,455.814 32.374,455.815 32.377,455.817 C 32.383,455.821 32.388,455.825 32.392,455.832 C 32.396,455.838 32.396,455.844 32.396,455.851 C 32.396,455.858 32.396,455.864 32.394,455.869 C 32.391,455.873 32.389,455.877 32.387,455.877 C 32.384,455.88 32.381,455.882 32.377,455.883 C 32.373,455.885 32.369,455.886 32.362,455.885 L 32.188,455.868 L 32.188,455.795 Z M 34.808,455.812 L 34.808,456.139 L 34.65,456.123 L 34.65,456.195 L 35.035,456.235 L 35.035,456.162 L 34.877,456.146 L 34.877,455.819 L 34.808,455.812 Z M 32.589,455.835 L 32.763,455.852 C 32.764,455.853 32.768,455.853 32.771,455.854 C 32.773,455.855 32.775,455.857 32.778,455.857 C 32.784,455.861 32.789,455.867 32.793,455.873 C 32.796,455.879 32.798,455.886 32.798,455.894 C 32.798,455.901 32.796,455.905 32.795,455.909 C 32.793,455.914 32.79,455.917 32.788,455.919 C 32.786,455.921 32.782,455.922 32.779,455.924 C 32.775,455.927 32.769,455.927 32.763,455.927 L 32.589,455.909 L 32.589,455.835 Z M 35.09,455.84 L 35.089,456.239 L 35.159,456.247 L 35.159,455.848 L 35.09,455.84 Z M 35.389,455.873 L 35.227,456.183 L 35.19,456.25 L 35.268,456.258 L 35.305,456.191 L 35.388,456.029 L 35.472,456.209 L 35.507,456.283 L 35.584,456.291 L 35.549,456.217 L 35.389,455.873 Z M 35.682,455.911 C 35.67,455.916 35.66,455.922 35.65,455.93 C 35.641,455.94 35.633,455.95 35.628,455.962 C 35.622,455.974 35.618,455.989 35.618,456.004 L 35.618,456.186 C 35.618,456.202 35.621,456.216 35.627,456.229 C 35.631,456.243 35.64,456.255 35.65,456.265 C 35.659,456.276 35.67,456.286 35.682,456.292 C 35.694,456.3 35.707,456.304 35.722,456.306 L 36.003,456.335 L 36.003,456.263 L 35.722,456.235 C 35.714,456.234 35.709,456.231 35.704,456.227 C 35.699,456.224 35.695,456.219 35.692,456.213 C 35.688,456.208 35.687,456.201 35.687,456.195 L 35.687,456.157 L 35.936,456.183 L 35.936,456.113 L 35.688,456.087 L 35.688,456.011 C 35.688,456.004 35.689,455.999 35.693,455.994 C 35.695,455.988 35.699,455.984 35.705,455.982 C 35.709,455.979 35.715,455.978 35.723,455.978 L 36.004,456.007 L 36.004,455.935 L 35.723,455.907 C 35.708,455.906 35.694,455.907 35.682,455.911 Z M 36.327,455.968 L 36.325,456.367 L 36.568,456.393 C 36.582,456.393 36.596,456.393 36.609,456.387 C 36.621,456.384 36.633,456.377 36.643,456.368 C 36.652,456.36 36.659,456.348 36.665,456.336 C 36.669,456.324 36.672,456.31 36.672,456.296 C 36.672,456.281 36.669,456.266 36.665,456.253 C 36.66,456.24 36.653,456.229 36.644,456.219 C 36.635,456.209 36.624,456.199 36.611,456.192 C 36.603,456.186 36.592,456.182 36.582,456.18 L 36.638,456.071 L 36.672,456.004 L 36.595,455.997 L 36.561,456.064 L 36.524,456.135 L 36.522,456.137 C 36.516,456.148 36.507,456.154 36.496,456.16 C 36.487,456.164 36.476,456.167 36.464,456.167 L 36.394,456.159 L 36.394,455.976 L 36.327,455.968 Z M 36.792,456.026 C 36.779,456.03 36.768,456.038 36.76,456.046 C 36.75,456.054 36.743,456.064 36.738,456.076 C 36.732,456.09 36.728,456.104 36.728,456.119 L 36.728,456.302 C 36.728,456.317 36.732,456.331 36.737,456.345 C 36.742,456.358 36.749,456.37 36.76,456.382 C 36.768,456.393 36.779,456.4 36.792,456.408 C 36.804,456.415 36.817,456.42 36.831,456.42 L 37.114,456.449 L 37.114,456.379 L 36.831,456.349 C 36.826,456.348 36.819,456.347 36.814,456.342 C 36.811,456.34 36.805,456.334 36.802,456.329 C 36.799,456.322 36.797,456.316 36.797,456.31 L 36.797,456.272 L 37.044,456.297 L 37.044,456.226 L 36.798,456.201 L 36.798,456.127 C 36.798,456.12 36.799,456.115 36.802,456.109 C 36.805,456.103 36.811,456.1 36.814,456.097 C 36.82,456.094 36.826,456.094 36.831,456.094 L 37.115,456.122 L 37.115,456.051 L 36.832,456.022 C 36.818,456.021 36.805,456.023 36.792,456.026 Z M 37.243,456.074 C 37.229,456.078 37.217,456.088 37.205,456.097 C 37.193,456.107 37.186,456.121 37.178,456.135 C 37.172,456.149 37.168,456.166 37.168,456.183 L 37.239,456.189 C 37.239,456.18 37.241,456.17 37.244,456.162 C 37.25,456.155 37.256,456.148 37.263,456.145 C 37.272,456.141 37.279,456.14 37.291,456.141 L 37.412,456.153 C 37.421,456.154 37.431,456.158 37.439,456.162 C 37.445,456.169 37.452,456.175 37.457,456.185 C 37.462,456.195 37.464,456.203 37.464,456.213 C 37.464,456.224 37.462,456.233 37.457,456.24 C 37.452,456.248 37.445,456.253 37.439,456.257 C 37.43,456.261 37.421,456.263 37.412,456.262 L 37.272,456.248 L 37.252,456.248 C 37.244,456.249 37.239,456.25 37.233,456.251 C 37.22,456.255 37.211,456.262 37.2,456.27 C 37.196,456.275 37.191,456.279 37.186,456.286 C 37.181,456.294 37.176,456.304 37.173,456.315 C 37.17,456.323 37.168,456.335 37.168,456.345 L 37.168,456.348 C 37.168,456.362 37.172,456.376 37.176,456.39 C 37.182,456.403 37.189,456.416 37.199,456.426 C 37.21,456.438 37.219,456.446 37.231,456.452 C 37.244,456.46 37.257,456.464 37.272,456.465 L 37.428,456.482 C 37.442,456.483 37.455,456.482 37.468,456.477 C 37.481,456.474 37.492,456.467 37.501,456.459 C 37.511,456.449 37.519,456.439 37.524,456.426 C 37.53,456.415 37.532,456.4 37.532,456.385 L 37.532,456.384 L 37.463,456.375 L 37.463,456.377 C 37.463,456.384 37.462,456.39 37.458,456.395 C 37.455,456.4 37.451,456.405 37.445,456.408 C 37.441,456.41 37.435,456.411 37.428,456.41 L 37.272,456.394 C 37.265,456.393 37.259,456.391 37.254,456.386 C 37.25,456.384 37.244,456.379 37.241,456.373 C 37.239,456.367 37.238,456.361 37.238,456.354 L 37.238,456.351 C 37.238,456.345 37.239,456.34 37.241,456.334 C 37.244,456.329 37.25,456.325 37.254,456.322 C 37.259,456.32 37.265,456.319 37.272,456.319 L 37.412,456.334 L 37.437,456.334 C 37.444,456.332 37.453,456.33 37.46,456.329 C 37.476,456.322 37.489,456.315 37.501,456.302 C 37.501,456.302 37.502,456.301 37.503,456.3 C 37.503,456.299 37.503,456.298 37.505,456.297 C 37.514,456.287 37.521,456.276 37.525,456.263 C 37.531,456.25 37.533,456.235 37.533,456.221 C 37.533,456.203 37.53,456.186 37.523,456.17 C 37.518,456.155 37.509,456.141 37.497,456.129 C 37.485,456.116 37.473,456.105 37.458,456.097 C 37.444,456.09 37.428,456.084 37.412,456.083 L 37.291,456.069 C 37.274,456.067 37.257,456.069 37.243,456.074 Z M 37.589,456.102 L 37.587,456.499 L 37.831,456.523 C 37.845,456.526 37.858,456.523 37.87,456.519 C 37.883,456.515 37.894,456.509 37.905,456.5 L 37.905,456.5 C 37.914,456.49 37.921,456.478 37.927,456.467 C 37.931,456.454 37.934,456.441 37.934,456.426 C 37.934,456.411 37.933,456.397 37.927,456.385 C 37.922,456.371 37.915,456.36 37.907,456.348 C 37.897,456.338 37.888,456.329 37.875,456.322 C 37.866,456.317 37.856,456.314 37.845,456.311 C 37.844,456.311 37.843,456.31 37.842,456.31 L 37.842,456.31 L 37.657,456.29 L 37.657,456.108 L 37.589,456.102 Z M 37.991,456.142 L 37.99,456.541 L 38.057,456.548 L 38.058,456.149 L 37.991,456.142 Z M 38.115,456.154 L 38.114,456.552 L 38.356,456.576 C 38.371,456.58 38.384,456.577 38.398,456.573 C 38.41,456.569 38.419,456.562 38.43,456.554 C 38.439,456.544 38.446,456.535 38.451,456.521 C 38.457,456.509 38.459,456.496 38.46,456.48 C 38.459,456.466 38.457,456.452 38.452,456.439 C 38.447,456.426 38.44,456.412 38.432,456.403 C 38.423,456.393 38.412,456.384 38.4,456.376 C 38.389,456.371 38.379,456.367 38.37,456.364 L 38.425,456.257 L 38.46,456.189 L 38.383,456.181 L 38.347,456.25 L 38.312,456.32 L 38.309,456.322 C 38.303,456.332 38.296,456.341 38.285,456.345 C 38.275,456.35 38.263,456.353 38.251,456.351 L 38.183,456.344 L 38.183,456.16 L 38.115,456.154 Z M 38.494,456.195 L 38.529,456.269 L 38.689,456.612 L 38.852,456.302 L 38.888,456.235 L 38.81,456.227 L 38.775,456.294 L 38.689,456.456 L 38.605,456.277 L 38.571,456.203 L 38.494,456.195 Z M 36.394,456.229 L 36.569,456.248 C 36.572,456.249 36.574,456.25 36.576,456.25 C 36.579,456.25 36.58,456.251 36.582,456.252 C 36.589,456.256 36.594,456.261 36.599,456.268 C 36.602,456.274 36.604,456.281 36.604,456.289 C 36.604,456.294 36.603,456.3 36.6,456.305 C 36.598,456.31 36.595,456.312 36.593,456.314 C 36.59,456.316 36.587,456.317 36.585,456.319 C 36.581,456.32 36.579,456.321 36.577,456.321 L 36.568,456.321 L 36.394,456.302 L 36.394,456.229 Z M 39.078,456.254 L 39.078,456.583 L 38.92,456.567 L 38.919,456.637 L 39.304,456.677 L 39.304,456.606 L 39.146,456.588 L 39.147,456.261 L 39.078,456.254 Z M 39.464,456.31 C 39.44,456.319 39.421,456.33 39.403,456.347 C 39.387,456.362 39.372,456.383 39.361,456.406 C 39.352,456.428 39.346,456.454 39.346,456.482 C 39.346,456.509 39.351,456.535 39.361,456.561 C 39.371,456.586 39.386,456.609 39.403,456.628 C 39.421,456.649 39.44,456.664 39.464,456.677 C 39.488,456.69 39.513,456.698 39.539,456.701 C 39.567,456.703 39.59,456.701 39.614,456.693 C 39.637,456.685 39.658,456.674 39.676,456.656 C 39.693,456.64 39.706,456.62 39.716,456.598 C 39.727,456.574 39.731,456.549 39.732,456.521 C 39.731,456.494 39.727,456.467 39.716,456.443 C 39.706,456.418 39.693,456.395 39.676,456.374 C 39.659,456.355 39.638,456.34 39.614,456.327 C 39.591,456.315 39.567,456.306 39.54,456.302 L 39.502,456.302 C 39.488,456.305 39.477,456.308 39.464,456.31 Z M 39.774,456.327 L 39.773,456.723 L 40.016,456.749 C 40.029,456.75 40.043,456.749 40.056,456.745 C 40.069,456.741 40.08,456.734 40.09,456.726 C 40.099,456.716 40.106,456.706 40.111,456.694 C 40.116,456.682 40.119,456.668 40.119,456.653 C 40.119,456.639 40.116,456.625 40.112,456.611 C 40.107,456.598 40.101,456.586 40.09,456.574 C 40.082,456.565 40.071,456.555 40.06,456.548 C 40.05,456.543 40.039,456.54 40.028,456.537 L 40.085,456.429 L 40.119,456.361 L 40.042,456.354 L 40.008,456.422 L 39.97,456.492 L 39.969,456.496 C 39.963,456.505 39.955,456.512 39.945,456.517 C 39.935,456.522 39.922,456.523 39.91,456.522 L 39.842,456.516 L 39.842,456.334 L 39.774,456.327 Z M 37.657,456.361 L 37.831,456.379 C 37.833,456.38 37.837,456.38 37.84,456.382 C 37.842,456.382 37.844,456.383 37.846,456.384 L 37.846,456.385 C 37.852,456.388 37.857,456.393 37.861,456.399 C 37.865,456.406 37.866,456.412 37.867,456.421 C 37.866,456.426 37.866,456.433 37.864,456.436 C 37.86,456.441 37.858,456.444 37.857,456.445 C 37.854,456.448 37.851,456.449 37.847,456.451 C 37.843,456.452 37.837,456.453 37.831,456.452 L 37.657,456.435 L 37.657,456.361 Z M 39.54,456.374 C 39.557,456.375 39.573,456.38 39.587,456.388 C 39.602,456.397 39.615,456.408 39.627,456.421 C 39.639,456.434 39.647,456.449 39.653,456.464 C 39.661,456.48 39.663,456.497 39.663,456.515 C 39.663,456.533 39.661,456.548 39.653,456.563 C 39.647,456.579 39.638,456.592 39.626,456.601 C 39.615,456.612 39.602,456.62 39.587,456.625 C 39.573,456.63 39.556,456.631 39.539,456.63 C 39.522,456.626 39.506,456.622 39.49,456.615 C 39.477,456.607 39.463,456.596 39.451,456.584 C 39.439,456.57 39.431,456.555 39.425,456.541 C 39.419,456.522 39.416,456.507 39.415,456.49 C 39.416,456.471 39.419,456.454 39.425,456.44 C 39.431,456.426 39.439,456.412 39.451,456.402 C 39.463,456.393 39.477,456.384 39.49,456.379 C 39.506,456.374 39.522,456.372 39.54,456.374 Z M 38.183,456.415 L 38.356,456.434 C 38.359,456.434 38.36,456.435 38.364,456.436 C 38.366,456.436 38.368,456.437 38.371,456.439 C 38.377,456.442 38.382,456.447 38.385,456.452 C 38.389,456.46 38.392,456.466 38.392,456.473 C 38.392,456.48 38.389,456.486 38.388,456.49 C 38.385,456.493 38.383,456.496 38.381,456.499 C 38.379,456.501 38.375,456.503 38.372,456.504 C 38.367,456.506 38.361,456.506 38.356,456.506 L 38.183,456.488 L 38.183,456.415 Z M 39.842,456.587 L 40.016,456.606 C 40.019,456.606 40.021,456.607 40.023,456.607 C 40.026,456.609 40.027,456.609 40.029,456.61 C 40.036,456.613 40.041,456.619 40.046,456.625 C 40.05,456.631 40.052,456.638 40.052,456.645 C 40.051,456.652 40.05,456.657 40.048,456.661 C 40.046,456.665 40.042,456.668 40.039,456.67 C 40.038,456.673 40.034,456.674 40.031,456.676 C 40.027,456.678 40.022,456.679 40.016,456.678 L 39.842,456.661 L 39.842,456.587 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.249,468.864 L 27.076,469.025 L 44.484,470.16 L 44.574,470.122 C 44.603,470.111 44.632,470.084 44.632,470.038 L 44.632,469.995 L 27.249,468.864 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.076,469.025 L 27.075,445.574 L 27.163,445.489 L 27.249,445.503 L 27.249,468.863 L 27.076,469.025 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--SANDY_BEIGE, .KN95_NR_individuals--SANDY_BEIGE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='300.284 -391.2 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.301' y2='19.847' gradientTransform='translate(312.927 363.729)'%3E%3Cstop offset='0' stop-color='%23cfc39d'/%3E%3Cstop offset='1' stop-color='%23f2e7c1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.353' y2='19.921' gradientTransform='translate(309.388 364.345)'%3E%3Cstop offset='0' stop-color='%239d926f'/%3E%3Cstop offset='1' stop-color='%23cec4a4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(312.921 383.713)'%3E%3Cstop offset='0' stop-color='%23bcb18b'/%3E%3Cstop offset='1' stop-color='%23d2c8a7'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.231' gradientTransform='translate(308.246 385.77)'%3E%3Cstop offset='0' stop-color='%23928b74'/%3E%3Cstop offset='1' stop-color='%23b4ac8f'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.009' y2='-0.163' gradientTransform='translate(321.24 385.584) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23beb597'/%3E%3Cstop offset='1' stop-color='%23d7cdab'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(310.095 373.473) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b2aa8e'/%3E%3Cstop offset='1' stop-color='%23cec4a4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(317.013 374.471) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cpath d='M 310.013,361.316 L 310.013,384.802 L 327.46,385.922 C 327.473,385.907 327.483,385.888 327.483,385.863 L 327.483,363.683 L 310.013,361.316 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 310.013,361.316 L 306.55,364.678 L 306.548,386.7 L 310.013,384.802 L 310.013,361.316 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 310.013,384.802 L 306.548,386.7 L 323.48,387.629 L 327.423,385.949 C 327.437,385.943 327.45,385.934 327.46,385.922 L 310.013,384.802 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 309.926,384.534 L 306.547,386.423 L 306.546,386.7 L 309.926,384.849 L 309.926,384.534 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_3'%3E%3Cpath d='M 317.055,366.917 L 317.055,367.328 L 317.127,367.336 L 317.127,366.925 L 317.055,366.917 Z M 317.184,366.931 L 317.184,367.34 L 317.257,367.292 L 317.518,367.117 L 317.518,367.377 L 317.59,367.387 L 317.59,366.976 L 317.518,367.025 L 317.257,367.199 L 317.257,366.94 L 317.184,366.931 Z M 317.647,366.982 L 317.647,367.393 L 317.849,367.414 C 317.879,367.418 317.905,367.415 317.928,367.406 C 317.952,367.4 317.973,367.387 317.994,367.368 C 318.012,367.352 318.026,367.333 318.036,367.31 C 318.046,367.286 318.052,367.259 318.052,367.231 C 318.052,367.206 318.047,367.182 318.04,367.159 C 318.031,367.135 318.019,367.113 318.004,367.095 C 318.002,367.092 318,367.089 317.999,367.087 C 317.997,367.085 317.995,367.083 317.992,367.08 C 317.973,367.059 317.952,367.042 317.928,367.029 C 317.906,367.016 317.88,367.007 317.849,367.004 L 317.647,366.982 Z M 318.11,367.031 L 318.11,367.443 L 318.183,367.45 L 318.183,367.04 L 318.11,367.031 Z M 317.718,367.063 L 317.849,367.077 C 317.867,367.079 317.884,367.085 317.9,367.093 C 317.917,367.102 317.93,367.112 317.941,367.126 C 317.953,367.139 317.962,367.153 317.97,367.17 C 317.976,367.188 317.979,367.206 317.98,367.222 C 317.979,367.241 317.976,367.257 317.97,367.273 C 317.962,367.289 317.953,367.302 317.941,367.312 C 317.93,367.323 317.917,367.331 317.9,367.336 C 317.884,367.341 317.867,367.342 317.849,367.341 L 317.718,367.327 L 317.718,367.063 Z M 318.423,367.067 L 318.254,367.386 L 318.217,367.454 L 318.298,367.463 L 318.334,367.393 L 318.423,367.228 L 318.512,367.413 L 318.549,367.49 L 318.629,367.5 L 318.593,367.421 L 318.423,367.067 Z M 318.667,367.093 L 318.667,367.503 L 318.738,367.511 L 318.738,367.101 L 318.667,367.093 Z M 318.797,367.108 L 318.797,367.517 L 318.998,367.539 C 319.026,367.541 319.052,367.539 319.077,367.532 C 319.102,367.524 319.122,367.511 319.141,367.495 C 319.159,367.477 319.173,367.457 319.183,367.434 C 319.195,367.411 319.201,367.386 319.201,367.355 C 319.201,367.331 319.197,367.307 319.187,367.284 C 319.179,367.259 319.168,367.238 319.151,367.219 C 319.15,367.217 319.148,367.214 319.146,367.212 C 319.145,367.209 319.144,367.207 319.14,367.206 C 319.122,367.185 319.102,367.167 319.077,367.153 C 319.052,367.14 319.026,367.132 318.998,367.128 L 318.797,367.108 Z M 319.383,367.187 C 319.358,367.194 319.336,367.207 319.319,367.224 C 319.299,367.241 319.285,367.26 319.275,367.284 C 319.264,367.309 319.259,367.335 319.259,367.362 L 319.259,367.567 L 319.331,367.575 L 319.331,367.369 C 319.331,367.351 319.334,367.335 319.342,367.32 C 319.347,367.306 319.358,367.292 319.37,367.283 C 319.382,367.271 319.395,367.262 319.41,367.257 C 319.426,367.252 319.443,367.25 319.461,367.252 C 319.479,367.254 319.495,367.259 319.511,367.269 C 319.528,367.277 319.542,367.288 319.554,367.302 C 319.565,367.314 319.574,367.329 319.581,367.346 C 319.587,367.363 319.591,367.381 319.591,367.4 L 319.591,367.604 L 319.665,367.612 L 319.665,367.406 C 319.665,367.377 319.659,367.351 319.648,367.325 C 319.636,367.299 319.622,367.276 319.603,367.254 C 319.585,367.234 319.565,367.218 319.54,367.204 C 319.516,367.192 319.489,367.183 319.461,367.179 C 319.432,367.177 319.407,367.179 319.383,367.187 Z M 318.868,367.188 L 318.998,367.202 C 319.016,367.204 319.032,367.209 319.048,367.218 C 319.064,367.226 319.078,367.237 319.091,367.25 C 319.103,367.263 319.111,367.279 319.119,367.296 C 319.125,367.312 319.128,367.329 319.129,367.348 C 319.128,367.365 319.125,367.384 319.119,367.399 C 319.111,367.413 319.103,367.426 319.091,367.437 C 319.078,367.447 319.064,367.455 319.048,367.46 C 319.032,367.466 319.016,367.467 318.998,367.465 L 318.868,367.451 L 318.868,367.188 Z M 319.699,367.206 L 319.735,367.284 L 319.905,367.637 L 320.075,367.32 L 320.113,367.25 L 320.031,367.241 L 319.995,367.31 L 319.905,367.476 L 319.816,367.291 L 319.78,367.214 L 319.699,367.206 Z M 320.247,367.269 C 320.236,367.27 320.227,367.271 320.219,367.275 C 320.206,367.281 320.195,367.288 320.184,367.297 C 320.174,367.307 320.166,367.316 320.159,367.328 C 320.156,367.336 320.153,367.346 320.15,367.354 C 320.148,367.364 320.147,367.373 320.147,367.386 L 320.147,367.664 L 320.219,367.67 L 320.219,367.386 C 320.22,367.377 320.223,367.368 320.228,367.363 C 320.232,367.355 320.237,367.351 320.246,367.347 C 320.252,367.342 320.261,367.341 320.268,367.341 L 320.481,367.363 L 320.481,367.29 L 320.275,367.267 C 320.265,367.266 320.255,367.267 320.247,367.269 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_5'%3E%3Cg id='Group_6'%3E%3Cpath d='M 314.852,373.646 L 314.849,375.698 L 315.188,375.733 L 315.19,374.685 L 315.47,374.987 L 315.721,375.262 L 316.249,375.84 L 316.751,375.892 L 315.923,374.983 L 316.746,373.839 L 316.329,373.797 L 315.672,374.709 L 315.19,374.189 L 315.19,373.681 L 314.852,373.646 Z M 316.919,373.856 L 317.092,374.242 L 317.886,376.007 L 318.683,374.403 L 318.855,374.054 L 318.478,374.016 L 318.303,374.365 L 317.887,375.202 L 317.472,374.279 L 317.299,373.897 L 316.919,373.856 Z M 319.028,374.071 L 319.03,374.071 L 319.29,374.464 L 319.756,375.167 L 319.971,375.488 L 320.23,375.881 L 319.023,375.756 L 319.023,376.122 L 320.49,376.272 L 320.915,376.315 L 320.653,375.922 L 320.182,375.211 L 319.97,374.889 L 319.713,374.508 L 320.926,374.63 L 320.927,374.264 L 319.458,374.116 L 319.455,374.116 L 319.028,374.071 Z M 321.503,374.367 C 321.443,374.39 321.386,374.423 321.341,374.469 C 321.295,374.514 321.257,374.57 321.232,374.634 C 321.206,374.699 321.193,374.77 321.192,374.846 L 321.191,375.79 C 321.191,375.866 321.203,375.939 321.23,376.008 C 321.256,376.078 321.291,376.14 321.34,376.196 C 321.385,376.251 321.44,376.296 321.501,376.331 C 321.563,376.366 321.63,376.387 321.7,376.395 L 323.086,376.536 L 323.086,376.17 L 321.7,376.028 C 321.668,376.024 321.639,376.014 321.612,375.994 C 321.586,375.974 321.566,375.949 321.551,375.921 C 321.535,375.891 321.527,375.857 321.527,375.823 L 321.527,375.632 L 322.747,375.757 L 322.748,375.391 L 321.527,375.267 L 321.527,374.881 C 321.527,374.844 321.537,374.816 321.552,374.79 C 321.569,374.761 321.588,374.739 321.613,374.726 C 321.641,374.713 321.669,374.707 321.701,374.709 L 323.088,374.85 L 323.089,374.485 L 321.701,374.343 C 321.632,374.337 321.566,374.344 321.503,374.367 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_8'%3E%3Cpath d='M 316.856,372.555 L 316.856,372.992 C 316.856,373.016 316.859,373.037 316.867,373.057 C 316.875,373.078 316.887,373.097 316.902,373.112 C 316.917,373.129 316.933,373.142 316.952,373.153 C 316.971,373.163 316.993,373.169 317.015,373.171 L 317.448,373.217 L 317.448,373.111 L 317.015,373.065 C 317.006,373.063 316.996,373.06 316.988,373.054 C 316.979,373.048 316.973,373.041 316.968,373.033 C 316.963,373.024 316.961,373.015 316.961,373.005 L 316.961,372.949 L 317.343,372.988 L 317.343,372.881 L 316.96,372.841 L 316.961,372.567 L 316.856,372.555 Z M 317.533,372.628 L 317.532,373.065 C 317.532,373.086 317.537,373.108 317.546,373.129 C 317.553,373.149 317.564,373.167 317.579,373.183 C 317.594,373.2 317.611,373.213 317.629,373.223 C 317.648,373.235 317.669,373.241 317.693,373.244 L 318.125,373.288 L 318.125,373.182 L 317.693,373.137 C 317.683,373.135 317.674,373.132 317.666,373.126 C 317.657,373.12 317.65,373.112 317.645,373.104 C 317.641,373.095 317.639,373.086 317.639,373.076 L 317.639,373.021 L 318.02,373.061 L 318.02,372.954 L 317.638,372.913 L 317.639,372.638 L 317.533,372.628 Z M 318.212,372.699 L 318.21,373.299 L 318.584,373.339 C 318.605,373.34 318.626,373.339 318.644,373.331 C 318.664,373.325 318.681,373.315 318.696,373.303 L 318.696,373.301 C 318.711,373.287 318.722,373.272 318.731,373.254 C 318.738,373.235 318.744,373.214 318.744,373.191 C 318.744,373.17 318.738,373.149 318.732,373.13 C 318.723,373.109 318.712,373.091 318.7,373.075 C 318.685,373.059 318.669,373.046 318.651,373.035 C 318.635,373.026 318.621,373.021 318.604,373.018 C 318.603,373.018 318.602,373.018 318.6,373.017 L 318.6,373.016 L 318.317,372.985 L 318.317,372.711 L 318.212,372.699 Z M 318.827,372.762 L 318.827,372.939 C 318.827,372.952 318.828,372.963 318.83,372.975 C 318.833,372.986 318.836,372.998 318.84,373.01 C 318.849,373.032 318.861,373.051 318.878,373.067 C 318.893,373.086 318.91,373.1 318.93,373.112 C 318.949,373.123 318.971,373.13 318.996,373.134 L 319.249,373.161 L 319.252,373.161 C 319.263,373.164 319.274,373.169 319.283,373.176 C 319.293,373.183 319.3,373.191 319.307,373.203 C 319.312,373.213 319.313,373.225 319.313,373.238 C 319.313,373.25 319.311,373.262 319.304,373.272 C 319.298,373.281 319.291,373.288 319.28,373.294 C 319.269,373.3 319.258,373.302 319.245,373.301 L 318.828,373.257 L 318.828,373.364 L 319.244,373.407 C 319.269,373.41 319.293,373.407 319.313,373.401 C 319.334,373.394 319.352,373.383 319.369,373.369 C 319.384,373.355 319.397,373.338 319.406,373.316 C 319.415,373.297 319.42,373.274 319.42,373.249 C 319.42,373.237 319.419,373.225 319.416,373.213 C 319.413,373.201 319.409,373.189 319.404,373.178 C 319.401,373.167 319.396,373.158 319.39,373.148 C 319.384,373.139 319.377,373.13 319.37,373.122 C 319.356,373.104 319.337,373.088 319.317,373.077 C 319.295,373.065 319.275,373.058 319.251,373.054 L 319.248,373.054 C 319.248,373.054 319.246,373.054 319.245,373.054 L 318.996,373.028 C 318.984,373.025 318.973,373.021 318.964,373.013 C 318.954,373.006 318.946,372.996 318.941,372.985 C 318.936,372.975 318.934,372.964 318.934,372.952 L 318.934,372.881 L 319.418,372.932 L 319.418,372.825 L 319.001,372.78 L 318.827,372.762 Z M 319.917,372.879 L 319.917,373.476 L 320.023,373.405 L 320.403,373.148 L 320.403,373.529 L 320.508,373.539 L 320.509,372.942 L 320.403,373.013 L 320.023,373.269 L 320.023,372.89 L 319.917,372.879 Z M 320.594,372.951 L 320.593,373.551 L 320.968,373.59 C 320.989,373.593 321.01,373.591 321.029,373.584 C 321.049,373.577 321.065,373.567 321.081,373.553 C 321.094,373.54 321.106,373.525 321.114,373.506 C 321.122,373.487 321.126,373.467 321.127,373.444 C 321.127,373.422 321.122,373.402 321.114,373.381 C 321.107,373.362 321.096,373.344 321.082,373.327 C 321.068,373.311 321.052,373.298 321.034,373.286 C 321.02,373.279 321.004,373.272 320.988,373.268 L 321.074,373.108 L 321.127,373.008 L 321.009,372.994 L 320.954,373.095 L 320.897,373.202 L 320.895,373.206 C 320.886,373.221 320.874,373.233 320.857,373.24 C 320.842,373.248 320.823,373.249 320.804,373.248 L 320.7,373.237 L 320.7,372.962 L 320.594,372.951 Z M 318.317,373.091 L 318.585,373.12 C 318.588,373.12 318.591,373.121 318.596,373.122 C 318.6,373.124 318.603,373.126 318.606,373.128 L 318.606,373.128 C 318.616,373.133 318.624,373.14 318.629,373.151 C 318.635,373.159 318.637,373.17 318.637,373.18 C 318.637,373.19 318.635,373.199 318.632,373.204 C 318.628,373.211 318.625,373.215 318.622,373.219 C 318.618,373.221 318.613,373.225 318.607,373.227 C 318.602,373.23 318.593,373.231 318.585,373.23 L 318.317,373.202 L 318.317,373.091 Z M 320.7,373.344 L 320.968,373.371 C 320.972,373.372 320.975,373.373 320.979,373.374 C 320.983,373.377 320.986,373.378 320.989,373.379 C 320.999,373.385 321.007,373.394 321.011,373.403 C 321.019,373.412 321.022,373.422 321.022,373.433 C 321.021,373.443 321.02,373.451 321.015,373.458 C 321.011,373.464 321.009,373.468 321.005,373.471 C 321.002,373.474 320.997,373.478 320.991,373.48 C 320.984,373.482 320.977,373.483 320.968,373.482 L 320.699,373.455 L 320.7,373.344 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_9' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_10'%3E%3Cpath d='M 314.969,371.36 L 314.968,371.757 L 315.211,371.782 C 315.227,371.783 315.24,371.782 315.253,371.778 C 315.264,371.774 315.276,371.768 315.285,371.758 L 315.285,371.757 C 315.295,371.749 315.302,371.739 315.307,371.727 C 315.312,371.714 315.316,371.701 315.316,371.686 C 315.316,371.67 315.312,371.656 315.308,371.643 C 315.303,371.63 315.296,371.62 315.286,371.608 C 315.278,371.597 315.267,371.589 315.256,371.582 C 315.246,371.576 315.236,371.571 315.227,371.569 C 315.224,371.569 315.222,371.569 315.222,371.569 L 315.222,371.569 L 315.039,371.55 L 315.039,371.368 L 314.969,371.36 Z M 315.37,371.4 L 315.369,371.798 L 315.613,371.824 C 315.628,371.825 315.641,371.824 315.653,371.82 C 315.667,371.815 315.677,371.809 315.686,371.8 C 315.696,371.791 315.703,371.78 315.71,371.768 C 315.714,371.756 315.717,371.742 315.717,371.728 C 315.717,371.713 315.714,371.699 315.711,371.686 C 315.703,371.672 315.697,371.66 315.688,371.65 C 315.679,371.639 315.669,371.63 315.656,371.623 C 315.646,371.617 315.637,371.613 315.627,371.611 L 315.681,371.504 L 315.717,371.435 L 315.64,371.427 L 315.605,371.494 L 315.569,371.566 L 315.567,371.569 C 315.561,371.58 315.551,371.587 315.542,371.591 C 315.53,371.597 315.52,371.598 315.508,371.597 L 315.438,371.59 L 315.438,371.407 L 315.37,371.4 Z M 315.876,371.469 C 315.854,371.477 315.834,371.49 315.817,371.505 C 315.798,371.522 315.784,371.542 315.774,371.563 C 315.764,371.589 315.759,371.613 315.757,371.64 C 315.759,371.667 315.764,371.694 315.774,371.718 C 315.784,371.744 315.798,371.767 315.815,371.787 C 315.833,371.807 315.853,371.824 315.875,371.836 C 315.9,371.849 315.924,371.857 315.951,371.86 C 315.977,371.862 316.003,371.86 316.027,371.851 C 316.048,371.844 316.07,371.833 316.087,371.815 C 316.105,371.799 316.12,371.78 316.129,371.756 C 316.138,371.733 316.144,371.707 316.144,371.679 C 316.144,371.653 316.139,371.626 316.129,371.601 C 316.12,371.576 316.105,371.555 316.087,371.534 C 316.071,371.513 316.05,371.497 316.027,371.485 C 316.003,371.473 315.978,371.465 315.952,371.461 L 315.913,371.463 C 315.9,371.464 315.889,371.466 315.876,371.469 Z M 316.344,371.502 L 316.344,371.828 L 316.185,371.813 L 316.185,371.883 L 316.57,371.925 L 316.57,371.853 L 316.414,371.836 L 316.414,371.508 L 316.344,371.502 Z M 315.952,371.532 C 315.969,371.534 315.984,371.539 316.001,371.547 C 316.016,371.556 316.029,371.566 316.039,371.579 C 316.05,371.591 316.059,371.607 316.066,371.623 C 316.072,371.639 316.076,371.655 316.076,371.673 C 316.076,371.692 316.072,371.707 316.066,371.722 C 316.059,371.737 316.05,371.75 316.039,371.759 C 316.028,371.769 316.015,371.778 316,371.782 C 315.984,371.788 315.969,371.789 315.951,371.788 C 315.935,371.787 315.918,371.782 315.904,371.773 C 315.889,371.766 315.874,371.755 315.863,371.742 C 315.853,371.729 315.844,371.716 315.837,371.698 C 315.833,371.682 315.828,371.665 315.828,371.648 C 315.828,371.63 315.833,371.613 315.837,371.598 C 315.844,371.584 315.853,371.571 315.864,371.56 C 315.875,371.55 315.89,371.542 315.904,371.537 C 315.918,371.532 315.936,371.531 315.952,371.532 Z M 316.689,371.545 C 316.679,371.55 316.667,371.556 316.656,371.566 C 316.647,371.576 316.64,371.585 316.634,371.598 C 316.63,371.61 316.627,371.624 316.627,371.639 L 316.627,371.823 C 316.627,371.836 316.628,371.851 316.634,371.865 C 316.64,371.879 316.647,371.89 316.656,371.902 C 316.667,371.913 316.677,371.921 316.689,371.928 C 316.702,371.934 316.716,371.939 316.73,371.941 L 317.011,371.969 L 317.011,371.898 L 316.73,371.868 C 316.724,371.867 316.718,371.866 316.712,371.862 C 316.707,371.859 316.703,371.853 316.699,371.848 C 316.697,371.841 316.695,371.835 316.695,371.828 L 316.695,371.792 L 316.943,371.818 L 316.943,371.746 L 316.695,371.721 L 316.696,371.646 C 316.696,371.639 316.697,371.634 316.7,371.628 C 316.703,371.623 316.708,371.62 316.712,371.616 C 316.718,371.613 316.724,371.612 316.73,371.613 L 317.012,371.642 L 317.012,371.571 L 316.731,371.542 C 316.716,371.541 316.703,371.542 316.689,371.545 Z M 317.177,371.603 C 317.155,371.611 317.135,371.624 317.118,371.64 C 317.098,371.656 317.085,371.676 317.075,371.699 C 317.066,371.723 317.06,371.748 317.06,371.775 C 317.06,371.802 317.066,371.829 317.075,371.853 C 317.084,371.879 317.098,371.902 317.118,371.923 C 317.135,371.942 317.155,371.958 317.177,371.971 C 317.201,371.983 317.227,371.991 317.254,371.994 L 317.445,372.015 L 317.445,371.943 L 317.254,371.924 C 317.236,371.922 317.22,371.916 317.204,371.908 C 317.19,371.9 317.176,371.89 317.164,371.876 C 317.155,371.864 317.146,371.85 317.138,371.834 C 317.133,371.817 317.13,371.801 317.13,371.782 C 317.13,371.765 317.133,371.748 317.139,371.733 C 317.146,371.718 317.155,371.706 317.165,371.696 C 317.176,371.686 317.19,371.677 317.205,371.672 C 317.22,371.666 317.236,371.665 317.254,371.666 L 317.446,371.688 L 317.446,371.616 L 317.254,371.596 L 317.215,371.596 C 317.202,371.597 317.19,371.6 317.177,371.603 Z M 315.039,371.621 L 315.212,371.637 C 315.215,371.639 315.218,371.639 315.22,371.64 C 315.222,371.64 315.224,371.641 315.228,371.643 C 315.233,371.647 315.239,371.651 315.243,371.658 C 315.246,371.664 315.247,371.67 315.247,371.678 C 315.247,371.685 315.246,371.691 315.244,371.694 C 315.242,371.699 315.24,371.702 315.238,371.703 C 315.235,371.705 315.232,371.707 315.228,371.709 C 315.222,371.711 315.219,371.712 315.212,371.711 L 315.039,371.693 L 315.039,371.621 Z M 317.659,371.639 L 317.659,371.965 L 317.5,371.949 L 317.5,372.022 L 317.886,372.06 L 317.886,371.989 L 317.727,371.971 L 317.727,371.645 L 317.659,371.639 Z M 315.438,371.66 L 315.613,371.678 C 315.615,371.679 315.618,371.679 315.62,371.681 C 315.623,371.681 315.625,371.683 315.628,371.684 C 315.633,371.688 315.639,371.692 315.643,371.699 C 315.646,371.705 315.648,371.712 315.648,371.72 C 315.648,371.726 315.646,371.731 315.645,371.735 C 315.643,371.74 315.64,371.743 315.637,371.744 C 315.635,371.746 315.632,371.748 315.629,371.75 C 315.624,371.752 315.619,371.753 315.613,371.752 L 315.438,371.734 L 315.438,371.66 Z M 317.94,371.666 L 317.939,372.065 L 318.009,372.073 L 318.01,371.674 L 317.94,371.666 Z M 318.24,371.699 L 318.077,372.008 L 318.041,372.076 L 318.119,372.084 L 318.155,372.017 L 318.239,371.855 L 318.323,372.035 L 318.358,372.108 L 318.435,372.117 L 318.399,372.042 L 318.24,371.699 Z M 318.532,371.737 C 318.52,371.742 318.51,371.748 318.5,371.756 C 318.491,371.766 318.482,371.776 318.479,371.788 C 318.473,371.801 318.469,371.815 318.469,371.829 L 318.469,372.014 C 318.469,372.028 318.472,372.041 318.478,372.055 C 318.482,372.069 318.49,372.08 318.5,372.092 C 318.509,372.102 318.519,372.112 318.532,372.118 C 318.545,372.126 318.558,372.13 318.573,372.131 L 318.853,372.16 L 318.853,372.089 L 318.573,372.06 C 318.566,372.06 318.559,372.057 318.555,372.054 C 318.55,372.05 318.546,372.046 318.543,372.039 C 318.539,372.034 318.538,372.028 318.538,372.022 L 318.538,371.982 L 318.786,372.008 L 318.786,371.939 L 318.539,371.913 L 318.539,371.836 C 318.539,371.83 318.54,371.825 318.544,371.82 C 318.546,371.815 318.55,371.809 318.556,371.808 C 318.56,371.804 318.566,371.803 318.574,371.804 L 318.854,371.834 L 318.854,371.761 L 318.574,371.733 C 318.559,371.731 318.545,371.733 318.532,371.737 Z M 319.176,371.795 L 319.175,372.192 L 319.419,372.218 C 319.433,372.219 319.447,372.218 319.46,372.214 C 319.473,372.209 319.482,372.203 319.493,372.194 C 319.502,372.185 319.508,372.174 319.515,372.162 C 319.519,372.15 319.521,372.137 319.521,372.122 C 319.521,372.106 319.519,372.092 319.515,372.079 C 319.51,372.066 319.503,372.054 319.494,372.045 C 319.485,372.035 319.475,372.025 319.462,372.019 C 319.454,372.013 319.442,372.008 319.432,372.006 L 319.488,371.898 L 319.522,371.83 L 319.445,371.823 L 319.41,371.89 L 319.375,371.96 L 319.373,371.963 C 319.366,371.973 319.358,371.981 319.347,371.985 C 319.338,371.99 319.326,371.992 319.315,371.992 L 319.244,371.984 L 319.245,371.802 L 319.176,371.795 Z M 319.643,371.853 C 319.63,371.856 319.618,371.864 319.61,371.872 C 319.6,371.88 319.593,371.891 319.587,371.904 C 319.583,371.916 319.579,371.931 319.579,371.945 L 319.579,372.129 C 319.579,372.143 319.582,372.157 319.587,372.17 C 319.592,372.183 319.6,372.196 319.61,372.208 C 319.618,372.218 319.629,372.226 319.643,372.235 C 319.655,372.241 319.668,372.246 319.682,372.247 L 319.964,372.275 L 319.964,372.204 L 319.682,372.175 C 319.677,372.174 319.67,372.172 319.665,372.169 C 319.661,372.165 319.656,372.159 319.653,372.155 C 319.649,372.148 319.648,372.142 319.648,372.136 L 319.648,372.098 L 319.895,372.124 L 319.895,372.052 L 319.648,372.028 L 319.648,371.952 C 319.648,371.945 319.65,371.94 319.653,371.934 C 319.656,371.93 319.661,371.926 319.666,371.923 C 319.67,371.92 319.677,371.919 319.682,371.919 L 319.964,371.949 L 319.964,371.877 L 319.683,371.848 C 319.669,371.847 319.655,371.849 319.643,371.853 Z M 320.094,371.9 C 320.081,371.905 320.067,371.914 320.055,371.924 C 320.043,371.933 320.036,371.947 320.028,371.96 C 320.023,371.975 320.019,371.991 320.019,372.008 L 320.09,372.016 C 320.09,372.005 320.092,371.995 320.095,371.989 C 320.101,371.981 320.107,371.975 320.114,371.971 C 320.122,371.967 320.13,371.966 320.141,371.966 L 320.262,371.979 C 320.271,371.98 320.281,371.983 320.288,371.989 C 320.294,371.995 320.303,372.001 320.307,372.012 C 320.313,372.021 320.315,372.028 320.315,372.04 C 320.315,372.05 320.313,372.059 320.307,372.066 C 320.303,372.074 320.294,372.079 320.288,372.083 C 320.28,372.087 320.271,372.089 320.262,372.088 L 320.122,372.074 L 320.103,372.074 C 320.095,372.074 320.09,372.076 320.083,372.078 C 320.07,372.081 320.061,372.088 320.05,372.095 C 320.047,372.101 320.041,372.105 320.036,372.112 C 320.031,372.12 320.027,372.13 320.024,372.14 C 320.021,372.15 320.019,372.16 320.019,372.171 L 320.019,372.174 C 320.019,372.189 320.023,372.202 320.027,372.215 C 320.032,372.229 320.039,372.241 320.049,372.253 C 320.06,372.264 320.069,372.273 320.083,372.279 C 320.094,372.286 320.108,372.29 320.122,372.291 L 320.279,372.307 C 320.292,372.309 320.307,372.307 320.319,372.304 C 320.332,372.299 320.343,372.292 320.352,372.285 C 320.361,372.275 320.37,372.265 320.374,372.253 C 320.38,372.241 320.382,372.226 320.382,372.211 L 320.382,372.209 L 320.314,372.201 L 320.314,372.203 C 320.314,372.209 320.313,372.215 320.309,372.221 C 320.306,372.226 320.302,372.23 320.295,372.235 C 320.291,372.236 320.285,372.238 320.279,372.237 L 320.122,372.221 C 320.116,372.219 320.109,372.216 320.105,372.213 C 320.101,372.209 320.095,372.204 320.092,372.198 C 320.09,372.193 320.088,372.186 320.088,372.18 L 320.088,372.177 C 320.088,372.17 320.09,372.166 320.092,372.159 C 320.095,372.155 320.101,372.151 320.105,372.148 C 320.109,372.146 320.116,372.144 320.122,372.145 L 320.262,372.159 L 320.287,372.159 C 320.294,372.157 320.304,372.157 320.311,372.154 C 320.327,372.148 320.34,372.14 320.351,372.129 C 320.352,372.128 320.353,372.127 320.354,372.126 C 320.354,372.125 320.354,372.125 320.356,372.124 C 320.364,372.113 320.371,372.102 320.375,372.089 C 320.381,372.076 320.383,372.061 320.383,372.047 C 320.383,372.028 320.38,372.013 320.373,371.995 C 320.368,371.981 320.359,371.966 320.348,371.955 C 320.336,371.942 320.324,371.931 320.308,371.923 C 320.294,371.916 320.279,371.91 320.262,371.908 L 320.141,371.894 C 320.124,371.892 320.108,371.894 320.094,371.9 Z M 320.44,371.927 L 320.438,372.324 L 320.681,372.351 C 320.696,372.352 320.708,372.351 320.72,372.346 C 320.733,372.341 320.745,372.335 320.756,372.326 L 320.756,372.326 C 320.765,372.316 320.772,372.305 320.778,372.292 C 320.782,372.28 320.785,372.267 320.785,372.253 C 320.785,372.238 320.783,372.223 320.778,372.211 C 320.773,372.196 320.766,372.185 320.758,372.174 C 320.747,372.164 320.737,372.156 320.724,372.149 C 320.716,372.143 320.706,372.14 320.695,372.138 C 320.694,372.138 320.693,372.137 320.692,372.137 L 320.692,372.137 L 320.507,372.116 L 320.507,371.934 L 320.44,371.927 Z M 320.841,371.968 L 320.84,372.366 L 320.907,372.373 L 320.908,371.975 L 320.841,371.968 Z M 320.965,371.979 L 320.965,372.378 L 321.207,372.402 C 321.222,372.405 321.235,372.403 321.248,372.399 C 321.259,372.396 321.269,372.388 321.28,372.38 C 321.289,372.37 321.297,372.36 321.302,372.348 C 321.308,372.335 321.31,372.322 321.311,372.306 C 321.31,372.292 321.308,372.279 321.302,372.266 C 321.297,372.252 321.29,372.24 321.281,372.228 C 321.272,372.219 321.262,372.209 321.249,372.202 C 321.24,372.196 321.23,372.193 321.221,372.19 L 321.275,372.083 L 321.311,372.016 L 321.234,372.007 L 321.198,372.075 L 321.161,372.146 L 321.159,372.149 C 321.153,372.158 321.146,372.166 321.135,372.17 C 321.126,372.176 321.114,372.178 321.102,372.177 L 321.033,372.17 L 321.033,371.986 L 320.965,371.979 Z M 321.345,372.022 L 321.379,372.094 L 321.54,372.438 L 321.701,372.129 L 321.739,372.061 L 321.661,372.053 L 321.625,372.12 L 321.54,372.282 L 321.456,372.103 L 321.421,372.028 L 321.345,372.022 Z M 319.244,372.055 L 319.42,372.074 C 319.423,372.074 319.425,372.075 319.427,372.076 C 319.429,372.076 319.431,372.078 319.433,372.079 C 319.44,372.082 319.445,372.087 319.45,372.093 C 319.453,372.1 319.455,372.106 319.455,372.115 C 319.455,372.12 319.454,372.127 319.451,372.131 C 319.449,372.135 319.445,372.138 319.444,372.14 C 319.442,372.142 319.438,372.143 319.436,372.145 C 319.432,372.146 319.429,372.146 319.428,372.147 L 319.419,372.147 L 319.244,372.129 L 319.244,372.055 Z M 321.928,372.08 L 321.928,372.409 L 321.77,372.392 L 321.77,372.463 L 322.154,372.504 L 322.154,372.432 L 321.997,372.415 L 321.997,372.087 L 321.928,372.08 Z M 322.315,372.137 C 322.291,372.144 322.271,372.157 322.253,372.172 C 322.237,372.189 322.222,372.208 322.211,372.233 C 322.203,372.254 322.197,372.28 322.197,372.307 C 322.197,372.335 322.201,372.362 322.211,372.386 C 322.222,372.412 322.236,372.434 322.253,372.454 C 322.27,372.474 322.291,372.491 322.314,372.504 C 322.338,372.516 322.363,372.525 322.388,372.527 C 322.418,372.529 322.441,372.527 322.463,372.519 C 322.487,372.512 322.509,372.499 322.527,372.482 C 322.544,372.467 322.557,372.447 322.566,372.423 C 322.577,372.4 322.581,372.375 322.582,372.348 C 322.581,372.319 322.577,372.293 322.567,372.268 C 322.557,372.243 322.544,372.221 322.527,372.2 C 322.51,372.182 322.488,372.165 322.465,372.152 C 322.442,372.14 322.418,372.131 322.39,372.129 L 322.351,372.129 C 322.339,372.131 322.328,372.133 322.315,372.137 Z M 322.624,372.152 L 322.624,372.549 L 322.867,372.576 C 322.88,372.576 322.894,372.575 322.906,372.57 C 322.919,372.567 322.93,372.56 322.94,372.552 C 322.95,372.542 322.957,372.531 322.961,372.519 C 322.967,372.507 322.97,372.493 322.97,372.479 C 322.97,372.465 322.967,372.45 322.963,372.437 C 322.958,372.423 322.952,372.412 322.94,372.401 C 322.932,372.39 322.921,372.382 322.91,372.375 C 322.899,372.37 322.89,372.365 322.879,372.364 L 322.935,372.255 L 322.97,372.187 L 322.893,372.18 L 322.859,372.248 L 322.82,372.318 L 322.819,372.321 C 322.812,372.331 322.805,372.338 322.795,372.344 C 322.785,372.349 322.773,372.351 322.76,372.349 L 322.692,372.343 L 322.692,372.159 L 322.624,372.152 Z M 320.507,372.187 L 320.682,372.205 C 320.684,372.206 320.687,372.206 320.69,372.208 C 320.692,372.208 320.694,372.208 320.696,372.209 L 320.696,372.211 C 320.701,372.215 320.707,372.219 320.711,372.226 C 320.715,372.233 320.716,372.24 320.717,372.248 C 320.716,372.253 320.716,372.259 320.713,372.262 C 320.71,372.267 320.708,372.27 320.707,372.272 C 320.704,372.273 320.701,372.275 320.697,372.277 C 320.693,372.279 320.688,372.28 320.682,372.279 L 320.507,372.261 L 320.507,372.187 Z M 322.39,372.199 C 322.408,372.201 322.423,372.206 322.437,372.215 C 322.452,372.222 322.466,372.235 322.476,372.248 C 322.488,372.26 322.497,372.274 322.503,372.29 C 322.512,372.305 322.514,372.323 322.514,372.34 C 322.514,372.358 322.511,372.375 322.503,372.389 C 322.497,372.405 322.488,372.417 322.476,372.428 C 322.465,372.438 322.452,372.446 322.437,372.45 C 322.423,372.456 322.407,372.457 322.388,372.456 C 322.372,372.454 322.356,372.447 322.341,372.44 C 322.328,372.433 322.314,372.421 322.302,372.409 C 322.29,372.396 322.281,372.382 322.275,372.366 C 322.269,372.35 322.266,372.332 322.265,372.316 C 322.266,372.297 322.269,372.28 322.275,372.266 C 322.281,372.251 322.29,372.24 322.302,372.228 C 322.314,372.218 322.328,372.209 322.342,372.205 C 322.356,372.199 322.372,372.197 322.39,372.199 Z M 321.033,372.241 L 321.207,372.26 C 321.211,372.26 321.212,372.26 321.214,372.262 C 321.217,372.262 321.219,372.263 321.222,372.264 C 321.229,372.267 321.233,372.273 321.236,372.279 C 321.24,372.286 321.242,372.292 321.242,372.299 C 321.242,372.305 321.24,372.312 321.238,372.316 C 321.236,372.318 321.234,372.322 321.232,372.324 C 321.23,372.327 321.226,372.328 321.222,372.33 C 321.218,372.331 321.212,372.331 321.207,372.331 L 321.033,372.314 L 321.033,372.241 Z M 322.692,372.413 L 322.867,372.432 C 322.87,372.432 322.871,372.433 322.874,372.433 C 322.876,372.434 322.878,372.434 322.88,372.436 C 322.887,372.44 322.892,372.445 322.895,372.45 C 322.899,372.457 322.901,372.464 322.901,372.472 C 322.901,372.478 322.899,372.482 322.897,372.487 C 322.895,372.491 322.893,372.494 322.891,372.496 C 322.889,372.499 322.885,372.5 322.882,372.502 C 322.878,372.505 322.873,372.505 322.867,372.505 L 322.692,372.487 L 322.692,372.413 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 310.1,384.689 L 309.926,384.851 L 327.334,385.985 L 327.423,385.948 C 327.452,385.938 327.483,385.91 327.483,385.863 L 327.483,385.821 L 310.1,384.689 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 309.926,384.851 L 309.925,361.399 L 310.013,361.316 L 310.1,361.328 L 310.1,384.689 L 309.926,384.851 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--ROYAL_BLUE, .KN95_NR_individuals--ROYAL_BLUE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='111.718 -475.376 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.303' y2='19.846' gradientTransform='translate(124.36 447.905)'%3E%3Cstop offset='0' stop-color='%230a3558'/%3E%3Cstop offset='1' stop-color='%230d4673'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.92' gradientTransform='translate(120.821 448.52)'%3E%3Cstop offset='0' stop-color='%23082c48'/%3E%3Cstop offset='1' stop-color='%230b3b61'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.1' gradientTransform='translate(124.354 467.889)'%3E%3Cstop offset='0' stop-color='%230a3557'/%3E%3Cstop offset='1' stop-color='%230b3c63'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.118' y2='-0.229' gradientTransform='translate(119.68 469.944)'%3E%3Cstop offset='0' stop-color='%23082a46'/%3E%3Cstop offset='1' stop-color='%230a3557'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(132.674 469.759) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%230a375a'/%3E%3Cstop offset='1' stop-color='%230b3e66'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.164' y2='0' gradientTransform='translate(121.529 457.648) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23093355'/%3E%3Cstop offset='1' stop-color='%230b3b61'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(128.447 458.647) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 121.448,445.491 L 121.448,468.977 L 138.895,470.097 C 138.907,470.082 138.915,470.063 138.915,470.039 L 138.915,447.858 L 121.448,445.491 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 121.448,445.491 L 117.984,448.854 L 117.981,470.875 L 121.448,468.977 L 121.448,445.491 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 121.448,468.977 L 117.981,470.875 L 134.914,471.803 L 138.857,470.124 C 138.871,470.118 138.884,470.11 138.895,470.097 L 121.448,468.977 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 121.36,468.709 L 117.981,470.599 L 117.98,470.875 L 121.36,469.025 L 121.36,468.709 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 128.489,451.092 L 128.489,451.503 L 128.561,451.511 L 128.561,451.1 L 128.489,451.092 Z M 128.619,451.107 L 128.619,451.514 L 128.69,451.468 L 128.952,451.292 L 128.952,451.552 L 129.023,451.56 L 129.023,451.151 L 128.952,451.199 L 128.69,451.374 L 128.69,451.114 L 128.619,451.107 Z M 129.081,451.157 L 129.081,451.568 L 129.284,451.59 C 129.312,451.592 129.338,451.59 129.361,451.582 C 129.387,451.574 129.408,451.562 129.426,451.544 C 129.445,451.527 129.459,451.508 129.47,451.485 C 129.48,451.461 129.486,451.434 129.486,451.406 C 129.486,451.381 129.481,451.357 129.474,451.333 C 129.464,451.31 129.452,451.288 129.438,451.269 C 129.436,451.267 129.434,451.264 129.433,451.262 C 129.431,451.26 129.428,451.257 129.426,451.256 C 129.408,451.234 129.387,451.217 129.361,451.204 C 129.338,451.191 129.312,451.182 129.284,451.179 L 129.081,451.157 Z M 129.544,451.207 L 129.544,451.617 L 129.618,451.624 L 129.618,451.216 L 129.544,451.207 Z M 129.154,451.237 L 129.284,451.251 C 129.302,451.255 129.318,451.26 129.334,451.269 C 129.35,451.276 129.364,451.288 129.375,451.301 C 129.388,451.314 129.396,451.328 129.404,451.346 C 129.41,451.363 129.413,451.38 129.413,451.398 C 129.413,451.417 129.41,451.432 129.404,451.447 C 129.396,451.464 129.388,451.477 129.375,451.487 C 129.364,451.498 129.35,451.506 129.334,451.511 C 129.318,451.516 129.302,451.517 129.284,451.515 L 129.154,451.501 L 129.154,451.237 Z M 129.859,451.243 L 129.687,451.559 L 129.651,451.63 L 129.732,451.637 L 129.768,451.569 L 129.859,451.404 L 129.946,451.589 L 129.983,451.664 L 130.064,451.675 L 130.027,451.597 L 129.859,451.243 Z M 130.1,451.269 L 130.1,451.678 L 130.172,451.686 L 130.172,451.276 L 130.1,451.269 Z M 130.231,451.282 L 130.231,451.692 L 130.433,451.714 C 130.459,451.716 130.486,451.714 130.511,451.707 C 130.536,451.699 130.556,451.687 130.575,451.669 C 130.594,451.653 130.608,451.632 130.618,451.609 C 130.629,451.585 130.633,451.559 130.633,451.531 C 130.633,451.506 130.631,451.482 130.622,451.459 C 130.613,451.434 130.602,451.413 130.586,451.393 C 130.584,451.391 130.582,451.389 130.581,451.387 C 130.579,451.385 130.577,451.382 130.574,451.38 C 130.555,451.359 130.536,451.342 130.511,451.328 C 130.486,451.315 130.459,451.307 130.433,451.303 L 130.231,451.282 Z M 130.817,451.363 C 130.792,451.37 130.769,451.382 130.751,451.398 C 130.733,451.416 130.719,451.436 130.709,451.46 C 130.699,451.483 130.693,451.51 130.693,451.537 L 130.693,451.741 L 130.764,451.75 L 130.764,451.545 C 130.764,451.526 130.768,451.511 130.775,451.495 C 130.781,451.481 130.792,451.468 130.804,451.457 C 130.816,451.445 130.829,451.437 130.846,451.432 C 130.859,451.427 130.877,451.424 130.895,451.427 C 130.913,451.43 130.93,451.434 130.946,451.443 C 130.962,451.45 130.975,451.463 130.988,451.477 C 130.999,451.489 131.007,451.505 131.015,451.521 C 131.022,451.538 131.026,451.555 131.026,451.574 L 131.026,451.778 L 131.098,451.787 L 131.098,451.582 C 131.098,451.552 131.092,451.526 131.082,451.501 C 131.071,451.474 131.057,451.449 131.039,451.43 C 131.02,451.41 130.998,451.392 130.973,451.379 C 130.95,451.366 130.924,451.358 130.895,451.354 C 130.866,451.352 130.841,451.354 130.817,451.363 Z M 130.301,451.363 L 130.433,451.378 C 130.449,451.379 130.465,451.384 130.483,451.392 C 130.498,451.401 130.512,451.411 130.524,451.424 C 130.536,451.438 130.544,451.455 130.552,451.471 C 130.558,451.487 130.562,451.505 130.562,451.522 C 130.562,451.54 130.558,451.558 130.552,451.573 C 130.544,451.589 130.536,451.602 130.524,451.612 C 130.512,451.623 130.498,451.63 130.483,451.636 C 130.465,451.641 130.449,451.642 130.433,451.64 L 130.301,451.626 L 130.301,451.363 Z M 131.133,451.38 L 131.169,451.458 L 131.338,451.812 L 131.51,451.495 L 131.546,451.424 L 131.465,451.417 L 131.428,451.486 L 131.338,451.65 L 131.251,451.466 L 131.214,451.389 L 131.133,451.38 Z M 131.681,451.443 C 131.67,451.444 131.661,451.446 131.653,451.449 C 131.64,451.456 131.629,451.463 131.619,451.473 C 131.608,451.482 131.601,451.491 131.595,451.503 C 131.59,451.512 131.588,451.521 131.585,451.529 C 131.582,451.539 131.582,451.548 131.582,451.559 L 131.582,451.838 L 131.653,451.846 L 131.653,451.559 C 131.654,451.552 131.657,451.544 131.661,451.538 C 131.666,451.531 131.671,451.526 131.68,451.522 C 131.686,451.518 131.695,451.516 131.703,451.515 L 131.915,451.538 L 131.915,451.466 L 131.709,451.443 C 131.699,451.441 131.69,451.442 131.681,451.443 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 126.286,457.821 L 126.284,459.874 L 126.623,459.907 L 126.625,458.86 L 126.903,459.163 L 127.155,459.437 L 127.683,460.015 L 128.185,460.067 L 127.356,459.158 L 128.18,458.014 L 127.762,457.973 L 127.105,458.885 L 126.625,458.363 L 126.625,457.856 L 126.286,457.821 Z M 128.353,458.032 L 128.528,458.416 L 129.319,460.183 L 130.116,458.579 L 130.29,458.229 L 129.91,458.191 L 129.736,458.539 L 129.321,459.376 L 128.905,458.454 L 128.733,458.073 L 128.353,458.032 Z M 130.46,458.247 L 130.464,458.247 L 130.724,458.639 L 131.189,459.343 L 131.405,459.663 L 131.663,460.055 L 130.457,459.931 L 130.456,460.298 L 131.925,460.447 L 132.349,460.489 L 132.087,460.097 L 131.616,459.385 L 131.403,459.064 L 131.147,458.683 L 132.36,458.806 L 132.361,458.439 L 130.891,458.291 L 130.89,458.291 L 130.46,458.247 Z M 132.938,458.542 C 132.876,458.564 132.821,458.598 132.776,458.645 C 132.728,458.69 132.692,458.745 132.666,458.809 C 132.639,458.873 132.627,458.943 132.626,459.021 L 132.624,459.964 C 132.624,460.041 132.637,460.114 132.663,460.184 C 132.69,460.253 132.725,460.315 132.773,460.37 C 132.819,460.426 132.873,460.471 132.935,460.506 C 132.996,460.541 133.063,460.562 133.134,460.57 L 134.52,460.71 L 134.52,460.344 L 133.134,460.203 C 133.101,460.2 133.073,460.189 133.047,460.17 C 133.021,460.15 133,460.125 132.984,460.096 C 132.969,460.066 132.962,460.033 132.962,459.998 L 132.962,459.808 L 134.182,459.932 L 134.183,459.566 L 132.962,459.442 L 132.962,459.054 C 132.962,459.02 132.97,458.99 132.986,458.964 C 133.002,458.937 133.022,458.915 133.048,458.902 C 133.074,458.887 133.102,458.882 133.136,458.885 L 134.522,459.025 L 134.522,458.66 L 133.136,458.518 C 133.067,458.512 132.999,458.519 132.938,458.542 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 128.29,456.73 L 128.29,457.168 C 128.29,457.191 128.293,457.212 128.302,457.233 C 128.309,457.253 128.321,457.272 128.335,457.287 C 128.349,457.305 128.367,457.317 128.387,457.328 C 128.406,457.337 128.426,457.344 128.449,457.347 L 128.882,457.393 L 128.882,457.285 L 128.449,457.24 C 128.439,457.239 128.43,457.235 128.421,457.229 C 128.413,457.224 128.407,457.217 128.402,457.208 C 128.397,457.199 128.395,457.19 128.395,457.18 L 128.395,457.124 L 128.775,457.162 L 128.775,457.057 L 128.395,457.016 L 128.395,456.742 L 128.29,456.73 Z M 128.968,456.802 L 128.967,457.24 C 128.967,457.261 128.971,457.284 128.98,457.305 C 128.987,457.324 128.998,457.343 129.012,457.359 C 129.027,457.375 129.046,457.388 129.064,457.399 C 129.083,457.41 129.103,457.416 129.126,457.419 L 129.558,457.464 L 129.559,457.357 L 129.127,457.311 C 129.116,457.311 129.107,457.307 129.099,457.302 C 129.09,457.295 129.085,457.287 129.079,457.279 C 129.075,457.271 129.072,457.261 129.072,457.251 L 129.072,457.196 L 129.453,457.235 L 129.453,457.129 L 129.072,457.089 L 129.072,456.813 L 128.968,456.802 Z M 129.646,456.874 L 129.644,457.474 L 130.017,457.513 C 130.04,457.515 130.06,457.513 130.078,457.506 C 130.097,457.5 130.115,457.491 130.129,457.478 L 130.129,457.476 C 130.145,457.462 130.156,457.447 130.166,457.428 C 130.173,457.41 130.177,457.389 130.177,457.367 C 130.177,457.344 130.173,457.324 130.166,457.305 C 130.158,457.284 130.146,457.265 130.133,457.25 C 130.118,457.234 130.103,457.221 130.084,457.211 C 130.07,457.201 130.055,457.196 130.039,457.193 C 130.037,457.193 130.035,457.193 130.034,457.193 L 130.034,457.191 L 129.75,457.16 L 129.751,456.886 L 129.646,456.874 Z M 130.261,456.936 L 130.261,457.115 C 130.261,457.127 130.262,457.137 130.265,457.149 C 130.267,457.161 130.271,457.174 130.275,457.184 C 130.284,457.208 130.296,457.226 130.31,457.243 C 130.326,457.261 130.343,457.275 130.365,457.286 C 130.384,457.298 130.406,457.305 130.43,457.309 L 130.683,457.336 L 130.685,457.336 C 130.698,457.339 130.709,457.343 130.717,457.35 C 130.727,457.358 130.734,457.367 130.74,457.378 C 130.745,457.388 130.748,457.4 130.748,457.413 C 130.748,457.426 130.745,457.437 130.738,457.447 C 130.732,457.457 130.725,457.464 130.714,457.47 C 130.704,457.475 130.692,457.477 130.678,457.476 L 130.262,457.433 L 130.262,457.539 L 130.678,457.582 C 130.704,457.585 130.727,457.582 130.747,457.575 C 130.768,457.569 130.785,457.558 130.803,457.543 C 130.819,457.531 130.832,457.511 130.84,457.491 C 130.849,457.472 130.853,457.449 130.854,457.424 C 130.854,457.412 130.853,457.399 130.85,457.388 C 130.847,457.375 130.845,457.363 130.84,457.353 C 130.835,457.343 130.831,457.333 130.825,457.324 C 130.819,457.315 130.812,457.305 130.804,457.296 C 130.789,457.278 130.77,457.263 130.75,457.252 C 130.73,457.24 130.709,457.233 130.684,457.229 L 130.682,457.229 C 130.681,457.229 130.68,457.229 130.678,457.228 L 130.43,457.202 C 130.418,457.201 130.407,457.196 130.398,457.188 C 130.388,457.181 130.381,457.171 130.376,457.16 C 130.37,457.149 130.369,457.138 130.369,457.127 L 130.369,457.057 L 130.851,457.106 L 130.852,457 L 130.434,456.955 L 130.261,456.936 Z M 131.351,457.053 L 131.35,457.651 L 131.456,457.581 L 131.838,457.324 L 131.837,457.704 L 131.943,457.715 L 131.944,457.117 L 131.838,457.188 L 131.456,457.444 L 131.457,457.065 L 131.351,457.053 Z M 132.028,457.126 L 132.028,457.725 L 132.402,457.765 C 132.422,457.768 132.443,457.766 132.463,457.758 C 132.483,457.752 132.499,457.743 132.513,457.729 C 132.528,457.716 132.539,457.7 132.547,457.681 C 132.556,457.662 132.56,457.641 132.56,457.62 C 132.56,457.597 132.556,457.576 132.548,457.556 C 132.54,457.537 132.53,457.518 132.515,457.502 C 132.502,457.486 132.486,457.473 132.468,457.461 C 132.454,457.453 132.437,457.447 132.421,457.444 L 132.507,457.283 L 132.561,457.182 L 132.443,457.169 L 132.389,457.271 L 132.33,457.376 L 132.329,457.381 C 132.319,457.395 132.307,457.408 132.291,457.414 C 132.276,457.423 132.258,457.425 132.239,457.423 L 132.134,457.412 L 132.135,457.136 L 132.028,457.126 Z M 129.75,457.265 L 130.019,457.294 C 130.021,457.294 130.026,457.295 130.03,457.298 C 130.033,457.299 130.037,457.3 130.04,457.303 L 130.04,457.303 C 130.05,457.309 130.059,457.316 130.063,457.326 C 130.07,457.335 130.072,457.344 130.072,457.356 C 130.072,457.366 130.07,457.374 130.066,457.38 C 130.063,457.386 130.059,457.391 130.057,457.394 C 130.052,457.396 130.048,457.399 130.042,457.401 C 130.035,457.405 130.027,457.406 130.019,457.405 L 129.75,457.376 L 129.75,457.265 Z M 132.134,457.518 L 132.402,457.547 C 132.405,457.548 132.408,457.549 132.413,457.55 C 132.416,457.551 132.42,457.553 132.422,457.555 C 132.434,457.56 132.44,457.569 132.446,457.577 C 132.454,457.587 132.456,457.597 132.456,457.608 C 132.455,457.618 132.454,457.626 132.448,457.634 C 132.445,457.64 132.443,457.643 132.439,457.647 C 132.435,457.649 132.43,457.653 132.425,457.654 C 132.417,457.658 132.41,457.659 132.402,457.658 L 132.134,457.63 L 132.134,457.518 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 126.404,455.536 L 126.403,455.932 L 126.645,455.958 C 126.659,455.959 126.674,455.958 126.685,455.954 C 126.697,455.948 126.709,455.943 126.719,455.934 L 126.719,455.933 C 126.729,455.924 126.736,455.914 126.741,455.902 C 126.746,455.889 126.75,455.876 126.75,455.86 C 126.75,455.845 126.747,455.832 126.742,455.819 C 126.737,455.806 126.731,455.794 126.722,455.783 C 126.711,455.772 126.701,455.763 126.689,455.757 C 126.679,455.749 126.67,455.746 126.659,455.745 C 126.658,455.745 126.657,455.744 126.657,455.744 L 126.657,455.744 L 126.471,455.725 L 126.473,455.543 L 126.404,455.536 Z M 126.804,455.574 L 126.803,455.972 L 127.048,455.999 C 127.063,456 127.076,455.999 127.087,455.995 C 127.1,455.99 127.109,455.984 127.12,455.975 C 127.129,455.965 127.136,455.955 127.143,455.943 C 127.147,455.931 127.15,455.917 127.15,455.904 C 127.15,455.888 127.147,455.874 127.144,455.86 C 127.137,455.847 127.13,455.836 127.121,455.825 C 127.111,455.813 127.103,455.805 127.09,455.798 C 127.081,455.793 127.071,455.787 127.061,455.787 L 127.115,455.678 L 127.15,455.611 L 127.075,455.603 L 127.038,455.67 L 127.002,455.741 L 127,455.744 C 126.994,455.756 126.986,455.762 126.976,455.767 C 126.965,455.772 126.954,455.774 126.942,455.772 L 126.872,455.765 L 126.872,455.582 L 126.804,455.574 Z M 127.31,455.645 C 127.288,455.652 127.268,455.665 127.25,455.68 C 127.231,455.697 127.218,455.716 127.208,455.738 C 127.199,455.763 127.193,455.787 127.193,455.815 C 127.193,455.843 127.199,455.87 127.207,455.894 C 127.218,455.919 127.231,455.942 127.25,455.961 C 127.266,455.982 127.288,455.999 127.309,456.011 C 127.333,456.024 127.358,456.032 127.386,456.035 C 127.412,456.037 127.438,456.035 127.461,456.026 C 127.483,456.019 127.505,456.007 127.522,455.99 C 127.54,455.974 127.554,455.955 127.563,455.931 C 127.573,455.908 127.578,455.883 127.578,455.854 C 127.578,455.827 127.573,455.801 127.563,455.775 C 127.554,455.75 127.541,455.729 127.522,455.71 C 127.505,455.689 127.483,455.672 127.462,455.66 C 127.438,455.647 127.412,455.638 127.386,455.636 L 127.347,455.637 C 127.334,455.638 127.322,455.639 127.31,455.645 Z M 127.777,455.677 L 127.777,456.004 L 127.62,455.988 L 127.62,456.058 L 128.003,456.099 L 128.003,456.027 L 127.847,456.011 L 127.848,455.684 L 127.777,455.677 Z M 127.386,455.707 C 127.402,455.71 127.419,455.714 127.434,455.723 C 127.45,455.73 127.463,455.741 127.473,455.755 C 127.483,455.767 127.494,455.781 127.501,455.798 C 127.507,455.813 127.509,455.83 127.509,455.848 C 127.509,455.866 127.507,455.882 127.5,455.897 C 127.494,455.911 127.483,455.924 127.473,455.935 C 127.462,455.945 127.449,455.954 127.433,455.958 C 127.419,455.962 127.402,455.964 127.386,455.962 C 127.368,455.961 127.352,455.956 127.337,455.948 C 127.322,455.941 127.309,455.929 127.297,455.917 C 127.287,455.904 127.278,455.891 127.271,455.873 C 127.266,455.856 127.262,455.839 127.262,455.823 C 127.262,455.805 127.266,455.787 127.271,455.774 C 127.278,455.76 127.288,455.746 127.298,455.735 C 127.309,455.725 127.323,455.717 127.337,455.712 C 127.352,455.708 127.369,455.706 127.386,455.707 Z M 128.122,455.721 C 128.112,455.725 128.102,455.731 128.09,455.741 C 128.082,455.749 128.074,455.761 128.07,455.773 C 128.064,455.786 128.061,455.799 128.061,455.813 L 128.061,455.998 C 128.061,456.012 128.063,456.026 128.068,456.039 C 128.074,456.053 128.081,456.065 128.09,456.076 C 128.1,456.088 128.111,456.096 128.122,456.103 C 128.135,456.11 128.148,456.114 128.164,456.116 L 128.445,456.144 L 128.445,456.073 L 128.164,456.044 C 128.158,456.042 128.151,456.04 128.145,456.037 C 128.141,456.034 128.136,456.028 128.134,456.023 C 128.13,456.017 128.128,456.011 128.128,456.004 L 128.128,455.967 L 128.376,455.994 L 128.376,455.922 L 128.128,455.896 L 128.129,455.821 C 128.129,455.813 128.13,455.808 128.134,455.803 C 128.137,455.798 128.141,455.794 128.146,455.792 C 128.153,455.787 128.158,455.787 128.164,455.787 L 128.445,455.817 L 128.445,455.746 L 128.164,455.717 C 128.149,455.716 128.136,455.717 128.122,455.721 Z M 128.612,455.779 C 128.588,455.787 128.569,455.799 128.551,455.815 C 128.533,455.832 128.519,455.851 128.51,455.874 C 128.5,455.897 128.495,455.923 128.495,455.95 C 128.495,455.978 128.5,456.005 128.51,456.029 C 128.518,456.053 128.533,456.076 128.551,456.098 C 128.569,456.117 128.588,456.133 128.612,456.146 C 128.635,456.159 128.66,456.166 128.687,456.169 L 128.878,456.188 L 128.878,456.118 L 128.687,456.098 C 128.67,456.097 128.653,456.091 128.639,456.084 C 128.624,456.075 128.61,456.065 128.599,456.052 C 128.587,456.039 128.58,456.026 128.572,456.008 C 128.567,455.993 128.563,455.975 128.563,455.958 C 128.563,455.94 128.567,455.923 128.573,455.909 C 128.58,455.894 128.587,455.881 128.6,455.872 C 128.611,455.86 128.626,455.852 128.639,455.847 C 128.653,455.841 128.67,455.839 128.687,455.841 L 128.879,455.862 L 128.879,455.792 L 128.687,455.772 L 128.648,455.772 C 128.636,455.772 128.624,455.775 128.612,455.779 Z M 126.471,455.796 L 126.646,455.813 C 126.65,455.813 126.652,455.813 126.655,455.814 C 126.657,455.815 126.658,455.816 126.661,455.818 C 126.667,455.822 126.672,455.826 126.676,455.832 C 126.679,455.839 126.681,455.845 126.681,455.852 C 126.681,455.859 126.679,455.865 126.677,455.87 C 126.676,455.874 126.673,455.878 126.67,455.878 C 126.669,455.881 126.666,455.883 126.662,455.884 C 126.657,455.886 126.653,455.887 126.646,455.886 L 126.471,455.869 L 126.471,455.796 Z M 129.092,455.813 L 129.092,456.14 L 128.934,456.123 L 128.934,456.196 L 129.319,456.236 L 129.319,456.163 L 129.162,456.147 L 129.162,455.82 L 129.092,455.813 Z M 126.872,455.836 L 127.048,455.853 C 127.05,455.854 127.052,455.854 127.055,455.855 C 127.057,455.856 127.059,455.858 127.063,455.858 C 127.068,455.862 127.073,455.868 127.077,455.874 C 127.081,455.88 127.083,455.887 127.083,455.895 C 127.083,455.902 127.081,455.906 127.079,455.91 C 127.077,455.915 127.075,455.918 127.072,455.92 C 127.07,455.922 127.066,455.923 127.064,455.925 C 127.059,455.928 127.053,455.928 127.048,455.928 L 126.872,455.909 L 126.872,455.836 Z M 129.375,455.841 L 129.374,456.24 L 129.444,456.248 L 129.445,455.849 L 129.375,455.841 Z M 129.672,455.874 L 129.511,456.184 L 129.476,456.251 L 129.553,456.259 L 129.588,456.192 L 129.672,456.03 L 129.756,456.21 L 129.792,456.284 L 129.869,456.292 L 129.833,456.218 L 129.672,455.874 Z M 129.967,455.912 C 129.955,455.917 129.944,455.923 129.935,455.931 C 129.925,455.941 129.917,455.951 129.912,455.963 C 129.906,455.975 129.903,455.99 129.903,456.005 L 129.903,456.187 C 129.903,456.203 129.905,456.217 129.911,456.23 C 129.917,456.244 129.924,456.256 129.934,456.266 C 129.943,456.277 129.954,456.287 129.967,456.293 C 129.978,456.301 129.993,456.305 130.007,456.307 L 130.287,456.336 L 130.287,456.264 L 130.007,456.236 C 129.999,456.235 129.994,456.232 129.988,456.228 C 129.983,456.225 129.98,456.22 129.976,456.214 C 129.973,456.209 129.971,456.202 129.971,456.196 L 129.971,456.158 L 130.22,456.184 L 130.22,456.114 L 129.972,456.088 L 129.972,456.012 C 129.972,456.005 129.974,456 129.976,455.995 C 129.98,455.989 129.983,455.985 129.989,455.983 C 129.994,455.98 130,455.979 130.007,455.979 L 130.288,456.008 L 130.288,455.936 L 130.007,455.908 C 129.993,455.907 129.979,455.908 129.967,455.912 Z M 130.61,455.969 L 130.609,456.368 L 130.853,456.394 C 130.867,456.394 130.88,456.394 130.893,456.388 C 130.906,456.385 130.917,456.378 130.926,456.369 C 130.936,456.361 130.943,456.349 130.949,456.337 C 130.953,456.325 130.956,456.311 130.956,456.297 C 130.956,456.281 130.954,456.267 130.95,456.254 C 130.944,456.241 130.937,456.23 130.928,456.22 C 130.919,456.21 130.91,456.2 130.896,456.193 C 130.888,456.187 130.876,456.183 130.866,456.181 L 130.923,456.072 L 130.957,456.005 L 130.879,455.998 L 130.846,456.065 L 130.808,456.136 L 130.808,456.138 C 130.801,456.148 130.792,456.155 130.781,456.161 C 130.77,456.165 130.76,456.168 130.749,456.168 L 130.678,456.16 L 130.678,455.977 L 130.61,455.969 Z M 131.076,456.027 C 131.065,456.031 131.053,456.039 131.044,456.047 C 131.034,456.055 131.027,456.065 131.022,456.077 C 131.016,456.091 131.014,456.105 131.014,456.12 L 131.014,456.303 C 131.014,456.318 131.015,456.332 131.021,456.346 C 131.027,456.359 131.034,456.371 131.044,456.383 C 131.053,456.394 131.064,456.401 131.076,456.409 C 131.089,456.416 131.102,456.421 131.116,456.421 L 131.397,456.45 L 131.397,456.38 L 131.116,456.35 C 131.11,456.349 131.104,456.348 131.098,456.343 C 131.094,456.341 131.09,456.335 131.085,456.33 C 131.083,456.323 131.081,456.317 131.081,456.311 L 131.081,456.273 L 131.329,456.298 L 131.329,456.227 L 131.082,456.202 L 131.082,456.128 C 131.082,456.121 131.084,456.116 131.086,456.11 C 131.09,456.104 131.094,456.101 131.098,456.098 C 131.104,456.095 131.111,456.095 131.116,456.095 L 131.398,456.123 L 131.398,456.052 L 131.117,456.023 C 131.103,456.022 131.089,456.024 131.076,456.027 Z M 131.528,456.075 C 131.513,456.079 131.5,456.089 131.489,456.098 C 131.478,456.108 131.47,456.122 131.463,456.136 C 131.457,456.15 131.453,456.166 131.453,456.184 L 131.523,456.19 C 131.523,456.181 131.524,456.171 131.53,456.163 C 131.534,456.156 131.54,456.149 131.548,456.146 C 131.556,456.142 131.563,456.141 131.576,456.142 L 131.697,456.154 C 131.706,456.155 131.714,456.159 131.723,456.163 C 131.73,456.17 131.737,456.176 131.741,456.186 C 131.746,456.196 131.748,456.204 131.748,456.214 C 131.748,456.225 131.746,456.234 131.741,456.241 C 131.737,456.249 131.73,456.254 131.723,456.258 C 131.714,456.262 131.706,456.264 131.697,456.263 L 131.556,456.249 L 131.537,456.249 C 131.53,456.25 131.523,456.251 131.517,456.252 C 131.505,456.256 131.496,456.263 131.484,456.271 C 131.481,456.276 131.474,456.28 131.472,456.287 C 131.465,456.295 131.461,456.305 131.458,456.316 C 131.454,456.324 131.453,456.336 131.453,456.346 L 131.453,456.349 C 131.453,456.363 131.456,456.377 131.461,456.391 C 131.466,456.404 131.473,456.417 131.484,456.427 C 131.494,456.439 131.504,456.447 131.517,456.453 C 131.528,456.461 131.542,456.465 131.556,456.466 L 131.712,456.483 C 131.726,456.484 131.74,456.483 131.753,456.478 C 131.765,456.475 131.776,456.468 131.787,456.46 C 131.796,456.45 131.804,456.44 131.809,456.427 C 131.815,456.415 131.816,456.401 131.816,456.386 L 131.816,456.385 L 131.748,456.376 L 131.748,456.378 C 131.748,456.385 131.746,456.391 131.743,456.396 C 131.739,456.401 131.735,456.405 131.731,456.409 C 131.725,456.411 131.719,456.412 131.712,456.411 L 131.556,456.395 C 131.55,456.394 131.543,456.392 131.538,456.387 C 131.534,456.385 131.53,456.38 131.525,456.374 C 131.523,456.368 131.522,456.362 131.522,456.355 L 131.522,456.352 C 131.522,456.346 131.523,456.341 131.525,456.335 C 131.53,456.33 131.534,456.326 131.539,456.323 C 131.543,456.321 131.55,456.32 131.556,456.32 L 131.697,456.334 L 131.722,456.334 C 131.729,456.333 131.737,456.331 131.745,456.33 C 131.761,456.323 131.774,456.316 131.785,456.303 C 131.787,456.303 131.787,456.302 131.788,456.301 C 131.788,456.299 131.788,456.299 131.789,456.298 C 131.798,456.288 131.805,456.277 131.809,456.264 C 131.815,456.251 131.817,456.236 131.817,456.222 C 131.817,456.204 131.814,456.187 131.808,456.171 C 131.802,456.156 131.793,456.142 131.782,456.13 C 131.769,456.117 131.757,456.106 131.742,456.098 C 131.728,456.091 131.712,456.085 131.697,456.084 L 131.576,456.07 C 131.557,456.068 131.542,456.07 131.528,456.075 Z M 131.873,456.103 L 131.872,456.5 L 132.115,456.524 C 132.131,456.527 132.144,456.524 132.155,456.52 C 132.168,456.516 132.179,456.51 132.189,456.501 L 132.189,456.501 C 132.198,456.491 132.206,456.479 132.211,456.468 C 132.215,456.455 132.219,456.442 132.219,456.427 C 132.219,456.412 132.216,456.398 132.211,456.386 C 132.207,456.372 132.2,456.361 132.19,456.349 C 132.181,456.339 132.171,456.33 132.158,456.323 C 132.15,456.318 132.14,456.315 132.13,456.312 C 132.129,456.312 132.127,456.311 132.126,456.311 L 132.126,456.311 L 131.943,456.291 L 131.943,456.109 L 131.873,456.103 Z M 132.275,456.143 L 132.274,456.542 L 132.342,456.549 L 132.344,456.15 L 132.275,456.143 Z M 132.398,456.155 L 132.397,456.553 L 132.641,456.577 C 132.655,456.581 132.668,456.578 132.682,456.574 C 132.694,456.57 132.704,456.562 132.714,456.555 C 132.724,456.545 132.731,456.536 132.736,456.522 C 132.741,456.51 132.744,456.497 132.744,456.481 C 132.744,456.467 132.741,456.453 132.737,456.44 C 132.731,456.427 132.725,456.413 132.716,456.404 C 132.706,456.394 132.696,456.385 132.684,456.377 C 132.674,456.372 132.664,456.368 132.654,456.365 L 132.709,456.258 L 132.744,456.19 L 132.668,456.182 L 132.632,456.251 L 132.596,456.321 L 132.594,456.323 C 132.588,456.333 132.58,456.342 132.57,456.346 C 132.559,456.351 132.547,456.354 132.536,456.352 L 132.468,456.345 L 132.468,456.161 L 132.398,456.155 Z M 132.777,456.196 L 132.814,456.27 L 132.975,456.613 L 133.136,456.303 L 133.172,456.236 L 133.094,456.228 L 133.06,456.295 L 132.975,456.457 L 132.89,456.278 L 132.854,456.204 L 132.777,456.196 Z M 130.678,456.23 L 130.853,456.249 C 130.856,456.25 130.859,456.251 130.86,456.251 C 130.862,456.251 130.865,456.252 130.867,456.253 C 130.873,456.257 130.878,456.262 130.883,456.269 C 130.886,456.275 130.889,456.281 130.889,456.29 C 130.889,456.295 130.888,456.301 130.885,456.305 C 130.883,456.311 130.879,456.313 130.878,456.315 C 130.875,456.317 130.872,456.318 130.869,456.32 C 130.865,456.321 130.864,456.322 130.86,456.322 L 130.853,456.322 L 130.678,456.303 L 130.678,456.23 Z M 133.362,456.255 L 133.362,456.584 L 133.203,456.568 L 133.203,456.638 L 133.589,456.678 L 133.589,456.607 L 133.43,456.589 L 133.431,456.262 L 133.362,456.255 Z M 133.748,456.311 C 133.725,456.32 133.706,456.331 133.687,456.348 C 133.671,456.363 133.656,456.384 133.645,456.407 C 133.635,456.429 133.63,456.455 133.63,456.483 C 133.63,456.51 133.635,456.536 133.645,456.562 C 133.655,456.587 133.67,456.61 133.687,456.629 C 133.705,456.65 133.725,456.665 133.748,456.678 C 133.771,456.691 133.797,456.699 133.823,456.702 C 133.851,456.704 133.874,456.702 133.898,456.694 C 133.921,456.686 133.943,456.675 133.96,456.657 C 133.977,456.641 133.99,456.621 134.001,456.599 C 134.011,456.575 134.016,456.55 134.016,456.522 C 134.016,456.495 134.011,456.468 134.002,456.444 C 133.99,456.419 133.977,456.396 133.96,456.375 C 133.944,456.356 133.922,456.341 133.899,456.328 C 133.875,456.316 133.851,456.307 133.824,456.303 L 133.785,456.303 C 133.772,456.305 133.761,456.309 133.748,456.311 Z M 134.058,456.328 L 134.057,456.724 L 134.299,456.75 C 134.314,456.751 134.328,456.75 134.341,456.746 C 134.353,456.742 134.364,456.735 134.374,456.727 C 134.384,456.717 134.39,456.707 134.396,456.695 C 134.401,456.683 134.403,456.669 134.403,456.654 C 134.403,456.64 134.401,456.626 134.396,456.612 C 134.391,456.599 134.384,456.587 134.375,456.575 C 134.366,456.566 134.356,456.556 134.345,456.549 C 134.333,456.544 134.324,456.541 134.312,456.538 L 134.37,456.43 L 134.404,456.362 L 134.327,456.355 L 134.293,456.423 L 134.255,456.493 L 134.253,456.496 C 134.248,456.506 134.24,456.513 134.229,456.518 C 134.219,456.523 134.207,456.524 134.195,456.523 L 134.126,456.517 L 134.126,456.334 L 134.058,456.328 Z M 131.941,456.362 L 132.115,456.38 C 132.118,456.381 132.122,456.381 132.124,456.383 C 132.125,456.383 132.129,456.384 132.131,456.385 L 132.131,456.386 C 132.137,456.389 132.142,456.394 132.145,456.4 C 132.15,456.407 132.15,456.413 132.151,456.422 C 132.15,456.427 132.15,456.434 132.148,456.437 C 132.145,456.442 132.144,456.445 132.14,456.446 C 132.138,456.449 132.136,456.45 132.131,456.452 C 132.127,456.453 132.123,456.454 132.115,456.453 L 131.941,456.436 L 131.941,456.362 Z M 133.824,456.375 C 133.841,456.376 133.857,456.381 133.872,456.389 C 133.887,456.398 133.9,456.409 133.911,456.422 C 133.923,456.435 133.932,456.45 133.938,456.465 C 133.945,456.481 133.947,456.498 133.947,456.516 C 133.947,456.534 133.945,456.549 133.938,456.564 C 133.932,456.58 133.922,456.593 133.91,456.602 C 133.9,456.613 133.887,456.621 133.872,456.626 C 133.857,456.631 133.841,456.632 133.823,456.631 C 133.806,456.627 133.79,456.623 133.776,456.616 C 133.761,456.608 133.747,456.597 133.735,456.585 C 133.724,456.571 133.716,456.556 133.709,456.542 C 133.703,456.523 133.7,456.508 133.7,456.491 C 133.7,456.472 133.703,456.455 133.709,456.441 C 133.716,456.427 133.724,456.413 133.735,456.403 C 133.747,456.394 133.761,456.385 133.777,456.38 C 133.791,456.375 133.806,456.373 133.824,456.375 Z M 132.468,456.416 L 132.641,456.435 C 132.644,456.435 132.646,456.436 132.648,456.437 C 132.65,456.437 132.653,456.438 132.655,456.439 C 132.661,456.443 132.666,456.448 132.67,456.453 C 132.674,456.461 132.676,456.467 132.676,456.474 C 132.676,456.481 132.674,456.487 132.673,456.491 C 132.67,456.494 132.668,456.497 132.665,456.5 C 132.663,456.502 132.66,456.504 132.655,456.505 C 132.652,456.507 132.646,456.507 132.641,456.507 L 132.468,456.489 L 132.468,456.416 Z M 134.126,456.588 L 134.299,456.607 C 134.303,456.607 134.306,456.608 134.308,456.608 C 134.31,456.61 134.312,456.61 134.314,456.611 C 134.32,456.614 134.325,456.62 134.331,456.626 C 134.333,456.632 134.335,456.639 134.335,456.646 C 134.335,456.653 134.333,456.658 134.332,456.662 C 134.331,456.666 134.327,456.669 134.324,456.671 C 134.322,456.674 134.319,456.675 134.315,456.677 C 134.311,456.679 134.306,456.68 134.299,456.679 L 134.126,456.662 L 134.126,456.588 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 121.534,468.865 L 121.36,469.026 L 138.768,470.161 L 138.857,470.123 C 138.887,470.112 138.915,470.085 138.915,470.039 L 138.915,469.996 L 121.534,468.865 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 121.36,469.026 L 121.359,445.575 L 121.448,445.49 L 121.534,445.504 L 121.534,468.864 L 121.36,469.026 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--ROSE_QUARZ, .KN95_NR_individuals--ROSE_QUARZ {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='206.003 -391.199 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(218.645 363.728)'%3E%3Cstop offset='0' stop-color='%23cc96a2'/%3E%3Cstop offset='1' stop-color='%23eeb9c5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.921' gradientTransform='translate(215.106 364.344)'%3E%3Cstop offset='0' stop-color='%239a6a75'/%3E%3Cstop offset='1' stop-color='%23cb9ea8'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(218.639 383.712)'%3E%3Cstop offset='0' stop-color='%23b98591'/%3E%3Cstop offset='1' stop-color='%23cea1ab'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.231' gradientTransform='translate(213.965 385.769)'%3E%3Cstop offset='0' stop-color='%23907077'/%3E%3Cstop offset='1' stop-color='%23b28b93'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.01' y2='-0.163' gradientTransform='translate(226.959 385.583) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bb929b'/%3E%3Cstop offset='1' stop-color='%23d3a5af'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(215.813 373.472) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b08992'/%3E%3Cstop offset='1' stop-color='%23cb9ea8'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(222.732 374.47) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 215.732,361.315 L 215.732,384.801 L 233.18,385.921 C 233.192,385.906 233.2,385.887 233.2,385.863 L 233.2,363.681 L 215.732,361.315 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 215.732,361.315 L 212.268,364.677 L 212.266,386.699 L 215.732,384.801 L 215.732,361.315 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 215.732,384.801 L 212.266,386.699 L 229.198,387.628 L 233.142,385.948 C 233.156,385.942 233.169,385.934 233.18,385.921 L 215.732,384.801 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 215.645,384.533 L 212.265,386.422 L 212.265,386.699 L 215.645,384.848 L 215.645,384.533 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 222.774,366.916 L 222.774,367.327 L 222.845,367.335 L 222.845,366.924 L 222.774,366.916 Z M 222.904,366.93 L 222.904,367.339 L 222.975,367.291 L 223.237,367.116 L 223.237,367.376 L 223.309,367.386 L 223.309,366.975 L 223.237,367.023 L 222.975,367.198 L 222.975,366.939 L 222.904,366.93 Z M 223.366,366.98 L 223.366,367.391 L 223.568,367.413 C 223.596,367.417 223.623,367.414 223.646,367.405 C 223.672,367.399 223.692,367.386 223.711,367.367 C 223.73,367.351 223.744,367.332 223.754,367.309 C 223.765,367.285 223.771,367.258 223.771,367.23 C 223.771,367.205 223.766,367.18 223.758,367.158 C 223.749,367.134 223.737,367.112 223.722,367.094 C 223.72,367.09 223.718,367.088 223.717,367.086 C 223.716,367.084 223.713,367.081 223.71,367.079 C 223.692,367.057 223.672,367.041 223.646,367.028 C 223.623,367.015 223.597,367.006 223.568,367.003 L 223.366,366.98 Z M 223.829,367.03 L 223.829,367.442 L 223.902,367.448 L 223.902,367.039 L 223.829,367.03 Z M 223.439,367.062 L 223.568,367.076 C 223.586,367.078 223.602,367.084 223.619,367.092 C 223.634,367.1 223.648,367.111 223.659,367.124 C 223.672,367.137 223.681,367.152 223.688,367.169 C 223.695,367.187 223.698,367.204 223.698,367.221 C 223.698,367.24 223.695,367.256 223.688,367.272 C 223.681,367.288 223.672,367.301 223.659,367.311 C 223.648,367.322 223.634,367.329 223.619,367.335 C 223.602,367.34 223.586,367.341 223.568,367.34 L 223.439,367.326 L 223.439,367.062 Z M 224.143,367.066 L 223.972,367.385 L 223.935,367.453 L 224.017,367.461 L 224.053,367.392 L 224.143,367.227 L 224.231,367.412 L 224.267,367.489 L 224.349,367.499 L 224.312,367.42 L 224.143,367.066 Z M 224.384,367.092 L 224.384,367.502 L 224.457,367.51 L 224.457,367.099 L 224.384,367.092 Z M 224.515,367.107 L 224.515,367.515 L 224.717,367.538 C 224.744,367.54 224.771,367.538 224.796,367.531 C 224.82,367.523 224.84,367.51 224.859,367.494 C 224.879,367.476 224.893,367.456 224.903,367.433 C 224.914,367.41 224.918,367.385 224.918,367.354 C 224.918,367.329 224.915,367.306 224.906,367.283 C 224.898,367.258 224.886,367.237 224.871,367.218 C 224.869,367.216 224.867,367.213 224.866,367.211 C 224.864,367.208 224.861,367.206 224.859,367.204 C 224.84,367.184 224.82,367.166 224.796,367.152 C 224.771,367.139 224.744,367.131 224.717,367.127 L 224.515,367.107 Z M 225.102,367.186 C 225.077,367.193 225.054,367.206 225.036,367.223 C 225.019,367.24 225.004,367.259 224.995,367.283 C 224.983,367.308 224.977,367.334 224.977,367.361 L 224.977,367.566 L 225.049,367.574 L 225.049,367.368 C 225.049,367.35 225.053,367.334 225.06,367.319 C 225.065,367.304 225.076,367.291 225.089,367.281 C 225.1,367.27 225.114,367.261 225.13,367.256 C 225.144,367.251 225.162,367.249 225.18,367.251 C 225.198,367.253 225.215,367.258 225.23,367.268 C 225.247,367.276 225.259,367.287 225.272,367.301 C 225.284,367.313 225.292,367.328 225.299,367.345 C 225.306,367.361 225.311,367.38 225.311,367.399 L 225.311,367.603 L 225.382,367.611 L 225.382,367.405 C 225.382,367.376 225.377,367.35 225.366,367.324 C 225.356,367.298 225.342,367.275 225.323,367.253 C 225.305,367.233 225.283,367.217 225.258,367.203 C 225.234,367.19 225.208,367.181 225.18,367.178 C 225.151,367.176 225.126,367.178 225.102,367.186 Z M 224.586,367.187 L 224.717,367.201 C 224.734,367.203 224.75,367.208 224.768,367.217 C 224.783,367.225 224.797,367.236 224.808,367.249 C 224.821,367.262 224.829,367.278 224.837,367.295 C 224.842,367.311 224.846,367.328 224.846,367.347 C 224.846,367.364 224.842,367.382 224.837,367.398 C 224.829,367.412 224.821,367.425 224.808,367.436 C 224.797,367.446 224.783,367.454 224.768,367.459 C 224.75,367.465 224.734,367.466 224.717,367.464 L 224.586,367.45 L 224.586,367.187 Z M 225.418,367.204 L 225.454,367.282 L 225.623,367.636 L 225.795,367.319 L 225.83,367.248 L 225.75,367.24 L 225.713,367.309 L 225.623,367.475 L 225.536,367.289 L 225.498,367.213 L 225.418,367.204 Z M 225.965,367.268 C 225.954,367.269 225.945,367.27 225.937,367.274 C 225.925,367.28 225.913,367.287 225.903,367.296 C 225.893,367.305 225.886,367.315 225.879,367.327 C 225.874,367.335 225.873,367.345 225.869,367.353 C 225.867,367.363 225.867,367.372 225.867,367.385 L 225.867,367.662 L 225.937,367.669 L 225.937,367.385 C 225.938,367.376 225.942,367.367 225.946,367.361 C 225.95,367.354 225.956,367.35 225.963,367.346 C 225.971,367.341 225.98,367.34 225.988,367.34 L 226.2,367.361 L 226.2,367.289 L 225.995,367.266 C 225.983,367.265 225.974,367.266 225.965,367.268 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 220.571,373.645 L 220.568,375.697 L 220.908,375.732 L 220.909,374.684 L 221.188,374.986 L 221.439,375.261 L 221.967,375.839 L 222.471,375.891 L 221.641,374.982 L 222.465,373.838 L 222.047,373.796 L 221.39,374.708 L 220.909,374.188 L 220.909,373.68 L 220.571,373.645 Z M 222.638,373.855 L 222.812,374.241 L 223.604,376.006 L 224.401,374.402 L 224.575,374.053 L 224.196,374.015 L 224.021,374.364 L 223.606,375.201 L 223.19,374.278 L 223.018,373.896 L 222.638,373.855 Z M 224.746,374.07 L 224.749,374.07 L 225.009,374.462 L 225.474,375.166 L 225.689,375.487 L 225.948,375.88 L 224.741,375.755 L 224.741,376.121 L 226.209,376.271 L 226.635,376.314 L 226.372,375.921 L 225.901,375.21 L 225.687,374.888 L 225.432,374.507 L 226.645,374.629 L 226.646,374.263 L 225.176,374.114 L 225.174,374.114 L 224.746,374.07 Z M 227.222,374.366 C 227.16,374.389 227.106,374.422 227.06,374.468 C 227.012,374.513 226.977,374.569 226.95,374.633 C 226.924,374.698 226.911,374.769 226.911,374.845 L 226.909,375.789 C 226.909,375.865 226.922,375.938 226.948,376.007 C 226.975,376.077 227.01,376.139 227.058,376.195 C 227.104,376.25 227.158,376.295 227.22,376.33 C 227.281,376.365 227.348,376.386 227.419,376.394 L 228.804,376.535 L 228.804,376.169 L 227.419,376.027 C 227.385,376.023 227.357,376.013 227.332,375.993 C 227.305,375.973 227.285,375.948 227.269,375.92 C 227.254,375.89 227.247,375.856 227.247,375.822 L 227.247,375.631 L 228.466,375.756 L 228.467,375.39 L 227.247,375.266 L 227.247,374.88 C 227.247,374.843 227.255,374.815 227.27,374.789 C 227.287,374.76 227.307,374.738 227.332,374.725 C 227.359,374.712 227.387,374.706 227.421,374.708 L 228.806,374.849 L 228.807,374.484 L 227.421,374.342 C 227.351,374.336 227.284,374.343 227.222,374.366 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 222.574,372.554 L 222.574,372.991 C 222.574,373.015 222.578,373.036 222.586,373.056 C 222.594,373.077 222.606,373.096 222.62,373.111 C 222.634,373.128 222.651,373.141 222.671,373.152 C 222.69,373.162 222.711,373.168 222.734,373.17 L 223.167,373.216 L 223.167,373.11 L 222.734,373.064 C 222.723,373.062 222.715,373.059 222.706,373.053 C 222.698,373.047 222.692,373.04 222.687,373.032 C 222.682,373.023 222.68,373.014 222.68,373.004 L 222.68,372.948 L 223.06,372.987 L 223.06,372.88 L 222.679,372.84 L 222.68,372.566 L 222.574,372.554 Z M 223.252,372.627 L 223.252,373.064 C 223.252,373.085 223.256,373.107 223.264,373.128 C 223.271,373.148 223.283,373.166 223.297,373.182 C 223.311,373.199 223.33,373.212 223.349,373.222 C 223.368,373.234 223.387,373.24 223.411,373.243 L 223.843,373.287 L 223.844,373.181 L 223.411,373.136 C 223.401,373.134 223.392,373.131 223.384,373.125 C 223.375,373.119 223.369,373.111 223.364,373.103 C 223.359,373.094 223.358,373.085 223.358,373.075 L 223.358,373.02 L 223.738,373.059 L 223.738,372.953 L 223.357,372.912 L 223.358,372.637 L 223.252,372.627 Z M 223.93,372.698 L 223.929,373.298 L 224.302,373.338 C 224.324,373.339 224.345,373.338 224.363,373.33 C 224.382,373.324 224.4,373.314 224.414,373.302 L 224.414,373.3 C 224.43,373.286 224.441,373.271 224.45,373.253 C 224.458,373.234 224.462,373.213 224.462,373.19 C 224.462,373.169 224.458,373.148 224.451,373.129 C 224.442,373.108 224.432,373.09 224.417,373.073 C 224.403,373.058 224.388,373.045 224.369,373.034 C 224.355,373.025 224.34,373.02 224.324,373.016 C 224.322,373.016 224.321,373.016 224.319,373.016 L 224.319,373.015 L 224.034,372.984 L 224.035,372.71 L 223.93,372.698 Z M 224.546,372.761 L 224.546,372.938 C 224.546,372.951 224.547,372.962 224.549,372.974 C 224.551,372.985 224.556,372.997 224.559,373.009 C 224.569,373.031 224.581,373.049 224.595,373.066 C 224.611,373.085 224.627,373.099 224.649,373.111 C 224.669,373.122 224.691,373.129 224.714,373.133 L 224.967,373.159 L 224.97,373.159 C 224.982,373.163 224.994,373.168 225.002,373.175 C 225.012,373.182 225.019,373.19 225.024,373.202 C 225.03,373.212 225.032,373.224 225.032,373.237 C 225.032,373.249 225.029,373.261 225.023,373.271 C 225.017,373.28 225.009,373.287 224.999,373.293 C 224.989,373.299 224.976,373.301 224.963,373.3 L 224.547,373.256 L 224.547,373.363 L 224.962,373.406 C 224.989,373.409 225.012,373.406 225.032,373.4 C 225.053,373.393 225.071,373.382 225.088,373.368 C 225.104,373.354 225.117,373.337 225.124,373.315 C 225.133,373.296 225.137,373.273 225.138,373.248 C 225.138,373.236 225.137,373.224 225.134,373.212 C 225.132,373.2 225.129,373.188 225.124,373.177 C 225.12,373.166 225.115,373.157 225.109,373.147 C 225.104,373.138 225.097,373.129 225.089,373.121 C 225.073,373.103 225.055,373.087 225.035,373.076 C 225.014,373.064 224.995,373.057 224.969,373.053 L 224.966,373.053 C 224.966,373.053 224.964,373.053 224.963,373.053 L 224.714,373.027 C 224.703,373.024 224.692,373.02 224.683,373.012 C 224.672,373.005 224.666,372.995 224.66,372.984 C 224.655,372.974 224.653,372.963 224.653,372.951 L 224.653,372.88 L 225.136,372.931 L 225.137,372.824 L 224.718,372.779 L 224.546,372.761 Z M 225.636,372.878 L 225.634,373.474 L 225.74,373.404 L 226.122,373.147 L 226.122,373.528 L 226.228,373.538 L 226.228,372.941 L 226.122,373.012 L 225.74,373.268 L 225.742,372.889 L 225.636,372.878 Z M 226.312,372.95 L 226.312,373.55 L 226.686,373.589 C 226.707,373.592 226.728,373.59 226.747,373.583 C 226.768,373.576 226.784,373.566 226.798,373.552 C 226.812,373.539 226.824,373.524 226.833,373.505 C 226.84,373.486 226.844,373.466 226.845,373.443 C 226.845,373.421 226.84,373.401 226.833,373.38 C 226.825,373.361 226.814,373.343 226.8,373.326 C 226.787,373.31 226.77,373.297 226.753,373.285 C 226.737,373.278 226.722,373.271 226.706,373.267 L 226.792,373.106 L 226.846,373.007 L 226.727,372.993 L 226.673,373.094 L 226.615,373.201 L 226.613,373.205 C 226.604,373.22 226.592,373.232 226.576,373.239 C 226.56,373.247 226.543,373.248 226.523,373.247 L 226.419,373.236 L 226.419,372.961 L 226.312,372.95 Z M 224.034,373.09 L 224.303,373.119 C 224.306,373.119 224.31,373.12 224.315,373.121 C 224.318,373.123 224.322,373.125 224.325,373.126 L 224.325,373.126 C 224.335,373.132 224.343,373.139 224.348,373.15 C 224.355,373.158 224.356,373.169 224.356,373.179 C 224.356,373.189 224.355,373.197 224.351,373.203 C 224.348,373.21 224.345,373.214 224.342,373.218 C 224.337,373.22 224.332,373.224 224.326,373.226 C 224.321,373.229 224.312,373.23 224.303,373.229 L 224.034,373.201 L 224.034,373.09 Z M 226.419,373.343 L 226.686,373.37 C 226.689,373.371 226.693,373.372 226.698,373.373 C 226.701,373.376 226.704,373.377 226.707,373.378 C 226.718,373.383 226.725,373.393 226.731,373.402 C 226.737,373.411 226.741,373.421 226.741,373.432 C 226.74,373.442 226.737,373.45 226.733,373.457 C 226.73,373.463 226.727,373.467 226.724,373.47 C 226.72,373.473 226.715,373.477 226.709,373.479 C 226.702,373.481 226.696,373.482 226.686,373.481 L 226.418,373.454 L 226.419,373.343 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 220.688,371.359 L 220.687,371.756 L 220.93,371.781 C 220.944,371.782 220.959,371.781 220.971,371.777 C 220.982,371.773 220.994,371.767 221.003,371.757 L 221.004,371.756 C 221.014,371.748 221.021,371.737 221.026,371.726 C 221.032,371.713 221.034,371.7 221.034,371.685 C 221.034,371.669 221.032,371.655 221.026,371.642 C 221.022,371.629 221.015,371.618 221.006,371.607 C 220.996,371.596 220.985,371.588 220.973,371.581 C 220.964,371.575 220.954,371.57 220.944,371.568 C 220.943,371.568 220.941,371.568 220.941,371.568 L 220.941,371.568 L 220.757,371.549 L 220.757,371.367 L 220.688,371.359 Z M 221.089,371.399 L 221.088,371.797 L 221.331,371.823 C 221.348,371.824 221.36,371.823 221.372,371.819 C 221.385,371.814 221.395,371.808 221.405,371.799 C 221.414,371.79 221.42,371.779 221.428,371.767 C 221.432,371.755 221.434,371.741 221.435,371.727 C 221.434,371.712 221.432,371.698 221.429,371.685 C 221.421,371.671 221.415,371.659 221.406,371.649 C 221.396,371.638 221.387,371.629 221.375,371.622 C 221.366,371.616 221.356,371.612 221.346,371.61 L 221.399,371.503 L 221.435,371.434 L 221.359,371.426 L 221.322,371.493 L 221.287,371.565 L 221.285,371.568 C 221.279,371.579 221.27,371.586 221.26,371.59 C 221.25,371.596 221.239,371.597 221.227,371.596 L 221.157,371.589 L 221.157,371.406 L 221.089,371.399 Z M 221.594,371.468 C 221.573,371.476 221.552,371.489 221.534,371.504 C 221.515,371.521 221.502,371.541 221.493,371.562 C 221.483,371.588 221.478,371.612 221.477,371.639 C 221.478,371.666 221.483,371.693 221.492,371.717 C 221.502,371.743 221.515,371.766 221.534,371.785 C 221.551,371.806 221.573,371.823 221.594,371.835 C 221.618,371.848 221.643,371.856 221.671,371.859 C 221.696,371.861 221.722,371.859 221.746,371.85 C 221.767,371.842 221.789,371.832 221.806,371.814 C 221.824,371.798 221.838,371.779 221.847,371.755 C 221.857,371.732 221.863,371.706 221.863,371.678 C 221.863,371.651 221.857,371.625 221.847,371.6 C 221.838,371.575 221.825,371.554 221.806,371.533 C 221.79,371.512 221.768,371.496 221.746,371.484 C 221.722,371.471 221.696,371.464 221.671,371.46 L 221.631,371.461 C 221.619,371.463 221.607,371.465 221.594,371.468 Z M 222.062,371.501 L 222.062,371.827 L 221.904,371.812 L 221.904,371.882 L 222.288,371.924 L 222.288,371.852 L 222.132,371.835 L 222.133,371.507 L 222.062,371.501 Z M 221.671,371.531 C 221.687,371.533 221.703,371.538 221.718,371.546 C 221.735,371.555 221.747,371.565 221.757,371.578 C 221.768,371.59 221.779,371.606 221.785,371.622 C 221.791,371.637 221.795,371.654 221.795,371.672 C 221.795,371.691 221.791,371.706 221.785,371.721 C 221.779,371.736 221.768,371.749 221.757,371.758 C 221.747,371.768 221.734,371.777 221.718,371.781 C 221.703,371.787 221.687,371.788 221.671,371.787 C 221.653,371.785 221.637,371.781 221.621,371.772 C 221.607,371.765 221.593,371.754 221.582,371.741 C 221.572,371.728 221.563,371.715 221.556,371.697 C 221.55,371.681 221.547,371.664 221.547,371.647 C 221.547,371.629 221.55,371.612 221.556,371.597 C 221.563,371.583 221.573,371.57 221.583,371.559 C 221.593,371.549 221.607,371.541 221.621,371.536 C 221.637,371.531 221.654,371.53 221.671,371.531 Z M 222.408,371.544 C 222.396,371.549 222.386,371.555 222.375,371.565 C 222.366,371.575 222.359,371.584 222.354,371.597 C 222.348,371.609 222.346,371.623 222.346,371.638 L 222.346,371.822 C 222.346,371.835 222.348,371.85 222.353,371.864 C 222.359,371.878 222.366,371.889 222.375,371.901 C 222.385,371.912 222.395,371.919 222.408,371.927 C 222.42,371.933 222.433,371.938 222.448,371.94 L 222.729,371.968 L 222.729,371.897 L 222.448,371.867 C 222.443,371.866 222.435,371.865 222.43,371.861 C 222.425,371.858 222.42,371.852 222.418,371.847 C 222.414,371.84 222.412,371.834 222.412,371.827 L 222.412,371.791 L 222.661,371.817 L 222.661,371.745 L 222.412,371.72 L 222.414,371.645 C 222.414,371.638 222.414,371.633 222.419,371.627 C 222.421,371.622 222.426,371.618 222.431,371.615 C 222.438,371.612 222.443,371.611 222.448,371.612 L 222.731,371.641 L 222.731,371.57 L 222.449,371.541 C 222.434,371.54 222.42,371.541 222.408,371.544 Z M 222.897,371.602 C 222.872,371.61 222.853,371.623 222.836,371.639 C 222.818,371.655 222.804,371.675 222.794,371.698 C 222.785,371.722 222.779,371.747 222.779,371.774 C 222.779,371.801 222.785,371.828 222.794,371.852 C 222.803,371.878 222.818,371.901 222.836,371.922 C 222.853,371.941 222.872,371.957 222.897,371.97 C 222.92,371.982 222.945,371.99 222.971,371.993 L 223.163,372.014 L 223.163,371.942 L 222.971,371.923 C 222.955,371.921 222.938,371.915 222.923,371.907 C 222.909,371.899 222.895,371.889 222.884,371.875 C 222.872,371.863 222.864,371.849 222.857,371.833 C 222.851,371.816 222.847,371.8 222.847,371.781 C 222.847,371.764 222.851,371.747 222.858,371.732 C 222.864,371.717 222.872,371.705 222.884,371.695 C 222.896,371.685 222.91,371.676 222.924,371.671 C 222.938,371.665 222.955,371.664 222.972,371.665 L 223.163,371.687 L 223.163,371.615 L 222.972,371.595 L 222.934,371.595 C 222.921,371.596 222.909,371.599 222.897,371.602 Z M 220.757,371.62 L 220.931,371.636 C 220.934,371.637 220.937,371.638 220.939,371.639 C 220.941,371.639 220.943,371.64 220.946,371.642 C 220.951,371.646 220.957,371.65 220.961,371.657 C 220.964,371.663 220.966,371.669 220.966,371.677 C 220.966,371.684 220.964,371.69 220.962,371.693 C 220.96,371.698 220.958,371.701 220.956,371.702 C 220.953,371.704 220.95,371.706 220.947,371.708 C 220.941,371.71 220.938,371.711 220.931,371.71 L 220.757,371.692 L 220.757,371.62 Z M 223.377,371.637 L 223.377,371.964 L 223.22,371.948 L 223.22,372.021 L 223.604,372.059 L 223.604,371.988 L 223.446,371.97 L 223.446,371.644 L 223.377,371.637 Z M 221.157,371.659 L 221.331,371.677 C 221.335,371.678 221.336,371.678 221.34,371.68 C 221.342,371.68 221.345,371.682 221.348,371.683 C 221.353,371.687 221.358,371.691 221.362,371.698 C 221.366,371.704 221.367,371.711 221.367,371.718 C 221.367,371.725 221.366,371.73 221.364,371.734 C 221.362,371.739 221.359,371.742 221.356,371.743 C 221.354,371.745 221.351,371.747 221.348,371.749 C 221.344,371.751 221.338,371.752 221.331,371.751 L 221.157,371.733 L 221.157,371.659 Z M 223.659,371.665 L 223.659,372.064 L 223.729,372.072 L 223.729,371.673 L 223.659,371.665 Z M 223.958,371.698 L 223.796,372.007 L 223.761,372.075 L 223.838,372.083 L 223.873,372.016 L 223.957,371.854 L 224.041,372.034 L 224.077,372.107 L 224.154,372.116 L 224.118,372.041 L 223.958,371.698 Z M 224.252,371.736 C 224.24,371.741 224.228,371.747 224.22,371.755 C 224.209,371.765 224.2,371.775 224.197,371.787 C 224.191,371.8 224.187,371.814 224.187,371.828 L 224.187,372.013 C 224.187,372.027 224.19,372.04 224.196,372.054 C 224.2,372.068 224.209,372.079 224.219,372.091 C 224.227,372.101 224.239,372.111 224.251,372.117 C 224.263,372.125 224.278,372.129 224.291,372.13 L 224.572,372.159 L 224.572,372.088 L 224.291,372.059 C 224.284,372.059 224.278,372.056 224.272,372.053 C 224.268,372.049 224.265,372.045 224.26,372.038 C 224.258,372.033 224.256,372.027 224.256,372.021 L 224.256,371.981 L 224.504,372.007 L 224.504,371.938 L 224.257,371.912 L 224.257,371.835 C 224.257,371.828 224.259,371.824 224.261,371.819 C 224.265,371.814 224.268,371.808 224.274,371.807 C 224.279,371.803 224.284,371.802 224.292,371.803 L 224.573,371.833 L 224.573,371.76 L 224.292,371.732 C 224.278,371.73 224.264,371.732 224.252,371.736 Z M 224.895,371.794 L 224.895,372.191 L 225.137,372.217 C 225.152,372.218 225.165,372.217 225.177,372.213 C 225.19,372.208 225.202,372.202 225.211,372.193 C 225.221,372.184 225.227,372.173 225.234,372.161 C 225.238,372.149 225.24,372.136 225.24,372.121 C 225.24,372.105 225.239,372.091 225.234,372.078 C 225.229,372.065 225.222,372.053 225.213,372.043 C 225.204,372.034 225.195,372.024 225.181,372.018 C 225.172,372.012 225.161,372.007 225.151,372.005 L 225.208,371.897 L 225.241,371.828 L 225.163,371.822 L 225.13,371.889 L 225.094,371.959 L 225.092,371.962 C 225.086,371.972 225.076,371.98 225.065,371.984 C 225.056,371.989 225.045,371.991 225.033,371.991 L 224.962,371.983 L 224.963,371.801 L 224.895,371.794 Z M 225.361,371.852 C 225.349,371.855 225.337,371.863 225.329,371.871 C 225.319,371.879 225.312,371.89 225.306,371.903 C 225.3,371.915 225.298,371.929 225.298,371.944 L 225.298,372.128 C 225.298,372.142 225.3,372.156 225.306,372.169 C 225.311,372.182 225.319,372.195 225.329,372.207 C 225.337,372.217 225.348,372.225 225.361,372.234 C 225.373,372.24 225.387,372.245 225.4,372.246 L 225.682,372.274 L 225.682,372.203 L 225.4,372.174 C 225.395,372.173 225.388,372.171 225.382,372.167 C 225.379,372.164 225.375,372.158 225.371,372.154 C 225.368,372.147 225.366,372.141 225.366,372.134 L 225.366,372.097 L 225.614,372.123 L 225.614,372.051 L 225.366,372.027 L 225.366,371.951 C 225.366,371.944 225.368,371.939 225.371,371.933 C 225.375,371.928 225.379,371.925 225.384,371.922 C 225.388,371.918 225.395,371.918 225.4,371.918 L 225.683,371.948 L 225.683,371.876 L 225.401,371.847 C 225.387,371.846 225.374,371.848 225.361,371.852 Z M 225.812,371.899 C 225.798,371.904 225.785,371.913 225.774,371.923 C 225.763,371.932 225.755,371.946 225.747,371.959 C 225.742,371.974 225.737,371.99 225.737,372.007 L 225.808,372.015 C 225.808,372.004 225.809,371.994 225.814,371.988 C 225.819,371.98 225.825,371.974 225.833,371.97 C 225.84,371.966 225.848,371.965 225.86,371.965 L 225.981,371.978 C 225.991,371.979 225.999,371.982 226.008,371.988 C 226.014,371.994 226.021,372 226.026,372.009 C 226.03,372.02 226.034,372.027 226.034,372.039 C 226.034,372.049 226.03,372.058 226.026,372.065 C 226.021,372.073 226.014,372.078 226.008,372.082 C 225.998,372.086 225.991,372.088 225.981,372.087 L 225.84,372.073 L 225.821,372.073 C 225.814,372.073 225.808,372.075 225.802,372.076 C 225.789,372.08 225.78,372.087 225.77,372.094 C 225.766,372.099 225.76,372.104 225.756,372.111 C 225.75,372.118 225.746,372.129 225.743,372.139 C 225.739,372.149 225.737,372.159 225.737,372.17 L 225.737,372.173 C 225.737,372.188 225.74,372.201 225.746,372.214 C 225.75,372.228 225.758,372.24 225.769,372.252 C 225.779,372.263 225.789,372.272 225.802,372.278 C 225.813,372.285 225.827,372.289 225.84,372.29 L 225.997,372.306 C 226.011,372.308 226.025,372.306 226.037,372.303 C 226.05,372.298 226.06,372.291 226.071,372.284 C 226.08,372.274 226.088,372.264 226.093,372.252 C 226.099,372.24 226.101,372.225 226.101,372.21 L 226.101,372.208 L 226.033,372.2 L 226.033,372.202 C 226.033,372.208 226.03,372.214 226.028,372.22 C 226.024,372.225 226.021,372.229 226.015,372.234 C 226.01,372.235 226.004,372.237 225.997,372.236 L 225.84,372.219 C 225.834,372.218 225.827,372.215 225.822,372.212 C 225.819,372.208 225.814,372.203 225.81,372.197 C 225.808,372.192 225.807,372.185 225.807,372.179 L 225.807,372.176 C 225.807,372.169 225.808,372.165 225.81,372.158 C 225.814,372.154 225.819,372.15 225.824,372.147 C 225.827,372.145 225.834,372.143 225.84,372.143 L 225.981,372.158 L 226.006,372.158 C 226.014,372.156 226.022,372.156 226.029,372.153 C 226.046,372.147 226.059,372.139 226.069,372.128 C 226.071,372.127 226.072,372.126 226.072,372.125 C 226.072,372.124 226.072,372.124 226.073,372.123 C 226.083,372.112 226.089,372.101 226.094,372.088 C 226.1,372.075 226.102,372.06 226.102,372.046 C 226.102,372.027 226.099,372.012 226.092,371.994 C 226.087,371.98 226.078,371.965 226.066,371.954 C 226.054,371.941 226.042,371.93 226.027,371.922 C 226.012,371.915 225.997,371.909 225.981,371.907 L 225.86,371.893 C 225.842,371.891 225.827,371.893 225.812,371.899 Z M 226.158,371.926 L 226.156,372.323 L 226.4,372.35 C 226.415,372.351 226.428,372.35 226.44,372.345 C 226.453,372.34 226.463,372.334 226.474,372.324 L 226.474,372.324 C 226.483,372.315 226.491,372.304 226.496,372.291 C 226.5,372.279 226.503,372.266 226.503,372.252 C 226.503,372.237 226.501,372.222 226.496,372.209 C 226.492,372.195 226.485,372.184 226.475,372.173 C 226.466,372.163 226.456,372.155 226.443,372.148 C 226.434,372.142 226.425,372.139 226.415,372.137 C 226.413,372.137 226.412,372.136 226.411,372.136 L 226.411,372.136 L 226.227,372.115 L 226.227,371.933 L 226.158,371.926 Z M 226.56,371.967 L 226.559,372.365 L 226.626,372.372 L 226.628,371.974 L 226.56,371.967 Z M 226.683,371.978 L 226.683,372.377 L 226.925,372.401 C 226.94,372.404 226.953,372.402 226.967,372.398 C 226.978,372.395 226.989,372.387 226.999,372.379 C 227.009,372.369 227.015,372.359 227.021,372.347 C 227.026,372.334 227.028,372.321 227.028,372.305 C 227.028,372.291 227.026,372.277 227.022,372.265 C 227.015,372.251 227.009,372.239 227.001,372.227 C 226.991,372.218 226.98,372.208 226.969,372.201 C 226.959,372.195 226.949,372.192 226.939,372.189 L 226.995,372.082 L 227.028,372.015 L 226.952,372.006 L 226.917,372.074 L 226.88,372.145 L 226.879,372.148 C 226.873,372.157 226.865,372.165 226.854,372.169 C 226.844,372.175 226.833,372.177 226.821,372.176 L 226.752,372.169 L 226.752,371.985 L 226.683,371.978 Z M 227.062,372.021 L 227.099,372.093 L 227.259,372.437 L 227.421,372.128 L 227.457,372.06 L 227.379,372.052 L 227.344,372.118 L 227.259,372.281 L 227.175,372.102 L 227.139,372.027 L 227.062,372.021 Z M 224.962,372.054 L 225.137,372.073 C 225.141,372.073 225.143,372.074 225.145,372.075 C 225.147,372.075 225.15,372.076 225.152,372.078 C 225.157,372.081 225.163,372.086 225.168,372.092 C 225.171,372.099 225.173,372.105 225.173,372.114 C 225.173,372.118 225.172,372.126 225.169,372.129 C 225.167,372.134 225.163,372.137 225.162,372.139 C 225.16,372.141 225.156,372.142 225.154,372.143 C 225.15,372.145 225.148,372.145 225.146,372.146 L 225.137,372.146 L 224.962,372.128 L 224.962,372.054 Z M 227.648,372.079 L 227.648,372.408 L 227.488,372.391 L 227.488,372.462 L 227.874,372.503 L 227.874,372.431 L 227.715,372.414 L 227.715,372.086 L 227.648,372.079 Z M 228.033,372.136 C 228.009,372.143 227.99,372.156 227.972,372.171 C 227.956,372.188 227.94,372.207 227.93,372.232 C 227.921,372.253 227.915,372.279 227.915,372.306 C 227.915,372.334 227.92,372.361 227.93,372.385 C 227.94,372.41 227.955,372.433 227.972,372.453 C 227.99,372.473 228.009,372.49 228.032,372.503 C 228.056,372.515 228.082,372.524 228.107,372.526 C 228.135,372.528 228.159,372.526 228.183,372.518 C 228.206,372.511 228.228,372.498 228.245,372.481 C 228.261,372.466 228.275,372.446 228.286,372.422 C 228.296,372.399 228.3,372.374 228.301,372.347 C 228.3,372.318 228.296,372.292 228.287,372.267 C 228.275,372.242 228.261,372.22 228.245,372.199 C 228.229,372.181 228.207,372.164 228.184,372.151 C 228.16,372.139 228.136,372.13 228.109,372.128 L 228.07,372.128 C 228.057,372.129 228.046,372.132 228.033,372.136 Z M 228.343,372.151 L 228.342,372.548 L 228.585,372.575 C 228.598,372.575 228.612,372.574 228.625,372.569 C 228.638,372.566 228.649,372.558 228.659,372.551 C 228.668,372.541 228.674,372.53 228.68,372.518 C 228.686,372.506 228.687,372.492 228.687,372.478 C 228.687,372.464 228.686,372.449 228.681,372.436 C 228.676,372.422 228.67,372.411 228.659,372.4 C 228.65,372.389 228.64,372.381 228.629,372.374 C 228.618,372.368 228.609,372.364 228.597,372.363 L 228.655,372.254 L 228.688,372.186 L 228.611,372.179 L 228.577,372.247 L 228.539,372.317 L 228.538,372.319 C 228.532,372.33 228.525,372.337 228.513,372.343 C 228.504,372.348 228.492,372.35 228.479,372.348 L 228.411,372.342 L 228.411,372.158 L 228.343,372.151 Z M 226.226,372.186 L 226.4,372.204 C 226.402,372.205 226.406,372.205 226.409,372.207 C 226.41,372.207 226.413,372.207 226.415,372.208 L 226.415,372.209 C 226.421,372.214 226.427,372.218 226.43,372.225 C 226.434,372.232 226.435,372.239 226.436,372.247 C 226.435,372.252 226.434,372.258 226.432,372.261 C 226.429,372.266 226.428,372.269 226.425,372.271 C 226.422,372.272 226.421,372.274 226.416,372.276 C 226.412,372.278 226.408,372.279 226.4,372.278 L 226.226,372.26 L 226.226,372.186 Z M 228.109,372.198 C 228.125,372.2 228.141,372.205 228.156,372.214 C 228.17,372.221 228.185,372.234 228.196,372.247 C 228.207,372.259 228.216,372.273 228.222,372.289 C 228.23,372.304 228.232,372.322 228.232,372.339 C 228.232,372.357 228.229,372.374 228.222,372.388 C 228.216,372.404 228.207,372.416 228.196,372.427 C 228.184,372.437 228.17,372.445 228.156,372.449 C 228.141,372.455 228.125,372.456 228.107,372.455 C 228.091,372.453 228.074,372.446 228.06,372.439 C 228.046,372.432 228.032,372.42 228.021,372.408 C 228.009,372.395 228,372.381 227.995,372.365 C 227.988,372.349 227.985,372.331 227.985,372.315 C 227.985,372.296 227.988,372.279 227.995,372.265 C 228,372.25 228.009,372.239 228.021,372.227 C 228.032,372.217 228.046,372.208 228.06,372.204 C 228.075,372.198 228.091,372.196 228.109,372.198 Z M 226.752,372.24 L 226.925,372.259 C 226.928,372.259 226.931,372.259 226.932,372.261 C 226.935,372.261 226.937,372.262 226.94,372.263 C 226.946,372.266 226.951,372.272 226.955,372.278 C 226.959,372.285 226.961,372.291 226.961,372.298 C 226.961,372.304 226.959,372.311 226.957,372.315 C 226.955,372.317 226.952,372.321 226.95,372.323 C 226.947,372.326 226.944,372.327 226.94,372.329 C 226.937,372.33 226.931,372.33 226.925,372.33 L 226.752,372.313 L 226.752,372.24 Z M 228.411,372.412 L 228.585,372.431 C 228.588,372.431 228.59,372.432 228.592,372.432 C 228.595,372.433 228.596,372.433 228.598,372.435 C 228.605,372.439 228.61,372.443 228.615,372.449 C 228.618,372.456 228.62,372.463 228.62,372.471 C 228.62,372.477 228.618,372.481 228.617,372.486 C 228.615,372.49 228.611,372.493 228.609,372.495 C 228.607,372.498 228.603,372.499 228.6,372.501 C 228.596,372.504 228.591,372.504 228.585,372.504 L 228.411,372.486 L 228.411,372.412 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 215.819,384.689 L 215.645,384.85 L 233.053,385.984 L 233.142,385.947 C 233.172,385.937 233.2,385.909 233.2,385.863 L 233.2,385.821 L 215.819,384.689 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 215.645,384.85 L 215.644,361.398 L 215.732,361.315 L 215.819,361.327 L 215.819,384.688 L 215.645,384.85 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--RACING_RED, .KN95_NR_individuals--RACING_RED {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='206 -517.465 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(218.642 489.994)'%3E%3Cstop offset='0' stop-color='%23b71616'/%3E%3Cstop offset='1' stop-color='%23f21c1c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.92' gradientTransform='translate(215.103 490.61)'%3E%3Cstop offset='0' stop-color='%23981212'/%3E%3Cstop offset='1' stop-color='%23cd1818'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(218.636 509.977)'%3E%3Cstop offset='0' stop-color='%23b51515'/%3E%3Cstop offset='1' stop-color='%23d11919'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.23' gradientTransform='translate(213.962 512.034)'%3E%3Cstop offset='0' stop-color='%23931111'/%3E%3Cstop offset='1' stop-color='%23b51515'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.01' y2='-0.163' gradientTransform='translate(226.956 511.848) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bd1616'/%3E%3Cstop offset='1' stop-color='%23d81919'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(215.81 499.737) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b21515'/%3E%3Cstop offset='1' stop-color='%23cd1818'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(222.729 500.736) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 215.729,487.58 L 215.729,511.067 L 233.177,512.186 C 233.189,512.172 233.197,512.153 233.197,512.129 L 233.197,489.947 L 215.729,487.58 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 215.729,487.58 L 212.265,490.943 L 212.263,512.964 L 215.729,511.067 L 215.729,487.58 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 215.729,511.067 L 212.263,512.964 L 229.195,513.894 L 233.139,512.213 C 233.153,512.208 233.166,512.198 233.177,512.186 L 215.729,511.067 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 215.642,510.799 L 212.262,512.688 L 212.262,512.964 L 215.642,511.113 L 215.642,510.799 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 222.771,493.182 L 222.771,493.593 L 222.842,493.601 L 222.842,493.19 L 222.771,493.182 Z M 222.901,493.196 L 222.901,493.605 L 222.972,493.556 L 223.234,493.382 L 223.234,493.642 L 223.306,493.651 L 223.306,493.24 L 223.234,493.289 L 222.972,493.464 L 222.972,493.204 L 222.901,493.196 Z M 223.363,493.246 L 223.363,493.657 L 223.565,493.678 C 223.593,493.682 223.62,493.678 223.643,493.67 C 223.669,493.663 223.689,493.651 223.708,493.633 C 223.727,493.617 223.741,493.598 223.751,493.574 C 223.762,493.55 223.768,493.524 223.768,493.496 C 223.768,493.47 223.763,493.445 223.755,493.423 C 223.746,493.4 223.734,493.378 223.719,493.359 C 223.717,493.356 223.715,493.353 223.714,493.351 C 223.713,493.349 223.71,493.347 223.707,493.344 C 223.689,493.323 223.669,493.307 223.643,493.294 C 223.62,493.281 223.594,493.271 223.565,493.269 L 223.363,493.246 Z M 223.826,493.296 L 223.826,493.708 L 223.899,493.715 L 223.899,493.305 L 223.826,493.296 Z M 223.436,493.327 L 223.565,493.34 C 223.583,493.343 223.599,493.349 223.616,493.357 C 223.631,493.367 223.645,493.377 223.656,493.391 C 223.669,493.403 223.678,493.418 223.685,493.434 C 223.692,493.452 223.695,493.469 223.695,493.487 C 223.695,493.506 223.692,493.522 223.685,493.537 C 223.678,493.553 223.669,493.566 223.656,493.576 C 223.645,493.588 223.631,493.595 223.616,493.601 C 223.599,493.606 223.583,493.607 223.565,493.606 L 223.436,493.592 L 223.436,493.327 Z M 224.14,493.331 L 223.969,493.65 L 223.932,493.719 L 224.014,493.727 L 224.05,493.657 L 224.14,493.493 L 224.228,493.677 L 224.264,493.754 L 224.346,493.764 L 224.309,493.685 L 224.14,493.331 Z M 224.381,493.357 L 224.381,493.767 L 224.454,493.775 L 224.454,493.364 L 224.381,493.357 Z M 224.512,493.372 L 224.512,493.781 L 224.714,493.803 C 224.741,493.807 224.768,493.803 224.793,493.796 C 224.817,493.788 224.837,493.775 224.856,493.759 C 224.876,493.742 224.89,493.722 224.9,493.699 C 224.911,493.675 224.915,493.65 224.915,493.62 C 224.915,493.595 224.912,493.571 224.903,493.548 C 224.895,493.524 224.883,493.503 224.868,493.484 C 224.866,493.482 224.864,493.479 224.863,493.477 C 224.861,493.473 224.858,493.47 224.856,493.469 C 224.837,493.449 224.817,493.431 224.793,493.418 C 224.768,493.405 224.741,493.397 224.714,493.393 L 224.512,493.372 Z M 225.099,493.451 C 225.074,493.458 225.051,493.47 225.033,493.489 C 225.016,493.506 225.001,493.525 224.992,493.548 C 224.98,493.573 224.974,493.599 224.974,493.627 L 224.974,493.832 L 225.046,493.84 L 225.046,493.634 C 225.046,493.616 225.05,493.6 225.057,493.584 C 225.062,493.569 225.073,493.556 225.086,493.546 C 225.097,493.535 225.111,493.527 225.127,493.522 C 225.141,493.517 225.159,493.515 225.177,493.517 C 225.195,493.519 225.212,493.524 225.227,493.533 C 225.244,493.541 225.256,493.552 225.269,493.566 C 225.281,493.578 225.289,493.594 225.296,493.611 C 225.303,493.627 225.308,493.645 225.308,493.663 L 225.308,493.868 L 225.379,493.876 L 225.379,493.67 C 225.379,493.642 225.374,493.616 225.363,493.59 C 225.353,493.563 225.339,493.54 225.32,493.519 C 225.302,493.498 225.28,493.483 225.255,493.468 C 225.231,493.456 225.205,493.447 225.177,493.443 C 225.148,493.441 225.123,493.443 225.099,493.451 Z M 224.583,493.452 L 224.714,493.466 C 224.731,493.468 224.747,493.473 224.765,493.483 C 224.78,493.491 224.794,493.502 224.805,493.515 C 224.818,493.528 224.826,493.543 224.834,493.56 C 224.839,493.576 224.843,493.594 224.843,493.613 C 224.843,493.63 224.839,493.648 224.834,493.663 C 224.826,493.677 224.818,493.69 224.805,493.702 C 224.794,493.712 224.78,493.72 224.765,493.725 C 224.747,493.731 224.731,493.732 224.714,493.73 L 224.583,493.716 L 224.583,493.452 Z M 225.415,493.469 L 225.451,493.548 L 225.62,493.901 L 225.792,493.584 L 225.827,493.515 L 225.747,493.506 L 225.71,493.574 L 225.62,493.741 L 225.533,493.554 L 225.495,493.479 L 225.415,493.469 Z M 225.962,493.533 C 225.951,493.534 225.942,493.535 225.934,493.539 C 225.922,493.545 225.91,493.552 225.9,493.561 C 225.89,493.571 225.883,493.58 225.876,493.593 C 225.871,493.601 225.87,493.611 225.866,493.619 C 225.864,493.629 225.864,493.638 225.864,493.65 L 225.864,493.928 L 225.934,493.936 L 225.934,493.65 C 225.935,493.641 225.939,493.633 225.943,493.627 C 225.947,493.62 225.953,493.616 225.96,493.612 C 225.968,493.607 225.977,493.606 225.985,493.606 L 226.197,493.627 L 226.197,493.554 L 225.992,493.532 C 225.98,493.53 225.971,493.531 225.962,493.533 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 220.568,499.911 L 220.565,501.962 L 220.905,501.998 L 220.906,500.949 L 221.185,501.253 L 221.436,501.526 L 221.964,502.105 L 222.468,502.156 L 221.638,501.248 L 222.462,500.104 L 222.044,500.061 L 221.387,500.973 L 220.906,500.454 L 220.906,499.945 L 220.568,499.911 Z M 222.635,500.122 L 222.809,500.506 L 223.601,502.271 L 224.398,500.668 L 224.572,500.319 L 224.193,500.28 L 224.018,500.629 L 223.603,501.467 L 223.187,500.544 L 223.015,500.161 L 222.635,500.122 Z M 224.743,500.336 L 224.746,500.336 L 225.006,500.728 L 225.471,501.432 L 225.686,501.753 L 225.945,502.145 L 224.738,502.021 L 224.738,502.386 L 226.206,502.537 L 226.632,502.579 L 226.369,502.186 L 225.898,501.475 L 225.684,501.153 L 225.429,500.773 L 226.642,500.895 L 226.643,500.527 L 225.173,500.38 L 225.171,500.38 L 224.743,500.336 Z M 227.219,500.63 C 227.157,500.655 227.103,500.687 227.057,500.733 C 227.009,500.779 226.974,500.834 226.947,500.899 C 226.921,500.963 226.908,501.034 226.908,501.11 L 226.906,502.054 C 226.906,502.131 226.919,502.205 226.945,502.272 C 226.972,502.343 227.007,502.404 227.055,502.461 C 227.101,502.515 227.155,502.561 227.217,502.595 C 227.278,502.631 227.345,502.652 227.416,502.66 L 228.801,502.8 L 228.801,502.435 L 227.416,502.293 C 227.382,502.288 227.354,502.278 227.329,502.258 C 227.302,502.239 227.282,502.214 227.266,502.185 C 227.251,502.155 227.244,502.122 227.244,502.088 L 227.244,501.897 L 228.463,502.022 L 228.464,501.656 L 227.244,501.532 L 227.244,501.145 C 227.244,501.109 227.252,501.079 227.267,501.054 C 227.284,501.026 227.304,501.005 227.329,500.991 C 227.356,500.977 227.384,500.971 227.418,500.973 L 228.803,501.115 L 228.804,500.749 L 227.418,500.607 C 227.348,500.601 227.281,500.608 227.219,500.63 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 222.571,498.82 L 222.571,499.258 C 222.571,499.28 222.575,499.301 222.583,499.322 C 222.591,499.343 222.603,499.362 222.617,499.377 C 222.631,499.393 222.648,499.406 222.668,499.417 C 222.687,499.427 222.708,499.434 222.731,499.436 L 223.164,499.482 L 223.164,499.376 L 222.731,499.33 C 222.72,499.328 222.712,499.325 222.703,499.318 C 222.695,499.312 222.689,499.306 222.684,499.297 C 222.679,499.288 222.677,499.279 222.677,499.269 L 222.677,499.214 L 223.057,499.253 L 223.057,499.146 L 222.676,499.106 L 222.677,498.831 L 222.571,498.82 Z M 223.249,498.893 L 223.249,499.33 C 223.249,499.351 223.253,499.373 223.261,499.393 C 223.268,499.413 223.28,499.431 223.294,499.448 C 223.308,499.465 223.327,499.478 223.346,499.488 C 223.365,499.499 223.384,499.505 223.408,499.508 L 223.84,499.553 L 223.841,499.447 L 223.408,499.401 C 223.398,499.399 223.389,499.396 223.381,499.39 C 223.372,499.384 223.366,499.377 223.361,499.369 C 223.356,499.36 223.355,499.351 223.355,499.341 L 223.355,499.285 L 223.735,499.326 L 223.735,499.219 L 223.354,499.177 L 223.355,498.903 L 223.249,498.893 Z M 223.927,498.964 L 223.926,499.564 L 224.299,499.603 C 224.321,499.604 224.342,499.603 224.36,499.596 C 224.379,499.59 224.397,499.58 224.411,499.568 L 224.411,499.566 C 224.427,499.552 224.438,499.536 224.447,499.518 C 224.455,499.499 224.459,499.479 224.459,499.456 C 224.459,499.434 224.455,499.413 224.448,499.394 C 224.439,499.374 224.429,499.356 224.414,499.34 C 224.4,499.324 224.385,499.31 224.366,499.299 C 224.352,499.29 224.337,499.285 224.321,499.282 C 224.319,499.282 224.318,499.282 224.316,499.281 L 224.316,499.28 L 224.031,499.25 L 224.032,498.975 L 223.927,498.964 Z M 224.543,499.027 L 224.543,499.203 C 224.543,499.217 224.544,499.228 224.546,499.24 C 224.548,499.251 224.553,499.263 224.556,499.274 C 224.566,499.296 224.578,499.315 224.592,499.332 C 224.608,499.351 224.624,499.365 224.646,499.377 C 224.666,499.387 224.688,499.394 224.711,499.397 L 224.964,499.425 L 224.967,499.425 C 224.979,499.428 224.991,499.433 224.999,499.441 C 225.009,499.448 225.016,499.456 225.021,499.468 C 225.027,499.478 225.029,499.489 225.029,499.502 C 225.029,499.514 225.026,499.526 225.02,499.536 C 225.014,499.546 225.006,499.553 224.996,499.559 C 224.986,499.565 224.973,499.567 224.96,499.566 L 224.544,499.521 L 224.544,499.628 L 224.959,499.672 C 224.986,499.675 225.009,499.672 225.029,499.666 C 225.05,499.659 225.068,499.647 225.085,499.633 C 225.101,499.619 225.114,499.602 225.121,499.581 C 225.13,499.562 225.134,499.538 225.135,499.513 C 225.135,499.501 225.134,499.489 225.131,499.478 C 225.129,499.465 225.126,499.454 225.121,499.443 C 225.117,499.431 225.112,499.422 225.106,499.412 C 225.101,499.403 225.094,499.394 225.086,499.386 C 225.07,499.368 225.052,499.353 225.032,499.342 C 225.011,499.33 224.992,499.323 224.966,499.318 L 224.963,499.318 C 224.963,499.318 224.961,499.318 224.96,499.318 L 224.711,499.292 C 224.7,499.289 224.689,499.285 224.68,499.277 C 224.669,499.27 224.663,499.261 224.657,499.25 C 224.652,499.24 224.65,499.229 224.65,499.217 L 224.65,499.146 L 225.133,499.196 L 225.134,499.089 L 224.715,499.045 L 224.543,499.027 Z M 225.633,499.144 L 225.631,499.74 L 225.737,499.67 L 226.119,499.412 L 226.119,499.794 L 226.225,499.804 L 226.225,499.206 L 226.119,499.277 L 225.737,499.533 L 225.739,499.155 L 225.633,499.144 Z M 226.309,499.216 L 226.309,499.815 L 226.683,499.854 C 226.704,499.857 226.725,499.855 226.744,499.847 C 226.765,499.841 226.781,499.831 226.795,499.818 C 226.809,499.805 226.821,499.79 226.83,499.771 C 226.837,499.751 226.841,499.731 226.842,499.709 C 226.842,499.687 226.837,499.667 226.83,499.645 C 226.822,499.626 226.811,499.608 226.797,499.591 C 226.784,499.576 226.767,499.563 226.75,499.552 C 226.734,499.544 226.719,499.536 226.703,499.532 L 226.789,499.373 L 226.843,499.272 L 226.724,499.259 L 226.67,499.36 L 226.612,499.466 L 226.61,499.471 C 226.601,499.486 226.589,499.497 226.573,499.504 C 226.557,499.512 226.54,499.513 226.52,499.512 L 226.416,499.501 L 226.416,499.227 L 226.309,499.216 Z M 224.031,499.356 L 224.3,499.384 C 224.303,499.384 224.307,499.385 224.312,499.386 C 224.315,499.388 224.319,499.39 224.322,499.392 L 224.322,499.392 C 224.332,499.397 224.34,499.404 224.345,499.415 C 224.352,499.423 224.353,499.434 224.353,499.445 C 224.353,499.455 224.352,499.463 224.348,499.469 C 224.345,499.476 224.342,499.48 224.339,499.484 C 224.334,499.486 224.329,499.489 224.323,499.492 C 224.318,499.494 224.309,499.495 224.3,499.494 L 224.031,499.466 L 224.031,499.356 Z M 226.416,499.608 L 226.683,499.635 C 226.686,499.636 226.69,499.637 226.695,499.638 C 226.698,499.641 226.701,499.642 226.704,499.643 C 226.715,499.649 226.722,499.658 226.728,499.668 C 226.734,499.677 226.738,499.687 226.738,499.698 C 226.737,499.708 226.734,499.715 226.73,499.722 C 226.727,499.728 226.724,499.732 226.721,499.735 C 226.717,499.738 226.712,499.742 226.706,499.744 C 226.699,499.746 226.693,499.747 226.683,499.746 L 226.415,499.719 L 226.416,499.608 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 220.685,497.624 L 220.684,498.022 L 220.927,498.047 C 220.941,498.048 220.956,498.047 220.968,498.043 C 220.979,498.039 220.991,498.033 221,498.023 L 221.001,498.022 C 221.011,498.014 221.018,498.004 221.023,497.991 C 221.029,497.978 221.031,497.965 221.031,497.95 C 221.031,497.935 221.029,497.921 221.023,497.908 C 221.019,497.895 221.012,497.883 221.003,497.872 C 220.993,497.861 220.982,497.852 220.97,497.846 C 220.961,497.84 220.951,497.835 220.941,497.834 C 220.94,497.834 220.938,497.834 220.938,497.834 L 220.938,497.834 L 220.754,497.815 L 220.754,497.632 L 220.685,497.624 Z M 221.086,497.664 L 221.085,498.062 L 221.328,498.088 C 221.345,498.089 221.357,498.088 221.369,498.084 C 221.382,498.079 221.392,498.073 221.402,498.064 C 221.411,498.055 221.417,498.045 221.425,498.033 C 221.429,498.021 221.431,498.007 221.432,497.992 C 221.431,497.976 221.429,497.963 221.426,497.95 C 221.418,497.937 221.412,497.925 221.403,497.915 C 221.393,497.904 221.384,497.895 221.372,497.886 C 221.363,497.881 221.353,497.877 221.343,497.875 L 221.396,497.767 L 221.432,497.7 L 221.356,497.692 L 221.319,497.758 L 221.284,497.831 L 221.282,497.834 C 221.276,497.844 221.267,497.851 221.257,497.855 C 221.247,497.861 221.236,497.862 221.224,497.861 L 221.154,497.853 L 221.154,497.672 L 221.086,497.664 Z M 221.591,497.733 C 221.57,497.741 221.549,497.753 221.531,497.769 C 221.512,497.786 221.499,497.807 221.49,497.828 C 221.48,497.852 221.475,497.877 221.474,497.905 C 221.475,497.932 221.48,497.958 221.489,497.982 C 221.499,498.009 221.512,498.032 221.531,498.052 C 221.548,498.071 221.57,498.088 221.591,498.1 C 221.615,498.114 221.64,498.122 221.668,498.125 C 221.693,498.127 221.719,498.125 221.743,498.116 C 221.764,498.107 221.786,498.097 221.803,498.079 C 221.821,498.063 221.835,498.044 221.844,498.021 C 221.854,497.997 221.86,497.971 221.86,497.944 C 221.86,497.917 221.854,497.891 221.844,497.865 C 221.835,497.84 221.822,497.819 221.803,497.799 C 221.787,497.778 221.765,497.761 221.743,497.749 C 221.719,497.737 221.693,497.729 221.668,497.725 L 221.628,497.726 C 221.616,497.728 221.604,497.73 221.591,497.733 Z M 222.059,497.766 L 222.059,498.092 L 221.901,498.076 L 221.901,498.148 L 222.285,498.189 L 222.285,498.118 L 222.129,498.1 L 222.13,497.772 L 222.059,497.766 Z M 221.668,497.797 C 221.684,497.799 221.7,497.804 221.715,497.812 C 221.732,497.82 221.744,497.831 221.754,497.843 C 221.765,497.855 221.776,497.871 221.782,497.886 C 221.788,497.904 221.792,497.919 221.792,497.938 C 221.792,497.955 221.788,497.971 221.782,497.986 C 221.776,498.002 221.765,498.015 221.754,498.024 C 221.744,498.034 221.731,498.043 221.715,498.047 C 221.7,498.053 221.684,498.054 221.668,498.053 C 221.65,498.052 221.634,498.047 221.618,498.038 C 221.604,498.03 221.59,498.02 221.579,498.007 C 221.569,497.992 221.56,497.98 221.553,497.962 C 221.547,497.946 221.544,497.93 221.544,497.913 C 221.544,497.895 221.547,497.877 221.553,497.862 C 221.56,497.848 221.57,497.835 221.58,497.825 C 221.59,497.815 221.604,497.807 221.618,497.802 C 221.634,497.797 221.651,497.796 221.668,497.797 Z M 222.405,497.81 C 222.393,497.815 222.383,497.821 222.372,497.831 C 222.363,497.84 222.356,497.849 222.351,497.862 C 222.345,497.874 222.343,497.889 222.343,497.904 L 222.343,498.087 C 222.343,498.1 222.345,498.116 222.35,498.13 C 222.356,498.143 222.363,498.155 222.372,498.166 C 222.382,498.176 222.392,498.185 222.405,498.192 C 222.417,498.198 222.43,498.203 222.445,498.205 L 222.726,498.234 L 222.726,498.163 L 222.445,498.133 C 222.44,498.132 222.432,498.131 222.427,498.127 C 222.422,498.124 222.417,498.119 222.415,498.113 C 222.411,498.105 222.409,498.099 222.409,498.092 L 222.409,498.056 L 222.658,498.082 L 222.658,498.011 L 222.409,497.985 L 222.411,497.911 C 222.411,497.904 222.411,497.899 222.416,497.893 C 222.418,497.886 222.423,497.883 222.428,497.88 C 222.435,497.877 222.44,497.876 222.445,497.877 L 222.728,497.907 L 222.728,497.835 L 222.446,497.807 C 222.431,497.805 222.417,497.807 222.405,497.81 Z M 222.894,497.867 C 222.869,497.875 222.85,497.889 222.833,497.905 C 222.815,497.921 222.801,497.941 222.791,497.963 C 222.782,497.987 222.776,498.012 222.776,498.04 C 222.776,498.066 222.782,498.093 222.791,498.119 C 222.8,498.143 222.815,498.166 222.833,498.187 C 222.85,498.206 222.869,498.223 222.894,498.235 C 222.917,498.248 222.942,498.256 222.968,498.259 L 223.16,498.279 L 223.16,498.207 L 222.968,498.188 C 222.952,498.186 222.935,498.18 222.92,498.172 C 222.906,498.165 222.892,498.155 222.881,498.141 C 222.869,498.129 222.861,498.115 222.854,498.098 C 222.848,498.081 222.844,498.065 222.844,498.047 C 222.844,498.03 222.848,498.013 222.855,497.997 C 222.861,497.982 222.869,497.97 222.881,497.96 C 222.893,497.95 222.907,497.942 222.921,497.937 C 222.935,497.931 222.952,497.93 222.969,497.931 L 223.16,497.951 L 223.16,497.88 L 222.969,497.86 L 222.931,497.86 C 222.918,497.861 222.906,497.864 222.894,497.867 Z M 220.754,497.885 L 220.928,497.902 C 220.931,497.904 220.934,497.904 220.936,497.905 C 220.938,497.905 220.94,497.906 220.943,497.908 C 220.948,497.912 220.954,497.916 220.958,497.923 C 220.961,497.929 220.963,497.935 220.963,497.943 C 220.963,497.949 220.961,497.955 220.959,497.958 C 220.957,497.963 220.955,497.966 220.953,497.967 C 220.95,497.969 220.947,497.971 220.944,497.973 C 220.938,497.975 220.935,497.976 220.928,497.975 L 220.754,497.957 L 220.754,497.885 Z M 223.374,497.904 L 223.374,498.23 L 223.217,498.213 L 223.217,498.286 L 223.601,498.324 L 223.601,498.254 L 223.443,498.236 L 223.443,497.91 L 223.374,497.904 Z M 221.154,497.925 L 221.328,497.943 C 221.332,497.944 221.333,497.944 221.337,497.944 C 221.339,497.945 221.342,497.947 221.345,497.948 C 221.35,497.952 221.355,497.957 221.359,497.963 C 221.363,497.969 221.364,497.976 221.364,497.983 C 221.364,497.99 221.363,497.995 221.361,498 C 221.359,498.005 221.356,498.008 221.353,498.009 C 221.351,498.011 221.348,498.013 221.345,498.015 C 221.341,498.017 221.335,498.018 221.328,498.017 L 221.154,497.999 L 221.154,497.925 Z M 223.656,497.931 L 223.656,498.33 L 223.726,498.338 L 223.726,497.939 L 223.656,497.931 Z M 223.955,497.963 L 223.793,498.273 L 223.758,498.341 L 223.835,498.349 L 223.87,498.281 L 223.954,498.12 L 224.038,498.299 L 224.074,498.373 L 224.151,498.382 L 224.115,498.306 L 223.955,497.963 Z M 224.249,498.002 C 224.237,498.007 224.225,498.012 224.217,498.022 C 224.206,498.03 224.197,498.041 224.194,498.054 C 224.188,498.065 224.184,498.079 224.184,498.093 L 224.184,498.278 C 224.184,498.292 224.187,498.305 224.193,498.319 C 224.197,498.333 224.206,498.345 224.216,498.357 C 224.224,498.367 224.236,498.377 224.248,498.383 C 224.26,498.39 224.275,498.394 224.288,498.396 L 224.569,498.424 L 224.569,498.354 L 224.288,498.324 C 224.281,498.324 224.275,498.321 224.269,498.318 C 224.265,498.314 224.262,498.31 224.257,498.303 C 224.255,498.298 224.253,498.292 224.253,498.286 L 224.253,498.247 L 224.501,498.273 L 224.501,498.202 L 224.254,498.177 L 224.254,498.1 C 224.254,498.094 224.256,498.089 224.258,498.084 C 224.262,498.078 224.265,498.073 224.271,498.072 C 224.276,498.068 224.281,498.067 224.289,498.067 L 224.57,498.098 L 224.57,498.026 L 224.289,497.997 C 224.275,497.995 224.261,497.997 224.249,498.002 Z M 224.892,498.059 L 224.892,498.457 L 225.134,498.483 C 225.149,498.484 225.162,498.483 225.174,498.479 C 225.187,498.474 225.199,498.467 225.208,498.459 C 225.218,498.45 225.224,498.438 225.231,498.426 C 225.235,498.414 225.237,498.401 225.237,498.386 C 225.237,498.371 225.236,498.357 225.231,498.344 C 225.226,498.331 225.219,498.318 225.21,498.309 C 225.201,498.299 225.192,498.289 225.178,498.283 C 225.169,498.277 225.158,498.273 225.148,498.271 L 225.205,498.163 L 225.238,498.094 L 225.16,498.087 L 225.127,498.155 L 225.091,498.225 L 225.089,498.228 C 225.083,498.238 225.073,498.246 225.062,498.25 C 225.053,498.255 225.042,498.257 225.03,498.257 L 224.959,498.249 L 224.96,498.066 L 224.892,498.059 Z M 225.358,498.118 C 225.346,498.121 225.334,498.129 225.326,498.137 C 225.316,498.144 225.309,498.156 225.303,498.168 C 225.297,498.18 225.295,498.195 225.295,498.208 L 225.295,498.393 C 225.295,498.407 225.297,498.421 225.303,498.434 C 225.308,498.448 225.316,498.461 225.326,498.473 C 225.334,498.483 225.345,498.491 225.358,498.499 C 225.37,498.505 225.384,498.51 225.397,498.511 L 225.679,498.539 L 225.679,498.469 L 225.397,498.44 C 225.392,498.438 225.385,498.436 225.379,498.432 C 225.376,498.429 225.372,498.423 225.368,498.419 C 225.365,498.412 225.363,498.406 225.363,498.399 L 225.363,498.364 L 225.611,498.388 L 225.611,498.316 L 225.363,498.292 L 225.363,498.216 C 225.363,498.209 225.365,498.204 225.368,498.198 C 225.372,498.194 225.376,498.19 225.381,498.187 C 225.385,498.184 225.392,498.183 225.397,498.183 L 225.68,498.213 L 225.68,498.142 L 225.398,498.113 C 225.384,498.112 225.371,498.114 225.358,498.118 Z M 225.809,498.165 C 225.795,498.169 225.782,498.177 225.771,498.188 C 225.76,498.197 225.752,498.211 225.744,498.225 C 225.739,498.24 225.734,498.256 225.734,498.273 L 225.805,498.28 C 225.805,498.27 225.806,498.26 225.811,498.254 C 225.816,498.246 225.822,498.24 225.83,498.235 C 225.837,498.232 225.845,498.231 225.857,498.231 L 225.978,498.244 C 225.988,498.245 225.996,498.248 226.005,498.254 C 226.011,498.26 226.018,498.266 226.023,498.276 C 226.027,498.285 226.031,498.292 226.031,498.304 C 226.031,498.314 226.027,498.323 226.023,498.331 C 226.018,498.339 226.011,498.344 226.005,498.348 C 225.995,498.352 225.988,498.354 225.978,498.353 L 225.837,498.339 L 225.818,498.339 C 225.811,498.339 225.805,498.341 225.799,498.343 C 225.786,498.346 225.777,498.353 225.767,498.36 C 225.763,498.365 225.757,498.37 225.753,498.377 C 225.747,498.385 225.743,498.394 225.74,498.404 C 225.736,498.414 225.734,498.424 225.734,498.434 L 225.734,498.438 C 225.734,498.454 225.737,498.467 225.743,498.48 C 225.747,498.493 225.755,498.505 225.766,498.517 C 225.776,498.528 225.786,498.537 225.799,498.543 C 225.81,498.551 225.824,498.555 225.837,498.556 L 225.994,498.572 C 226.008,498.574 226.022,498.572 226.034,498.569 C 226.047,498.564 226.057,498.558 226.068,498.55 C 226.077,498.539 226.085,498.529 226.09,498.517 C 226.096,498.505 226.098,498.491 226.098,498.476 L 226.098,498.474 L 226.03,498.466 L 226.03,498.467 C 226.03,498.474 226.027,498.48 226.025,498.486 C 226.021,498.491 226.018,498.495 226.012,498.499 C 226.007,498.5 226.001,498.502 225.994,498.501 L 225.837,498.486 C 225.831,498.484 225.824,498.481 225.819,498.478 C 225.816,498.474 225.811,498.469 225.807,498.463 C 225.805,498.458 225.804,498.451 225.804,498.445 L 225.804,498.442 C 225.804,498.434 225.805,498.43 225.807,498.423 C 225.811,498.419 225.816,498.415 225.821,498.412 C 225.824,498.41 225.831,498.408 225.837,498.409 L 225.978,498.423 L 226.003,498.423 C 226.011,498.421 226.019,498.421 226.026,498.418 C 226.043,498.412 226.056,498.404 226.066,498.393 C 226.068,498.392 226.069,498.391 226.069,498.39 C 226.069,498.389 226.069,498.389 226.07,498.388 C 226.08,498.378 226.086,498.367 226.091,498.354 C 226.097,498.341 226.099,498.325 226.099,498.311 C 226.099,498.292 226.096,498.277 226.089,498.26 C 226.084,498.246 226.075,498.231 226.063,498.22 C 226.051,498.206 226.039,498.195 226.024,498.187 C 226.009,498.18 225.994,498.174 225.978,498.172 L 225.857,498.159 C 225.839,498.157 225.824,498.159 225.809,498.165 Z M 226.155,498.191 L 226.153,498.589 L 226.397,498.615 C 226.412,498.616 226.425,498.615 226.437,498.61 C 226.45,498.606 226.46,498.6 226.471,498.59 L 226.471,498.59 C 226.48,498.581 226.488,498.57 226.493,498.558 C 226.497,498.544 226.5,498.531 226.5,498.517 C 226.5,498.502 226.498,498.488 226.493,498.476 C 226.489,498.461 226.482,498.45 226.472,498.438 C 226.463,498.428 226.453,498.42 226.44,498.413 C 226.431,498.407 226.422,498.404 226.412,498.401 C 226.41,498.401 226.409,498.401 226.408,498.401 L 226.408,498.4 L 226.224,498.381 L 226.224,498.198 L 226.155,498.191 Z M 226.557,498.233 L 226.556,498.63 L 226.623,498.637 L 226.625,498.24 L 226.557,498.233 Z M 226.68,498.244 L 226.68,498.642 L 226.922,498.667 C 226.937,498.67 226.95,498.668 226.964,498.664 C 226.975,498.659 226.986,498.652 226.996,498.644 C 227.006,498.634 227.012,498.624 227.018,498.612 C 227.023,498.6 227.025,498.587 227.025,498.571 C 227.025,498.557 227.023,498.543 227.019,498.53 C 227.012,498.516 227.006,498.504 226.998,498.493 C 226.988,498.484 226.977,498.474 226.966,498.467 C 226.956,498.461 226.946,498.458 226.936,498.455 L 226.992,498.348 L 227.025,498.28 L 226.949,498.272 L 226.914,498.34 L 226.877,498.41 L 226.876,498.413 C 226.87,498.422 226.862,498.43 226.851,498.434 C 226.841,498.441 226.83,498.443 226.818,498.442 L 226.749,498.434 L 226.749,498.251 L 226.68,498.244 Z M 227.059,498.286 L 227.096,498.359 L 227.256,498.703 L 227.418,498.393 L 227.454,498.325 L 227.376,498.317 L 227.341,498.385 L 227.256,498.546 L 227.172,498.367 L 227.136,498.292 L 227.059,498.286 Z M 224.959,498.319 L 225.134,498.339 C 225.138,498.339 225.14,498.34 225.142,498.341 C 225.144,498.341 225.147,498.343 225.149,498.344 C 225.154,498.347 225.16,498.352 225.165,498.358 C 225.168,498.365 225.17,498.371 225.17,498.38 C 225.17,498.385 225.169,498.391 225.166,498.395 C 225.164,498.399 225.16,498.402 225.159,498.404 C 225.157,498.406 225.153,498.407 225.151,498.409 C 225.147,498.41 225.145,498.41 225.143,498.411 L 225.134,498.411 L 224.959,498.393 L 224.959,498.319 Z M 227.645,498.345 L 227.645,498.674 L 227.485,498.656 L 227.485,498.727 L 227.871,498.767 L 227.871,498.697 L 227.712,498.68 L 227.712,498.352 L 227.645,498.345 Z M 228.03,498.401 C 228.006,498.408 227.987,498.421 227.969,498.436 C 227.953,498.454 227.937,498.473 227.927,498.497 C 227.918,498.518 227.912,498.544 227.912,498.572 C 227.912,498.6 227.917,498.626 227.927,498.65 C 227.937,498.677 227.952,498.699 227.969,498.718 C 227.987,498.738 228.006,498.755 228.029,498.768 C 228.053,498.781 228.079,498.79 228.104,498.792 C 228.132,498.794 228.156,498.792 228.18,498.783 C 228.203,498.777 228.225,498.763 228.242,498.746 C 228.258,498.73 228.272,498.712 228.283,498.688 C 228.293,498.665 228.297,498.639 228.298,498.612 C 228.297,498.584 228.293,498.558 228.284,498.532 C 228.272,498.507 228.258,498.486 228.242,498.465 C 228.226,498.447 228.204,498.429 228.181,498.416 C 228.157,498.404 228.133,498.396 228.106,498.393 L 228.067,498.393 C 228.054,498.395 228.043,498.397 228.03,498.401 Z M 228.34,498.416 L 228.339,498.814 L 228.582,498.84 C 228.595,498.84 228.609,498.839 228.622,498.835 C 228.635,498.831 228.646,498.825 228.656,498.816 C 228.665,498.807 228.671,498.796 228.677,498.784 C 228.683,498.772 228.684,498.757 228.684,498.743 C 228.684,498.729 228.683,498.715 228.678,498.702 C 228.673,498.688 228.667,498.677 228.656,498.666 C 228.647,498.654 228.637,498.646 228.626,498.639 C 228.615,498.634 228.606,498.629 228.594,498.628 L 228.652,498.519 L 228.685,498.452 L 228.608,498.445 L 228.574,498.512 L 228.536,498.583 L 228.535,498.586 C 228.529,498.596 228.522,498.603 228.51,498.608 C 228.501,498.613 228.489,498.615 228.476,498.613 L 228.408,498.607 L 228.408,498.423 L 228.34,498.416 Z M 226.223,498.452 L 226.397,498.47 C 226.399,498.471 226.403,498.471 226.406,498.473 C 226.407,498.473 226.41,498.473 226.412,498.474 L 226.412,498.476 C 226.418,498.48 226.424,498.484 226.427,498.491 C 226.431,498.497 226.432,498.504 226.433,498.512 C 226.432,498.517 226.431,498.523 226.429,498.526 C 226.426,498.531 226.425,498.534 226.422,498.536 C 226.419,498.537 226.418,498.539 226.413,498.541 C 226.409,498.543 226.405,498.544 226.397,498.543 L 226.223,498.525 L 226.223,498.452 Z M 228.106,498.464 C 228.122,498.466 228.138,498.471 228.153,498.48 C 228.167,498.487 228.182,498.499 228.193,498.512 C 228.204,498.524 228.213,498.538 228.219,498.555 C 228.227,498.57 228.229,498.588 228.229,498.605 C 228.229,498.622 228.226,498.639 228.219,498.653 C 228.213,498.67 228.204,498.682 228.193,498.692 C 228.181,498.703 228.167,498.711 228.153,498.715 C 228.138,498.72 228.122,498.721 228.104,498.72 C 228.088,498.718 228.071,498.712 228.057,498.706 C 228.043,498.698 228.029,498.686 228.018,498.674 C 228.006,498.661 227.997,498.646 227.992,498.63 C 227.985,498.614 227.982,498.597 227.982,498.581 C 227.982,498.562 227.985,498.544 227.992,498.53 C 227.997,498.515 228.006,498.504 228.018,498.493 C 228.029,498.483 228.043,498.474 228.057,498.47 C 228.072,498.464 228.088,498.462 228.106,498.464 Z M 226.749,498.505 L 226.922,498.524 C 226.925,498.524 226.928,498.525 226.929,498.525 C 226.932,498.526 226.934,498.526 226.937,498.528 C 226.943,498.531 226.948,498.537 226.952,498.543 C 226.956,498.551 226.958,498.557 226.958,498.564 C 226.958,498.57 226.956,498.577 226.954,498.581 C 226.952,498.583 226.949,498.587 226.947,498.589 C 226.944,498.592 226.941,498.593 226.937,498.595 C 226.934,498.596 226.928,498.596 226.922,498.596 L 226.749,498.579 L 226.749,498.505 Z M 228.408,498.678 L 228.582,498.697 C 228.585,498.697 228.587,498.698 228.589,498.698 C 228.592,498.699 228.593,498.699 228.595,498.701 C 228.602,498.705 228.607,498.71 228.612,498.715 C 228.615,498.721 228.617,498.728 228.617,498.736 C 228.617,498.742 228.615,498.746 228.614,498.751 C 228.612,498.755 228.608,498.757 228.606,498.76 C 228.604,498.763 228.6,498.764 228.597,498.766 C 228.593,498.769 228.588,498.769 228.582,498.769 L 228.408,498.75 L 228.408,498.678 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 215.816,510.955 L 215.642,511.115 L 233.05,512.251 L 233.139,512.212 C 233.169,512.202 233.197,512.174 233.197,512.129 L 233.197,512.086 L 215.816,510.955 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 215.642,511.115 L 215.641,487.664 L 215.729,487.58 L 215.816,487.592 L 215.816,510.954 L 215.642,511.115 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--POWDER_BLUE, .KN95_NR_individuals--POWDER_BLUE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='111.719 -433.288 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.303' y2='19.848' gradientTransform='translate(124.361 405.817)'%3E%3Cstop offset='0' stop-color='%2379acc9'/%3E%3Cstop offset='1' stop-color='%2396cdeb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.921' gradientTransform='translate(120.822 406.432)'%3E%3Cstop offset='0' stop-color='%235d7f92'/%3E%3Cstop offset='1' stop-color='%2380aec8'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.1' gradientTransform='translate(124.355 425.801)'%3E%3Cstop offset='0' stop-color='%237098af'/%3E%3Cstop offset='1' stop-color='%2382b2cc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.118' y2='-0.228' gradientTransform='translate(119.681 427.856)'%3E%3Cstop offset='0' stop-color='%235b7c8e'/%3E%3Cstop offset='1' stop-color='%237098af'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.165' gradientTransform='translate(132.675 427.673) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2376a0b8'/%3E%3Cstop offset='1' stop-color='%2385b5d0'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.164' y2='0' gradientTransform='translate(121.53 415.56) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%236f97ad'/%3E%3Cstop offset='1' stop-color='%2380aec8'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(128.448 416.559) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 121.449,403.404 L 121.449,426.891 L 138.896,428.01 C 138.908,427.996 138.916,427.975 138.916,427.952 L 138.916,405.771 L 121.449,403.404 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 121.449,403.404 L 117.985,406.766 L 117.982,428.788 L 121.449,426.891 L 121.449,403.404 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 121.449,426.891 L 117.982,428.788 L 134.915,429.716 L 138.858,428.036 C 138.872,428.031 138.885,428.023 138.896,428.01 L 121.449,426.891 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 121.361,426.622 L 117.982,428.511 L 117.981,428.788 L 121.361,426.937 L 121.361,426.622 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 128.49,409.006 L 128.49,409.415 L 128.562,409.424 L 128.562,409.012 L 128.49,409.006 Z M 128.62,409.018 L 128.62,409.427 L 128.691,409.381 L 128.953,409.205 L 128.953,409.466 L 129.024,409.474 L 129.024,409.064 L 128.953,409.111 L 128.691,409.288 L 128.691,409.027 L 128.62,409.018 Z M 129.082,409.069 L 129.082,409.481 L 129.285,409.502 C 129.313,409.505 129.339,409.503 129.362,409.494 C 129.388,409.487 129.409,409.475 129.427,409.457 C 129.446,409.44 129.46,409.421 129.471,409.398 C 129.481,409.374 129.487,409.347 129.487,409.318 C 129.487,409.293 129.482,409.27 129.475,409.246 C 129.465,409.223 129.453,409.201 129.439,409.182 C 129.437,409.18 129.435,409.177 129.434,409.175 C 129.432,409.173 129.429,409.17 129.427,409.167 C 129.409,409.146 129.388,409.131 129.362,409.116 C 129.339,409.103 129.313,409.095 129.285,409.092 L 129.082,409.069 Z M 129.545,409.12 L 129.545,409.531 L 129.619,409.537 L 129.619,409.128 L 129.545,409.12 Z M 129.155,409.15 L 129.285,409.164 C 129.303,409.167 129.319,409.173 129.335,409.18 C 129.351,409.189 129.365,409.199 129.376,409.212 C 129.389,409.225 129.397,409.242 129.405,409.258 C 129.411,409.276 129.414,409.293 129.414,409.31 C 129.414,409.329 129.411,409.345 129.405,409.361 C 129.397,409.376 129.389,409.389 129.376,409.4 C 129.365,409.412 129.351,409.419 129.335,409.424 C 129.319,409.428 129.303,409.43 129.285,409.428 L 129.155,409.414 L 129.155,409.15 Z M 129.86,409.155 L 129.688,409.474 L 129.652,409.542 L 129.733,409.55 L 129.769,409.482 L 129.86,409.316 L 129.947,409.502 L 129.984,409.579 L 130.065,409.587 L 130.028,409.509 L 129.86,409.155 Z M 130.101,409.18 L 130.101,409.591 L 130.173,409.599 L 130.173,409.188 L 130.101,409.18 Z M 130.232,409.194 L 130.232,409.605 L 130.434,409.626 C 130.46,409.629 130.487,409.626 130.512,409.619 C 130.537,409.613 130.557,409.6 130.576,409.583 C 130.595,409.566 130.609,409.545 130.619,409.522 C 130.63,409.498 130.634,409.473 130.634,409.443 C 130.634,409.419 130.632,409.394 130.623,409.371 C 130.614,409.347 130.603,409.326 130.587,409.306 C 130.585,409.304 130.583,409.302 130.582,409.3 C 130.58,409.297 130.578,409.294 130.575,409.293 C 130.556,409.272 130.537,409.255 130.512,409.241 C 130.487,409.227 130.46,409.22 130.434,409.216 L 130.232,409.194 Z M 130.818,409.275 C 130.793,409.283 130.77,409.294 130.752,409.311 C 130.734,409.328 130.72,409.348 130.71,409.373 C 130.7,409.396 130.694,409.422 130.694,409.45 L 130.694,409.655 L 130.765,409.663 L 130.765,409.457 C 130.765,409.439 130.769,409.423 130.776,409.408 C 130.782,409.393 130.793,409.381 130.805,409.369 C 130.817,409.358 130.83,409.349 130.847,409.345 C 130.86,409.34 130.878,409.337 130.896,409.34 C 130.914,409.342 130.931,409.347 130.947,409.356 C 130.963,409.365 130.976,409.376 130.989,409.389 C 131,409.402 131.008,409.417 131.016,409.434 C 131.023,409.451 131.027,409.468 131.027,409.487 L 131.027,409.691 L 131.099,409.699 L 131.099,409.494 C 131.099,409.466 131.093,409.438 131.083,409.413 C 131.072,409.387 131.058,409.363 131.04,409.342 C 131.021,409.322 130.999,409.306 130.974,409.291 C 130.951,409.279 130.925,409.27 130.896,409.267 C 130.867,409.264 130.842,409.267 130.818,409.275 Z M 130.302,409.276 L 130.434,409.29 C 130.45,409.291 130.466,409.296 130.484,409.306 C 130.499,409.314 130.513,409.324 130.525,409.337 C 130.537,409.352 130.545,409.367 130.553,409.384 C 130.559,409.4 130.563,409.417 130.563,409.435 C 130.563,409.453 130.559,409.471 130.553,409.486 C 130.545,409.502 130.537,409.515 130.525,409.524 C 130.513,409.535 130.499,409.542 130.484,409.548 C 130.466,409.554 130.45,409.555 130.434,409.554 L 130.302,409.539 L 130.302,409.276 Z M 131.134,409.293 L 131.17,409.371 L 131.339,409.725 L 131.511,409.407 L 131.547,409.336 L 131.466,409.329 L 131.429,409.399 L 131.339,409.563 L 131.252,409.38 L 131.215,409.302 L 131.134,409.293 Z M 131.682,409.356 C 131.671,409.358 131.662,409.359 131.654,409.362 C 131.641,409.368 131.63,409.375 131.62,409.385 C 131.609,409.393 131.602,409.404 131.596,409.416 C 131.591,409.425 131.589,409.433 131.586,409.442 C 131.583,409.451 131.583,409.462 131.583,409.473 L 131.583,409.751 L 131.654,409.759 L 131.654,409.474 C 131.655,409.465 131.658,409.456 131.662,409.451 C 131.667,409.443 131.672,409.438 131.681,409.434 C 131.687,409.431 131.696,409.428 131.704,409.428 L 131.916,409.451 L 131.916,409.379 L 131.71,409.356 C 131.7,409.355 131.691,409.355 131.682,409.356 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 126.287,415.733 L 126.285,417.786 L 126.624,417.82 L 126.626,416.772 L 126.904,417.075 L 127.156,417.35 L 127.684,417.928 L 128.186,417.979 L 127.357,417.072 L 128.181,415.926 L 127.763,415.885 L 127.106,416.797 L 126.626,416.276 L 126.626,415.769 L 126.287,415.733 Z M 128.354,415.945 L 128.529,416.328 L 129.32,418.095 L 130.117,416.491 L 130.291,416.142 L 129.911,416.103 L 129.737,416.452 L 129.322,417.289 L 128.906,416.367 L 128.734,415.984 L 128.354,415.945 Z M 130.461,416.158 L 130.465,416.159 L 130.725,416.552 L 131.19,417.255 L 131.406,417.576 L 131.664,417.968 L 130.458,417.844 L 130.457,418.211 L 131.926,418.359 L 132.35,418.404 L 132.088,418.01 L 131.617,417.298 L 131.404,416.977 L 131.148,416.595 L 132.361,416.718 L 132.362,416.351 L 130.892,416.203 L 130.891,416.203 L 130.461,416.158 Z M 132.939,416.455 C 132.877,416.477 132.822,416.51 132.777,416.558 C 132.729,416.603 132.693,416.658 132.667,416.722 C 132.64,416.786 132.628,416.857 132.627,416.933 L 132.625,417.878 C 132.625,417.955 132.638,418.027 132.664,418.096 C 132.691,418.165 132.726,418.227 132.774,418.283 C 132.82,418.339 132.874,418.384 132.936,418.418 C 132.997,418.454 133.064,418.475 133.135,418.483 L 134.521,418.624 L 134.521,418.257 L 133.135,418.116 C 133.102,418.113 133.074,418.101 133.048,418.082 C 133.022,418.062 133.001,418.037 132.985,418.008 C 132.97,417.979 132.963,417.946 132.963,417.911 L 132.963,417.72 L 134.183,417.846 L 134.184,417.479 L 132.963,417.355 L 132.963,416.968 C 132.963,416.933 132.971,416.903 132.987,416.876 C 133.003,416.848 133.023,416.828 133.049,416.814 C 133.075,416.799 133.103,416.795 133.137,416.797 L 134.523,416.938 L 134.523,416.572 L 133.137,416.431 C 133.068,416.424 133,416.432 132.939,416.455 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 128.291,414.643 L 128.291,415.08 C 128.291,415.104 128.294,415.125 128.303,415.145 C 128.31,415.164 128.322,415.184 128.336,415.201 C 128.35,415.217 128.368,415.229 128.388,415.24 C 128.407,415.25 128.427,415.257 128.45,415.259 L 128.883,415.305 L 128.883,415.199 L 128.45,415.152 C 128.44,415.151 128.431,415.148 128.422,415.142 C 128.414,415.136 128.408,415.129 128.403,415.12 C 128.398,415.112 128.396,415.103 128.396,415.094 L 128.396,415.036 L 128.776,415.076 L 128.776,414.969 L 128.396,414.929 L 128.396,414.655 L 128.291,414.643 Z M 128.969,414.714 L 128.968,415.152 C 128.968,415.174 128.972,415.197 128.981,415.217 C 128.988,415.236 128.999,415.254 129.013,415.271 C 129.028,415.287 129.047,415.301 129.065,415.312 C 129.084,415.322 129.104,415.328 129.127,415.332 L 129.559,415.377 L 129.56,415.269 L 129.128,415.225 C 129.117,415.222 129.108,415.22 129.1,415.215 C 129.091,415.208 129.086,415.201 129.08,415.192 C 129.076,415.183 129.073,415.173 129.073,415.163 L 129.073,415.109 L 129.454,415.148 L 129.454,415.042 L 129.073,415.002 L 129.073,414.725 L 128.969,414.714 Z M 129.647,414.787 L 129.645,415.386 L 130.018,415.426 C 130.041,415.428 130.061,415.426 130.079,415.42 C 130.098,415.414 130.116,415.403 130.13,415.39 L 130.13,415.388 C 130.146,415.375 130.157,415.36 130.167,415.341 C 130.174,415.322 130.178,415.301 130.178,415.28 C 130.178,415.257 130.174,415.236 130.167,415.217 C 130.159,415.197 130.147,415.178 130.134,415.163 C 130.119,415.147 130.104,415.133 130.085,415.124 C 130.071,415.114 130.056,415.109 130.04,415.106 C 130.038,415.106 130.036,415.106 130.035,415.105 L 130.035,415.104 L 129.751,415.073 L 129.752,414.799 L 129.647,414.787 Z M 130.262,414.849 L 130.262,415.028 C 130.262,415.039 130.263,415.05 130.266,415.062 C 130.268,415.073 130.272,415.087 130.276,415.098 C 130.285,415.119 130.297,415.138 130.311,415.155 C 130.327,415.173 130.344,415.188 130.366,415.201 C 130.385,415.21 130.407,415.218 130.431,415.222 L 130.684,415.248 L 130.686,415.248 C 130.699,415.251 130.71,415.256 130.718,415.263 C 130.728,415.27 130.735,415.28 130.741,415.292 C 130.746,415.301 130.749,415.313 130.749,415.326 C 130.749,415.338 130.746,415.35 130.739,415.36 C 130.733,415.369 130.726,415.377 130.715,415.383 C 130.705,415.388 130.693,415.39 130.679,415.388 L 130.263,415.345 L 130.263,415.452 L 130.679,415.495 C 130.705,415.497 130.728,415.495 130.748,415.488 C 130.769,415.482 130.786,415.471 130.804,415.456 C 130.82,415.442 130.833,415.426 130.841,415.404 C 130.85,415.384 130.854,415.362 130.855,415.337 C 130.855,415.325 130.854,415.313 130.851,415.3 C 130.848,415.288 130.846,415.277 130.841,415.266 C 130.836,415.254 130.832,415.245 130.826,415.236 C 130.82,415.227 130.813,415.218 130.805,415.21 C 130.79,415.191 130.771,415.176 130.751,415.164 C 130.731,415.153 130.71,415.146 130.685,415.142 L 130.683,415.142 C 130.682,415.142 130.681,415.142 130.679,415.141 L 130.431,415.116 C 130.419,415.113 130.408,415.109 130.399,415.101 C 130.389,415.094 130.382,415.084 130.377,415.073 C 130.371,415.062 130.37,415.052 130.37,415.04 L 130.37,414.97 L 130.852,415.02 L 130.853,414.912 L 130.435,414.868 L 130.262,414.849 Z M 131.352,414.967 L 131.351,415.563 L 131.457,415.493 L 131.839,415.236 L 131.838,415.617 L 131.944,415.628 L 131.945,415.029 L 131.839,415.101 L 131.457,415.358 L 131.458,414.978 L 131.352,414.967 Z M 132.029,415.039 L 132.029,415.639 L 132.403,415.678 C 132.423,415.681 132.444,415.679 132.464,415.67 C 132.484,415.666 132.5,415.655 132.514,415.642 C 132.529,415.628 132.54,415.613 132.548,415.594 C 132.557,415.575 132.561,415.554 132.561,415.533 C 132.561,415.51 132.557,415.489 132.549,415.468 C 132.541,415.449 132.531,415.431 132.516,415.415 C 132.503,415.398 132.487,415.386 132.469,415.375 C 132.455,415.366 132.438,415.36 132.422,415.356 L 132.508,415.195 L 132.562,415.095 L 132.444,415.082 L 132.39,415.183 L 132.331,415.288 L 132.33,415.293 C 132.32,415.309 132.308,415.32 132.292,415.327 C 132.277,415.335 132.259,415.338 132.24,415.336 L 132.135,415.325 L 132.136,415.048 L 132.029,415.039 Z M 129.751,415.178 L 130.02,415.208 C 130.022,415.208 130.027,415.209 130.031,415.21 C 130.034,415.212 130.038,415.213 130.041,415.216 L 130.041,415.216 C 130.051,415.221 130.06,415.229 130.064,415.238 C 130.071,415.248 130.073,415.257 130.073,415.268 C 130.073,415.279 130.071,415.286 130.067,415.293 C 130.064,415.298 130.06,415.304 130.058,415.307 C 130.053,415.31 130.049,415.313 130.043,415.315 C 130.036,415.319 130.028,415.319 130.02,415.319 L 129.751,415.288 L 129.751,415.178 Z M 132.135,415.431 L 132.403,415.46 C 132.406,415.46 132.409,415.461 132.414,415.461 C 132.417,415.464 132.421,415.465 132.423,415.468 C 132.435,415.473 132.441,415.481 132.447,415.489 C 132.455,415.5 132.457,415.51 132.457,415.52 C 132.456,415.532 132.455,415.539 132.449,415.545 C 132.446,415.552 132.444,415.556 132.44,415.559 C 132.436,415.562 132.431,415.565 132.426,415.568 C 132.418,415.57 132.411,415.571 132.403,415.57 L 132.135,415.542 L 132.135,415.431 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 126.405,413.447 L 126.404,413.845 L 126.646,413.87 C 126.66,413.873 126.675,413.87 126.686,413.866 C 126.698,413.861 126.71,413.856 126.72,413.846 L 126.72,413.846 C 126.73,413.836 126.737,413.827 126.742,413.815 C 126.747,413.802 126.751,413.789 126.751,413.774 C 126.751,413.757 126.748,413.744 126.743,413.731 C 126.738,413.718 126.732,413.707 126.723,413.695 C 126.712,413.685 126.702,413.675 126.69,413.67 C 126.68,413.664 126.671,413.659 126.66,413.659 C 126.659,413.659 126.658,413.657 126.658,413.657 L 126.658,413.657 L 126.472,413.637 L 126.474,413.455 L 126.405,413.447 Z M 126.805,413.487 L 126.804,413.886 L 127.049,413.912 C 127.064,413.912 127.077,413.912 127.088,413.907 C 127.101,413.903 127.11,413.897 127.121,413.887 C 127.13,413.879 127.137,413.868 127.144,413.856 C 127.148,413.844 127.151,413.83 127.151,413.815 C 127.151,413.801 127.148,413.787 127.145,413.774 C 127.138,413.759 127.131,413.748 127.122,413.737 C 127.112,413.726 127.104,413.718 127.091,413.711 C 127.082,413.705 127.072,413.701 127.062,413.699 L 127.116,413.591 L 127.151,413.523 L 127.076,413.515 L 127.039,413.582 L 127.003,413.654 L 127.001,413.657 C 126.995,413.668 126.987,413.674 126.977,413.68 C 126.966,413.685 126.955,413.686 126.943,413.685 L 126.873,413.678 L 126.873,413.494 L 126.805,413.487 Z M 127.311,413.557 C 127.289,413.564 127.269,413.577 127.251,413.592 C 127.232,413.609 127.219,413.629 127.209,413.651 C 127.2,413.675 127.194,413.701 127.194,413.729 C 127.194,413.756 127.2,413.783 127.208,413.807 C 127.219,413.832 127.232,413.854 127.251,413.874 C 127.267,413.895 127.289,413.912 127.31,413.924 C 127.334,413.937 127.359,413.944 127.387,413.947 C 127.413,413.95 127.439,413.947 127.462,413.939 C 127.484,413.931 127.506,413.92 127.523,413.904 C 127.541,413.887 127.555,413.867 127.564,413.844 C 127.574,413.821 127.579,413.796 127.579,413.769 C 127.579,413.74 127.574,413.714 127.564,413.688 C 127.555,413.664 127.542,413.642 127.523,413.621 C 127.506,413.602 127.484,413.584 127.463,413.572 C 127.439,413.559 127.413,413.551 127.387,413.55 L 127.348,413.55 C 127.335,413.551 127.323,413.553 127.311,413.557 Z M 127.778,413.589 L 127.778,413.917 L 127.621,413.9 L 127.621,413.97 L 128.004,414.012 L 128.004,413.94 L 127.848,413.924 L 127.849,413.596 L 127.778,413.589 Z M 127.387,413.62 C 127.403,413.621 127.42,413.627 127.435,413.635 C 127.451,413.644 127.464,413.654 127.474,413.667 C 127.484,413.68 127.495,413.694 127.502,413.711 C 127.508,413.725 127.51,413.743 127.51,413.761 C 127.51,413.779 127.508,413.795 127.501,413.809 C 127.495,413.824 127.484,413.837 127.474,413.847 C 127.463,413.858 127.45,413.866 127.434,413.87 C 127.42,413.876 127.403,413.878 127.387,413.876 C 127.369,413.874 127.353,413.869 127.338,413.86 C 127.323,413.853 127.31,413.842 127.298,413.83 C 127.288,413.816 127.279,413.803 127.272,413.785 C 127.267,413.77 127.263,413.753 127.263,413.736 C 127.263,413.718 127.267,413.701 127.272,413.686 C 127.279,413.672 127.289,413.659 127.299,413.648 C 127.31,413.638 127.324,413.63 127.338,413.625 C 127.353,413.621 127.37,413.618 127.387,413.62 Z M 128.123,413.634 C 128.113,413.637 128.103,413.644 128.091,413.654 C 128.083,413.663 128.075,413.673 128.071,413.685 C 128.065,413.698 128.062,413.712 128.062,413.726 L 128.062,413.911 C 128.062,413.925 128.064,413.939 128.069,413.952 C 128.075,413.965 128.082,413.977 128.091,413.99 C 128.101,414 128.112,414.008 128.123,414.015 C 128.136,414.022 128.149,414.028 128.165,414.028 L 128.446,414.057 L 128.446,413.987 L 128.165,413.957 C 128.159,413.956 128.152,413.954 128.146,413.95 C 128.142,413.946 128.137,413.941 128.135,413.936 C 128.131,413.93 128.129,413.923 128.129,413.917 L 128.129,413.88 L 128.377,413.906 L 128.377,413.834 L 128.129,413.809 L 128.13,413.734 C 128.13,413.726 128.131,413.721 128.135,413.716 C 128.138,413.711 128.142,413.707 128.147,413.705 C 128.154,413.701 128.159,413.699 128.165,413.701 L 128.446,413.731 L 128.446,413.659 L 128.165,413.63 C 128.15,413.628 128.137,413.63 128.123,413.634 Z M 128.613,413.692 C 128.589,413.699 128.57,413.712 128.552,413.727 C 128.534,413.744 128.52,413.764 128.511,413.788 C 128.501,413.81 128.496,413.835 128.496,413.862 C 128.496,413.891 128.501,413.917 128.511,413.941 C 128.519,413.966 128.534,413.99 128.552,414.009 C 128.57,414.03 128.589,414.046 128.613,414.059 C 128.636,414.071 128.661,414.079 128.688,414.082 L 128.879,414.103 L 128.879,414.031 L 128.688,414.011 C 128.671,414.009 128.654,414.004 128.64,413.996 C 128.625,413.989 128.611,413.977 128.6,413.963 C 128.588,413.95 128.581,413.938 128.573,413.921 C 128.568,413.906 128.564,413.888 128.564,413.87 C 128.564,413.853 128.568,413.836 128.574,413.821 C 128.581,413.807 128.588,413.795 128.601,413.783 C 128.612,413.774 128.627,413.765 128.64,413.759 C 128.654,413.755 128.671,413.753 128.688,413.755 L 128.88,413.775 L 128.88,413.705 L 128.688,413.684 L 128.649,413.684 C 128.637,413.685 128.625,413.688 128.613,413.692 Z M 126.472,413.708 L 126.647,413.725 C 126.651,413.725 126.653,413.726 126.656,413.727 C 126.658,413.727 126.659,413.729 126.662,413.731 C 126.668,413.735 126.673,413.738 126.677,413.745 C 126.68,413.751 126.682,413.757 126.682,413.766 C 126.682,413.772 126.68,413.778 126.678,413.782 C 126.677,413.787 126.674,413.789 126.671,413.791 C 126.67,413.794 126.667,413.796 126.663,413.797 C 126.658,413.799 126.654,413.8 126.647,413.799 L 126.472,413.782 L 126.472,413.708 Z M 129.093,413.725 L 129.093,414.054 L 128.935,414.037 L 128.935,414.109 L 129.32,414.148 L 129.32,414.076 L 129.163,414.06 L 129.163,413.733 L 129.093,413.725 Z M 126.873,413.748 L 127.049,413.767 C 127.051,413.767 127.053,413.769 127.056,413.769 C 127.058,413.77 127.06,413.77 127.064,413.771 C 127.069,413.776 127.074,413.78 127.078,413.788 C 127.082,413.793 127.084,413.8 127.084,413.807 C 127.084,413.814 127.082,413.819 127.08,413.823 C 127.078,413.828 127.076,413.83 127.073,413.832 C 127.071,413.834 127.067,413.836 127.065,413.838 C 127.06,413.84 127.054,413.841 127.049,413.84 L 126.873,413.821 L 126.873,413.748 Z M 129.376,413.755 L 129.375,414.153 L 129.445,414.161 L 129.446,413.764 L 129.376,413.755 Z M 129.673,413.787 L 129.512,414.098 L 129.477,414.163 L 129.554,414.171 L 129.589,414.105 L 129.673,413.943 L 129.757,414.122 L 129.793,414.196 L 129.87,414.206 L 129.834,414.131 L 129.673,413.787 Z M 129.968,413.825 C 129.956,413.83 129.945,413.835 129.936,413.844 C 129.926,413.853 129.918,413.864 129.913,413.876 C 129.907,413.889 129.904,413.903 129.904,413.917 L 129.904,414.101 C 129.904,414.116 129.906,414.13 129.912,414.143 C 129.918,414.157 129.925,414.169 129.935,414.179 C 129.944,414.189 129.955,414.2 129.968,414.207 C 129.979,414.214 129.994,414.218 130.008,414.22 L 130.288,414.248 L 130.288,414.176 L 130.008,414.148 C 130,414.148 129.995,414.144 129.989,414.141 C 129.984,414.138 129.981,414.133 129.977,414.127 C 129.974,414.122 129.972,414.115 129.972,414.109 L 129.972,414.071 L 130.221,414.098 L 130.221,414.027 L 129.973,414.001 L 129.973,413.925 C 129.973,413.918 129.975,413.912 129.977,413.907 C 129.981,413.902 129.984,413.897 129.99,413.895 C 129.995,413.893 130.001,413.891 130.008,413.893 L 130.289,413.921 L 130.289,413.849 L 130.008,413.821 C 129.994,413.819 129.98,413.821 129.968,413.825 Z M 130.611,413.882 L 130.61,414.28 L 130.854,414.306 C 130.868,414.307 130.881,414.306 130.894,414.301 C 130.907,414.297 130.918,414.29 130.927,414.282 C 130.937,414.273 130.944,414.262 130.95,414.25 C 130.954,414.238 130.957,414.224 130.957,414.209 C 130.957,414.194 130.955,414.18 130.951,414.167 C 130.945,414.154 130.938,414.142 130.929,414.132 C 130.92,414.122 130.911,414.112 130.897,414.106 C 130.889,414.1 130.877,414.096 130.867,414.095 L 130.924,413.985 L 130.958,413.918 L 130.88,413.911 L 130.847,413.977 L 130.809,414.047 L 130.809,414.052 C 130.802,414.06 130.793,414.068 130.782,414.073 C 130.771,414.078 130.761,414.08 130.75,414.079 L 130.679,414.072 L 130.679,413.889 L 130.611,413.882 Z M 131.077,413.94 C 131.066,413.944 131.054,413.95 131.045,413.96 C 131.035,413.969 131.028,413.978 131.023,413.991 C 131.017,414.004 131.015,414.018 131.015,414.032 L 131.015,414.217 C 131.015,414.231 131.016,414.245 131.022,414.258 C 131.028,414.272 131.035,414.284 131.045,414.295 C 131.054,414.306 131.065,414.315 131.077,414.323 C 131.09,414.329 131.103,414.333 131.117,414.334 L 131.398,414.363 L 131.398,414.292 L 131.117,414.262 C 131.111,414.262 131.105,414.26 131.099,414.256 C 131.095,414.253 131.091,414.248 131.086,414.242 C 131.084,414.236 131.082,414.23 131.082,414.223 L 131.082,414.186 L 131.33,414.212 L 131.33,414.14 L 131.083,414.115 L 131.083,414.041 C 131.083,414.033 131.085,414.028 131.087,414.022 C 131.091,414.017 131.095,414.014 131.099,414.01 C 131.105,414.008 131.112,414.007 131.117,414.007 L 131.399,414.036 L 131.399,413.964 L 131.118,413.936 C 131.104,413.935 131.09,413.937 131.077,413.94 Z M 131.529,413.989 C 131.514,413.994 131.501,414.002 131.49,414.011 C 131.479,414.021 131.471,414.034 131.464,414.048 C 131.458,414.063 131.454,414.079 131.454,414.097 L 131.524,414.104 C 131.524,414.094 131.525,414.084 131.531,414.076 C 131.535,414.069 131.541,414.062 131.549,414.059 C 131.557,414.055 131.564,414.054 131.577,414.054 L 131.698,414.066 C 131.707,414.068 131.715,414.071 131.724,414.076 C 131.731,414.083 131.738,414.089 131.742,414.099 C 131.747,414.108 131.749,414.118 131.749,414.127 C 131.749,414.138 131.747,414.146 131.742,414.153 C 131.738,414.162 131.731,414.166 131.724,414.17 C 131.715,414.175 131.707,414.176 131.698,414.176 L 131.557,414.162 L 131.538,414.162 C 131.531,414.163 131.524,414.163 131.518,414.164 C 131.506,414.17 131.497,414.176 131.485,414.183 C 131.482,414.189 131.475,414.194 131.473,414.2 C 131.466,414.209 131.462,414.218 131.459,414.228 C 131.455,414.237 131.454,414.248 131.454,414.259 L 131.454,414.261 C 131.454,414.275 131.457,414.29 131.462,414.304 C 131.467,414.319 131.474,414.33 131.485,414.34 C 131.495,414.351 131.505,414.36 131.518,414.366 C 131.529,414.374 131.543,414.377 131.557,414.379 L 131.713,414.396 C 131.727,414.397 131.741,414.396 131.754,414.391 C 131.766,414.388 131.777,414.38 131.788,414.372 C 131.797,414.363 131.805,414.352 131.81,414.34 C 131.816,414.328 131.817,414.315 131.817,414.299 L 131.817,414.297 L 131.749,414.288 L 131.749,414.29 C 131.749,414.298 131.747,414.304 131.744,414.309 C 131.74,414.315 131.736,414.319 131.732,414.322 C 131.726,414.324 131.72,414.325 131.713,414.325 L 131.557,414.307 C 131.551,414.307 131.544,414.305 131.539,414.3 C 131.535,414.297 131.531,414.292 131.526,414.286 C 131.524,414.28 131.523,414.273 131.523,414.267 L 131.523,414.265 C 131.523,414.258 131.524,414.254 131.526,414.248 C 131.531,414.242 131.535,414.238 131.54,414.236 C 131.544,414.233 131.551,414.232 131.557,414.233 L 131.698,414.247 L 131.723,414.247 C 131.73,414.246 131.738,414.245 131.746,414.241 C 131.762,414.236 131.775,414.228 131.786,414.217 C 131.788,414.216 131.788,414.216 131.789,414.214 C 131.789,414.214 131.789,414.213 131.79,414.212 C 131.799,414.202 131.806,414.189 131.81,414.176 C 131.816,414.163 131.818,414.15 131.818,414.135 C 131.818,414.118 131.815,414.1 131.809,414.084 C 131.803,414.069 131.794,414.054 131.783,414.042 C 131.77,414.029 131.758,414.019 131.743,414.01 C 131.729,414.003 131.713,413.997 131.698,413.996 L 131.577,413.982 C 131.558,413.981 131.543,413.982 131.529,413.989 Z M 131.874,414.015 L 131.873,414.412 L 132.116,414.438 C 132.132,414.44 132.145,414.438 132.156,414.434 C 132.169,414.43 132.18,414.422 132.19,414.414 L 132.19,414.414 C 132.199,414.404 132.207,414.393 132.212,414.38 C 132.216,414.368 132.22,414.355 132.22,414.34 C 132.22,414.325 132.217,414.311 132.212,414.298 C 132.208,414.285 132.201,414.273 132.191,414.262 C 132.182,414.252 132.172,414.243 132.159,414.236 C 132.151,414.231 132.141,414.228 132.131,414.225 C 132.13,414.225 132.128,414.224 132.127,414.224 L 132.127,414.223 L 131.944,414.205 L 131.944,414.022 L 131.874,414.015 Z M 132.276,414.056 L 132.275,414.454 L 132.343,414.461 L 132.345,414.063 L 132.276,414.056 Z M 132.399,414.066 L 132.398,414.466 L 132.642,414.49 C 132.656,414.493 132.669,414.491 132.683,414.486 C 132.695,414.482 132.705,414.476 132.715,414.467 C 132.725,414.458 132.732,414.448 132.737,414.435 C 132.742,414.422 132.745,414.409 132.745,414.395 C 132.745,414.38 132.742,414.365 132.738,414.353 C 132.732,414.339 132.726,414.328 132.717,414.318 C 132.707,414.306 132.697,414.298 132.685,414.29 C 132.675,414.285 132.665,414.281 132.655,414.279 L 132.71,414.17 L 132.745,414.104 L 132.669,414.096 L 132.633,414.163 L 132.597,414.233 L 132.595,414.236 C 132.589,414.246 132.581,414.254 132.571,414.258 C 132.56,414.264 132.548,414.266 132.537,414.265 L 132.469,414.257 L 132.469,414.073 L 132.399,414.066 Z M 132.778,414.109 L 132.815,414.183 L 132.976,414.526 L 133.137,414.217 L 133.173,414.15 L 133.095,414.14 L 133.061,414.209 L 132.976,414.37 L 132.891,414.19 L 132.855,414.117 L 132.778,414.109 Z M 130.679,414.143 L 130.854,414.162 C 130.857,414.163 130.86,414.163 130.861,414.163 C 130.863,414.163 130.866,414.164 130.868,414.166 C 130.874,414.17 130.879,414.175 130.884,414.181 C 130.887,414.188 130.89,414.194 130.89,414.202 C 130.89,414.209 130.889,414.215 130.886,414.219 C 130.884,414.222 130.88,414.227 130.879,414.228 C 130.876,414.23 130.873,414.231 130.87,414.233 C 130.866,414.233 130.865,414.234 130.861,414.235 L 130.854,414.235 L 130.679,414.217 L 130.679,414.143 Z M 133.363,414.168 L 133.363,414.496 L 133.204,414.48 L 133.204,414.551 L 133.59,414.59 L 133.59,414.519 L 133.431,414.502 L 133.432,414.175 L 133.363,414.168 Z M 133.749,414.224 C 133.726,414.232 133.707,414.245 133.688,414.26 C 133.672,414.277 133.657,414.296 133.646,414.32 C 133.636,414.343 133.631,414.367 133.631,414.396 C 133.631,414.422 133.636,414.449 133.646,414.474 C 133.656,414.499 133.671,414.522 133.688,414.543 C 133.706,414.563 133.726,414.578 133.749,414.591 C 133.772,414.604 133.798,414.612 133.824,414.615 C 133.852,414.617 133.875,414.615 133.899,414.607 C 133.922,414.6 133.944,414.587 133.961,414.57 C 133.978,414.554 133.991,414.535 134.002,414.511 C 134.012,414.487 134.017,414.463 134.017,414.435 C 134.017,414.408 134.012,414.381 134.003,414.356 C 133.991,414.332 133.978,414.309 133.961,414.288 C 133.945,414.269 133.923,414.253 133.9,414.24 C 133.876,414.228 133.852,414.22 133.825,414.217 L 133.786,414.217 C 133.773,414.219 133.762,414.221 133.749,414.224 Z M 134.059,414.24 L 134.058,414.637 L 134.3,414.663 C 134.315,414.664 134.329,414.662 134.342,414.658 C 134.354,414.655 134.365,414.648 134.375,414.639 C 134.385,414.63 134.391,414.62 134.397,414.608 C 134.402,414.595 134.404,414.581 134.404,414.567 C 134.404,414.552 134.402,414.538 134.397,414.525 C 134.392,414.512 134.385,414.499 134.376,414.488 C 134.367,414.478 134.357,414.47 134.346,414.462 C 134.334,414.457 134.325,414.454 134.313,414.452 L 134.371,414.343 L 134.405,414.274 L 134.328,414.267 L 134.294,414.336 L 134.256,414.406 L 134.254,414.409 C 134.249,414.419 134.241,414.428 134.23,414.432 C 134.22,414.436 134.208,414.438 134.196,414.437 L 134.127,414.431 L 134.127,414.247 L 134.059,414.24 Z M 131.942,414.274 L 132.116,414.293 C 132.119,414.293 132.123,414.294 132.125,414.295 C 132.126,414.296 132.13,414.296 132.132,414.298 L 132.132,414.298 C 132.138,414.302 132.143,414.307 132.146,414.314 C 132.151,414.321 132.151,414.327 132.152,414.334 C 132.151,414.34 132.151,414.346 132.149,414.351 C 132.146,414.354 132.145,414.357 132.141,414.359 C 132.139,414.362 132.137,414.363 132.132,414.364 C 132.128,414.366 132.124,414.367 132.116,414.366 L 131.942,414.349 L 131.942,414.274 Z M 133.825,414.286 C 133.842,414.288 133.858,414.294 133.873,414.303 C 133.888,414.311 133.901,414.322 133.912,414.334 C 133.924,414.347 133.933,414.362 133.939,414.377 C 133.946,414.394 133.948,414.41 133.948,414.429 C 133.948,414.447 133.946,414.462 133.939,414.477 C 133.933,414.493 133.923,414.505 133.911,414.515 C 133.901,414.525 133.888,414.533 133.873,414.538 C 133.858,414.544 133.842,414.545 133.824,414.544 C 133.807,414.542 133.791,414.537 133.777,414.528 C 133.762,414.521 133.748,414.51 133.736,414.497 C 133.725,414.484 133.717,414.47 133.71,414.454 C 133.704,414.437 133.701,414.42 133.701,414.403 C 133.701,414.384 133.704,414.368 133.71,414.354 C 133.717,414.339 133.725,414.327 133.736,414.317 C 133.748,414.306 133.762,414.298 133.778,414.293 C 133.792,414.286 133.807,414.285 133.825,414.286 Z M 132.469,414.329 L 132.642,414.347 C 132.645,414.347 132.647,414.348 132.649,414.349 C 132.651,414.351 132.654,414.351 132.656,414.352 C 132.662,414.356 132.667,414.361 132.671,414.366 C 132.675,414.374 132.677,414.38 132.677,414.387 C 132.677,414.394 132.675,414.399 132.674,414.403 C 132.671,414.407 132.669,414.41 132.666,414.412 C 132.664,414.415 132.661,414.416 132.656,414.418 C 132.653,414.419 132.647,414.42 132.642,414.42 L 132.469,414.402 L 132.469,414.329 Z M 134.127,414.5 L 134.3,414.519 C 134.304,414.519 134.307,414.52 134.309,414.521 C 134.311,414.522 134.313,414.522 134.315,414.523 C 134.321,414.527 134.326,414.532 134.332,414.538 C 134.334,414.545 134.336,414.551 134.336,414.559 C 134.336,414.565 134.334,414.57 134.333,414.576 C 134.332,414.579 134.328,414.582 134.325,414.583 C 134.323,414.586 134.32,414.588 134.316,414.59 C 134.312,414.592 134.307,414.592 134.3,414.592 L 134.127,414.575 L 134.127,414.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 121.535,426.778 L 121.361,426.938 L 138.769,428.074 L 138.858,428.036 C 138.888,428.025 138.916,427.997 138.916,427.952 L 138.916,427.909 L 121.535,426.778 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 121.361,426.938 L 121.36,403.487 L 121.449,403.403 L 121.535,403.416 L 121.535,426.776 L 121.361,426.938 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--NATURAL_SAND, .KN95_NR_individuals--NATURAL_SAND {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.437 -349.11 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(30.079 321.64)'%3E%3Cstop offset='0' stop-color='%23d2af8a'/%3E%3Cstop offset='1' stop-color='%23f5d1aa'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.92' gradientTransform='translate(26.54 322.255)'%3E%3Cstop offset='0' stop-color='%2399826a'/%3E%3Cstop offset='1' stop-color='%23d1b291'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.1' gradientTransform='translate(30.073 341.623)'%3E%3Cstop offset='0' stop-color='%23b69b7e'/%3E%3Cstop offset='1' stop-color='%23d4b593'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.229' gradientTransform='translate(25.4 343.678)'%3E%3Cstop offset='0' stop-color='%23947e67'/%3E%3Cstop offset='1' stop-color='%23b69b7e'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(38.392 343.494) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c1a586'/%3E%3Cstop offset='1' stop-color='%23d9b997'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.247 331.382) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b4997d'/%3E%3Cstop offset='1' stop-color='%23d1b291'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.166 332.381) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.166,319.226 L 27.166,342.713 L 44.613,343.832 C 44.625,343.818 44.635,343.799 44.635,343.774 L 44.635,321.593 L 27.166,319.226 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.166,319.226 L 23.702,322.588 L 23.701,344.61 L 27.166,342.713 L 27.166,319.226 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.166,342.713 L 23.701,344.61 L 40.633,345.539 L 44.577,343.858 C 44.59,343.853 44.603,343.845 44.613,343.832 L 27.166,342.713 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.079,342.444 L 23.699,344.333 L 23.698,344.61 L 27.079,342.759 L 27.079,342.444 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.207,324.828 L 34.207,325.237 L 34.279,325.246 L 34.279,324.835 L 34.207,324.828 Z M 34.337,324.842 L 34.337,325.249 L 34.409,325.202 L 34.671,325.027 L 34.671,325.287 L 34.742,325.297 L 34.742,324.886 L 34.671,324.934 L 34.409,325.109 L 34.409,324.849 L 34.337,324.842 Z M 34.8,324.892 L 34.8,325.302 L 35.003,325.324 C 35.031,325.327 35.057,325.325 35.08,325.316 C 35.105,325.309 35.127,325.297 35.146,325.28 C 35.164,325.263 35.178,325.242 35.188,325.22 C 35.199,325.196 35.205,325.17 35.205,325.141 C 35.205,325.115 35.201,325.092 35.192,325.068 C 35.183,325.046 35.171,325.023 35.156,325.004 C 35.155,325.002 35.153,324.999 35.151,324.997 C 35.149,324.995 35.148,324.992 35.144,324.99 C 35.127,324.969 35.105,324.952 35.08,324.939 C 35.058,324.925 35.032,324.917 35.003,324.914 L 34.8,324.892 Z M 35.262,324.943 L 35.262,325.352 L 35.336,325.359 L 35.336,324.951 L 35.262,324.943 Z M 34.872,324.972 L 35.003,324.986 C 35.02,324.99 35.037,324.995 35.052,325.003 C 35.069,325.01 35.082,325.022 35.094,325.035 C 35.105,325.048 35.116,325.063 35.123,325.08 C 35.129,325.098 35.132,325.115 35.133,325.132 C 35.132,325.152 35.129,325.168 35.123,325.183 C 35.116,325.198 35.105,325.211 35.094,325.222 C 35.082,325.233 35.069,325.241 35.052,325.246 C 35.037,325.25 35.02,325.252 35.003,325.25 L 34.872,325.236 L 34.872,324.972 Z M 35.577,324.977 L 35.406,325.296 L 35.369,325.364 L 35.451,325.373 L 35.487,325.304 L 35.577,325.138 L 35.665,325.324 L 35.701,325.4 L 35.782,325.409 L 35.745,325.332 L 35.577,324.977 Z M 35.818,325.003 L 35.818,325.413 L 35.891,325.421 L 35.891,325.01 L 35.818,325.003 Z M 35.949,325.017 L 35.949,325.427 L 36.151,325.448 C 36.179,325.451 36.205,325.448 36.23,325.441 C 36.254,325.434 36.275,325.422 36.293,325.405 C 36.313,325.389 36.326,325.366 36.337,325.344 C 36.348,325.32 36.353,325.295 36.353,325.266 C 36.353,325.241 36.349,325.216 36.341,325.194 C 36.332,325.17 36.321,325.148 36.305,325.128 C 36.303,325.126 36.301,325.124 36.299,325.122 C 36.298,325.119 36.296,325.117 36.292,325.115 C 36.274,325.094 36.254,325.076 36.23,325.063 C 36.205,325.05 36.179,325.042 36.151,325.038 L 35.949,325.017 Z M 36.537,325.097 C 36.511,325.105 36.489,325.117 36.471,325.133 C 36.452,325.152 36.438,325.171 36.427,325.194 C 36.418,325.218 36.412,325.244 36.412,325.273 L 36.412,325.476 L 36.483,325.486 L 36.483,325.281 C 36.483,325.262 36.487,325.246 36.493,325.23 C 36.5,325.216 36.51,325.202 36.523,325.192 C 36.535,325.181 36.548,325.172 36.564,325.168 C 36.579,325.163 36.595,325.16 36.614,325.163 C 36.632,325.165 36.649,325.17 36.664,325.179 C 36.68,325.186 36.694,325.198 36.706,325.211 C 36.717,325.224 36.727,325.239 36.733,325.256 C 36.741,325.274 36.744,325.29 36.744,325.309 L 36.744,325.513 L 36.817,325.521 L 36.817,325.316 C 36.817,325.287 36.811,325.261 36.801,325.235 C 36.789,325.209 36.776,325.185 36.756,325.165 C 36.739,325.144 36.717,325.127 36.692,325.113 C 36.669,325.101 36.642,325.093 36.614,325.089 C 36.585,325.086 36.56,325.089 36.537,325.097 Z M 36.02,325.098 L 36.151,325.112 C 36.168,325.113 36.184,325.119 36.201,325.127 C 36.217,325.136 36.231,325.146 36.243,325.16 C 36.255,325.174 36.264,325.189 36.27,325.206 C 36.277,325.222 36.28,325.239 36.281,325.257 C 36.28,325.275 36.277,325.293 36.27,325.308 C 36.264,325.324 36.255,325.337 36.243,325.346 C 36.231,325.357 36.217,325.364 36.201,325.37 C 36.184,325.377 36.168,325.377 36.151,325.376 L 36.02,325.361 L 36.02,325.098 Z M 36.852,325.115 L 36.888,325.193 L 37.057,325.547 L 37.228,325.229 L 37.264,325.159 L 37.184,325.152 L 37.147,325.22 L 37.057,325.386 L 36.97,325.201 L 36.932,325.124 L 36.852,325.115 Z M 37.399,325.179 C 37.388,325.18 37.38,325.181 37.371,325.184 C 37.358,325.19 37.347,325.197 37.337,325.207 C 37.328,325.216 37.319,325.226 37.313,325.238 C 37.309,325.247 37.306,325.255 37.304,325.265 C 37.301,325.274 37.3,325.284 37.3,325.295 L 37.3,325.573 L 37.371,325.581 L 37.371,325.296 C 37.373,325.287 37.375,325.279 37.38,325.274 C 37.384,325.266 37.389,325.261 37.397,325.257 C 37.405,325.252 37.414,325.25 37.421,325.25 L 37.634,325.274 L 37.634,325.2 L 37.428,325.177 C 37.418,325.177 37.408,325.177 37.399,325.179 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.005,331.557 L 32.003,333.607 L 32.341,333.644 L 32.343,332.594 L 32.622,332.898 L 32.873,333.172 L 33.401,333.75 L 33.904,333.801 L 33.075,332.893 L 33.899,331.748 L 33.481,331.707 L 32.824,332.619 L 32.343,332.098 L 32.343,331.591 L 32.005,331.557 Z M 34.071,331.767 L 34.245,332.15 L 35.038,333.917 L 35.835,332.313 L 36.008,331.963 L 35.63,331.925 L 35.456,332.274 L 35.039,333.112 L 34.624,332.189 L 34.452,331.806 L 34.071,331.767 Z M 36.18,331.98 L 36.182,331.981 L 36.443,332.374 L 36.908,333.077 L 37.124,333.398 L 37.382,333.79 L 36.175,333.666 L 36.175,334.033 L 37.643,334.181 L 38.068,334.226 L 37.805,333.832 L 37.334,333.12 L 37.122,332.799 L 36.866,332.418 L 38.079,332.541 L 38.08,332.173 L 36.611,332.025 L 36.607,332.025 L 36.18,331.98 Z M 38.655,332.276 C 38.595,332.299 38.54,332.334 38.493,332.379 C 38.447,332.424 38.41,332.479 38.384,332.544 C 38.358,332.608 38.345,332.679 38.344,332.755 L 38.343,333.699 C 38.343,333.777 38.355,333.848 38.382,333.918 C 38.409,333.988 38.444,334.049 38.492,334.106 C 38.538,334.161 38.592,334.207 38.654,334.24 C 38.715,334.276 38.782,334.297 38.853,334.304 L 40.238,334.446 L 40.238,334.079 L 38.853,333.938 C 38.82,333.935 38.791,333.924 38.765,333.904 C 38.739,333.885 38.718,333.859 38.703,333.831 C 38.687,333.8 38.68,333.768 38.68,333.733 L 38.68,333.543 L 39.9,333.667 L 39.9,333.301 L 38.68,333.177 L 38.68,332.79 C 38.68,332.755 38.688,332.724 38.705,332.698 C 38.72,332.672 38.741,332.649 38.767,332.636 C 38.793,332.622 38.821,332.617 38.855,332.619 L 40.24,332.76 L 40.241,332.395 L 38.855,332.252 C 38.784,332.247 38.718,332.253 38.655,332.276 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.008,330.465 L 34.008,330.903 C 34.008,330.926 34.013,330.947 34.02,330.967 C 34.028,330.986 34.039,331.007 34.054,331.023 C 34.069,331.038 34.085,331.051 34.105,331.062 C 34.125,331.072 34.145,331.078 34.167,331.081 L 34.6,331.128 L 34.6,331.021 L 34.167,330.974 C 34.158,330.973 34.149,330.969 34.14,330.964 C 34.132,330.958 34.127,330.951 34.121,330.943 C 34.116,330.934 34.114,330.925 34.114,330.916 L 34.114,330.858 L 34.495,330.898 L 34.495,330.792 L 34.114,330.751 L 34.114,330.477 L 34.008,330.465 Z M 34.686,330.536 L 34.686,330.974 C 34.686,330.997 34.69,331.019 34.698,331.038 C 34.705,331.059 34.716,331.077 34.731,331.093 C 34.746,331.11 34.763,331.123 34.782,331.135 C 34.801,331.144 34.821,331.15 34.845,331.154 L 35.277,331.199 L 35.278,331.091 L 34.845,331.046 C 34.835,331.045 34.826,331.042 34.818,331.036 C 34.81,331.031 34.804,331.023 34.799,331.014 C 34.794,331.006 34.792,330.995 34.792,330.985 L 34.792,330.93 L 35.172,330.97 L 35.172,330.864 L 34.791,330.823 L 34.792,330.547 L 34.686,330.536 Z M 35.363,330.609 L 35.362,331.209 L 35.736,331.248 C 35.758,331.25 35.779,331.248 35.797,331.242 C 35.817,331.236 35.833,331.226 35.848,331.212 L 35.849,331.21 C 35.865,331.198 35.875,331.182 35.884,331.163 C 35.891,331.144 35.897,331.124 35.897,331.102 C 35.897,331.079 35.891,331.059 35.885,331.039 C 35.876,331.019 35.866,331.001 35.851,330.985 C 35.838,330.969 35.821,330.955 35.803,330.945 C 35.789,330.936 35.774,330.93 35.757,330.928 C 35.756,330.928 35.754,330.928 35.753,330.927 L 35.753,330.926 L 35.469,330.896 L 35.469,330.62 L 35.363,330.609 Z M 35.98,330.672 L 35.98,330.85 C 35.98,330.861 35.981,330.872 35.983,330.884 C 35.986,330.897 35.99,330.909 35.993,330.92 C 36.002,330.941 36.014,330.961 36.03,330.977 C 36.045,330.995 36.062,331.011 36.083,331.022 C 36.103,331.033 36.124,331.04 36.148,331.044 L 36.401,331.07 L 36.404,331.07 C 36.416,331.073 36.427,331.078 36.437,331.085 C 36.446,331.093 36.453,331.102 36.458,331.114 C 36.464,331.123 36.466,331.135 36.466,331.148 C 36.466,331.161 36.463,331.172 36.457,331.182 C 36.451,331.191 36.444,331.199 36.433,331.204 C 36.422,331.21 36.411,331.212 36.397,331.21 L 35.981,331.167 L 35.981,331.274 L 36.397,331.317 C 36.422,331.32 36.446,331.317 36.466,331.31 C 36.486,331.303 36.504,331.293 36.522,331.278 C 36.538,331.264 36.55,331.247 36.558,331.227 C 36.568,331.207 36.572,331.184 36.572,331.159 C 36.572,331.147 36.571,331.135 36.569,331.123 C 36.566,331.111 36.563,331.099 36.557,331.088 C 36.555,331.077 36.55,331.067 36.543,331.058 C 36.538,331.049 36.531,331.04 36.524,331.032 C 36.508,331.013 36.489,330.999 36.469,330.986 C 36.448,330.975 36.427,330.968 36.403,330.964 L 36.401,330.964 C 36.4,330.964 36.399,330.964 36.397,330.963 L 36.148,330.937 C 36.136,330.935 36.126,330.93 36.117,330.922 C 36.107,330.916 36.099,330.907 36.094,330.896 C 36.089,330.884 36.087,330.874 36.087,330.862 L 36.087,330.793 L 36.57,330.842 L 36.57,330.735 L 36.153,330.69 L 35.98,330.672 Z M 37.07,330.789 L 37.07,331.386 L 37.175,331.315 L 37.556,331.058 L 37.556,331.44 L 37.661,331.451 L 37.662,330.851 L 37.556,330.922 L 37.175,331.179 L 37.175,330.8 L 37.07,330.789 Z M 37.747,330.861 L 37.746,331.461 L 38.12,331.5 C 38.141,331.503 38.162,331.501 38.182,331.493 C 38.202,331.487 38.218,331.477 38.232,331.464 C 38.246,331.451 38.258,331.435 38.266,331.416 C 38.274,331.397 38.279,331.376 38.279,331.355 C 38.279,331.333 38.274,331.311 38.267,331.29 C 38.259,331.271 38.248,331.253 38.234,331.237 C 38.221,331.221 38.204,331.208 38.187,331.197 C 38.171,331.187 38.156,331.182 38.14,331.178 L 38.226,331.019 L 38.279,330.917 L 38.161,330.904 L 38.107,331.006 L 38.05,331.111 L 38.047,331.116 C 38.038,331.131 38.026,331.142 38.009,331.149 C 37.995,331.157 37.977,331.16 37.957,331.157 L 37.853,331.147 L 37.854,330.871 L 37.747,330.861 Z M 35.469,331.001 L 35.737,331.03 C 35.74,331.03 35.743,331.032 35.749,331.032 C 35.752,331.034 35.755,331.035 35.759,331.038 L 35.759,331.038 C 35.769,331.043 35.777,331.051 35.782,331.06 C 35.788,331.069 35.791,331.079 35.791,331.089 C 35.791,331.101 35.789,331.11 35.785,331.115 C 35.782,331.122 35.778,331.127 35.775,331.129 C 35.771,331.132 35.767,331.135 35.76,331.137 C 35.754,331.141 35.745,331.142 35.737,331.141 L 35.469,331.111 L 35.469,331.001 Z M 37.853,331.253 L 38.12,331.281 C 38.124,331.283 38.127,331.283 38.131,331.284 C 38.135,331.286 38.138,331.288 38.141,331.29 C 38.151,331.295 38.159,331.303 38.164,331.311 C 38.17,331.322 38.175,331.333 38.175,331.343 C 38.173,331.354 38.171,331.361 38.167,331.368 C 38.163,331.374 38.161,331.378 38.157,331.38 C 38.154,331.384 38.15,331.387 38.143,331.39 C 38.137,331.392 38.129,331.393 38.12,331.392 L 37.852,331.364 L 37.853,331.253 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.122,329.27 L 32.122,329.667 L 32.364,329.694 C 32.379,329.695 32.392,329.694 32.405,329.689 C 32.416,329.684 32.428,329.679 32.438,329.668 L 32.438,329.667 C 32.448,329.658 32.455,329.649 32.46,329.637 C 32.465,329.624 32.469,329.61 32.469,329.596 C 32.469,329.581 32.466,329.567 32.461,329.553 C 32.456,329.54 32.45,329.529 32.44,329.518 C 32.431,329.507 32.419,329.497 32.408,329.491 C 32.399,329.486 32.389,329.482 32.379,329.481 C 32.377,329.481 32.376,329.48 32.375,329.48 L 32.375,329.48 L 32.191,329.46 L 32.191,329.277 L 32.122,329.27 Z M 32.522,329.309 L 32.522,329.708 L 32.766,329.734 C 32.781,329.734 32.794,329.734 32.806,329.729 C 32.818,329.724 32.829,329.719 32.838,329.71 C 32.848,329.7 32.855,329.69 32.862,329.679 C 32.866,329.665 32.869,329.652 32.87,329.637 C 32.869,329.623 32.866,329.609 32.863,329.596 C 32.855,329.583 32.849,329.572 32.84,329.559 C 32.831,329.548 32.821,329.54 32.809,329.533 C 32.799,329.527 32.79,329.522 32.78,329.521 L 32.834,329.413 L 32.87,329.347 L 32.793,329.337 L 32.757,329.405 L 32.72,329.476 L 32.718,329.48 C 32.713,329.489 32.704,329.496 32.695,329.501 C 32.683,329.507 32.673,329.508 32.661,329.507 L 32.592,329.499 L 32.592,329.316 L 32.522,329.309 Z M 33.029,329.379 C 33.007,329.386 32.986,329.399 32.969,329.414 C 32.95,329.431 32.936,329.451 32.928,329.474 C 32.917,329.497 32.913,329.522 32.911,329.551 C 32.913,329.578 32.917,329.605 32.927,329.629 C 32.936,329.654 32.95,329.677 32.967,329.697 C 32.986,329.716 33.006,329.734 33.029,329.746 C 33.052,329.759 33.076,329.766 33.104,329.77 C 33.13,329.772 33.155,329.77 33.18,329.761 C 33.201,329.753 33.223,329.742 33.24,329.725 C 33.258,329.709 33.272,329.69 33.281,329.665 C 33.291,329.643 33.296,329.618 33.296,329.59 C 33.296,329.563 33.291,329.536 33.281,329.51 C 33.272,329.486 33.258,329.465 33.241,329.443 C 33.224,329.424 33.201,329.406 33.18,329.395 C 33.155,329.382 33.131,329.373 33.105,329.372 L 33.066,329.373 C 33.053,329.373 33.041,329.375 33.029,329.379 Z M 33.496,329.411 L 33.496,329.739 L 33.339,329.722 L 33.339,329.793 L 33.722,329.834 L 33.722,329.762 L 33.567,329.746 L 33.567,329.418 L 33.496,329.411 Z M 33.105,329.442 C 33.122,329.443 33.138,329.449 33.153,329.457 C 33.168,329.466 33.181,329.476 33.191,329.489 C 33.202,329.501 33.213,329.517 33.219,329.533 C 33.225,329.547 33.229,329.566 33.229,329.585 C 33.229,329.6 33.225,329.617 33.219,329.631 C 33.213,329.646 33.202,329.659 33.191,329.669 C 33.18,329.681 33.167,329.689 33.153,329.694 C 33.137,329.698 33.122,329.7 33.104,329.698 C 33.087,329.697 33.07,329.692 33.056,329.683 C 33.041,329.677 33.027,329.664 33.016,329.652 C 33.006,329.638 32.997,329.624 32.99,329.607 C 32.985,329.592 32.98,329.575 32.98,329.558 C 32.98,329.54 32.985,329.522 32.99,329.508 C 32.997,329.495 33.006,329.482 33.017,329.471 C 33.028,329.461 33.041,329.453 33.056,329.447 C 33.07,329.442 33.088,329.44 33.105,329.442 Z M 33.841,329.457 C 33.831,329.46 33.819,329.467 33.81,329.476 C 33.8,329.485 33.793,329.496 33.787,329.508 C 33.782,329.521 33.781,329.534 33.781,329.548 L 33.78,329.733 C 33.781,329.747 33.781,329.761 33.787,329.774 C 33.793,329.788 33.8,329.799 33.81,329.812 C 33.819,329.823 33.829,329.831 33.841,329.838 C 33.854,329.844 33.868,329.849 33.882,329.85 L 34.164,329.879 L 34.164,329.81 L 33.882,329.779 C 33.877,329.778 33.87,329.776 33.864,329.772 C 33.86,329.768 33.855,329.763 33.852,329.758 C 33.849,329.752 33.847,329.746 33.847,329.739 L 33.847,329.702 L 34.096,329.728 L 34.096,329.656 L 33.847,329.631 L 33.848,329.556 C 33.848,329.548 33.849,329.543 33.852,329.538 C 33.855,329.533 33.86,329.529 33.864,329.527 C 33.87,329.522 33.878,329.522 33.882,329.522 L 34.164,329.553 L 34.164,329.482 L 33.883,329.453 C 33.868,329.45 33.855,329.453 33.841,329.457 Z M 34.33,329.514 C 34.307,329.521 34.288,329.534 34.27,329.55 C 34.252,329.567 34.238,329.586 34.228,329.609 C 34.219,329.632 34.213,329.657 34.213,329.685 C 34.213,329.713 34.219,329.739 34.228,329.763 C 34.238,329.789 34.252,329.812 34.27,329.832 C 34.288,329.852 34.307,329.868 34.33,329.881 C 34.354,329.895 34.379,329.902 34.406,329.905 L 34.598,329.924 L 34.598,329.853 L 34.406,329.833 C 34.388,329.831 34.373,329.825 34.357,329.818 C 34.343,329.811 34.329,329.799 34.317,329.786 C 34.307,329.773 34.297,329.76 34.291,329.744 C 34.286,329.728 34.282,329.71 34.282,329.694 C 34.282,329.676 34.286,329.657 34.291,329.644 C 34.297,329.629 34.307,329.616 34.318,329.605 C 34.329,329.596 34.343,329.587 34.358,329.583 C 34.373,329.577 34.388,329.575 34.406,329.577 L 34.598,329.598 L 34.598,329.527 L 34.406,329.506 L 34.367,329.506 C 34.355,329.507 34.343,329.509 34.33,329.514 Z M 32.191,329.53 L 32.365,329.547 C 32.367,329.547 32.371,329.548 32.373,329.549 C 32.375,329.55 32.377,329.551 32.38,329.553 C 32.386,329.557 32.391,329.56 32.395,329.568 C 32.399,329.574 32.399,329.581 32.399,329.588 C 32.399,329.594 32.399,329.6 32.397,329.604 C 32.394,329.609 32.392,329.612 32.39,329.613 C 32.387,329.615 32.384,329.618 32.38,329.619 C 32.376,329.621 32.372,329.622 32.365,329.621 L 32.191,329.604 L 32.191,329.53 Z M 34.811,329.547 L 34.811,329.876 L 34.653,329.858 L 34.653,329.931 L 35.038,329.971 L 35.038,329.899 L 34.88,329.881 L 34.88,329.555 L 34.811,329.547 Z M 32.592,329.572 L 32.766,329.589 C 32.767,329.589 32.771,329.59 32.774,329.591 C 32.776,329.591 32.778,329.592 32.781,329.594 C 32.787,329.598 32.792,329.602 32.796,329.609 C 32.799,329.615 32.801,329.622 32.801,329.63 C 32.801,329.636 32.799,329.641 32.798,329.645 C 32.796,329.65 32.793,329.652 32.791,329.654 C 32.789,329.656 32.785,329.657 32.782,329.66 C 32.778,329.662 32.772,329.663 32.766,329.662 L 32.592,329.644 L 32.592,329.572 Z M 35.093,329.577 L 35.092,329.975 L 35.162,329.982 L 35.162,329.586 L 35.093,329.577 Z M 35.392,329.609 L 35.23,329.92 L 35.193,329.986 L 35.271,329.993 L 35.308,329.927 L 35.391,329.765 L 35.475,329.945 L 35.51,330.019 L 35.587,330.028 L 35.552,329.953 L 35.392,329.609 Z M 35.685,329.647 C 35.673,329.652 35.663,329.657 35.653,329.666 C 35.644,329.677 35.636,329.687 35.631,329.698 C 35.625,329.711 35.621,329.724 35.621,329.739 L 35.621,329.923 C 35.621,329.938 35.624,329.952 35.63,329.965 C 35.634,329.979 35.643,329.99 35.653,330.001 C 35.662,330.012 35.673,330.023 35.685,330.029 C 35.697,330.036 35.71,330.039 35.725,330.042 L 36.006,330.07 L 36.006,329.998 L 35.725,329.971 C 35.717,329.97 35.712,329.967 35.707,329.963 C 35.702,329.96 35.698,329.955 35.695,329.948 C 35.691,329.944 35.69,329.937 35.69,329.931 L 35.69,329.892 L 35.939,329.92 L 35.939,329.848 L 35.691,329.823 L 35.691,329.747 C 35.691,329.74 35.692,329.734 35.696,329.729 C 35.698,329.724 35.702,329.72 35.708,329.718 C 35.712,329.715 35.718,329.713 35.726,329.714 L 36.007,329.744 L 36.007,329.671 L 35.726,329.643 C 35.711,329.641 35.697,329.643 35.685,329.647 Z M 36.33,329.705 L 36.328,330.102 L 36.571,330.129 C 36.585,330.13 36.599,330.129 36.612,330.124 C 36.624,330.12 36.636,330.112 36.646,330.104 C 36.655,330.095 36.662,330.083 36.668,330.072 C 36.672,330.059 36.675,330.046 36.675,330.031 C 36.675,330.017 36.672,330.002 36.668,329.989 C 36.663,329.976 36.656,329.964 36.647,329.954 C 36.638,329.945 36.627,329.935 36.614,329.928 C 36.606,329.922 36.595,329.919 36.585,329.916 L 36.641,329.808 L 36.675,329.74 L 36.598,329.733 L 36.564,329.799 L 36.527,329.87 L 36.525,329.873 C 36.519,329.882 36.51,329.89 36.499,329.896 C 36.49,329.901 36.479,329.903 36.467,329.902 L 36.397,329.895 L 36.397,329.711 L 36.33,329.705 Z M 36.795,329.762 C 36.782,329.766 36.771,329.773 36.763,329.781 C 36.753,329.791 36.746,329.801 36.741,329.813 C 36.735,329.825 36.731,329.84 36.731,329.855 L 36.731,330.038 C 36.731,330.053 36.735,330.067 36.74,330.08 C 36.745,330.094 36.752,330.106 36.763,330.118 C 36.771,330.129 36.782,330.137 36.795,330.145 C 36.807,330.15 36.82,330.155 36.834,330.156 L 37.117,330.185 L 37.117,330.115 L 36.834,330.085 C 36.829,330.083 36.822,330.082 36.817,330.078 C 36.814,330.075 36.808,330.07 36.805,330.064 C 36.802,330.057 36.8,330.052 36.8,330.045 L 36.8,330.009 L 37.047,330.034 L 37.047,329.962 L 36.801,329.937 L 36.801,329.863 C 36.801,329.855 36.802,329.85 36.805,329.844 C 36.808,329.839 36.814,329.835 36.817,329.832 C 36.823,329.83 36.829,329.829 36.834,329.829 L 37.118,329.858 L 37.118,329.787 L 36.835,329.758 C 36.821,329.757 36.808,329.759 36.795,329.762 Z M 37.246,329.811 C 37.232,329.815 37.22,329.824 37.208,329.833 C 37.196,329.844 37.189,329.857 37.181,329.87 C 37.175,329.885 37.171,329.902 37.171,329.919 L 37.242,329.925 C 37.242,329.915 37.244,329.906 37.247,329.899 C 37.253,329.89 37.259,329.884 37.266,329.881 C 37.275,329.877 37.282,329.876 37.294,329.876 L 37.415,329.889 C 37.424,329.889 37.434,329.895 37.442,329.899 C 37.448,329.906 37.455,329.912 37.46,329.922 C 37.465,329.93 37.467,329.939 37.467,329.949 C 37.467,329.96 37.465,329.969 37.46,329.975 C 37.455,329.984 37.448,329.988 37.442,329.992 C 37.433,329.997 37.424,329.998 37.415,329.998 L 37.275,329.984 L 37.255,329.984 C 37.247,329.985 37.242,329.986 37.236,329.986 C 37.223,329.991 37.214,329.998 37.203,330.006 C 37.199,330.012 37.194,330.016 37.189,330.023 C 37.184,330.031 37.179,330.039 37.176,330.05 C 37.173,330.059 37.171,330.07 37.171,330.081 L 37.171,330.083 C 37.171,330.097 37.175,330.112 37.179,330.126 C 37.185,330.14 37.192,330.152 37.202,330.162 C 37.213,330.173 37.222,330.182 37.234,330.188 C 37.247,330.196 37.26,330.199 37.275,330.201 L 37.431,330.217 C 37.445,330.219 37.458,330.217 37.471,330.213 C 37.484,330.21 37.495,330.202 37.504,330.194 C 37.514,330.185 37.522,330.174 37.527,330.162 C 37.533,330.15 37.535,330.137 37.535,330.122 L 37.535,330.12 L 37.466,330.11 L 37.466,330.112 C 37.466,330.121 37.465,330.126 37.461,330.132 C 37.458,330.137 37.454,330.141 37.448,330.144 C 37.444,330.146 37.438,330.148 37.431,330.147 L 37.275,330.131 C 37.268,330.13 37.262,330.127 37.257,330.123 C 37.253,330.12 37.247,330.115 37.244,330.108 C 37.242,330.102 37.241,330.096 37.241,330.089 L 37.241,330.087 C 37.241,330.08 37.242,330.076 37.244,330.07 C 37.247,330.064 37.253,330.06 37.257,330.057 C 37.262,330.056 37.268,330.054 37.275,330.055 L 37.415,330.069 L 37.44,330.069 C 37.447,330.068 37.456,330.067 37.463,330.063 C 37.479,330.057 37.492,330.05 37.504,330.038 C 37.504,330.038 37.505,330.038 37.506,330.036 C 37.506,330.036 37.506,330.035 37.508,330.034 C 37.517,330.024 37.524,330.012 37.528,329.998 C 37.534,329.986 37.536,329.971 37.536,329.957 C 37.536,329.939 37.533,329.922 37.526,329.906 C 37.521,329.89 37.512,329.876 37.5,329.864 C 37.488,329.851 37.476,329.84 37.461,329.832 C 37.447,329.825 37.431,329.819 37.415,329.818 L 37.294,329.806 C 37.277,329.804 37.26,329.806 37.246,329.811 Z M 37.592,329.837 L 37.59,330.236 L 37.834,330.26 C 37.848,330.262 37.861,330.26 37.873,330.256 C 37.886,330.252 37.897,330.245 37.908,330.237 L 37.908,330.237 C 37.917,330.227 37.924,330.214 37.93,330.202 C 37.934,330.19 37.937,330.177 37.937,330.162 C 37.937,330.148 37.936,330.135 37.93,330.122 C 37.925,330.106 37.918,330.095 37.91,330.083 C 37.9,330.073 37.891,330.065 37.878,330.058 C 37.869,330.053 37.859,330.049 37.848,330.047 C 37.847,330.047 37.846,330.046 37.845,330.046 L 37.845,330.046 L 37.66,330.026 L 37.66,329.844 L 37.592,329.837 Z M 37.994,329.878 L 37.993,330.277 L 38.06,330.283 L 38.061,329.885 L 37.994,329.878 Z M 38.118,329.889 L 38.117,330.288 L 38.359,330.312 C 38.374,330.315 38.387,330.313 38.401,330.308 C 38.413,330.305 38.422,330.297 38.433,330.29 C 38.442,330.28 38.449,330.27 38.454,330.258 C 38.46,330.245 38.462,330.232 38.463,330.216 C 38.462,330.202 38.46,330.187 38.455,330.175 C 38.45,330.161 38.443,330.149 38.435,330.139 C 38.426,330.129 38.415,330.121 38.403,330.112 C 38.392,330.106 38.382,330.103 38.373,330.101 L 38.428,329.992 L 38.463,329.925 L 38.386,329.918 L 38.35,329.985 L 38.315,330.056 L 38.312,330.058 C 38.306,330.069 38.299,330.076 38.288,330.08 C 38.278,330.086 38.266,330.088 38.254,330.087 L 38.186,330.08 L 38.186,329.896 L 38.118,329.889 Z M 38.497,329.931 L 38.532,330.006 L 38.692,330.348 L 38.855,330.038 L 38.891,329.971 L 38.813,329.962 L 38.778,330.031 L 38.692,330.192 L 38.608,330.013 L 38.574,329.938 L 38.497,329.931 Z M 36.397,329.965 L 36.572,329.984 C 36.575,329.985 36.577,329.985 36.579,329.986 C 36.582,329.986 36.583,329.986 36.585,329.988 C 36.592,329.992 36.597,329.997 36.602,330.004 C 36.605,330.011 36.607,330.017 36.607,330.025 C 36.607,330.031 36.606,330.037 36.603,330.04 C 36.601,330.044 36.598,330.048 36.596,330.049 C 36.593,330.052 36.59,330.053 36.588,330.055 C 36.584,330.056 36.582,330.056 36.58,330.057 L 36.571,330.057 L 36.397,330.038 L 36.397,329.965 Z M 39.081,329.99 L 39.081,330.318 L 38.923,330.302 L 38.922,330.373 L 39.307,330.412 L 39.307,330.343 L 39.149,330.324 L 39.15,329.997 L 39.081,329.99 Z M 39.467,330.046 C 39.443,330.054 39.424,330.067 39.406,330.082 C 39.39,330.099 39.375,330.12 39.364,330.142 C 39.355,330.164 39.349,330.189 39.349,330.217 C 39.349,330.245 39.354,330.271 39.364,330.296 C 39.374,330.321 39.389,330.345 39.406,330.364 C 39.424,330.384 39.443,330.4 39.467,330.413 C 39.491,330.426 39.516,330.434 39.542,330.437 C 39.57,330.438 39.593,330.437 39.617,330.429 C 39.64,330.421 39.661,330.41 39.679,330.392 C 39.696,330.376 39.709,330.358 39.719,330.333 C 39.73,330.31 39.734,330.285 39.735,330.258 C 39.734,330.231 39.73,330.203 39.719,330.178 C 39.709,330.154 39.696,330.131 39.679,330.11 C 39.662,330.091 39.641,330.075 39.617,330.062 C 39.594,330.05 39.57,330.042 39.543,330.038 L 39.505,330.038 C 39.491,330.04 39.48,330.043 39.467,330.046 Z M 39.777,330.062 L 39.776,330.46 L 40.019,330.485 C 40.032,330.486 40.046,330.485 40.059,330.48 C 40.072,330.477 40.083,330.47 40.093,330.462 C 40.102,330.453 40.109,330.441 40.114,330.429 C 40.119,330.418 40.122,330.403 40.122,330.388 C 40.122,330.373 40.119,330.361 40.115,330.348 C 40.11,330.335 40.104,330.321 40.093,330.31 C 40.085,330.3 40.074,330.292 40.063,330.284 C 40.053,330.279 40.042,330.276 40.031,330.273 L 40.088,330.165 L 40.122,330.096 L 40.045,330.089 L 40.011,330.158 L 39.973,330.229 L 39.972,330.232 C 39.966,330.241 39.958,330.249 39.948,330.254 C 39.938,330.258 39.925,330.26 39.913,330.259 L 39.845,330.253 L 39.845,330.069 L 39.777,330.062 Z M 37.66,330.096 L 37.834,330.116 C 37.836,330.116 37.84,330.116 37.843,330.118 C 37.845,330.119 37.847,330.12 37.849,330.121 L 37.849,330.122 C 37.855,330.124 37.86,330.13 37.864,330.136 C 37.868,330.143 37.869,330.148 37.87,330.157 C 37.869,330.162 37.869,330.168 37.867,330.172 C 37.863,330.176 37.861,330.18 37.86,330.181 C 37.857,330.183 37.854,330.185 37.85,330.186 C 37.846,330.188 37.84,330.189 37.834,330.188 L 37.66,330.171 L 37.66,330.096 Z M 39.543,330.109 C 39.56,330.11 39.576,330.116 39.59,330.125 C 39.605,330.134 39.618,330.144 39.63,330.157 C 39.642,330.17 39.65,330.184 39.656,330.199 C 39.664,330.215 39.666,330.234 39.666,330.251 C 39.666,330.269 39.664,330.284 39.656,330.298 C 39.65,330.315 39.641,330.328 39.629,330.338 C 39.618,330.348 39.605,330.357 39.59,330.361 C 39.576,330.366 39.559,330.367 39.542,330.366 C 39.525,330.363 39.509,330.359 39.493,330.351 C 39.48,330.344 39.466,330.331 39.454,330.32 C 39.442,330.305 39.434,330.292 39.428,330.276 C 39.422,330.26 39.419,330.244 39.418,330.226 C 39.419,330.206 39.422,330.19 39.428,330.176 C 39.434,330.161 39.442,330.148 39.454,330.139 C 39.466,330.129 39.48,330.121 39.493,330.116 C 39.509,330.109 39.525,330.107 39.543,330.109 Z M 38.186,330.15 L 38.359,330.17 C 38.362,330.17 38.363,330.17 38.367,330.172 C 38.369,330.172 38.371,330.173 38.374,330.173 C 38.38,330.178 38.385,330.183 38.388,330.188 C 38.392,330.196 38.395,330.202 38.395,330.209 C 38.395,330.215 38.392,330.222 38.391,330.226 C 38.388,330.23 38.386,330.233 38.384,330.236 C 38.382,330.238 38.378,330.238 38.375,330.24 C 38.37,330.242 38.364,330.243 38.359,330.243 L 38.186,330.225 L 38.186,330.15 Z M 39.845,330.322 L 40.019,330.343 C 40.022,330.343 40.024,330.343 40.026,330.344 C 40.029,330.345 40.03,330.345 40.032,330.347 C 40.039,330.349 40.044,330.355 40.049,330.361 C 40.053,330.367 40.055,330.373 40.055,330.381 C 40.054,330.387 40.053,330.393 40.051,330.397 C 40.049,330.401 40.045,330.404 40.042,330.405 C 40.041,330.408 40.037,330.41 40.034,330.412 C 40.03,330.414 40.025,330.414 40.019,330.414 L 39.845,330.397 L 39.845,330.322 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.252,342.6 L 27.079,342.761 L 44.487,343.896 L 44.577,343.858 C 44.606,343.847 44.635,343.82 44.635,343.774 L 44.635,343.731 L 27.252,342.6 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.079,342.761 L 27.078,319.31 L 27.166,319.226 L 27.252,319.238 L 27.252,342.6 L 27.079,342.761 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--MAROON, .KN95_NR_individuals--MAROON {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='300.281 -517.464 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.301' y2='19.846' gradientTransform='translate(312.924 489.994)'%3E%3Cstop offset='0' stop-color='%236d0a0a'/%3E%3Cstop offset='1' stop-color='%23900d0d'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.353' y2='19.919' gradientTransform='translate(309.385 490.61)'%3E%3Cstop offset='0' stop-color='%235a0808'/%3E%3Cstop offset='1' stop-color='%237a0b0b'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(312.918 509.976)'%3E%3Cstop offset='0' stop-color='%236d0a0a'/%3E%3Cstop offset='1' stop-color='%237d0b0b'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.23' gradientTransform='translate(308.243 512.033)'%3E%3Cstop offset='0' stop-color='%23580808'/%3E%3Cstop offset='1' stop-color='%236d0a0a'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.009' y2='-0.164' gradientTransform='translate(321.237 511.848) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23700a0a'/%3E%3Cstop offset='1' stop-color='%23810c0c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(310.092 499.736) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%236b0a0a'/%3E%3Cstop offset='1' stop-color='%237a0b0b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(317.01 500.735) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 310.01,487.579 L 310.01,511.066 L 327.457,512.185 C 327.47,512.171 327.48,512.152 327.48,512.128 L 327.48,489.947 L 310.01,487.579 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 310.01,487.579 L 306.547,490.942 L 306.545,512.963 L 310.01,511.066 L 310.01,487.579 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 310.01,511.066 L 306.545,512.963 L 323.477,513.893 L 327.42,512.212 C 327.434,512.207 327.447,512.197 327.457,512.185 L 310.01,511.066 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 309.923,510.798 L 306.544,512.687 L 306.543,512.963 L 309.923,511.112 L 309.923,510.798 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 317.052,493.181 L 317.052,493.592 L 317.124,493.6 L 317.124,493.189 L 317.052,493.181 Z M 317.181,493.195 L 317.181,493.604 L 317.254,493.555 L 317.515,493.381 L 317.515,493.642 L 317.587,493.65 L 317.587,493.239 L 317.515,493.289 L 317.254,493.463 L 317.254,493.203 L 317.181,493.195 Z M 317.644,493.245 L 317.644,493.656 L 317.846,493.677 C 317.876,493.681 317.902,493.678 317.925,493.669 C 317.949,493.663 317.97,493.65 317.991,493.633 C 318.009,493.616 318.023,493.597 318.033,493.573 C 318.043,493.549 318.049,493.523 318.049,493.496 C 318.049,493.469 318.044,493.445 318.037,493.422 C 318.028,493.399 318.016,493.378 318.001,493.358 C 317.999,493.355 317.997,493.353 317.996,493.351 C 317.994,493.348 317.992,493.346 317.989,493.343 C 317.97,493.322 317.949,493.306 317.925,493.293 C 317.903,493.28 317.877,493.271 317.846,493.268 L 317.644,493.245 Z M 318.107,493.296 L 318.107,493.707 L 318.18,493.714 L 318.18,493.304 L 318.107,493.296 Z M 317.715,493.326 L 317.846,493.34 C 317.864,493.343 317.881,493.348 317.897,493.356 C 317.914,493.366 317.927,493.377 317.938,493.39 C 317.95,493.402 317.959,493.418 317.967,493.433 C 317.973,493.451 317.976,493.468 317.977,493.487 C 317.976,493.505 317.973,493.521 317.967,493.536 C 317.959,493.553 317.95,493.565 317.938,493.575 C 317.927,493.587 317.914,493.595 317.897,493.6 C 317.881,493.605 317.864,493.606 317.846,493.605 L 317.715,493.591 L 317.715,493.326 Z M 318.42,493.33 L 318.251,493.649 L 318.214,493.719 L 318.295,493.726 L 318.331,493.656 L 318.42,493.492 L 318.509,493.677 L 318.546,493.753 L 318.626,493.763 L 318.59,493.685 L 318.42,493.33 Z M 318.664,493.356 L 318.664,493.766 L 318.735,493.774 L 318.735,493.365 L 318.664,493.356 Z M 318.794,493.372 L 318.794,493.78 L 318.995,493.802 C 319.023,493.806 319.049,493.802 319.074,493.795 C 319.099,493.787 319.119,493.775 319.138,493.758 C 319.156,493.742 319.17,493.721 319.18,493.698 C 319.192,493.674 319.198,493.649 319.198,493.619 C 319.198,493.595 319.194,493.57 319.184,493.547 C 319.176,493.523 319.165,493.502 319.148,493.483 C 319.147,493.481 319.145,493.478 319.143,493.476 C 319.142,493.472 319.141,493.47 319.137,493.468 C 319.119,493.448 319.099,493.43 319.074,493.417 C 319.049,493.404 319.023,493.396 318.995,493.392 L 318.794,493.372 Z M 319.38,493.451 C 319.355,493.457 319.333,493.47 319.316,493.488 C 319.296,493.505 319.282,493.524 319.272,493.547 C 319.261,493.572 319.256,493.599 319.256,493.626 L 319.256,493.831 L 319.328,493.839 L 319.328,493.634 C 319.328,493.615 319.331,493.599 319.339,493.583 C 319.344,493.569 319.355,493.555 319.367,493.546 C 319.379,493.534 319.392,493.526 319.407,493.521 C 319.423,493.516 319.44,493.514 319.458,493.516 C 319.476,493.519 319.492,493.523 319.508,493.532 C 319.525,493.54 319.539,493.552 319.551,493.565 C 319.562,493.578 319.571,493.593 319.578,493.611 C 319.584,493.626 319.588,493.644 319.588,493.663 L 319.588,493.867 L 319.662,493.875 L 319.662,493.669 C 319.662,493.642 319.656,493.615 319.645,493.589 C 319.633,493.562 319.619,493.539 319.6,493.519 C 319.582,493.498 319.562,493.482 319.537,493.467 C 319.513,493.455 319.486,493.446 319.458,493.443 C 319.429,493.44 319.404,493.443 319.38,493.451 Z M 318.865,493.451 L 318.995,493.465 C 319.013,493.467 319.029,493.472 319.045,493.482 C 319.061,493.49 319.075,493.501 319.088,493.514 C 319.1,493.528 319.108,493.542 319.116,493.559 C 319.122,493.575 319.125,493.593 319.126,493.612 C 319.125,493.629 319.122,493.647 319.116,493.662 C 319.108,493.677 319.1,493.689 319.088,493.702 C 319.075,493.711 319.061,493.719 319.045,493.724 C 319.029,493.73 319.013,493.731 318.995,493.729 L 318.865,493.715 L 318.865,493.451 Z M 319.696,493.468 L 319.732,493.547 L 319.902,493.901 L 320.072,493.583 L 320.11,493.514 L 320.028,493.505 L 319.992,493.573 L 319.902,493.74 L 319.813,493.554 L 319.777,493.478 L 319.696,493.468 Z M 320.244,493.532 C 320.233,493.533 320.224,493.534 320.216,493.538 C 320.203,493.544 320.192,493.551 320.181,493.56 C 320.171,493.57 320.163,493.579 320.156,493.592 C 320.153,493.601 320.15,493.61 320.147,493.618 C 320.145,493.628 320.144,493.637 320.144,493.649 L 320.144,493.928 L 320.216,493.935 L 320.216,493.649 C 320.217,493.64 320.22,493.632 320.225,493.626 C 320.229,493.619 320.234,493.615 320.243,493.612 C 320.249,493.606 320.258,493.605 320.265,493.605 L 320.478,493.626 L 320.478,493.553 L 320.272,493.531 C 320.262,493.53 320.252,493.531 320.244,493.532 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 314.849,499.91 L 314.846,501.961 L 315.185,501.997 L 315.187,500.948 L 315.467,501.252 L 315.718,501.525 L 316.246,502.104 L 316.748,502.155 L 315.92,501.247 L 316.743,500.103 L 316.326,500.06 L 315.669,500.972 L 315.187,500.453 L 315.187,499.944 L 314.849,499.91 Z M 316.916,500.121 L 317.089,500.505 L 317.883,502.27 L 318.68,500.667 L 318.852,500.318 L 318.475,500.279 L 318.3,500.628 L 317.884,501.466 L 317.469,500.544 L 317.296,500.16 L 316.916,500.121 Z M 319.025,500.335 L 319.027,500.335 L 319.287,500.727 L 319.753,501.431 L 319.968,501.752 L 320.227,502.144 L 319.02,502.02 L 319.02,502.385 L 320.487,502.536 L 320.912,502.578 L 320.65,502.185 L 320.179,501.474 L 319.967,501.152 L 319.71,500.772 L 320.923,500.894 L 320.924,500.526 L 319.455,500.379 L 319.452,500.379 L 319.025,500.335 Z M 321.5,500.629 C 321.44,500.654 321.383,500.687 321.338,500.733 C 321.292,500.779 321.254,500.834 321.229,500.898 C 321.203,500.962 321.19,501.033 321.189,501.109 L 321.188,502.053 C 321.188,502.13 321.2,502.204 321.227,502.272 C 321.253,502.342 321.288,502.403 321.337,502.46 C 321.382,502.514 321.437,502.56 321.498,502.594 C 321.56,502.63 321.627,502.651 321.697,502.659 L 323.083,502.799 L 323.083,502.434 L 321.697,502.292 C 321.665,502.287 321.636,502.277 321.609,502.258 C 321.583,502.238 321.563,502.214 321.548,502.184 C 321.532,502.154 321.524,502.122 321.524,502.087 L 321.524,501.896 L 322.744,502.021 L 322.745,501.655 L 321.524,501.532 L 321.524,501.144 C 321.524,501.108 321.534,501.079 321.549,501.053 C 321.566,501.025 321.585,501.004 321.61,500.99 C 321.638,500.976 321.666,500.97 321.698,500.972 L 323.085,501.114 L 323.086,500.748 L 321.698,500.606 C 321.629,500.601 321.563,500.607 321.5,500.629 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 316.853,498.819 L 316.853,499.257 C 316.853,499.279 316.856,499.3 316.864,499.322 C 316.872,499.342 316.884,499.361 316.899,499.376 C 316.914,499.392 316.93,499.405 316.949,499.416 C 316.968,499.426 316.99,499.433 317.012,499.436 L 317.445,499.481 L 317.445,499.375 L 317.012,499.329 C 317.003,499.327 316.993,499.324 316.985,499.317 C 316.976,499.311 316.97,499.305 316.965,499.297 C 316.96,499.287 316.958,499.279 316.958,499.268 L 316.958,499.213 L 317.34,499.252 L 317.34,499.145 L 316.957,499.105 L 316.958,498.831 L 316.853,498.819 Z M 317.53,498.892 L 317.529,499.329 C 317.529,499.35 317.534,499.372 317.543,499.392 C 317.55,499.413 317.561,499.43 317.576,499.447 C 317.591,499.464 317.608,499.477 317.626,499.488 C 317.645,499.498 317.666,499.505 317.69,499.507 L 318.122,499.552 L 318.122,499.446 L 317.69,499.4 C 317.68,499.398 317.671,499.395 317.663,499.39 C 317.654,499.383 317.647,499.376 317.642,499.368 C 317.638,499.359 317.636,499.35 317.636,499.34 L 317.636,499.284 L 318.017,499.325 L 318.017,499.218 L 317.635,499.176 L 317.636,498.902 L 317.53,498.892 Z M 318.209,498.963 L 318.207,499.563 L 318.581,499.602 C 318.602,499.604 318.623,499.602 318.641,499.595 C 318.661,499.589 318.678,499.58 318.693,499.567 L 318.693,499.565 C 318.708,499.551 318.719,499.536 318.728,499.517 C 318.735,499.498 318.741,499.479 318.741,499.456 C 318.741,499.434 318.735,499.413 318.729,499.393 C 318.72,499.373 318.709,499.355 318.697,499.339 C 318.682,499.324 318.666,499.309 318.648,499.298 C 318.632,499.29 318.618,499.284 318.601,499.281 C 318.6,499.281 318.599,499.281 318.597,499.28 L 318.597,499.279 L 318.314,499.249 L 318.314,498.974 L 318.209,498.963 Z M 318.824,499.026 L 318.824,499.202 C 318.824,499.216 318.825,499.227 318.827,499.239 C 318.83,499.25 318.833,499.262 318.837,499.273 C 318.846,499.295 318.858,499.314 318.875,499.331 C 318.89,499.35 318.907,499.364 318.927,499.376 C 318.946,499.386 318.968,499.393 318.993,499.397 L 319.246,499.424 L 319.249,499.424 C 319.26,499.427 319.271,499.433 319.28,499.44 C 319.29,499.447 319.297,499.456 319.304,499.467 C 319.309,499.477 319.31,499.489 319.31,499.501 C 319.31,499.514 319.308,499.525 319.301,499.536 C 319.295,499.545 319.288,499.552 319.277,499.558 C 319.266,499.564 319.255,499.566 319.242,499.565 L 318.825,499.52 L 318.825,499.627 L 319.241,499.672 C 319.266,499.674 319.29,499.672 319.31,499.665 C 319.331,499.658 319.349,499.647 319.366,499.632 C 319.381,499.618 319.394,499.601 319.403,499.581 C 319.412,499.561 319.417,499.537 319.417,499.512 C 319.417,499.5 319.416,499.488 319.413,499.477 C 319.41,499.465 319.406,499.453 319.401,499.442 C 319.398,499.43 319.393,499.421 319.387,499.412 C 319.381,499.403 319.374,499.393 319.367,499.385 C 319.353,499.367 319.334,499.352 319.314,499.341 C 319.292,499.329 319.272,499.323 319.248,499.317 L 319.245,499.317 C 319.245,499.317 319.243,499.317 319.242,499.317 L 318.993,499.291 C 318.981,499.289 318.97,499.284 318.961,499.276 C 318.951,499.269 318.943,499.26 318.938,499.249 C 318.933,499.239 318.931,499.228 318.931,499.216 L 318.931,499.146 L 319.415,499.195 L 319.415,499.088 L 318.998,499.044 L 318.824,499.026 Z M 319.914,499.143 L 319.914,499.739 L 320.02,499.67 L 320.4,499.412 L 320.4,499.794 L 320.505,499.804 L 320.506,499.205 L 320.4,499.276 L 320.02,499.532 L 320.02,499.154 L 319.914,499.143 Z M 320.591,499.215 L 320.59,499.815 L 320.965,499.853 C 320.986,499.856 321.007,499.854 321.026,499.847 C 321.046,499.84 321.062,499.83 321.078,499.817 C 321.091,499.805 321.103,499.789 321.111,499.77 C 321.119,499.75 321.123,499.73 321.124,499.708 C 321.124,499.686 321.119,499.666 321.111,499.644 C 321.104,499.625 321.093,499.607 321.079,499.591 C 321.065,499.575 321.049,499.562 321.031,499.551 C 321.017,499.543 321.001,499.536 320.985,499.531 L 321.071,499.372 L 321.124,499.271 L 321.006,499.258 L 320.951,499.359 L 320.894,499.466 L 320.892,499.47 C 320.883,499.485 320.871,499.496 320.854,499.503 C 320.839,499.511 320.82,499.513 320.801,499.511 L 320.697,499.5 L 320.697,499.226 L 320.591,499.215 Z M 318.314,499.355 L 318.582,499.383 C 318.585,499.383 318.588,499.384 318.593,499.385 C 318.597,499.388 318.6,499.389 318.603,499.391 L 318.603,499.391 C 318.613,499.396 318.621,499.404 318.626,499.414 C 318.632,499.422 318.634,499.434 318.634,499.444 C 318.634,499.455 318.632,499.462 318.629,499.469 C 318.625,499.475 318.622,499.48 318.619,499.483 C 318.615,499.485 318.61,499.488 318.604,499.491 C 318.599,499.493 318.59,499.494 318.582,499.493 L 318.314,499.466 L 318.314,499.355 Z M 320.697,499.607 L 320.965,499.635 C 320.969,499.636 320.972,499.636 320.976,499.638 C 320.98,499.64 320.983,499.641 320.986,499.642 C 320.996,499.648 321.004,499.658 321.008,499.667 C 321.016,499.676 321.019,499.686 321.019,499.697 C 321.018,499.707 321.017,499.715 321.012,499.721 C 321.008,499.728 321.006,499.731 321.002,499.734 C 320.999,499.737 320.994,499.741 320.988,499.743 C 320.981,499.745 320.974,499.747 320.965,499.745 L 320.696,499.718 L 320.697,499.607 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 314.966,497.623 L 314.965,498.021 L 315.208,498.046 C 315.224,498.047 315.237,498.046 315.25,498.042 C 315.261,498.038 315.273,498.033 315.282,498.022 L 315.282,498.021 C 315.292,498.013 315.299,498.003 315.304,497.99 C 315.309,497.977 315.313,497.964 315.313,497.949 C 315.313,497.935 315.309,497.92 315.305,497.907 C 315.3,497.894 315.293,497.882 315.283,497.871 C 315.275,497.86 315.264,497.852 315.253,497.845 C 315.243,497.839 315.233,497.835 315.224,497.834 C 315.221,497.834 315.219,497.833 315.219,497.833 L 315.219,497.833 L 315.036,497.814 L 315.036,497.631 L 314.966,497.623 Z M 315.367,497.663 L 315.366,498.061 L 315.61,498.087 C 315.625,498.088 315.638,498.087 315.65,498.083 C 315.664,498.078 315.674,498.072 315.683,498.063 C 315.693,498.054 315.7,498.044 315.707,498.033 C 315.711,498.02 315.714,498.006 315.714,497.991 C 315.714,497.976 315.711,497.962 315.708,497.949 C 315.7,497.936 315.694,497.925 315.685,497.914 C 315.676,497.903 315.666,497.894 315.653,497.887 C 315.643,497.88 315.634,497.876 315.624,497.874 L 315.678,497.767 L 315.714,497.7 L 315.637,497.691 L 315.602,497.757 L 315.566,497.83 L 315.564,497.833 C 315.558,497.843 315.548,497.85 315.539,497.854 C 315.527,497.86 315.517,497.861 315.505,497.86 L 315.435,497.853 L 315.435,497.671 L 315.367,497.663 Z M 315.873,497.732 C 315.851,497.74 315.831,497.753 315.814,497.768 C 315.795,497.786 315.781,497.806 315.771,497.827 C 315.761,497.852 315.756,497.876 315.754,497.904 C 315.756,497.932 315.761,497.958 315.771,497.981 C 315.781,498.008 315.795,498.031 315.812,498.051 C 315.83,498.07 315.85,498.087 315.872,498.099 C 315.897,498.113 315.921,498.121 315.948,498.124 C 315.974,498.126 316,498.124 316.024,498.116 C 316.045,498.106 316.067,498.096 316.084,498.078 C 316.102,498.062 316.117,498.044 316.126,498.02 C 316.135,497.996 316.141,497.97 316.141,497.943 C 316.141,497.916 316.136,497.891 316.126,497.864 C 316.117,497.839 316.102,497.819 316.084,497.798 C 316.068,497.778 316.047,497.76 316.024,497.748 C 316,497.736 315.975,497.728 315.949,497.724 L 315.91,497.725 C 315.897,497.727 315.886,497.729 315.873,497.732 Z M 316.341,497.765 L 316.341,498.092 L 316.182,498.076 L 316.182,498.147 L 316.567,498.188 L 316.567,498.117 L 316.411,498.099 L 316.411,497.771 L 316.341,497.765 Z M 315.949,497.796 C 315.966,497.798 315.981,497.803 315.998,497.811 C 316.013,497.82 316.026,497.83 316.036,497.843 C 316.047,497.854 316.056,497.87 316.063,497.887 C 316.069,497.903 316.073,497.919 316.073,497.937 C 316.073,497.954 316.069,497.97 316.063,497.985 C 316.056,498.001 316.047,498.014 316.036,498.024 C 316.025,498.034 316.012,498.042 315.997,498.046 C 315.981,498.052 315.966,498.053 315.948,498.052 C 315.932,498.051 315.915,498.046 315.901,498.037 C 315.886,498.029 315.871,498.019 315.86,498.006 C 315.85,497.992 315.841,497.979 315.834,497.961 C 315.83,497.945 315.825,497.929 315.825,497.912 C 315.825,497.894 315.83,497.876 315.834,497.861 C 315.841,497.847 315.85,497.835 315.861,497.825 C 315.872,497.814 315.887,497.806 315.901,497.801 C 315.915,497.796 315.933,497.795 315.949,497.796 Z M 316.686,497.81 C 316.676,497.814 316.664,497.82 316.653,497.83 C 316.644,497.839 316.637,497.848 316.631,497.861 C 316.627,497.873 316.624,497.888 316.624,497.903 L 316.624,498.086 C 316.624,498.1 316.625,498.116 316.631,498.129 C 316.637,498.142 316.644,498.154 316.653,498.165 C 316.664,498.176 316.674,498.184 316.686,498.191 C 316.699,498.197 316.713,498.202 316.727,498.204 L 317.008,498.234 L 317.008,498.162 L 316.727,498.133 C 316.721,498.131 316.715,498.13 316.709,498.126 C 316.704,498.123 316.7,498.118 316.696,498.112 C 316.694,498.104 316.692,498.099 316.692,498.092 L 316.692,498.056 L 316.94,498.081 L 316.94,498.01 L 316.692,497.984 L 316.693,497.911 C 316.693,497.903 316.694,497.898 316.697,497.892 C 316.7,497.887 316.705,497.882 316.709,497.879 C 316.715,497.876 316.721,497.876 316.727,497.876 L 317.009,497.906 L 317.009,497.835 L 316.728,497.806 C 316.713,497.804 316.7,497.806 316.686,497.81 Z M 317.174,497.867 C 317.152,497.875 317.132,497.888 317.115,497.904 C 317.095,497.92 317.082,497.94 317.072,497.962 C 317.063,497.986 317.057,498.012 317.057,498.039 C 317.057,498.066 317.063,498.092 317.072,498.118 C 317.081,498.143 317.095,498.165 317.115,498.186 C 317.132,498.205 317.152,498.222 317.174,498.235 C 317.198,498.248 317.224,498.255 317.251,498.259 L 317.442,498.278 L 317.442,498.206 L 317.251,498.187 C 317.233,498.185 317.217,498.179 317.201,498.171 C 317.187,498.164 317.173,498.154 317.161,498.14 C 317.152,498.128 317.143,498.115 317.135,498.097 C 317.13,498.081 317.127,498.064 317.127,498.046 C 317.127,498.029 317.13,498.012 317.136,497.996 C 317.143,497.981 317.152,497.969 317.162,497.959 C 317.173,497.949 317.187,497.941 317.202,497.936 C 317.217,497.93 317.233,497.929 317.251,497.93 L 317.443,497.951 L 317.443,497.879 L 317.251,497.859 L 317.212,497.859 C 317.199,497.86 317.187,497.863 317.174,497.867 Z M 315.036,497.884 L 315.209,497.902 C 315.212,497.903 315.215,497.903 315.217,497.904 C 315.219,497.904 315.221,497.905 315.225,497.907 C 315.23,497.911 315.236,497.915 315.24,497.922 C 315.243,497.928 315.244,497.935 315.244,497.942 C 315.244,497.948 315.243,497.954 315.241,497.957 C 315.239,497.962 315.237,497.966 315.235,497.967 C 315.232,497.968 315.229,497.97 315.225,497.972 C 315.219,497.975 315.216,497.975 315.209,497.975 L 315.036,497.957 L 315.036,497.884 Z M 317.656,497.903 L 317.656,498.229 L 317.497,498.212 L 317.497,498.285 L 317.883,498.324 L 317.883,498.253 L 317.724,498.235 L 317.724,497.91 L 317.656,497.903 Z M 315.435,497.925 L 315.61,497.943 C 315.612,497.943 315.615,497.943 315.617,497.944 C 315.62,497.944 315.622,497.946 315.625,497.947 C 315.63,497.951 315.636,497.956 315.64,497.962 C 315.643,497.968 315.645,497.975 315.645,497.982 C 315.645,497.99 315.643,497.994 315.642,498 C 315.64,498.004 315.637,498.007 315.634,498.008 C 315.632,498.01 315.629,498.012 315.626,498.014 C 315.621,498.016 315.616,498.017 315.61,498.016 L 315.435,497.998 L 315.435,497.925 Z M 317.937,497.93 L 317.936,498.329 L 318.006,498.337 L 318.007,497.938 L 317.937,497.93 Z M 318.237,497.962 L 318.074,498.272 L 318.038,498.34 L 318.116,498.348 L 318.152,498.28 L 318.236,498.119 L 318.32,498.298 L 318.355,498.373 L 318.432,498.382 L 318.396,498.305 L 318.237,497.962 Z M 318.529,498.001 C 318.517,498.006 318.507,498.012 318.497,498.021 C 318.488,498.029 318.479,498.04 318.476,498.053 C 318.47,498.064 318.466,498.078 318.466,498.092 L 318.466,498.277 C 318.466,498.291 318.469,498.304 318.475,498.318 C 318.479,498.332 318.487,498.344 318.497,498.356 C 318.506,498.366 318.516,498.376 318.529,498.382 C 318.542,498.389 318.555,498.393 318.57,498.395 L 318.85,498.424 L 318.85,498.353 L 318.57,498.324 C 318.563,498.323 318.556,498.32 318.552,498.317 C 318.547,498.313 318.543,498.309 318.54,498.302 C 318.536,498.297 318.535,498.291 318.535,498.285 L 318.535,498.247 L 318.783,498.272 L 318.783,498.202 L 318.536,498.176 L 318.536,498.1 C 318.536,498.093 318.537,498.088 318.541,498.083 C 318.543,498.078 318.547,498.072 318.553,498.071 C 318.557,498.068 318.563,498.066 318.571,498.067 L 318.851,498.097 L 318.851,498.026 L 318.571,497.996 C 318.556,497.994 318.542,497.996 318.529,498.001 Z M 319.173,498.059 L 319.172,498.456 L 319.416,498.483 C 319.43,498.484 319.444,498.483 319.457,498.478 C 319.47,498.473 319.479,498.467 319.49,498.459 C 319.499,498.449 319.505,498.439 319.512,498.426 C 319.516,498.413 319.518,498.4 319.518,498.385 C 319.518,498.37 319.516,498.356 319.512,498.343 C 319.507,498.33 319.5,498.317 319.491,498.308 C 319.482,498.298 319.472,498.288 319.459,498.282 C 319.451,498.276 319.439,498.272 319.429,498.27 L 319.485,498.162 L 319.519,498.093 L 319.442,498.086 L 319.407,498.154 L 319.372,498.224 L 319.37,498.227 C 319.363,498.237 319.355,498.245 319.344,498.25 C 319.335,498.254 319.323,498.257 319.312,498.256 L 319.241,498.248 L 319.242,498.065 L 319.173,498.059 Z M 319.64,498.117 C 319.627,498.12 319.615,498.128 319.607,498.136 C 319.597,498.144 319.59,498.155 319.584,498.167 C 319.58,498.179 319.576,498.194 319.576,498.208 L 319.576,498.392 C 319.576,498.407 319.579,498.42 319.584,498.433 C 319.589,498.448 319.597,498.46 319.607,498.472 C 319.615,498.483 319.626,498.491 319.64,498.498 C 319.652,498.504 319.665,498.509 319.679,498.51 L 319.961,498.538 L 319.961,498.468 L 319.679,498.44 C 319.674,498.439 319.667,498.435 319.662,498.431 C 319.658,498.428 319.653,498.423 319.65,498.418 C 319.646,498.411 319.645,498.406 319.645,498.398 L 319.645,498.363 L 319.892,498.387 L 319.892,498.316 L 319.645,498.291 L 319.645,498.216 C 319.645,498.208 319.647,498.203 319.65,498.197 C 319.653,498.193 319.658,498.189 319.663,498.186 C 319.667,498.183 319.674,498.182 319.679,498.182 L 319.961,498.212 L 319.961,498.141 L 319.68,498.112 C 319.666,498.111 319.652,498.113 319.64,498.117 Z M 320.091,498.164 C 320.078,498.169 320.064,498.177 320.052,498.187 C 320.04,498.196 320.033,498.21 320.025,498.225 C 320.02,498.239 320.016,498.255 320.016,498.272 L 320.087,498.279 C 320.087,498.269 320.089,498.259 320.092,498.253 C 320.098,498.245 320.104,498.239 320.111,498.235 C 320.119,498.231 320.127,498.23 320.138,498.23 L 320.259,498.243 C 320.268,498.244 320.278,498.248 320.285,498.253 C 320.291,498.259 320.3,498.265 320.304,498.275 C 320.31,498.284 320.312,498.292 320.312,498.303 C 320.312,498.313 320.31,498.322 320.304,498.33 C 320.3,498.338 320.291,498.343 320.285,498.348 C 320.277,498.351 320.268,498.353 320.259,498.352 L 320.119,498.338 L 320.1,498.338 C 320.092,498.338 320.087,498.34 320.08,498.342 C 320.067,498.345 320.058,498.352 320.047,498.36 C 320.044,498.364 320.038,498.369 320.033,498.376 C 320.028,498.384 320.024,498.393 320.021,498.403 C 320.018,498.413 320.016,498.424 320.016,498.434 L 320.016,498.437 C 320.016,498.453 320.02,498.466 320.024,498.479 C 320.029,498.493 320.036,498.505 320.046,498.516 C 320.057,498.527 320.066,498.536 320.08,498.542 C 320.091,498.55 320.105,498.554 320.119,498.555 L 320.276,498.572 C 320.289,498.574 320.304,498.572 320.316,498.568 C 320.329,498.563 320.34,498.557 320.349,498.549 C 320.358,498.538 320.367,498.528 320.371,498.516 C 320.377,498.504 320.379,498.491 320.379,498.475 L 320.379,498.473 L 320.311,498.465 L 320.311,498.467 C 320.311,498.474 320.31,498.479 320.306,498.485 C 320.303,498.491 320.299,498.494 320.292,498.498 C 320.288,498.499 320.282,498.501 320.276,498.5 L 320.119,498.485 C 320.113,498.484 320.106,498.481 320.102,498.477 C 320.098,498.473 320.092,498.468 320.089,498.462 C 320.087,498.457 320.085,498.451 320.085,498.444 L 320.085,498.441 C 320.085,498.433 320.087,498.429 320.089,498.423 C 320.092,498.418 320.098,498.414 320.102,498.411 C 320.106,498.409 320.113,498.407 320.119,498.408 L 320.259,498.422 L 320.284,498.422 C 320.291,498.42 320.301,498.42 320.308,498.417 C 320.324,498.411 320.337,498.403 320.348,498.392 C 320.349,498.392 320.35,498.391 320.351,498.389 C 320.351,498.388 320.351,498.388 320.353,498.387 C 320.361,498.377 320.368,498.366 320.372,498.353 C 320.378,498.34 320.38,498.324 320.38,498.31 C 320.38,498.292 320.377,498.276 320.37,498.259 C 320.365,498.245 320.356,498.23 320.345,498.219 C 320.333,498.205 320.321,498.194 320.305,498.186 C 320.291,498.179 320.276,498.173 320.259,498.171 L 320.138,498.159 C 320.121,498.157 320.105,498.159 320.091,498.164 Z M 320.437,498.191 L 320.435,498.588 L 320.678,498.614 C 320.693,498.615 320.705,498.614 320.717,498.609 C 320.73,498.606 320.742,498.599 320.753,498.589 L 320.753,498.589 C 320.762,498.58 320.769,498.569 320.775,498.557 C 320.779,498.543 320.782,498.53 320.782,498.516 C 320.782,498.501 320.78,498.487 320.775,498.475 C 320.77,498.46 320.763,498.449 320.755,498.439 C 320.744,498.427 320.734,498.419 320.721,498.412 C 320.713,498.407 320.703,498.403 320.692,498.401 C 320.691,498.401 320.69,498.4 320.689,498.4 L 320.689,498.4 L 320.504,498.381 L 320.504,498.197 L 320.437,498.191 Z M 320.838,498.232 L 320.837,498.63 L 320.904,498.636 L 320.905,498.239 L 320.838,498.232 Z M 320.962,498.243 L 320.962,498.641 L 321.204,498.666 C 321.219,498.669 321.232,498.667 321.245,498.663 C 321.256,498.66 321.266,498.651 321.277,498.643 C 321.286,498.633 321.294,498.623 321.299,498.611 C 321.305,498.599 321.307,498.586 321.308,498.57 C 321.307,498.556 321.305,498.542 321.299,498.529 C 321.294,498.516 321.287,498.503 321.278,498.492 C 321.269,498.483 321.259,498.474 321.246,498.466 C 321.237,498.46 321.227,498.458 321.218,498.454 L 321.272,498.348 L 321.308,498.279 L 321.231,498.271 L 321.195,498.34 L 321.158,498.409 L 321.156,498.412 C 321.15,498.421 321.143,498.429 321.132,498.433 C 321.123,498.44 321.111,498.442 321.099,498.441 L 321.03,498.433 L 321.03,498.25 L 320.962,498.243 Z M 321.342,498.285 L 321.376,498.359 L 321.537,498.702 L 321.698,498.392 L 321.736,498.324 L 321.658,498.317 L 321.622,498.384 L 321.537,498.545 L 321.453,498.367 L 321.418,498.291 L 321.342,498.285 Z M 319.241,498.318 L 319.417,498.338 C 319.42,498.338 319.422,498.34 319.424,498.34 C 319.426,498.34 319.428,498.342 319.43,498.343 C 319.437,498.346 319.442,498.351 319.447,498.357 C 319.45,498.364 319.452,498.37 319.452,498.379 C 319.452,498.384 319.451,498.39 319.448,498.394 C 319.446,498.398 319.442,498.401 319.441,498.403 C 319.439,498.406 319.435,498.407 319.433,498.408 C 319.429,498.409 319.426,498.409 319.425,498.41 L 319.416,498.41 L 319.241,498.392 L 319.241,498.318 Z M 321.925,498.344 L 321.925,498.673 L 321.767,498.655 L 321.767,498.726 L 322.151,498.766 L 322.151,498.697 L 321.994,498.679 L 321.994,498.351 L 321.925,498.344 Z M 322.312,498.4 C 322.288,498.407 322.268,498.42 322.25,498.435 C 322.234,498.453 322.219,498.473 322.208,498.496 C 322.2,498.517 322.194,498.543 322.194,498.572 C 322.194,498.599 322.198,498.625 322.208,498.649 C 322.219,498.676 322.233,498.698 322.25,498.717 C 322.267,498.738 322.288,498.754 322.311,498.767 C 322.335,498.78 322.36,498.789 322.385,498.791 C 322.415,498.793 322.438,498.791 322.46,498.783 C 322.484,498.776 322.506,498.763 322.524,498.745 C 322.541,498.73 322.554,498.711 322.563,498.687 C 322.574,498.665 322.578,498.639 322.579,498.611 C 322.578,498.584 322.574,498.557 322.564,498.531 C 322.554,498.507 322.541,498.485 322.524,498.464 C 322.507,498.446 322.485,498.428 322.462,498.416 C 322.439,498.403 322.415,498.395 322.387,498.392 L 322.348,498.392 C 322.336,498.394 322.325,498.396 322.312,498.4 Z M 322.621,498.416 L 322.621,498.813 L 322.864,498.839 C 322.877,498.84 322.891,498.838 322.903,498.834 C 322.916,498.83 322.927,498.824 322.937,498.816 C 322.947,498.807 322.954,498.796 322.958,498.783 C 322.964,498.771 322.967,498.756 322.967,498.742 C 322.967,498.728 322.964,498.715 322.96,498.701 C 322.955,498.687 322.949,498.676 322.937,498.665 C 322.929,498.653 322.918,498.645 322.907,498.638 C 322.896,498.633 322.887,498.629 322.876,498.627 L 322.932,498.518 L 322.967,498.451 L 322.89,498.444 L 322.856,498.511 L 322.817,498.582 L 322.816,498.585 C 322.809,498.595 322.802,498.602 322.792,498.608 C 322.782,498.612 322.77,498.614 322.757,498.612 L 322.689,498.607 L 322.689,498.422 L 322.621,498.416 Z M 320.504,498.451 L 320.679,498.469 C 320.681,498.47 320.684,498.47 320.687,498.472 C 320.689,498.472 320.691,498.473 320.693,498.474 L 320.693,498.475 C 320.698,498.479 320.704,498.484 320.708,498.49 C 320.712,498.496 320.713,498.503 320.714,498.511 C 320.713,498.516 320.713,498.522 320.71,498.525 C 320.707,498.53 320.705,498.533 320.704,498.535 C 320.701,498.536 320.698,498.538 320.694,498.54 C 320.69,498.542 320.685,498.543 320.679,498.542 L 320.504,498.524 L 320.504,498.451 Z M 322.387,498.463 C 322.405,498.465 322.42,498.47 322.434,498.479 C 322.449,498.486 322.463,498.498 322.473,498.511 C 322.485,498.523 322.494,498.538 322.5,498.554 C 322.509,498.569 322.511,498.587 322.511,498.605 C 322.511,498.621 322.508,498.638 322.5,498.652 C 322.494,498.669 322.485,498.682 322.473,498.692 C 322.462,498.702 322.449,498.71 322.434,498.715 C 322.42,498.719 322.404,498.72 322.385,498.719 C 322.369,498.717 322.353,498.711 322.338,498.705 C 322.325,498.698 322.311,498.685 322.299,498.674 C 322.287,498.66 322.278,498.645 322.272,498.629 C 322.266,498.613 322.263,498.597 322.262,498.58 C 322.263,498.561 322.266,498.543 322.272,498.529 C 322.278,498.515 322.287,498.503 322.299,498.492 C 322.311,498.483 322.325,498.474 322.339,498.469 C 322.353,498.463 322.369,498.461 322.387,498.463 Z M 321.03,498.504 L 321.204,498.523 C 321.208,498.523 321.209,498.524 321.211,498.525 C 321.214,498.525 321.216,498.526 321.219,498.527 C 321.226,498.53 321.23,498.536 321.233,498.542 C 321.237,498.55 321.239,498.556 321.239,498.563 C 321.239,498.569 321.237,498.576 321.235,498.58 C 321.233,498.583 321.231,498.586 321.229,498.588 C 321.227,498.591 321.223,498.592 321.219,498.594 C 321.215,498.595 321.209,498.595 321.204,498.595 L 321.03,498.578 L 321.03,498.504 Z M 322.689,498.677 L 322.864,498.697 C 322.867,498.697 322.868,498.697 322.871,498.698 C 322.873,498.698 322.875,498.698 322.877,498.7 C 322.884,498.704 322.889,498.709 322.892,498.715 C 322.896,498.72 322.898,498.727 322.898,498.735 C 322.898,498.741 322.896,498.745 322.894,498.75 C 322.892,498.754 322.89,498.757 322.888,498.759 C 322.886,498.762 322.882,498.763 322.879,498.765 C 322.875,498.768 322.87,498.768 322.864,498.768 L 322.689,498.75 L 322.689,498.677 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 310.097,510.954 L 309.923,511.114 L 327.331,512.25 L 327.42,512.211 C 327.449,512.201 327.48,512.173 327.48,512.128 L 327.48,512.085 L 310.097,510.954 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 309.923,511.114 L 309.922,487.663 L 310.01,487.579 L 310.097,487.592 L 310.097,510.953 L 309.923,511.114 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--LIGHT_BLUSH, .KN95_NR_individuals--LIGHT_BLUSH {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.436 -391.199 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(30.078 363.728)'%3E%3Cstop offset='0' stop-color='%23cbb5b1'/%3E%3Cstop offset='1' stop-color='%23ecdbd8'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.921' gradientTransform='translate(26.539 364.344)'%3E%3Cstop offset='0' stop-color='%23938987'/%3E%3Cstop offset='1' stop-color='%23cabcb9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.101' gradientTransform='translate(30.072 383.712)'%3E%3Cstop offset='0' stop-color='%23b0a4a2'/%3E%3Cstop offset='1' stop-color='%23cdbfbc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.23' gradientTransform='translate(25.399 385.768)'%3E%3Cstop offset='0' stop-color='%238f8583'/%3E%3Cstop offset='1' stop-color='%23b0a4a2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(38.391 385.583) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b9acaa'/%3E%3Cstop offset='1' stop-color='%23d1c3c0'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.246 373.472) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23aea2a0'/%3E%3Cstop offset='1' stop-color='%23cabcb9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.165 374.47) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.165,361.315 L 27.165,384.801 L 44.612,385.92 C 44.624,385.906 44.634,385.886 44.634,385.862 L 44.634,363.681 L 27.165,361.315 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.165,361.315 L 23.701,364.677 L 23.7,386.699 L 27.165,384.801 L 27.165,361.315 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.165,384.801 L 23.7,386.699 L 40.632,387.628 L 44.576,385.948 C 44.589,385.942 44.602,385.933 44.612,385.92 L 27.165,384.801 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.078,384.532 L 23.698,386.422 L 23.697,386.699 L 27.078,384.848 L 27.078,384.532 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.206,366.916 L 34.206,367.327 L 34.278,367.335 L 34.278,366.924 L 34.206,366.916 Z M 34.336,366.93 L 34.336,367.339 L 34.408,367.291 L 34.67,367.116 L 34.67,367.376 L 34.741,367.386 L 34.741,366.975 L 34.67,367.023 L 34.408,367.198 L 34.408,366.939 L 34.336,366.93 Z M 34.799,366.98 L 34.799,367.391 L 35.002,367.413 C 35.03,367.417 35.056,367.414 35.079,367.405 C 35.104,367.399 35.126,367.386 35.145,367.367 C 35.163,367.351 35.177,367.332 35.187,367.309 C 35.198,367.285 35.204,367.258 35.204,367.23 C 35.204,367.205 35.2,367.18 35.191,367.158 C 35.182,367.134 35.17,367.112 35.155,367.094 C 35.154,367.09 35.152,367.088 35.15,367.086 C 35.148,367.084 35.147,367.081 35.143,367.079 C 35.126,367.057 35.104,367.041 35.079,367.028 C 35.057,367.015 35.031,367.006 35.002,367.003 L 34.799,366.98 Z M 35.261,367.03 L 35.261,367.442 L 35.335,367.448 L 35.335,367.039 L 35.261,367.03 Z M 34.871,367.062 L 35.002,367.076 C 35.019,367.078 35.036,367.084 35.051,367.092 C 35.068,367.1 35.081,367.111 35.093,367.125 C 35.104,367.137 35.115,367.152 35.122,367.169 C 35.128,367.187 35.131,367.204 35.132,367.221 C 35.131,367.24 35.128,367.256 35.122,367.272 C 35.115,367.288 35.104,367.301 35.093,367.311 C 35.081,367.322 35.068,367.33 35.051,367.335 C 35.036,367.34 35.019,367.341 35.002,367.34 L 34.871,367.326 L 34.871,367.062 Z M 35.576,367.066 L 35.405,367.385 L 35.368,367.453 L 35.45,367.461 L 35.486,367.392 L 35.576,367.227 L 35.664,367.412 L 35.7,367.489 L 35.781,367.499 L 35.744,367.42 L 35.576,367.066 Z M 35.817,367.092 L 35.817,367.502 L 35.89,367.51 L 35.89,367.099 L 35.817,367.092 Z M 35.948,367.107 L 35.948,367.516 L 36.15,367.538 C 36.178,367.54 36.204,367.538 36.229,367.531 C 36.253,367.523 36.274,367.51 36.292,367.494 C 36.312,367.476 36.325,367.456 36.336,367.433 C 36.347,367.41 36.352,367.385 36.352,367.354 C 36.352,367.33 36.348,367.306 36.34,367.283 C 36.331,367.258 36.32,367.237 36.304,367.218 C 36.302,367.216 36.3,367.213 36.298,367.211 C 36.297,367.208 36.295,367.206 36.291,367.204 C 36.273,367.184 36.253,367.166 36.229,367.152 C 36.204,367.139 36.178,367.131 36.15,367.127 L 35.948,367.107 Z M 36.536,367.186 C 36.51,367.193 36.488,367.206 36.47,367.223 C 36.451,367.24 36.437,367.259 36.426,367.283 C 36.417,367.308 36.411,367.334 36.411,367.361 L 36.411,367.566 L 36.482,367.574 L 36.482,367.368 C 36.482,367.35 36.486,367.334 36.492,367.319 C 36.499,367.304 36.509,367.291 36.522,367.281 C 36.534,367.27 36.547,367.261 36.563,367.256 C 36.578,367.251 36.594,367.249 36.613,367.251 C 36.631,367.253 36.648,367.258 36.663,367.268 C 36.679,367.276 36.693,367.287 36.705,367.301 C 36.716,367.313 36.726,367.328 36.732,367.345 C 36.74,367.361 36.743,367.38 36.743,367.399 L 36.743,367.603 L 36.816,367.611 L 36.816,367.405 C 36.816,367.376 36.81,367.35 36.8,367.324 C 36.788,367.298 36.775,367.275 36.755,367.253 C 36.738,367.233 36.716,367.217 36.691,367.203 C 36.668,367.19 36.641,367.181 36.613,367.178 C 36.584,367.176 36.559,367.178 36.536,367.186 Z M 36.019,367.187 L 36.15,367.201 C 36.167,367.203 36.183,367.208 36.2,367.217 C 36.216,367.225 36.23,367.236 36.242,367.249 C 36.254,367.262 36.263,367.278 36.269,367.295 C 36.276,367.311 36.279,367.328 36.28,367.347 C 36.279,367.364 36.276,367.383 36.269,367.398 C 36.263,367.412 36.254,367.425 36.242,367.436 C 36.23,367.446 36.216,367.454 36.2,367.459 C 36.183,367.465 36.167,367.466 36.15,367.464 L 36.019,367.45 L 36.019,367.187 Z M 36.851,367.204 L 36.887,367.283 L 37.056,367.636 L 37.227,367.319 L 37.263,367.248 L 37.183,367.24 L 37.146,367.309 L 37.056,367.475 L 36.969,367.289 L 36.931,367.213 L 36.851,367.204 Z M 37.398,367.268 C 37.387,367.269 37.379,367.27 37.37,367.274 C 37.357,367.28 37.346,367.287 37.336,367.296 C 37.327,367.305 37.318,367.315 37.312,367.327 C 37.308,367.335 37.305,367.345 37.303,367.353 C 37.3,367.363 37.299,367.372 37.299,367.385 L 37.299,367.662 L 37.37,367.669 L 37.37,367.385 C 37.372,367.376 37.374,367.367 37.379,367.361 C 37.383,367.354 37.388,367.35 37.396,367.346 C 37.404,367.341 37.413,367.34 37.42,367.34 L 37.633,367.361 L 37.633,367.289 L 37.427,367.266 C 37.417,367.265 37.407,367.266 37.398,367.268 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.004,373.645 L 32.002,375.697 L 32.34,375.732 L 32.342,374.684 L 32.621,374.986 L 32.872,375.261 L 33.4,375.839 L 33.903,375.891 L 33.074,374.982 L 33.898,373.838 L 33.48,373.796 L 32.823,374.708 L 32.342,374.188 L 32.342,373.68 L 32.004,373.645 Z M 34.07,373.855 L 34.244,374.24 L 35.037,376.006 L 35.834,374.402 L 36.007,374.053 L 35.629,374.015 L 35.455,374.363 L 35.038,375.201 L 34.623,374.278 L 34.451,373.896 L 34.07,373.855 Z M 36.179,374.07 L 36.181,374.07 L 36.442,374.462 L 36.907,375.166 L 37.123,375.487 L 37.381,375.88 L 36.174,375.755 L 36.174,376.121 L 37.642,376.271 L 38.067,376.314 L 37.804,375.921 L 37.333,375.21 L 37.121,374.888 L 36.865,374.506 L 38.078,374.629 L 38.079,374.262 L 36.61,374.114 L 36.606,374.114 L 36.179,374.07 Z M 38.654,374.366 C 38.594,374.389 38.539,374.422 38.492,374.468 C 38.446,374.513 38.409,374.569 38.383,374.633 C 38.357,374.697 38.344,374.769 38.343,374.844 L 38.342,375.789 C 38.342,375.865 38.354,375.938 38.381,376.007 C 38.408,376.076 38.443,376.139 38.491,376.195 C 38.537,376.25 38.591,376.295 38.653,376.33 C 38.714,376.365 38.781,376.386 38.852,376.394 L 40.237,376.534 L 40.237,376.169 L 38.852,376.027 C 38.819,376.023 38.79,376.013 38.764,375.993 C 38.738,375.973 38.717,375.948 38.702,375.92 C 38.686,375.89 38.679,375.856 38.679,375.822 L 38.679,375.631 L 39.899,375.756 L 39.899,375.39 L 38.679,375.266 L 38.679,374.879 C 38.679,374.843 38.687,374.815 38.704,374.788 C 38.719,374.76 38.74,374.738 38.766,374.725 C 38.792,374.711 38.82,374.706 38.854,374.708 L 40.239,374.849 L 40.24,374.484 L 38.854,374.342 C 38.783,374.336 38.717,374.343 38.654,374.366 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.007,372.554 L 34.007,372.991 C 34.007,373.015 34.012,373.036 34.019,373.056 C 34.027,373.077 34.038,373.096 34.053,373.111 C 34.068,373.128 34.084,373.141 34.104,373.151 C 34.124,373.161 34.144,373.168 34.166,373.17 L 34.599,373.216 L 34.599,373.11 L 34.166,373.064 C 34.157,373.062 34.148,373.059 34.139,373.053 C 34.131,373.047 34.126,373.04 34.12,373.032 C 34.115,373.023 34.113,373.014 34.113,373.004 L 34.113,372.948 L 34.494,372.987 L 34.494,372.88 L 34.113,372.84 L 34.113,372.566 L 34.007,372.554 Z M 34.685,372.626 L 34.685,373.064 C 34.685,373.085 34.689,373.107 34.697,373.128 C 34.704,373.148 34.715,373.166 34.73,373.182 C 34.745,373.199 34.762,373.212 34.781,373.222 C 34.8,373.234 34.82,373.24 34.844,373.242 L 35.276,373.287 L 35.277,373.181 L 34.844,373.136 C 34.834,373.134 34.825,373.131 34.817,373.125 C 34.809,373.119 34.803,373.111 34.798,373.103 C 34.793,373.094 34.791,373.085 34.791,373.074 L 34.791,373.02 L 35.171,373.059 L 35.171,372.953 L 34.79,372.912 L 34.791,372.637 L 34.685,372.626 Z M 35.362,372.698 L 35.361,373.298 L 35.735,373.338 C 35.757,373.339 35.778,373.338 35.796,373.33 C 35.816,373.324 35.832,373.314 35.847,373.302 L 35.848,373.3 C 35.864,373.286 35.874,373.271 35.883,373.253 C 35.89,373.234 35.896,373.213 35.896,373.19 C 35.896,373.169 35.89,373.148 35.884,373.129 C 35.875,373.107 35.865,373.09 35.85,373.073 C 35.837,373.058 35.82,373.045 35.802,373.034 C 35.788,373.025 35.773,373.02 35.756,373.016 C 35.755,373.016 35.753,373.016 35.752,373.016 L 35.752,373.015 L 35.468,372.983 L 35.468,372.71 L 35.362,372.698 Z M 35.979,372.761 L 35.979,372.938 C 35.979,372.95 35.98,372.962 35.982,372.974 C 35.985,372.985 35.989,372.997 35.992,373.009 C 36.001,373.031 36.013,373.049 36.029,373.066 C 36.044,373.085 36.061,373.099 36.082,373.111 C 36.102,373.122 36.123,373.129 36.147,373.132 L 36.4,373.159 L 36.403,373.159 C 36.415,373.163 36.426,373.168 36.436,373.175 C 36.445,373.182 36.452,373.19 36.457,373.202 C 36.463,373.212 36.465,373.224 36.465,373.237 C 36.465,373.249 36.462,373.261 36.456,373.271 C 36.45,373.28 36.443,373.287 36.432,373.293 C 36.421,373.298 36.41,373.301 36.396,373.3 L 35.98,373.256 L 35.98,373.363 L 36.396,373.406 C 36.421,373.408 36.445,373.406 36.465,373.4 C 36.485,373.393 36.503,373.382 36.521,373.368 C 36.537,373.354 36.549,373.337 36.557,373.315 C 36.567,373.296 36.571,373.273 36.571,373.248 C 36.571,373.236 36.57,373.224 36.568,373.212 C 36.565,373.2 36.562,373.188 36.556,373.177 C 36.554,373.166 36.549,373.157 36.542,373.147 C 36.537,373.138 36.53,373.129 36.523,373.121 C 36.507,373.103 36.488,373.087 36.468,373.076 C 36.447,373.064 36.426,373.057 36.402,373.053 L 36.4,373.053 C 36.399,373.053 36.398,373.053 36.396,373.053 L 36.147,373.027 C 36.135,373.024 36.125,373.02 36.116,373.012 C 36.106,373.005 36.098,372.995 36.093,372.983 C 36.088,372.974 36.086,372.963 36.086,372.951 L 36.086,372.88 L 36.569,372.931 L 36.569,372.824 L 36.152,372.779 L 35.979,372.761 Z M 37.069,372.878 L 37.069,373.474 L 37.174,373.404 L 37.555,373.147 L 37.555,373.528 L 37.66,373.538 L 37.661,372.941 L 37.555,373.012 L 37.174,373.268 L 37.174,372.889 L 37.069,372.878 Z M 37.746,372.95 L 37.745,373.55 L 38.119,373.589 C 38.14,373.592 38.161,373.589 38.181,373.583 C 38.201,373.576 38.217,373.566 38.231,373.552 C 38.245,373.539 38.257,373.524 38.265,373.505 C 38.273,373.486 38.278,373.466 38.278,373.443 C 38.278,373.421 38.273,373.401 38.266,373.38 C 38.258,373.361 38.247,373.342 38.233,373.326 C 38.22,373.31 38.203,373.297 38.186,373.285 C 38.17,373.278 38.155,373.271 38.139,373.267 L 38.225,373.106 L 38.278,373.007 L 38.16,372.993 L 38.106,373.094 L 38.049,373.201 L 38.046,373.205 C 38.037,373.22 38.025,373.232 38.008,373.239 C 37.994,373.247 37.976,373.248 37.956,373.247 L 37.852,373.236 L 37.853,372.96 L 37.746,372.95 Z M 35.468,373.09 L 35.736,373.119 C 35.739,373.119 35.742,373.12 35.748,373.121 C 35.751,373.123 35.754,373.125 35.758,373.126 L 35.758,373.126 C 35.768,373.132 35.776,373.139 35.781,373.15 C 35.787,373.158 35.79,373.169 35.79,373.179 C 35.79,373.189 35.788,373.197 35.784,373.203 C 35.781,373.21 35.777,373.214 35.774,373.217 C 35.77,373.22 35.766,373.224 35.759,373.226 C 35.753,373.229 35.744,373.23 35.736,373.229 L 35.468,373.201 L 35.468,373.09 Z M 37.852,373.342 L 38.119,373.37 C 38.123,373.371 38.126,373.372 38.13,373.373 C 38.134,373.376 38.137,373.377 38.14,373.378 C 38.15,373.383 38.158,373.393 38.163,373.402 C 38.169,373.411 38.174,373.421 38.174,373.432 C 38.172,373.441 38.17,373.45 38.166,373.457 C 38.162,373.463 38.16,373.467 38.156,373.47 C 38.153,373.473 38.149,373.476 38.142,373.479 C 38.136,373.481 38.128,373.482 38.119,373.481 L 37.851,373.454 L 37.852,373.342 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.121,371.359 L 32.121,371.756 L 32.363,371.781 C 32.378,371.782 32.391,371.781 32.404,371.777 C 32.415,371.773 32.427,371.767 32.437,371.757 L 32.437,371.756 C 32.447,371.748 32.454,371.737 32.459,371.726 C 32.464,371.713 32.468,371.7 32.468,371.685 C 32.468,371.669 32.465,371.655 32.46,371.642 C 32.455,371.629 32.449,371.618 32.439,371.607 C 32.43,371.595 32.418,371.588 32.407,371.581 C 32.398,371.575 32.388,371.57 32.378,371.568 C 32.376,371.568 32.375,371.568 32.374,371.568 L 32.374,371.568 L 32.19,371.549 L 32.19,371.367 L 32.121,371.359 Z M 32.521,371.399 L 32.521,371.797 L 32.765,371.823 C 32.78,371.824 32.793,371.823 32.805,371.819 C 32.817,371.814 32.828,371.808 32.837,371.799 C 32.847,371.79 32.854,371.779 32.861,371.767 C 32.865,371.755 32.868,371.741 32.869,371.727 C 32.868,371.712 32.865,371.698 32.862,371.685 C 32.854,371.671 32.848,371.659 32.839,371.649 C 32.83,371.638 32.82,371.628 32.808,371.622 C 32.798,371.616 32.789,371.612 32.779,371.61 L 32.833,371.503 L 32.869,371.434 L 32.792,371.426 L 32.756,371.493 L 32.719,371.565 L 32.717,371.568 C 32.712,371.579 32.703,371.586 32.694,371.59 C 32.682,371.595 32.672,371.597 32.66,371.595 L 32.591,371.589 L 32.591,371.406 L 32.521,371.399 Z M 33.028,371.468 C 33.006,371.476 32.985,371.489 32.968,371.504 C 32.949,371.521 32.935,371.541 32.927,371.562 C 32.916,371.588 32.912,371.612 32.91,371.639 C 32.912,371.666 32.916,371.693 32.926,371.717 C 32.935,371.743 32.949,371.766 32.966,371.785 C 32.985,371.806 33.005,371.823 33.028,371.835 C 33.051,371.848 33.075,371.856 33.103,371.859 C 33.129,371.861 33.154,371.859 33.179,371.85 C 33.2,371.842 33.222,371.832 33.239,371.814 C 33.257,371.798 33.271,371.779 33.28,371.755 C 33.29,371.732 33.295,371.706 33.295,371.678 C 33.295,371.651 33.29,371.625 33.28,371.6 C 33.271,371.575 33.257,371.554 33.24,371.533 C 33.223,371.512 33.2,371.496 33.179,371.484 C 33.154,371.471 33.13,371.464 33.104,371.46 L 33.065,371.461 C 33.052,371.462 33.04,371.465 33.028,371.468 Z M 33.495,371.501 L 33.495,371.827 L 33.338,371.812 L 33.338,371.882 L 33.721,371.924 L 33.721,371.852 L 33.566,371.835 L 33.566,371.507 L 33.495,371.501 Z M 33.104,371.531 C 33.121,371.533 33.137,371.538 33.152,371.546 C 33.167,371.555 33.18,371.565 33.19,371.578 C 33.201,371.59 33.212,371.605 33.218,371.622 C 33.224,371.637 33.228,371.654 33.228,371.672 C 33.228,371.691 33.224,371.705 33.218,371.721 C 33.212,371.736 33.201,371.749 33.19,371.758 C 33.179,371.768 33.166,371.777 33.152,371.781 C 33.136,371.786 33.121,371.788 33.103,371.786 C 33.086,371.785 33.069,371.781 33.055,371.771 C 33.04,371.765 33.026,371.754 33.015,371.741 C 33.005,371.728 32.996,371.715 32.989,371.697 C 32.984,371.681 32.979,371.664 32.979,371.647 C 32.979,371.628 32.984,371.612 32.989,371.597 C 32.996,371.583 33.005,371.57 33.016,371.559 C 33.027,371.549 33.04,371.541 33.055,371.536 C 33.069,371.531 33.087,371.53 33.104,371.531 Z M 33.84,371.544 C 33.83,371.549 33.818,371.555 33.809,371.565 C 33.799,371.575 33.792,371.584 33.786,371.597 C 33.781,371.609 33.78,371.623 33.78,371.638 L 33.779,371.822 C 33.78,371.835 33.78,371.85 33.786,371.864 C 33.792,371.877 33.799,371.889 33.809,371.901 C 33.818,371.912 33.828,371.919 33.84,371.927 C 33.853,371.933 33.867,371.938 33.881,371.94 L 34.163,371.968 L 34.163,371.897 L 33.881,371.867 C 33.876,371.866 33.869,371.865 33.863,371.861 C 33.859,371.858 33.854,371.852 33.851,371.847 C 33.848,371.84 33.846,371.834 33.846,371.827 L 33.846,371.791 L 34.095,371.817 L 34.095,371.745 L 33.846,371.719 L 33.847,371.645 C 33.847,371.638 33.848,371.633 33.851,371.627 C 33.854,371.622 33.859,371.618 33.863,371.615 C 33.869,371.612 33.877,371.611 33.881,371.612 L 34.163,371.641 L 34.163,371.57 L 33.882,371.541 C 33.867,371.54 33.854,371.541 33.84,371.544 Z M 34.329,371.602 C 34.306,371.61 34.287,371.623 34.269,371.639 C 34.251,371.655 34.237,371.675 34.227,371.698 C 34.218,371.722 34.212,371.747 34.212,371.774 C 34.212,371.801 34.218,371.828 34.227,371.852 C 34.237,371.878 34.251,371.901 34.269,371.922 C 34.287,371.941 34.306,371.957 34.329,371.97 C 34.353,371.982 34.378,371.99 34.405,371.993 L 34.597,372.014 L 34.597,371.942 L 34.405,371.923 C 34.387,371.92 34.372,371.915 34.356,371.907 C 34.342,371.899 34.328,371.889 34.316,371.875 C 34.306,371.862 34.296,371.849 34.29,371.833 C 34.285,371.816 34.281,371.8 34.281,371.781 C 34.281,371.764 34.285,371.747 34.29,371.732 C 34.296,371.717 34.306,371.704 34.317,371.695 C 34.328,371.685 34.342,371.676 34.357,371.671 C 34.372,371.665 34.387,371.664 34.405,371.665 L 34.597,371.686 L 34.597,371.615 L 34.405,371.595 L 34.366,371.595 C 34.354,371.595 34.342,371.599 34.329,371.602 Z M 32.19,371.62 L 32.364,371.636 C 32.366,371.637 32.37,371.638 32.372,371.638 C 32.374,371.639 32.376,371.64 32.379,371.642 C 32.385,371.646 32.39,371.65 32.394,371.657 C 32.398,371.663 32.398,371.669 32.398,371.677 C 32.398,371.684 32.398,371.69 32.396,371.693 C 32.393,371.698 32.391,371.701 32.389,371.702 C 32.386,371.704 32.383,371.706 32.379,371.708 C 32.375,371.71 32.371,371.711 32.364,371.71 L 32.19,371.692 L 32.19,371.62 Z M 34.81,371.637 L 34.81,371.964 L 34.652,371.948 L 34.652,372.02 L 35.037,372.059 L 35.037,371.988 L 34.879,371.97 L 34.879,371.644 L 34.81,371.637 Z M 32.591,371.659 L 32.765,371.677 C 32.766,371.678 32.77,371.678 32.773,371.68 C 32.775,371.68 32.777,371.682 32.78,371.683 C 32.786,371.687 32.791,371.691 32.795,371.698 C 32.798,371.704 32.8,371.711 32.8,371.718 C 32.8,371.725 32.798,371.73 32.797,371.734 C 32.795,371.739 32.792,371.742 32.79,371.743 C 32.788,371.745 32.784,371.747 32.781,371.749 C 32.777,371.751 32.771,371.752 32.765,371.751 L 32.591,371.733 L 32.591,371.659 Z M 35.092,371.665 L 35.091,372.064 L 35.161,372.072 L 35.161,371.673 L 35.092,371.665 Z M 35.391,371.698 L 35.229,372.007 L 35.192,372.075 L 35.27,372.083 L 35.307,372.016 L 35.39,371.854 L 35.474,372.034 L 35.509,372.107 L 35.586,372.116 L 35.551,372.041 L 35.391,371.698 Z M 35.684,371.736 C 35.672,371.741 35.662,371.747 35.652,371.755 C 35.643,371.765 35.635,371.775 35.63,371.787 C 35.624,371.8 35.62,371.814 35.62,371.828 L 35.62,372.013 C 35.62,372.027 35.623,372.04 35.629,372.053 C 35.633,372.067 35.642,372.079 35.652,372.091 C 35.661,372.101 35.672,372.111 35.684,372.117 C 35.696,372.125 35.709,372.129 35.724,372.13 L 36.005,372.159 L 36.005,372.088 L 35.724,372.059 C 35.716,372.059 35.711,372.056 35.706,372.053 C 35.701,372.049 35.697,372.044 35.694,372.038 C 35.69,372.033 35.689,372.027 35.689,372.02 L 35.689,371.981 L 35.938,372.007 L 35.938,371.938 L 35.69,371.912 L 35.69,371.835 C 35.69,371.828 35.691,371.824 35.695,371.819 C 35.697,371.814 35.701,371.808 35.707,371.807 C 35.711,371.803 35.717,371.802 35.725,371.803 L 36.006,371.833 L 36.006,371.76 L 35.725,371.732 C 35.71,371.73 35.696,371.732 35.684,371.736 Z M 36.329,371.794 L 36.327,372.191 L 36.57,372.217 C 36.584,372.218 36.598,372.217 36.611,372.213 C 36.623,372.208 36.635,372.201 36.645,372.193 C 36.654,372.184 36.661,372.173 36.667,372.161 C 36.671,372.149 36.674,372.136 36.674,372.121 C 36.674,372.105 36.671,372.091 36.667,372.078 C 36.662,372.065 36.655,372.053 36.646,372.043 C 36.637,372.034 36.626,372.024 36.613,372.018 C 36.605,372.012 36.594,372.007 36.584,372.005 L 36.64,371.896 L 36.674,371.828 L 36.597,371.822 L 36.563,371.889 L 36.526,371.959 L 36.524,371.962 C 36.518,371.972 36.509,371.98 36.498,371.984 C 36.489,371.989 36.478,371.991 36.466,371.991 L 36.396,371.983 L 36.396,371.801 L 36.329,371.794 Z M 36.794,371.852 C 36.781,371.855 36.77,371.862 36.762,371.871 C 36.752,371.879 36.745,371.89 36.74,371.903 C 36.734,371.915 36.73,371.929 36.73,371.943 L 36.73,372.128 C 36.73,372.142 36.734,372.156 36.739,372.169 C 36.744,372.182 36.751,372.195 36.762,372.207 C 36.77,372.217 36.781,372.225 36.794,372.234 C 36.806,372.24 36.819,372.245 36.833,372.246 L 37.116,372.274 L 37.116,372.203 L 36.833,372.174 C 36.828,372.173 36.821,372.171 36.816,372.167 C 36.813,372.164 36.807,372.158 36.804,372.153 C 36.801,372.147 36.799,372.141 36.799,372.134 L 36.799,372.097 L 37.046,372.123 L 37.046,372.051 L 36.8,372.027 L 36.8,371.951 C 36.8,371.944 36.801,371.939 36.804,371.933 C 36.807,371.928 36.813,371.925 36.816,371.922 C 36.822,371.918 36.828,371.918 36.833,371.918 L 37.117,371.948 L 37.117,371.876 L 36.834,371.847 C 36.82,371.846 36.807,371.848 36.794,371.852 Z M 37.245,371.899 C 37.231,371.904 37.219,371.913 37.207,371.923 C 37.195,371.932 37.188,371.946 37.18,371.959 C 37.174,371.974 37.17,371.99 37.17,372.007 L 37.241,372.015 C 37.241,372.004 37.243,371.994 37.246,371.988 C 37.252,371.98 37.258,371.974 37.265,371.97 C 37.274,371.966 37.281,371.965 37.293,371.965 L 37.414,371.978 C 37.423,371.979 37.433,371.982 37.441,371.988 C 37.447,371.994 37.454,372 37.459,372.009 C 37.464,372.02 37.466,372.027 37.466,372.039 C 37.466,372.049 37.464,372.058 37.459,372.065 C 37.454,372.073 37.447,372.078 37.441,372.082 C 37.432,372.086 37.423,372.088 37.414,372.086 L 37.274,372.073 L 37.254,372.073 C 37.246,372.073 37.241,372.075 37.235,372.076 C 37.222,372.08 37.213,372.086 37.202,372.094 C 37.198,372.099 37.193,372.104 37.188,372.111 C 37.183,372.118 37.178,372.129 37.175,372.139 C 37.172,372.149 37.17,372.159 37.17,372.17 L 37.17,372.173 C 37.17,372.187 37.174,372.201 37.178,372.214 C 37.184,372.228 37.191,372.24 37.201,372.252 C 37.212,372.263 37.221,372.272 37.233,372.278 C 37.246,372.285 37.259,372.289 37.274,372.29 L 37.43,372.306 C 37.444,372.308 37.457,372.306 37.47,372.303 C 37.483,372.298 37.494,372.291 37.503,372.284 C 37.513,372.274 37.521,372.264 37.526,372.252 C 37.532,372.24 37.534,372.225 37.534,372.21 L 37.534,372.208 L 37.465,372.2 L 37.465,372.201 C 37.465,372.208 37.464,372.214 37.46,372.22 C 37.457,372.225 37.453,372.229 37.447,372.234 C 37.443,372.235 37.437,372.237 37.43,372.235 L 37.274,372.219 C 37.267,372.218 37.261,372.215 37.256,372.212 C 37.252,372.208 37.246,372.203 37.243,372.197 C 37.241,372.192 37.24,372.185 37.24,372.179 L 37.24,372.176 C 37.24,372.169 37.241,372.165 37.243,372.158 C 37.246,372.153 37.252,372.15 37.256,372.147 C 37.261,372.144 37.267,372.143 37.274,372.143 L 37.414,372.158 L 37.439,372.158 C 37.446,372.156 37.455,372.156 37.462,372.153 C 37.478,372.147 37.491,372.139 37.503,372.128 C 37.503,372.127 37.504,372.126 37.505,372.125 C 37.505,372.124 37.505,372.124 37.507,372.123 C 37.516,372.112 37.523,372.101 37.527,372.088 C 37.533,372.075 37.535,372.06 37.535,372.046 C 37.535,372.027 37.532,372.012 37.525,371.994 C 37.52,371.98 37.511,371.965 37.499,371.953 C 37.487,371.941 37.475,371.93 37.46,371.922 C 37.446,371.915 37.43,371.909 37.414,371.907 L 37.293,371.893 C 37.276,371.891 37.259,371.893 37.245,371.899 Z M 37.591,371.926 L 37.589,372.323 L 37.833,372.35 C 37.847,372.351 37.86,372.35 37.872,372.344 C 37.885,372.34 37.896,372.334 37.907,372.324 L 37.907,372.324 C 37.916,372.315 37.923,372.304 37.929,372.291 C 37.933,372.279 37.936,372.266 37.936,372.252 C 37.936,372.237 37.935,372.222 37.929,372.209 C 37.924,372.195 37.917,372.184 37.909,372.173 C 37.899,372.163 37.89,372.154 37.877,372.148 C 37.868,372.142 37.858,372.139 37.847,372.137 C 37.846,372.137 37.845,372.136 37.844,372.136 L 37.844,372.135 L 37.659,372.115 L 37.659,371.933 L 37.591,371.926 Z M 37.993,371.967 L 37.992,372.365 L 38.059,372.372 L 38.06,371.974 L 37.993,371.967 Z M 38.117,371.978 L 38.116,372.377 L 38.358,372.401 C 38.373,372.404 38.386,372.401 38.4,372.398 C 38.412,372.395 38.421,372.387 38.432,372.379 C 38.441,372.369 38.448,372.359 38.453,372.347 C 38.459,372.334 38.461,372.32 38.462,372.305 C 38.461,372.291 38.459,372.277 38.454,372.265 C 38.449,372.251 38.442,372.239 38.434,372.227 C 38.425,372.218 38.414,372.208 38.402,372.201 C 38.391,372.195 38.381,372.192 38.372,372.189 L 38.427,372.082 L 38.462,372.015 L 38.385,372.006 L 38.349,372.074 L 38.314,372.144 L 38.311,372.148 C 38.305,372.157 38.298,372.165 38.287,372.169 C 38.277,372.175 38.265,372.177 38.253,372.176 L 38.185,372.169 L 38.185,371.985 L 38.117,371.978 Z M 38.496,372.02 L 38.531,372.093 L 38.691,372.437 L 38.854,372.128 L 38.89,372.06 L 38.812,372.052 L 38.777,372.118 L 38.691,372.281 L 38.607,372.101 L 38.573,372.027 L 38.496,372.02 Z M 36.396,372.053 L 36.571,372.073 C 36.574,372.073 36.576,372.074 36.578,372.075 C 36.581,372.075 36.582,372.076 36.584,372.077 C 36.591,372.081 36.596,372.086 36.601,372.092 C 36.604,372.099 36.606,372.105 36.606,372.114 C 36.606,372.118 36.605,372.126 36.602,372.129 C 36.6,372.134 36.597,372.137 36.595,372.139 C 36.592,372.141 36.589,372.142 36.587,372.143 C 36.583,372.144 36.581,372.145 36.579,372.146 L 36.57,372.146 L 36.396,372.128 L 36.396,372.053 Z M 39.08,372.079 L 39.08,372.408 L 38.922,372.391 L 38.921,372.462 L 39.306,372.502 L 39.306,372.431 L 39.148,372.414 L 39.149,372.086 L 39.08,372.079 Z M 39.466,372.136 C 39.442,372.143 39.423,372.156 39.405,372.171 C 39.389,372.188 39.374,372.207 39.363,372.232 C 39.354,372.253 39.348,372.279 39.348,372.306 C 39.348,372.334 39.353,372.361 39.363,372.385 C 39.373,372.41 39.388,372.433 39.405,372.453 C 39.423,372.473 39.442,372.49 39.466,372.503 C 39.49,372.515 39.515,372.524 39.541,372.525 C 39.569,372.528 39.592,372.525 39.616,372.518 C 39.639,372.511 39.66,372.498 39.678,372.481 C 39.695,372.466 39.708,372.446 39.718,372.422 C 39.729,372.399 39.733,372.374 39.734,372.347 C 39.733,372.318 39.729,372.291 39.718,372.267 C 39.708,372.242 39.695,372.22 39.678,372.199 C 39.661,372.181 39.64,372.164 39.616,372.151 C 39.593,372.139 39.569,372.13 39.542,372.128 L 39.504,372.128 C 39.49,372.129 39.479,372.132 39.466,372.136 Z M 39.776,372.151 L 39.775,372.548 L 40.018,372.575 C 40.031,372.575 40.045,372.574 40.058,372.569 C 40.071,372.566 40.082,372.558 40.092,372.551 C 40.101,372.541 40.108,372.53 40.113,372.518 C 40.118,372.506 40.121,372.492 40.121,372.478 C 40.121,372.464 40.118,372.449 40.114,372.436 C 40.109,372.422 40.103,372.411 40.092,372.4 C 40.084,372.389 40.073,372.381 40.062,372.374 C 40.052,372.368 40.041,372.364 40.03,372.363 L 40.087,372.253 L 40.121,372.186 L 40.044,372.179 L 40.01,372.247 L 39.972,372.317 L 39.971,372.319 C 39.965,372.33 39.957,372.337 39.947,372.343 C 39.937,372.348 39.924,372.35 39.912,372.348 L 39.844,372.342 L 39.844,372.158 L 39.776,372.151 Z M 37.659,372.186 L 37.833,372.204 C 37.835,372.205 37.839,372.205 37.842,372.207 C 37.844,372.207 37.846,372.207 37.848,372.208 L 37.848,372.209 C 37.854,372.214 37.859,372.218 37.863,372.225 C 37.867,372.232 37.868,372.239 37.869,372.247 C 37.868,372.252 37.868,372.258 37.866,372.261 C 37.862,372.266 37.86,372.268 37.859,372.271 C 37.856,372.272 37.853,372.274 37.849,372.276 C 37.845,372.278 37.839,372.278 37.833,372.278 L 37.659,372.26 L 37.659,372.186 Z M 39.542,372.198 C 39.559,372.2 39.575,372.205 39.589,372.214 C 39.604,372.221 39.617,372.234 39.629,372.247 C 39.641,372.259 39.649,372.273 39.655,372.289 C 39.663,372.304 39.665,372.322 39.665,372.339 C 39.665,372.357 39.663,372.374 39.655,372.388 C 39.649,372.404 39.64,372.416 39.628,372.427 C 39.617,372.437 39.604,372.445 39.589,372.449 C 39.575,372.455 39.558,372.456 39.541,372.455 C 39.524,372.453 39.508,372.446 39.492,372.439 C 39.479,372.432 39.465,372.42 39.453,372.408 C 39.441,372.395 39.433,372.381 39.427,372.365 C 39.421,372.349 39.418,372.331 39.417,372.315 C 39.418,372.296 39.421,372.279 39.427,372.265 C 39.433,372.25 39.441,372.239 39.453,372.227 C 39.465,372.217 39.479,372.208 39.492,372.204 C 39.508,372.198 39.524,372.196 39.542,372.198 Z M 38.185,372.24 L 38.358,372.259 C 38.361,372.259 38.362,372.259 38.366,372.261 C 38.368,372.261 38.37,372.262 38.373,372.263 C 38.379,372.266 38.384,372.272 38.387,372.278 C 38.391,372.285 38.394,372.291 38.394,372.298 C 38.394,372.304 38.391,372.311 38.39,372.315 C 38.387,372.317 38.385,372.321 38.383,372.323 C 38.381,372.326 38.377,372.327 38.374,372.329 C 38.369,372.33 38.363,372.33 38.358,372.33 L 38.185,372.313 L 38.185,372.24 Z M 39.844,372.411 L 40.018,372.431 C 40.021,372.431 40.023,372.432 40.025,372.432 C 40.028,372.433 40.029,372.433 40.031,372.434 C 40.038,372.439 40.043,372.443 40.048,372.449 C 40.052,372.456 40.054,372.463 40.054,372.471 C 40.053,372.477 40.052,372.481 40.05,372.486 C 40.048,372.49 40.044,372.492 40.041,372.495 C 40.04,372.498 40.036,372.499 40.033,372.501 C 40.029,372.504 40.024,372.504 40.018,372.504 L 39.844,372.486 L 39.844,372.411 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.251,384.688 L 27.078,384.85 L 44.486,385.984 L 44.576,385.947 C 44.605,385.936 44.634,385.909 44.634,385.862 L 44.634,385.82 L 27.251,384.688 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.078,384.85 L 27.077,361.398 L 27.165,361.315 L 27.251,361.327 L 27.251,384.688 L 27.078,384.85 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--FUCHSIA, .KN95_NR_individuals--FUCHSIA {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='206.001 -475.375 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(218.643 447.904)'%3E%3Cstop offset='0' stop-color='%23c21060'/%3E%3Cstop offset='1' stop-color='%23ff1581'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.92' gradientTransform='translate(215.104 448.519)'%3E%3Cstop offset='0' stop-color='%239f0d4f'/%3E%3Cstop offset='1' stop-color='%23d8126b'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.1' gradientTransform='translate(218.637 467.888)'%3E%3Cstop offset='0' stop-color='%23c0105f'/%3E%3Cstop offset='1' stop-color='%23de126e'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.229' gradientTransform='translate(213.963 469.943)'%3E%3Cstop offset='0' stop-color='%239c0d4d'/%3E%3Cstop offset='1' stop-color='%23c0105f'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.01' y2='-0.163' gradientTransform='translate(226.957 469.758) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c61062'/%3E%3Cstop offset='1' stop-color='%23e41371'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(215.811 457.647) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bd105e'/%3E%3Cstop offset='1' stop-color='%23d8126b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(222.73 458.646) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 215.73,445.49 L 215.73,468.976 L 233.178,470.097 C 233.19,470.082 233.198,470.063 233.198,470.039 L 233.198,447.858 L 215.73,445.49 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 215.73,445.49 L 212.266,448.853 L 212.264,470.875 L 215.73,468.976 L 215.73,445.49 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 215.73,468.976 L 212.264,470.875 L 229.196,471.803 L 233.14,470.123 C 233.154,470.117 233.167,470.109 233.178,470.097 L 215.73,468.976 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 215.643,468.709 L 212.263,470.598 L 212.263,470.875 L 215.643,469.024 L 215.643,468.709 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 222.772,451.092 L 222.772,451.502 L 222.843,451.51 L 222.843,451.099 L 222.772,451.092 Z M 222.902,451.106 L 222.902,451.513 L 222.973,451.467 L 223.235,451.291 L 223.235,451.551 L 223.307,451.561 L 223.307,451.151 L 223.235,451.198 L 222.973,451.374 L 222.973,451.113 L 222.902,451.106 Z M 223.364,451.156 L 223.364,451.567 L 223.566,451.589 C 223.594,451.591 223.621,451.589 223.644,451.581 C 223.67,451.573 223.69,451.561 223.709,451.543 C 223.728,451.526 223.742,451.507 223.752,451.484 C 223.763,451.461 223.769,451.433 223.769,451.405 C 223.769,451.38 223.764,451.356 223.756,451.332 C 223.747,451.309 223.735,451.287 223.72,451.269 C 223.718,451.266 223.716,451.263 223.715,451.261 C 223.714,451.259 223.711,451.256 223.708,451.255 C 223.69,451.233 223.67,451.216 223.644,451.203 C 223.621,451.19 223.595,451.181 223.566,451.178 L 223.364,451.156 Z M 223.827,451.206 L 223.827,451.617 L 223.9,451.623 L 223.9,451.215 L 223.827,451.206 Z M 223.437,451.236 L 223.566,451.251 C 223.584,451.254 223.6,451.259 223.617,451.268 C 223.632,451.275 223.646,451.287 223.657,451.3 C 223.67,451.313 223.679,451.327 223.686,451.345 C 223.693,451.362 223.696,451.379 223.696,451.397 C 223.696,451.416 223.693,451.431 223.686,451.446 C 223.679,451.463 223.67,451.476 223.657,451.486 C 223.646,451.497 223.632,451.505 223.617,451.51 C 223.6,451.515 223.584,451.517 223.566,451.514 L 223.437,451.5 L 223.437,451.236 Z M 224.141,451.242 L 223.97,451.559 L 223.933,451.629 L 224.015,451.636 L 224.051,451.568 L 224.141,451.403 L 224.229,451.588 L 224.265,451.664 L 224.347,451.674 L 224.31,451.596 L 224.141,451.242 Z M 224.382,451.268 L 224.382,451.677 L 224.455,451.685 L 224.455,451.275 L 224.382,451.268 Z M 224.513,451.281 L 224.513,451.691 L 224.715,451.713 C 224.742,451.715 224.769,451.713 224.794,451.706 C 224.818,451.699 224.838,451.686 224.857,451.668 C 224.877,451.652 224.891,451.631 224.901,451.609 C 224.912,451.585 224.916,451.558 224.916,451.53 C 224.916,451.505 224.913,451.481 224.904,451.458 C 224.896,451.433 224.884,451.412 224.869,451.393 C 224.867,451.39 224.865,451.388 224.864,451.386 C 224.862,451.384 224.859,451.381 224.857,451.379 C 224.838,451.358 224.818,451.341 224.794,451.327 C 224.769,451.314 224.742,451.306 224.715,451.303 L 224.513,451.281 Z M 225.1,451.362 C 225.075,451.369 225.052,451.381 225.034,451.397 C 225.017,451.415 225.002,451.435 224.993,451.459 C 224.981,451.482 224.975,451.509 224.975,451.536 L 224.975,451.741 L 225.047,451.749 L 225.047,451.544 C 225.047,451.525 225.051,451.51 225.058,451.494 C 225.063,451.48 225.074,451.467 225.087,451.456 C 225.098,451.444 225.112,451.436 225.128,451.431 C 225.142,451.427 225.16,451.423 225.178,451.427 C 225.196,451.429 225.213,451.433 225.228,451.442 C 225.245,451.451 225.257,451.462 225.27,451.476 C 225.282,451.488 225.29,451.504 225.297,451.52 C 225.304,451.537 225.309,451.554 225.309,451.573 L 225.309,451.777 L 225.38,451.786 L 225.38,451.581 C 225.38,451.551 225.375,451.525 225.364,451.5 C 225.354,451.473 225.34,451.449 225.321,451.429 C 225.303,451.409 225.281,451.391 225.256,451.378 C 225.232,451.365 225.206,451.357 225.178,451.353 C 225.149,451.351 225.124,451.353 225.1,451.362 Z M 224.584,451.362 L 224.715,451.377 C 224.732,451.378 224.748,451.384 224.766,451.391 C 224.781,451.4 224.795,451.41 224.806,451.423 C 224.819,451.437 224.827,451.454 224.835,451.47 C 224.84,451.486 224.844,451.504 224.844,451.521 C 224.844,451.539 224.84,451.557 224.835,451.572 C 224.827,451.588 224.819,451.601 224.806,451.611 C 224.795,451.622 224.781,451.629 224.766,451.635 C 224.748,451.641 224.732,451.642 224.715,451.639 L 224.584,451.625 L 224.584,451.362 Z M 225.416,451.379 L 225.452,451.457 L 225.621,451.811 L 225.793,451.494 L 225.828,451.423 L 225.748,451.416 L 225.711,451.485 L 225.621,451.65 L 225.534,451.465 L 225.496,451.388 L 225.416,451.379 Z M 225.963,451.442 C 225.952,451.443 225.943,451.445 225.935,451.448 C 225.923,451.455 225.911,451.462 225.901,451.472 C 225.891,451.481 225.884,451.49 225.877,451.502 C 225.872,451.511 225.871,451.52 225.867,451.528 C 225.865,451.538 225.865,451.547 225.865,451.558 L 225.865,451.837 L 225.935,451.845 L 225.935,451.559 C 225.936,451.551 225.94,451.543 225.944,451.537 C 225.948,451.53 225.954,451.525 225.961,451.521 C 225.969,451.517 225.978,451.515 225.986,451.514 L 226.198,451.537 L 226.198,451.465 L 225.993,451.442 C 225.981,451.441 225.972,451.442 225.963,451.442 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 220.569,457.82 L 220.566,459.873 L 220.906,459.907 L 220.907,458.859 L 221.186,459.162 L 221.437,459.437 L 221.965,460.014 L 222.469,460.066 L 221.639,459.157 L 222.463,458.013 L 222.045,457.972 L 221.388,458.884 L 220.907,458.362 L 220.907,457.855 L 220.569,457.82 Z M 222.636,458.031 L 222.81,458.415 L 223.602,460.182 L 224.399,458.578 L 224.573,458.228 L 224.194,458.19 L 224.019,458.538 L 223.604,459.375 L 223.188,458.453 L 223.016,458.072 L 222.636,458.031 Z M 224.744,458.246 L 224.747,458.246 L 225.007,458.638 L 225.472,459.342 L 225.687,459.663 L 225.946,460.055 L 224.739,459.93 L 224.739,460.297 L 226.207,460.447 L 226.633,460.489 L 226.37,460.097 L 225.899,459.384 L 225.685,459.063 L 225.43,458.682 L 226.643,458.805 L 226.644,458.438 L 225.174,458.29 L 225.172,458.29 L 224.744,458.246 Z M 227.22,458.541 C 227.158,458.564 227.104,458.598 227.058,458.644 C 227.01,458.689 226.975,458.744 226.948,458.808 C 226.922,458.872 226.909,458.943 226.909,459.02 L 226.907,459.964 C 226.907,460.04 226.92,460.113 226.946,460.183 C 226.973,460.252 227.008,460.314 227.056,460.37 C 227.102,460.425 227.156,460.471 227.218,460.505 C 227.279,460.54 227.346,460.562 227.417,460.569 L 228.802,460.709 L 228.802,460.344 L 227.417,460.203 C 227.383,460.199 227.355,460.189 227.33,460.169 C 227.303,460.149 227.283,460.124 227.267,460.096 C 227.252,460.065 227.245,460.032 227.245,459.998 L 227.245,459.807 L 228.464,459.931 L 228.465,459.565 L 227.245,459.441 L 227.245,459.053 C 227.245,459.019 227.253,458.989 227.268,458.963 C 227.285,458.936 227.305,458.914 227.33,458.901 C 227.357,458.886 227.385,458.882 227.419,458.884 L 228.804,459.025 L 228.805,458.659 L 227.419,458.517 C 227.349,458.511 227.282,458.518 227.22,458.541 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 222.572,456.729 L 222.572,457.167 C 222.572,457.19 222.576,457.211 222.584,457.232 C 222.592,457.252 222.604,457.271 222.618,457.287 C 222.632,457.304 222.649,457.316 222.669,457.327 C 222.688,457.336 222.709,457.343 222.732,457.346 L 223.165,457.392 L 223.165,457.285 L 222.732,457.239 C 222.721,457.238 222.713,457.234 222.704,457.229 C 222.696,457.223 222.69,457.216 222.685,457.207 C 222.68,457.198 222.678,457.189 222.678,457.179 L 222.678,457.123 L 223.058,457.162 L 223.058,457.056 L 222.677,457.015 L 222.678,456.741 L 222.572,456.729 Z M 223.25,456.801 L 223.25,457.239 C 223.25,457.261 223.254,457.283 223.262,457.304 C 223.269,457.323 223.281,457.342 223.295,457.358 C 223.309,457.374 223.328,457.387 223.347,457.398 C 223.366,457.409 223.385,457.415 223.409,457.418 L 223.841,457.463 L 223.842,457.356 L 223.409,457.311 C 223.399,457.31 223.39,457.306 223.382,457.301 C 223.373,457.294 223.367,457.287 223.362,457.278 C 223.357,457.27 223.356,457.26 223.356,457.25 L 223.356,457.195 L 223.736,457.234 L 223.736,457.129 L 223.355,457.088 L 223.356,456.813 L 223.25,456.801 Z M 223.928,456.873 L 223.927,457.473 L 224.3,457.512 C 224.322,457.514 224.343,457.512 224.361,457.505 C 224.38,457.5 224.398,457.49 224.412,457.477 L 224.412,457.475 C 224.428,457.462 224.439,457.446 224.448,457.427 C 224.456,457.409 224.46,457.388 224.46,457.367 C 224.46,457.344 224.456,457.323 224.449,457.304 C 224.44,457.283 224.43,457.264 224.415,457.249 C 224.401,457.233 224.386,457.22 224.367,457.21 C 224.353,457.2 224.338,457.195 224.322,457.192 C 224.32,457.192 224.319,457.192 224.317,457.192 L 224.317,457.19 L 224.032,457.159 L 224.033,456.885 L 223.928,456.873 Z M 224.544,456.935 L 224.544,457.114 C 224.544,457.126 224.545,457.137 224.547,457.148 C 224.549,457.161 224.554,457.173 224.557,457.183 C 224.567,457.207 224.579,457.225 224.593,457.242 C 224.609,457.26 224.625,457.274 224.647,457.286 C 224.667,457.297 224.689,457.304 224.712,457.308 L 224.965,457.336 L 224.968,457.336 C 224.98,457.338 224.992,457.343 225,457.349 C 225.01,457.357 225.017,457.367 225.022,457.378 C 225.028,457.387 225.03,457.4 225.03,457.412 C 225.03,457.425 225.027,457.436 225.021,457.446 C 225.015,457.456 225.007,457.463 224.997,457.469 C 224.987,457.474 224.974,457.477 224.961,457.475 L 224.545,457.432 L 224.545,457.538 L 224.96,457.581 C 224.987,457.584 225.01,457.581 225.03,457.574 C 225.051,457.568 225.069,457.557 225.086,457.543 C 225.102,457.53 225.115,457.511 225.122,457.49 C 225.131,457.471 225.135,457.448 225.136,457.423 C 225.136,457.412 225.135,457.398 225.132,457.387 C 225.13,457.374 225.127,457.363 225.122,457.353 C 225.118,457.342 225.113,457.332 225.107,457.323 C 225.102,457.314 225.095,457.304 225.087,457.297 C 225.071,457.277 225.053,457.263 225.033,457.251 C 225.012,457.239 224.993,457.232 224.967,457.229 L 224.964,457.229 C 224.964,457.229 224.962,457.229 224.961,457.228 L 224.712,457.201 C 224.701,457.2 224.69,457.195 224.681,457.188 C 224.67,457.18 224.664,457.17 224.658,457.159 C 224.653,457.148 224.651,457.138 224.651,457.126 L 224.651,457.056 L 225.134,457.106 L 225.135,456.999 L 224.716,456.954 L 224.544,456.935 Z M 225.634,457.053 L 225.632,457.65 L 225.738,457.58 L 226.12,457.323 L 226.12,457.703 L 226.226,457.714 L 226.226,457.116 L 226.12,457.188 L 225.738,457.444 L 225.74,457.064 L 225.634,457.053 Z M 226.31,457.125 L 226.31,457.724 L 226.684,457.764 C 226.705,457.768 226.726,457.765 226.745,457.758 C 226.766,457.751 226.782,457.742 226.796,457.728 C 226.81,457.715 226.822,457.7 226.831,457.68 C 226.838,457.661 226.842,457.64 226.843,457.619 C 226.843,457.596 226.838,457.576 226.831,457.555 C 226.823,457.536 226.812,457.517 226.798,457.501 C 226.785,457.485 226.768,457.472 226.751,457.461 C 226.735,457.452 226.72,457.446 226.704,457.443 L 226.79,457.282 L 226.844,457.181 L 226.725,457.168 L 226.671,457.27 L 226.613,457.375 L 226.611,457.38 C 226.602,457.395 226.59,457.407 226.574,457.413 C 226.558,457.422 226.541,457.424 226.521,457.422 L 226.417,457.412 L 226.417,457.135 L 226.31,457.125 Z M 224.032,457.264 L 224.301,457.293 C 224.304,457.293 224.308,457.295 224.313,457.297 C 224.316,457.298 224.32,457.299 224.323,457.303 L 224.323,457.303 C 224.333,457.308 224.341,457.315 224.346,457.325 C 224.353,457.334 224.354,457.344 224.354,457.355 C 224.354,457.365 224.353,457.373 224.349,457.379 C 224.346,457.385 224.343,457.39 224.34,457.393 C 224.335,457.395 224.33,457.398 224.324,457.401 C 224.319,457.404 224.31,457.405 224.301,457.404 L 224.032,457.375 L 224.032,457.264 Z M 226.417,457.517 L 226.684,457.546 C 226.687,457.547 226.691,457.548 226.696,457.549 C 226.699,457.55 226.702,457.552 226.705,457.554 C 226.716,457.56 226.723,457.568 226.729,457.576 C 226.735,457.586 226.739,457.596 226.739,457.607 C 226.738,457.617 226.735,457.625 226.731,457.633 C 226.728,457.639 226.725,457.642 226.722,457.646 C 226.718,457.648 226.713,457.652 226.707,457.654 C 226.7,457.657 226.694,457.658 226.684,457.657 L 226.416,457.629 L 226.417,457.517 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 220.686,455.535 L 220.685,455.932 L 220.928,455.957 C 220.942,455.958 220.957,455.957 220.969,455.953 C 220.98,455.947 220.992,455.942 221.001,455.933 L 221.002,455.932 C 221.012,455.923 221.019,455.913 221.024,455.901 C 221.03,455.889 221.032,455.875 221.032,455.859 C 221.032,455.844 221.03,455.831 221.024,455.818 C 221.02,455.805 221.013,455.793 221.004,455.782 C 220.994,455.771 220.983,455.762 220.971,455.756 C 220.962,455.749 220.952,455.745 220.942,455.744 C 220.941,455.744 220.939,455.743 220.939,455.743 L 220.939,455.743 L 220.755,455.724 L 220.755,455.542 L 220.686,455.535 Z M 221.087,455.574 L 221.086,455.971 L 221.329,455.999 C 221.346,455.999 221.358,455.999 221.37,455.994 C 221.383,455.989 221.393,455.983 221.403,455.974 C 221.412,455.964 221.418,455.954 221.426,455.942 C 221.43,455.93 221.432,455.916 221.433,455.903 C 221.432,455.888 221.43,455.873 221.427,455.859 C 221.419,455.846 221.413,455.835 221.404,455.824 C 221.394,455.812 221.385,455.804 221.373,455.798 C 221.364,455.792 221.354,455.787 221.344,455.786 L 221.397,455.677 L 221.433,455.61 L 221.357,455.602 L 221.32,455.669 L 221.285,455.741 L 221.283,455.743 C 221.277,455.755 221.268,455.761 221.258,455.766 C 221.248,455.771 221.237,455.773 221.225,455.771 L 221.155,455.764 L 221.155,455.581 L 221.087,455.574 Z M 221.592,455.644 C 221.571,455.651 221.55,455.664 221.532,455.679 C 221.513,455.696 221.5,455.716 221.491,455.737 C 221.481,455.762 221.476,455.787 221.475,455.815 C 221.476,455.842 221.481,455.869 221.49,455.893 C 221.5,455.918 221.513,455.941 221.532,455.96 C 221.549,455.981 221.571,455.999 221.592,456.01 C 221.616,456.023 221.641,456.032 221.669,456.034 C 221.694,456.036 221.72,456.034 221.744,456.025 C 221.765,456.018 221.787,456.007 221.804,455.99 C 221.822,455.974 221.836,455.954 221.845,455.93 C 221.855,455.908 221.861,455.882 221.861,455.854 C 221.861,455.826 221.855,455.8 221.845,455.775 C 221.836,455.75 221.823,455.728 221.804,455.709 C 221.788,455.688 221.766,455.671 221.744,455.659 C 221.72,455.646 221.694,455.637 221.669,455.635 L 221.629,455.636 C 221.617,455.637 221.605,455.639 221.592,455.644 Z M 222.06,455.676 L 222.06,456.003 L 221.902,455.987 L 221.902,456.057 L 222.286,456.098 L 222.286,456.026 L 222.13,456.01 L 222.131,455.683 L 222.06,455.676 Z M 221.669,455.707 C 221.685,455.709 221.701,455.713 221.716,455.722 C 221.733,455.73 221.745,455.741 221.755,455.754 C 221.766,455.766 221.777,455.78 221.783,455.798 C 221.789,455.812 221.793,455.83 221.793,455.847 C 221.793,455.865 221.789,455.881 221.783,455.896 C 221.777,455.91 221.766,455.923 221.755,455.934 C 221.745,455.944 221.732,455.953 221.716,455.957 C 221.701,455.961 221.685,455.964 221.669,455.961 C 221.651,455.96 221.635,455.956 221.619,455.947 C 221.605,455.94 221.591,455.928 221.58,455.916 C 221.57,455.903 221.561,455.89 221.554,455.872 C 221.548,455.856 221.545,455.839 221.545,455.823 C 221.545,455.804 221.548,455.787 221.554,455.773 C 221.561,455.759 221.571,455.745 221.581,455.734 C 221.591,455.724 221.605,455.716 221.619,455.711 C 221.635,455.707 221.652,455.705 221.669,455.707 Z M 222.406,455.72 C 222.394,455.724 222.384,455.731 222.373,455.741 C 222.364,455.748 222.357,455.76 222.352,455.772 C 222.346,455.785 222.344,455.799 222.344,455.812 L 222.344,455.998 C 222.344,456.011 222.346,456.025 222.351,456.038 C 222.357,456.052 222.364,456.064 222.373,456.075 C 222.383,456.087 222.393,456.095 222.406,456.102 C 222.418,456.109 222.431,456.114 222.446,456.115 L 222.727,456.143 L 222.727,456.073 L 222.446,456.043 C 222.441,456.042 222.433,456.04 222.428,456.036 C 222.423,456.033 222.418,456.027 222.416,456.023 C 222.412,456.016 222.41,456.01 222.41,456.003 L 222.41,455.966 L 222.659,455.993 L 222.659,455.921 L 222.41,455.895 L 222.412,455.821 C 222.412,455.812 222.412,455.808 222.417,455.802 C 222.419,455.798 222.424,455.793 222.429,455.791 C 222.436,455.787 222.441,455.786 222.446,455.787 L 222.729,455.817 L 222.729,455.745 L 222.447,455.716 C 222.432,455.715 222.418,455.716 222.406,455.72 Z M 222.895,455.778 C 222.87,455.786 222.851,455.799 222.834,455.814 C 222.816,455.831 222.802,455.85 222.792,455.874 C 222.783,455.897 222.777,455.922 222.777,455.949 C 222.777,455.977 222.783,456.004 222.792,456.028 C 222.801,456.052 222.816,456.075 222.834,456.097 C 222.851,456.116 222.87,456.133 222.895,456.146 C 222.918,456.158 222.943,456.166 222.969,456.168 L 223.161,456.188 L 223.161,456.117 L 222.969,456.098 C 222.953,456.096 222.936,456.09 222.921,456.083 C 222.907,456.075 222.893,456.064 222.882,456.051 C 222.87,456.038 222.862,456.025 222.855,456.008 C 222.849,455.992 222.845,455.974 222.845,455.957 C 222.845,455.94 222.849,455.922 222.856,455.908 C 222.862,455.893 222.87,455.88 222.882,455.871 C 222.894,455.859 222.908,455.851 222.922,455.846 C 222.936,455.841 222.953,455.839 222.97,455.841 L 223.161,455.861 L 223.161,455.791 L 222.97,455.771 L 222.932,455.771 C 222.919,455.771 222.907,455.774 222.895,455.778 Z M 220.755,455.795 L 220.929,455.812 C 220.932,455.812 220.935,455.812 220.937,455.813 C 220.939,455.814 220.941,455.816 220.944,455.818 C 220.949,455.822 220.955,455.825 220.959,455.832 C 220.962,455.838 220.964,455.844 220.964,455.851 C 220.964,455.858 220.962,455.865 220.96,455.869 C 220.958,455.873 220.956,455.877 220.954,455.877 C 220.951,455.88 220.948,455.882 220.945,455.883 C 220.939,455.885 220.936,455.886 220.929,455.885 L 220.755,455.868 L 220.755,455.795 Z M 223.375,455.812 L 223.375,456.14 L 223.218,456.123 L 223.218,456.195 L 223.602,456.235 L 223.602,456.162 L 223.444,456.146 L 223.444,455.82 L 223.375,455.812 Z M 221.155,455.835 L 221.329,455.852 C 221.333,455.853 221.334,455.854 221.338,455.855 C 221.34,455.855 221.343,455.857 221.346,455.857 C 221.351,455.861 221.356,455.867 221.36,455.874 C 221.364,455.879 221.365,455.886 221.365,455.894 C 221.365,455.901 221.364,455.905 221.362,455.909 C 221.36,455.914 221.357,455.917 221.354,455.919 C 221.352,455.921 221.349,455.922 221.346,455.924 C 221.342,455.927 221.336,455.927 221.329,455.927 L 221.155,455.909 L 221.155,455.835 Z M 223.657,455.841 L 223.657,456.239 L 223.727,456.247 L 223.727,455.849 L 223.657,455.841 Z M 223.956,455.873 L 223.794,456.183 L 223.759,456.25 L 223.836,456.258 L 223.871,456.191 L 223.955,456.029 L 224.039,456.209 L 224.075,456.283 L 224.152,456.291 L 224.116,456.217 L 223.956,455.873 Z M 224.25,455.911 C 224.238,455.916 224.226,455.922 224.218,455.931 C 224.207,455.94 224.198,455.95 224.195,455.962 C 224.189,455.975 224.185,455.989 224.185,456.004 L 224.185,456.187 C 224.185,456.202 224.188,456.216 224.194,456.229 C 224.198,456.243 224.207,456.255 224.217,456.266 C 224.225,456.276 224.237,456.286 224.249,456.292 C 224.261,456.3 224.276,456.304 224.289,456.306 L 224.57,456.335 L 224.57,456.263 L 224.289,456.235 C 224.282,456.234 224.276,456.232 224.27,456.227 C 224.266,456.224 224.263,456.219 224.258,456.213 C 224.256,456.208 224.254,456.201 224.254,456.195 L 224.254,456.157 L 224.502,456.183 L 224.502,456.113 L 224.255,456.088 L 224.255,456.011 C 224.255,456.004 224.257,455.999 224.259,455.994 C 224.263,455.989 224.266,455.984 224.272,455.982 C 224.277,455.979 224.282,455.978 224.29,455.978 L 224.571,456.008 L 224.571,455.935 L 224.29,455.908 C 224.276,455.906 224.262,455.908 224.25,455.911 Z M 224.893,455.968 L 224.893,456.367 L 225.135,456.393 C 225.15,456.393 225.163,456.393 225.175,456.388 C 225.188,456.384 225.2,456.377 225.209,456.369 C 225.219,456.36 225.225,456.348 225.232,456.336 C 225.236,456.324 225.238,456.31 225.238,456.296 C 225.238,456.281 225.237,456.266 225.232,456.253 C 225.227,456.24 225.22,456.229 225.211,456.219 C 225.202,456.209 225.193,456.2 225.179,456.192 C 225.17,456.186 225.159,456.182 225.149,456.18 L 225.206,456.071 L 225.239,456.004 L 225.161,455.998 L 225.128,456.064 L 225.092,456.135 L 225.09,456.137 C 225.084,456.148 225.074,456.155 225.063,456.16 C 225.054,456.165 225.043,456.167 225.031,456.167 L 224.96,456.159 L 224.961,455.976 L 224.893,455.968 Z M 225.359,456.026 C 225.347,456.031 225.335,456.038 225.327,456.046 C 225.317,456.055 225.31,456.065 225.304,456.077 C 225.298,456.09 225.296,456.104 225.296,456.119 L 225.296,456.302 C 225.296,456.317 225.298,456.332 225.304,456.345 C 225.309,456.358 225.317,456.371 225.327,456.382 C 225.335,456.393 225.346,456.4 225.359,456.408 C 225.371,456.415 225.385,456.42 225.398,456.42 L 225.68,456.449 L 225.68,456.379 L 225.398,456.349 C 225.393,456.348 225.386,456.347 225.38,456.342 C 225.377,456.34 225.373,456.334 225.369,456.329 C 225.366,456.322 225.364,456.316 225.364,456.31 L 225.364,456.272 L 225.612,456.297 L 225.612,456.226 L 225.364,456.201 L 225.364,456.127 C 225.364,456.12 225.366,456.115 225.369,456.109 C 225.373,456.103 225.377,456.1 225.382,456.097 C 225.386,456.094 225.393,456.094 225.398,456.094 L 225.681,456.122 L 225.681,456.051 L 225.399,456.023 C 225.385,456.022 225.372,456.023 225.359,456.026 Z M 225.81,456.075 C 225.796,456.079 225.783,456.089 225.772,456.098 C 225.761,456.108 225.753,456.122 225.745,456.135 C 225.74,456.149 225.735,456.166 225.735,456.183 L 225.806,456.189 C 225.806,456.18 225.807,456.17 225.812,456.162 C 225.817,456.155 225.823,456.148 225.831,456.146 C 225.838,456.141 225.846,456.141 225.858,456.141 L 225.979,456.153 C 225.989,456.154 225.997,456.158 226.006,456.162 C 226.012,456.169 226.019,456.175 226.024,456.185 C 226.028,456.195 226.032,456.203 226.032,456.214 C 226.032,456.224 226.028,456.233 226.024,456.24 C 226.019,456.248 226.012,456.253 226.006,456.257 C 225.996,456.261 225.989,456.263 225.979,456.262 L 225.838,456.248 L 225.819,456.248 C 225.812,456.249 225.806,456.25 225.8,456.251 C 225.787,456.256 225.778,456.262 225.768,456.27 C 225.764,456.275 225.758,456.28 225.754,456.286 C 225.748,456.294 225.744,456.304 225.741,456.315 C 225.737,456.323 225.735,456.335 225.735,456.346 L 225.735,456.348 C 225.735,456.362 225.738,456.376 225.744,456.39 C 225.748,456.404 225.756,456.416 225.767,456.426 C 225.777,456.438 225.787,456.447 225.8,456.452 C 225.811,456.46 225.825,456.464 225.838,456.465 L 225.995,456.482 C 226.009,456.483 226.023,456.482 226.035,456.477 C 226.048,456.474 226.058,456.467 226.069,456.459 C 226.078,456.449 226.086,456.439 226.091,456.426 C 226.097,456.415 226.099,456.4 226.099,456.385 L 226.099,456.384 L 226.031,456.375 L 226.031,456.377 C 226.031,456.384 226.028,456.39 226.026,456.395 C 226.022,456.4 226.019,456.405 226.013,456.408 C 226.008,456.41 226.002,456.411 225.995,456.41 L 225.838,456.394 C 225.832,456.393 225.825,456.391 225.82,456.386 C 225.817,456.384 225.812,456.379 225.808,456.373 C 225.806,456.367 225.805,456.361 225.805,456.354 L 225.805,456.351 C 225.805,456.345 225.806,456.34 225.808,456.334 C 225.812,456.329 225.817,456.325 225.822,456.322 C 225.825,456.32 225.832,456.319 225.838,456.319 L 225.979,456.334 L 226.004,456.334 C 226.012,456.332 226.02,456.331 226.027,456.329 C 226.044,456.322 226.057,456.315 226.067,456.302 C 226.069,456.302 226.07,456.301 226.07,456.3 C 226.07,456.299 226.07,456.298 226.071,456.297 C 226.081,456.288 226.087,456.276 226.092,456.263 C 226.098,456.25 226.1,456.235 226.1,456.222 C 226.1,456.203 226.097,456.186 226.09,456.17 C 226.085,456.155 226.076,456.141 226.064,456.129 C 226.052,456.116 226.04,456.105 226.025,456.097 C 226.01,456.09 225.995,456.084 225.979,456.083 L 225.858,456.069 C 225.84,456.067 225.825,456.069 225.81,456.075 Z M 226.156,456.102 L 226.154,456.499 L 226.398,456.523 C 226.413,456.526 226.426,456.523 226.438,456.519 C 226.451,456.515 226.461,456.509 226.472,456.5 L 226.472,456.5 C 226.481,456.49 226.489,456.479 226.494,456.467 C 226.498,456.455 226.501,456.441 226.501,456.426 C 226.501,456.412 226.499,456.398 226.494,456.385 C 226.49,456.371 226.483,456.36 226.473,456.348 C 226.464,456.338 226.454,456.329 226.441,456.323 C 226.432,456.317 226.423,456.314 226.413,456.312 C 226.411,456.312 226.41,456.31 226.409,456.31 L 226.409,456.31 L 226.225,456.29 L 226.225,456.109 L 226.156,456.102 Z M 226.558,456.142 L 226.557,456.541 L 226.624,456.548 L 226.626,456.149 L 226.558,456.142 Z M 226.681,456.154 L 226.681,456.552 L 226.923,456.576 C 226.938,456.58 226.951,456.577 226.965,456.573 C 226.976,456.57 226.987,456.562 226.997,456.554 C 227.007,456.544 227.013,456.535 227.019,456.522 C 227.024,456.509 227.026,456.496 227.026,456.481 C 227.026,456.466 227.024,456.452 227.02,456.439 C 227.013,456.426 227.007,456.414 226.999,456.403 C 226.989,456.393 226.978,456.384 226.967,456.376 C 226.957,456.371 226.947,456.367 226.937,456.365 L 226.993,456.257 L 227.026,456.189 L 226.95,456.181 L 226.915,456.25 L 226.878,456.32 L 226.877,456.323 C 226.871,456.333 226.863,456.341 226.852,456.345 C 226.842,456.35 226.831,456.353 226.819,456.351 L 226.75,456.344 L 226.75,456.16 L 226.681,456.154 Z M 227.06,456.195 L 227.097,456.269 L 227.257,456.612 L 227.419,456.302 L 227.455,456.235 L 227.377,456.227 L 227.342,456.294 L 227.257,456.457 L 227.173,456.277 L 227.137,456.203 L 227.06,456.195 Z M 224.96,456.229 L 225.135,456.248 C 225.139,456.249 225.141,456.25 225.143,456.25 C 225.145,456.25 225.148,456.251 225.15,456.252 C 225.155,456.257 225.161,456.261 225.166,456.268 C 225.169,456.274 225.171,456.281 225.171,456.289 C 225.171,456.294 225.17,456.3 225.167,456.305 C 225.165,456.31 225.161,456.313 225.16,456.314 C 225.158,456.316 225.154,456.317 225.152,456.319 C 225.148,456.32 225.146,456.321 225.144,456.322 L 225.135,456.322 L 224.96,456.302 L 224.96,456.229 Z M 227.646,456.255 L 227.646,456.583 L 227.486,456.567 L 227.486,456.637 L 227.872,456.677 L 227.872,456.606 L 227.713,456.589 L 227.713,456.261 L 227.646,456.255 Z M 228.031,456.31 C 228.007,456.319 227.988,456.331 227.97,456.347 C 227.954,456.362 227.938,456.383 227.928,456.406 C 227.919,456.428 227.913,456.454 227.913,456.482 C 227.913,456.509 227.918,456.536 227.928,456.561 C 227.938,456.586 227.953,456.609 227.97,456.628 C 227.988,456.649 228.007,456.664 228.03,456.677 C 228.054,456.69 228.08,456.698 228.105,456.701 C 228.133,456.703 228.157,456.701 228.181,456.694 C 228.204,456.685 228.226,456.674 228.243,456.657 C 228.259,456.64 228.273,456.62 228.284,456.598 C 228.294,456.574 228.298,456.549 228.299,456.522 C 228.298,456.494 228.294,456.467 228.285,456.443 C 228.273,456.418 228.259,456.395 228.243,456.374 C 228.227,456.356 228.205,456.34 228.182,456.327 C 228.158,456.315 228.134,456.306 228.107,456.302 L 228.068,456.302 C 228.055,456.305 228.044,456.308 228.031,456.31 Z M 228.341,456.327 L 228.34,456.723 L 228.583,456.749 C 228.596,456.75 228.61,456.749 228.623,456.745 C 228.636,456.741 228.647,456.734 228.657,456.726 C 228.666,456.716 228.672,456.706 228.678,456.694 C 228.684,456.682 228.685,456.668 228.685,456.653 C 228.685,456.639 228.684,456.625 228.679,456.611 C 228.674,456.598 228.668,456.586 228.657,456.574 C 228.648,456.565 228.638,456.556 228.627,456.548 C 228.616,456.543 228.607,456.54 228.595,456.538 L 228.653,456.429 L 228.686,456.361 L 228.609,456.354 L 228.575,456.423 L 228.537,456.492 L 228.536,456.496 C 228.53,456.505 228.523,456.513 228.511,456.517 C 228.502,456.522 228.49,456.523 228.477,456.522 L 228.409,456.516 L 228.409,456.334 L 228.341,456.327 Z M 226.224,456.361 L 226.398,456.38 C 226.4,456.38 226.404,456.38 226.407,456.382 C 226.408,456.382 226.411,456.383 226.413,456.384 L 226.413,456.385 C 226.419,456.388 226.425,456.393 226.428,456.399 C 226.432,456.406 226.433,456.412 226.434,456.422 C 226.433,456.426 226.432,456.433 226.43,456.437 C 226.427,456.441 226.426,456.444 226.423,456.446 C 226.42,456.448 226.419,456.449 226.414,456.451 C 226.41,456.452 226.406,456.453 226.398,456.452 L 226.224,456.435 L 226.224,456.361 Z M 228.107,456.374 C 228.123,456.375 228.139,456.38 228.154,456.389 C 228.168,456.397 228.183,456.408 228.194,456.422 C 228.205,456.434 228.214,456.449 228.22,456.464 C 228.228,456.48 228.23,456.497 228.23,456.515 C 228.23,456.533 228.227,456.548 228.22,456.563 C 228.214,456.58 228.205,456.592 228.194,456.601 C 228.182,456.612 228.168,456.62 228.154,456.625 C 228.139,456.63 228.123,456.631 228.105,456.63 C 228.089,456.627 228.072,456.622 228.058,456.615 C 228.044,456.607 228.03,456.596 228.019,456.584 C 228.007,456.57 227.998,456.556 227.993,456.541 C 227.986,456.523 227.983,456.507 227.983,456.49 C 227.983,456.471 227.986,456.455 227.993,456.44 C 227.998,456.426 228.007,456.412 228.019,456.403 C 228.03,456.393 228.044,456.384 228.058,456.38 C 228.073,456.374 228.089,456.372 228.107,456.374 Z M 226.75,456.415 L 226.923,456.434 C 226.926,456.434 226.929,456.435 226.93,456.436 C 226.933,456.437 226.935,456.438 226.938,456.439 C 226.944,456.442 226.949,456.448 226.953,456.452 C 226.957,456.46 226.959,456.466 226.959,456.473 C 226.959,456.48 226.957,456.486 226.955,456.49 C 226.953,456.493 226.95,456.496 226.948,456.499 C 226.945,456.501 226.942,456.503 226.938,456.504 C 226.935,456.506 226.929,456.506 226.923,456.506 L 226.75,456.489 L 226.75,456.415 Z M 228.409,456.587 L 228.583,456.606 C 228.586,456.606 228.588,456.607 228.59,456.607 C 228.593,456.609 228.594,456.609 228.596,456.61 C 228.603,456.613 228.608,456.619 228.613,456.625 C 228.616,456.631 228.618,456.639 228.618,456.646 C 228.618,456.652 228.616,456.657 228.615,456.662 C 228.613,456.665 228.609,456.668 228.607,456.671 C 228.605,456.673 228.601,456.674 228.598,456.676 C 228.594,456.679 228.589,456.679 228.583,456.679 L 228.409,456.661 L 228.409,456.587 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 215.817,468.864 L 215.643,469.026 L 233.051,470.16 L 233.14,470.123 C 233.17,470.112 233.198,470.084 233.198,470.039 L 233.198,469.996 L 215.817,468.864 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 215.643,469.026 L 215.642,445.574 L 215.73,445.489 L 215.817,445.503 L 215.817,468.863 L 215.643,469.026 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--FORREST_PINE, .KN95_NR_individuals--FORREST_PINE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='300.282 -475.376 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.301' y2='19.846' gradientTransform='translate(312.925 447.905)'%3E%3Cstop offset='0' stop-color='%2318350f'/%3E%3Cstop offset='1' stop-color='%231f4413'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.353' y2='19.92' gradientTransform='translate(309.386 448.52)'%3E%3Cstop offset='0' stop-color='%2313290b'/%3E%3Cstop offset='1' stop-color='%231a3a10'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(312.919 467.888)'%3E%3Cstop offset='0' stop-color='%2318340e'/%3E%3Cstop offset='1' stop-color='%231a3a10'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.229' gradientTransform='translate(308.244 469.944)'%3E%3Cstop offset='0' stop-color='%2313290b'/%3E%3Cstop offset='1' stop-color='%2318340e'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.009' y2='-0.163' gradientTransform='translate(321.238 469.758) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2318350f'/%3E%3Cstop offset='1' stop-color='%231b3c10'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(310.093 457.647) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2318340e'/%3E%3Cstop offset='1' stop-color='%231a3a10'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(317.011 458.647) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 310.011,445.491 L 310.011,468.976 L 327.458,470.097 C 327.471,470.082 327.481,470.063 327.481,470.039 L 327.481,447.858 L 310.011,445.491 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 310.011,445.491 L 306.548,448.854 L 306.546,470.875 L 310.011,468.976 L 310.011,445.491 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 310.011,468.976 L 306.546,470.875 L 323.478,471.803 L 327.421,470.124 C 327.435,470.118 327.448,470.11 327.458,470.097 L 310.011,468.976 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 309.924,468.709 L 306.545,470.598 L 306.544,470.875 L 309.924,469.025 L 309.924,468.709 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 317.053,451.092 L 317.053,451.503 L 317.125,451.511 L 317.125,451.1 L 317.053,451.092 Z M 317.182,451.107 L 317.182,451.514 L 317.255,451.468 L 317.516,451.292 L 317.516,451.552 L 317.588,451.56 L 317.588,451.151 L 317.516,451.199 L 317.255,451.374 L 317.255,451.114 L 317.182,451.107 Z M 317.645,451.157 L 317.645,451.567 L 317.847,451.59 C 317.877,451.592 317.903,451.59 317.926,451.582 C 317.95,451.574 317.971,451.562 317.992,451.544 C 318.01,451.527 318.024,451.508 318.034,451.485 C 318.044,451.461 318.05,451.434 318.05,451.406 C 318.05,451.381 318.045,451.357 318.038,451.333 C 318.029,451.31 318.017,451.288 318.002,451.269 C 318,451.267 317.998,451.264 317.997,451.262 C 317.995,451.26 317.993,451.257 317.99,451.256 C 317.971,451.234 317.95,451.217 317.926,451.204 C 317.904,451.191 317.878,451.182 317.847,451.179 L 317.645,451.157 Z M 318.108,451.207 L 318.108,451.617 L 318.181,451.624 L 318.181,451.216 L 318.108,451.207 Z M 317.716,451.237 L 317.847,451.251 C 317.865,451.255 317.882,451.26 317.898,451.269 C 317.915,451.276 317.928,451.288 317.939,451.301 C 317.951,451.314 317.96,451.328 317.968,451.346 C 317.974,451.363 317.977,451.38 317.978,451.398 C 317.977,451.417 317.974,451.432 317.968,451.447 C 317.96,451.464 317.951,451.476 317.939,451.487 C 317.928,451.498 317.915,451.506 317.898,451.511 C 317.882,451.516 317.865,451.517 317.847,451.515 L 317.716,451.501 L 317.716,451.237 Z M 318.421,451.243 L 318.252,451.559 L 318.215,451.63 L 318.296,451.637 L 318.332,451.569 L 318.421,451.404 L 318.51,451.589 L 318.547,451.664 L 318.627,451.675 L 318.591,451.597 L 318.421,451.243 Z M 318.665,451.269 L 318.665,451.678 L 318.736,451.686 L 318.736,451.275 L 318.665,451.269 Z M 318.795,451.282 L 318.795,451.692 L 318.996,451.714 C 319.024,451.716 319.05,451.714 319.075,451.707 C 319.1,451.699 319.12,451.686 319.139,451.669 C 319.157,451.653 319.171,451.632 319.181,451.609 C 319.193,451.585 319.199,451.559 319.199,451.531 C 319.199,451.506 319.195,451.482 319.185,451.459 C 319.177,451.434 319.166,451.413 319.149,451.393 C 319.148,451.391 319.146,451.389 319.144,451.387 C 319.143,451.385 319.142,451.382 319.138,451.38 C 319.12,451.359 319.1,451.342 319.075,451.327 C 319.05,451.315 319.024,451.307 318.996,451.303 L 318.795,451.282 Z M 319.381,451.362 C 319.356,451.37 319.334,451.382 319.317,451.398 C 319.297,451.416 319.283,451.436 319.273,451.46 C 319.262,451.483 319.257,451.509 319.257,451.537 L 319.257,451.741 L 319.329,451.75 L 319.329,451.545 C 319.329,451.526 319.332,451.51 319.34,451.495 C 319.345,451.481 319.356,451.468 319.368,451.457 C 319.38,451.445 319.393,451.437 319.408,451.432 C 319.424,451.427 319.441,451.424 319.459,451.427 C 319.477,451.43 319.493,451.434 319.509,451.443 C 319.526,451.45 319.54,451.463 319.552,451.476 C 319.563,451.489 319.572,451.505 319.579,451.521 C 319.585,451.538 319.589,451.555 319.589,451.574 L 319.589,451.778 L 319.663,451.786 L 319.663,451.582 C 319.663,451.552 319.657,451.526 319.646,451.5 C 319.634,451.474 319.62,451.449 319.601,451.43 C 319.583,451.409 319.563,451.392 319.538,451.379 C 319.514,451.366 319.487,451.358 319.459,451.353 C 319.43,451.352 319.405,451.353 319.381,451.362 Z M 318.866,451.363 L 318.996,451.377 C 319.014,451.379 319.03,451.384 319.046,451.392 C 319.062,451.401 319.076,451.411 319.089,451.424 C 319.101,451.438 319.109,451.454 319.117,451.471 C 319.123,451.487 319.126,451.505 319.127,451.522 C 319.126,451.54 319.123,451.558 319.117,451.573 C 319.109,451.589 319.101,451.601 319.089,451.612 C 319.076,451.623 319.062,451.63 319.046,451.636 C 319.03,451.641 319.014,451.642 318.996,451.64 L 318.866,451.626 L 318.866,451.363 Z M 319.697,451.38 L 319.733,451.458 L 319.903,451.812 L 320.073,451.495 L 320.111,451.424 L 320.029,451.417 L 319.993,451.485 L 319.903,451.65 L 319.814,451.466 L 319.778,451.389 L 319.697,451.38 Z M 320.245,451.443 C 320.234,451.444 320.225,451.446 320.217,451.449 C 320.204,451.456 320.193,451.463 320.182,451.473 C 320.172,451.482 320.164,451.491 320.157,451.503 C 320.154,451.512 320.151,451.521 320.148,451.529 C 320.146,451.539 320.145,451.548 320.145,451.559 L 320.145,451.838 L 320.217,451.846 L 320.217,451.559 C 320.218,451.552 320.221,451.543 320.226,451.538 C 320.23,451.531 320.235,451.526 320.244,451.522 C 320.25,451.518 320.259,451.516 320.266,451.515 L 320.479,451.538 L 320.479,451.466 L 320.273,451.443 C 320.263,451.441 320.253,451.442 320.245,451.443 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 314.85,457.821 L 314.847,459.874 L 315.186,459.907 L 315.188,458.86 L 315.468,459.163 L 315.719,459.437 L 316.247,460.015 L 316.749,460.067 L 315.921,459.158 L 316.744,458.014 L 316.327,457.972 L 315.67,458.885 L 315.188,458.363 L 315.188,457.856 L 314.85,457.821 Z M 316.917,458.032 L 317.09,458.416 L 317.884,460.182 L 318.681,458.578 L 318.853,458.228 L 318.476,458.191 L 318.301,458.539 L 317.885,459.376 L 317.47,458.453 L 317.297,458.072 L 316.917,458.032 Z M 319.026,458.247 L 319.028,458.247 L 319.288,458.639 L 319.754,459.342 L 319.969,459.663 L 320.228,460.055 L 319.021,459.931 L 319.021,460.298 L 320.488,460.447 L 320.913,460.489 L 320.651,460.097 L 320.18,459.384 L 319.968,459.064 L 319.711,458.683 L 320.924,458.806 L 320.925,458.439 L 319.456,458.291 L 319.453,458.291 L 319.026,458.247 Z M 321.501,458.542 C 321.441,458.564 321.384,458.598 321.339,458.645 C 321.293,458.69 321.255,458.744 321.23,458.809 C 321.204,458.873 321.191,458.943 321.19,459.021 L 321.189,459.964 C 321.189,460.041 321.201,460.114 321.228,460.184 C 321.254,460.253 321.289,460.314 321.338,460.37 C 321.383,460.426 321.438,460.471 321.499,460.506 C 321.561,460.541 321.628,460.562 321.698,460.57 L 323.084,460.71 L 323.084,460.344 L 321.698,460.203 C 321.666,460.2 321.637,460.189 321.61,460.17 C 321.584,460.15 321.564,460.125 321.549,460.096 C 321.533,460.066 321.525,460.033 321.525,459.998 L 321.525,459.808 L 322.745,459.931 L 322.746,459.566 L 321.525,459.442 L 321.525,459.054 C 321.525,459.02 321.535,458.99 321.55,458.964 C 321.567,458.936 321.586,458.915 321.611,458.901 C 321.639,458.887 321.667,458.882 321.699,458.885 L 323.086,459.025 L 323.087,458.66 L 321.699,458.518 C 321.63,458.512 321.564,458.519 321.501,458.542 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 316.854,456.73 L 316.854,457.168 C 316.854,457.191 316.857,457.212 316.865,457.232 C 316.873,457.253 316.885,457.272 316.9,457.287 C 316.915,457.304 316.931,457.317 316.95,457.328 C 316.969,457.337 316.991,457.344 317.013,457.346 L 317.446,457.393 L 317.446,457.285 L 317.013,457.24 C 317.004,457.239 316.994,457.235 316.986,457.229 C 316.977,457.223 316.971,457.217 316.966,457.208 C 316.961,457.199 316.959,457.189 316.959,457.179 L 316.959,457.124 L 317.341,457.162 L 317.341,457.056 L 316.958,457.016 L 316.959,456.742 L 316.854,456.73 Z M 317.531,456.802 L 317.53,457.24 C 317.53,457.261 317.535,457.284 317.544,457.304 C 317.551,457.324 317.562,457.343 317.577,457.359 C 317.592,457.375 317.609,457.388 317.627,457.399 C 317.646,457.41 317.667,457.416 317.691,457.419 L 318.123,457.464 L 318.123,457.356 L 317.691,457.311 C 317.681,457.311 317.672,457.307 317.664,457.302 C 317.655,457.295 317.648,457.287 317.643,457.278 C 317.639,457.271 317.637,457.261 317.637,457.251 L 317.637,457.196 L 318.018,457.235 L 318.018,457.129 L 317.636,457.088 L 317.637,456.813 L 317.531,456.802 Z M 318.21,456.874 L 318.208,457.474 L 318.582,457.512 C 318.603,457.515 318.624,457.512 318.642,457.506 C 318.662,457.5 318.679,457.49 318.694,457.478 L 318.694,457.476 C 318.709,457.462 318.72,457.447 318.729,457.428 C 318.736,457.41 318.742,457.388 318.742,457.367 C 318.742,457.344 318.736,457.324 318.73,457.305 C 318.721,457.284 318.71,457.265 318.698,457.25 C 318.683,457.234 318.667,457.221 318.649,457.211 C 318.633,457.201 318.619,457.196 318.602,457.193 C 318.601,457.193 318.6,457.193 318.598,457.193 L 318.598,457.191 L 318.315,457.16 L 318.315,456.886 L 318.21,456.874 Z M 318.825,456.936 L 318.825,457.115 C 318.825,457.127 318.826,457.137 318.828,457.149 C 318.831,457.161 318.834,457.174 318.838,457.184 C 318.847,457.208 318.859,457.226 318.876,457.243 C 318.891,457.261 318.908,457.275 318.928,457.286 C 318.947,457.298 318.969,457.305 318.994,457.309 L 319.247,457.336 L 319.25,457.336 C 319.261,457.339 319.272,457.343 319.281,457.35 C 319.291,457.358 319.298,457.367 319.305,457.378 C 319.31,457.388 319.311,457.4 319.311,457.413 C 319.311,457.426 319.309,457.437 319.302,457.447 C 319.296,457.456 319.289,457.464 319.278,457.47 C 319.267,457.475 319.256,457.477 319.243,457.476 L 318.826,457.433 L 318.826,457.539 L 319.242,457.582 C 319.267,457.585 319.291,457.582 319.311,457.575 C 319.332,457.569 319.35,457.558 319.367,457.543 C 319.382,457.531 319.395,457.511 319.404,457.491 C 319.413,457.472 319.418,457.449 319.418,457.424 C 319.418,457.412 319.417,457.399 319.414,457.388 C 319.411,457.375 319.407,457.363 319.402,457.353 C 319.399,457.343 319.394,457.332 319.388,457.324 C 319.382,457.314 319.375,457.305 319.368,457.296 C 319.354,457.278 319.335,457.263 319.315,457.252 C 319.293,457.24 319.273,457.233 319.249,457.229 L 319.246,457.229 C 319.246,457.229 319.244,457.229 319.243,457.228 L 318.994,457.202 C 318.982,457.201 318.971,457.196 318.962,457.188 C 318.952,457.181 318.944,457.171 318.939,457.16 C 318.934,457.149 318.932,457.138 318.932,457.127 L 318.932,457.057 L 319.416,457.106 L 319.416,457 L 318.999,456.955 L 318.825,456.936 Z M 319.915,457.053 L 319.915,457.651 L 320.021,457.581 L 320.401,457.324 L 320.401,457.704 L 320.506,457.714 L 320.507,457.117 L 320.401,457.188 L 320.021,457.444 L 320.021,457.065 L 319.915,457.053 Z M 320.592,457.126 L 320.591,457.725 L 320.966,457.765 C 320.987,457.768 321.008,457.766 321.027,457.758 C 321.047,457.752 321.063,457.743 321.079,457.729 C 321.092,457.716 321.104,457.7 321.112,457.68 C 321.12,457.662 321.124,457.641 321.125,457.62 C 321.125,457.597 321.12,457.576 321.112,457.556 C 321.105,457.537 321.094,457.518 321.08,457.502 C 321.066,457.486 321.05,457.473 321.032,457.461 C 321.018,457.453 321.002,457.447 320.986,457.444 L 321.072,457.283 L 321.125,457.182 L 321.007,457.169 L 320.952,457.271 L 320.895,457.376 L 320.893,457.381 C 320.884,457.395 320.872,457.408 320.855,457.414 C 320.84,457.422 320.821,457.425 320.802,457.423 L 320.698,457.412 L 320.698,457.136 L 320.592,457.126 Z M 318.315,457.265 L 318.583,457.294 C 318.586,457.294 318.589,457.295 318.594,457.298 C 318.598,457.299 318.601,457.3 318.604,457.303 L 318.604,457.303 C 318.614,457.309 318.622,457.316 318.627,457.326 C 318.633,457.335 318.635,457.344 318.635,457.356 C 318.635,457.365 318.633,457.374 318.63,457.38 C 318.626,457.386 318.623,457.391 318.62,457.394 C 318.616,457.396 318.611,457.399 318.605,457.401 C 318.6,457.405 318.591,457.406 318.583,457.405 L 318.315,457.376 L 318.315,457.265 Z M 320.698,457.518 L 320.966,457.547 C 320.97,457.547 320.973,457.548 320.977,457.55 C 320.981,457.551 320.984,457.553 320.987,457.555 C 320.997,457.56 321.005,457.569 321.009,457.577 C 321.017,457.587 321.02,457.597 321.02,457.608 C 321.019,457.618 321.018,457.626 321.013,457.634 C 321.009,457.64 321.007,457.643 321.003,457.647 C 321,457.649 320.995,457.653 320.989,457.654 C 320.982,457.658 320.975,457.659 320.966,457.658 L 320.697,457.629 L 320.698,457.518 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 314.967,455.536 L 314.966,455.932 L 315.209,455.957 C 315.225,455.959 315.238,455.957 315.251,455.954 C 315.262,455.948 315.274,455.942 315.283,455.933 L 315.283,455.933 C 315.293,455.923 315.3,455.914 315.305,455.902 C 315.31,455.889 315.314,455.876 315.314,455.86 C 315.314,455.845 315.31,455.832 315.306,455.819 C 315.301,455.806 315.294,455.794 315.284,455.783 C 315.276,455.772 315.265,455.763 315.254,455.757 C 315.244,455.749 315.234,455.746 315.225,455.745 C 315.222,455.745 315.22,455.744 315.22,455.744 L 315.22,455.744 L 315.037,455.724 L 315.037,455.542 L 314.967,455.536 Z M 315.368,455.574 L 315.367,455.972 L 315.611,455.999 C 315.626,456 315.639,455.999 315.651,455.995 C 315.665,455.99 315.675,455.984 315.684,455.975 C 315.694,455.965 315.701,455.955 315.708,455.942 C 315.712,455.931 315.715,455.917 315.715,455.904 C 315.715,455.888 315.712,455.874 315.709,455.86 C 315.701,455.847 315.695,455.836 315.686,455.825 C 315.677,455.813 315.667,455.805 315.654,455.798 C 315.644,455.793 315.635,455.787 315.625,455.786 L 315.679,455.678 L 315.715,455.611 L 315.638,455.603 L 315.603,455.67 L 315.567,455.741 L 315.565,455.744 C 315.559,455.756 315.549,455.762 315.54,455.767 C 315.528,455.772 315.518,455.774 315.506,455.772 L 315.436,455.765 L 315.436,455.582 L 315.368,455.574 Z M 315.874,455.644 C 315.852,455.652 315.832,455.665 315.815,455.68 C 315.796,455.697 315.782,455.716 315.772,455.738 C 315.762,455.763 315.757,455.787 315.755,455.815 C 315.757,455.843 315.762,455.87 315.772,455.894 C 315.782,455.919 315.796,455.942 315.813,455.961 C 315.831,455.982 315.851,455.999 315.873,456.011 C 315.898,456.024 315.922,456.032 315.949,456.034 C 315.975,456.037 316.001,456.034 316.025,456.026 C 316.046,456.019 316.068,456.007 316.085,455.99 C 316.103,455.974 316.118,455.955 316.127,455.931 C 316.136,455.908 316.142,455.883 316.142,455.854 C 316.142,455.827 316.137,455.8 316.127,455.775 C 316.118,455.75 316.103,455.729 316.085,455.709 C 316.069,455.689 316.048,455.672 316.025,455.66 C 316.001,455.647 315.976,455.638 315.95,455.636 L 315.911,455.637 C 315.898,455.638 315.887,455.639 315.874,455.644 Z M 316.342,455.677 L 316.342,456.004 L 316.183,455.988 L 316.183,456.058 L 316.568,456.099 L 316.568,456.027 L 316.412,456.011 L 316.412,455.684 L 316.342,455.677 Z M 315.95,455.707 C 315.967,455.709 315.982,455.714 315.999,455.723 C 316.014,455.73 316.027,455.741 316.037,455.755 C 316.048,455.767 316.057,455.781 316.064,455.798 C 316.07,455.813 316.074,455.83 316.074,455.848 C 316.074,455.866 316.07,455.882 316.064,455.897 C 316.057,455.911 316.048,455.924 316.037,455.935 C 316.026,455.945 316.013,455.954 315.998,455.957 C 315.982,455.962 315.967,455.964 315.949,455.962 C 315.933,455.961 315.916,455.956 315.902,455.948 C 315.887,455.941 315.872,455.929 315.861,455.917 C 315.851,455.904 315.842,455.891 315.835,455.873 C 315.831,455.856 315.826,455.839 315.826,455.823 C 315.826,455.805 315.831,455.787 315.835,455.774 C 315.842,455.76 315.851,455.746 315.862,455.735 C 315.873,455.725 315.888,455.717 315.902,455.712 C 315.916,455.708 315.934,455.706 315.95,455.707 Z M 316.687,455.721 C 316.677,455.724 316.665,455.731 316.654,455.741 C 316.645,455.749 316.638,455.761 316.632,455.773 C 316.628,455.785 316.625,455.799 316.625,455.813 L 316.625,455.998 C 316.625,456.012 316.626,456.026 316.632,456.039 C 316.638,456.053 316.645,456.065 316.654,456.076 C 316.665,456.088 316.675,456.096 316.687,456.103 C 316.7,456.11 316.714,456.114 316.728,456.116 L 317.009,456.144 L 317.009,456.073 L 316.728,456.044 C 316.722,456.042 316.716,456.04 316.71,456.037 C 316.705,456.033 316.701,456.028 316.697,456.023 C 316.695,456.017 316.693,456.01 316.693,456.004 L 316.693,455.967 L 316.941,455.994 L 316.941,455.922 L 316.693,455.896 L 316.694,455.821 C 316.694,455.813 316.695,455.808 316.698,455.803 C 316.701,455.798 316.706,455.794 316.71,455.791 C 316.716,455.787 316.722,455.787 316.728,455.787 L 317.01,455.817 L 317.01,455.746 L 316.729,455.717 C 316.714,455.716 316.701,455.717 316.687,455.721 Z M 317.175,455.779 C 317.153,455.787 317.133,455.799 317.116,455.815 C 317.096,455.832 317.083,455.851 317.073,455.874 C 317.064,455.897 317.058,455.923 317.058,455.95 C 317.058,455.977 317.064,456.005 317.073,456.029 C 317.082,456.053 317.096,456.076 317.116,456.098 C 317.133,456.117 317.153,456.133 317.175,456.146 C 317.199,456.158 317.225,456.166 317.252,456.169 L 317.443,456.188 L 317.443,456.118 L 317.252,456.098 C 317.234,456.097 317.218,456.091 317.202,456.082 C 317.188,456.075 317.174,456.065 317.162,456.052 C 317.153,456.039 317.144,456.025 317.136,456.008 C 317.131,455.992 317.128,455.975 317.128,455.957 C 317.128,455.94 317.131,455.923 317.137,455.909 C 317.144,455.894 317.153,455.881 317.163,455.872 C 317.174,455.86 317.188,455.852 317.203,455.847 C 317.218,455.841 317.234,455.839 317.252,455.841 L 317.444,455.862 L 317.444,455.791 L 317.252,455.772 L 317.213,455.772 C 317.2,455.772 317.188,455.775 317.175,455.779 Z M 315.037,455.796 L 315.21,455.813 C 315.213,455.813 315.216,455.813 315.218,455.814 C 315.22,455.815 315.222,455.816 315.226,455.818 C 315.231,455.822 315.237,455.826 315.241,455.832 C 315.244,455.839 315.245,455.845 315.245,455.852 C 315.245,455.859 315.244,455.865 315.242,455.87 C 315.24,455.874 315.238,455.877 315.236,455.878 C 315.233,455.881 315.23,455.883 315.226,455.884 C 315.22,455.886 315.217,455.887 315.21,455.886 L 315.037,455.868 L 315.037,455.796 Z M 317.657,455.813 L 317.657,456.14 L 317.498,456.123 L 317.498,456.196 L 317.884,456.235 L 317.884,456.163 L 317.725,456.147 L 317.725,455.82 L 317.657,455.813 Z M 315.436,455.836 L 315.611,455.853 C 315.613,455.854 315.616,455.854 315.618,455.855 C 315.621,455.856 315.623,455.857 315.626,455.858 C 315.631,455.862 315.637,455.867 315.641,455.874 C 315.644,455.88 315.646,455.887 315.646,455.895 C 315.646,455.901 315.644,455.906 315.643,455.91 C 315.641,455.915 315.638,455.918 315.635,455.92 C 315.633,455.922 315.63,455.923 315.627,455.924 C 315.622,455.928 315.617,455.928 315.611,455.928 L 315.436,455.909 L 315.436,455.836 Z M 317.938,455.841 L 317.937,456.239 L 318.007,456.248 L 318.008,455.849 L 317.938,455.841 Z M 318.238,455.874 L 318.075,456.184 L 318.039,456.251 L 318.117,456.258 L 318.153,456.191 L 318.237,456.03 L 318.321,456.21 L 318.356,456.284 L 318.433,456.291 L 318.397,456.218 L 318.238,455.874 Z M 318.53,455.912 C 318.518,455.917 318.508,455.923 318.498,455.931 C 318.489,455.941 318.48,455.951 318.477,455.963 C 318.471,455.975 318.467,455.99 318.467,456.005 L 318.467,456.187 C 318.467,456.203 318.47,456.217 318.476,456.23 C 318.48,456.244 318.488,456.256 318.498,456.266 C 318.507,456.277 318.517,456.287 318.53,456.293 C 318.543,456.3 318.556,456.305 318.571,456.307 L 318.851,456.336 L 318.851,456.264 L 318.571,456.235 C 318.564,456.235 318.557,456.232 318.553,456.228 C 318.548,456.225 318.544,456.22 318.541,456.214 C 318.537,456.209 318.536,456.202 318.536,456.196 L 318.536,456.158 L 318.784,456.184 L 318.784,456.114 L 318.537,456.088 L 318.537,456.012 C 318.537,456.005 318.538,456 318.542,455.995 C 318.544,455.989 318.548,455.985 318.554,455.982 C 318.558,455.98 318.564,455.979 318.572,455.979 L 318.852,456.008 L 318.852,455.936 L 318.572,455.908 C 318.557,455.907 318.543,455.908 318.53,455.912 Z M 319.174,455.969 L 319.173,456.368 L 319.417,456.394 C 319.431,456.394 319.445,456.394 319.458,456.388 C 319.471,456.385 319.48,456.378 319.491,456.369 C 319.5,456.361 319.506,456.349 319.513,456.337 C 319.517,456.324 319.519,456.311 319.519,456.297 C 319.519,456.281 319.517,456.267 319.513,456.254 C 319.508,456.241 319.501,456.23 319.492,456.22 C 319.483,456.21 319.473,456.2 319.46,456.193 C 319.452,456.187 319.44,456.182 319.43,456.181 L 319.486,456.072 L 319.52,456.005 L 319.443,455.998 L 319.408,456.065 L 319.373,456.135 L 319.371,456.138 C 319.364,456.148 319.356,456.155 319.345,456.161 C 319.336,456.165 319.324,456.168 319.313,456.167 L 319.242,456.159 L 319.243,455.976 L 319.174,455.969 Z M 319.641,456.027 C 319.628,456.031 319.616,456.039 319.608,456.047 C 319.598,456.055 319.591,456.065 319.585,456.077 C 319.581,456.091 319.577,456.105 319.577,456.12 L 319.577,456.303 C 319.577,456.318 319.58,456.332 319.585,456.346 C 319.59,456.359 319.598,456.371 319.608,456.382 C 319.616,456.394 319.627,456.401 319.641,456.409 C 319.653,456.416 319.666,456.421 319.68,456.421 L 319.962,456.45 L 319.962,456.38 L 319.68,456.349 C 319.675,456.349 319.668,456.348 319.663,456.343 C 319.659,456.34 319.654,456.335 319.651,456.33 C 319.647,456.323 319.646,456.317 319.646,456.311 L 319.646,456.273 L 319.893,456.298 L 319.893,456.227 L 319.646,456.202 L 319.646,456.128 C 319.646,456.121 319.648,456.115 319.651,456.11 C 319.654,456.104 319.659,456.101 319.664,456.098 C 319.668,456.095 319.675,456.095 319.68,456.095 L 319.962,456.123 L 319.962,456.052 L 319.681,456.023 C 319.667,456.022 319.653,456.024 319.641,456.027 Z M 320.092,456.075 C 320.079,456.079 320.065,456.089 320.053,456.098 C 320.041,456.108 320.034,456.122 320.026,456.136 C 320.021,456.15 320.017,456.166 320.017,456.184 L 320.088,456.19 C 320.088,456.181 320.09,456.171 320.093,456.163 C 320.099,456.156 320.105,456.149 320.112,456.146 C 320.12,456.142 320.128,456.141 320.139,456.142 L 320.26,456.154 C 320.269,456.155 320.279,456.158 320.286,456.163 C 320.292,456.17 320.301,456.176 320.305,456.186 C 320.311,456.196 320.313,456.204 320.313,456.214 C 320.313,456.225 320.311,456.233 320.305,456.241 C 320.301,456.249 320.292,456.254 320.286,456.258 C 320.278,456.262 320.269,456.264 320.26,456.263 L 320.12,456.249 L 320.101,456.249 C 320.093,456.249 320.088,456.251 320.081,456.252 C 320.068,456.256 320.059,456.263 320.048,456.271 C 320.045,456.276 320.039,456.28 320.034,456.287 C 320.029,456.295 320.025,456.305 320.022,456.315 C 320.019,456.324 320.017,456.336 320.017,456.346 L 320.017,456.349 C 320.017,456.363 320.021,456.377 320.025,456.391 C 320.03,456.404 320.037,456.416 320.047,456.427 C 320.058,456.439 320.067,456.447 320.081,456.453 C 320.092,456.461 320.106,456.465 320.12,456.466 L 320.277,456.483 C 320.29,456.484 320.305,456.483 320.317,456.478 C 320.33,456.475 320.341,456.468 320.35,456.459 C 320.359,456.45 320.368,456.44 320.372,456.427 C 320.378,456.415 320.38,456.401 320.38,456.386 L 320.38,456.385 L 320.312,456.376 L 320.312,456.378 C 320.312,456.385 320.311,456.391 320.307,456.396 C 320.304,456.401 320.3,456.405 320.293,456.409 C 320.289,456.411 320.283,456.412 320.277,456.411 L 320.12,456.395 C 320.114,456.394 320.107,456.391 320.103,456.387 C 320.099,456.385 320.093,456.38 320.09,456.374 C 320.088,456.368 320.086,456.362 320.086,456.355 L 320.086,456.352 C 320.086,456.346 320.088,456.341 320.09,456.335 C 320.093,456.33 320.099,456.325 320.103,456.323 C 320.107,456.321 320.114,456.32 320.12,456.32 L 320.26,456.334 L 320.285,456.334 C 320.292,456.333 320.302,456.331 320.309,456.33 C 320.325,456.323 320.338,456.315 320.349,456.303 C 320.35,456.303 320.351,456.301 320.352,456.3 C 320.352,456.299 320.352,456.299 320.354,456.298 C 320.362,456.288 320.369,456.277 320.373,456.264 C 320.379,456.251 320.381,456.236 320.381,456.222 C 320.381,456.204 320.378,456.187 320.371,456.171 C 320.366,456.156 320.357,456.142 320.346,456.13 C 320.334,456.117 320.322,456.106 320.306,456.098 C 320.292,456.091 320.277,456.085 320.26,456.082 L 320.139,456.07 C 320.122,456.068 320.106,456.07 320.092,456.075 Z M 320.438,456.102 L 320.436,456.5 L 320.679,456.524 C 320.694,456.527 320.706,456.524 320.718,456.52 C 320.731,456.516 320.743,456.51 320.754,456.501 L 320.754,456.501 C 320.763,456.491 320.77,456.479 320.776,456.468 C 320.78,456.455 320.783,456.442 320.783,456.427 C 320.783,456.412 320.781,456.398 320.776,456.386 C 320.771,456.372 320.764,456.361 320.756,456.349 C 320.745,456.339 320.735,456.33 320.722,456.323 C 320.714,456.318 320.704,456.315 320.693,456.312 C 320.692,456.312 320.691,456.311 320.69,456.311 L 320.69,456.311 L 320.505,456.291 L 320.505,456.109 L 320.438,456.102 Z M 320.839,456.143 L 320.838,456.542 L 320.905,456.549 L 320.906,456.15 L 320.839,456.143 Z M 320.963,456.155 L 320.963,456.553 L 321.205,456.577 C 321.22,456.581 321.233,456.578 321.246,456.574 C 321.257,456.57 321.267,456.562 321.278,456.555 C 321.287,456.545 321.295,456.536 321.3,456.522 C 321.306,456.51 321.308,456.497 321.309,456.481 C 321.308,456.467 321.306,456.453 321.3,456.44 C 321.295,456.427 321.288,456.413 321.279,456.404 C 321.27,456.394 321.26,456.385 321.247,456.377 C 321.238,456.372 321.228,456.368 321.219,456.365 L 321.273,456.258 L 321.309,456.19 L 321.232,456.182 L 321.196,456.251 L 321.159,456.321 L 321.157,456.323 C 321.151,456.333 321.144,456.342 321.133,456.346 C 321.124,456.351 321.112,456.354 321.1,456.352 L 321.031,456.345 L 321.031,456.161 L 320.963,456.155 Z M 321.343,456.196 L 321.377,456.27 L 321.538,456.613 L 321.699,456.303 L 321.737,456.236 L 321.659,456.228 L 321.623,456.295 L 321.538,456.457 L 321.454,456.278 L 321.419,456.204 L 321.343,456.196 Z M 319.242,456.23 L 319.418,456.249 C 319.421,456.249 319.423,456.251 319.425,456.251 C 319.427,456.251 319.429,456.252 319.431,456.253 C 319.438,456.257 319.443,456.262 319.448,456.268 C 319.451,456.275 319.453,456.281 319.453,456.29 C 319.453,456.295 319.452,456.301 319.449,456.305 C 319.447,456.311 319.443,456.313 319.442,456.315 C 319.44,456.317 319.436,456.318 319.434,456.32 C 319.43,456.321 319.427,456.322 319.426,456.322 L 319.417,456.322 L 319.242,456.303 L 319.242,456.23 Z M 321.926,456.255 L 321.926,456.583 L 321.768,456.568 L 321.768,456.638 L 322.152,456.678 L 322.152,456.607 L 321.995,456.589 L 321.995,456.262 L 321.926,456.255 Z M 322.313,456.311 C 322.289,456.32 322.269,456.331 322.251,456.348 C 322.235,456.363 322.22,456.384 322.209,456.407 C 322.201,456.429 322.195,456.455 322.195,456.483 C 322.195,456.51 322.199,456.536 322.209,456.562 C 322.22,456.587 322.234,456.61 322.251,456.629 C 322.268,456.649 322.289,456.665 322.312,456.678 C 322.336,456.691 322.361,456.699 322.386,456.702 C 322.416,456.704 322.439,456.702 322.461,456.694 C 322.485,456.686 322.507,456.674 322.525,456.657 C 322.542,456.641 322.555,456.621 322.564,456.598 C 322.575,456.575 322.579,456.549 322.58,456.522 C 322.579,456.495 322.575,456.468 322.565,456.444 C 322.555,456.419 322.542,456.396 322.525,456.375 C 322.508,456.356 322.486,456.34 322.463,456.328 C 322.44,456.315 322.416,456.307 322.388,456.303 L 322.349,456.303 C 322.337,456.305 322.326,456.309 322.313,456.311 Z M 322.622,456.328 L 322.622,456.724 L 322.865,456.75 C 322.878,456.75 322.892,456.75 322.904,456.746 C 322.917,456.742 322.928,456.735 322.938,456.727 C 322.948,456.717 322.955,456.706 322.959,456.695 C 322.965,456.682 322.968,456.669 322.968,456.654 C 322.968,456.64 322.965,456.626 322.961,456.612 C 322.956,456.599 322.95,456.587 322.938,456.575 C 322.93,456.566 322.919,456.556 322.908,456.549 C 322.897,456.544 322.888,456.54 322.877,456.538 L 322.933,456.43 L 322.968,456.362 L 322.891,456.355 L 322.857,456.423 L 322.818,456.492 L 322.817,456.496 C 322.81,456.505 322.803,456.513 322.793,456.518 C 322.783,456.523 322.771,456.524 322.758,456.523 L 322.69,456.517 L 322.69,456.334 L 322.622,456.328 Z M 320.505,456.362 L 320.68,456.38 C 320.682,456.381 320.685,456.381 320.688,456.382 C 320.69,456.383 320.692,456.384 320.694,456.385 L 320.694,456.386 C 320.699,456.389 320.705,456.394 320.709,456.4 C 320.713,456.407 320.714,456.413 320.715,456.422 C 320.714,456.427 320.714,456.434 320.711,456.437 C 320.708,456.442 320.706,456.445 320.705,456.446 C 320.702,456.449 320.699,456.45 320.695,456.452 C 320.691,456.453 320.686,456.454 320.68,456.453 L 320.505,456.436 L 320.505,456.362 Z M 322.388,456.375 C 322.406,456.376 322.421,456.381 322.435,456.389 C 322.45,456.398 322.464,456.409 322.474,456.422 C 322.486,456.435 322.495,456.449 322.501,456.465 C 322.51,456.481 322.512,456.497 322.512,456.515 C 322.512,456.534 322.509,456.549 322.501,456.564 C 322.495,456.58 322.486,456.592 322.474,456.602 C 322.463,456.613 322.45,456.621 322.435,456.626 C 322.421,456.63 322.405,456.631 322.386,456.63 C 322.37,456.627 322.354,456.623 322.339,456.615 C 322.326,456.608 322.312,456.597 322.3,456.585 C 322.288,456.571 322.279,456.556 322.273,456.541 C 322.267,456.523 322.264,456.508 322.263,456.491 C 322.264,456.472 322.267,456.455 322.273,456.44 C 322.279,456.426 322.288,456.413 322.3,456.403 C 322.312,456.394 322.326,456.385 322.34,456.38 C 322.354,456.375 322.37,456.372 322.388,456.375 Z M 321.031,456.416 L 321.205,456.435 C 321.209,456.435 321.21,456.436 321.212,456.437 C 321.215,456.437 321.217,456.438 321.22,456.439 C 321.227,456.443 321.231,456.448 321.234,456.453 C 321.238,456.461 321.24,456.467 321.24,456.474 C 321.24,456.481 321.238,456.487 321.236,456.491 C 321.234,456.494 321.232,456.497 321.23,456.5 C 321.228,456.502 321.224,456.504 321.22,456.505 C 321.216,456.506 321.21,456.507 321.205,456.507 L 321.031,456.489 L 321.031,456.416 Z M 322.69,456.588 L 322.865,456.607 C 322.868,456.607 322.869,456.607 322.872,456.608 C 322.874,456.61 322.876,456.61 322.878,456.611 C 322.885,456.614 322.89,456.62 322.893,456.626 C 322.897,456.631 322.899,456.639 322.899,456.646 C 322.899,456.653 322.897,456.658 322.895,456.662 C 322.893,456.666 322.891,456.669 322.889,456.671 C 322.887,456.673 322.883,456.675 322.88,456.677 C 322.876,456.679 322.871,456.68 322.865,456.679 L 322.69,456.662 L 322.69,456.588 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 310.098,468.865 L 309.924,469.026 L 327.332,470.16 L 327.421,470.123 C 327.45,470.112 327.481,470.084 327.481,470.039 L 327.481,469.996 L 310.098,468.865 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 309.924,469.026 L 309.923,445.575 L 310.011,445.49 L 310.098,445.504 L 310.098,468.864 L 309.924,469.026 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--ESPRESSO, .KN95_NR_individuals--ESPRESSO {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.433 -517.463 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.846' gradientTransform='translate(30.075 489.993)'%3E%3Cstop offset='0' stop-color='%232e2926'/%3E%3Cstop offset='1' stop-color='%233c3631'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.919' gradientTransform='translate(26.536 490.609)'%3E%3Cstop offset='0' stop-color='%2326221f'/%3E%3Cstop offset='1' stop-color='%23332e2a'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.101' gradientTransform='translate(30.069 509.975)'%3E%3Cstop offset='0' stop-color='%232d2925'/%3E%3Cstop offset='1' stop-color='%23342f2b'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.23' gradientTransform='translate(25.396 512.032)'%3E%3Cstop offset='0' stop-color='%2324201e'/%3E%3Cstop offset='1' stop-color='%232d2925'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(38.388 511.847) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%232f2a27'/%3E%3Cstop offset='1' stop-color='%2335302c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.243 499.735) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%232c2824'/%3E%3Cstop offset='1' stop-color='%23332e2a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.162 500.734) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.162,487.578 L 27.162,511.065 L 44.609,512.184 C 44.621,512.17 44.631,512.151 44.631,512.127 L 44.631,489.946 L 27.162,487.578 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.162,487.578 L 23.698,490.941 L 23.697,512.962 L 27.162,511.065 L 27.162,487.578 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.162,511.065 L 23.697,512.962 L 40.629,513.892 L 44.573,512.211 C 44.586,512.206 44.599,512.196 44.609,512.184 L 27.162,511.065 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.075,510.797 L 23.695,512.686 L 23.694,512.962 L 27.075,511.111 L 27.075,510.797 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.203,493.18 L 34.203,493.591 L 34.275,493.599 L 34.275,493.188 L 34.203,493.18 Z M 34.333,493.194 L 34.333,493.603 L 34.405,493.554 L 34.667,493.38 L 34.667,493.641 L 34.738,493.649 L 34.738,493.238 L 34.667,493.288 L 34.405,493.462 L 34.405,493.202 L 34.333,493.194 Z M 34.796,493.244 L 34.796,493.655 L 34.999,493.676 C 35.027,493.68 35.053,493.677 35.076,493.668 C 35.101,493.662 35.123,493.649 35.142,493.632 C 35.16,493.615 35.174,493.596 35.184,493.572 C 35.195,493.548 35.201,493.522 35.201,493.495 C 35.201,493.468 35.197,493.444 35.188,493.421 C 35.179,493.398 35.167,493.377 35.152,493.357 C 35.151,493.354 35.149,493.352 35.147,493.35 C 35.145,493.347 35.144,493.345 35.14,493.342 C 35.123,493.321 35.101,493.305 35.076,493.292 C 35.054,493.279 35.028,493.27 34.999,493.267 L 34.796,493.244 Z M 35.258,493.295 L 35.258,493.706 L 35.332,493.713 L 35.332,493.303 L 35.258,493.295 Z M 34.868,493.325 L 34.999,493.339 C 35.016,493.342 35.033,493.347 35.048,493.355 C 35.065,493.365 35.078,493.376 35.09,493.389 C 35.101,493.401 35.112,493.417 35.119,493.432 C 35.125,493.45 35.128,493.467 35.129,493.486 C 35.128,493.504 35.125,493.52 35.119,493.535 C 35.112,493.552 35.101,493.564 35.09,493.574 C 35.078,493.586 35.065,493.594 35.048,493.599 C 35.033,493.604 35.016,493.605 34.999,493.604 L 34.868,493.59 L 34.868,493.325 Z M 35.573,493.329 L 35.402,493.648 L 35.365,493.718 L 35.447,493.725 L 35.483,493.655 L 35.573,493.491 L 35.661,493.676 L 35.697,493.752 L 35.778,493.762 L 35.741,493.684 L 35.573,493.329 Z M 35.814,493.355 L 35.814,493.765 L 35.887,493.773 L 35.887,493.364 L 35.814,493.355 Z M 35.945,493.371 L 35.945,493.779 L 36.147,493.801 C 36.175,493.805 36.201,493.801 36.226,493.794 C 36.25,493.786 36.271,493.774 36.289,493.757 C 36.309,493.741 36.322,493.72 36.333,493.697 C 36.344,493.673 36.349,493.648 36.349,493.618 C 36.349,493.594 36.345,493.569 36.337,493.546 C 36.328,493.522 36.317,493.501 36.301,493.482 C 36.299,493.48 36.297,493.477 36.295,493.475 C 36.294,493.471 36.292,493.469 36.288,493.467 C 36.27,493.447 36.25,493.429 36.226,493.416 C 36.201,493.403 36.175,493.395 36.147,493.391 L 35.945,493.371 Z M 36.533,493.45 C 36.507,493.456 36.485,493.469 36.467,493.487 C 36.448,493.504 36.434,493.523 36.423,493.546 C 36.414,493.571 36.408,493.598 36.408,493.625 L 36.408,493.83 L 36.479,493.838 L 36.479,493.633 C 36.479,493.614 36.483,493.598 36.489,493.582 C 36.496,493.568 36.506,493.554 36.519,493.545 C 36.531,493.533 36.544,493.525 36.56,493.52 C 36.575,493.515 36.591,493.513 36.61,493.515 C 36.628,493.518 36.645,493.522 36.66,493.531 C 36.676,493.539 36.69,493.551 36.702,493.564 C 36.713,493.577 36.723,493.592 36.729,493.61 C 36.737,493.625 36.74,493.643 36.74,493.662 L 36.74,493.866 L 36.813,493.874 L 36.813,493.668 C 36.813,493.641 36.807,493.614 36.797,493.588 C 36.785,493.561 36.772,493.538 36.752,493.518 C 36.735,493.497 36.713,493.481 36.688,493.466 C 36.665,493.454 36.638,493.445 36.61,493.442 C 36.581,493.439 36.556,493.442 36.533,493.45 Z M 36.016,493.45 L 36.147,493.464 C 36.164,493.466 36.18,493.471 36.197,493.481 C 36.213,493.489 36.227,493.5 36.239,493.513 C 36.251,493.527 36.26,493.541 36.266,493.558 C 36.273,493.574 36.276,493.592 36.277,493.611 C 36.276,493.628 36.273,493.646 36.266,493.661 C 36.26,493.676 36.251,493.688 36.239,493.701 C 36.227,493.71 36.213,493.718 36.197,493.723 C 36.18,493.729 36.164,493.73 36.147,493.728 L 36.016,493.714 L 36.016,493.45 Z M 36.848,493.467 L 36.884,493.546 L 37.053,493.9 L 37.224,493.582 L 37.26,493.513 L 37.18,493.504 L 37.143,493.572 L 37.053,493.739 L 36.966,493.553 L 36.928,493.477 L 36.848,493.467 Z M 37.395,493.531 C 37.384,493.532 37.376,493.533 37.367,493.537 C 37.354,493.543 37.343,493.55 37.333,493.559 C 37.324,493.569 37.315,493.578 37.309,493.591 C 37.305,493.6 37.302,493.609 37.3,493.617 C 37.297,493.627 37.296,493.636 37.296,493.648 L 37.296,493.927 L 37.367,493.934 L 37.367,493.648 C 37.369,493.639 37.371,493.631 37.376,493.625 C 37.38,493.618 37.385,493.614 37.393,493.611 C 37.401,493.605 37.41,493.604 37.417,493.604 L 37.63,493.625 L 37.63,493.552 L 37.424,493.53 C 37.414,493.529 37.404,493.53 37.395,493.531 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.001,499.909 L 31.999,501.96 L 32.337,501.996 L 32.339,500.947 L 32.618,501.251 L 32.869,501.524 L 33.397,502.103 L 33.9,502.154 L 33.071,501.246 L 33.895,500.102 L 33.477,500.059 L 32.82,500.971 L 32.339,500.452 L 32.339,499.943 L 32.001,499.909 Z M 34.067,500.12 L 34.241,500.504 L 35.034,502.269 L 35.831,500.666 L 36.004,500.317 L 35.626,500.278 L 35.452,500.627 L 35.035,501.465 L 34.62,500.543 L 34.448,500.159 L 34.067,500.12 Z M 36.176,500.334 L 36.178,500.334 L 36.439,500.726 L 36.904,501.43 L 37.12,501.751 L 37.378,502.143 L 36.171,502.019 L 36.171,502.384 L 37.639,502.535 L 38.064,502.577 L 37.801,502.184 L 37.33,501.473 L 37.118,501.151 L 36.862,500.771 L 38.075,500.893 L 38.076,500.525 L 36.607,500.378 L 36.603,500.378 L 36.176,500.334 Z M 38.651,500.628 C 38.591,500.653 38.536,500.686 38.489,500.732 C 38.443,500.778 38.406,500.833 38.38,500.897 C 38.354,500.961 38.341,501.032 38.34,501.108 L 38.339,502.052 C 38.339,502.129 38.351,502.203 38.378,502.271 C 38.405,502.341 38.44,502.402 38.488,502.459 C 38.534,502.513 38.588,502.559 38.65,502.593 C 38.711,502.629 38.778,502.65 38.849,502.658 L 40.234,502.798 L 40.234,502.433 L 38.849,502.291 C 38.816,502.286 38.787,502.276 38.761,502.257 C 38.735,502.237 38.714,502.213 38.699,502.183 C 38.683,502.153 38.676,502.121 38.676,502.086 L 38.676,501.895 L 39.896,502.02 L 39.896,501.654 L 38.676,501.531 L 38.676,501.143 C 38.676,501.107 38.684,501.078 38.701,501.052 C 38.716,501.024 38.737,501.003 38.763,500.989 C 38.789,500.975 38.817,500.969 38.851,500.971 L 40.236,501.113 L 40.237,500.747 L 38.851,500.605 C 38.78,500.6 38.714,500.606 38.651,500.628 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.004,498.818 L 34.004,499.256 C 34.004,499.278 34.009,499.299 34.016,499.321 C 34.024,499.341 34.035,499.36 34.05,499.375 C 34.065,499.391 34.081,499.404 34.101,499.415 C 34.121,499.425 34.141,499.432 34.163,499.435 L 34.596,499.48 L 34.596,499.374 L 34.163,499.328 C 34.154,499.326 34.145,499.323 34.136,499.316 C 34.128,499.31 34.123,499.304 34.117,499.296 C 34.112,499.286 34.11,499.278 34.11,499.267 L 34.11,499.212 L 34.491,499.251 L 34.491,499.144 L 34.11,499.104 L 34.11,498.83 L 34.004,498.818 Z M 34.682,498.891 L 34.682,499.328 C 34.682,499.349 34.686,499.371 34.694,499.391 C 34.701,499.412 34.712,499.429 34.727,499.446 C 34.742,499.463 34.759,499.476 34.778,499.487 C 34.797,499.497 34.817,499.504 34.841,499.506 L 35.273,499.551 L 35.274,499.445 L 34.841,499.399 C 34.831,499.397 34.822,499.394 34.814,499.389 C 34.806,499.382 34.8,499.375 34.795,499.367 C 34.79,499.358 34.788,499.349 34.788,499.339 L 34.788,499.283 L 35.168,499.324 L 35.168,499.217 L 34.787,499.175 L 34.788,498.901 L 34.682,498.891 Z M 35.359,498.962 L 35.358,499.562 L 35.732,499.601 C 35.754,499.603 35.775,499.601 35.793,499.594 C 35.813,499.588 35.829,499.579 35.844,499.566 L 35.845,499.564 C 35.861,499.55 35.871,499.535 35.88,499.516 C 35.887,499.497 35.893,499.478 35.893,499.455 C 35.893,499.433 35.887,499.412 35.881,499.392 C 35.872,499.372 35.862,499.354 35.847,499.338 C 35.834,499.323 35.817,499.308 35.799,499.297 C 35.785,499.289 35.77,499.283 35.753,499.28 C 35.752,499.28 35.75,499.28 35.749,499.279 L 35.749,499.278 L 35.465,499.248 L 35.465,498.973 L 35.359,498.962 Z M 35.976,499.025 L 35.976,499.201 C 35.976,499.215 35.977,499.226 35.979,499.238 C 35.982,499.249 35.986,499.261 35.989,499.272 C 35.998,499.294 36.01,499.313 36.026,499.33 C 36.041,499.349 36.058,499.363 36.079,499.375 C 36.099,499.385 36.12,499.392 36.144,499.396 L 36.397,499.423 L 36.4,499.423 C 36.412,499.426 36.423,499.432 36.433,499.439 C 36.442,499.446 36.449,499.455 36.454,499.466 C 36.46,499.476 36.462,499.488 36.462,499.5 C 36.462,499.513 36.459,499.524 36.453,499.535 C 36.447,499.544 36.44,499.551 36.429,499.557 C 36.418,499.563 36.407,499.565 36.393,499.564 L 35.977,499.519 L 35.977,499.626 L 36.393,499.671 C 36.418,499.673 36.442,499.671 36.462,499.664 C 36.482,499.657 36.5,499.646 36.518,499.631 C 36.534,499.617 36.546,499.6 36.554,499.58 C 36.564,499.56 36.568,499.536 36.568,499.511 C 36.568,499.499 36.567,499.487 36.565,499.476 C 36.562,499.464 36.559,499.452 36.553,499.441 C 36.551,499.429 36.546,499.42 36.539,499.411 C 36.534,499.402 36.527,499.392 36.52,499.384 C 36.504,499.366 36.485,499.351 36.465,499.34 C 36.444,499.328 36.423,499.322 36.399,499.316 L 36.397,499.316 C 36.396,499.316 36.395,499.316 36.393,499.316 L 36.144,499.29 C 36.132,499.288 36.122,499.283 36.113,499.275 C 36.103,499.268 36.095,499.259 36.09,499.248 C 36.085,499.238 36.083,499.227 36.083,499.215 L 36.083,499.145 L 36.566,499.194 L 36.566,499.087 L 36.149,499.043 L 35.976,499.025 Z M 37.066,499.142 L 37.066,499.738 L 37.171,499.669 L 37.552,499.411 L 37.552,499.793 L 37.657,499.803 L 37.658,499.204 L 37.552,499.275 L 37.171,499.531 L 37.171,499.153 L 37.066,499.142 Z M 37.743,499.214 L 37.742,499.814 L 38.116,499.852 C 38.137,499.855 38.158,499.853 38.178,499.846 C 38.198,499.839 38.214,499.829 38.228,499.816 C 38.242,499.804 38.254,499.788 38.262,499.769 C 38.27,499.749 38.275,499.729 38.275,499.707 C 38.275,499.685 38.27,499.665 38.263,499.643 C 38.255,499.624 38.244,499.606 38.23,499.59 C 38.217,499.574 38.2,499.561 38.183,499.55 C 38.167,499.542 38.152,499.535 38.136,499.53 L 38.222,499.371 L 38.275,499.27 L 38.157,499.257 L 38.103,499.358 L 38.046,499.465 L 38.043,499.469 C 38.034,499.484 38.022,499.495 38.005,499.502 C 37.991,499.51 37.973,499.512 37.953,499.51 L 37.849,499.499 L 37.85,499.225 L 37.743,499.214 Z M 35.465,499.354 L 35.733,499.382 C 35.736,499.382 35.739,499.383 35.745,499.384 C 35.748,499.387 35.751,499.388 35.755,499.39 L 35.755,499.39 C 35.765,499.395 35.773,499.403 35.778,499.413 C 35.784,499.421 35.787,499.433 35.787,499.443 C 35.787,499.454 35.785,499.461 35.781,499.468 C 35.778,499.474 35.774,499.479 35.771,499.482 C 35.767,499.484 35.763,499.487 35.756,499.49 C 35.75,499.492 35.741,499.493 35.733,499.492 L 35.465,499.465 L 35.465,499.354 Z M 37.849,499.606 L 38.116,499.634 C 38.12,499.635 38.123,499.635 38.127,499.637 C 38.131,499.639 38.134,499.64 38.137,499.641 C 38.147,499.647 38.155,499.657 38.16,499.666 C 38.166,499.675 38.171,499.685 38.171,499.696 C 38.169,499.706 38.167,499.714 38.163,499.72 C 38.159,499.727 38.157,499.73 38.153,499.733 C 38.15,499.736 38.146,499.74 38.139,499.742 C 38.133,499.744 38.125,499.746 38.116,499.744 L 37.848,499.717 L 37.849,499.606 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.118,497.622 L 32.118,498.02 L 32.36,498.045 C 32.375,498.046 32.388,498.045 32.401,498.041 C 32.412,498.037 32.424,498.032 32.434,498.022 L 32.434,498.02 C 32.444,498.012 32.451,498.002 32.456,497.989 C 32.461,497.976 32.465,497.963 32.465,497.948 C 32.465,497.934 32.462,497.919 32.457,497.906 C 32.452,497.893 32.446,497.881 32.436,497.87 C 32.427,497.859 32.415,497.851 32.404,497.844 C 32.395,497.838 32.385,497.834 32.375,497.833 C 32.373,497.833 32.372,497.832 32.371,497.832 L 32.371,497.832 L 32.187,497.813 L 32.187,497.63 L 32.118,497.622 Z M 32.518,497.662 L 32.518,498.06 L 32.762,498.086 C 32.777,498.087 32.79,498.086 32.802,498.082 C 32.814,498.077 32.825,498.071 32.834,498.062 C 32.844,498.053 32.851,498.043 32.858,498.032 C 32.862,498.019 32.865,498.005 32.866,497.99 C 32.865,497.975 32.862,497.961 32.859,497.948 C 32.851,497.935 32.845,497.924 32.836,497.913 C 32.827,497.902 32.817,497.893 32.805,497.886 C 32.795,497.879 32.786,497.875 32.776,497.873 L 32.83,497.766 L 32.866,497.699 L 32.789,497.69 L 32.753,497.756 L 32.716,497.829 L 32.714,497.832 C 32.709,497.842 32.7,497.849 32.691,497.853 C 32.679,497.859 32.669,497.86 32.657,497.859 L 32.588,497.852 L 32.588,497.67 L 32.518,497.662 Z M 33.025,497.731 C 33.003,497.739 32.982,497.752 32.965,497.767 C 32.946,497.785 32.932,497.805 32.924,497.826 C 32.913,497.851 32.909,497.875 32.907,497.903 C 32.909,497.931 32.913,497.957 32.923,497.98 C 32.932,498.007 32.946,498.03 32.963,498.05 C 32.982,498.069 33.002,498.086 33.025,498.098 C 33.048,498.112 33.072,498.12 33.1,498.123 C 33.126,498.125 33.151,498.123 33.176,498.115 C 33.197,498.105 33.219,498.095 33.236,498.077 C 33.254,498.061 33.268,498.043 33.277,498.019 C 33.287,497.995 33.292,497.969 33.292,497.942 C 33.292,497.915 33.287,497.89 33.277,497.863 C 33.268,497.838 33.254,497.818 33.237,497.797 C 33.22,497.777 33.197,497.759 33.176,497.747 C 33.151,497.735 33.127,497.727 33.101,497.723 L 33.062,497.724 C 33.049,497.726 33.037,497.728 33.025,497.731 Z M 33.492,497.764 L 33.492,498.091 L 33.335,498.075 L 33.335,498.146 L 33.718,498.187 L 33.718,498.116 L 33.563,498.098 L 33.563,497.77 L 33.492,497.764 Z M 33.101,497.795 C 33.118,497.797 33.134,497.802 33.149,497.81 C 33.164,497.819 33.177,497.829 33.187,497.842 C 33.198,497.853 33.209,497.869 33.215,497.886 C 33.221,497.902 33.225,497.918 33.225,497.936 C 33.225,497.953 33.221,497.969 33.215,497.984 C 33.209,498 33.198,498.013 33.187,498.023 C 33.176,498.033 33.163,498.041 33.149,498.045 C 33.133,498.051 33.118,498.052 33.1,498.051 C 33.083,498.05 33.066,498.045 33.052,498.036 C 33.037,498.028 33.023,498.018 33.012,498.005 C 33.002,497.991 32.993,497.978 32.986,497.96 C 32.981,497.944 32.976,497.928 32.976,497.911 C 32.976,497.893 32.981,497.875 32.986,497.86 C 32.993,497.846 33.002,497.834 33.013,497.824 C 33.024,497.813 33.037,497.805 33.052,497.8 C 33.066,497.795 33.084,497.794 33.101,497.795 Z M 33.837,497.809 C 33.827,497.813 33.815,497.819 33.806,497.829 C 33.796,497.838 33.789,497.847 33.783,497.86 C 33.778,497.872 33.777,497.887 33.777,497.902 L 33.776,498.085 C 33.777,498.099 33.777,498.115 33.783,498.128 C 33.789,498.141 33.796,498.153 33.806,498.164 C 33.815,498.175 33.825,498.183 33.837,498.19 C 33.85,498.196 33.864,498.201 33.878,498.203 L 34.16,498.233 L 34.16,498.161 L 33.878,498.132 C 33.873,498.13 33.866,498.129 33.86,498.125 C 33.856,498.122 33.851,498.117 33.848,498.111 C 33.845,498.103 33.843,498.098 33.843,498.091 L 33.843,498.055 L 34.092,498.08 L 34.092,498.009 L 33.843,497.983 L 33.844,497.91 C 33.844,497.902 33.845,497.897 33.848,497.891 C 33.851,497.886 33.856,497.881 33.86,497.878 C 33.866,497.875 33.874,497.875 33.878,497.875 L 34.16,497.905 L 34.16,497.834 L 33.879,497.805 C 33.864,497.803 33.851,497.805 33.837,497.809 Z M 34.326,497.866 C 34.303,497.874 34.284,497.887 34.266,497.903 C 34.248,497.919 34.234,497.939 34.224,497.961 C 34.215,497.985 34.209,498.011 34.209,498.038 C 34.209,498.065 34.215,498.091 34.224,498.117 C 34.234,498.142 34.248,498.164 34.266,498.185 C 34.284,498.204 34.303,498.221 34.326,498.234 C 34.35,498.247 34.375,498.254 34.402,498.258 L 34.594,498.277 L 34.594,498.205 L 34.402,498.186 C 34.384,498.184 34.369,498.178 34.353,498.17 C 34.339,498.163 34.325,498.153 34.313,498.139 C 34.303,498.127 34.293,498.114 34.287,498.096 C 34.282,498.08 34.278,498.063 34.278,498.045 C 34.278,498.028 34.282,498.011 34.287,497.995 C 34.293,497.98 34.303,497.968 34.314,497.958 C 34.325,497.948 34.339,497.94 34.354,497.935 C 34.369,497.929 34.384,497.928 34.402,497.929 L 34.594,497.95 L 34.594,497.878 L 34.402,497.858 L 34.363,497.858 C 34.351,497.859 34.339,497.862 34.326,497.866 Z M 32.187,497.883 L 32.361,497.901 C 32.363,497.902 32.367,497.902 32.369,497.903 C 32.371,497.903 32.373,497.904 32.376,497.906 C 32.382,497.91 32.387,497.914 32.391,497.921 C 32.395,497.927 32.395,497.934 32.395,497.941 C 32.395,497.947 32.395,497.953 32.393,497.956 C 32.39,497.961 32.388,497.965 32.386,497.966 C 32.383,497.967 32.38,497.969 32.376,497.971 C 32.372,497.974 32.368,497.974 32.361,497.974 L 32.187,497.956 L 32.187,497.883 Z M 34.807,497.902 L 34.807,498.228 L 34.649,498.211 L 34.649,498.284 L 35.034,498.323 L 35.034,498.252 L 34.876,498.234 L 34.876,497.909 L 34.807,497.902 Z M 32.588,497.924 L 32.762,497.942 C 32.763,497.942 32.767,497.942 32.77,497.943 C 32.772,497.943 32.774,497.945 32.777,497.946 C 32.783,497.95 32.788,497.955 32.792,497.961 C 32.795,497.967 32.797,497.974 32.797,497.981 C 32.797,497.989 32.795,497.993 32.794,497.999 C 32.792,498.003 32.789,498.006 32.787,498.007 C 32.785,498.009 32.781,498.011 32.778,498.013 C 32.774,498.015 32.768,498.016 32.762,498.015 L 32.588,497.997 L 32.588,497.924 Z M 35.089,497.929 L 35.088,498.328 L 35.158,498.336 L 35.158,497.937 L 35.089,497.929 Z M 35.388,497.961 L 35.226,498.271 L 35.189,498.339 L 35.267,498.347 L 35.304,498.279 L 35.387,498.118 L 35.471,498.297 L 35.506,498.372 L 35.583,498.381 L 35.548,498.304 L 35.388,497.961 Z M 35.681,498 C 35.669,498.005 35.659,498.011 35.649,498.02 C 35.64,498.028 35.632,498.039 35.627,498.052 C 35.621,498.063 35.617,498.077 35.617,498.091 L 35.617,498.276 C 35.617,498.29 35.62,498.303 35.626,498.317 C 35.63,498.331 35.639,498.343 35.649,498.355 C 35.658,498.365 35.669,498.375 35.681,498.381 C 35.693,498.388 35.706,498.392 35.721,498.394 L 36.002,498.423 L 36.002,498.352 L 35.721,498.323 C 35.713,498.322 35.708,498.319 35.703,498.316 C 35.698,498.312 35.694,498.308 35.691,498.301 C 35.687,498.296 35.686,498.29 35.686,498.284 L 35.686,498.246 L 35.935,498.271 L 35.935,498.201 L 35.687,498.175 L 35.687,498.099 C 35.687,498.092 35.688,498.087 35.692,498.082 C 35.694,498.077 35.698,498.071 35.704,498.07 C 35.708,498.067 35.714,498.065 35.722,498.066 L 36.003,498.096 L 36.003,498.025 L 35.722,497.995 C 35.707,497.993 35.693,497.995 35.681,498 Z M 36.326,498.058 L 36.324,498.455 L 36.567,498.482 C 36.581,498.483 36.595,498.482 36.608,498.477 C 36.62,498.472 36.632,498.466 36.642,498.458 C 36.651,498.448 36.658,498.438 36.664,498.425 C 36.668,498.412 36.671,498.399 36.671,498.384 C 36.671,498.369 36.668,498.355 36.664,498.342 C 36.659,498.329 36.652,498.316 36.643,498.307 C 36.634,498.297 36.623,498.287 36.61,498.281 C 36.602,498.275 36.591,498.271 36.581,498.269 L 36.637,498.161 L 36.671,498.092 L 36.594,498.085 L 36.56,498.153 L 36.523,498.223 L 36.521,498.226 C 36.515,498.236 36.506,498.244 36.495,498.249 C 36.486,498.253 36.475,498.256 36.463,498.255 L 36.393,498.247 L 36.393,498.064 L 36.326,498.058 Z M 36.791,498.116 C 36.778,498.119 36.767,498.127 36.759,498.135 C 36.749,498.143 36.742,498.154 36.737,498.166 C 36.731,498.178 36.727,498.193 36.727,498.207 L 36.727,498.391 C 36.727,498.406 36.731,498.419 36.736,498.432 C 36.741,498.447 36.748,498.459 36.759,498.471 C 36.767,498.482 36.778,498.49 36.791,498.497 C 36.803,498.503 36.816,498.508 36.83,498.509 L 37.113,498.537 L 37.113,498.467 L 36.83,498.439 C 36.825,498.438 36.818,498.434 36.813,498.43 C 36.81,498.427 36.804,498.422 36.801,498.417 C 36.798,498.41 36.796,498.405 36.796,498.397 L 36.796,498.362 L 37.043,498.386 L 37.043,498.315 L 36.797,498.29 L 36.797,498.215 C 36.797,498.207 36.798,498.202 36.801,498.196 C 36.804,498.192 36.81,498.188 36.813,498.185 C 36.819,498.182 36.825,498.181 36.83,498.181 L 37.114,498.211 L 37.114,498.14 L 36.831,498.111 C 36.817,498.11 36.804,498.112 36.791,498.116 Z M 37.242,498.163 C 37.228,498.168 37.216,498.176 37.204,498.186 C 37.192,498.195 37.185,498.209 37.177,498.224 C 37.171,498.238 37.167,498.254 37.167,498.271 L 37.238,498.278 C 37.238,498.268 37.24,498.258 37.243,498.252 C 37.249,498.244 37.255,498.238 37.262,498.234 C 37.271,498.23 37.278,498.229 37.29,498.229 L 37.411,498.242 C 37.42,498.243 37.43,498.247 37.438,498.252 C 37.444,498.258 37.451,498.264 37.456,498.274 C 37.461,498.283 37.463,498.291 37.463,498.302 C 37.463,498.312 37.461,498.321 37.456,498.329 C 37.451,498.337 37.444,498.342 37.438,498.347 C 37.429,498.35 37.42,498.352 37.411,498.351 L 37.271,498.337 L 37.251,498.337 C 37.243,498.337 37.238,498.339 37.232,498.341 C 37.219,498.344 37.21,498.351 37.199,498.359 C 37.195,498.363 37.19,498.368 37.185,498.375 C 37.18,498.383 37.175,498.392 37.172,498.402 C 37.169,498.412 37.167,498.423 37.167,498.433 L 37.167,498.436 C 37.167,498.452 37.171,498.465 37.175,498.478 C 37.181,498.492 37.188,498.504 37.198,498.515 C 37.209,498.526 37.218,498.535 37.23,498.541 C 37.243,498.549 37.256,498.553 37.271,498.554 L 37.427,498.571 C 37.441,498.573 37.454,498.571 37.467,498.567 C 37.48,498.562 37.491,498.556 37.5,498.548 C 37.51,498.537 37.518,498.527 37.523,498.515 C 37.529,498.503 37.531,498.49 37.531,498.474 L 37.531,498.472 L 37.462,498.464 L 37.462,498.466 C 37.462,498.473 37.461,498.478 37.457,498.484 C 37.454,498.49 37.45,498.493 37.444,498.497 C 37.44,498.498 37.434,498.5 37.427,498.499 L 37.271,498.484 C 37.264,498.483 37.258,498.48 37.253,498.476 C 37.249,498.472 37.243,498.467 37.24,498.461 C 37.238,498.456 37.237,498.45 37.237,498.443 L 37.237,498.44 C 37.237,498.432 37.238,498.428 37.24,498.422 C 37.243,498.417 37.249,498.413 37.253,498.41 C 37.258,498.408 37.264,498.406 37.271,498.407 L 37.411,498.421 L 37.436,498.421 C 37.443,498.419 37.452,498.419 37.459,498.416 C 37.475,498.41 37.488,498.402 37.5,498.391 C 37.5,498.391 37.501,498.39 37.502,498.388 C 37.502,498.387 37.502,498.387 37.504,498.386 C 37.513,498.376 37.52,498.365 37.524,498.352 C 37.53,498.339 37.532,498.323 37.532,498.309 C 37.532,498.291 37.529,498.275 37.522,498.258 C 37.517,498.244 37.508,498.229 37.496,498.218 C 37.484,498.204 37.472,498.193 37.457,498.185 C 37.443,498.178 37.427,498.172 37.411,498.17 L 37.29,498.158 C 37.273,498.156 37.256,498.158 37.242,498.163 Z M 37.588,498.19 L 37.586,498.587 L 37.83,498.613 C 37.844,498.614 37.857,498.613 37.869,498.608 C 37.882,498.605 37.893,498.598 37.904,498.588 L 37.904,498.588 C 37.913,498.579 37.92,498.568 37.926,498.556 C 37.93,498.542 37.933,498.529 37.933,498.515 C 37.933,498.5 37.932,498.486 37.926,498.474 C 37.921,498.459 37.914,498.448 37.906,498.438 C 37.896,498.426 37.887,498.418 37.874,498.411 C 37.865,498.406 37.855,498.402 37.844,498.4 C 37.843,498.4 37.842,498.399 37.841,498.399 L 37.841,498.399 L 37.656,498.38 L 37.656,498.196 L 37.588,498.19 Z M 37.99,498.231 L 37.989,498.629 L 38.056,498.635 L 38.057,498.238 L 37.99,498.231 Z M 38.114,498.242 L 38.113,498.64 L 38.355,498.665 C 38.37,498.668 38.383,498.666 38.397,498.662 C 38.409,498.659 38.418,498.65 38.429,498.642 C 38.438,498.632 38.445,498.622 38.45,498.61 C 38.456,498.598 38.458,498.585 38.459,498.569 C 38.458,498.555 38.456,498.541 38.451,498.528 C 38.446,498.515 38.439,498.502 38.431,498.491 C 38.422,498.482 38.411,498.473 38.399,498.465 C 38.388,498.459 38.378,498.457 38.369,498.453 L 38.424,498.347 L 38.459,498.278 L 38.382,498.27 L 38.346,498.339 L 38.311,498.408 L 38.308,498.411 C 38.302,498.42 38.295,498.428 38.284,498.432 C 38.274,498.439 38.262,498.441 38.25,498.44 L 38.182,498.432 L 38.182,498.249 L 38.114,498.242 Z M 38.493,498.284 L 38.528,498.358 L 38.688,498.701 L 38.851,498.391 L 38.887,498.323 L 38.809,498.316 L 38.774,498.383 L 38.688,498.544 L 38.604,498.366 L 38.57,498.29 L 38.493,498.284 Z M 36.393,498.317 L 36.568,498.337 C 36.571,498.337 36.573,498.339 36.575,498.339 C 36.578,498.339 36.579,498.341 36.581,498.342 C 36.588,498.345 36.593,498.35 36.598,498.356 C 36.601,498.363 36.603,498.369 36.603,498.378 C 36.603,498.383 36.602,498.389 36.599,498.393 C 36.597,498.397 36.594,498.4 36.592,498.402 C 36.589,498.405 36.586,498.406 36.584,498.407 C 36.58,498.408 36.578,498.408 36.576,498.409 L 36.567,498.409 L 36.393,498.391 L 36.393,498.317 Z M 39.077,498.343 L 39.077,498.672 L 38.919,498.654 L 38.918,498.725 L 39.303,498.765 L 39.303,498.696 L 39.145,498.678 L 39.146,498.35 L 39.077,498.343 Z M 39.463,498.399 C 39.439,498.406 39.42,498.419 39.402,498.434 C 39.386,498.452 39.371,498.472 39.36,498.495 C 39.351,498.516 39.345,498.542 39.345,498.571 C 39.345,498.598 39.35,498.624 39.36,498.648 C 39.37,498.675 39.385,498.697 39.402,498.716 C 39.42,498.737 39.439,498.753 39.463,498.766 C 39.487,498.779 39.512,498.788 39.538,498.79 C 39.566,498.792 39.589,498.79 39.613,498.782 C 39.636,498.775 39.657,498.762 39.675,498.744 C 39.692,498.729 39.705,498.71 39.715,498.686 C 39.726,498.664 39.73,498.638 39.731,498.61 C 39.73,498.583 39.726,498.556 39.715,498.53 C 39.705,498.506 39.692,498.484 39.675,498.463 C 39.658,498.445 39.637,498.427 39.613,498.415 C 39.59,498.402 39.566,498.394 39.539,498.391 L 39.501,498.391 C 39.487,498.393 39.476,498.395 39.463,498.399 Z M 39.773,498.415 L 39.772,498.812 L 40.015,498.838 C 40.028,498.839 40.042,498.837 40.055,498.833 C 40.068,498.829 40.079,498.823 40.089,498.815 C 40.098,498.806 40.105,498.795 40.11,498.782 C 40.115,498.77 40.118,498.755 40.118,498.741 C 40.118,498.727 40.115,498.714 40.111,498.7 C 40.106,498.686 40.1,498.675 40.089,498.664 C 40.081,498.652 40.07,498.644 40.059,498.637 C 40.049,498.632 40.038,498.628 40.027,498.626 L 40.084,498.517 L 40.118,498.45 L 40.041,498.443 L 40.007,498.51 L 39.969,498.581 L 39.968,498.584 C 39.962,498.594 39.954,498.601 39.944,498.607 C 39.934,498.611 39.921,498.613 39.909,498.611 L 39.841,498.606 L 39.841,498.421 L 39.773,498.415 Z M 37.656,498.45 L 37.83,498.468 C 37.832,498.469 37.836,498.469 37.839,498.471 C 37.841,498.471 37.843,498.472 37.845,498.473 L 37.845,498.474 C 37.851,498.478 37.856,498.483 37.86,498.489 C 37.864,498.495 37.865,498.502 37.866,498.51 C 37.865,498.515 37.865,498.521 37.863,498.524 C 37.859,498.529 37.857,498.532 37.856,498.534 C 37.853,498.535 37.85,498.537 37.846,498.539 C 37.842,498.541 37.836,498.542 37.83,498.541 L 37.656,498.523 L 37.656,498.45 Z M 39.539,498.462 C 39.556,498.464 39.572,498.469 39.586,498.478 C 39.601,498.485 39.614,498.497 39.626,498.51 C 39.638,498.523 39.646,498.537 39.652,498.553 C 39.66,498.568 39.662,498.586 39.662,498.604 C 39.662,498.62 39.66,498.637 39.652,498.651 C 39.646,498.668 39.637,498.681 39.625,498.691 C 39.614,498.701 39.601,498.709 39.586,498.714 C 39.572,498.718 39.555,498.719 39.538,498.718 C 39.521,498.716 39.505,498.71 39.489,498.704 C 39.476,498.697 39.462,498.684 39.45,498.673 C 39.438,498.659 39.43,498.644 39.424,498.628 C 39.418,498.612 39.415,498.596 39.414,498.579 C 39.415,498.56 39.418,498.542 39.424,498.528 C 39.43,498.514 39.438,498.502 39.45,498.491 C 39.462,498.482 39.476,498.473 39.489,498.468 C 39.505,498.462 39.521,498.46 39.539,498.462 Z M 38.182,498.503 L 38.355,498.523 C 38.358,498.523 38.359,498.523 38.363,498.524 C 38.365,498.524 38.367,498.525 38.37,498.526 C 38.376,498.529 38.381,498.535 38.384,498.541 C 38.388,498.549 38.391,498.555 38.391,498.562 C 38.391,498.568 38.388,498.575 38.387,498.579 C 38.384,498.582 38.382,498.585 38.38,498.587 C 38.378,498.59 38.374,498.591 38.371,498.593 C 38.366,498.594 38.36,498.594 38.355,498.594 L 38.182,498.577 L 38.182,498.503 Z M 39.841,498.676 L 40.015,498.696 C 40.018,498.696 40.02,498.696 40.022,498.697 C 40.025,498.697 40.026,498.697 40.028,498.699 C 40.035,498.703 40.04,498.708 40.045,498.714 C 40.049,498.719 40.051,498.726 40.051,498.734 C 40.05,498.74 40.049,498.744 40.047,498.749 C 40.045,498.753 40.041,498.756 40.038,498.758 C 40.037,498.761 40.033,498.762 40.03,498.764 C 40.026,498.767 40.021,498.767 40.015,498.767 L 39.841,498.749 L 39.841,498.676 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.248,510.953 L 27.075,511.113 L 44.483,512.249 L 44.573,512.21 C 44.602,512.2 44.631,512.172 44.631,512.127 L 44.631,512.084 L 27.248,510.953 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.075,511.113 L 27.074,487.662 L 27.162,487.578 L 27.248,487.591 L 27.248,510.952 L 27.075,511.113 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--DOVE_GREY, .KN95_NR_individuals--DOVE_GREY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='111.72 -391.2 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.303' y2='19.847' gradientTransform='translate(124.362 363.729)'%3E%3Cstop offset='0' stop-color='%23807979'/%3E%3Cstop offset='1' stop-color='%23ababab'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.921' gradientTransform='translate(120.823 364.345)'%3E%3Cstop offset='0' stop-color='%236a6a6a'/%3E%3Cstop offset='1' stop-color='%23929292'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(124.356 383.713)'%3E%3Cstop offset='0' stop-color='%237f7f7f'/%3E%3Cstop offset='1' stop-color='%23949494'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.118' y2='-0.23' gradientTransform='translate(119.682 385.769)'%3E%3Cstop offset='0' stop-color='%23686868'/%3E%3Cstop offset='1' stop-color='%237f7f7f'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(132.676 385.584) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23878787'/%3E%3Cstop offset='1' stop-color='%23989898'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.164' y2='0' gradientTransform='translate(121.531 373.473) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%237f7f7f'/%3E%3Cstop offset='1' stop-color='%23929292'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(128.449 374.471) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 121.45,361.316 L 121.45,384.802 L 138.897,385.921 C 138.909,385.907 138.917,385.887 138.917,385.863 L 138.917,363.682 L 121.45,361.316 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 121.45,361.316 L 117.986,364.678 L 117.983,386.7 L 121.45,384.802 L 121.45,361.316 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 121.45,384.802 L 117.983,386.7 L 134.916,387.629 L 138.859,385.949 C 138.873,385.943 138.886,385.934 138.897,385.921 L 121.45,384.802 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 121.362,384.533 L 117.983,386.423 L 117.982,386.7 L 121.362,384.849 L 121.362,384.533 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 128.491,366.917 L 128.491,367.328 L 128.563,367.336 L 128.563,366.925 L 128.491,366.917 Z M 128.621,366.931 L 128.621,367.34 L 128.692,367.292 L 128.954,367.117 L 128.954,367.377 L 129.025,367.387 L 129.025,366.976 L 128.954,367.024 L 128.692,367.199 L 128.692,366.94 L 128.621,366.931 Z M 129.083,366.981 L 129.083,367.392 L 129.286,367.414 C 129.314,367.417 129.34,367.415 129.363,367.406 C 129.389,367.4 129.41,367.387 129.428,367.368 C 129.447,367.352 129.461,367.333 129.472,367.31 C 129.482,367.286 129.488,367.258 129.488,367.231 C 129.488,367.206 129.483,367.181 129.476,367.159 C 129.466,367.135 129.454,367.113 129.44,367.095 C 129.438,367.091 129.436,367.089 129.435,367.087 C 129.433,367.085 129.43,367.082 129.428,367.08 C 129.41,367.058 129.389,367.042 129.363,367.029 C 129.34,367.016 129.314,367.007 129.286,367.004 L 129.083,366.981 Z M 129.546,367.031 L 129.546,367.443 L 129.62,367.449 L 129.62,367.04 L 129.546,367.031 Z M 129.156,367.063 L 129.286,367.077 C 129.304,367.079 129.32,367.085 129.336,367.093 C 129.352,367.101 129.366,367.112 129.377,367.125 C 129.39,367.138 129.398,367.153 129.406,367.17 C 129.412,367.188 129.415,367.205 129.415,367.222 C 129.415,367.241 129.412,367.257 129.406,367.273 C 129.398,367.289 129.39,367.302 129.377,367.312 C 129.366,367.323 129.352,367.33 129.336,367.336 C 129.32,367.341 129.304,367.342 129.286,367.34 L 129.156,367.326 L 129.156,367.063 Z M 129.861,367.067 L 129.689,367.386 L 129.653,367.454 L 129.734,367.462 L 129.77,367.393 L 129.861,367.228 L 129.948,367.413 L 129.985,367.49 L 130.066,367.5 L 130.029,367.421 L 129.861,367.067 Z M 130.102,367.093 L 130.102,367.503 L 130.174,367.511 L 130.174,367.1 L 130.102,367.093 Z M 130.233,367.108 L 130.233,367.516 L 130.435,367.539 C 130.461,367.541 130.488,367.539 130.513,367.531 C 130.538,367.524 130.558,367.511 130.577,367.495 C 130.596,367.477 130.61,367.457 130.62,367.434 C 130.631,367.411 130.635,367.386 130.635,367.355 C 130.635,367.33 130.633,367.307 130.624,367.284 C 130.615,367.258 130.604,367.238 130.588,367.219 C 130.586,367.216 130.584,367.214 130.583,367.212 C 130.581,367.209 130.579,367.206 130.576,367.205 C 130.557,367.185 130.538,367.167 130.513,367.153 C 130.488,367.14 130.461,367.132 130.435,367.128 L 130.233,367.108 Z M 130.819,367.187 C 130.794,367.194 130.771,367.206 130.753,367.224 C 130.735,367.241 130.721,367.26 130.711,367.284 C 130.701,367.309 130.695,367.335 130.695,367.362 L 130.695,367.567 L 130.766,367.575 L 130.766,367.369 C 130.766,367.351 130.77,367.335 130.777,367.32 C 130.783,367.305 130.794,367.292 130.806,367.282 C 130.818,367.271 130.831,367.262 130.848,367.257 C 130.861,367.252 130.879,367.25 130.897,367.252 C 130.915,367.254 130.932,367.258 130.948,367.269 C 130.964,367.277 130.977,367.288 130.99,367.302 C 131.001,367.314 131.009,367.329 131.017,367.346 C 131.024,367.362 131.028,367.381 131.028,367.4 L 131.028,367.604 L 131.1,367.612 L 131.1,367.406 C 131.1,367.377 131.094,367.351 131.084,367.325 C 131.073,367.299 131.059,367.276 131.041,367.254 C 131.022,367.234 131,367.218 130.975,367.204 C 130.952,367.191 130.926,367.182 130.897,367.179 C 130.868,367.177 130.843,367.179 130.819,367.187 Z M 130.303,367.188 L 130.435,367.202 C 130.451,367.204 130.467,367.209 130.485,367.218 C 130.5,367.225 130.514,367.237 130.526,367.25 C 130.538,367.263 130.546,367.279 130.554,367.296 C 130.56,367.312 130.564,367.329 130.564,367.348 C 130.564,367.365 130.56,367.383 130.554,367.399 C 130.546,367.413 130.538,367.426 130.526,367.437 C 130.514,367.447 130.5,367.455 130.485,367.46 C 130.467,367.466 130.451,367.467 130.435,367.465 L 130.303,367.451 L 130.303,367.188 Z M 131.135,367.205 L 131.171,367.283 L 131.34,367.637 L 131.512,367.32 L 131.548,367.249 L 131.467,367.241 L 131.43,367.31 L 131.34,367.476 L 131.253,367.29 L 131.216,367.214 L 131.135,367.205 Z M 131.683,367.269 C 131.672,367.27 131.663,367.271 131.655,367.275 C 131.642,367.281 131.631,367.288 131.621,367.297 C 131.61,367.306 131.603,367.316 131.597,367.328 C 131.592,367.336 131.59,367.346 131.587,367.354 C 131.584,367.364 131.584,367.373 131.584,367.386 L 131.584,367.663 L 131.655,367.67 L 131.655,367.386 C 131.656,367.377 131.659,367.368 131.663,367.362 C 131.668,367.355 131.673,367.351 131.682,367.347 C 131.688,367.342 131.697,367.341 131.705,367.34 L 131.917,367.362 L 131.917,367.29 L 131.711,367.267 C 131.701,367.266 131.692,367.267 131.683,367.269 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 126.288,373.646 L 126.286,375.698 L 126.625,375.733 L 126.627,374.685 L 126.905,374.987 L 127.157,375.262 L 127.685,375.84 L 128.187,375.892 L 127.358,374.983 L 128.182,373.839 L 127.764,373.797 L 127.107,374.709 L 126.627,374.189 L 126.627,373.681 L 126.288,373.646 Z M 128.355,373.856 L 128.53,374.241 L 129.321,376.007 L 130.118,374.403 L 130.292,374.054 L 129.912,374.016 L 129.738,374.364 L 129.323,375.202 L 128.907,374.279 L 128.735,373.897 L 128.355,373.856 Z M 130.462,374.071 L 130.466,374.071 L 130.726,374.463 L 131.191,375.167 L 131.407,375.488 L 131.665,375.881 L 130.459,375.756 L 130.458,376.122 L 131.927,376.272 L 132.351,376.315 L 132.089,375.922 L 131.618,375.211 L 131.405,374.889 L 131.149,374.507 L 132.362,374.63 L 132.363,374.263 L 130.893,374.115 L 130.892,374.115 L 130.462,374.071 Z M 132.94,374.367 C 132.878,374.39 132.823,374.423 132.778,374.469 C 132.73,374.514 132.694,374.57 132.668,374.634 C 132.641,374.698 132.629,374.77 132.628,374.845 L 132.626,375.79 C 132.626,375.866 132.639,375.939 132.665,376.008 C 132.692,376.077 132.727,376.14 132.775,376.196 C 132.821,376.251 132.875,376.296 132.937,376.331 C 132.998,376.366 133.065,376.387 133.136,376.395 L 134.522,376.535 L 134.522,376.17 L 133.136,376.028 C 133.103,376.024 133.075,376.014 133.049,375.994 C 133.023,375.974 133.002,375.949 132.986,375.92 C 132.971,375.891 132.964,375.857 132.964,375.823 L 132.964,375.632 L 134.184,375.757 L 134.185,375.391 L 132.964,375.267 L 132.964,374.88 C 132.964,374.844 132.972,374.816 132.988,374.789 C 133.004,374.761 133.024,374.739 133.05,374.726 C 133.076,374.712 133.104,374.707 133.138,374.709 L 134.524,374.85 L 134.524,374.485 L 133.138,374.343 C 133.069,374.337 133.001,374.344 132.94,374.367 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 128.292,372.555 L 128.292,372.992 C 128.292,373.016 128.295,373.037 128.304,373.057 C 128.311,373.078 128.323,373.097 128.337,373.112 C 128.351,373.129 128.369,373.142 128.389,373.152 C 128.408,373.162 128.428,373.169 128.451,373.171 L 128.884,373.217 L 128.884,373.111 L 128.451,373.065 C 128.441,373.063 128.432,373.06 128.423,373.054 C 128.415,373.048 128.409,373.041 128.404,373.033 C 128.399,373.024 128.397,373.015 128.397,373.005 L 128.397,372.949 L 128.777,372.988 L 128.777,372.881 L 128.397,372.841 L 128.397,372.567 L 128.292,372.555 Z M 128.97,372.627 L 128.969,373.065 C 128.969,373.086 128.973,373.108 128.982,373.129 C 128.989,373.149 129,373.167 129.014,373.183 C 129.029,373.2 129.048,373.213 129.066,373.223 C 129.085,373.235 129.105,373.241 129.128,373.243 L 129.56,373.288 L 129.561,373.182 L 129.129,373.137 C 129.118,373.135 129.109,373.132 129.101,373.126 C 129.092,373.12 129.087,373.112 129.081,373.104 C 129.077,373.095 129.074,373.086 129.074,373.075 L 129.074,373.021 L 129.455,373.06 L 129.455,372.954 L 129.074,372.913 L 129.074,372.637 L 128.97,372.627 Z M 129.648,372.699 L 129.646,373.299 L 130.019,373.339 C 130.042,373.34 130.062,373.339 130.08,373.331 C 130.099,373.325 130.117,373.315 130.131,373.303 L 130.131,373.3 C 130.147,373.287 130.158,373.272 130.168,373.253 C 130.175,373.235 130.179,373.214 130.179,373.191 C 130.179,373.17 130.175,373.149 130.168,373.129 C 130.16,373.108 130.148,373.091 130.135,373.074 C 130.12,373.059 130.105,373.046 130.086,373.035 C 130.072,373.026 130.057,373.021 130.041,373.017 C 130.039,373.017 130.037,373.017 130.036,373.017 L 130.036,373.016 L 129.752,372.984 L 129.753,372.711 L 129.648,372.699 Z M 130.263,372.761 L 130.263,372.939 C 130.263,372.951 130.264,372.963 130.267,372.975 C 130.269,372.986 130.273,372.998 130.277,373.009 C 130.286,373.032 130.298,373.05 130.312,373.067 C 130.328,373.086 130.345,373.1 130.367,373.112 C 130.386,373.123 130.408,373.13 130.432,373.133 L 130.685,373.16 L 130.687,373.16 C 130.7,373.164 130.711,373.169 130.719,373.176 C 130.729,373.183 130.736,373.191 130.742,373.203 C 130.747,373.213 130.75,373.225 130.75,373.238 C 130.75,373.25 130.747,373.262 130.74,373.272 C 130.734,373.281 130.727,373.288 130.716,373.294 C 130.706,373.299 130.694,373.302 130.68,373.3 L 130.264,373.257 L 130.264,373.364 L 130.68,373.407 C 130.706,373.409 130.729,373.407 130.749,373.401 C 130.77,373.394 130.787,373.383 130.805,373.369 C 130.821,373.355 130.834,373.338 130.842,373.316 C 130.851,373.297 130.855,373.274 130.856,373.249 C 130.856,373.237 130.855,373.225 130.852,373.213 C 130.849,373.2 130.847,373.189 130.842,373.178 C 130.837,373.167 130.833,373.158 130.827,373.148 C 130.821,373.139 130.814,373.13 130.806,373.122 C 130.791,373.104 130.772,373.088 130.752,373.076 C 130.732,373.065 130.711,373.058 130.686,373.054 L 130.684,373.054 C 130.683,373.054 130.682,373.054 130.68,373.054 L 130.432,373.028 C 130.42,373.025 130.409,373.021 130.4,373.013 C 130.39,373.006 130.383,372.996 130.378,372.984 C 130.372,372.975 130.371,372.964 130.371,372.952 L 130.371,372.881 L 130.853,372.932 L 130.854,372.825 L 130.436,372.78 L 130.263,372.761 Z M 131.353,372.879 L 131.352,373.475 L 131.458,373.405 L 131.84,373.148 L 131.839,373.529 L 131.945,373.539 L 131.946,372.942 L 131.84,373.013 L 131.458,373.269 L 131.459,372.89 L 131.353,372.879 Z M 132.03,372.951 L 132.03,373.551 L 132.404,373.59 C 132.424,373.592 132.445,373.59 132.465,373.583 C 132.485,373.577 132.501,373.567 132.515,373.553 C 132.53,373.54 132.541,373.525 132.549,373.506 C 132.558,373.487 132.562,373.467 132.562,373.444 C 132.562,373.422 132.558,373.401 132.55,373.381 C 132.542,373.362 132.532,373.343 132.517,373.327 C 132.504,373.311 132.488,373.298 132.47,373.286 C 132.456,373.279 132.439,373.272 132.423,373.268 L 132.509,373.107 L 132.563,373.008 L 132.445,372.994 L 132.391,373.095 L 132.332,373.202 L 132.331,373.206 C 132.321,373.221 132.309,373.233 132.293,373.24 C 132.278,373.248 132.26,373.249 132.241,373.248 L 132.136,373.237 L 132.137,372.961 L 132.03,372.951 Z M 129.752,373.091 L 130.021,373.119 C 130.023,373.119 130.028,373.121 130.032,373.122 C 130.035,373.124 130.039,373.126 130.042,373.127 L 130.042,373.127 C 130.052,373.133 130.061,373.14 130.065,373.151 C 130.072,373.159 130.074,373.17 130.074,373.18 C 130.074,373.19 130.072,373.198 130.068,373.204 C 130.065,373.211 130.061,373.215 130.059,373.218 C 130.054,373.221 130.05,373.225 130.044,373.227 C 130.037,373.23 130.029,373.231 130.021,373.23 L 129.752,373.202 L 129.752,373.091 Z M 132.136,373.343 L 132.404,373.371 C 132.407,373.372 132.41,373.373 132.415,373.374 C 132.418,373.377 132.422,373.377 132.424,373.379 C 132.436,373.384 132.442,373.394 132.448,373.403 C 132.456,373.412 132.458,373.422 132.458,373.433 C 132.457,373.442 132.456,373.451 132.45,373.458 C 132.447,373.464 132.445,373.468 132.441,373.471 C 132.437,373.474 132.432,373.477 132.427,373.48 C 132.419,373.482 132.412,373.483 132.404,373.482 L 132.136,373.455 L 132.136,373.343 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 126.406,371.36 L 126.405,371.757 L 126.647,371.782 C 126.661,371.783 126.676,371.782 126.687,371.778 C 126.699,371.773 126.711,371.768 126.721,371.758 L 126.721,371.757 C 126.731,371.749 126.738,371.738 126.743,371.727 C 126.748,371.714 126.752,371.701 126.752,371.686 C 126.752,371.67 126.749,371.656 126.744,371.643 C 126.739,371.63 126.733,371.619 126.724,371.608 C 126.713,371.596 126.703,371.588 126.691,371.582 C 126.681,371.576 126.672,371.571 126.661,371.569 C 126.66,371.569 126.659,371.569 126.659,371.569 L 126.659,371.569 L 126.473,371.549 L 126.475,371.368 L 126.406,371.36 Z M 126.806,371.4 L 126.805,371.797 L 127.05,371.824 C 127.065,371.825 127.078,371.824 127.089,371.82 C 127.102,371.815 127.111,371.809 127.122,371.8 C 127.131,371.791 127.138,371.78 127.145,371.768 C 127.149,371.756 127.152,371.742 127.152,371.728 C 127.152,371.713 127.149,371.699 127.146,371.686 C 127.139,371.672 127.132,371.66 127.123,371.65 C 127.113,371.639 127.105,371.629 127.092,371.623 C 127.083,371.617 127.073,371.613 127.063,371.611 L 127.117,371.504 L 127.152,371.435 L 127.077,371.427 L 127.04,371.494 L 127.004,371.566 L 127.002,371.569 C 126.996,371.58 126.988,371.587 126.978,371.591 C 126.967,371.596 126.956,371.598 126.944,371.596 L 126.874,371.59 L 126.874,371.407 L 126.806,371.4 Z M 127.312,371.469 C 127.29,371.477 127.27,371.49 127.252,371.505 C 127.233,371.522 127.22,371.542 127.21,371.563 C 127.201,371.588 127.195,371.613 127.195,371.64 C 127.195,371.667 127.201,371.694 127.209,371.718 C 127.22,371.744 127.233,371.767 127.252,371.786 C 127.268,371.807 127.29,371.824 127.311,371.836 C 127.335,371.849 127.36,371.857 127.388,371.86 C 127.414,371.862 127.44,371.86 127.463,371.851 C 127.485,371.843 127.507,371.833 127.524,371.815 C 127.542,371.799 127.556,371.78 127.565,371.756 C 127.575,371.733 127.58,371.707 127.58,371.679 C 127.58,371.652 127.575,371.626 127.565,371.601 C 127.556,371.576 127.543,371.554 127.524,371.534 C 127.507,371.513 127.485,371.497 127.464,371.485 C 127.44,371.472 127.414,371.464 127.388,371.461 L 127.349,371.462 C 127.336,371.463 127.324,371.466 127.312,371.469 Z M 127.779,371.502 L 127.779,371.828 L 127.622,371.812 L 127.622,371.883 L 128.005,371.925 L 128.005,371.853 L 127.849,371.836 L 127.85,371.508 L 127.779,371.502 Z M 127.388,371.532 C 127.404,371.534 127.421,371.539 127.436,371.547 C 127.452,371.556 127.465,371.566 127.475,371.579 C 127.485,371.591 127.496,371.606 127.503,371.623 C 127.509,371.638 127.511,371.655 127.511,371.672 C 127.511,371.692 127.509,371.706 127.502,371.722 C 127.496,371.737 127.485,371.75 127.475,371.759 C 127.464,371.769 127.451,371.778 127.435,371.782 C 127.421,371.787 127.404,371.789 127.388,371.787 C 127.37,371.786 127.354,371.782 127.339,371.772 C 127.324,371.766 127.311,371.754 127.299,371.742 C 127.289,371.729 127.28,371.716 127.273,371.698 C 127.268,371.682 127.264,371.665 127.264,371.648 C 127.264,371.629 127.268,371.613 127.273,371.598 C 127.28,371.584 127.29,371.571 127.3,371.56 C 127.311,371.55 127.325,371.542 127.339,371.537 C 127.354,371.532 127.371,371.531 127.388,371.532 Z M 128.124,371.545 C 128.114,371.549 128.104,371.556 128.092,371.566 C 128.084,371.576 128.076,371.585 128.072,371.597 C 128.066,371.61 128.063,371.624 128.063,371.639 L 128.063,371.823 C 128.063,371.836 128.065,371.851 128.07,371.864 C 128.076,371.878 128.083,371.89 128.092,371.902 C 128.102,371.912 128.113,371.92 128.124,371.928 C 128.137,371.934 128.15,371.939 128.166,371.941 L 128.447,371.969 L 128.447,371.898 L 128.166,371.868 C 128.16,371.867 128.153,371.866 128.147,371.862 C 128.143,371.859 128.138,371.853 128.136,371.848 C 128.132,371.841 128.13,371.835 128.13,371.828 L 128.13,371.792 L 128.378,371.818 L 128.378,371.746 L 128.13,371.72 L 128.131,371.646 C 128.131,371.639 128.132,371.634 128.136,371.628 C 128.139,371.623 128.143,371.619 128.148,371.616 C 128.155,371.613 128.16,371.612 128.166,371.613 L 128.447,371.642 L 128.447,371.571 L 128.166,371.542 C 128.151,371.541 128.138,371.542 128.124,371.545 Z M 128.614,371.603 C 128.59,371.611 128.571,371.624 128.553,371.64 C 128.535,371.656 128.521,371.676 128.512,371.699 C 128.502,371.723 128.497,371.748 128.497,371.775 C 128.497,371.802 128.502,371.829 128.512,371.853 C 128.52,371.879 128.535,371.902 128.553,371.922 C 128.571,371.942 128.59,371.958 128.614,371.971 C 128.637,371.983 128.662,371.991 128.689,371.994 L 128.88,372.015 L 128.88,371.943 L 128.689,371.924 C 128.672,371.921 128.655,371.916 128.641,371.908 C 128.626,371.9 128.612,371.89 128.601,371.876 C 128.589,371.863 128.582,371.85 128.574,371.834 C 128.569,371.817 128.565,371.801 128.565,371.782 C 128.565,371.765 128.569,371.748 128.575,371.733 C 128.582,371.718 128.589,371.705 128.602,371.696 C 128.613,371.686 128.628,371.677 128.641,371.672 C 128.655,371.666 128.672,371.665 128.689,371.666 L 128.881,371.687 L 128.881,371.616 L 128.689,371.596 L 128.65,371.596 C 128.638,371.596 128.626,371.6 128.614,371.603 Z M 126.473,371.621 L 126.648,371.637 C 126.652,371.638 126.654,371.639 126.657,371.639 C 126.659,371.64 126.66,371.641 126.663,371.643 C 126.669,371.647 126.674,371.651 126.678,371.658 C 126.681,371.663 126.683,371.67 126.683,371.678 C 126.683,371.685 126.681,371.691 126.679,371.694 C 126.678,371.699 126.675,371.702 126.672,371.703 C 126.671,371.705 126.668,371.707 126.664,371.709 C 126.659,371.711 126.655,371.712 126.648,371.711 L 126.473,371.693 L 126.473,371.621 Z M 129.094,371.638 L 129.094,371.965 L 128.936,371.949 L 128.936,372.021 L 129.321,372.06 L 129.321,371.988 L 129.164,371.971 L 129.164,371.645 L 129.094,371.638 Z M 126.874,371.66 L 127.05,371.678 C 127.052,371.679 127.054,371.679 127.057,371.681 C 127.059,371.681 127.061,371.683 127.065,371.684 C 127.07,371.688 127.075,371.692 127.079,371.699 C 127.083,371.705 127.085,371.712 127.085,371.719 C 127.085,371.726 127.083,371.731 127.081,371.735 C 127.079,371.74 127.077,371.743 127.074,371.744 C 127.072,371.746 127.068,371.748 127.066,371.75 C 127.061,371.752 127.055,371.753 127.05,371.752 L 126.874,371.734 L 126.874,371.66 Z M 129.377,371.666 L 129.376,372.065 L 129.446,372.073 L 129.447,371.674 L 129.377,371.666 Z M 129.674,371.699 L 129.513,372.008 L 129.478,372.076 L 129.555,372.084 L 129.59,372.017 L 129.674,371.854 L 129.758,372.035 L 129.794,372.108 L 129.871,372.117 L 129.835,372.042 L 129.674,371.699 Z M 129.969,371.737 C 129.957,371.742 129.946,371.748 129.937,371.756 C 129.927,371.766 129.919,371.776 129.914,371.788 C 129.908,371.801 129.905,371.815 129.905,371.829 L 129.905,372.014 C 129.905,372.028 129.907,372.041 129.913,372.054 C 129.919,372.068 129.926,372.08 129.936,372.092 C 129.945,372.102 129.956,372.111 129.969,372.118 C 129.98,372.126 129.995,372.13 130.009,372.131 L 130.289,372.16 L 130.289,372.088 L 130.009,372.06 C 130.001,372.06 129.996,372.057 129.99,372.054 C 129.985,372.05 129.982,372.045 129.978,372.039 C 129.975,372.034 129.973,372.028 129.973,372.021 L 129.973,371.982 L 130.222,372.008 L 130.222,371.939 L 129.974,371.913 L 129.974,371.836 C 129.974,371.829 129.976,371.825 129.978,371.82 C 129.982,371.815 129.985,371.809 129.991,371.807 C 129.996,371.804 130.002,371.803 130.009,371.804 L 130.29,371.834 L 130.29,371.761 L 130.009,371.733 C 129.995,371.731 129.981,371.733 129.969,371.737 Z M 130.612,371.795 L 130.611,372.192 L 130.855,372.218 C 130.869,372.219 130.882,372.218 130.895,372.214 C 130.908,372.209 130.919,372.202 130.928,372.194 C 130.938,372.185 130.945,372.174 130.951,372.162 C 130.955,372.15 130.958,372.137 130.958,372.122 C 130.958,372.106 130.956,372.092 130.952,372.079 C 130.946,372.066 130.939,372.054 130.93,372.044 C 130.921,372.035 130.912,372.025 130.898,372.019 C 130.89,372.013 130.878,372.008 130.868,372.006 L 130.925,371.897 L 130.959,371.829 L 130.881,371.823 L 130.848,371.89 L 130.81,371.96 L 130.81,371.963 C 130.803,371.973 130.794,371.981 130.783,371.985 C 130.772,371.99 130.762,371.992 130.751,371.992 L 130.68,371.984 L 130.68,371.802 L 130.612,371.795 Z M 131.078,371.853 C 131.067,371.856 131.055,371.863 131.046,371.872 C 131.036,371.88 131.029,371.891 131.024,371.904 C 131.018,371.916 131.016,371.93 131.016,371.944 L 131.016,372.129 C 131.016,372.143 131.017,372.157 131.023,372.17 C 131.029,372.183 131.036,372.196 131.046,372.208 C 131.055,372.218 131.066,372.226 131.078,372.235 C 131.091,372.241 131.104,372.246 131.118,372.246 L 131.399,372.275 L 131.399,372.204 L 131.118,372.175 C 131.112,372.174 131.106,372.172 131.1,372.168 C 131.096,372.165 131.092,372.159 131.087,372.154 C 131.085,372.148 131.083,372.142 131.083,372.135 L 131.083,372.098 L 131.331,372.124 L 131.331,372.052 L 131.084,372.028 L 131.084,371.952 C 131.084,371.945 131.086,371.94 131.088,371.934 C 131.092,371.929 131.096,371.926 131.1,371.923 C 131.106,371.919 131.113,371.919 131.118,371.919 L 131.4,371.949 L 131.4,371.877 L 131.119,371.848 C 131.105,371.847 131.091,371.849 131.078,371.853 Z M 131.53,371.9 C 131.515,371.905 131.502,371.914 131.491,371.924 C 131.48,371.933 131.472,371.947 131.465,371.96 C 131.459,371.975 131.455,371.991 131.455,372.008 L 131.525,372.016 C 131.525,372.005 131.526,371.995 131.532,371.988 C 131.536,371.981 131.542,371.975 131.55,371.971 C 131.558,371.967 131.565,371.966 131.578,371.966 L 131.699,371.978 C 131.708,371.98 131.716,371.983 131.725,371.988 C 131.732,371.995 131.739,372.001 131.743,372.01 C 131.748,372.021 131.75,372.028 131.75,372.04 C 131.75,372.05 131.748,372.059 131.743,372.066 C 131.739,372.074 131.732,372.079 131.725,372.083 C 131.716,372.087 131.708,372.088 131.699,372.087 L 131.558,372.074 L 131.539,372.074 C 131.532,372.074 131.525,372.076 131.519,372.077 C 131.507,372.081 131.498,372.087 131.486,372.095 C 131.483,372.1 131.476,372.105 131.474,372.111 C 131.467,372.119 131.463,372.13 131.46,372.14 C 131.456,372.15 131.455,372.16 131.455,372.171 L 131.455,372.174 C 131.455,372.188 131.458,372.202 131.463,372.215 C 131.468,372.229 131.475,372.241 131.486,372.253 C 131.496,372.264 131.506,372.273 131.519,372.279 C 131.53,372.286 131.544,372.289 131.558,372.291 L 131.714,372.307 C 131.728,372.309 131.742,372.307 131.755,372.303 C 131.767,372.299 131.778,372.292 131.789,372.285 C 131.798,372.275 131.806,372.265 131.811,372.253 C 131.817,372.241 131.818,372.226 131.818,372.211 L 131.818,372.209 L 131.75,372.201 L 131.75,372.202 C 131.75,372.209 131.748,372.215 131.745,372.221 C 131.741,372.226 131.737,372.23 131.733,372.235 C 131.727,372.236 131.721,372.237 131.714,372.236 L 131.558,372.22 C 131.552,372.219 131.545,372.216 131.54,372.213 C 131.536,372.209 131.532,372.204 131.527,372.198 C 131.525,372.193 131.524,372.186 131.524,372.18 L 131.524,372.177 C 131.524,372.17 131.525,372.166 131.527,372.159 C 131.532,372.154 131.536,372.151 131.541,372.148 C 131.545,372.145 131.552,372.144 131.558,372.144 L 131.699,372.159 L 131.724,372.159 C 131.731,372.157 131.739,372.157 131.747,372.154 C 131.763,372.148 131.776,372.14 131.787,372.129 C 131.789,372.128 131.789,372.127 131.79,372.126 C 131.79,372.125 131.79,372.125 131.791,372.124 C 131.8,372.113 131.807,372.102 131.811,372.088 C 131.817,372.076 131.819,372.061 131.819,372.047 C 131.819,372.028 131.816,372.013 131.81,371.995 C 131.804,371.981 131.795,371.966 131.784,371.954 C 131.771,371.942 131.759,371.931 131.744,371.923 C 131.73,371.916 131.714,371.91 131.699,371.908 L 131.578,371.894 C 131.559,371.892 131.544,371.894 131.53,371.9 Z M 131.875,371.927 L 131.874,372.324 L 132.117,372.351 C 132.133,372.352 132.146,372.351 132.157,372.345 C 132.17,372.341 132.181,372.335 132.191,372.325 L 132.191,372.325 C 132.2,372.316 132.208,372.305 132.213,372.292 C 132.217,372.28 132.221,372.267 132.221,372.253 C 132.221,372.238 132.218,372.223 132.213,372.21 C 132.209,372.196 132.202,372.185 132.192,372.174 C 132.183,372.164 132.173,372.155 132.16,372.149 C 132.152,372.143 132.142,372.14 132.132,372.137 C 132.131,372.137 132.129,372.137 132.128,372.137 L 132.128,372.136 L 131.945,372.116 L 131.945,371.934 L 131.875,371.927 Z M 132.277,371.968 L 132.276,372.366 L 132.344,372.373 L 132.346,371.975 L 132.277,371.968 Z M 132.4,371.979 L 132.399,372.378 L 132.643,372.402 C 132.657,372.405 132.67,372.402 132.684,372.399 C 132.696,372.396 132.706,372.388 132.716,372.379 C 132.726,372.37 132.733,372.36 132.738,372.348 C 132.743,372.335 132.746,372.321 132.746,372.306 C 132.746,372.292 132.743,372.278 132.739,372.266 C 132.733,372.252 132.727,372.24 132.718,372.228 C 132.708,372.219 132.698,372.209 132.686,372.202 C 132.676,372.196 132.666,372.193 132.656,372.19 L 132.711,372.083 L 132.746,372.016 L 132.67,372.007 L 132.634,372.075 L 132.598,372.145 L 132.596,372.149 C 132.59,372.158 132.582,372.166 132.572,372.17 C 132.561,372.176 132.549,372.178 132.538,372.177 L 132.47,372.17 L 132.47,371.986 L 132.4,371.979 Z M 132.779,372.021 L 132.816,372.094 L 132.977,372.438 L 133.138,372.129 L 133.174,372.061 L 133.096,372.053 L 133.062,372.119 L 132.977,372.282 L 132.892,372.102 L 132.856,372.028 L 132.779,372.021 Z M 130.68,372.054 L 130.855,372.074 C 130.858,372.074 130.861,372.075 130.862,372.076 C 130.864,372.076 130.867,372.077 130.869,372.078 C 130.875,372.082 130.88,372.087 130.885,372.093 C 130.888,372.1 130.891,372.106 130.891,372.115 C 130.891,372.119 130.89,372.127 130.887,372.13 C 130.885,372.135 130.881,372.138 130.88,372.14 C 130.877,372.142 130.874,372.143 130.871,372.144 C 130.867,372.145 130.866,372.146 130.862,372.147 L 130.855,372.147 L 130.68,372.129 L 130.68,372.054 Z M 133.364,372.08 L 133.364,372.409 L 133.205,372.392 L 133.205,372.463 L 133.591,372.503 L 133.591,372.432 L 133.432,372.415 L 133.433,372.087 L 133.364,372.08 Z M 133.75,372.137 C 133.727,372.144 133.708,372.157 133.689,372.172 C 133.673,372.189 133.658,372.208 133.647,372.233 C 133.637,372.254 133.632,372.28 133.632,372.307 C 133.632,372.335 133.637,372.362 133.647,372.386 C 133.657,372.411 133.672,372.434 133.689,372.454 C 133.707,372.474 133.727,372.491 133.75,372.504 C 133.773,372.516 133.799,372.525 133.825,372.526 C 133.853,372.529 133.876,372.526 133.9,372.519 C 133.923,372.512 133.945,372.499 133.962,372.482 C 133.979,372.467 133.992,372.446 134.003,372.423 C 134.013,372.4 134.018,372.375 134.018,372.348 C 134.018,372.319 134.013,372.292 134.004,372.268 C 133.992,372.243 133.979,372.221 133.962,372.2 C 133.946,372.182 133.924,372.165 133.901,372.152 C 133.877,372.14 133.853,372.131 133.826,372.129 L 133.787,372.129 C 133.774,372.13 133.763,372.133 133.75,372.137 Z M 134.06,372.152 L 134.059,372.549 L 134.301,372.576 C 134.316,372.576 134.33,372.575 134.343,372.57 C 134.355,372.567 134.366,372.559 134.376,372.551 C 134.386,372.542 134.392,372.531 134.398,372.519 C 134.403,372.507 134.405,372.493 134.405,372.479 C 134.405,372.465 134.403,372.45 134.398,372.436 C 134.393,372.423 134.386,372.412 134.377,372.401 C 134.368,372.39 134.358,372.382 134.347,372.375 C 134.335,372.369 134.326,372.365 134.314,372.364 L 134.372,372.254 L 134.406,372.187 L 134.329,372.179 L 134.295,372.248 L 134.257,372.318 L 134.255,372.32 C 134.25,372.331 134.242,372.338 134.231,372.344 C 134.221,372.349 134.209,372.351 134.197,372.349 L 134.128,372.343 L 134.128,372.159 L 134.06,372.152 Z M 131.943,372.187 L 132.117,372.205 C 132.12,372.206 132.124,372.206 132.126,372.208 C 132.127,372.208 132.131,372.208 132.133,372.209 L 132.133,372.21 C 132.139,372.215 132.144,372.219 132.147,372.226 C 132.152,372.233 132.152,372.24 132.153,372.247 C 132.152,372.253 132.152,372.259 132.15,372.262 C 132.147,372.267 132.146,372.269 132.142,372.272 C 132.14,372.273 132.138,372.275 132.133,372.277 C 132.129,372.279 132.125,372.279 132.117,372.279 L 131.943,372.26 L 131.943,372.187 Z M 133.826,372.199 C 133.843,372.201 133.859,372.206 133.874,372.215 C 133.889,372.222 133.902,372.235 133.913,372.247 C 133.925,372.26 133.934,372.274 133.94,372.289 C 133.947,372.305 133.949,372.322 133.949,372.34 C 133.949,372.358 133.947,372.375 133.94,372.389 C 133.934,372.405 133.924,372.417 133.912,372.427 C 133.902,372.438 133.889,372.446 133.874,372.45 C 133.859,372.456 133.843,372.457 133.825,372.456 C 133.808,372.454 133.792,372.447 133.778,372.44 C 133.763,372.433 133.749,372.421 133.737,372.409 C 133.726,372.396 133.718,372.382 133.711,372.366 C 133.705,372.35 133.702,372.332 133.702,372.316 C 133.702,372.297 133.705,372.28 133.711,372.266 C 133.718,372.251 133.726,372.24 133.737,372.228 C 133.749,372.218 133.763,372.209 133.779,372.205 C 133.793,372.199 133.808,372.197 133.826,372.199 Z M 132.47,372.241 L 132.643,372.26 C 132.646,372.26 132.648,372.26 132.65,372.262 C 132.652,372.262 132.655,372.263 132.657,372.264 C 132.663,372.267 132.668,372.273 132.672,372.279 C 132.676,372.286 132.678,372.292 132.678,372.299 C 132.678,372.305 132.676,372.312 132.675,372.316 C 132.672,372.318 132.67,372.322 132.667,372.324 C 132.665,372.327 132.662,372.328 132.657,372.33 C 132.654,372.331 132.648,372.331 132.643,372.331 L 132.47,372.314 L 132.47,372.241 Z M 134.128,372.412 L 134.301,372.432 C 134.305,372.432 134.308,372.433 134.31,372.433 C 134.312,372.434 134.314,372.434 134.316,372.435 C 134.322,372.44 134.327,372.444 134.333,372.45 C 134.335,372.457 134.337,372.464 134.337,372.472 C 134.337,372.478 134.335,372.482 134.334,372.487 C 134.333,372.491 134.329,372.493 134.326,372.496 C 134.324,372.499 134.321,372.5 134.317,372.502 C 134.313,372.504 134.308,372.505 134.301,372.504 L 134.128,372.487 L 134.128,372.412 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 121.536,384.689 L 121.362,384.851 L 138.77,385.985 L 138.859,385.947 C 138.889,385.937 138.917,385.91 138.917,385.863 L 138.917,385.821 L 121.536,384.689 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 121.362,384.851 L 121.361,361.399 L 121.45,361.316 L 121.536,361.328 L 121.536,384.689 L 121.362,384.851 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--CITRUS_ORANGE, .KN95_NR_individuals--CITRUS_ORANGE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='111.717 -517.464 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.303' y2='19.846' gradientTransform='translate(124.359 489.994)'%3E%3Cstop offset='0' stop-color='%23cd4f00'/%3E%3Cstop offset='1' stop-color='%23ff6200'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.919' gradientTransform='translate(120.82 490.61)'%3E%3Cstop offset='0' stop-color='%23a03e00'/%3E%3Cstop offset='1' stop-color='%23d85300'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(124.353 509.976)'%3E%3Cstop offset='0' stop-color='%23bf4900'/%3E%3Cstop offset='1' stop-color='%23dd5500'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.118' y2='-0.23' gradientTransform='translate(119.679 512.033)'%3E%3Cstop offset='0' stop-color='%239a3b00'/%3E%3Cstop offset='1' stop-color='%23bf4900'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(132.673 511.848) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c74c00'/%3E%3Cstop offset='1' stop-color='%23e35700'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.164' y2='0' gradientTransform='translate(121.528 499.736) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bc4800'/%3E%3Cstop offset='1' stop-color='%23d85300'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(128.446 500.735) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 121.447,487.579 L 121.447,511.066 L 138.894,512.185 C 138.906,512.171 138.914,512.152 138.914,512.128 L 138.914,489.947 L 121.447,487.579 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 121.447,487.579 L 117.983,490.942 L 117.98,512.963 L 121.447,511.066 L 121.447,487.579 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 121.447,511.066 L 117.98,512.963 L 134.913,513.893 L 138.856,512.212 C 138.87,512.207 138.883,512.197 138.894,512.185 L 121.447,511.066 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 121.359,510.798 L 117.98,512.687 L 117.979,512.963 L 121.359,511.112 L 121.359,510.798 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 128.488,493.181 L 128.488,493.592 L 128.56,493.6 L 128.56,493.189 L 128.488,493.181 Z M 128.618,493.195 L 128.618,493.604 L 128.689,493.555 L 128.951,493.381 L 128.951,493.641 L 129.022,493.65 L 129.022,493.239 L 128.951,493.289 L 128.689,493.463 L 128.689,493.203 L 128.618,493.195 Z M 129.08,493.245 L 129.08,493.656 L 129.283,493.677 C 129.311,493.681 129.337,493.678 129.36,493.669 C 129.386,493.663 129.407,493.65 129.425,493.633 C 129.444,493.616 129.458,493.597 129.469,493.573 C 129.479,493.549 129.485,493.523 129.485,493.496 C 129.485,493.469 129.48,493.445 129.473,493.422 C 129.463,493.399 129.451,493.378 129.437,493.358 C 129.435,493.355 129.433,493.353 129.432,493.351 C 129.43,493.348 129.427,493.346 129.425,493.343 C 129.407,493.322 129.386,493.306 129.36,493.293 C 129.337,493.28 129.311,493.271 129.283,493.268 L 129.08,493.245 Z M 129.543,493.296 L 129.543,493.707 L 129.617,493.714 L 129.617,493.304 L 129.543,493.296 Z M 129.153,493.326 L 129.283,493.34 C 129.301,493.343 129.317,493.348 129.333,493.356 C 129.349,493.366 129.363,493.377 129.374,493.39 C 129.387,493.402 129.395,493.418 129.403,493.433 C 129.409,493.451 129.412,493.468 129.412,493.487 C 129.412,493.505 129.409,493.521 129.403,493.536 C 129.395,493.553 129.387,493.565 129.374,493.575 C 129.363,493.587 129.349,493.595 129.333,493.6 C 129.317,493.605 129.301,493.606 129.283,493.605 L 129.153,493.591 L 129.153,493.326 Z M 129.858,493.33 L 129.686,493.649 L 129.65,493.719 L 129.731,493.726 L 129.767,493.656 L 129.858,493.492 L 129.945,493.677 L 129.982,493.753 L 130.063,493.763 L 130.026,493.685 L 129.858,493.33 Z M 130.099,493.356 L 130.099,493.766 L 130.171,493.774 L 130.171,493.365 L 130.099,493.356 Z M 130.23,493.372 L 130.23,493.78 L 130.432,493.802 C 130.458,493.806 130.485,493.802 130.51,493.795 C 130.535,493.787 130.555,493.774 130.574,493.758 C 130.593,493.742 130.607,493.721 130.617,493.698 C 130.628,493.674 130.632,493.649 130.632,493.619 C 130.632,493.595 130.63,493.57 130.621,493.547 C 130.612,493.523 130.601,493.502 130.585,493.483 C 130.583,493.481 130.581,493.478 130.58,493.476 C 130.578,493.472 130.576,493.47 130.573,493.468 C 130.554,493.448 130.535,493.43 130.51,493.417 C 130.485,493.404 130.458,493.396 130.432,493.392 L 130.23,493.372 Z M 130.816,493.451 C 130.791,493.457 130.768,493.47 130.75,493.488 C 130.732,493.505 130.718,493.524 130.708,493.547 C 130.698,493.572 130.692,493.599 130.692,493.626 L 130.692,493.831 L 130.763,493.839 L 130.763,493.634 C 130.763,493.615 130.767,493.599 130.774,493.583 C 130.78,493.569 130.791,493.555 130.803,493.546 C 130.815,493.534 130.828,493.526 130.845,493.521 C 130.858,493.516 130.876,493.514 130.894,493.516 C 130.912,493.519 130.929,493.523 130.945,493.532 C 130.961,493.54 130.974,493.552 130.987,493.565 C 130.998,493.578 131.006,493.593 131.014,493.611 C 131.021,493.626 131.025,493.644 131.025,493.663 L 131.025,493.867 L 131.097,493.875 L 131.097,493.669 C 131.097,493.641 131.091,493.615 131.081,493.589 C 131.07,493.562 131.056,493.539 131.038,493.519 C 131.019,493.498 130.997,493.482 130.972,493.467 C 130.949,493.455 130.923,493.446 130.894,493.443 C 130.865,493.44 130.84,493.443 130.816,493.451 Z M 130.3,493.451 L 130.432,493.465 C 130.448,493.467 130.464,493.472 130.482,493.482 C 130.497,493.49 130.511,493.501 130.523,493.514 C 130.535,493.528 130.543,493.542 130.551,493.559 C 130.557,493.575 130.561,493.593 130.561,493.612 C 130.561,493.629 130.557,493.647 130.551,493.662 C 130.543,493.677 130.535,493.689 130.523,493.702 C 130.511,493.711 130.497,493.719 130.482,493.724 C 130.464,493.73 130.448,493.731 130.432,493.729 L 130.3,493.715 L 130.3,493.451 Z M 131.132,493.468 L 131.168,493.547 L 131.337,493.901 L 131.509,493.583 L 131.545,493.514 L 131.464,493.505 L 131.427,493.573 L 131.337,493.74 L 131.25,493.554 L 131.213,493.478 L 131.132,493.468 Z M 131.68,493.532 C 131.669,493.533 131.66,493.534 131.652,493.538 C 131.639,493.544 131.628,493.551 131.618,493.56 C 131.607,493.57 131.6,493.579 131.594,493.592 C 131.589,493.601 131.587,493.61 131.584,493.618 C 131.581,493.628 131.581,493.637 131.581,493.649 L 131.581,493.928 L 131.652,493.935 L 131.652,493.649 C 131.653,493.64 131.656,493.632 131.66,493.626 C 131.665,493.619 131.67,493.615 131.679,493.612 C 131.685,493.606 131.694,493.605 131.702,493.605 L 131.914,493.626 L 131.914,493.553 L 131.708,493.531 C 131.698,493.53 131.689,493.531 131.68,493.532 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 126.285,499.91 L 126.283,501.961 L 126.622,501.997 L 126.624,500.948 L 126.902,501.252 L 127.154,501.525 L 127.682,502.104 L 128.184,502.155 L 127.355,501.247 L 128.179,500.103 L 127.761,500.06 L 127.104,500.972 L 126.624,500.453 L 126.624,499.944 L 126.285,499.91 Z M 128.352,500.121 L 128.527,500.505 L 129.318,502.27 L 130.115,500.667 L 130.289,500.318 L 129.909,500.279 L 129.735,500.628 L 129.32,501.466 L 128.904,500.544 L 128.732,500.16 L 128.352,500.121 Z M 130.459,500.335 L 130.463,500.335 L 130.723,500.727 L 131.188,501.431 L 131.404,501.752 L 131.662,502.144 L 130.456,502.02 L 130.455,502.385 L 131.924,502.536 L 132.348,502.578 L 132.086,502.185 L 131.615,501.474 L 131.402,501.152 L 131.146,500.772 L 132.359,500.894 L 132.36,500.526 L 130.89,500.379 L 130.889,500.379 L 130.459,500.335 Z M 132.937,500.629 C 132.875,500.654 132.82,500.687 132.775,500.733 C 132.727,500.779 132.691,500.834 132.665,500.898 C 132.638,500.962 132.626,501.033 132.625,501.109 L 132.623,502.053 C 132.623,502.13 132.636,502.204 132.662,502.272 C 132.689,502.342 132.724,502.403 132.772,502.46 C 132.818,502.514 132.872,502.56 132.934,502.594 C 132.995,502.63 133.062,502.651 133.133,502.659 L 134.519,502.799 L 134.519,502.434 L 133.133,502.292 C 133.1,502.287 133.072,502.277 133.046,502.258 C 133.02,502.238 132.999,502.214 132.983,502.184 C 132.968,502.154 132.961,502.122 132.961,502.087 L 132.961,501.896 L 134.181,502.021 L 134.182,501.655 L 132.961,501.532 L 132.961,501.144 C 132.961,501.108 132.969,501.079 132.985,501.053 C 133.001,501.025 133.021,501.004 133.047,500.99 C 133.073,500.976 133.101,500.97 133.135,500.972 L 134.521,501.114 L 134.521,500.748 L 133.135,500.606 C 133.066,500.601 132.998,500.607 132.937,500.629 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 128.289,498.819 L 128.289,499.257 C 128.289,499.279 128.292,499.3 128.301,499.322 C 128.308,499.342 128.32,499.361 128.334,499.376 C 128.348,499.392 128.366,499.405 128.386,499.416 C 128.405,499.426 128.425,499.433 128.448,499.436 L 128.881,499.481 L 128.881,499.375 L 128.448,499.329 C 128.438,499.327 128.429,499.324 128.42,499.317 C 128.412,499.311 128.406,499.305 128.401,499.297 C 128.396,499.287 128.394,499.279 128.394,499.268 L 128.394,499.213 L 128.774,499.252 L 128.774,499.145 L 128.394,499.105 L 128.394,498.831 L 128.289,498.819 Z M 128.967,498.892 L 128.966,499.329 C 128.966,499.35 128.97,499.372 128.979,499.392 C 128.986,499.413 128.997,499.43 129.011,499.447 C 129.026,499.464 129.045,499.477 129.063,499.488 C 129.082,499.498 129.102,499.505 129.125,499.507 L 129.557,499.552 L 129.558,499.446 L 129.126,499.4 C 129.115,499.398 129.106,499.395 129.098,499.39 C 129.089,499.383 129.084,499.376 129.078,499.368 C 129.074,499.359 129.071,499.35 129.071,499.34 L 129.071,499.284 L 129.452,499.325 L 129.452,499.218 L 129.071,499.176 L 129.071,498.902 L 128.967,498.892 Z M 129.645,498.963 L 129.643,499.563 L 130.016,499.602 C 130.039,499.604 130.059,499.602 130.077,499.595 C 130.096,499.589 130.114,499.58 130.128,499.567 L 130.128,499.565 C 130.144,499.551 130.155,499.536 130.165,499.517 C 130.172,499.498 130.176,499.478 130.176,499.456 C 130.176,499.434 130.172,499.413 130.165,499.393 C 130.157,499.373 130.145,499.355 130.132,499.339 C 130.117,499.324 130.102,499.309 130.083,499.298 C 130.069,499.29 130.054,499.284 130.038,499.281 C 130.036,499.281 130.034,499.281 130.033,499.28 L 130.033,499.279 L 129.749,499.249 L 129.75,498.974 L 129.645,498.963 Z M 130.26,499.026 L 130.26,499.202 C 130.26,499.216 130.261,499.227 130.264,499.239 C 130.266,499.25 130.27,499.262 130.274,499.273 C 130.283,499.295 130.295,499.314 130.309,499.331 C 130.325,499.35 130.342,499.364 130.364,499.376 C 130.383,499.386 130.405,499.393 130.429,499.397 L 130.682,499.424 L 130.684,499.424 C 130.697,499.427 130.708,499.433 130.716,499.44 C 130.726,499.447 130.733,499.456 130.739,499.467 C 130.744,499.477 130.747,499.489 130.747,499.501 C 130.747,499.514 130.744,499.525 130.737,499.536 C 130.731,499.545 130.724,499.552 130.713,499.558 C 130.703,499.564 130.691,499.566 130.677,499.565 L 130.261,499.52 L 130.261,499.627 L 130.677,499.672 C 130.703,499.674 130.726,499.672 130.746,499.665 C 130.767,499.658 130.784,499.647 130.802,499.632 C 130.818,499.618 130.831,499.601 130.839,499.581 C 130.848,499.561 130.852,499.537 130.853,499.512 C 130.853,499.5 130.852,499.488 130.849,499.477 C 130.846,499.465 130.844,499.453 130.839,499.442 C 130.834,499.43 130.83,499.421 130.824,499.412 C 130.818,499.403 130.811,499.393 130.803,499.385 C 130.788,499.367 130.769,499.352 130.749,499.341 C 130.729,499.329 130.708,499.323 130.683,499.317 L 130.681,499.317 C 130.68,499.317 130.679,499.317 130.677,499.317 L 130.429,499.291 C 130.417,499.289 130.406,499.284 130.397,499.276 C 130.387,499.269 130.38,499.26 130.375,499.249 C 130.369,499.239 130.368,499.228 130.368,499.216 L 130.368,499.146 L 130.85,499.195 L 130.851,499.088 L 130.433,499.044 L 130.26,499.026 Z M 131.35,499.143 L 131.349,499.739 L 131.455,499.67 L 131.837,499.412 L 131.836,499.794 L 131.942,499.804 L 131.943,499.205 L 131.837,499.276 L 131.455,499.532 L 131.456,499.154 L 131.35,499.143 Z M 132.027,499.215 L 132.027,499.815 L 132.401,499.853 C 132.421,499.856 132.442,499.854 132.462,499.847 C 132.482,499.84 132.498,499.83 132.512,499.817 C 132.527,499.805 132.538,499.789 132.546,499.77 C 132.555,499.75 132.559,499.73 132.559,499.708 C 132.559,499.686 132.555,499.666 132.547,499.644 C 132.539,499.625 132.529,499.607 132.514,499.591 C 132.501,499.575 132.485,499.562 132.467,499.551 C 132.453,499.543 132.436,499.536 132.42,499.531 L 132.506,499.372 L 132.56,499.271 L 132.442,499.258 L 132.388,499.359 L 132.329,499.466 L 132.328,499.47 C 132.318,499.485 132.306,499.496 132.29,499.503 C 132.275,499.511 132.257,499.513 132.238,499.511 L 132.133,499.5 L 132.134,499.226 L 132.027,499.215 Z M 129.749,499.355 L 130.018,499.383 C 130.02,499.383 130.025,499.384 130.029,499.385 C 130.032,499.388 130.036,499.389 130.039,499.391 L 130.039,499.391 C 130.049,499.396 130.058,499.404 130.062,499.414 C 130.069,499.422 130.071,499.434 130.071,499.444 C 130.071,499.455 130.069,499.462 130.065,499.469 C 130.062,499.475 130.058,499.48 130.056,499.483 C 130.051,499.485 130.047,499.488 130.041,499.491 C 130.034,499.493 130.026,499.494 130.018,499.493 L 129.749,499.466 L 129.749,499.355 Z M 132.133,499.607 L 132.401,499.634 C 132.404,499.636 132.407,499.636 132.412,499.638 C 132.415,499.64 132.419,499.641 132.421,499.642 C 132.433,499.648 132.439,499.658 132.445,499.667 C 132.453,499.676 132.455,499.686 132.455,499.697 C 132.454,499.707 132.453,499.715 132.447,499.721 C 132.444,499.728 132.442,499.731 132.438,499.734 C 132.434,499.737 132.429,499.741 132.424,499.743 C 132.416,499.745 132.409,499.747 132.401,499.745 L 132.133,499.718 L 132.133,499.607 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 126.403,497.623 L 126.402,498.021 L 126.644,498.046 C 126.658,498.047 126.673,498.046 126.684,498.042 C 126.696,498.038 126.708,498.033 126.718,498.022 L 126.718,498.021 C 126.728,498.013 126.735,498.003 126.74,497.99 C 126.745,497.977 126.749,497.964 126.749,497.949 C 126.749,497.935 126.746,497.92 126.741,497.907 C 126.736,497.894 126.73,497.882 126.721,497.871 C 126.71,497.86 126.7,497.852 126.688,497.845 C 126.678,497.839 126.669,497.835 126.658,497.834 C 126.657,497.834 126.656,497.833 126.656,497.833 L 126.656,497.833 L 126.47,497.814 L 126.472,497.631 L 126.403,497.623 Z M 126.803,497.663 L 126.802,498.061 L 127.047,498.087 C 127.062,498.088 127.075,498.087 127.086,498.083 C 127.099,498.078 127.108,498.072 127.119,498.063 C 127.128,498.054 127.135,498.044 127.142,498.033 C 127.146,498.02 127.149,498.006 127.149,497.991 C 127.149,497.976 127.146,497.962 127.143,497.949 C 127.136,497.936 127.129,497.925 127.12,497.914 C 127.11,497.903 127.102,497.894 127.089,497.887 C 127.08,497.88 127.07,497.876 127.06,497.874 L 127.114,497.767 L 127.149,497.7 L 127.074,497.691 L 127.037,497.757 L 127.001,497.83 L 126.999,497.833 C 126.993,497.843 126.985,497.85 126.975,497.854 C 126.964,497.86 126.953,497.861 126.941,497.86 L 126.871,497.853 L 126.871,497.671 L 126.803,497.663 Z M 127.309,497.732 C 127.287,497.74 127.267,497.753 127.249,497.768 C 127.23,497.786 127.217,497.806 127.207,497.827 C 127.198,497.852 127.192,497.876 127.192,497.904 C 127.192,497.932 127.198,497.958 127.206,497.981 C 127.217,498.008 127.23,498.031 127.249,498.051 C 127.265,498.07 127.287,498.087 127.308,498.099 C 127.332,498.113 127.357,498.121 127.385,498.124 C 127.411,498.126 127.437,498.124 127.46,498.116 C 127.482,498.106 127.504,498.096 127.521,498.078 C 127.539,498.062 127.553,498.044 127.562,498.02 C 127.572,497.996 127.577,497.97 127.577,497.943 C 127.577,497.916 127.572,497.891 127.562,497.864 C 127.553,497.839 127.54,497.819 127.521,497.798 C 127.504,497.778 127.482,497.76 127.461,497.748 C 127.437,497.736 127.411,497.728 127.385,497.724 L 127.346,497.725 C 127.333,497.727 127.321,497.729 127.309,497.732 Z M 127.776,497.765 L 127.776,498.092 L 127.619,498.076 L 127.619,498.147 L 128.002,498.188 L 128.002,498.117 L 127.846,498.099 L 127.847,497.771 L 127.776,497.765 Z M 127.385,497.796 C 127.401,497.798 127.418,497.803 127.433,497.811 C 127.449,497.82 127.462,497.83 127.472,497.843 C 127.482,497.854 127.493,497.87 127.5,497.887 C 127.506,497.903 127.508,497.919 127.508,497.937 C 127.508,497.954 127.506,497.97 127.499,497.985 C 127.493,498.001 127.482,498.014 127.472,498.024 C 127.461,498.034 127.448,498.042 127.432,498.046 C 127.418,498.052 127.401,498.053 127.385,498.052 C 127.367,498.051 127.351,498.046 127.336,498.037 C 127.321,498.029 127.308,498.019 127.296,498.006 C 127.286,497.992 127.277,497.979 127.27,497.961 C 127.265,497.945 127.261,497.929 127.261,497.912 C 127.261,497.894 127.265,497.876 127.27,497.861 C 127.277,497.847 127.287,497.835 127.297,497.825 C 127.308,497.814 127.322,497.806 127.336,497.801 C 127.351,497.796 127.368,497.795 127.385,497.796 Z M 128.121,497.81 C 128.111,497.814 128.101,497.82 128.089,497.83 C 128.081,497.839 128.073,497.848 128.069,497.861 C 128.063,497.873 128.06,497.888 128.06,497.903 L 128.06,498.086 C 128.06,498.1 128.062,498.116 128.067,498.129 C 128.073,498.142 128.08,498.154 128.089,498.165 C 128.099,498.176 128.11,498.184 128.121,498.191 C 128.134,498.197 128.147,498.202 128.163,498.204 L 128.444,498.234 L 128.444,498.162 L 128.163,498.133 C 128.157,498.131 128.15,498.13 128.144,498.126 C 128.14,498.123 128.135,498.118 128.133,498.112 C 128.129,498.104 128.127,498.099 128.127,498.092 L 128.127,498.056 L 128.375,498.081 L 128.375,498.01 L 128.127,497.984 L 128.128,497.911 C 128.128,497.903 128.129,497.898 128.133,497.892 C 128.136,497.887 128.14,497.882 128.145,497.879 C 128.152,497.876 128.157,497.876 128.163,497.876 L 128.444,497.906 L 128.444,497.835 L 128.163,497.806 C 128.148,497.804 128.135,497.806 128.121,497.81 Z M 128.611,497.867 C 128.587,497.875 128.568,497.888 128.55,497.904 C 128.532,497.92 128.518,497.94 128.509,497.962 C 128.499,497.986 128.494,498.012 128.494,498.039 C 128.494,498.066 128.499,498.092 128.509,498.118 C 128.517,498.143 128.532,498.165 128.55,498.186 C 128.568,498.205 128.587,498.222 128.611,498.235 C 128.634,498.248 128.659,498.255 128.686,498.259 L 128.877,498.278 L 128.877,498.206 L 128.686,498.187 C 128.669,498.185 128.652,498.179 128.638,498.171 C 128.623,498.164 128.609,498.154 128.598,498.14 C 128.586,498.128 128.579,498.115 128.571,498.097 C 128.566,498.081 128.562,498.064 128.562,498.046 C 128.562,498.029 128.566,498.012 128.572,497.996 C 128.579,497.981 128.586,497.969 128.599,497.959 C 128.61,497.949 128.625,497.941 128.638,497.936 C 128.652,497.93 128.669,497.929 128.686,497.93 L 128.878,497.951 L 128.878,497.879 L 128.686,497.859 L 128.647,497.859 C 128.635,497.86 128.623,497.863 128.611,497.867 Z M 126.47,497.884 L 126.645,497.902 C 126.649,497.903 126.651,497.903 126.654,497.904 C 126.656,497.904 126.657,497.905 126.66,497.907 C 126.666,497.911 126.671,497.915 126.675,497.922 C 126.678,497.928 126.68,497.935 126.68,497.942 C 126.68,497.948 126.678,497.954 126.676,497.957 C 126.675,497.962 126.672,497.966 126.669,497.967 C 126.668,497.968 126.665,497.97 126.661,497.972 C 126.656,497.975 126.652,497.975 126.645,497.975 L 126.47,497.957 L 126.47,497.884 Z M 129.091,497.903 L 129.091,498.229 L 128.933,498.212 L 128.933,498.285 L 129.318,498.324 L 129.318,498.253 L 129.161,498.235 L 129.161,497.91 L 129.091,497.903 Z M 126.871,497.925 L 127.047,497.943 C 127.049,497.943 127.051,497.943 127.054,497.944 C 127.056,497.944 127.058,497.946 127.062,497.947 C 127.067,497.951 127.072,497.956 127.076,497.962 C 127.08,497.968 127.082,497.975 127.082,497.982 C 127.082,497.99 127.08,497.994 127.078,498 C 127.076,498.004 127.074,498.007 127.071,498.008 C 127.069,498.01 127.065,498.012 127.063,498.014 C 127.058,498.016 127.052,498.017 127.047,498.016 L 126.871,497.998 L 126.871,497.925 Z M 129.374,497.93 L 129.373,498.329 L 129.443,498.337 L 129.444,497.938 L 129.374,497.93 Z M 129.671,497.962 L 129.51,498.272 L 129.475,498.34 L 129.552,498.348 L 129.587,498.28 L 129.671,498.119 L 129.755,498.298 L 129.791,498.373 L 129.868,498.382 L 129.832,498.305 L 129.671,497.962 Z M 129.966,498.001 C 129.954,498.006 129.943,498.012 129.934,498.021 C 129.924,498.029 129.916,498.04 129.911,498.053 C 129.905,498.064 129.902,498.078 129.902,498.092 L 129.902,498.277 C 129.902,498.291 129.904,498.304 129.91,498.318 C 129.916,498.332 129.923,498.344 129.933,498.356 C 129.942,498.366 129.953,498.376 129.966,498.382 C 129.977,498.389 129.992,498.393 130.006,498.395 L 130.286,498.424 L 130.286,498.353 L 130.006,498.324 C 129.998,498.323 129.993,498.32 129.987,498.317 C 129.982,498.313 129.979,498.309 129.975,498.302 C 129.972,498.297 129.97,498.291 129.97,498.285 L 129.97,498.247 L 130.219,498.272 L 130.219,498.202 L 129.971,498.176 L 129.971,498.1 C 129.971,498.093 129.973,498.088 129.975,498.083 C 129.979,498.078 129.982,498.072 129.988,498.071 C 129.993,498.068 129.999,498.066 130.006,498.067 L 130.287,498.097 L 130.287,498.026 L 130.006,497.996 C 129.992,497.994 129.978,497.996 129.966,498.001 Z M 130.609,498.059 L 130.608,498.456 L 130.852,498.483 C 130.866,498.484 130.879,498.483 130.892,498.478 C 130.905,498.473 130.916,498.467 130.925,498.459 C 130.935,498.449 130.942,498.439 130.948,498.426 C 130.952,498.413 130.955,498.4 130.955,498.385 C 130.955,498.37 130.953,498.356 130.949,498.343 C 130.943,498.33 130.936,498.317 130.927,498.308 C 130.918,498.298 130.909,498.288 130.895,498.282 C 130.887,498.276 130.875,498.272 130.865,498.27 L 130.922,498.162 L 130.956,498.093 L 130.878,498.086 L 130.845,498.154 L 130.807,498.224 L 130.807,498.227 C 130.8,498.237 130.791,498.245 130.78,498.25 C 130.769,498.254 130.759,498.257 130.748,498.256 L 130.677,498.248 L 130.677,498.065 L 130.609,498.059 Z M 131.075,498.117 C 131.064,498.12 131.052,498.128 131.043,498.136 C 131.033,498.144 131.026,498.155 131.021,498.167 C 131.015,498.179 131.013,498.194 131.013,498.207 L 131.013,498.392 C 131.013,498.407 131.014,498.42 131.02,498.433 C 131.026,498.448 131.033,498.46 131.043,498.472 C 131.052,498.483 131.063,498.491 131.075,498.498 C 131.088,498.504 131.101,498.509 131.115,498.51 L 131.396,498.538 L 131.396,498.468 L 131.115,498.44 C 131.109,498.439 131.103,498.435 131.097,498.431 C 131.093,498.428 131.089,498.423 131.084,498.418 C 131.082,498.411 131.08,498.406 131.08,498.398 L 131.08,498.363 L 131.328,498.387 L 131.328,498.316 L 131.081,498.291 L 131.081,498.216 C 131.081,498.208 131.083,498.203 131.085,498.197 C 131.089,498.193 131.093,498.189 131.097,498.186 C 131.103,498.183 131.11,498.182 131.115,498.182 L 131.397,498.212 L 131.397,498.141 L 131.116,498.112 C 131.102,498.111 131.088,498.113 131.075,498.117 Z M 131.527,498.164 C 131.512,498.169 131.499,498.177 131.488,498.187 C 131.477,498.196 131.469,498.21 131.462,498.225 C 131.456,498.239 131.452,498.255 131.452,498.272 L 131.522,498.279 C 131.522,498.269 131.523,498.259 131.529,498.253 C 131.533,498.245 131.539,498.239 131.547,498.235 C 131.555,498.231 131.562,498.23 131.575,498.23 L 131.696,498.243 C 131.705,498.244 131.713,498.248 131.722,498.253 C 131.729,498.259 131.736,498.265 131.74,498.275 C 131.745,498.284 131.747,498.292 131.747,498.303 C 131.747,498.313 131.745,498.322 131.74,498.33 C 131.736,498.338 131.729,498.343 131.722,498.348 C 131.713,498.351 131.705,498.353 131.696,498.352 L 131.555,498.338 L 131.536,498.338 C 131.529,498.338 131.522,498.34 131.516,498.342 C 131.504,498.345 131.495,498.352 131.483,498.36 C 131.48,498.364 131.473,498.369 131.471,498.376 C 131.464,498.384 131.46,498.393 131.457,498.403 C 131.453,498.413 131.452,498.424 131.452,498.434 L 131.452,498.437 C 131.452,498.453 131.455,498.466 131.46,498.479 C 131.465,498.493 131.472,498.505 131.483,498.516 C 131.493,498.527 131.503,498.536 131.516,498.542 C 131.527,498.55 131.541,498.554 131.555,498.555 L 131.711,498.572 C 131.725,498.574 131.739,498.572 131.752,498.568 C 131.764,498.563 131.775,498.557 131.786,498.549 C 131.795,498.538 131.803,498.528 131.808,498.516 C 131.814,498.504 131.815,498.491 131.815,498.475 L 131.815,498.473 L 131.747,498.465 L 131.747,498.467 C 131.747,498.474 131.745,498.479 131.742,498.485 C 131.738,498.491 131.734,498.494 131.73,498.498 C 131.724,498.499 131.718,498.501 131.711,498.5 L 131.555,498.485 C 131.549,498.484 131.542,498.481 131.537,498.477 C 131.533,498.473 131.529,498.468 131.524,498.462 C 131.522,498.457 131.521,498.451 131.521,498.444 L 131.521,498.441 C 131.521,498.433 131.522,498.429 131.524,498.423 C 131.529,498.418 131.533,498.414 131.538,498.411 C 131.542,498.409 131.549,498.407 131.555,498.408 L 131.696,498.422 L 131.721,498.422 C 131.728,498.42 131.736,498.42 131.744,498.417 C 131.76,498.411 131.773,498.403 131.784,498.392 C 131.786,498.392 131.786,498.391 131.787,498.389 C 131.787,498.388 131.787,498.388 131.788,498.387 C 131.797,498.377 131.804,498.366 131.808,498.353 C 131.814,498.34 131.816,498.324 131.816,498.31 C 131.816,498.292 131.813,498.276 131.807,498.259 C 131.801,498.245 131.792,498.23 131.781,498.219 C 131.768,498.205 131.756,498.194 131.741,498.186 C 131.727,498.179 131.711,498.173 131.696,498.171 L 131.575,498.159 C 131.556,498.157 131.541,498.159 131.527,498.164 Z M 131.872,498.191 L 131.871,498.588 L 132.114,498.614 C 132.13,498.615 132.143,498.614 132.154,498.609 C 132.167,498.606 132.178,498.599 132.188,498.589 L 132.188,498.589 C 132.197,498.58 132.205,498.569 132.21,498.557 C 132.214,498.543 132.218,498.53 132.218,498.516 C 132.218,498.501 132.215,498.487 132.21,498.475 C 132.206,498.46 132.199,498.449 132.189,498.439 C 132.18,498.427 132.17,498.419 132.157,498.412 C 132.149,498.407 132.139,498.403 132.129,498.401 C 132.128,498.401 132.126,498.4 132.125,498.4 L 132.125,498.4 L 131.942,498.381 L 131.942,498.197 L 131.872,498.191 Z M 132.274,498.232 L 132.273,498.63 L 132.341,498.636 L 132.343,498.239 L 132.274,498.232 Z M 132.397,498.243 L 132.396,498.641 L 132.64,498.666 C 132.654,498.669 132.667,498.667 132.681,498.663 C 132.693,498.66 132.703,498.651 132.713,498.643 C 132.723,498.633 132.73,498.623 132.735,498.611 C 132.74,498.599 132.743,498.586 132.743,498.57 C 132.743,498.556 132.74,498.542 132.736,498.529 C 132.73,498.516 132.724,498.503 132.715,498.492 C 132.705,498.483 132.695,498.474 132.683,498.466 C 132.673,498.46 132.663,498.458 132.653,498.454 L 132.708,498.348 L 132.743,498.279 L 132.667,498.271 L 132.631,498.34 L 132.595,498.409 L 132.593,498.412 C 132.587,498.421 132.579,498.429 132.569,498.433 C 132.558,498.44 132.546,498.442 132.535,498.441 L 132.467,498.433 L 132.467,498.25 L 132.397,498.243 Z M 132.776,498.285 L 132.813,498.359 L 132.974,498.702 L 133.135,498.392 L 133.171,498.324 L 133.093,498.317 L 133.059,498.384 L 132.974,498.545 L 132.889,498.367 L 132.853,498.291 L 132.776,498.285 Z M 130.677,498.318 L 130.852,498.338 C 130.855,498.338 130.858,498.34 130.859,498.34 C 130.861,498.34 130.864,498.342 130.866,498.343 C 130.872,498.346 130.877,498.351 130.882,498.357 C 130.885,498.364 130.888,498.37 130.888,498.379 C 130.888,498.384 130.887,498.39 130.884,498.394 C 130.882,498.398 130.878,498.401 130.877,498.403 C 130.874,498.406 130.871,498.407 130.868,498.408 C 130.864,498.409 130.863,498.409 130.859,498.41 L 130.852,498.41 L 130.677,498.392 L 130.677,498.318 Z M 133.361,498.344 L 133.361,498.673 L 133.202,498.655 L 133.202,498.726 L 133.588,498.766 L 133.588,498.697 L 133.429,498.679 L 133.43,498.351 L 133.361,498.344 Z M 133.747,498.4 C 133.724,498.407 133.705,498.42 133.686,498.435 C 133.67,498.453 133.655,498.473 133.644,498.496 C 133.634,498.517 133.629,498.543 133.629,498.572 C 133.629,498.599 133.634,498.625 133.644,498.649 C 133.654,498.676 133.669,498.698 133.686,498.717 C 133.704,498.737 133.724,498.754 133.747,498.767 C 133.77,498.78 133.796,498.789 133.822,498.791 C 133.85,498.793 133.873,498.791 133.897,498.783 C 133.92,498.776 133.942,498.763 133.959,498.745 C 133.976,498.73 133.989,498.711 134,498.687 C 134.01,498.665 134.015,498.639 134.015,498.611 C 134.015,498.584 134.01,498.557 134.001,498.531 C 133.989,498.507 133.976,498.485 133.959,498.464 C 133.943,498.446 133.921,498.428 133.898,498.416 C 133.874,498.403 133.85,498.395 133.823,498.392 L 133.784,498.392 C 133.771,498.394 133.76,498.396 133.747,498.4 Z M 134.057,498.416 L 134.056,498.813 L 134.298,498.839 C 134.313,498.84 134.327,498.838 134.34,498.834 C 134.352,498.83 134.363,498.824 134.373,498.816 C 134.383,498.807 134.389,498.796 134.395,498.783 C 134.4,498.771 134.402,498.756 134.402,498.742 C 134.402,498.728 134.4,498.715 134.395,498.701 C 134.39,498.687 134.383,498.676 134.374,498.665 C 134.365,498.653 134.355,498.645 134.344,498.638 C 134.332,498.633 134.323,498.629 134.311,498.627 L 134.369,498.518 L 134.403,498.451 L 134.326,498.444 L 134.292,498.511 L 134.254,498.582 L 134.252,498.585 C 134.247,498.595 134.239,498.602 134.228,498.608 C 134.218,498.612 134.206,498.614 134.194,498.612 L 134.125,498.607 L 134.125,498.422 L 134.057,498.416 Z M 131.94,498.451 L 132.114,498.469 C 132.117,498.47 132.121,498.47 132.123,498.472 C 132.124,498.472 132.128,498.473 132.13,498.474 L 132.13,498.475 C 132.136,498.479 132.141,498.484 132.144,498.49 C 132.149,498.496 132.149,498.503 132.15,498.511 C 132.149,498.516 132.149,498.522 132.147,498.525 C 132.144,498.53 132.143,498.533 132.139,498.535 C 132.137,498.536 132.135,498.538 132.13,498.54 C 132.126,498.542 132.122,498.543 132.114,498.542 L 131.94,498.524 L 131.94,498.451 Z M 133.823,498.463 C 133.84,498.465 133.856,498.47 133.871,498.479 C 133.886,498.486 133.899,498.498 133.91,498.511 C 133.922,498.523 133.931,498.538 133.937,498.554 C 133.944,498.569 133.946,498.587 133.946,498.604 C 133.946,498.621 133.944,498.638 133.937,498.652 C 133.931,498.669 133.921,498.682 133.909,498.692 C 133.899,498.702 133.886,498.71 133.871,498.715 C 133.856,498.719 133.84,498.72 133.822,498.719 C 133.805,498.717 133.789,498.711 133.775,498.705 C 133.76,498.698 133.746,498.685 133.734,498.674 C 133.723,498.66 133.715,498.645 133.708,498.629 C 133.702,498.613 133.699,498.597 133.699,498.58 C 133.699,498.561 133.702,498.543 133.708,498.529 C 133.715,498.515 133.723,498.503 133.734,498.492 C 133.746,498.483 133.76,498.474 133.776,498.469 C 133.79,498.463 133.805,498.461 133.823,498.463 Z M 132.467,498.504 L 132.64,498.523 C 132.643,498.523 132.645,498.524 132.647,498.525 C 132.649,498.525 132.652,498.526 132.654,498.527 C 132.66,498.53 132.665,498.536 132.669,498.542 C 132.673,498.55 132.675,498.556 132.675,498.563 C 132.675,498.569 132.673,498.576 132.672,498.58 C 132.669,498.583 132.667,498.586 132.664,498.588 C 132.662,498.591 132.659,498.592 132.654,498.594 C 132.651,498.595 132.645,498.595 132.64,498.595 L 132.467,498.578 L 132.467,498.504 Z M 134.125,498.677 L 134.298,498.697 C 134.302,498.697 134.305,498.697 134.307,498.698 C 134.309,498.698 134.311,498.698 134.313,498.7 C 134.319,498.704 134.324,498.709 134.33,498.715 C 134.332,498.72 134.334,498.727 134.334,498.735 C 134.334,498.741 134.332,498.745 134.331,498.75 C 134.33,498.754 134.326,498.757 134.323,498.759 C 134.321,498.762 134.318,498.763 134.314,498.765 C 134.31,498.768 134.305,498.768 134.298,498.768 L 134.125,498.75 L 134.125,498.677 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 121.533,510.954 L 121.359,511.114 L 138.767,512.25 L 138.856,512.211 C 138.886,512.201 138.914,512.173 138.914,512.128 L 138.914,512.085 L 121.533,510.954 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 121.359,511.114 L 121.358,487.663 L 121.447,487.579 L 121.533,487.592 L 121.533,510.953 L 121.359,511.114 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--CHAMPAGNE, .KN95_NR_individuals--CHAMPAGNE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.435 -433.287 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.848' gradientTransform='translate(30.077 405.816)'%3E%3Cstop offset='0' stop-color='%23dad2c3'/%3E%3Cstop offset='1' stop-color='%23fffaf0'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.921' gradientTransform='translate(26.538 406.431)'%3E%3Cstop offset='0' stop-color='%239f9c96'/%3E%3Cstop offset='1' stop-color='%23d9d5cc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.1' gradientTransform='translate(30.071 425.8)'%3E%3Cstop offset='0' stop-color='%23bdb9b2'/%3E%3Cstop offset='1' stop-color='%23dedad1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.228' gradientTransform='translate(25.398 427.855)'%3E%3Cstop offset='0' stop-color='%239b9892'/%3E%3Cstop offset='1' stop-color='%23bdb9b2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.165' gradientTransform='translate(38.39 427.672) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c9c5bd'/%3E%3Cstop offset='1' stop-color='%23e2ded5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.245 415.559) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bcb8b1'/%3E%3Cstop offset='1' stop-color='%23d9d5cc'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.164 416.558) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.164,403.403 L 27.164,426.89 L 44.611,428.009 C 44.623,427.995 44.633,427.974 44.633,427.951 L 44.633,405.77 L 27.164,403.403 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.164,403.403 L 23.7,406.765 L 23.699,428.787 L 27.164,426.89 L 27.164,403.403 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.164,426.89 L 23.699,428.787 L 40.631,429.715 L 44.575,428.035 C 44.588,428.03 44.601,428.022 44.611,428.009 L 27.164,426.89 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.077,426.621 L 23.697,428.51 L 23.696,428.787 L 27.077,426.936 L 27.077,426.621 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.205,409.005 L 34.205,409.414 L 34.277,409.423 L 34.277,409.011 L 34.205,409.005 Z M 34.335,409.017 L 34.335,409.426 L 34.407,409.38 L 34.669,409.204 L 34.669,409.465 L 34.74,409.473 L 34.74,409.063 L 34.669,409.11 L 34.407,409.287 L 34.407,409.026 L 34.335,409.017 Z M 34.798,409.068 L 34.798,409.48 L 35.001,409.501 C 35.029,409.504 35.055,409.502 35.078,409.493 C 35.103,409.486 35.125,409.474 35.144,409.456 C 35.162,409.439 35.176,409.42 35.186,409.397 C 35.197,409.373 35.203,409.346 35.203,409.318 C 35.203,409.292 35.199,409.269 35.19,409.245 C 35.181,409.222 35.169,409.2 35.154,409.181 C 35.153,409.179 35.151,409.176 35.149,409.174 C 35.147,409.172 35.146,409.169 35.142,409.166 C 35.125,409.145 35.103,409.13 35.078,409.115 C 35.056,409.103 35.03,409.094 35.001,409.091 L 34.798,409.068 Z M 35.26,409.119 L 35.26,409.53 L 35.334,409.536 L 35.334,409.127 L 35.26,409.119 Z M 34.87,409.149 L 35.001,409.163 C 35.018,409.166 35.035,409.172 35.05,409.18 C 35.067,409.188 35.08,409.198 35.092,409.211 C 35.103,409.224 35.114,409.241 35.121,409.257 C 35.127,409.275 35.13,409.292 35.131,409.309 C 35.13,409.328 35.127,409.344 35.121,409.36 C 35.114,409.376 35.103,409.388 35.092,409.399 C 35.08,409.411 35.067,409.418 35.05,409.423 C 35.035,409.428 35.018,409.429 35.001,409.427 L 34.87,409.413 L 34.87,409.149 Z M 35.575,409.154 L 35.404,409.473 L 35.367,409.541 L 35.449,409.549 L 35.485,409.481 L 35.575,409.315 L 35.663,409.501 L 35.699,409.578 L 35.78,409.586 L 35.743,409.508 L 35.575,409.154 Z M 35.816,409.18 L 35.816,409.59 L 35.889,409.598 L 35.889,409.187 L 35.816,409.18 Z M 35.947,409.194 L 35.947,409.604 L 36.149,409.625 C 36.177,409.628 36.203,409.625 36.228,409.618 C 36.252,409.612 36.273,409.599 36.291,409.582 C 36.311,409.565 36.324,409.544 36.335,409.521 C 36.346,409.497 36.351,409.472 36.351,409.443 C 36.351,409.418 36.347,409.393 36.339,409.371 C 36.33,409.346 36.319,409.325 36.303,409.305 C 36.301,409.303 36.299,409.301 36.297,409.299 C 36.296,409.296 36.294,409.293 36.29,409.292 C 36.272,409.271 36.252,409.254 36.228,409.24 C 36.203,409.226 36.177,409.219 36.149,409.215 L 35.947,409.194 Z M 36.535,409.274 C 36.509,409.282 36.487,409.293 36.469,409.31 C 36.45,409.327 36.436,409.347 36.425,409.372 C 36.416,409.395 36.41,409.421 36.41,409.449 L 36.41,409.654 L 36.481,409.662 L 36.481,409.456 C 36.481,409.438 36.485,409.422 36.491,409.407 C 36.498,409.392 36.508,409.38 36.521,409.368 C 36.533,409.357 36.546,409.348 36.562,409.344 C 36.577,409.339 36.593,409.336 36.612,409.339 C 36.63,409.341 36.647,409.346 36.662,409.355 C 36.678,409.364 36.692,409.375 36.704,409.388 C 36.715,409.401 36.725,409.416 36.731,409.433 C 36.739,409.45 36.742,409.467 36.742,409.486 L 36.742,409.69 L 36.815,409.698 L 36.815,409.493 C 36.815,409.465 36.809,409.437 36.799,409.412 C 36.787,409.386 36.774,409.362 36.754,409.341 C 36.737,409.321 36.715,409.305 36.69,409.29 C 36.667,409.278 36.64,409.269 36.612,409.266 C 36.583,409.263 36.558,409.266 36.535,409.274 Z M 36.018,409.275 L 36.149,409.289 C 36.166,409.29 36.182,409.295 36.199,409.305 C 36.215,409.313 36.229,409.323 36.241,409.336 C 36.253,409.351 36.262,409.366 36.268,409.383 C 36.275,409.399 36.278,409.416 36.279,409.434 C 36.278,409.452 36.275,409.47 36.268,409.486 C 36.262,409.501 36.253,409.514 36.241,409.523 C 36.229,409.534 36.215,409.541 36.199,409.547 C 36.182,409.553 36.166,409.554 36.149,409.553 L 36.018,409.538 L 36.018,409.275 Z M 36.85,409.292 L 36.886,409.37 L 37.055,409.724 L 37.226,409.406 L 37.262,409.335 L 37.182,409.328 L 37.145,409.398 L 37.055,409.562 L 36.968,409.379 L 36.93,409.301 L 36.85,409.292 Z M 37.397,409.355 C 37.386,409.357 37.378,409.358 37.369,409.362 C 37.356,409.367 37.345,409.374 37.335,409.384 C 37.326,409.392 37.317,409.403 37.311,409.415 C 37.307,409.424 37.304,409.432 37.302,409.441 C 37.299,409.45 37.298,409.461 37.298,409.472 L 37.298,409.75 L 37.369,409.758 L 37.369,409.473 C 37.371,409.464 37.373,409.455 37.378,409.45 C 37.382,409.443 37.387,409.437 37.395,409.433 C 37.403,409.43 37.412,409.428 37.419,409.427 L 37.632,409.45 L 37.632,409.378 L 37.426,409.355 C 37.416,409.354 37.406,409.354 37.397,409.355 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.003,415.732 L 32.001,417.785 L 32.339,417.819 L 32.341,416.771 L 32.62,417.074 L 32.871,417.349 L 33.399,417.927 L 33.902,417.978 L 33.073,417.071 L 33.897,415.925 L 33.479,415.884 L 32.822,416.796 L 32.341,416.275 L 32.341,415.768 L 32.003,415.732 Z M 34.069,415.944 L 34.243,416.327 L 35.036,418.094 L 35.833,416.49 L 36.006,416.141 L 35.628,416.102 L 35.454,416.451 L 35.037,417.288 L 34.622,416.366 L 34.45,415.983 L 34.069,415.944 Z M 36.178,416.157 L 36.18,416.158 L 36.441,416.551 L 36.906,417.254 L 37.122,417.575 L 37.38,417.967 L 36.173,417.843 L 36.173,418.21 L 37.641,418.358 L 38.066,418.403 L 37.803,418.009 L 37.332,417.297 L 37.12,416.976 L 36.864,416.594 L 38.077,416.717 L 38.078,416.35 L 36.609,416.202 L 36.605,416.202 L 36.178,416.157 Z M 38.653,416.454 C 38.593,416.477 38.538,416.51 38.491,416.557 C 38.445,416.602 38.408,416.657 38.382,416.721 C 38.356,416.785 38.343,416.856 38.342,416.932 L 38.341,417.877 C 38.341,417.954 38.353,418.026 38.38,418.095 C 38.407,418.164 38.442,418.226 38.49,418.282 C 38.536,418.339 38.59,418.383 38.652,418.417 C 38.713,418.453 38.78,418.474 38.851,418.482 L 40.236,418.623 L 40.236,418.257 L 38.851,418.115 C 38.818,418.112 38.789,418.1 38.763,418.081 C 38.737,418.061 38.716,418.036 38.701,418.007 C 38.685,417.978 38.678,417.945 38.678,417.91 L 38.678,417.719 L 39.898,417.845 L 39.898,417.478 L 38.678,417.354 L 38.678,416.967 C 38.678,416.932 38.686,416.902 38.703,416.875 C 38.718,416.847 38.739,416.827 38.765,416.813 C 38.791,416.798 38.819,416.794 38.853,416.796 L 40.238,416.937 L 40.239,416.571 L 38.853,416.43 C 38.782,416.423 38.716,416.431 38.653,416.454 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.006,414.642 L 34.006,415.079 C 34.006,415.103 34.011,415.124 34.018,415.144 C 34.026,415.164 34.037,415.183 34.052,415.2 C 34.067,415.216 34.083,415.228 34.103,415.239 C 34.123,415.249 34.143,415.256 34.165,415.258 L 34.598,415.304 L 34.598,415.198 L 34.165,415.151 C 34.156,415.15 34.147,415.147 34.138,415.141 C 34.13,415.135 34.125,415.128 34.119,415.119 C 34.114,415.111 34.112,415.102 34.112,415.093 L 34.112,415.035 L 34.493,415.075 L 34.493,414.968 L 34.112,414.928 L 34.112,414.654 L 34.006,414.642 Z M 34.684,414.713 L 34.684,415.151 C 34.684,415.173 34.688,415.196 34.696,415.216 C 34.703,415.235 34.714,415.253 34.729,415.27 C 34.744,415.286 34.761,415.3 34.78,415.311 C 34.799,415.321 34.819,415.327 34.843,415.331 L 35.275,415.376 L 35.276,415.268 L 34.843,415.224 C 34.833,415.222 34.824,415.219 34.816,415.214 C 34.808,415.208 34.802,415.2 34.797,415.191 C 34.792,415.182 34.79,415.172 34.79,415.162 L 34.79,415.108 L 35.17,415.147 L 35.17,415.041 L 34.789,415.001 L 34.79,414.724 L 34.684,414.713 Z M 35.361,414.786 L 35.36,415.385 L 35.734,415.425 C 35.756,415.427 35.777,415.425 35.795,415.419 C 35.815,415.413 35.831,415.402 35.846,415.389 L 35.847,415.387 C 35.863,415.374 35.873,415.359 35.882,415.34 C 35.889,415.321 35.895,415.3 35.895,415.279 C 35.895,415.256 35.889,415.235 35.883,415.216 C 35.874,415.196 35.864,415.177 35.849,415.162 C 35.836,415.146 35.819,415.132 35.801,415.123 C 35.787,415.113 35.772,415.108 35.755,415.105 C 35.754,415.105 35.752,415.105 35.751,415.104 L 35.751,415.103 L 35.467,415.072 L 35.467,414.798 L 35.361,414.786 Z M 35.978,414.848 L 35.978,415.027 C 35.978,415.038 35.979,415.049 35.981,415.061 C 35.984,415.073 35.988,415.086 35.991,415.097 C 36,415.118 36.012,415.137 36.028,415.155 C 36.043,415.172 36.06,415.187 36.081,415.2 C 36.101,415.209 36.122,415.217 36.146,415.221 L 36.399,415.247 L 36.402,415.247 C 36.414,415.25 36.425,415.255 36.435,415.262 C 36.444,415.269 36.451,415.279 36.456,415.291 C 36.462,415.3 36.464,415.312 36.464,415.325 C 36.464,415.337 36.461,415.349 36.455,415.359 C 36.449,415.368 36.442,415.376 36.431,415.382 C 36.42,415.387 36.409,415.389 36.395,415.387 L 35.979,415.344 L 35.979,415.451 L 36.395,415.494 C 36.42,415.496 36.444,415.494 36.464,415.487 C 36.484,415.481 36.502,415.47 36.52,415.456 C 36.536,415.441 36.548,415.425 36.556,415.403 C 36.566,415.383 36.57,415.361 36.57,415.336 C 36.57,415.324 36.569,415.312 36.567,415.299 C 36.564,415.287 36.561,415.276 36.555,415.265 C 36.553,415.253 36.548,415.244 36.541,415.235 C 36.536,415.226 36.529,415.217 36.522,415.209 C 36.506,415.19 36.487,415.175 36.467,415.163 C 36.446,415.152 36.425,415.145 36.401,415.141 L 36.399,415.141 C 36.398,415.141 36.397,415.141 36.395,415.141 L 36.146,415.115 C 36.134,415.112 36.124,415.108 36.115,415.1 C 36.105,415.093 36.097,415.083 36.092,415.072 C 36.087,415.061 36.085,415.051 36.085,415.039 L 36.085,414.969 L 36.568,415.019 L 36.568,414.911 L 36.151,414.867 L 35.978,414.848 Z M 37.068,414.966 L 37.068,415.562 L 37.173,415.492 L 37.554,415.235 L 37.554,415.616 L 37.659,415.627 L 37.66,415.028 L 37.554,415.1 L 37.173,415.357 L 37.173,414.977 L 37.068,414.966 Z M 37.745,415.038 L 37.744,415.638 L 38.118,415.677 C 38.139,415.68 38.16,415.678 38.18,415.669 C 38.2,415.665 38.216,415.654 38.23,415.641 C 38.244,415.627 38.256,415.612 38.264,415.593 C 38.272,415.574 38.277,415.553 38.277,415.532 C 38.277,415.509 38.272,415.488 38.265,415.467 C 38.257,415.448 38.246,415.43 38.232,415.414 C 38.219,415.398 38.202,415.385 38.185,415.374 C 38.169,415.365 38.154,415.359 38.138,415.356 L 38.224,415.194 L 38.277,415.094 L 38.159,415.081 L 38.105,415.182 L 38.048,415.288 L 38.045,415.292 C 38.036,415.308 38.024,415.319 38.007,415.326 C 37.993,415.334 37.975,415.337 37.955,415.335 L 37.851,415.324 L 37.852,415.047 L 37.745,415.038 Z M 35.467,415.177 L 35.735,415.207 C 35.738,415.207 35.741,415.208 35.747,415.209 C 35.75,415.211 35.753,415.213 35.757,415.215 L 35.757,415.215 C 35.767,415.22 35.775,415.228 35.78,415.237 C 35.786,415.247 35.789,415.256 35.789,415.267 C 35.789,415.278 35.787,415.285 35.783,415.292 C 35.78,415.298 35.776,415.303 35.773,415.306 C 35.769,415.309 35.765,415.312 35.758,415.314 C 35.752,415.318 35.743,415.318 35.735,415.318 L 35.467,415.288 L 35.467,415.177 Z M 37.851,415.43 L 38.118,415.459 C 38.122,415.459 38.125,415.46 38.129,415.46 C 38.133,415.463 38.136,415.464 38.139,415.467 C 38.149,415.472 38.157,415.48 38.162,415.489 C 38.168,415.499 38.173,415.509 38.173,415.519 C 38.171,415.531 38.169,415.538 38.165,415.544 C 38.161,415.551 38.159,415.555 38.155,415.558 C 38.152,415.561 38.148,415.564 38.141,415.567 C 38.135,415.569 38.127,415.57 38.118,415.569 L 37.85,415.541 L 37.851,415.43 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.12,413.446 L 32.12,413.844 L 32.362,413.869 C 32.377,413.872 32.39,413.869 32.403,413.865 C 32.414,413.86 32.426,413.855 32.436,413.845 L 32.436,413.845 C 32.446,413.835 32.453,413.826 32.458,413.814 C 32.463,413.801 32.467,413.788 32.467,413.773 C 32.467,413.756 32.464,413.743 32.459,413.73 C 32.454,413.717 32.448,413.706 32.438,413.695 C 32.429,413.684 32.417,413.674 32.406,413.669 C 32.397,413.663 32.387,413.658 32.377,413.658 C 32.375,413.658 32.374,413.656 32.373,413.656 L 32.373,413.656 L 32.189,413.636 L 32.189,413.454 L 32.12,413.446 Z M 32.52,413.486 L 32.52,413.885 L 32.764,413.911 C 32.779,413.911 32.792,413.911 32.804,413.906 C 32.816,413.902 32.827,413.896 32.836,413.886 C 32.846,413.878 32.853,413.867 32.86,413.855 C 32.864,413.843 32.867,413.829 32.868,413.814 C 32.867,413.8 32.864,413.786 32.861,413.773 C 32.853,413.758 32.847,413.747 32.838,413.736 C 32.829,413.725 32.819,413.717 32.807,413.71 C 32.797,413.704 32.788,413.7 32.778,413.698 L 32.832,413.59 L 32.868,413.522 L 32.791,413.514 L 32.755,413.581 L 32.718,413.653 L 32.716,413.656 C 32.711,413.667 32.702,413.673 32.693,413.679 C 32.681,413.684 32.671,413.685 32.659,413.684 L 32.59,413.677 L 32.59,413.494 L 32.52,413.486 Z M 33.027,413.556 C 33.005,413.563 32.984,413.576 32.967,413.591 C 32.948,413.608 32.934,413.628 32.926,413.65 C 32.915,413.674 32.911,413.7 32.909,413.728 C 32.911,413.755 32.915,413.782 32.925,413.806 C 32.934,413.831 32.948,413.853 32.965,413.873 C 32.984,413.894 33.004,413.911 33.027,413.923 C 33.05,413.936 33.074,413.943 33.102,413.946 C 33.128,413.949 33.153,413.946 33.178,413.938 C 33.199,413.93 33.221,413.919 33.238,413.903 C 33.256,413.886 33.27,413.866 33.279,413.843 C 33.289,413.82 33.294,413.795 33.294,413.768 C 33.294,413.739 33.289,413.713 33.279,413.687 C 33.27,413.663 33.256,413.641 33.239,413.62 C 33.222,413.601 33.199,413.583 33.178,413.571 C 33.153,413.558 33.129,413.55 33.103,413.549 L 33.064,413.549 C 33.051,413.55 33.039,413.552 33.027,413.556 Z M 33.494,413.588 L 33.494,413.916 L 33.337,413.899 L 33.337,413.969 L 33.72,414.011 L 33.72,413.939 L 33.565,413.923 L 33.565,413.595 L 33.494,413.588 Z M 33.103,413.619 C 33.12,413.62 33.136,413.626 33.151,413.634 C 33.166,413.643 33.179,413.653 33.189,413.666 C 33.2,413.679 33.211,413.693 33.217,413.71 C 33.223,413.724 33.227,413.743 33.227,413.76 C 33.227,413.778 33.223,413.794 33.217,413.809 C 33.211,413.823 33.2,413.836 33.189,413.846 C 33.178,413.857 33.165,413.865 33.151,413.869 C 33.135,413.875 33.12,413.877 33.102,413.875 C 33.085,413.873 33.068,413.868 33.054,413.859 C 33.039,413.852 33.025,413.841 33.014,413.829 C 33.004,413.815 32.995,413.802 32.988,413.784 C 32.983,413.769 32.978,413.752 32.978,413.735 C 32.978,413.717 32.983,413.7 32.988,413.685 C 32.995,413.671 33.004,413.658 33.015,413.647 C 33.026,413.637 33.039,413.629 33.054,413.624 C 33.068,413.62 33.086,413.617 33.103,413.619 Z M 33.839,413.633 C 33.829,413.636 33.817,413.643 33.808,413.653 C 33.798,413.662 33.791,413.672 33.785,413.684 C 33.78,413.697 33.779,413.711 33.779,413.725 L 33.778,413.91 C 33.779,413.924 33.779,413.938 33.785,413.951 C 33.791,413.964 33.798,413.976 33.808,413.989 C 33.817,413.999 33.827,414.007 33.839,414.014 C 33.852,414.021 33.866,414.027 33.88,414.027 L 34.162,414.056 L 34.162,413.986 L 33.88,413.956 C 33.875,413.955 33.868,413.953 33.862,413.949 C 33.858,413.945 33.853,413.94 33.85,413.935 C 33.847,413.929 33.845,413.922 33.845,413.916 L 33.845,413.879 L 34.094,413.905 L 34.094,413.833 L 33.845,413.808 L 33.846,413.733 C 33.846,413.725 33.847,413.72 33.85,413.715 C 33.853,413.71 33.858,413.706 33.862,413.704 C 33.868,413.7 33.876,413.699 33.88,413.7 L 34.162,413.73 L 34.162,413.658 L 33.881,413.629 C 33.866,413.627 33.853,413.629 33.839,413.633 Z M 34.328,413.691 C 34.305,413.698 34.286,413.711 34.268,413.726 C 34.25,413.743 34.236,413.763 34.226,413.787 C 34.217,413.809 34.211,413.834 34.211,413.861 C 34.211,413.89 34.217,413.916 34.226,413.94 C 34.236,413.965 34.25,413.989 34.268,414.008 C 34.286,414.029 34.305,414.045 34.328,414.058 C 34.352,414.07 34.377,414.078 34.404,414.081 L 34.596,414.102 L 34.596,414.03 L 34.404,414.01 C 34.386,414.008 34.371,414.003 34.355,413.995 C 34.341,413.988 34.327,413.976 34.315,413.962 C 34.305,413.949 34.295,413.937 34.289,413.92 C 34.284,413.905 34.28,413.887 34.28,413.869 C 34.28,413.852 34.284,413.835 34.289,413.82 C 34.295,413.806 34.305,413.794 34.316,413.782 C 34.327,413.773 34.341,413.764 34.356,413.758 C 34.371,413.754 34.386,413.752 34.404,413.754 L 34.596,413.774 L 34.596,413.704 L 34.404,413.683 L 34.365,413.683 C 34.353,413.684 34.341,413.687 34.328,413.691 Z M 32.189,413.707 L 32.363,413.724 C 32.365,413.724 32.369,413.725 32.371,413.726 C 32.373,413.726 32.375,413.728 32.378,413.73 C 32.384,413.734 32.389,413.737 32.393,413.744 C 32.397,413.75 32.397,413.756 32.397,413.765 C 32.397,413.771 32.397,413.777 32.395,413.781 C 32.392,413.786 32.39,413.788 32.388,413.79 C 32.385,413.793 32.382,413.795 32.378,413.796 C 32.374,413.798 32.37,413.799 32.363,413.798 L 32.189,413.781 L 32.189,413.707 Z M 34.809,413.724 L 34.809,414.053 L 34.651,414.036 L 34.651,414.108 L 35.036,414.148 L 35.036,414.075 L 34.878,414.059 L 34.878,413.732 L 34.809,413.724 Z M 32.59,413.747 L 32.764,413.766 C 32.765,413.767 32.769,413.768 32.772,413.768 C 32.774,413.769 32.776,413.769 32.779,413.77 C 32.785,413.775 32.79,413.779 32.794,413.787 C 32.797,413.792 32.799,413.799 32.799,413.806 C 32.799,413.813 32.797,413.818 32.796,413.822 C 32.794,413.827 32.791,413.829 32.789,413.831 C 32.787,413.833 32.783,413.835 32.78,413.837 C 32.776,413.839 32.77,413.84 32.764,413.839 L 32.59,413.82 L 32.59,413.747 Z M 35.091,413.754 L 35.09,414.152 L 35.16,414.16 L 35.16,413.763 L 35.091,413.754 Z M 35.39,413.786 L 35.228,414.097 L 35.191,414.162 L 35.269,414.17 L 35.306,414.104 L 35.389,413.942 L 35.473,414.121 L 35.508,414.195 L 35.585,414.205 L 35.55,414.13 L 35.39,413.786 Z M 35.683,413.824 C 35.671,413.829 35.661,413.834 35.651,413.843 C 35.642,413.852 35.634,413.863 35.629,413.875 C 35.623,413.888 35.619,413.902 35.619,413.916 L 35.619,414.1 C 35.619,414.115 35.622,414.129 35.628,414.142 C 35.632,414.156 35.641,414.168 35.651,414.178 C 35.66,414.188 35.671,414.199 35.683,414.206 C 35.695,414.213 35.708,414.217 35.723,414.219 L 36.004,414.247 L 36.004,414.175 L 35.723,414.148 C 35.715,414.147 35.71,414.143 35.705,414.14 C 35.7,414.137 35.696,414.132 35.693,414.126 C 35.689,414.121 35.688,414.114 35.688,414.108 L 35.688,414.07 L 35.937,414.097 L 35.937,414.026 L 35.689,414.001 L 35.689,413.924 C 35.689,413.917 35.69,413.911 35.694,413.906 C 35.696,413.901 35.7,413.896 35.706,413.894 C 35.71,413.892 35.716,413.891 35.724,413.892 L 36.005,413.92 L 36.005,413.848 L 35.724,413.82 C 35.709,413.819 35.695,413.82 35.683,413.824 Z M 36.328,413.881 L 36.326,414.279 L 36.569,414.305 C 36.583,414.306 36.597,414.305 36.61,414.3 C 36.622,414.296 36.634,414.289 36.644,414.281 C 36.653,414.272 36.66,414.261 36.666,414.249 C 36.67,414.237 36.673,414.223 36.673,414.208 C 36.673,414.193 36.67,414.179 36.666,414.166 C 36.661,414.153 36.654,414.141 36.645,414.131 C 36.636,414.121 36.625,414.111 36.612,414.105 C 36.604,414.099 36.593,414.095 36.583,414.094 L 36.639,413.984 L 36.673,413.917 L 36.596,413.91 L 36.562,413.976 L 36.525,414.046 L 36.523,414.051 C 36.517,414.059 36.508,414.067 36.497,414.072 C 36.488,414.077 36.477,414.079 36.465,414.078 L 36.395,414.071 L 36.395,413.888 L 36.328,413.881 Z M 36.793,413.939 C 36.78,413.943 36.769,413.949 36.761,413.959 C 36.751,413.968 36.744,413.977 36.739,413.991 C 36.733,414.003 36.729,414.017 36.729,414.031 L 36.729,414.216 C 36.729,414.23 36.733,414.244 36.738,414.258 C 36.743,414.271 36.75,414.283 36.761,414.294 C 36.769,414.305 36.78,414.314 36.793,414.322 C 36.805,414.328 36.818,414.332 36.832,414.333 L 37.115,414.362 L 37.115,414.291 L 36.832,414.261 C 36.827,414.261 36.82,414.259 36.815,414.255 C 36.812,414.252 36.806,414.247 36.803,414.241 C 36.8,414.235 36.798,414.229 36.798,414.222 L 36.798,414.185 L 37.045,414.211 L 37.045,414.139 L 36.799,414.114 L 36.799,414.04 C 36.799,414.032 36.8,414.027 36.803,414.021 C 36.806,414.016 36.812,414.013 36.815,414.01 C 36.821,414.007 36.827,414.006 36.832,414.006 L 37.116,414.035 L 37.116,413.963 L 36.833,413.935 C 36.819,413.934 36.806,413.936 36.793,413.939 Z M 37.244,413.988 C 37.23,413.993 37.218,414.001 37.206,414.01 C 37.194,414.02 37.187,414.034 37.179,414.047 C 37.173,414.062 37.169,414.078 37.169,414.096 L 37.24,414.103 C 37.24,414.093 37.242,414.083 37.245,414.075 C 37.251,414.068 37.257,414.061 37.264,414.058 C 37.273,414.054 37.28,414.053 37.292,414.053 L 37.413,414.065 C 37.422,414.067 37.432,414.07 37.44,414.075 C 37.446,414.082 37.453,414.088 37.458,414.098 C 37.463,414.107 37.465,414.117 37.465,414.126 C 37.465,414.137 37.463,414.145 37.458,414.152 C 37.453,414.161 37.446,414.165 37.44,414.169 C 37.431,414.174 37.422,414.175 37.413,414.175 L 37.273,414.161 L 37.253,414.161 C 37.245,414.162 37.24,414.162 37.234,414.163 C 37.221,414.169 37.212,414.175 37.201,414.182 C 37.197,414.188 37.192,414.193 37.187,414.199 C 37.182,414.208 37.177,414.217 37.174,414.227 C 37.171,414.236 37.169,414.247 37.169,414.258 L 37.169,414.26 C 37.169,414.274 37.173,414.289 37.177,414.303 C 37.183,414.318 37.19,414.329 37.2,414.339 C 37.211,414.35 37.22,414.359 37.232,414.365 C 37.245,414.373 37.258,414.376 37.273,414.378 L 37.429,414.395 C 37.443,414.396 37.456,414.395 37.469,414.39 C 37.482,414.387 37.493,414.379 37.502,414.371 C 37.512,414.362 37.52,414.351 37.525,414.339 C 37.531,414.327 37.533,414.314 37.533,414.298 L 37.533,414.296 L 37.464,414.287 L 37.464,414.289 C 37.464,414.297 37.463,414.303 37.459,414.308 C 37.456,414.314 37.452,414.318 37.446,414.321 C 37.442,414.323 37.436,414.324 37.429,414.324 L 37.273,414.306 C 37.266,414.306 37.26,414.304 37.255,414.299 C 37.251,414.296 37.245,414.291 37.242,414.285 C 37.24,414.279 37.239,414.272 37.239,414.267 L 37.239,414.264 C 37.239,414.258 37.24,414.253 37.242,414.247 C 37.245,414.241 37.251,414.237 37.255,414.235 C 37.26,414.232 37.266,414.231 37.273,414.232 L 37.413,414.246 L 37.438,414.246 C 37.445,414.245 37.454,414.244 37.461,414.24 C 37.477,414.235 37.49,414.227 37.502,414.216 C 37.502,414.215 37.503,414.215 37.504,414.213 C 37.504,414.213 37.504,414.212 37.506,414.211 C 37.515,414.201 37.522,414.188 37.526,414.175 C 37.532,414.162 37.534,414.149 37.534,414.134 C 37.534,414.117 37.531,414.099 37.524,414.083 C 37.519,414.068 37.51,414.053 37.498,414.041 C 37.486,414.028 37.474,414.018 37.459,414.01 C 37.445,414.002 37.429,413.996 37.413,413.995 L 37.292,413.981 C 37.275,413.98 37.258,413.981 37.244,413.988 Z M 37.59,414.014 L 37.588,414.411 L 37.832,414.437 C 37.846,414.44 37.859,414.437 37.871,414.433 C 37.884,414.429 37.895,414.421 37.906,414.413 L 37.906,414.413 C 37.915,414.403 37.922,414.392 37.928,414.379 C 37.932,414.368 37.935,414.354 37.935,414.339 C 37.935,414.325 37.934,414.31 37.928,414.297 C 37.923,414.284 37.916,414.272 37.908,414.261 C 37.898,414.251 37.889,414.242 37.876,414.235 C 37.867,414.23 37.857,414.227 37.846,414.224 C 37.845,414.224 37.844,414.223 37.843,414.223 L 37.843,414.222 L 37.658,414.204 L 37.658,414.021 L 37.59,414.014 Z M 37.992,414.055 L 37.991,414.453 L 38.058,414.46 L 38.059,414.062 L 37.992,414.055 Z M 38.116,414.065 L 38.115,414.465 L 38.357,414.489 C 38.372,414.492 38.385,414.49 38.399,414.485 C 38.411,414.482 38.42,414.475 38.431,414.466 C 38.44,414.457 38.447,414.447 38.452,414.434 C 38.458,414.421 38.46,414.408 38.461,414.394 C 38.46,414.379 38.458,414.364 38.453,414.352 C 38.448,414.338 38.441,414.327 38.433,414.317 C 38.424,414.305 38.413,414.297 38.401,414.289 C 38.39,414.284 38.38,414.28 38.371,414.278 L 38.426,414.169 L 38.461,414.103 L 38.384,414.095 L 38.348,414.162 L 38.313,414.232 L 38.31,414.235 C 38.304,414.245 38.297,414.253 38.286,414.258 C 38.276,414.263 38.264,414.265 38.252,414.264 L 38.184,414.256 L 38.184,414.072 L 38.116,414.065 Z M 38.495,414.108 L 38.53,414.182 L 38.69,414.525 L 38.853,414.216 L 38.889,414.149 L 38.811,414.139 L 38.776,414.208 L 38.69,414.369 L 38.606,414.189 L 38.572,414.116 L 38.495,414.108 Z M 36.395,414.142 L 36.57,414.161 C 36.573,414.162 36.575,414.162 36.577,414.162 C 36.58,414.162 36.581,414.163 36.583,414.165 C 36.59,414.169 36.595,414.174 36.6,414.18 C 36.603,414.187 36.605,414.193 36.605,414.201 C 36.605,414.208 36.604,414.214 36.601,414.218 C 36.599,414.221 36.596,414.226 36.594,414.227 C 36.591,414.229 36.588,414.23 36.586,414.232 C 36.582,414.232 36.58,414.233 36.578,414.234 L 36.569,414.234 L 36.395,414.216 L 36.395,414.142 Z M 39.079,414.167 L 39.079,414.495 L 38.921,414.479 L 38.92,414.55 L 39.305,414.589 L 39.305,414.518 L 39.147,414.501 L 39.148,414.174 L 39.079,414.167 Z M 39.465,414.223 C 39.441,414.231 39.422,414.244 39.404,414.259 C 39.388,414.276 39.373,414.295 39.362,414.319 C 39.353,414.342 39.347,414.366 39.347,414.395 C 39.347,414.421 39.352,414.449 39.362,414.473 C 39.372,414.498 39.387,414.521 39.404,414.542 C 39.422,414.562 39.441,414.577 39.465,414.59 C 39.489,414.603 39.514,414.611 39.54,414.614 C 39.568,414.616 39.591,414.614 39.615,414.606 C 39.638,414.599 39.659,414.586 39.677,414.569 C 39.694,414.553 39.707,414.534 39.717,414.51 C 39.728,414.486 39.732,414.462 39.733,414.434 C 39.732,414.407 39.728,414.38 39.717,414.355 C 39.707,414.331 39.694,414.308 39.677,414.287 C 39.66,414.268 39.639,414.252 39.615,414.239 C 39.592,414.227 39.568,414.219 39.541,414.216 L 39.503,414.216 C 39.489,414.218 39.478,414.22 39.465,414.223 Z M 39.775,414.239 L 39.774,414.636 L 40.017,414.662 C 40.03,414.663 40.044,414.661 40.057,414.657 C 40.07,414.654 40.081,414.647 40.091,414.638 C 40.1,414.629 40.107,414.619 40.112,414.607 C 40.117,414.594 40.12,414.58 40.12,414.566 C 40.12,414.551 40.117,414.537 40.113,414.524 C 40.108,414.511 40.102,414.498 40.091,414.487 C 40.083,414.477 40.072,414.469 40.061,414.461 C 40.051,414.456 40.04,414.453 40.029,414.451 L 40.086,414.342 L 40.12,414.273 L 40.043,414.266 L 40.009,414.335 L 39.971,414.405 L 39.97,414.408 C 39.964,414.418 39.956,414.427 39.946,414.431 C 39.936,414.435 39.923,414.437 39.911,414.436 L 39.843,414.43 L 39.843,414.246 L 39.775,414.239 Z M 37.658,414.273 L 37.832,414.292 C 37.834,414.292 37.838,414.293 37.841,414.294 C 37.843,414.295 37.845,414.295 37.847,414.297 L 37.847,414.297 C 37.853,414.301 37.858,414.306 37.862,414.313 C 37.866,414.32 37.867,414.326 37.868,414.334 C 37.867,414.339 37.867,414.345 37.865,414.35 C 37.861,414.353 37.859,414.356 37.858,414.358 C 37.855,414.361 37.852,414.362 37.848,414.363 C 37.844,414.365 37.838,414.366 37.832,414.365 L 37.658,414.348 L 37.658,414.273 Z M 39.541,414.285 C 39.558,414.287 39.574,414.293 39.588,414.302 C 39.603,414.31 39.616,414.321 39.628,414.334 C 39.64,414.346 39.648,414.361 39.654,414.376 C 39.662,414.393 39.664,414.409 39.664,414.428 C 39.664,414.446 39.662,414.461 39.654,414.476 C 39.648,414.492 39.639,414.504 39.627,414.514 C 39.616,414.524 39.603,414.532 39.588,414.537 C 39.574,414.543 39.557,414.544 39.54,414.543 C 39.523,414.541 39.507,414.536 39.491,414.527 C 39.478,414.52 39.464,414.509 39.452,414.496 C 39.44,414.483 39.432,414.469 39.426,414.453 C 39.42,414.436 39.417,414.419 39.416,414.402 C 39.417,414.383 39.42,414.368 39.426,414.353 C 39.432,414.338 39.44,414.326 39.452,414.316 C 39.464,414.305 39.478,414.297 39.491,414.292 C 39.507,414.285 39.523,414.284 39.541,414.285 Z M 38.184,414.328 L 38.357,414.346 C 38.36,414.346 38.361,414.347 38.365,414.349 C 38.367,414.35 38.369,414.35 38.372,414.351 C 38.378,414.355 38.383,414.36 38.386,414.365 C 38.39,414.373 38.393,414.379 38.393,414.386 C 38.393,414.393 38.39,414.398 38.389,414.402 C 38.386,414.406 38.384,414.409 38.382,414.411 C 38.38,414.414 38.376,414.415 38.373,414.417 C 38.368,414.418 38.362,414.419 38.357,414.419 L 38.184,414.401 L 38.184,414.328 Z M 39.843,414.499 L 40.017,414.518 C 40.02,414.518 40.022,414.519 40.024,414.52 C 40.027,414.521 40.028,414.521 40.03,414.522 C 40.037,414.526 40.042,414.531 40.047,414.537 C 40.051,414.544 40.053,414.55 40.053,414.558 C 40.052,414.564 40.051,414.569 40.049,414.575 C 40.047,414.578 40.043,414.581 40.04,414.582 C 40.039,414.585 40.035,414.587 40.032,414.589 C 40.028,414.591 40.023,414.592 40.017,414.591 L 39.843,414.574 L 39.843,414.499 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.25,426.777 L 27.077,426.937 L 44.485,428.072 L 44.575,428.035 C 44.604,428.023 44.633,427.996 44.633,427.951 L 44.633,427.908 L 27.25,426.777 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.077,426.937 L 27.076,403.486 L 27.164,403.402 L 27.25,403.415 L 27.25,426.775 L 27.077,426.937 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_individuals--SWEET_PEA, .KN95_NR_individuals--SWEET_PEA {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='300.283 -433.288 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.301' y2='19.848' gradientTransform='translate(312.926 405.817)'%3E%3Cstop offset='0' stop-color='%237baaa6'/%3E%3Cstop offset='1' stop-color='%23a1dfda'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.353' y2='19.921' gradientTransform='translate(309.387 406.432)'%3E%3Cstop offset='0' stop-color='%23648b88'/%3E%3Cstop offset='1' stop-color='%238abfbb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(312.92 425.801)'%3E%3Cstop offset='0' stop-color='%2376a4a1'/%3E%3Cstop offset='1' stop-color='%238dc3bf'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.229' gradientTransform='translate(308.245 427.857)'%3E%3Cstop offset='0' stop-color='%23628885'/%3E%3Cstop offset='1' stop-color='%2376a4a1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.009' y2='-0.164' gradientTransform='translate(321.239 427.673) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%237eafab'/%3E%3Cstop offset='1' stop-color='%2390c7c3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(310.094 415.56) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2376a4a1'/%3E%3Cstop offset='1' stop-color='%238abfbb'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(317.012 416.559) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 310.012,403.404 L 310.012,426.891 L 327.459,428.01 C 327.472,427.996 327.482,427.976 327.482,427.952 L 327.482,405.771 L 310.012,403.404 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 310.012,403.404 L 306.549,406.766 L 306.547,428.788 L 310.012,426.891 L 310.012,403.404 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 310.012,426.891 L 306.547,428.788 L 323.479,429.716 L 327.422,428.036 C 327.436,428.031 327.449,428.023 327.459,428.01 L 310.012,426.891 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 309.925,426.622 L 306.546,428.511 L 306.545,428.788 L 309.925,426.938 L 309.925,426.622 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 317.054,409.006 L 317.054,409.415 L 317.126,409.424 L 317.126,409.013 L 317.054,409.006 Z M 317.183,409.018 L 317.183,409.428 L 317.256,409.381 L 317.517,409.205 L 317.517,409.466 L 317.589,409.475 L 317.589,409.064 L 317.517,409.112 L 317.256,409.288 L 317.256,409.028 L 317.183,409.018 Z M 317.646,409.07 L 317.646,409.481 L 317.848,409.502 C 317.878,409.505 317.904,409.503 317.927,409.495 C 317.951,409.487 317.972,409.476 317.993,409.457 C 318.011,409.441 318.025,409.421 318.035,409.398 C 318.045,409.374 318.051,409.347 318.051,409.319 C 318.051,409.294 318.046,409.27 318.039,409.247 C 318.03,409.223 318.018,409.201 318.003,409.182 C 318.001,409.18 317.999,409.177 317.998,409.175 C 317.996,409.173 317.994,409.17 317.991,409.167 C 317.972,409.147 317.951,409.131 317.927,409.116 C 317.905,409.104 317.879,409.095 317.848,409.092 L 317.646,409.07 Z M 318.109,409.12 L 318.109,409.531 L 318.182,409.537 L 318.182,409.128 L 318.109,409.12 Z M 317.717,409.15 L 317.848,409.164 C 317.866,409.167 317.883,409.173 317.899,409.181 C 317.916,409.189 317.929,409.199 317.94,409.213 C 317.952,409.226 317.961,409.242 317.969,409.258 C 317.975,409.276 317.978,409.293 317.979,409.31 C 317.978,409.329 317.975,409.345 317.969,409.361 C 317.961,409.377 317.952,409.389 317.94,409.4 C 317.929,409.412 317.916,409.419 317.899,409.424 C 317.883,409.429 317.866,409.43 317.848,409.428 L 317.717,409.414 L 317.717,409.15 Z M 318.422,409.155 L 318.253,409.474 L 318.216,409.542 L 318.297,409.55 L 318.333,409.482 L 318.422,409.316 L 318.511,409.502 L 318.548,409.579 L 318.628,409.587 L 318.592,409.509 L 318.422,409.155 Z M 318.666,409.181 L 318.666,409.591 L 318.737,409.599 L 318.737,409.188 L 318.666,409.181 Z M 318.796,409.195 L 318.796,409.605 L 318.997,409.627 C 319.025,409.629 319.051,409.627 319.076,409.619 C 319.101,409.613 319.121,409.6 319.14,409.583 C 319.158,409.566 319.172,409.545 319.182,409.522 C 319.194,409.498 319.2,409.473 319.2,409.444 C 319.2,409.419 319.196,409.395 319.186,409.372 C 319.178,409.347 319.167,409.327 319.15,409.306 C 319.149,409.304 319.147,409.302 319.145,409.3 C 319.144,409.297 319.143,409.295 319.139,409.293 C 319.121,409.272 319.101,409.255 319.076,409.241 C 319.051,409.228 319.025,409.22 318.997,409.217 L 318.796,409.195 Z M 319.382,409.275 C 319.357,409.283 319.335,409.295 319.318,409.312 C 319.298,409.328 319.284,409.348 319.274,409.373 C 319.263,409.396 319.258,409.422 319.258,409.451 L 319.258,409.655 L 319.33,409.663 L 319.33,409.457 C 319.33,409.439 319.333,409.423 319.341,409.408 C 319.346,409.393 319.357,409.381 319.369,409.37 C 319.381,409.358 319.394,409.351 319.409,409.345 C 319.425,409.34 319.442,409.338 319.46,409.34 C 319.478,409.342 319.494,409.347 319.51,409.356 C 319.527,409.365 319.541,409.376 319.553,409.389 C 319.564,409.402 319.573,409.418 319.58,409.434 C 319.586,409.451 319.59,409.468 319.59,409.487 L 319.59,409.691 L 319.664,409.7 L 319.664,409.495 C 319.664,409.466 319.658,409.438 319.647,409.413 C 319.635,409.387 319.621,409.363 319.602,409.342 C 319.584,409.322 319.564,409.306 319.539,409.291 C 319.515,409.28 319.488,409.271 319.46,409.267 C 319.431,409.264 319.406,409.267 319.382,409.275 Z M 318.867,409.276 L 318.997,409.29 C 319.015,409.291 319.031,409.296 319.047,409.306 C 319.063,409.314 319.077,409.324 319.09,409.338 C 319.102,409.352 319.11,409.367 319.118,409.384 C 319.124,409.4 319.127,409.418 319.128,409.436 C 319.127,409.453 319.124,409.471 319.118,409.487 C 319.11,409.502 319.102,409.515 319.09,409.524 C 319.077,409.535 319.063,409.543 319.047,409.548 C 319.031,409.554 319.015,409.555 318.997,409.554 L 318.867,409.539 L 318.867,409.276 Z M 319.698,409.293 L 319.734,409.371 L 319.904,409.725 L 320.074,409.407 L 320.112,409.337 L 320.03,409.329 L 319.994,409.399 L 319.904,409.563 L 319.815,409.38 L 319.779,409.302 L 319.698,409.293 Z M 320.246,409.356 C 320.235,409.358 320.226,409.359 320.218,409.363 C 320.205,409.368 320.194,409.375 320.183,409.386 C 320.173,409.394 320.165,409.404 320.158,409.416 C 320.155,409.425 320.152,409.433 320.149,409.443 C 320.147,409.452 320.146,409.463 320.146,409.473 L 320.146,409.751 L 320.218,409.759 L 320.218,409.474 C 320.219,409.465 320.222,409.456 320.227,409.451 C 320.231,409.444 320.236,409.438 320.245,409.434 C 320.251,409.431 320.26,409.429 320.267,409.428 L 320.48,409.451 L 320.48,409.379 L 320.274,409.356 C 320.264,409.355 320.254,409.355 320.246,409.356 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 314.851,415.733 L 314.848,417.786 L 315.187,417.82 L 315.189,416.772 L 315.469,417.075 L 315.72,417.351 L 316.248,417.928 L 316.75,417.979 L 315.922,417.072 L 316.745,415.927 L 316.328,415.885 L 315.671,416.797 L 315.189,416.277 L 315.189,415.769 L 314.851,415.733 Z M 316.918,415.945 L 317.091,416.329 L 317.885,418.095 L 318.682,416.491 L 318.854,416.142 L 318.477,416.104 L 318.302,416.452 L 317.886,417.289 L 317.471,416.367 L 317.298,415.984 L 316.918,415.945 Z M 319.027,416.158 L 319.029,416.159 L 319.289,416.552 L 319.755,417.255 L 319.97,417.576 L 320.229,417.968 L 319.022,417.844 L 319.022,418.211 L 320.489,418.359 L 320.914,418.404 L 320.652,418.01 L 320.181,417.298 L 319.969,416.978 L 319.712,416.596 L 320.925,416.719 L 320.926,416.352 L 319.457,416.204 L 319.454,416.204 L 319.027,416.158 Z M 321.502,416.455 C 321.442,416.478 321.385,416.511 321.34,416.558 C 321.294,416.603 321.256,416.658 321.231,416.722 C 321.205,416.786 321.192,416.858 321.191,416.933 L 321.19,417.878 C 321.19,417.955 321.202,418.027 321.229,418.096 C 321.255,418.165 321.29,418.227 321.339,418.283 C 321.384,418.34 321.439,418.384 321.5,418.418 C 321.562,418.454 321.629,418.475 321.699,418.483 L 323.085,418.624 L 323.085,418.258 L 321.699,418.116 C 321.667,418.113 321.638,418.101 321.611,418.082 C 321.585,418.062 321.565,418.037 321.55,418.009 C 321.534,417.979 321.526,417.946 321.526,417.911 L 321.526,417.72 L 322.746,417.846 L 322.747,417.479 L 321.526,417.355 L 321.526,416.968 C 321.526,416.933 321.536,416.903 321.551,416.877 C 321.568,416.848 321.587,416.828 321.612,416.814 C 321.64,416.8 321.668,416.795 321.7,416.797 L 323.087,416.938 L 323.088,416.572 L 321.7,416.431 C 321.631,416.424 321.565,416.432 321.502,416.455 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 316.855,414.643 L 316.855,415.08 C 316.855,415.104 316.858,415.125 316.866,415.145 C 316.874,415.165 316.886,415.184 316.901,415.201 C 316.916,415.217 316.932,415.23 316.951,415.241 C 316.97,415.25 316.992,415.257 317.014,415.259 L 317.447,415.307 L 317.447,415.199 L 317.014,415.152 C 317.005,415.151 316.995,415.148 316.987,415.142 C 316.978,415.136 316.972,415.13 316.967,415.121 C 316.962,415.112 316.96,415.103 316.96,415.094 L 316.96,415.036 L 317.342,415.076 L 317.342,414.969 L 316.959,414.93 L 316.96,414.655 L 316.855,414.643 Z M 317.532,414.715 L 317.531,415.152 C 317.531,415.174 317.536,415.197 317.545,415.217 C 317.552,415.236 317.563,415.255 317.578,415.271 C 317.593,415.288 317.61,415.301 317.628,415.313 C 317.647,415.323 317.668,415.328 317.692,415.332 L 318.124,415.377 L 318.124,415.269 L 317.692,415.225 C 317.682,415.223 317.673,415.22 317.665,415.215 C 317.656,415.209 317.649,415.201 317.644,415.192 C 317.64,415.183 317.638,415.174 317.638,415.164 L 317.638,415.109 L 318.019,415.148 L 318.019,415.042 L 317.637,415.002 L 317.638,414.725 L 317.532,414.715 Z M 318.211,414.787 L 318.209,415.387 L 318.583,415.426 C 318.604,415.428 318.625,415.426 318.643,415.42 C 318.663,415.414 318.68,415.403 318.695,415.39 L 318.695,415.389 C 318.71,415.375 318.721,415.36 318.73,415.341 C 318.737,415.323 318.743,415.301 318.743,415.28 C 318.743,415.257 318.737,415.236 318.731,415.217 C 318.722,415.197 318.711,415.179 318.699,415.163 C 318.684,415.147 318.668,415.133 318.65,415.124 C 318.634,415.114 318.62,415.109 318.603,415.106 C 318.602,415.106 318.601,415.106 318.599,415.105 L 318.599,415.104 L 318.316,415.073 L 318.316,414.799 L 318.211,414.787 Z M 318.826,414.849 L 318.826,415.028 C 318.826,415.04 318.827,415.05 318.829,415.063 C 318.832,415.074 318.835,415.087 318.839,415.098 C 318.848,415.12 318.86,415.138 318.877,415.156 C 318.892,415.174 318.909,415.189 318.929,415.201 C 318.948,415.21 318.97,415.218 318.995,415.222 L 319.248,415.248 L 319.251,415.248 C 319.262,415.251 319.273,415.256 319.282,415.264 C 319.292,415.27 319.299,415.28 319.306,415.292 C 319.311,415.301 319.312,415.313 319.312,415.326 C 319.312,415.338 319.31,415.35 319.303,415.36 C 319.297,415.369 319.29,415.377 319.279,415.383 C 319.268,415.388 319.257,415.39 319.244,415.389 L 318.827,415.345 L 318.827,415.452 L 319.243,415.495 C 319.268,415.498 319.292,415.495 319.312,415.489 C 319.333,415.482 319.351,415.471 319.368,415.457 C 319.383,415.442 319.396,415.426 319.405,415.404 C 319.414,415.384 319.419,415.362 319.419,415.337 C 319.419,415.325 319.418,415.313 319.415,415.3 C 319.412,415.288 319.408,415.277 319.403,415.266 C 319.4,415.255 319.395,415.246 319.389,415.236 C 319.383,415.227 319.376,415.218 319.369,415.21 C 319.355,415.191 319.336,415.176 319.316,415.164 C 319.294,415.153 319.274,415.146 319.25,415.142 L 319.247,415.142 C 319.247,415.142 319.245,415.142 319.244,415.142 L 318.995,415.116 C 318.983,415.113 318.972,415.109 318.963,415.101 C 318.953,415.094 318.945,415.084 318.94,415.073 C 318.935,415.063 318.933,415.052 318.933,415.041 L 318.933,414.97 L 319.417,415.02 L 319.417,414.912 L 319,414.868 L 318.826,414.849 Z M 319.916,414.967 L 319.916,415.564 L 320.022,415.493 L 320.402,415.236 L 320.402,415.617 L 320.507,415.628 L 320.508,415.03 L 320.402,415.101 L 320.022,415.358 L 320.022,414.978 L 319.916,414.967 Z M 320.593,415.039 L 320.592,415.639 L 320.967,415.679 C 320.988,415.681 321.009,415.679 321.028,415.671 C 321.048,415.666 321.064,415.655 321.08,415.642 C 321.093,415.628 321.105,415.613 321.113,415.594 C 321.121,415.575 321.125,415.555 321.126,415.533 C 321.126,415.51 321.121,415.489 321.113,415.468 C 321.106,415.449 321.095,415.431 321.081,415.415 C 321.067,415.399 321.051,415.386 321.033,415.375 C 321.019,415.366 321.003,415.36 320.987,415.357 L 321.073,415.197 L 321.126,415.095 L 321.008,415.082 L 320.953,415.183 L 320.896,415.289 L 320.894,415.293 C 320.885,415.309 320.873,415.321 320.856,415.327 C 320.841,415.335 320.822,415.338 320.803,415.336 L 320.699,415.325 L 320.699,415.049 L 320.593,415.039 Z M 318.316,415.179 L 318.584,415.208 C 318.587,415.208 318.59,415.209 318.595,415.21 C 318.599,415.212 318.602,415.214 318.605,415.216 L 318.605,415.216 C 318.615,415.222 318.623,415.229 318.628,415.238 C 318.634,415.248 318.636,415.257 318.636,415.268 C 318.636,415.279 318.634,415.286 318.631,415.293 C 318.627,415.299 318.624,415.304 318.621,415.307 C 318.617,415.31 318.612,415.313 318.606,415.315 C 318.601,415.319 318.592,415.319 318.584,415.319 L 318.316,415.289 L 318.316,415.179 Z M 320.699,415.431 L 320.967,415.46 C 320.971,415.46 320.974,415.461 320.978,415.461 C 320.982,415.465 320.985,415.466 320.988,415.468 C 320.998,415.473 321.006,415.481 321.01,415.49 C 321.018,415.5 321.021,415.51 321.021,415.521 C 321.02,415.533 321.019,415.539 321.014,415.546 C 321.01,415.552 321.008,415.557 321.004,415.559 C 321.001,415.562 320.996,415.565 320.99,415.568 C 320.983,415.571 320.976,415.571 320.967,415.571 L 320.698,415.542 L 320.699,415.431 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 314.968,413.447 L 314.967,413.845 L 315.21,413.87 C 315.226,413.873 315.239,413.87 315.252,413.866 C 315.263,413.861 315.275,413.856 315.284,413.846 L 315.284,413.846 C 315.294,413.836 315.301,413.827 315.306,413.815 C 315.311,413.802 315.315,413.789 315.315,413.775 C 315.315,413.757 315.311,413.744 315.307,413.731 C 315.302,413.718 315.295,413.707 315.285,413.696 C 315.277,413.685 315.266,413.676 315.255,413.67 C 315.245,413.664 315.235,413.659 315.226,413.659 C 315.223,413.659 315.221,413.657 315.221,413.657 L 315.221,413.657 L 315.038,413.637 L 315.038,413.455 L 314.968,413.447 Z M 315.369,413.487 L 315.368,413.886 L 315.612,413.912 C 315.627,413.912 315.64,413.912 315.652,413.908 C 315.666,413.903 315.676,413.897 315.685,413.887 C 315.695,413.879 315.702,413.868 315.709,413.856 C 315.713,413.844 315.716,413.83 315.716,413.815 C 315.716,413.801 315.713,413.787 315.71,413.775 C 315.702,413.76 315.696,413.748 315.687,413.737 C 315.678,413.727 315.668,413.718 315.655,413.711 C 315.645,413.705 315.636,413.701 315.626,413.699 L 315.68,413.591 L 315.716,413.523 L 315.639,413.515 L 315.604,413.582 L 315.568,413.654 L 315.566,413.657 C 315.56,413.668 315.55,413.675 315.541,413.68 C 315.529,413.685 315.519,413.686 315.507,413.685 L 315.437,413.678 L 315.437,413.495 L 315.369,413.487 Z M 315.875,413.557 C 315.853,413.564 315.833,413.577 315.816,413.593 C 315.797,413.609 315.783,413.629 315.773,413.653 C 315.763,413.676 315.758,413.701 315.756,413.729 C 315.758,413.756 315.763,413.783 315.773,413.807 C 315.783,413.832 315.797,413.854 315.814,413.875 C 315.832,413.895 315.852,413.912 315.874,413.925 C 315.899,413.937 315.923,413.944 315.95,413.947 C 315.976,413.95 316.002,413.947 316.026,413.939 C 316.047,413.931 316.069,413.92 316.086,413.904 C 316.104,413.887 316.119,413.867 316.128,413.844 C 316.137,413.821 316.143,413.796 316.143,413.769 C 316.143,413.74 316.138,413.714 316.128,413.688 C 316.119,413.665 316.104,413.642 316.086,413.621 C 316.07,413.602 316.049,413.585 316.026,413.572 C 316.002,413.56 315.977,413.552 315.951,413.55 L 315.912,413.551 C 315.899,413.551 315.888,413.553 315.875,413.557 Z M 316.343,413.589 L 316.343,413.917 L 316.184,413.9 L 316.184,413.97 L 316.569,414.012 L 316.569,413.94 L 316.413,413.925 L 316.413,413.596 L 316.343,413.589 Z M 315.951,413.62 C 315.968,413.621 315.983,413.628 316,413.635 C 316.015,413.644 316.028,413.654 316.038,413.667 C 316.049,413.68 316.058,413.694 316.065,413.711 C 316.071,413.726 316.075,413.744 316.075,413.761 C 316.075,413.779 316.071,413.795 316.065,413.81 C 316.058,413.824 316.049,413.837 316.038,413.847 C 316.027,413.858 316.014,413.866 315.999,413.87 C 315.983,413.876 315.968,413.878 315.95,413.876 C 315.934,413.875 315.917,413.869 315.903,413.86 C 315.888,413.853 315.873,413.843 315.862,413.83 C 315.852,413.816 315.843,413.803 315.836,413.786 C 315.832,413.77 315.827,413.753 315.827,413.736 C 315.827,413.718 315.832,413.701 315.836,413.686 C 315.843,413.672 315.852,413.659 315.863,413.648 C 315.874,413.638 315.889,413.63 315.903,413.625 C 315.917,413.621 315.935,413.619 315.951,413.62 Z M 316.688,413.634 C 316.678,413.637 316.666,413.644 316.655,413.654 C 316.646,413.663 316.639,413.673 316.633,413.686 C 316.629,413.699 316.626,413.712 316.626,413.727 L 316.626,413.911 C 316.626,413.925 316.627,413.939 316.633,413.952 C 316.639,413.966 316.646,413.977 316.655,413.99 C 316.666,414.001 316.676,414.009 316.688,414.015 C 316.701,414.022 316.715,414.028 316.729,414.028 L 317.01,414.057 L 317.01,413.987 L 316.729,413.957 C 316.723,413.956 316.717,413.954 316.711,413.95 C 316.706,413.946 316.702,413.941 316.698,413.936 C 316.696,413.93 316.694,413.924 316.694,413.917 L 316.694,413.88 L 316.942,413.906 L 316.942,413.834 L 316.694,413.809 L 316.695,413.734 C 316.695,413.727 316.696,413.721 316.699,413.716 C 316.702,413.711 316.707,413.707 316.711,413.705 C 316.717,413.701 316.723,413.7 316.729,413.701 L 317.011,413.731 L 317.011,413.659 L 316.73,413.63 C 316.715,413.628 316.702,413.63 316.688,413.634 Z M 317.176,413.692 C 317.154,413.699 317.134,413.712 317.117,413.728 C 317.097,413.744 317.084,413.764 317.074,413.788 C 317.065,413.81 317.059,413.835 317.059,413.862 C 317.059,413.891 317.065,413.918 317.074,413.942 C 317.083,413.967 317.097,413.99 317.117,414.01 C 317.134,414.03 317.154,414.046 317.176,414.059 C 317.2,414.071 317.226,414.079 317.253,414.082 L 317.444,414.103 L 317.444,414.031 L 317.253,414.011 C 317.235,414.009 317.219,414.004 317.203,413.996 C 317.189,413.99 317.175,413.977 317.163,413.963 C 317.154,413.951 317.145,413.938 317.137,413.921 C 317.132,413.906 317.129,413.888 317.129,413.87 C 317.129,413.853 317.132,413.836 317.138,413.821 C 317.145,413.807 317.154,413.795 317.164,413.784 C 317.175,413.775 317.189,413.766 317.204,413.76 C 317.219,413.755 317.235,413.753 317.253,413.755 L 317.445,413.776 L 317.445,413.705 L 317.253,413.685 L 317.214,413.685 C 317.201,413.685 317.189,413.688 317.176,413.692 Z M 315.038,413.709 L 315.211,413.725 C 315.214,413.726 315.217,413.727 315.219,413.727 C 315.221,413.728 315.223,413.729 315.227,413.731 C 315.232,413.735 315.238,413.738 315.242,413.745 C 315.245,413.751 315.246,413.757 315.246,413.767 C 315.246,413.772 315.245,413.778 315.243,413.782 C 315.241,413.787 315.239,413.789 315.237,413.791 C 315.234,413.794 315.231,413.796 315.227,413.797 C 315.221,413.799 315.218,413.801 315.211,413.799 L 315.038,413.782 L 315.038,413.709 Z M 317.658,413.726 L 317.658,414.054 L 317.499,414.037 L 317.499,414.109 L 317.885,414.149 L 317.885,414.076 L 317.726,414.06 L 317.726,413.733 L 317.658,413.726 Z M 315.437,413.748 L 315.612,413.767 C 315.614,413.768 315.617,413.769 315.619,413.769 C 315.622,413.77 315.624,413.77 315.627,413.771 C 315.632,413.777 315.638,413.78 315.642,413.788 C 315.645,413.793 315.647,413.801 315.647,413.808 C 315.647,413.814 315.645,413.819 315.644,413.823 C 315.642,413.828 315.639,413.83 315.636,413.833 C 315.634,413.834 315.631,413.836 315.628,413.838 C 315.623,413.84 315.618,413.841 315.612,413.84 L 315.437,413.821 L 315.437,413.748 Z M 317.939,413.755 L 317.938,414.153 L 318.008,414.161 L 318.009,413.764 L 317.939,413.755 Z M 318.239,413.787 L 318.076,414.098 L 318.04,414.163 L 318.118,414.171 L 318.154,414.105 L 318.238,413.943 L 318.322,414.123 L 318.357,414.196 L 318.434,414.206 L 318.398,414.131 L 318.239,413.787 Z M 318.531,413.825 C 318.519,413.83 318.509,413.835 318.499,413.844 C 318.49,413.853 318.481,413.864 318.478,413.877 C 318.472,413.889 318.468,413.903 318.468,413.918 L 318.468,414.101 C 318.468,414.116 318.471,414.13 318.477,414.144 C 318.481,414.157 318.489,414.169 318.499,414.18 C 318.508,414.19 318.518,414.2 318.531,414.207 C 318.544,414.215 318.557,414.218 318.572,414.22 L 318.852,414.248 L 318.852,414.176 L 318.572,414.149 C 318.565,414.148 318.558,414.144 318.554,414.142 C 318.549,414.138 318.545,414.133 318.542,414.127 C 318.538,414.122 318.537,414.116 318.537,414.109 L 318.537,414.071 L 318.785,414.098 L 318.785,414.027 L 318.538,414.002 L 318.538,413.925 C 318.538,413.918 318.539,413.912 318.543,413.908 C 318.545,413.902 318.549,413.897 318.555,413.895 C 318.559,413.893 318.565,413.892 318.573,413.893 L 318.853,413.921 L 318.853,413.849 L 318.573,413.821 C 318.558,413.82 318.544,413.821 318.531,413.825 Z M 319.175,413.882 L 319.174,414.28 L 319.418,414.306 C 319.432,414.307 319.446,414.306 319.459,414.301 C 319.472,414.297 319.481,414.291 319.492,414.282 C 319.501,414.273 319.507,414.262 319.514,414.25 C 319.518,414.238 319.52,414.225 319.52,414.21 C 319.52,414.194 319.518,414.181 319.514,414.168 C 319.509,414.154 319.502,414.143 319.493,414.132 C 319.484,414.123 319.474,414.112 319.461,414.106 C 319.453,414.101 319.441,414.096 319.431,414.095 L 319.487,413.986 L 319.521,413.918 L 319.444,413.911 L 319.409,413.977 L 319.374,414.047 L 319.372,414.052 C 319.365,414.06 319.357,414.068 319.346,414.073 C 319.337,414.078 319.325,414.08 319.314,414.079 L 319.243,414.072 L 319.244,413.889 L 319.175,413.882 Z M 319.642,413.94 C 319.629,413.944 319.617,413.951 319.609,413.96 C 319.599,413.969 319.592,413.978 319.586,413.992 C 319.582,414.004 319.578,414.018 319.578,414.033 L 319.578,414.217 C 319.578,414.231 319.581,414.245 319.586,414.259 C 319.591,414.272 319.599,414.284 319.609,414.295 C 319.617,414.306 319.628,414.315 319.642,414.323 C 319.654,414.329 319.667,414.334 319.681,414.334 L 319.963,414.363 L 319.963,414.292 L 319.681,414.262 C 319.676,414.262 319.669,414.26 319.664,414.256 C 319.66,414.253 319.655,414.248 319.652,414.243 C 319.648,414.236 319.647,414.23 319.647,414.223 L 319.647,414.186 L 319.894,414.212 L 319.894,414.14 L 319.647,414.116 L 319.647,414.041 C 319.647,414.034 319.649,414.028 319.652,414.022 C 319.655,414.018 319.66,414.014 319.665,414.011 C 319.669,414.008 319.676,414.007 319.681,414.007 L 319.963,414.036 L 319.963,413.965 L 319.682,413.936 C 319.668,413.935 319.654,413.937 319.642,413.94 Z M 320.093,413.99 C 320.08,413.994 320.066,414.002 320.054,414.011 C 320.042,414.021 320.035,414.035 320.027,414.048 C 320.022,414.063 320.018,414.079 320.018,414.097 L 320.089,414.104 C 320.089,414.094 320.091,414.084 320.094,414.076 C 320.1,414.069 320.106,414.062 320.113,414.059 C 320.121,414.055 320.129,414.054 320.14,414.054 L 320.261,414.066 C 320.27,414.068 320.28,414.071 320.287,414.076 C 320.293,414.083 320.302,414.089 320.306,414.099 C 320.312,414.109 320.314,414.118 320.314,414.127 C 320.314,414.138 320.312,414.146 320.306,414.153 C 320.302,414.162 320.293,414.167 320.287,414.17 C 320.279,414.176 320.27,414.176 320.261,414.176 L 320.121,414.162 L 320.102,414.162 C 320.094,414.163 320.089,414.163 320.082,414.165 C 320.069,414.17 320.06,414.176 320.049,414.183 C 320.046,414.189 320.04,414.194 320.035,414.2 C 320.03,414.209 320.026,414.218 320.023,414.228 C 320.02,414.237 320.018,414.248 320.018,414.259 L 320.018,414.261 C 320.018,414.276 320.022,414.29 320.026,414.304 C 320.031,414.319 320.038,414.33 320.048,414.34 C 320.059,414.351 320.068,414.36 320.082,414.367 C 320.093,414.374 320.107,414.377 320.121,414.379 L 320.278,414.396 C 320.291,414.397 320.306,414.396 320.318,414.391 C 320.331,414.388 320.342,414.381 320.351,414.372 C 320.36,414.363 320.369,414.352 320.373,414.34 C 320.379,414.328 320.381,414.315 320.381,414.299 L 320.381,414.297 L 320.313,414.288 L 320.313,414.291 C 320.313,414.298 320.312,414.304 320.308,414.309 C 320.305,414.315 320.301,414.319 320.294,414.322 C 320.29,414.325 320.284,414.325 320.278,414.325 L 320.121,414.308 C 320.115,414.307 320.108,414.305 320.104,414.301 C 320.1,414.297 320.094,414.292 320.091,414.286 C 320.089,414.281 320.087,414.273 320.087,414.268 L 320.087,414.265 C 320.087,414.259 320.089,414.254 320.091,414.248 C 320.094,414.243 320.1,414.238 320.104,414.236 C 320.108,414.234 320.115,414.233 320.121,414.233 L 320.261,414.248 L 320.286,414.248 C 320.293,414.246 320.303,414.245 320.31,414.242 C 320.326,414.236 320.339,414.228 320.35,414.217 C 320.351,414.216 320.352,414.216 320.353,414.215 C 320.353,414.214 320.353,414.213 320.355,414.212 C 320.363,414.202 320.37,414.19 320.374,414.176 C 320.38,414.163 320.382,414.15 320.382,414.135 C 320.382,414.118 320.379,414.101 320.372,414.084 C 320.367,414.069 320.358,414.054 320.347,414.042 C 320.335,414.029 320.323,414.019 320.307,414.011 C 320.293,414.003 320.278,413.997 320.261,413.996 L 320.14,413.982 C 320.123,413.981 320.107,413.982 320.093,413.99 Z M 320.439,414.015 L 320.437,414.412 L 320.68,414.439 C 320.695,414.441 320.707,414.439 320.719,414.434 C 320.732,414.43 320.744,414.423 320.755,414.414 L 320.755,414.414 C 320.764,414.404 320.771,414.393 320.777,414.381 C 320.781,414.369 320.784,414.355 320.784,414.34 C 320.784,414.326 320.782,414.311 320.777,414.299 C 320.772,414.285 320.765,414.273 320.757,414.262 C 320.746,414.252 320.736,414.243 320.723,414.236 C 320.715,414.231 320.705,414.228 320.694,414.225 C 320.693,414.225 320.692,414.225 320.691,414.225 L 320.691,414.224 L 320.506,414.205 L 320.506,414.022 L 320.439,414.015 Z M 320.84,414.057 L 320.839,414.454 L 320.906,414.461 L 320.907,414.063 L 320.84,414.057 Z M 320.964,414.067 L 320.964,414.467 L 321.206,414.491 C 321.221,414.493 321.234,414.491 321.247,414.486 C 321.258,414.483 321.268,414.476 321.279,414.468 C 321.288,414.458 321.296,414.448 321.301,414.435 C 321.307,414.423 321.309,414.409 321.31,414.395 C 321.309,414.38 321.307,414.366 321.301,414.353 C 321.296,414.339 321.289,414.328 321.28,414.318 C 321.271,414.306 321.261,414.298 321.248,414.29 C 321.239,414.285 321.229,414.282 321.22,414.279 L 321.274,414.17 L 321.31,414.104 L 321.233,414.096 L 321.197,414.163 L 321.16,414.234 L 321.158,414.236 C 321.152,414.247 321.145,414.254 321.134,414.259 C 321.125,414.264 321.113,414.267 321.101,414.265 L 321.032,414.258 L 321.032,414.073 L 320.964,414.067 Z M 321.344,414.109 L 321.378,414.183 L 321.539,414.526 L 321.7,414.217 L 321.738,414.15 L 321.66,414.14 L 321.624,414.209 L 321.539,414.37 L 321.455,414.19 L 321.42,414.117 L 321.344,414.109 Z M 319.243,414.144 L 319.419,414.162 C 319.422,414.163 319.424,414.163 319.426,414.163 C 319.428,414.163 319.43,414.165 319.432,414.166 C 319.439,414.17 319.444,414.176 319.449,414.182 C 319.452,414.188 319.454,414.194 319.454,414.202 C 319.454,414.209 319.453,414.216 319.45,414.219 C 319.448,414.223 319.444,414.227 319.443,414.228 C 319.441,414.23 319.437,414.231 319.435,414.233 C 319.431,414.234 319.428,414.235 319.427,414.235 L 319.418,414.235 L 319.243,414.217 L 319.243,414.144 Z M 321.927,414.168 L 321.927,414.496 L 321.769,414.48 L 321.769,414.551 L 322.153,414.591 L 322.153,414.519 L 321.996,414.502 L 321.996,414.176 L 321.927,414.168 Z M 322.314,414.225 C 322.29,414.233 322.27,414.245 322.252,414.26 C 322.236,414.277 322.221,414.296 322.21,414.32 C 322.202,414.343 322.196,414.368 322.196,414.396 C 322.196,414.423 322.2,414.45 322.21,414.474 C 322.221,414.499 322.235,414.522 322.252,414.543 C 322.269,414.563 322.29,414.578 322.313,414.592 C 322.337,414.605 322.362,414.612 322.387,414.615 C 322.417,414.617 322.44,414.615 322.462,414.607 C 322.486,414.6 322.508,414.587 322.526,414.57 C 322.543,414.554 322.556,414.535 322.565,414.511 C 322.576,414.487 322.58,414.463 322.581,414.435 C 322.58,414.408 322.576,414.382 322.566,414.357 C 322.556,414.332 322.543,414.309 322.526,414.288 C 322.509,414.269 322.487,414.253 322.464,414.24 C 322.441,414.228 322.417,414.22 322.389,414.217 L 322.35,414.217 C 322.338,414.219 322.327,414.221 322.314,414.225 Z M 322.623,414.24 L 322.623,414.637 L 322.866,414.664 C 322.879,414.664 322.893,414.662 322.905,414.659 C 322.918,414.655 322.929,414.648 322.939,414.64 C 322.949,414.63 322.956,414.62 322.96,414.608 C 322.966,414.595 322.969,414.582 322.969,414.567 C 322.969,414.552 322.966,414.539 322.962,414.525 C 322.957,414.512 322.951,414.5 322.939,414.488 C 322.931,414.478 322.92,414.47 322.909,414.462 C 322.898,414.457 322.889,414.454 322.878,414.452 L 322.934,414.343 L 322.969,414.275 L 322.892,414.267 L 322.858,414.336 L 322.819,414.406 L 322.818,414.409 C 322.811,414.419 322.804,414.428 322.794,414.432 C 322.784,414.436 322.772,414.439 322.759,414.437 L 322.691,414.431 L 322.691,414.248 L 322.623,414.24 Z M 320.506,414.275 L 320.681,414.293 C 320.683,414.293 320.686,414.294 320.689,414.295 C 320.691,414.296 320.693,414.296 320.695,414.298 L 320.695,414.299 C 320.7,414.302 320.706,414.307 320.71,414.315 C 320.714,414.321 320.715,414.327 320.716,414.335 C 320.715,414.34 320.715,414.347 320.712,414.351 C 320.709,414.354 320.707,414.357 320.706,414.359 C 320.703,414.362 320.7,414.363 320.696,414.364 C 320.692,414.367 320.687,414.367 320.681,414.367 L 320.506,414.349 L 320.506,414.275 Z M 322.389,414.286 C 322.407,414.288 322.422,414.294 322.436,414.303 C 322.451,414.311 322.465,414.322 322.475,414.335 C 322.487,414.348 322.496,414.362 322.502,414.377 C 322.511,414.394 322.513,414.41 322.513,414.429 C 322.513,414.447 322.51,414.462 322.502,414.477 C 322.496,414.493 322.487,414.505 322.475,414.515 C 322.464,414.525 322.451,414.535 322.436,414.539 C 322.422,414.544 322.406,414.545 322.387,414.544 C 322.371,414.542 322.355,414.537 322.34,414.528 C 322.327,414.521 322.313,414.51 322.301,414.497 C 322.289,414.484 322.28,414.47 322.274,414.454 C 322.268,414.438 322.265,414.42 322.264,414.403 C 322.265,414.384 322.268,414.369 322.274,414.354 C 322.28,414.339 322.289,414.327 322.301,414.317 C 322.313,414.306 322.327,414.298 322.341,414.293 C 322.355,414.286 322.371,414.285 322.389,414.286 Z M 321.032,414.329 L 321.206,414.348 C 321.21,414.348 321.211,414.349 321.213,414.35 C 321.216,414.351 321.218,414.351 321.221,414.352 C 321.228,414.356 321.232,414.361 321.235,414.367 C 321.239,414.374 321.241,414.38 321.241,414.387 C 321.241,414.394 321.239,414.4 321.237,414.403 C 321.235,414.407 321.233,414.41 321.231,414.412 C 321.229,414.415 321.225,414.416 321.221,414.418 C 321.217,414.419 321.211,414.42 321.206,414.42 L 321.032,414.402 L 321.032,414.329 Z M 322.691,414.5 L 322.866,414.519 C 322.869,414.519 322.87,414.52 322.873,414.521 C 322.875,414.522 322.877,414.522 322.879,414.524 C 322.886,414.527 322.891,414.532 322.894,414.539 C 322.898,414.545 322.9,414.551 322.9,414.559 C 322.9,414.565 322.898,414.57 322.896,414.576 C 322.894,414.579 322.892,414.583 322.89,414.583 C 322.888,414.586 322.884,414.588 322.881,414.59 C 322.877,414.592 322.872,414.593 322.866,414.592 L 322.691,414.575 L 322.691,414.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 310.099,426.778 L 309.925,426.938 L 327.333,428.074 L 327.422,428.036 C 327.451,428.025 327.482,427.997 327.482,427.952 L 327.482,427.909 L 310.099,426.778 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 309.925,426.938 L 309.924,403.487 L 310.012,403.403 L 310.099,403.416 L 310.099,426.776 L 309.925,426.938 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.KAZE_MINI_individuals {
  width: 100%;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.KAZE_MINI_individuals--VARIETY_BUNDLE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='265.301 -3355.14 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='53.299' y2='0' gradientTransform='translate(279.002 3296.48) rotate(24.2521) skewX(-5.5107)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23f4f4f4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='75.734' y2='0' gradientTransform='translate(375.592 3287.08) rotate(-173.798) skewX(0.616673)'%3E%3Cstop offset='0' stop-color='%23e7e7e7'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='3.027' y2='0' gradientTransform='translate(266.987 3299.78) rotate(3.12419) skewX(0.321866)'%3E%3Cstop offset='0' stop-color='%23f0f0f0'/%3E%3Cstop offset='1' stop-color='%23e5e5e5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.411' y2='0' gradientTransform='translate(350.418 3293.68) rotate(90) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23ececec'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.407' y2='0' gradientTransform='translate(269.821 3306.12) rotate(10.3174) skewX(-2.50076) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23e6e6e6'/%3E%3Cstop offset='1' stop-color='%23d3d3d3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.77' y2='0' gradientTransform='translate(371.348 3306.36) rotate(-148.539) skewX(-6.29143) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23ebebeb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_6' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.294' y2='0' gradientTransform='translate(380.2 3285.08) rotate(173.574) skewX(1.70407)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23d5d5d5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_7' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.357' y2='0' gradientTransform='translate(271.066 3286.78) rotate(-4.16545) skewX(1.09457)'%3E%3Cstop offset='0' stop-color='%23c9c9c9'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(323.629 3296.81) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1'%3E%3Cpath d='M 271.237,3294.25 L 266.526,3316.11 L 365.41,3315.35 L 381.558,3294.91 L 381.631,3294.82 C 381.751,3294.65 381.836,3294.47 381.889,3294.25 L 271.237,3294.25 Z' stroke-width='0.259' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.161' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cpath d='M 318.06,3304.67 L 317.219,3304.68 L 315.461,3305.61 L 314.705,3305.17 L 314.929,3304.69 L 314.245,3304.69 L 313.352,3306.61 L 314.032,3306.61 L 314.488,3305.63 L 314.927,3305.89 L 315.324,3306.12 L 316.147,3306.6 L 317.148,3306.6 L 315.856,3305.84 L 318.06,3304.67 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 322.183,3304.66 L 321.421,3304.66 L 320.898,3305.01 L 319.657,3305.84 L 319.234,3305.01 L 319.054,3304.67 L 318.289,3304.67 L 318.471,3305.02 L 319.285,3306.59 L 321.661,3305.01 L 322.183,3304.66 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 326.329,3304.64 L 323.39,3304.65 L 323.385,3304.65 L 322.525,3304.66 L 322.53,3304.66 L 322.876,3305 L 323.492,3305.61 L 323.776,3305.89 L 324.116,3306.23 L 321.715,3306.24 L 321.545,3306.58 L 324.455,3306.56 L 325.299,3306.56 L 324.956,3306.22 L 324.343,3305.61 L 324.059,3305.33 L 323.722,3305 L 326.147,3304.99 L 326.329,3304.64 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 330.649,3304.63 L 327.882,3304.64 C 327.74,3304.64 327.599,3304.65 327.461,3304.68 C 327.324,3304.71 327.196,3304.74 327.078,3304.79 C 326.959,3304.84 326.857,3304.9 326.773,3304.96 C 326.686,3305.02 326.624,3305.09 326.585,3305.16 L 326.116,3306.05 C 326.076,3306.11 326.068,3306.18 326.088,3306.24 C 326.107,3306.3 326.148,3306.36 326.218,3306.41 C 326.282,3306.45 326.371,3306.49 326.48,3306.51 C 326.586,3306.54 326.713,3306.55 326.852,3306.55 L 329.592,3306.54 L 329.778,3306.2 L 327.034,3306.21 C 326.97,3306.21 326.916,3306.21 326.874,3306.19 C 326.83,3306.18 326.8,3306.15 326.782,3306.13 C 326.767,3306.1 326.767,3306.07 326.782,3306.04 L 326.877,3305.86 L 329.3,3305.85 L 329.488,3305.51 L 327.059,3305.52 L 327.255,3305.16 C 327.274,3305.13 327.307,3305.1 327.35,3305.07 C 327.395,3305.05 327.448,3305.02 327.508,3305.01 C 327.569,3304.99 327.631,3304.98 327.696,3304.98 L 330.457,3304.97 L 330.649,3304.63 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 269.883,3277.51 L 271.23,3294.25 L 381.89,3294.25 C 381.986,3293.86 381.975,3293.4 381.875,3292.89 L 381.649,3291.37 L 379.579,3277.51 L 269.883,3277.51 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 269.883,3277.51 L 265.302,3299.17 L 266.526,3316.11 L 271.244,3294.25 L 269.883,3277.51 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 271.199,3293.87 L 271.23,3294.25 L 381.89,3294.25 C 381.92,3294.13 381.939,3294 381.95,3293.87 L 271.199,3293.87 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_4' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.046' fill='%23000000'%3E%3Cpath d='M 323.17,3278.86 L 323.17,3280.02 L 323.402,3280.02 L 323.402,3279.43 L 323.595,3279.58 L 323.768,3279.72 L 324.131,3280.02 L 324.476,3280.02 L 323.906,3279.56 L 324.471,3278.86 L 324.183,3278.86 L 323.733,3279.41 L 323.402,3279.15 L 323.402,3278.86 L 323.17,3278.86 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 324.549,3278.86 L 324.669,3279.07 L 325.215,3280.02 L 325.762,3279.07 L 325.881,3278.86 L 325.62,3278.86 L 325.5,3279.07 L 325.215,3279.57 L 324.93,3279.07 L 324.811,3278.86 L 324.549,3278.86 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 325.999,3278.86 L 326.179,3279.07 L 326.5,3279.44 L 326.647,3279.61 L 326.825,3279.81 L 325.997,3279.81 L 325.997,3280.02 L 327.298,3280.02 L 327.117,3279.81 L 326.792,3279.44 L 326.646,3279.27 L 326.47,3279.07 L 327.303,3279.07 L 327.303,3278.86 L 325.999,3278.86 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 327.7,3278.89 C 327.659,3278.9 327.621,3278.92 327.589,3278.95 C 327.557,3278.98 327.533,3279.01 327.514,3279.05 C 327.496,3279.09 327.487,3279.13 327.487,3279.17 L 327.487,3279.71 C 327.487,3279.75 327.496,3279.79 327.514,3279.83 C 327.533,3279.87 327.557,3279.9 327.589,3279.93 C 327.621,3279.96 327.659,3279.98 327.7,3279.99 C 327.743,3280.01 327.788,3280.02 327.837,3280.02 L 328.79,3280.02 L 328.79,3279.81 L 327.837,3279.81 C 327.815,3279.81 327.795,3279.81 327.777,3279.8 C 327.759,3279.79 327.745,3279.78 327.735,3279.76 C 327.722,3279.74 327.718,3279.73 327.718,3279.71 L 327.718,3279.6 L 328.557,3279.6 L 328.557,3279.39 L 327.718,3279.39 L 327.718,3279.17 C 327.718,3279.15 327.722,3279.14 327.735,3279.12 C 327.745,3279.11 327.759,3279.09 327.777,3279.08 C 327.795,3279.07 327.815,3279.07 327.837,3279.07 L 328.79,3279.07 L 328.79,3278.86 L 327.837,3278.86 C 327.788,3278.86 327.743,3278.87 327.7,3278.89 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cpath d='M 272.293,3294.25 L 267.376,3316.11 L 267.72,3316.11 L 272.748,3294.25 L 272.293,3294.25 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 380.17,3294.24 L 363.639,3315.37 L 364.209,3315.36 L 380.934,3294.25 L 380.17,3294.24 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 378.68,3277.51 L 381.119,3293.87 L 381.563,3293.87 L 379.167,3277.51 L 378.68,3277.51 Z' stroke-width='0.143' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_6)'/%3E%3Cpath d='M 270.286,3277.51 L 271.663,3293.87 L 272.107,3293.87 L 270.776,3277.51 L 270.286,3277.51 Z' stroke-width='0.143' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_7)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_MINI_individuals--MONO {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='637.999 -3041.4 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='72.269' y2='0' gradientTransform='translate(682.076 2951.59) rotate(53.596) skewX(-8.88364)'%3E%3Cstop offset='0' stop-color='%23c6b9b5'/%3E%3Cstop offset='1' stop-color='%23ece4df'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='58.57' y2='0' gradientTransform='translate(669.739 2953.4) rotate(94.6184) skewX(1.35098)'%3E%3Cstop offset='0' stop-color='%23b2a6a3'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.109' y2='0' gradientTransform='translate(682.055 3010.16) rotate(13.1253) skewX(-5.1414)'%3E%3Cstop offset='0' stop-color='%23c5b8b4'/%3E%3Cstop offset='1' stop-color='%23d1c3bf'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.791' y2='0' gradientTransform='translate(665.76 3016.19) rotate(-121.721) skewX(-8.15213)'%3E%3Cstop offset='0' stop-color='%23a09592'/%3E%3Cstop offset='1' stop-color='%23beb1ae'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.48' y2='0' gradientTransform='translate(711.06 3015.64) rotate(-85.7019) skewX(1.28529) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c1b4b0'/%3E%3Cstop offset='1' stop-color='%23c6b9b5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.571' y2='0' gradientTransform='translate(672.205 2980.15) rotate(180) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b8aca8'/%3E%3Cstop offset='1' stop-color='%23bfb2af'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(696.327 2983.08) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 671.919,2944.52 L 671.919,3013.35 L 732.75,3016.63 C 732.793,3016.59 732.825,3016.53 732.825,3016.46 L 732.825,2951.46 L 671.919,2944.52 Z' stroke-width='8.031' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 671.919,2944.52 L 659.844,2954.38 L 659.838,3018.91 L 671.919,3013.35 L 671.919,2944.52 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 671.919,3013.35 L 659.838,3018.91 L 718.872,3021.64 L 732.62,3016.71 C 732.667,3016.69 732.714,3016.67 732.75,3016.63 L 671.919,3013.35 Z' stroke-width='1.028' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 671.616,3012.56 L 659.833,3018.1 L 659.831,3018.91 L 671.616,3013.49 L 671.616,3012.56 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_1' fill='%23000000' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.906'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 688.79,2982.5 L 688.782,2989.65 L 689.962,2989.77 L 689.969,2986.12 L 690.943,2987.18 L 691.82,2988.13 L 693.66,2990.15 L 695.412,2990.33 L 692.522,2987.16 L 695.395,2983.17 L 693.937,2983.02 L 691.645,2986.2 L 689.971,2984.39 L 689.971,2982.62 L 688.79,2982.5 Z M 695.997,2983.23 L 696.603,2984.57 L 699.365,2990.73 L 702.146,2985.14 L 702.749,2983.92 L 701.429,2983.79 L 700.82,2985 L 699.37,2987.92 L 697.923,2984.7 L 697.321,2983.37 L 695.997,2983.23 Z M 703.347,2983.98 L 703.357,2983.98 L 704.264,2985.35 L 705.885,2987.8 L 706.636,2988.92 L 707.538,2990.29 L 703.331,2989.86 L 703.329,2991.13 L 708.447,2991.65 L 709.929,2991.8 L 709.016,2990.43 L 707.373,2987.95 L 706.63,2986.83 L 705.736,2985.5 L 709.967,2985.93 L 709.968,2984.65 L 704.849,2984.13 L 704.841,2984.13 L 703.347,2983.98 Z M 711.979,2985.01 C 711.766,2985.09 711.573,2985.21 711.416,2985.37 C 711.25,2985.53 711.122,2985.72 711.035,2985.94 C 710.942,2986.17 710.896,2986.41 710.894,2986.68 L 710.888,2989.97 C 710.888,2990.24 710.933,2990.49 711.026,2990.73 C 711.116,2990.98 711.241,2991.19 711.409,2991.39 C 711.567,2991.58 711.758,2991.74 711.971,2991.86 C 712.186,2991.98 712.418,2992.05 712.665,2992.08 L 717.497,2992.57 L 717.497,2991.3 L 712.665,2990.8 C 712.552,2990.79 712.452,2990.75 712.36,2990.68 C 712.269,2990.62 712.201,2990.53 712.145,2990.43 C 712.091,2990.32 712.065,2990.21 712.065,2990.09 L 712.065,2989.43 L 716.318,2989.86 L 716.32,2988.58 L 712.065,2988.15 L 712.065,2986.8 C 712.065,2986.68 712.095,2986.57 712.15,2986.48 C 712.207,2986.39 712.275,2986.31 712.365,2986.26 C 712.459,2986.21 712.556,2986.2 712.671,2986.2 L 717.503,2986.7 L 717.506,2985.42 L 712.671,2984.93 C 712.429,2984.91 712.197,2984.93 711.979,2985.01 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 672.22,3013.02 L 671.616,3013.49 L 732.31,3016.82 L 732.62,3016.71 C 732.722,3016.68 732.825,3016.6 732.825,3016.46 L 732.825,3016.34 L 672.22,3013.02 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 671.616,3013.49 L 671.613,2944.76 L 671.919,2944.52 L 672.22,2944.56 L 672.22,3013.02 L 671.616,3013.49 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cg id='Group_4' fill='%23000000' fill-rule='nonzero'%3E%3Cg id='Group_5'%3E%3Cpath d='M 700.37,2979.18 L 700.37,2981.24 L 700.736,2981 L 701.394,2980.55 L 702.05,2981.13 L 702.415,2981.45 L 702.415,2979.38 L 702.05,2979.35 L 702.05,2980.66 L 701.691,2980.35 L 701.394,2980.09 L 701.095,2980.29 L 700.736,2980.53 L 700.736,2979.21 L 700.37,2979.18 Z M 702.708,2979.41 L 702.708,2981.48 L 703.074,2981.52 L 703.074,2979.45 L 702.708,2979.41 Z M 703.368,2979.48 L 703.368,2981.54 L 703.732,2981.3 L 705.049,2980.41 L 705.049,2981.72 L 705.413,2981.75 L 705.413,2979.69 L 705.049,2979.93 L 703.732,2980.82 L 703.732,2979.52 L 703.368,2979.48 Z M 705.706,2979.72 L 705.706,2981.79 L 706.072,2981.82 L 706.072,2979.76 L 705.706,2979.72 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.248'%3E%3Crect x='-2.636' y='-2.484' width='5.272' height='4.968' transform='translate(699.895 2953) rotate(90) skewX(-6.56028)' fill='%23000000'/%3E%3Crect x='-2.637' y='-2.484' width='5.275' height='4.969' transform='translate(706.353 2953.75) rotate(90) skewX(-6.55843)' fill='%23ece4df'/%3E%3C/g%3E%3Cg id='Group_8' fill='%23000000' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.053'%3E%3Cg id='Group_9'%3E%3Cpath d='M 696.551,2957.96 L 696.519,2959.48 L 696.747,2959.51 L 697.205,2958.61 L 697.615,2959.61 L 697.842,2959.63 L 697.873,2958.11 L 697.646,2958.09 L 697.625,2959.1 L 697.295,2958.32 L 697.126,2958.3 L 696.758,2959 L 696.778,2957.99 L 696.551,2957.96 Z M 698.529,2958.22 C 698.464,2958.24 698.407,2958.27 698.357,2958.31 C 698.32,2958.34 698.291,2958.38 698.269,2958.42 C 698.247,2958.45 698.232,2958.49 698.222,2958.54 C 698.211,2958.59 698.204,2958.64 698.201,2958.7 C 698.196,2958.76 698.194,2958.83 698.193,2958.91 C 698.192,2958.99 698.191,2959.06 698.192,2959.12 C 698.193,2959.18 698.197,2959.24 698.206,2959.29 C 698.214,2959.34 698.229,2959.38 698.248,2959.42 C 698.268,2959.47 698.296,2959.51 698.332,2959.55 C 698.379,2959.6 698.434,2959.65 698.498,2959.68 C 698.561,2959.72 698.634,2959.74 698.716,2959.75 C 698.798,2959.76 698.871,2959.75 698.935,2959.73 C 699,2959.71 699.057,2959.68 699.107,2959.64 C 699.144,2959.61 699.173,2959.57 699.195,2959.53 C 699.216,2959.49 699.232,2959.45 699.242,2959.41 C 699.253,2959.36 699.26,2959.3 699.263,2959.24 C 699.267,2959.18 699.269,2959.12 699.271,2959.03 C 699.272,2958.96 699.274,2958.89 699.272,2958.83 C 699.271,2958.76 699.267,2958.71 699.257,2958.66 C 699.249,2958.61 699.235,2958.57 699.216,2958.52 C 699.196,2958.48 699.168,2958.44 699.132,2958.4 C 699.085,2958.34 699.029,2958.3 698.967,2958.27 C 698.903,2958.23 698.83,2958.21 698.748,2958.2 C 698.667,2958.19 698.592,2958.2 698.529,2958.22 Z M 699.625,2958.31 L 699.592,2959.84 L 699.801,2959.86 L 700.517,2958.87 L 700.493,2959.94 L 700.72,2959.96 L 700.753,2958.45 L 700.544,2958.42 L 699.828,2959.41 L 699.852,2958.34 L 699.625,2958.31 Z M 698.744,2958.41 C 698.789,2958.41 698.83,2958.42 698.867,2958.45 C 698.904,2958.47 698.937,2958.49 698.965,2958.53 C 698.983,2958.55 698.998,2958.57 699.01,2958.6 C 699.021,2958.62 699.029,2958.65 699.034,2958.69 C 699.04,2958.72 699.043,2958.77 699.044,2958.82 C 699.045,2958.87 699.045,2958.93 699.043,2959.01 C 699.042,2959.09 699.04,2959.15 699.036,2959.2 C 699.033,2959.25 699.028,2959.29 699.021,2959.33 C 699.014,2959.36 699.005,2959.39 698.992,2959.41 C 698.981,2959.44 698.964,2959.46 698.946,2959.47 C 698.916,2959.5 698.883,2959.52 698.845,2959.53 C 698.807,2959.54 698.765,2959.55 698.72,2959.54 C 698.675,2959.54 698.633,2959.52 698.596,2959.5 C 698.559,2959.48 698.526,2959.45 698.499,2959.42 C 698.481,2959.4 698.466,2959.38 698.456,2959.35 C 698.444,2959.33 698.436,2959.3 698.43,2959.26 C 698.425,2959.22 698.421,2959.18 698.42,2959.13 C 698.419,2959.08 698.419,2959.01 698.42,2958.94 C 698.422,2958.86 698.425,2958.8 698.428,2958.75 C 698.431,2958.7 698.436,2958.66 698.443,2958.62 C 698.451,2958.59 698.46,2958.56 698.472,2958.54 C 698.485,2958.51 698.5,2958.49 698.518,2958.48 C 698.547,2958.45 698.581,2958.43 698.619,2958.42 C 698.657,2958.4 698.698,2958.4 698.744,2958.41 Z M 701.411,2958.55 C 701.346,2958.57 701.289,2958.6 701.239,2958.64 C 701.202,2958.68 701.173,2958.71 701.151,2958.75 C 701.129,2958.79 701.114,2958.83 701.104,2958.87 C 701.093,2958.92 701.086,2958.97 701.083,2959.03 C 701.08,2959.1 701.076,2959.17 701.075,2959.24 C 701.074,2959.32 701.073,2959.39 701.074,2959.45 C 701.075,2959.52 701.08,2959.57 701.088,2959.62 C 701.097,2959.67 701.111,2959.71 701.13,2959.76 C 701.15,2959.8 701.178,2959.84 701.214,2959.88 C 701.261,2959.93 701.317,2959.98 701.38,2960.01 C 701.443,2960.05 701.516,2960.07 701.598,2960.08 C 701.68,2960.09 701.754,2960.08 701.817,2960.07 C 701.882,2960.05 701.939,2960.01 701.989,2959.97 C 702.026,2959.94 702.055,2959.9 702.077,2959.87 C 702.099,2959.83 702.114,2959.79 702.124,2959.74 C 702.135,2959.69 702.142,2959.64 702.145,2959.58 C 702.149,2959.52 702.152,2959.45 702.153,2959.37 C 702.154,2959.29 702.156,2959.22 702.154,2959.16 C 702.153,2959.1 702.149,2959.04 702.141,2958.99 C 702.131,2958.94 702.117,2958.9 702.098,2958.86 C 702.078,2958.81 702.05,2958.77 702.014,2958.73 C 701.967,2958.68 701.911,2958.63 701.849,2958.6 C 701.785,2958.57 701.712,2958.54 701.63,2958.53 C 701.549,2958.53 701.475,2958.53 701.411,2958.55 Z M 701.626,2958.74 C 701.671,2958.74 701.712,2958.76 701.749,2958.78 C 701.787,2958.8 701.82,2958.83 701.848,2958.86 C 701.866,2958.88 701.88,2958.9 701.892,2958.93 C 701.903,2958.95 701.911,2958.99 701.917,2959.02 C 701.922,2959.06 701.925,2959.1 701.926,2959.15 C 701.927,2959.2 701.927,2959.27 701.925,2959.34 C 701.924,2959.42 701.922,2959.48 701.918,2959.53 C 701.916,2959.58 701.91,2959.63 701.903,2959.66 C 701.896,2959.7 701.887,2959.72 701.874,2959.75 C 701.863,2959.77 701.846,2959.79 701.828,2959.81 C 701.798,2959.83 701.765,2959.85 701.727,2959.86 C 701.689,2959.88 701.647,2959.88 701.602,2959.88 C 701.557,2959.87 701.516,2959.86 701.479,2959.84 C 701.441,2959.82 701.409,2959.79 701.381,2959.76 C 701.363,2959.73 701.348,2959.71 701.338,2959.68 C 701.326,2959.66 701.318,2959.63 701.312,2959.59 C 701.307,2959.56 701.303,2959.51 701.302,2959.46 C 701.301,2959.41 701.301,2959.35 701.302,2959.27 C 701.304,2959.2 701.307,2959.13 701.31,2959.08 C 701.314,2959.03 701.318,2958.99 701.326,2958.95 C 701.333,2958.92 701.342,2958.89 701.354,2958.87 C 701.367,2958.85 701.382,2958.83 701.4,2958.81 C 701.429,2958.78 701.463,2958.76 701.501,2958.75 C 701.539,2958.74 701.581,2958.73 701.626,2958.74 Z M 703.204,2958.74 C 703.141,2958.74 703.084,2958.76 703.03,2958.78 C 702.976,2958.8 702.925,2958.84 702.875,2958.88 L 703.021,2959.05 C 703.078,2959 703.137,2958.97 703.201,2958.95 C 703.264,2958.94 703.335,2958.93 703.41,2958.94 C 703.51,2958.96 703.586,2958.99 703.638,2959.03 C 703.69,2959.08 703.716,2959.14 703.715,2959.22 C 703.715,2959.25 703.709,2959.28 703.7,2959.3 C 703.689,2959.33 703.674,2959.35 703.652,2959.37 C 703.634,2959.38 703.611,2959.39 703.584,2959.4 C 703.557,2959.41 703.525,2959.41 703.487,2959.41 L 703.309,2959.42 C 703.248,2959.42 703.194,2959.43 703.146,2959.44 C 703.099,2959.46 703.058,2959.48 703.024,2959.51 C 702.987,2959.54 702.958,2959.57 702.939,2959.62 C 702.919,2959.67 702.909,2959.72 702.907,2959.78 C 702.905,2959.87 702.924,2959.95 702.963,2960.03 C 703.001,2960.1 703.058,2960.15 703.132,2960.2 C 703.205,2960.25 703.294,2960.28 703.399,2960.29 C 703.466,2960.3 703.526,2960.3 703.58,2960.29 C 703.635,2960.28 703.686,2960.27 703.733,2960.25 C 703.78,2960.23 703.825,2960.2 703.868,2960.17 L 703.729,2960.01 C 703.681,2960.05 703.629,2960.07 703.575,2960.08 C 703.519,2960.09 703.459,2960.09 703.395,2960.09 C 703.336,2960.08 703.286,2960.06 703.247,2960.04 C 703.206,2960.01 703.176,2959.98 703.156,2959.94 C 703.137,2959.91 703.128,2959.86 703.128,2959.82 C 703.129,2959.79 703.133,2959.76 703.141,2959.74 C 703.151,2959.72 703.166,2959.7 703.185,2959.68 C 703.204,2959.67 703.226,2959.66 703.253,2959.65 C 703.278,2959.64 703.311,2959.63 703.351,2959.63 L 703.531,2959.63 C 703.577,2959.62 703.616,2959.62 703.65,2959.62 C 703.684,2959.61 703.714,2959.6 703.74,2959.59 C 703.766,2959.58 703.79,2959.56 703.812,2959.55 C 703.853,2959.51 703.884,2959.47 703.906,2959.42 C 703.927,2959.37 703.938,2959.31 703.94,2959.25 C 703.941,2959.15 703.92,2959.07 703.876,2959 C 703.832,2958.93 703.769,2958.87 703.689,2958.83 C 703.609,2958.78 703.517,2958.75 703.41,2958.74 C 703.335,2958.73 703.267,2958.73 703.204,2958.74 Z M 704.255,2958.85 L 704.222,2960.37 L 705.18,2960.48 L 705.185,2960.27 L 704.454,2960.19 L 704.463,2959.74 L 705.086,2959.82 L 705.091,2959.61 L 704.468,2959.54 L 704.477,2959.08 L 705.208,2959.17 L 705.213,2958.96 L 704.255,2958.85 Z M 705.524,2959 L 705.493,2960.52 L 706.073,2960.58 C 706.168,2960.59 706.252,2960.59 706.321,2960.55 C 706.392,2960.53 706.446,2960.48 706.486,2960.42 C 706.525,2960.36 706.546,2960.28 706.548,2960.19 C 706.549,2960.12 706.537,2960.05 706.512,2960 C 706.487,2959.94 706.452,2959.89 706.408,2959.85 C 706.364,2959.81 706.314,2959.78 706.257,2959.76 L 706.617,2959.12 L 706.351,2959.09 L 706.022,2959.7 L 705.739,2959.66 L 705.751,2959.02 L 705.524,2959 Z M 706.903,2959.16 L 706.871,2960.68 L 707.098,2960.7 L 707.13,2959.18 L 706.903,2959.16 Z M 707.522,2959.23 L 707.491,2960.75 L 708.449,2960.86 L 708.453,2960.65 L 707.723,2960.57 L 707.732,2960.12 L 708.355,2960.2 L 708.359,2959.99 L 707.736,2959.92 L 707.746,2959.46 L 708.476,2959.55 L 708.48,2959.34 L 707.522,2959.23 Z M 708.984,2959.4 C 708.922,2959.41 708.864,2959.42 708.811,2959.45 C 708.756,2959.47 708.705,2959.5 708.655,2959.55 L 708.802,2959.72 C 708.858,2959.67 708.917,2959.64 708.981,2959.62 C 709.046,2959.61 709.115,2959.6 709.19,2959.61 C 709.29,2959.63 709.367,2959.65 709.419,2959.7 C 709.471,2959.75 709.496,2959.81 709.495,2959.88 C 709.495,2959.92 709.489,2959.95 709.48,2959.97 C 709.47,2960 709.455,2960.02 709.434,2960.03 C 709.414,2960.05 709.391,2960.06 709.364,2960.07 C 709.338,2960.08 709.305,2960.08 709.268,2960.08 L 709.09,2960.09 C 709.028,2960.09 708.974,2960.1 708.926,2960.11 C 708.879,2960.12 708.838,2960.15 708.805,2960.17 C 708.768,2960.2 708.739,2960.24 708.719,2960.29 C 708.699,2960.34 708.689,2960.39 708.688,2960.45 C 708.687,2960.54 708.705,2960.62 708.743,2960.69 C 708.782,2960.76 708.838,2960.82 708.912,2960.87 C 708.987,2960.91 709.076,2960.94 709.18,2960.95 C 709.246,2960.96 709.306,2960.96 709.361,2960.96 C 709.415,2960.95 709.466,2960.94 709.514,2960.92 C 709.56,2960.9 709.605,2960.87 709.649,2960.84 L 709.509,2960.67 C 709.462,2960.71 709.411,2960.74 709.355,2960.75 C 709.299,2960.76 709.239,2960.76 709.175,2960.75 C 709.116,2960.75 709.067,2960.73 709.027,2960.71 C 708.987,2960.68 708.956,2960.65 708.937,2960.61 C 708.917,2960.57 708.908,2960.53 708.908,2960.49 C 708.909,2960.46 708.914,2960.43 708.923,2960.41 C 708.931,2960.39 708.946,2960.37 708.966,2960.35 C 708.984,2960.34 709.007,2960.32 709.033,2960.32 C 709.058,2960.31 709.091,2960.3 709.131,2960.3 L 709.312,2960.29 C 709.357,2960.29 709.397,2960.29 709.43,2960.28 C 709.465,2960.28 709.494,2960.27 709.521,2960.26 C 709.546,2960.24 709.57,2960.23 709.592,2960.21 C 709.633,2960.18 709.664,2960.14 709.686,2960.09 C 709.707,2960.04 709.719,2959.98 709.721,2959.92 C 709.722,2959.82 709.7,2959.74 709.656,2959.67 C 709.612,2959.6 709.55,2959.54 709.47,2959.49 C 709.39,2959.45 709.297,2959.42 709.19,2959.41 C 709.116,2959.4 709.047,2959.4 708.984,2959.4 Z M 705.734,2959.86 L 706.071,2959.9 C 706.122,2959.9 706.166,2959.92 706.204,2959.94 C 706.241,2959.97 706.27,2959.99 706.291,2960.03 C 706.312,2960.07 706.321,2960.12 706.321,2960.17 C 706.319,2960.22 706.307,2960.26 706.285,2960.29 C 706.263,2960.32 706.233,2960.35 706.195,2960.36 C 706.157,2960.38 706.112,2960.38 706.061,2960.38 L 705.723,2960.34 L 705.734,2959.86 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_MINI_individuals--FONDANT {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='763.358 -3041.4 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='70.603' y2='0' gradientTransform='translate(807.763 2952.32) rotate(53.5966) skewX(-8.8827)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='57.221' y2='0' gradientTransform='translate(795.711 2954.08) rotate(94.617) skewX(1.34926)'%3E%3Cstop offset='0' stop-color='%239b7844'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.482' y2='0' gradientTransform='translate(807.743 3009.53) rotate(13.1258) skewX(-5.14168)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.771' y2='0' gradientTransform='translate(791.822 3015.42) rotate(-121.651) skewX(-8.12589)'%3E%3Cstop offset='0' stop-color='%238b6c3d'/%3E%3Cstop offset='1' stop-color='%23a58048'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.468' y2='0' gradientTransform='translate(836.079 3014.89) rotate(-85.47) skewX(1.45807) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23a8824a'/%3E%3Cstop offset='1' stop-color='%23ac864c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.558' y2='0' gradientTransform='translate(798.12 2980.22) rotate(180) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23a07c46'/%3E%3Cstop offset='1' stop-color='%23a68149'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(821.686 2983.08) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 797.842,2945.41 L 797.842,3012.65 L 857.269,3015.86 C 857.31,3015.82 857.342,3015.76 857.342,3015.69 L 857.342,2952.18 L 797.842,2945.41 Z' stroke-width='7.846' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 797.842,2945.41 L 786.043,2955.03 L 786.038,3018.09 L 797.842,3012.65 L 797.842,2945.41 Z' stroke-width='5.632' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 797.842,3012.65 L 786.038,3018.09 L 843.711,3020.75 L 857.142,3015.93 C 857.188,3015.92 857.234,3015.9 857.269,3015.86 L 797.842,3012.65 Z' stroke-width='1.005' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 797.543,3011.88 L 786.034,3017.3 L 786.031,3018.09 L 797.543,3012.79 L 797.543,3011.88 Z' stroke-width='5.632' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.839' fill='%23ffffff'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 814.322,2982.51 L 814.315,2989.5 L 815.469,2989.62 L 815.473,2986.05 L 816.425,2987.08 L 817.282,2988.02 L 819.08,2989.98 L 820.793,2990.16 L 817.97,2987.07 L 820.774,2983.17 L 819.351,2983.02 L 817.112,2986.13 L 815.476,2984.36 L 815.476,2982.63 L 814.322,2982.51 Z M 821.363,2983.23 L 821.956,2984.54 L 824.654,2990.55 L 827.371,2985.09 L 827.96,2983.9 L 826.67,2983.77 L 826.075,2984.96 L 824.659,2987.81 L 823.245,2984.67 L 822.657,2983.36 L 821.363,2983.23 Z M 828.544,2983.96 L 828.553,2983.96 L 829.44,2985.3 L 831.024,2987.69 L 831.757,2988.78 L 832.64,2990.12 L 828.53,2989.7 L 828.528,2990.95 L 833.527,2991.46 L 834.973,2991.6 L 834.081,2990.26 L 832.477,2987.84 L 831.751,2986.74 L 830.879,2985.45 L 835.01,2985.87 L 835.012,2984.61 L 830.01,2984.11 L 830.004,2984.11 L 828.544,2983.96 Z M 836.978,2984.96 C 836.769,2985.05 836.58,2985.16 836.426,2985.32 C 836.265,2985.47 836.139,2985.66 836.054,2985.88 C 835.964,2986.1 835.92,2986.34 835.918,2986.6 L 835.911,2989.81 C 835.911,2990.07 835.955,2990.32 836.047,2990.56 C 836.134,2990.79 836.256,2991 836.422,2991.2 C 836.573,2991.38 836.762,2991.54 836.969,2991.65 C 837.18,2991.78 837.405,2991.85 837.647,2991.87 L 842.368,2992.35 L 842.368,2991.11 L 837.647,2990.63 C 837.536,2990.61 837.44,2990.58 837.35,2990.51 C 837.261,2990.44 837.194,2990.36 837.139,2990.26 C 837.086,2990.16 837.061,2990.04 837.061,2989.93 L 837.061,2989.28 L 841.217,2989.7 L 841.219,2988.46 L 837.061,2988.03 L 837.061,2986.71 C 837.061,2986.59 837.09,2986.49 837.143,2986.4 C 837.201,2986.31 837.267,2986.24 837.355,2986.19 C 837.444,2986.14 837.541,2986.13 837.654,2986.13 L 842.375,2986.61 L 842.378,2985.37 L 837.654,2984.88 C 837.417,2984.86 837.189,2984.89 836.978,2984.96 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 798.134,3012.33 L 797.543,3012.79 L 856.839,3016.04 L 857.142,3015.93 C 857.243,3015.9 857.342,3015.82 857.342,3015.69 L 857.342,3015.57 L 798.134,3012.33 Z' stroke-width='5.632' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 797.543,3012.79 L 797.541,2945.65 L 797.842,2945.41 L 798.134,2945.44 L 798.134,3012.33 L 797.543,3012.79 Z' stroke-width='5.632' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cg id='Group_4' fill-rule='nonzero' fill='%23ffffff'%3E%3Cg id='Group_5'%3E%3Cpath d='M 824.981,2978.78 L 824.981,2981.22 L 825.413,2980.93 L 826.19,2980.41 L 826.965,2981.09 L 827.394,2981.47 L 827.394,2979.02 L 826.965,2978.98 L 826.965,2980.54 L 826.539,2980.17 L 826.19,2979.86 L 825.836,2980.1 L 825.413,2980.38 L 825.413,2978.82 L 824.981,2978.78 Z M 827.742,2979.06 L 827.742,2981.51 L 828.174,2981.55 L 828.174,2979.11 L 827.742,2979.06 Z M 828.521,2979.14 L 828.521,2981.57 L 828.953,2981.28 L 830.507,2980.23 L 830.507,2981.78 L 830.934,2981.83 L 830.934,2979.39 L 830.507,2979.68 L 828.953,2980.72 L 828.953,2979.18 L 828.521,2979.14 Z M 831.282,2979.42 L 831.282,2981.86 L 831.714,2981.91 L 831.714,2979.46 L 831.282,2979.42 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.244'%3E%3Crect x='-2.578' y='-2.43' width='5.157' height='4.86' transform='translate(815.694 2952.62) rotate(90) skewX(-6.37495)' fill='%23003660'/%3E%3Crect x='-2.578' y='-2.428' width='5.157' height='4.857' transform='translate(822.009 2953.32) rotate(90) skewX(-6.37863)' fill='%23cf3400'/%3E%3Crect x='-2.578' y='-2.43' width='5.157' height='4.86' transform='translate(828.325 2954.03) rotate(90) skewX(-6.37495)' fill='%23bf0000'/%3E%3Crect x='-2.578' y='-2.43' width='5.157' height='4.86' transform='translate(834.642 2954.73) rotate(90) skewX(-6.37495)' fill='%2393170b'/%3E%3Crect x='-2.579' y='-2.429' width='5.159' height='4.859' transform='translate(840.957 2955.44) rotate(90) skewX(-6.39326)' fill='%23114700'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.037' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 819.131,2958.34 L 819.131,2959.31 C 819.131,2959.36 819.142,2959.41 819.158,2959.45 C 819.177,2959.5 819.202,2959.54 819.234,2959.58 C 819.266,2959.62 819.303,2959.64 819.347,2959.67 C 819.388,2959.69 819.434,2959.7 819.485,2959.71 L 820.448,2959.8 L 820.448,2959.56 L 819.487,2959.47 C 819.464,2959.47 819.445,2959.46 819.427,2959.45 C 819.409,2959.43 819.393,2959.42 819.383,2959.4 C 819.372,2959.38 819.365,2959.36 819.365,2959.34 L 819.365,2959.21 L 820.211,2959.3 L 820.211,2959.06 L 819.365,2958.97 L 819.365,2958.36 L 819.131,2958.34 Z M 820.827,2958.56 C 820.749,2958.58 820.678,2958.63 820.618,2958.68 C 820.558,2958.74 820.51,2958.8 820.475,2958.88 C 820.443,2958.96 820.425,2959.04 820.425,2959.13 C 820.425,2959.22 820.443,2959.32 820.475,2959.4 C 820.51,2959.48 820.558,2959.56 820.618,2959.63 C 820.678,2959.69 820.749,2959.74 820.827,2959.79 C 820.907,2959.83 820.993,2959.86 821.082,2959.86 C 821.174,2959.88 821.259,2959.86 821.34,2959.84 C 821.418,2959.81 821.489,2959.77 821.549,2959.72 C 821.609,2959.66 821.657,2959.6 821.689,2959.52 C 821.724,2959.44 821.74,2959.36 821.742,2959.26 C 821.74,2959.17 821.724,2959.08 821.689,2959 C 821.657,2958.92 821.609,2958.84 821.549,2958.77 C 821.489,2958.71 821.418,2958.65 821.34,2958.61 C 821.259,2958.57 821.174,2958.54 821.082,2958.53 C 820.993,2958.52 820.907,2958.53 820.827,2958.56 Z M 821.884,2958.61 L 821.884,2959.94 L 822.121,2959.78 L 822.967,2959.2 L 822.967,2960.05 L 823.202,2960.07 L 823.202,2958.74 L 822.967,2958.9 L 822.121,2959.48 L 822.121,2958.64 L 821.884,2958.61 Z M 821.082,2958.77 C 821.142,2958.78 821.197,2958.79 821.248,2958.82 C 821.298,2958.85 821.342,2958.88 821.383,2958.92 C 821.422,2958.97 821.45,2959.02 821.473,2959.07 C 821.494,2959.13 821.505,2959.18 821.507,2959.24 C 821.505,2959.3 821.494,2959.35 821.473,2959.41 C 821.45,2959.45 821.422,2959.5 821.383,2959.53 C 821.342,2959.57 821.298,2959.6 821.248,2959.61 C 821.197,2959.63 821.142,2959.63 821.082,2959.63 C 821.025,2959.62 820.97,2959.61 820.919,2959.58 C 820.866,2959.55 820.822,2959.51 820.783,2959.47 C 820.744,2959.43 820.714,2959.38 820.691,2959.33 C 820.671,2959.27 820.659,2959.22 820.659,2959.16 C 820.659,2959.1 820.671,2959.04 820.691,2958.99 C 820.714,2958.95 820.744,2958.9 820.783,2958.87 C 820.822,2958.83 820.866,2958.8 820.919,2958.79 C 820.97,2958.77 821.025,2958.77 821.082,2958.77 Z M 823.39,2958.76 L 823.39,2960.09 L 824.05,2960.16 L 824.048,2960.16 C 824.139,2960.17 824.225,2960.16 824.303,2960.13 C 824.383,2960.11 824.452,2960.06 824.514,2960.01 C 824.574,2959.95 824.62,2959.89 824.654,2959.81 C 824.689,2959.74 824.705,2959.65 824.707,2959.56 C 824.705,2959.48 824.691,2959.4 824.666,2959.32 C 824.638,2959.24 824.599,2959.17 824.551,2959.11 C 824.544,2959.1 824.537,2959.1 824.533,2959.09 C 824.526,2959.08 824.519,2959.07 824.512,2959.07 C 824.452,2959 824.383,2958.95 824.303,2958.9 C 824.225,2958.86 824.142,2958.84 824.05,2958.83 L 823.39,2958.76 Z M 824.657,2958.89 L 824.776,2959.13 L 825.328,2960.28 L 825.88,2959.24 L 825.999,2959.02 L 825.735,2958.99 L 825.615,2959.22 L 825.328,2959.76 L 825.038,2959.16 L 824.919,2958.91 L 824.657,2958.89 Z M 823.625,2959.02 L 824.048,2959.06 C 824.105,2959.07 824.162,2959.08 824.211,2959.11 C 824.264,2959.14 824.307,2959.17 824.346,2959.22 C 824.385,2959.26 824.415,2959.31 824.436,2959.36 C 824.459,2959.42 824.47,2959.47 824.473,2959.53 C 824.47,2959.59 824.459,2959.65 824.436,2959.7 C 824.415,2959.74 824.385,2959.79 824.346,2959.82 C 824.307,2959.86 824.264,2959.88 824.211,2959.9 C 824.162,2959.92 824.105,2959.92 824.048,2959.92 L 823.625,2959.88 L 823.625,2959.02 Z M 826.114,2959.03 L 826.114,2960.36 L 826.349,2960.2 L 827.194,2959.62 L 827.194,2960.47 L 827.429,2960.49 L 827.429,2959.16 L 827.194,2959.32 L 826.349,2959.89 L 826.349,2959.05 L 826.114,2959.03 Z M 828.16,2959.23 L 828.16,2960.32 L 827.62,2960.27 L 827.62,2960.51 L 828.935,2960.64 L 828.935,2960.4 L 828.394,2960.35 L 828.394,2959.26 L 828.16,2959.23 Z M 830.298,2959.47 C 830.247,2959.49 830.203,2959.51 830.164,2959.55 C 830.125,2959.59 830.098,2959.63 830.075,2959.68 C 830.054,2959.72 830.043,2959.78 830.043,2959.84 L 830.277,2959.86 C 830.277,2959.83 830.286,2959.8 830.302,2959.77 C 830.318,2959.74 830.341,2959.72 830.367,2959.71 C 830.394,2959.7 830.424,2959.69 830.459,2959.69 L 830.87,2959.74 C 830.905,2959.74 830.934,2959.75 830.962,2959.77 C 830.99,2959.79 831.013,2959.81 831.026,2959.84 C 831.043,2959.87 831.052,2959.9 831.054,2959.94 C 831.052,2959.97 831.043,2960 831.026,2960.03 C 831.013,2960.05 830.99,2960.07 830.962,2960.09 C 830.934,2960.1 830.905,2960.1 830.87,2960.1 L 830.397,2960.05 C 830.348,2960.05 830.302,2960.05 830.261,2960.07 C 830.22,2960.08 830.183,2960.1 830.148,2960.13 C 830.132,2960.15 830.118,2960.17 830.102,2960.18 C 830.084,2960.21 830.07,2960.24 830.059,2960.27 C 830.047,2960.31 830.043,2960.34 830.043,2960.38 L 830.043,2960.39 C 830.043,2960.44 830.052,2960.49 830.07,2960.53 C 830.089,2960.58 830.114,2960.62 830.146,2960.65 C 830.178,2960.69 830.215,2960.72 830.256,2960.74 C 830.3,2960.76 830.346,2960.78 830.397,2960.78 L 830.93,2960.84 L 831.001,2960.83 C 831.024,2960.83 831.047,2960.83 831.068,2960.82 C 831.111,2960.81 831.148,2960.78 831.183,2960.76 C 831.213,2960.73 831.238,2960.69 831.256,2960.65 C 831.275,2960.61 831.286,2960.56 831.286,2960.51 L 831.286,2960.5 L 831.052,2960.48 L 831.052,2960.49 C 831.049,2960.51 831.045,2960.53 831.036,2960.55 C 831.022,2960.56 831.008,2960.58 830.992,2960.59 C 830.971,2960.59 830.951,2960.6 830.93,2960.6 L 830.397,2960.54 C 830.374,2960.54 830.353,2960.53 830.337,2960.52 C 830.318,2960.51 830.302,2960.49 830.293,2960.47 C 830.282,2960.45 830.275,2960.43 830.275,2960.41 L 830.275,2960.4 C 830.275,2960.38 830.282,2960.36 830.293,2960.34 C 830.302,2960.33 830.318,2960.31 830.337,2960.3 C 830.353,2960.29 830.374,2960.29 830.397,2960.29 L 830.87,2960.34 C 830.93,2960.35 830.99,2960.34 831.04,2960.32 C 831.093,2960.3 831.139,2960.27 831.176,2960.23 C 831.18,2960.23 831.183,2960.22 831.185,2960.22 C 831.187,2960.22 831.187,2960.22 831.19,2960.21 C 831.222,2960.18 831.245,2960.15 831.261,2960.1 C 831.277,2960.06 831.286,2960.01 831.286,2959.96 C 831.286,2959.9 831.275,2959.84 831.254,2959.79 C 831.231,2959.74 831.201,2959.69 831.164,2959.65 C 831.125,2959.61 831.082,2959.57 831.033,2959.55 C 830.98,2959.52 830.928,2959.5 830.87,2959.5 L 830.459,2959.46 C 830.401,2959.45 830.346,2959.45 830.298,2959.47 Z M 831.691,2959.61 C 831.649,2959.62 831.613,2959.64 831.58,2959.67 C 831.546,2959.7 831.521,2959.74 831.505,2959.78 C 831.486,2959.82 831.475,2959.86 831.475,2959.92 L 831.475,2960.53 C 831.475,2960.58 831.486,2960.63 831.505,2960.67 C 831.521,2960.72 831.546,2960.76 831.58,2960.8 C 831.613,2960.83 831.649,2960.86 831.691,2960.88 C 831.734,2960.91 831.78,2960.92 831.829,2960.92 L 832.792,2961.02 L 832.792,2960.78 L 831.829,2960.68 C 831.808,2960.68 831.787,2960.68 831.769,2960.66 C 831.753,2960.65 831.737,2960.64 831.725,2960.62 C 831.714,2960.6 831.709,2960.58 831.709,2960.55 L 831.709,2960.43 L 832.557,2960.51 L 832.557,2960.28 L 831.709,2960.19 L 831.709,2959.94 C 831.709,2959.92 831.714,2959.9 831.725,2959.88 C 831.737,2959.86 831.753,2959.85 831.769,2959.84 C 831.787,2959.83 831.808,2959.83 831.829,2959.83 L 832.792,2959.92 L 832.792,2959.68 L 831.829,2959.59 L 831.757,2959.59 C 831.734,2959.6 831.711,2959.6 831.691,2959.61 Z M 832.978,2959.7 L 832.978,2961.03 L 833.81,2961.12 C 833.858,2961.12 833.904,2961.12 833.948,2961.1 C 833.992,2961.09 834.029,2961.06 834.058,2961.04 C 834.093,2961.01 834.118,2960.97 834.137,2960.93 C 834.153,2960.89 834.164,2960.84 834.164,2960.79 C 834.164,2960.74 834.155,2960.7 834.137,2960.65 C 834.121,2960.61 834.095,2960.57 834.063,2960.53 C 834.033,2960.5 833.996,2960.47 833.955,2960.45 C 833.925,2960.43 833.891,2960.41 833.856,2960.41 L 834.042,2960.04 L 834.164,2959.82 L 833.9,2959.79 L 833.778,2960.02 L 833.654,2960.26 L 833.647,2960.27 C 833.626,2960.3 833.599,2960.32 833.564,2960.34 C 833.53,2960.36 833.493,2960.37 833.449,2960.36 L 833.213,2960.34 L 833.213,2959.72 L 832.978,2959.7 Z M 834.355,2959.84 L 834.355,2961.17 L 834.589,2961.2 L 834.589,2959.86 L 834.355,2959.84 Z M 834.994,2959.93 C 834.953,2959.95 834.914,2959.97 834.884,2960 C 834.849,2960.03 834.824,2960.06 834.808,2960.11 C 834.789,2960.15 834.778,2960.19 834.778,2960.24 L 834.778,2960.86 C 834.778,2960.91 834.789,2960.95 834.808,2961 C 834.824,2961.04 834.849,2961.08 834.884,2961.12 C 834.914,2961.16 834.953,2961.19 834.994,2961.21 C 835.038,2961.23 835.084,2961.25 835.132,2961.25 L 836.095,2961.34 L 836.095,2961.11 L 835.132,2961.01 C 835.111,2961.01 835.091,2961 835.072,2960.99 C 835.056,2960.98 835.04,2960.96 835.029,2960.94 C 835.017,2960.92 835.015,2960.9 835.012,2960.88 L 835.012,2960.75 L 835.861,2960.84 L 835.861,2960.6 L 835.012,2960.51 L 835.012,2960.26 C 835.015,2960.24 835.017,2960.22 835.029,2960.2 C 835.04,2960.19 835.056,2960.18 835.072,2960.17 C 835.091,2960.16 835.111,2960.15 835.132,2960.16 L 836.095,2960.25 L 836.095,2960.01 L 835.132,2959.92 C 835.084,2959.91 835.038,2959.92 834.994,2959.93 Z M 836.539,2960.09 C 836.49,2960.11 836.445,2960.13 836.405,2960.17 C 836.369,2960.2 836.339,2960.24 836.318,2960.29 C 836.295,2960.34 836.286,2960.39 836.286,2960.45 L 836.52,2960.47 C 836.52,2960.44 836.53,2960.41 836.546,2960.38 C 836.559,2960.36 836.582,2960.34 836.61,2960.32 C 836.638,2960.31 836.665,2960.31 836.702,2960.31 L 837.113,2960.35 C 837.146,2960.35 837.178,2960.37 837.205,2960.39 C 837.231,2960.4 837.251,2960.43 837.27,2960.45 C 837.286,2960.49 837.295,2960.52 837.295,2960.55 C 837.295,2960.58 837.286,2960.61 837.27,2960.64 C 837.251,2960.67 837.231,2960.68 837.205,2960.7 C 837.178,2960.72 837.146,2960.72 837.113,2960.72 L 836.64,2960.67 C 836.589,2960.66 836.546,2960.67 836.504,2960.68 C 836.461,2960.7 836.426,2960.72 836.392,2960.75 C 836.376,2960.76 836.362,2960.78 836.346,2960.8 C 836.327,2960.83 836.313,2960.86 836.3,2960.89 C 836.291,2960.92 836.286,2960.96 836.286,2960.99 L 836.286,2961 C 836.286,2961.05 836.295,2961.1 836.313,2961.15 C 836.332,2961.19 836.357,2961.23 836.387,2961.27 C 836.422,2961.3 836.458,2961.33 836.5,2961.36 C 836.543,2961.38 836.589,2961.39 836.64,2961.4 L 837.173,2961.45 L 837.242,2961.45 C 837.265,2961.45 837.288,2961.44 837.311,2961.44 C 837.355,2961.42 837.392,2961.4 837.424,2961.37 C 837.456,2961.34 837.481,2961.31 837.5,2961.26 C 837.518,2961.22 837.53,2961.18 837.53,2961.13 L 837.53,2961.12 L 837.295,2961.09 L 837.295,2961.1 C 837.293,2961.12 837.288,2961.15 837.277,2961.16 C 837.265,2961.18 837.251,2961.19 837.233,2961.2 C 837.215,2961.21 837.194,2961.21 837.173,2961.21 L 836.64,2961.16 C 836.617,2961.16 836.596,2961.15 836.578,2961.14 C 836.559,2961.12 836.546,2961.11 836.534,2961.09 C 836.525,2961.07 836.518,2961.05 836.518,2961.03 L 836.518,2961.02 C 836.518,2960.99 836.525,2960.97 836.534,2960.96 C 836.546,2960.94 836.559,2960.93 836.578,2960.92 C 836.596,2960.91 836.617,2960.9 836.64,2960.91 L 837.113,2960.95 L 837.201,2960.95 C 837.231,2960.95 837.256,2960.94 837.284,2960.93 C 837.336,2960.92 837.382,2960.89 837.419,2960.85 C 837.421,2960.84 837.426,2960.84 837.426,2960.84 C 837.428,2960.84 837.431,2960.83 837.433,2960.83 C 837.465,2960.8 837.488,2960.76 837.504,2960.72 C 837.52,2960.67 837.53,2960.63 837.53,2960.58 C 837.527,2960.51 837.516,2960.46 837.495,2960.41 C 837.474,2960.35 837.444,2960.31 837.405,2960.26 C 837.369,2960.22 837.325,2960.19 837.274,2960.16 C 837.224,2960.13 837.169,2960.12 837.113,2960.11 L 836.702,2960.07 C 836.645,2960.07 836.589,2960.07 836.539,2960.09 Z M 833.213,2960.57 L 833.81,2960.63 C 833.819,2960.63 833.826,2960.64 833.835,2960.64 C 833.842,2960.64 833.852,2960.65 833.858,2960.65 C 833.881,2960.66 833.898,2960.68 833.909,2960.7 C 833.923,2960.72 833.93,2960.74 833.93,2960.77 C 833.927,2960.79 833.925,2960.81 833.916,2960.82 C 833.909,2960.83 833.902,2960.85 833.895,2960.85 C 833.886,2960.86 833.877,2960.87 833.861,2960.87 C 833.847,2960.88 833.831,2960.88 833.81,2960.88 L 833.213,2960.82 L 833.213,2960.57 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_MINI_individuals--EYE_CANDY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='513.01 -3041.4 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='72.269' y2='0' gradientTransform='translate(557.086 2951.59) rotate(53.596) skewX(-8.88364)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='58.57' y2='0' gradientTransform='translate(544.749 2953.4) rotate(94.6184) skewX(1.35098)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.109' y2='0' gradientTransform='translate(557.065 3010.16) rotate(13.1253) skewX(-5.1414)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.791' y2='0' gradientTransform='translate(540.77 3016.19) rotate(-121.721) skewX(-8.15213)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.48' y2='0' gradientTransform='translate(586.07 3015.64) rotate(-85.7019) skewX(1.28529) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.571' y2='0' gradientTransform='translate(547.215 2980.15) rotate(180) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(571.338 2983.08) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 546.929,2944.52 L 546.929,3013.35 L 607.76,3016.63 C 607.803,3016.59 607.835,3016.53 607.835,3016.46 L 607.835,2951.46 L 546.929,2944.52 Z' stroke-width='8.031' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 546.929,2944.52 L 534.854,2954.38 L 534.848,3018.91 L 546.929,3013.35 L 546.929,2944.52 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 546.929,3013.35 L 534.848,3018.91 L 593.882,3021.64 L 607.63,3016.71 C 607.677,3016.69 607.724,3016.67 607.76,3016.63 L 546.929,3013.35 Z' stroke-width='1.028' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 546.626,3012.56 L 534.843,3018.1 L 534.841,3018.91 L 546.626,3013.49 L 546.626,3012.56 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.906' fill='%23000000'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 563.8,2982.5 L 563.792,2989.65 L 564.972,2989.77 L 564.979,2986.12 L 565.953,2987.18 L 566.83,2988.13 L 568.67,2990.15 L 570.422,2990.33 L 567.532,2987.16 L 570.405,2983.17 L 568.947,2983.02 L 566.655,2986.2 L 564.981,2984.39 L 564.981,2982.62 L 563.8,2982.5 Z M 571.007,2983.23 L 571.613,2984.57 L 574.375,2990.73 L 577.156,2985.14 L 577.759,2983.92 L 576.439,2983.79 L 575.83,2985 L 574.38,2987.92 L 572.933,2984.7 L 572.331,2983.37 L 571.007,2983.23 Z M 578.357,2983.98 L 578.367,2983.98 L 579.274,2985.35 L 580.895,2987.8 L 581.646,2988.92 L 582.548,2990.29 L 578.341,2989.86 L 578.339,2991.13 L 583.457,2991.65 L 584.939,2991.8 L 584.026,2990.43 L 582.383,2987.95 L 581.64,2986.83 L 580.746,2985.5 L 584.977,2985.93 L 584.978,2984.65 L 579.859,2984.13 L 579.851,2984.13 L 578.357,2983.98 Z M 586.989,2985.01 C 586.776,2985.09 586.583,2985.21 586.426,2985.37 C 586.26,2985.53 586.132,2985.72 586.045,2985.94 C 585.952,2986.17 585.906,2986.41 585.904,2986.68 L 585.898,2989.97 C 585.898,2990.24 585.943,2990.49 586.036,2990.73 C 586.126,2990.98 586.251,2991.19 586.419,2991.39 C 586.577,2991.58 586.768,2991.74 586.981,2991.86 C 587.196,2991.98 587.428,2992.05 587.675,2992.08 L 592.507,2992.57 L 592.507,2991.3 L 587.675,2990.8 C 587.562,2990.79 587.462,2990.75 587.37,2990.68 C 587.279,2990.62 587.211,2990.53 587.155,2990.43 C 587.101,2990.32 587.075,2990.21 587.075,2990.09 L 587.075,2989.43 L 591.328,2989.86 L 591.33,2988.58 L 587.075,2988.15 L 587.075,2986.8 C 587.075,2986.68 587.105,2986.57 587.16,2986.48 C 587.217,2986.39 587.285,2986.31 587.375,2986.26 C 587.469,2986.21 587.566,2986.2 587.681,2986.2 L 592.513,2986.7 L 592.516,2985.42 L 587.681,2984.93 C 587.439,2984.91 587.207,2984.93 586.989,2985.01 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 547.23,3013.02 L 546.626,3013.49 L 607.32,3016.82 L 607.63,3016.71 C 607.732,3016.68 607.835,3016.6 607.835,3016.46 L 607.835,3016.34 L 547.23,3013.02 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 546.626,3013.49 L 546.623,2944.76 L 546.929,2944.52 L 547.23,2944.56 L 547.23,3013.02 L 546.626,3013.49 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cg id='Group_4' fill-rule='nonzero' fill='%23000000'%3E%3Cg id='Group_5'%3E%3Cpath d='M 575.38,2979.18 L 575.38,2981.24 L 575.746,2981 L 576.404,2980.55 L 577.06,2981.13 L 577.425,2981.45 L 577.425,2979.38 L 577.06,2979.35 L 577.06,2980.66 L 576.701,2980.35 L 576.404,2980.09 L 576.105,2980.29 L 575.746,2980.53 L 575.746,2979.21 L 575.38,2979.18 Z M 577.718,2979.41 L 577.718,2981.48 L 578.084,2981.52 L 578.084,2979.45 L 577.718,2979.41 Z M 578.378,2979.48 L 578.378,2981.54 L 578.742,2981.3 L 580.059,2980.41 L 580.059,2981.72 L 580.423,2981.75 L 580.423,2979.69 L 580.059,2979.93 L 578.742,2980.82 L 578.742,2979.52 L 578.378,2979.48 Z M 580.716,2979.72 L 580.716,2981.79 L 581.082,2981.82 L 581.082,2979.76 L 580.716,2979.72 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.248'%3E%3Crect x='-2.64' y='-2.488' width='5.28' height='4.976' transform='translate(565.2 2951.91) rotate(90) skewX(-6.54919)' fill='%231880d9'/%3E%3Crect x='-2.639' y='-2.486' width='5.279' height='4.973' transform='translate(571.665 2952.65) rotate(90) skewX(-6.55288)' fill='%2313a875'/%3E%3Crect x='-2.64' y='-2.488' width='5.28' height='4.976' transform='translate(578.129 2953.39) rotate(90) skewX(-6.54919)' fill='%2387c74c'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(584.597 2954.13) rotate(90) skewX(-6.55103)' fill='%23fc5f9b'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(591.061 2954.87) rotate(90) skewX(-6.55103)' fill='%234f34de'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.053' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 568.793,2957.65 L 568.761,2959.18 L 569.72,2959.28 L 569.724,2959.08 L 568.993,2958.99 L 569.002,2958.55 L 569.626,2958.62 L 569.63,2958.41 L 569.006,2958.34 L 569.016,2957.89 L 569.747,2957.97 L 569.752,2957.76 L 568.793,2957.65 Z M 570.327,2957.83 L 570.315,2958.45 L 569.847,2959.3 L 570.095,2959.33 L 570.424,2958.69 L 570.724,2959.4 L 570.972,2959.42 L 570.542,2958.48 L 570.555,2957.85 L 570.327,2957.83 Z M 571.211,2957.93 L 571.18,2959.45 L 572.139,2959.55 L 572.143,2959.35 L 571.412,2959.27 L 571.421,2958.82 L 572.045,2958.89 L 572.048,2958.69 L 571.424,2958.62 L 571.435,2958.16 L 572.165,2958.24 L 572.17,2958.03 L 571.211,2957.93 Z M 573.253,2958.18 C 573.189,2958.2 573.132,2958.23 573.083,2958.28 C 573.045,2958.31 573.017,2958.35 572.996,2958.38 C 572.974,2958.42 572.957,2958.46 572.947,2958.51 C 572.936,2958.56 572.93,2958.61 572.926,2958.67 C 572.921,2958.73 572.919,2958.8 572.918,2958.88 C 572.916,2958.96 572.916,2959.03 572.917,2959.09 C 572.918,2959.15 572.923,2959.21 572.932,2959.26 C 572.94,2959.3 572.954,2959.35 572.975,2959.39 C 572.994,2959.43 573.021,2959.48 573.057,2959.52 C 573.105,2959.57 573.159,2959.62 573.223,2959.65 C 573.287,2959.68 573.36,2959.7 573.441,2959.72 C 573.534,2959.72 573.617,2959.72 573.693,2959.69 C 573.767,2959.66 573.829,2959.62 573.88,2959.55 C 573.931,2959.49 573.966,2959.41 573.987,2959.31 L 573.755,2959.28 C 573.742,2959.33 573.723,2959.38 573.695,2959.41 C 573.668,2959.45 573.633,2959.48 573.592,2959.49 C 573.55,2959.51 573.501,2959.52 573.446,2959.51 C 573.4,2959.51 573.359,2959.49 573.323,2959.47 C 573.286,2959.45 573.253,2959.42 573.226,2959.39 C 573.208,2959.37 573.193,2959.35 573.181,2959.32 C 573.17,2959.3 573.161,2959.26 573.156,2959.23 C 573.15,2959.19 573.146,2959.15 573.145,2959.1 C 573.144,2959.05 573.144,2958.98 573.145,2958.91 C 573.148,2958.83 573.15,2958.77 573.153,2958.72 C 573.157,2958.67 573.161,2958.62 573.17,2958.59 C 573.177,2958.55 573.186,2958.53 573.199,2958.5 C 573.211,2958.48 573.226,2958.46 573.246,2958.44 C 573.274,2958.41 573.308,2958.4 573.345,2958.38 C 573.383,2958.37 573.424,2958.37 573.47,2958.37 C 573.524,2958.38 573.573,2958.4 573.615,2958.42 C 573.655,2958.45 573.689,2958.48 573.716,2958.53 C 573.742,2958.57 573.761,2958.62 573.771,2958.67 L 574,2958.7 C 573.984,2958.59 573.951,2958.5 573.904,2958.43 C 573.855,2958.36 573.795,2958.3 573.722,2958.25 C 573.649,2958.21 573.565,2958.18 573.473,2958.17 C 573.391,2958.16 573.318,2958.16 573.253,2958.18 Z M 574.112,2958.25 L 574.631,2959.84 L 574.815,2959.86 L 575.396,2958.4 L 575.154,2958.37 L 575.045,2958.66 L 574.452,2958.6 L 574.355,2958.28 L 574.112,2958.25 Z M 575.611,2958.42 L 575.578,2959.94 L 575.787,2959.97 L 576.504,2958.98 L 576.482,2960.04 L 576.709,2960.07 L 576.74,2958.55 L 576.531,2958.53 L 575.816,2959.52 L 575.838,2958.45 L 575.611,2958.42 Z M 577.133,2958.59 L 577.102,2960.11 L 577.628,2960.17 C 577.722,2960.18 577.804,2960.18 577.873,2960.16 C 577.944,2960.13 578.005,2960.09 578.059,2960.03 C 578.096,2959.99 578.122,2959.94 578.14,2959.88 C 578.157,2959.83 578.169,2959.77 578.175,2959.7 C 578.18,2959.63 578.183,2959.56 578.184,2959.47 C 578.186,2959.39 578.186,2959.32 578.184,2959.25 C 578.182,2959.18 578.172,2959.11 578.157,2959.05 C 578.142,2959 578.118,2958.94 578.082,2958.89 C 578.032,2958.82 577.972,2958.76 577.903,2958.73 C 577.835,2958.69 577.754,2958.66 577.661,2958.65 L 577.133,2958.59 Z M 574.516,2958.8 L 574.977,2958.85 L 574.735,2959.5 L 574.516,2958.8 Z M 578.771,2958.78 L 578.758,2959.4 L 578.291,2960.25 L 578.539,2960.28 L 578.867,2959.64 L 579.167,2960.35 L 579.415,2960.38 L 578.985,2959.43 L 578.998,2958.8 L 578.771,2958.78 Z M 577.357,2958.82 L 577.631,2958.85 C 577.685,2958.86 577.733,2958.87 577.776,2958.9 C 577.819,2958.92 577.855,2958.95 577.886,2958.99 C 577.909,2959.02 577.926,2959.06 577.937,2959.1 C 577.948,2959.14 577.954,2959.19 577.957,2959.25 C 577.959,2959.3 577.959,2959.37 577.957,2959.45 C 577.955,2959.52 577.953,2959.59 577.948,2959.65 C 577.944,2959.7 577.936,2959.75 577.923,2959.79 C 577.91,2959.83 577.892,2959.87 577.867,2959.89 C 577.835,2959.92 577.797,2959.95 577.754,2959.96 C 577.71,2959.97 577.662,2959.97 577.608,2959.97 L 577.334,2959.93 L 577.357,2958.82 Z M 580.352,2958.96 C 580.291,2958.97 580.232,2958.98 580.179,2959.01 C 580.124,2959.03 580.073,2959.06 580.023,2959.11 L 580.17,2959.27 C 580.226,2959.23 580.285,2959.19 580.35,2959.18 C 580.414,2959.17 580.483,2959.16 580.559,2959.17 C 580.659,2959.18 580.735,2959.21 580.787,2959.26 C 580.84,2959.3 580.865,2959.37 580.865,2959.44 C 580.864,2959.48 580.859,2959.51 580.849,2959.53 C 580.84,2959.56 580.823,2959.58 580.802,2959.59 C 580.783,2959.61 580.759,2959.62 580.733,2959.63 C 580.706,2959.63 580.674,2959.64 580.637,2959.64 L 580.458,2959.65 C 580.397,2959.65 580.342,2959.66 580.294,2959.67 C 580.247,2959.68 580.206,2959.71 580.173,2959.73 C 580.136,2959.76 580.107,2959.8 580.087,2959.85 C 580.067,2959.9 580.057,2959.95 580.056,2960.02 C 580.054,2960.1 580.073,2960.18 580.111,2960.25 C 580.15,2960.33 580.206,2960.38 580.281,2960.43 C 580.355,2960.47 580.444,2960.5 580.548,2960.52 C 580.615,2960.52 580.675,2960.52 580.729,2960.52 C 580.785,2960.51 580.835,2960.5 580.882,2960.48 C 580.929,2960.46 580.974,2960.43 581.018,2960.4 L 580.878,2960.23 C 580.83,2960.27 580.779,2960.3 580.724,2960.31 C 580.668,2960.32 580.608,2960.32 580.544,2960.31 C 580.485,2960.31 580.435,2960.29 580.395,2960.27 C 580.355,2960.24 580.325,2960.21 580.305,2960.17 C 580.285,2960.14 580.276,2960.09 580.277,2960.05 C 580.277,2960.02 580.282,2959.99 580.291,2959.97 C 580.299,2959.95 580.314,2959.93 580.334,2959.91 C 580.354,2959.9 580.376,2959.89 580.401,2959.88 C 580.427,2959.87 580.46,2959.86 580.501,2959.86 L 580.681,2959.85 C 580.726,2959.85 580.765,2959.85 580.799,2959.84 C 580.834,2959.84 580.864,2959.83 580.889,2959.82 C 580.915,2959.8 580.939,2959.79 580.961,2959.77 C 581.002,2959.74 581.033,2959.7 581.055,2959.65 C 581.076,2959.6 581.088,2959.54 581.09,2959.47 C 581.091,2959.38 581.069,2959.3 581.025,2959.22 C 580.981,2959.15 580.918,2959.1 580.838,2959.05 C 580.758,2959.01 580.666,2958.98 580.559,2958.97 C 580.485,2958.96 580.415,2958.96 580.352,2958.96 Z M 581.404,2959.07 L 581.373,2960.6 L 581.6,2960.62 L 581.632,2959.1 L 581.404,2959.07 Z M 582.025,2959.14 L 581.992,2960.67 L 582.951,2960.77 L 582.956,2960.57 L 582.224,2960.48 L 582.233,2960.04 L 582.857,2960.11 L 582.862,2959.91 L 582.238,2959.83 L 582.247,2959.38 L 582.979,2959.46 L 582.984,2959.25 L 582.025,2959.14 Z M 583.296,2959.29 L 583.264,2960.81 L 583.845,2960.87 C 583.94,2960.88 584.024,2960.87 584.093,2960.84 C 584.164,2960.81 584.219,2960.77 584.258,2960.71 C 584.298,2960.64 584.318,2960.57 584.321,2960.48 C 584.322,2960.41 584.309,2960.34 584.285,2960.29 C 584.259,2960.23 584.225,2960.18 584.18,2960.14 C 584.136,2960.1 584.087,2960.07 584.03,2960.05 L 584.389,2959.41 L 584.124,2959.38 L 583.794,2959.99 L 583.509,2959.95 L 583.523,2959.31 L 583.296,2959.29 Z M 584.676,2959.44 L 584.644,2960.97 L 584.872,2960.99 L 584.903,2959.47 L 584.676,2959.44 Z M 585.296,2959.51 L 585.265,2961.03 L 586.224,2961.14 L 586.227,2960.93 L 585.497,2960.85 L 585.506,2960.41 L 586.13,2960.48 L 586.133,2960.27 L 585.509,2960.2 L 585.519,2959.74 L 586.25,2959.83 L 586.255,2959.62 L 585.296,2959.51 Z M 586.76,2959.68 C 586.697,2959.69 586.639,2959.7 586.586,2959.73 C 586.531,2959.75 586.48,2959.78 586.43,2959.83 L 586.577,2960 C 586.633,2959.95 586.692,2959.92 586.756,2959.9 C 586.821,2959.89 586.891,2959.88 586.966,2959.89 C 587.066,2959.9 587.142,2959.93 587.194,2959.98 C 587.247,2960.03 587.272,2960.09 587.271,2960.16 C 587.271,2960.2 587.265,2960.23 587.256,2960.25 C 587.245,2960.28 587.23,2960.3 587.209,2960.32 C 587.19,2960.33 587.167,2960.34 587.14,2960.35 C 587.113,2960.36 587.081,2960.36 587.042,2960.36 L 586.865,2960.37 C 586.804,2960.37 586.749,2960.38 586.702,2960.39 C 586.654,2960.41 586.613,2960.43 586.58,2960.46 C 586.543,2960.49 586.514,2960.52 586.494,2960.57 C 586.474,2960.62 586.464,2960.67 586.463,2960.74 C 586.461,2960.83 586.48,2960.9 586.518,2960.97 C 586.557,2961.05 586.613,2961.1 586.688,2961.15 C 586.762,2961.2 586.85,2961.22 586.956,2961.24 C 587.022,2961.24 587.082,2961.24 587.136,2961.24 C 587.191,2961.23 587.242,2961.22 587.289,2961.2 C 587.336,2961.18 587.381,2961.15 587.425,2961.12 L 587.285,2960.96 C 587.237,2960.99 587.186,2961.02 587.131,2961.03 C 587.075,2961.04 587.015,2961.04 586.951,2961.03 C 586.892,2961.03 586.842,2961.01 586.802,2960.99 C 586.762,2960.96 586.732,2960.93 586.712,2960.89 C 586.692,2960.86 586.683,2960.81 586.683,2960.77 C 586.684,2960.74 586.689,2960.72 586.698,2960.69 C 586.706,2960.67 586.721,2960.65 586.741,2960.63 C 586.76,2960.62 586.782,2960.61 586.808,2960.6 C 586.834,2960.59 586.866,2960.59 586.907,2960.58 L 587.088,2960.58 C 587.133,2960.57 587.172,2960.57 587.206,2960.56 C 587.241,2960.56 587.27,2960.55 587.296,2960.54 C 587.322,2960.53 587.346,2960.51 587.368,2960.49 C 587.409,2960.46 587.44,2960.42 587.462,2960.37 C 587.483,2960.32 587.495,2960.26 587.497,2960.19 C 587.498,2960.1 587.476,2960.02 587.432,2959.95 C 587.388,2959.88 587.325,2959.82 587.245,2959.77 C 587.165,2959.73 587.073,2959.7 586.966,2959.69 C 586.892,2959.68 586.822,2959.68 586.76,2959.68 Z M 583.506,2960.15 L 583.843,2960.19 C 583.894,2960.2 583.938,2960.21 583.976,2960.23 C 584.013,2960.26 584.042,2960.28 584.063,2960.32 C 584.084,2960.36 584.093,2960.41 584.093,2960.45 C 584.091,2960.51 584.08,2960.55 584.058,2960.58 C 584.036,2960.61 584.005,2960.64 583.967,2960.65 C 583.929,2960.67 583.884,2960.67 583.833,2960.67 L 583.495,2960.63 L 583.506,2960.15 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_MINI_individuals--ELEMENTS {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='18.437 -3041.4 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='72.268' y2='0' gradientTransform='translate(59.029 2951.59) rotate(53.5966) skewX(-8.883)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='58.57' y2='0' gradientTransform='translate(46.691 2953.4) rotate(94.6174) skewX(1.34995)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.109' y2='0' gradientTransform='translate(59.007 3010.16) rotate(13.1253) skewX(-5.13674)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.789' y2='0' gradientTransform='translate(42.712 3016.18) rotate(-121.698) skewX(-8.12856)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.479' y2='0' gradientTransform='translate(88.012 3015.64) rotate(-85.5738) skewX(1.41868) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.57' y2='0' gradientTransform='translate(49.157 2980.15) rotate(180) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(76.765 2983.07) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 48.873,2944.52 L 48.873,3013.35 L 109.702,3016.63 C 109.745,3016.59 109.777,3016.53 109.777,3016.46 L 109.777,2951.46 L 48.873,2944.52 Z' stroke-width='8.031' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 48.873,2944.52 L 36.797,2954.37 L 36.79,3018.91 L 48.873,3013.35 L 48.873,2944.52 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 48.873,3013.35 L 36.79,3018.91 L 95.824,3021.63 L 109.572,3016.71 C 109.619,3016.69 109.666,3016.67 109.702,3016.63 L 48.873,3013.35 Z' stroke-width='1.028' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 48.568,3012.56 L 36.787,3018.1 L 36.784,3018.91 L 48.568,3013.49 L 48.568,3012.56 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.906' fill='%23000000'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 65.743,2982.5 L 65.734,2989.65 L 66.915,2989.77 L 66.921,2986.12 L 67.896,2987.18 L 68.772,2988.13 L 70.613,2990.15 L 72.364,2990.33 L 69.475,2987.16 L 72.347,2983.17 L 70.89,2983.02 L 68.597,2986.2 L 66.923,2984.39 L 66.923,2982.62 L 65.743,2982.5 Z M 72.95,2983.23 L 73.556,2984.57 L 76.318,2990.73 L 79.099,2985.14 L 79.701,2983.92 L 78.382,2983.79 L 77.774,2985 L 76.322,2987.92 L 74.875,2984.7 L 74.273,2983.37 L 72.95,2983.23 Z M 80.299,2983.98 L 80.31,2983.98 L 81.216,2985.35 L 82.838,2987.8 L 83.589,2988.92 L 84.491,2990.29 L 80.284,2989.85 L 80.282,2991.13 L 85.4,2991.65 L 86.881,2991.8 L 85.968,2990.43 L 84.325,2987.95 L 83.582,2986.83 L 82.689,2985.5 L 86.919,2985.93 L 86.921,2984.65 L 81.802,2984.13 L 81.792,2984.13 L 80.299,2983.98 Z M 88.932,2985.01 C 88.719,2985.09 88.525,2985.21 88.368,2985.37 C 88.202,2985.53 88.074,2985.72 87.988,2985.94 C 87.894,2986.17 87.848,2986.41 87.847,2986.68 L 87.84,2989.97 C 87.84,2990.24 87.885,2990.49 87.978,2990.73 C 88.068,2990.97 88.194,2991.19 88.361,2991.39 C 88.519,2991.58 88.71,2991.74 88.923,2991.86 C 89.139,2991.98 89.37,2992.05 89.617,2992.08 L 94.449,2992.57 L 94.449,2991.3 L 89.617,2990.8 C 89.504,2990.79 89.405,2990.75 89.313,2990.68 C 89.222,2990.62 89.153,2990.53 89.098,2990.43 C 89.043,2990.32 89.017,2990.21 89.017,2990.09 L 89.017,2989.42 L 93.271,2989.86 L 93.273,2988.58 L 89.017,2988.15 L 89.017,2986.8 C 89.017,2986.68 89.047,2986.57 89.102,2986.48 C 89.16,2986.39 89.228,2986.31 89.317,2986.26 C 89.41,2986.21 89.509,2986.2 89.623,2986.2 L 94.456,2986.7 L 94.458,2985.42 L 89.623,2984.93 C 89.381,2984.91 89.149,2984.93 88.932,2985.01 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.906' fill='%23000000'%3E%3Cg id='Group_5'%3E%3Cpath d='M 66.151,2974.53 L 66.149,2975.91 L 66.994,2976 C 67.045,2976.01 67.096,2976 67.136,2975.99 C 67.177,2975.97 67.219,2975.95 67.249,2975.92 L 67.251,2975.92 C 67.287,2975.88 67.311,2975.85 67.33,2975.81 C 67.347,2975.76 67.359,2975.71 67.359,2975.66 C 67.359,2975.61 67.349,2975.56 67.332,2975.52 C 67.315,2975.47 67.292,2975.43 67.257,2975.39 C 67.228,2975.35 67.189,2975.32 67.149,2975.3 C 67.115,2975.28 67.081,2975.26 67.045,2975.26 C 67.04,2975.26 67.036,2975.26 67.034,2975.26 L 67.034,2975.26 L 66.391,2975.19 L 66.394,2974.55 L 66.151,2974.53 Z M 67.549,2974.67 L 67.547,2976.05 L 68.396,2976.15 C 68.449,2976.15 68.493,2976.15 68.536,2976.13 C 68.581,2976.11 68.615,2976.09 68.649,2976.06 C 68.683,2976.03 68.707,2975.99 68.732,2975.95 C 68.747,2975.91 68.755,2975.86 68.758,2975.81 C 68.755,2975.76 68.747,2975.71 68.734,2975.66 C 68.709,2975.62 68.688,2975.58 68.655,2975.54 C 68.621,2975.5 68.589,2975.47 68.547,2975.45 C 68.513,2975.43 68.479,2975.41 68.444,2975.4 L 68.634,2975.03 L 68.758,2974.79 L 68.491,2974.76 L 68.366,2974.99 L 68.238,2975.25 L 68.232,2975.26 C 68.211,2975.29 68.181,2975.32 68.147,2975.33 C 68.108,2975.35 68.072,2975.36 68.03,2975.35 L 67.787,2975.33 L 67.787,2974.69 L 67.549,2974.67 Z M 69.313,2974.91 C 69.236,2974.93 69.164,2974.98 69.104,2975.03 C 69.038,2975.09 68.989,2975.16 68.957,2975.24 C 68.923,2975.32 68.906,2975.41 68.902,2975.51 C 68.906,2975.6 68.923,2975.69 68.956,2975.78 C 68.989,2975.87 69.038,2975.95 69.102,2976.01 C 69.162,2976.09 69.234,2976.15 69.311,2976.19 C 69.394,2976.23 69.481,2976.26 69.574,2976.27 C 69.666,2976.28 69.756,2976.27 69.839,2976.24 C 69.915,2976.21 69.99,2976.17 70.049,2976.11 C 70.113,2976.06 70.162,2975.99 70.194,2975.91 C 70.228,2975.83 70.247,2975.74 70.247,2975.64 C 70.247,2975.55 70.23,2975.45 70.194,2975.37 C 70.162,2975.28 70.115,2975.21 70.052,2975.13 C 69.992,2975.06 69.917,2975 69.841,2974.96 C 69.756,2974.92 69.668,2974.89 69.577,2974.88 L 69.442,2974.88 C 69.396,2974.89 69.355,2974.89 69.313,2974.91 Z M 70.943,2975.02 L 70.94,2976.16 L 70.391,2976.1 L 70.391,2976.35 L 71.73,2976.49 L 71.73,2976.24 L 71.185,2976.19 L 71.187,2975.04 L 70.943,2975.02 Z M 69.577,2975.13 C 69.634,2975.13 69.692,2975.15 69.745,2975.18 C 69.8,2975.21 69.845,2975.25 69.881,2975.29 C 69.92,2975.33 69.951,2975.39 69.977,2975.45 C 69.995,2975.5 70.009,2975.56 70.009,2975.62 C 70.009,2975.68 69.995,2975.74 69.974,2975.79 C 69.951,2975.84 69.92,2975.89 69.881,2975.92 C 69.842,2975.96 69.798,2975.99 69.743,2976 C 69.689,2976.02 69.634,2976.03 69.574,2976.02 C 69.517,2976.01 69.459,2976 69.407,2975.97 C 69.355,2975.94 69.306,2975.9 69.268,2975.86 C 69.232,2975.81 69.201,2975.76 69.177,2975.7 C 69.16,2975.65 69.147,2975.59 69.147,2975.53 C 69.147,2975.47 69.16,2975.41 69.177,2975.36 C 69.201,2975.31 69.234,2975.26 69.271,2975.23 C 69.308,2975.19 69.357,2975.16 69.407,2975.15 C 69.459,2975.13 69.519,2975.12 69.577,2975.13 Z M 72.148,2975.18 C 72.109,2975.19 72.071,2975.21 72.034,2975.25 C 72.003,2975.28 71.977,2975.31 71.958,2975.36 C 71.941,2975.4 71.932,2975.45 71.932,2975.5 L 71.93,2976.14 C 71.932,2976.19 71.936,2976.24 71.955,2976.29 C 71.977,2976.33 72.001,2976.37 72.034,2976.41 C 72.068,2976.45 72.105,2976.48 72.148,2976.51 C 72.192,2976.53 72.239,2976.55 72.288,2976.55 L 73.271,2976.65 L 73.271,2976.41 L 72.288,2976.3 C 72.266,2976.3 72.245,2976.29 72.226,2976.28 C 72.211,2976.27 72.194,2976.25 72.183,2976.23 C 72.173,2976.21 72.167,2976.18 72.167,2976.16 L 72.167,2976.03 L 73.03,2976.12 L 73.03,2975.88 L 72.167,2975.78 L 72.171,2975.53 C 72.171,2975.5 72.173,2975.48 72.185,2975.46 C 72.196,2975.45 72.213,2975.43 72.229,2975.42 C 72.25,2975.41 72.269,2975.41 72.288,2975.41 L 73.273,2975.51 L 73.273,2975.26 L 72.29,2975.16 C 72.241,2975.16 72.194,2975.16 72.148,2975.18 Z M 73.849,2975.38 C 73.77,2975.4 73.703,2975.45 73.641,2975.5 C 73.577,2975.56 73.528,2975.63 73.494,2975.71 C 73.46,2975.79 73.441,2975.88 73.441,2975.97 C 73.441,2976.07 73.46,2976.16 73.494,2976.25 C 73.526,2976.34 73.575,2976.41 73.641,2976.49 C 73.703,2976.56 73.77,2976.61 73.849,2976.66 C 73.932,2976.7 74.02,2976.73 74.114,2976.74 L 74.781,2976.81 L 74.781,2976.56 L 74.114,2976.49 C 74.054,2976.48 73.996,2976.47 73.945,2976.44 C 73.894,2976.41 73.845,2976.37 73.805,2976.33 C 73.768,2976.28 73.739,2976.24 73.714,2976.18 C 73.697,2976.12 73.681,2976.06 73.681,2976 C 73.681,2975.94 73.697,2975.88 73.716,2975.83 C 73.739,2975.78 73.768,2975.73 73.807,2975.7 C 73.848,2975.66 73.896,2975.63 73.947,2975.62 C 73.996,2975.6 74.054,2975.59 74.116,2975.6 L 74.784,2975.67 L 74.784,2975.42 L 74.116,2975.35 L 73.979,2975.35 C 73.934,2975.35 73.894,2975.36 73.849,2975.38 Z M 66.391,2975.43 L 66.998,2975.49 C 67.008,2975.5 67.019,2975.5 67.025,2975.5 C 67.034,2975.5 67.04,2975.51 67.05,2975.51 C 67.07,2975.53 67.089,2975.54 67.104,2975.57 C 67.115,2975.59 67.119,2975.61 67.119,2975.64 C 67.119,2975.66 67.115,2975.68 67.108,2975.69 C 67.102,2975.71 67.091,2975.72 67.085,2975.72 C 67.077,2975.73 67.066,2975.74 67.053,2975.74 C 67.036,2975.75 67.021,2975.76 66.998,2975.75 L 66.391,2975.69 L 66.391,2975.43 Z M 75.526,2975.5 L 75.526,2976.64 L 74.975,2976.58 L 74.975,2976.83 L 76.318,2976.97 L 76.318,2976.72 L 75.767,2976.66 L 75.767,2975.52 L 75.526,2975.5 Z M 67.787,2975.58 L 68.396,2975.64 C 68.404,2975.64 68.413,2975.64 68.421,2975.64 C 68.432,2975.65 68.438,2975.65 68.449,2975.66 C 68.468,2975.67 68.485,2975.68 68.5,2975.71 C 68.513,2975.73 68.519,2975.76 68.519,2975.78 C 68.519,2975.8 68.513,2975.82 68.506,2975.84 C 68.5,2975.85 68.491,2975.86 68.481,2975.87 C 68.474,2975.88 68.462,2975.88 68.453,2975.89 C 68.436,2975.9 68.415,2975.9 68.396,2975.9 L 67.787,2975.83 L 67.787,2975.58 Z M 76.509,2975.6 L 76.507,2976.99 L 76.752,2977.01 L 76.754,2975.63 L 76.509,2975.6 Z M 77.553,2975.71 L 76.988,2976.79 L 76.863,2977.02 L 77.133,2977.05 L 77.256,2976.82 L 77.55,2976.25 L 77.842,2976.88 L 77.967,2977.14 L 78.233,2977.17 L 78.11,2976.91 L 77.553,2975.71 Z M 78.575,2975.84 C 78.532,2975.86 78.495,2975.88 78.463,2975.91 C 78.428,2975.94 78.401,2975.98 78.386,2976.02 C 78.365,2976.06 78.355,2976.11 78.355,2976.16 L 78.355,2976.8 C 78.355,2976.86 78.363,2976.9 78.384,2976.95 C 78.399,2977 78.426,2977.04 78.461,2977.08 C 78.492,2977.12 78.531,2977.15 78.573,2977.17 C 78.616,2977.2 78.665,2977.21 78.716,2977.22 L 79.693,2977.32 L 79.693,2977.07 L 78.716,2976.97 C 78.688,2976.97 78.669,2976.96 78.65,2976.95 C 78.633,2976.93 78.621,2976.92 78.608,2976.89 C 78.597,2976.88 78.59,2976.85 78.59,2976.83 L 78.59,2976.7 L 79.459,2976.79 L 79.459,2976.54 L 78.592,2976.45 L 78.592,2976.19 C 78.592,2976.17 78.6,2976.15 78.61,2976.13 C 78.621,2976.11 78.633,2976.09 78.654,2976.09 C 78.671,2976.08 78.691,2976.07 78.718,2976.07 L 79.695,2976.18 L 79.695,2975.93 L 78.718,2975.83 C 78.667,2975.82 78.618,2975.83 78.575,2975.84 Z M 80.818,2976.04 L 80.816,2977.43 L 81.663,2977.52 C 81.714,2977.53 81.761,2977.52 81.805,2977.5 C 81.851,2977.49 81.886,2977.47 81.92,2977.44 C 81.955,2977.4 81.978,2977.37 81.999,2977.32 C 82.014,2977.28 82.025,2977.23 82.025,2977.18 C 82.025,2977.13 82.016,2977.08 82.001,2977.04 C 81.982,2976.99 81.959,2976.95 81.927,2976.91 C 81.895,2976.88 81.861,2976.84 81.816,2976.82 C 81.786,2976.8 81.746,2976.79 81.712,2976.78 L 81.908,2976.4 L 82.027,2976.17 L 81.757,2976.14 L 81.638,2976.37 L 81.51,2976.62 L 81.503,2976.63 C 81.482,2976.66 81.453,2976.69 81.414,2976.71 C 81.38,2976.73 81.342,2976.73 81.302,2976.73 L 81.057,2976.7 L 81.059,2976.07 L 80.818,2976.04 Z M 82.444,2976.24 C 82.401,2976.26 82.361,2976.28 82.331,2976.31 C 82.297,2976.34 82.272,2976.38 82.253,2976.42 C 82.235,2976.47 82.224,2976.51 82.224,2976.57 L 82.224,2977.21 C 82.224,2977.26 82.234,2977.31 82.251,2977.35 C 82.269,2977.4 82.295,2977.44 82.328,2977.48 C 82.361,2977.52 82.399,2977.55 82.442,2977.58 C 82.487,2977.6 82.533,2977.61 82.583,2977.62 L 83.563,2977.72 L 83.563,2977.47 L 82.583,2977.37 C 82.563,2977.37 82.54,2977.36 82.521,2977.35 C 82.508,2977.33 82.491,2977.32 82.479,2977.3 C 82.468,2977.28 82.461,2977.25 82.461,2977.23 L 82.461,2977.1 L 83.325,2977.19 L 83.325,2976.94 L 82.463,2976.85 L 82.463,2976.59 C 82.463,2976.57 82.469,2976.55 82.48,2976.53 C 82.491,2976.51 82.508,2976.5 82.523,2976.49 C 82.542,2976.48 82.565,2976.48 82.583,2976.48 L 83.565,2976.58 L 83.565,2976.33 L 82.584,2976.23 C 82.535,2976.23 82.489,2976.23 82.444,2976.24 Z M 84.017,2976.41 C 83.968,2976.43 83.923,2976.46 83.883,2976.49 C 83.842,2976.53 83.815,2976.57 83.789,2976.62 C 83.772,2976.67 83.757,2976.73 83.757,2976.79 L 84.002,2976.81 C 84.002,2976.78 84.008,2976.74 84.023,2976.72 C 84.04,2976.69 84.061,2976.67 84.089,2976.66 C 84.116,2976.65 84.145,2976.64 84.182,2976.64 L 84.604,2976.68 C 84.637,2976.69 84.668,2976.7 84.697,2976.72 C 84.72,2976.74 84.747,2976.76 84.761,2976.8 C 84.778,2976.83 84.787,2976.86 84.787,2976.9 C 84.787,2976.93 84.778,2976.96 84.761,2976.99 C 84.747,2977.02 84.72,2977.03 84.697,2977.05 C 84.666,2977.06 84.637,2977.07 84.604,2977.07 L 84.116,2977.02 L 84.049,2977.02 C 84.023,2977.02 84.002,2977.02 83.981,2977.03 C 83.938,2977.04 83.904,2977.07 83.865,2977.09 C 83.853,2977.11 83.831,2977.13 83.818,2977.15 C 83.797,2977.18 83.784,2977.21 83.774,2977.25 C 83.763,2977.28 83.757,2977.32 83.757,2977.36 L 83.757,2977.36 C 83.757,2977.42 83.767,2977.46 83.784,2977.51 C 83.802,2977.56 83.827,2977.6 83.864,2977.64 C 83.9,2977.68 83.934,2977.71 83.978,2977.73 C 84.018,2977.76 84.068,2977.77 84.116,2977.78 L 84.661,2977.83 C 84.71,2977.84 84.757,2977.83 84.801,2977.82 C 84.847,2977.8 84.884,2977.78 84.921,2977.75 C 84.951,2977.72 84.978,2977.68 84.995,2977.64 C 85.017,2977.6 85.023,2977.55 85.023,2977.5 L 85.023,2977.49 L 84.785,2977.46 L 84.785,2977.47 C 84.785,2977.49 84.778,2977.51 84.768,2977.53 C 84.755,2977.55 84.742,2977.56 84.723,2977.57 C 84.706,2977.58 84.685,2977.59 84.661,2977.58 L 84.116,2977.53 C 84.095,2977.53 84.072,2977.51 84.055,2977.5 C 84.04,2977.49 84.023,2977.47 84.01,2977.45 C 84.002,2977.43 83.997,2977.41 83.997,2977.39 L 83.997,2977.38 C 83.997,2977.35 84.002,2977.34 84.01,2977.32 C 84.023,2977.3 84.04,2977.28 84.057,2977.28 C 84.072,2977.26 84.095,2977.26 84.116,2977.26 L 84.604,2977.31 L 84.693,2977.31 C 84.718,2977.31 84.749,2977.3 84.774,2977.3 C 84.832,2977.28 84.876,2977.25 84.914,2977.21 C 84.921,2977.2 84.923,2977.2 84.925,2977.2 C 84.927,2977.2 84.927,2977.19 84.932,2977.19 C 84.959,2977.16 84.983,2977.12 84.997,2977.07 C 85.018,2977.02 85.025,2976.97 85.025,2976.92 C 85.025,2976.86 85.015,2976.8 84.994,2976.74 C 84.974,2976.69 84.94,2976.64 84.903,2976.6 C 84.861,2976.55 84.819,2976.52 84.766,2976.49 C 84.715,2976.46 84.661,2976.44 84.604,2976.44 L 84.182,2976.39 C 84.122,2976.39 84.068,2976.39 84.017,2976.41 Z M 85.223,2976.5 L 85.217,2977.89 L 86.066,2977.98 C 86.116,2977.99 86.161,2977.98 86.204,2977.96 C 86.249,2977.95 86.287,2977.93 86.325,2977.9 L 86.325,2977.9 C 86.355,2977.86 86.382,2977.82 86.402,2977.78 C 86.417,2977.74 86.428,2977.69 86.428,2977.64 C 86.428,2977.59 86.421,2977.54 86.402,2977.49 C 86.385,2977.45 86.361,2977.4 86.33,2977.37 C 86.296,2977.33 86.261,2977.3 86.217,2977.28 C 86.187,2977.26 86.151,2977.24 86.114,2977.24 C 86.111,2977.24 86.106,2977.23 86.104,2977.23 L 86.104,2977.23 L 85.461,2977.17 L 85.461,2976.53 L 85.223,2976.5 Z M 86.624,2976.65 L 86.621,2978.04 L 86.855,2978.06 L 86.859,2976.67 L 86.624,2976.65 Z M 87.053,2976.69 L 87.051,2978.08 L 87.898,2978.16 C 87.949,2978.17 87.996,2978.16 88.04,2978.15 C 88.083,2978.14 88.116,2978.11 88.153,2978.08 C 88.187,2978.05 88.21,2978.01 88.23,2977.97 C 88.249,2977.93 88.257,2977.88 88.259,2977.83 C 88.257,2977.78 88.249,2977.73 88.232,2977.68 C 88.213,2977.64 88.189,2977.59 88.159,2977.56 C 88.128,2977.52 88.09,2977.49 88.047,2977.46 C 88.014,2977.45 87.981,2977.43 87.947,2977.42 L 88.138,2977.05 L 88.259,2976.81 L 87.993,2976.78 L 87.868,2977.02 L 87.741,2977.26 L 87.734,2977.28 C 87.713,2977.31 87.685,2977.34 87.649,2977.35 C 87.615,2977.37 87.574,2977.38 87.534,2977.38 L 87.293,2977.35 L 87.293,2976.71 L 87.053,2976.69 Z M 88.377,2976.83 L 88.5,2977.09 L 89.061,2978.29 L 89.623,2977.21 L 89.751,2976.97 L 89.48,2976.94 L 89.357,2977.18 L 89.061,2977.74 L 88.769,2977.12 L 88.645,2976.86 L 88.377,2976.83 Z M 81.057,2976.95 L 81.665,2977.02 C 81.676,2977.02 81.684,2977.02 81.691,2977.02 C 81.699,2977.02 81.708,2977.03 81.714,2977.03 C 81.735,2977.05 81.755,2977.06 81.771,2977.09 C 81.782,2977.11 81.791,2977.13 81.791,2977.16 C 81.791,2977.18 81.786,2977.2 81.776,2977.21 C 81.769,2977.23 81.757,2977.24 81.75,2977.24 C 81.742,2977.25 81.731,2977.26 81.721,2977.26 C 81.71,2977.26 81.701,2977.27 81.693,2977.27 L 81.663,2977.27 L 81.057,2977.21 L 81.057,2976.95 Z M 90.413,2977.04 L 90.413,2978.18 L 89.862,2978.13 L 89.86,2978.37 L 91.203,2978.51 L 91.203,2978.27 L 90.651,2978.2 L 90.653,2977.06 L 90.413,2977.04 Z M 91.76,2977.23 C 91.679,2977.26 91.611,2977.3 91.547,2977.36 C 91.488,2977.42 91.438,2977.49 91.4,2977.57 C 91.368,2977.65 91.349,2977.73 91.349,2977.83 C 91.349,2977.93 91.366,2978.02 91.4,2978.1 C 91.436,2978.19 91.486,2978.28 91.547,2978.34 C 91.609,2978.41 91.677,2978.47 91.758,2978.51 C 91.843,2978.56 91.93,2978.59 92.019,2978.6 C 92.117,2978.6 92.2,2978.6 92.281,2978.57 C 92.362,2978.54 92.437,2978.5 92.498,2978.44 C 92.558,2978.38 92.605,2978.32 92.639,2978.23 C 92.675,2978.15 92.692,2978.07 92.694,2977.97 C 92.692,2977.88 92.675,2977.78 92.641,2977.69 C 92.605,2977.61 92.558,2977.53 92.498,2977.46 C 92.441,2977.39 92.364,2977.33 92.283,2977.29 C 92.202,2977.25 92.119,2977.22 92.024,2977.21 L 91.888,2977.21 C 91.845,2977.21 91.805,2977.22 91.76,2977.23 Z M 92.839,2977.29 L 92.836,2978.68 L 93.684,2978.76 C 93.733,2978.77 93.779,2978.76 93.824,2978.75 C 93.869,2978.73 93.907,2978.71 93.941,2978.68 C 93.975,2978.65 93.998,2978.61 94.015,2978.57 C 94.034,2978.53 94.044,2978.48 94.044,2978.43 C 94.044,2978.38 94.034,2978.33 94.02,2978.28 C 94.001,2978.24 93.98,2978.2 93.943,2978.16 C 93.913,2978.12 93.875,2978.09 93.837,2978.06 C 93.799,2978.04 93.766,2978.03 93.728,2978.03 L 93.926,2977.65 L 94.045,2977.41 L 93.777,2977.39 L 93.658,2977.62 L 93.523,2977.87 L 93.52,2977.88 C 93.498,2977.91 93.473,2977.94 93.435,2977.96 C 93.398,2977.97 93.36,2977.98 93.315,2977.97 L 93.078,2977.95 L 93.078,2977.31 L 92.839,2977.29 Z M 85.459,2977.41 L 86.068,2977.47 C 86.076,2977.48 86.087,2977.48 86.095,2977.48 C 86.101,2977.49 86.111,2977.49 86.119,2977.49 L 86.119,2977.49 C 86.138,2977.51 86.157,2977.53 86.17,2977.55 C 86.184,2977.57 86.189,2977.59 86.192,2977.62 C 86.189,2977.64 86.187,2977.66 86.178,2977.67 C 86.168,2977.69 86.161,2977.7 86.153,2977.7 C 86.145,2977.71 86.136,2977.72 86.121,2977.72 C 86.106,2977.73 86.091,2977.73 86.068,2977.73 L 85.459,2977.67 L 85.459,2977.41 Z M 92.024,2977.45 C 92.084,2977.46 92.138,2977.48 92.19,2977.51 C 92.24,2977.54 92.287,2977.57 92.326,2977.62 C 92.366,2977.66 92.398,2977.72 92.42,2977.77 C 92.447,2977.83 92.454,2977.89 92.454,2977.95 C 92.454,2978.01 92.445,2978.06 92.42,2978.11 C 92.398,2978.17 92.364,2978.22 92.323,2978.25 C 92.286,2978.28 92.24,2978.32 92.19,2978.33 C 92.138,2978.35 92.081,2978.35 92.019,2978.35 C 91.96,2978.34 91.904,2978.32 91.853,2978.3 C 91.805,2978.27 91.756,2978.23 91.715,2978.19 C 91.675,2978.14 91.645,2978.09 91.623,2978.03 C 91.6,2977.98 91.592,2977.92 91.59,2977.86 C 91.592,2977.79 91.6,2977.74 91.623,2977.68 C 91.645,2977.63 91.675,2977.59 91.715,2977.55 C 91.756,2977.52 91.805,2977.49 91.856,2977.47 C 91.907,2977.45 91.96,2977.45 92.024,2977.45 Z M 87.293,2977.6 L 87.898,2977.66 C 87.908,2977.66 87.915,2977.67 87.923,2977.67 C 87.931,2977.67 87.941,2977.67 87.949,2977.68 C 87.972,2977.69 87.989,2977.71 88,2977.73 C 88.014,2977.76 88.022,2977.78 88.022,2977.8 C 88.022,2977.83 88.014,2977.85 88.009,2977.86 C 88,2977.87 87.993,2977.88 87.985,2977.89 C 87.977,2977.9 87.966,2977.9 87.951,2977.91 C 87.939,2977.92 87.917,2977.92 87.898,2977.92 L 87.293,2977.86 L 87.293,2977.6 Z M 93.078,2978.2 L 93.684,2978.27 C 93.695,2978.27 93.703,2978.27 93.711,2978.27 C 93.719,2978.28 93.726,2978.28 93.733,2978.28 C 93.756,2978.29 93.773,2978.31 93.788,2978.33 C 93.799,2978.35 93.805,2978.37 93.805,2978.4 C 93.802,2978.42 93.799,2978.44 93.794,2978.46 C 93.788,2978.47 93.777,2978.48 93.768,2978.49 C 93.762,2978.5 93.749,2978.5 93.737,2978.51 C 93.724,2978.52 93.707,2978.52 93.684,2978.52 L 93.078,2978.45 L 93.078,2978.2 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 49.172,3013.02 L 48.568,3013.49 L 109.262,3016.82 L 109.572,3016.71 C 109.675,3016.68 109.777,3016.6 109.777,3016.46 L 109.777,3016.34 L 49.172,3013.02 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 48.568,3013.49 L 48.566,2944.76 L 48.873,2944.52 L 49.172,2944.56 L 49.172,3013.02 L 48.568,3013.49 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(67.147 2951.91) rotate(90) skewX(-6.52072)' fill='%2339332f' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Crect x='-2.638' y='-2.485' width='5.277' height='4.97' transform='translate(73.611 2952.64) rotate(90) skewX(-6.5244)' fill='%23b6b6b3' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Crect x='-2.641' y='-2.486' width='5.282' height='4.973' transform='translate(80.076 2953.38) rotate(90) skewX(-6.52072)' fill='%23dcd5c6' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Crect x='-2.638' y='-2.487' width='5.277' height='4.975' transform='translate(86.542 2954.12) rotate(90) skewX(-6.48673)' fill='%23ccb7b3' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(93.007 2954.86) rotate(90) skewX(-6.52072)' fill='%23d8b590' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Cg id='Group_6' fill-rule='nonzero' stroke-linejoin='round' stroke-linecap='round' stroke-width='0.334' fill='%23000000'%3E%3Cpath d='M 69.689,2957.61 C 69.644,2957.63 69.604,2957.65 69.571,2957.68 C 69.536,2957.71 69.511,2957.75 69.492,2957.79 C 69.472,2957.84 69.461,2957.89 69.461,2957.94 L 69.461,2958.59 C 69.461,2958.64 69.472,2958.69 69.492,2958.74 C 69.511,2958.78 69.536,2958.83 69.571,2958.87 C 69.604,2958.91 69.644,2958.94 69.689,2958.96 C 69.735,2958.98 69.783,2959 69.834,2959.01 L 70.849,2959.12 L 70.849,2958.86 L 69.834,2958.76 C 69.81,2958.75 69.789,2958.74 69.77,2958.73 C 69.751,2958.72 69.737,2958.7 69.726,2958.68 C 69.715,2958.66 69.708,2958.64 69.708,2958.61 L 69.708,2958.48 L 70.6,2958.58 L 70.6,2958.33 L 69.708,2958.23 L 69.708,2957.97 C 69.708,2957.94 69.715,2957.92 69.726,2957.9 C 69.737,2957.88 69.751,2957.87 69.77,2957.86 C 69.789,2957.85 69.81,2957.85 69.834,2957.85 L 70.849,2957.96 L 70.849,2957.71 L 69.834,2957.6 C 69.783,2957.59 69.735,2957.6 69.689,2957.61 Z M 71.294,2957.8 C 71.249,2957.82 71.211,2957.84 71.174,2957.87 C 71.141,2957.9 71.112,2957.94 71.091,2957.99 C 71.077,2958.01 71.066,2958.04 71.058,2958.07 C 71.051,2958.11 71.047,2958.14 71.047,2958.18 L 71.047,2959.14 L 71.294,2959.16 L 71.294,2958.18 C 71.298,2958.15 71.309,2958.12 71.324,2958.1 C 71.341,2958.08 71.359,2958.06 71.383,2958.05 C 71.407,2958.03 71.434,2958.03 71.464,2958.03 L 72.192,2958.1 L 72.192,2957.85 L 71.488,2957.78 L 71.386,2957.78 C 71.354,2957.78 71.324,2957.79 71.294,2957.8 Z M 72.617,2957.93 C 72.573,2957.94 72.534,2957.97 72.5,2958 C 72.466,2958.03 72.439,2958.06 72.42,2958.11 C 72.401,2958.15 72.392,2958.2 72.39,2958.25 L 72.39,2958.9 C 72.392,2958.95 72.401,2959 72.42,2959.05 C 72.439,2959.1 72.466,2959.14 72.5,2959.18 C 72.534,2959.22 72.573,2959.25 72.617,2959.28 C 72.664,2959.3 72.711,2959.32 72.765,2959.32 L 73.778,2959.43 L 73.778,2959.18 L 72.765,2959.07 C 72.741,2959.07 72.719,2959.06 72.7,2959.05 C 72.682,2959.03 72.667,2959.01 72.653,2958.99 C 72.643,2958.97 72.637,2958.95 72.637,2958.93 L 72.637,2958.8 L 73.531,2958.89 L 73.531,2958.64 L 72.637,2958.55 L 72.637,2958.28 C 72.637,2958.26 72.643,2958.23 72.653,2958.22 C 72.667,2958.2 72.682,2958.19 72.7,2958.17 C 72.719,2958.17 72.741,2958.16 72.765,2958.16 L 73.778,2958.27 L 73.778,2958.02 L 72.765,2957.91 L 72.688,2957.91 C 72.664,2957.92 72.641,2957.92 72.617,2957.93 Z M 73.975,2958.04 L 73.975,2959.45 L 74.224,2959.28 L 74.671,2958.98 L 75.118,2959.38 L 75.365,2959.6 L 75.365,2958.19 L 75.118,2958.16 L 75.118,2959.06 L 74.873,2958.85 L 74.671,2958.67 L 74.468,2958.8 L 74.224,2958.97 L 74.224,2958.07 L 73.975,2958.04 Z M 75.792,2958.27 C 75.747,2958.28 75.707,2958.31 75.673,2958.34 C 75.639,2958.37 75.614,2958.4 75.595,2958.45 C 75.575,2958.49 75.564,2958.54 75.564,2958.59 L 75.564,2959.24 C 75.564,2959.29 75.575,2959.34 75.595,2959.39 C 75.614,2959.44 75.639,2959.48 75.673,2959.52 C 75.707,2959.56 75.747,2959.59 75.792,2959.62 C 75.837,2959.64 75.886,2959.66 75.936,2959.66 L 76.952,2959.77 L 76.952,2959.52 L 75.936,2959.41 C 75.913,2959.41 75.892,2959.4 75.873,2959.39 C 75.853,2959.37 75.84,2959.36 75.829,2959.34 C 75.818,2959.31 75.811,2959.29 75.811,2959.27 L 75.811,2959.14 L 76.703,2959.23 L 76.703,2958.98 L 75.811,2958.89 L 75.811,2958.62 C 75.811,2958.6 75.818,2958.58 75.829,2958.56 C 75.84,2958.54 75.853,2958.53 75.873,2958.51 C 75.892,2958.51 75.913,2958.5 75.936,2958.5 L 76.952,2958.62 L 76.952,2958.36 L 75.936,2958.25 L 75.861,2958.25 C 75.837,2958.26 75.813,2958.26 75.792,2958.27 Z M 77.15,2958.38 L 77.15,2959.79 L 77.397,2959.62 L 78.291,2959.02 L 78.291,2959.92 L 78.54,2959.94 L 78.54,2958.53 L 78.291,2958.7 L 77.397,2959.3 L 77.397,2958.41 L 77.15,2958.38 Z M 79.306,2958.61 L 79.306,2959.77 L 78.737,2959.71 L 78.737,2959.96 L 80.125,2960.11 L 80.125,2959.86 L 79.555,2959.8 L 79.555,2958.64 L 79.306,2958.61 Z M 80.592,2958.79 C 80.54,2958.8 80.495,2958.83 80.455,2958.87 C 80.414,2958.91 80.382,2958.95 80.361,2959 C 80.337,2959.05 80.326,2959.11 80.324,2959.17 L 80.573,2959.2 C 80.573,2959.16 80.582,2959.13 80.6,2959.1 C 80.616,2959.07 80.64,2959.05 80.667,2959.04 C 80.697,2959.02 80.729,2959.02 80.763,2959.02 L 81.199,2959.07 C 81.233,2959.07 81.268,2959.09 81.295,2959.11 C 81.325,2959.13 81.349,2959.15 81.365,2959.18 C 81.383,2959.22 81.391,2959.25 81.391,2959.28 C 81.391,2959.32 81.383,2959.35 81.365,2959.38 C 81.349,2959.4 81.325,2959.43 81.295,2959.44 C 81.268,2959.45 81.233,2959.46 81.199,2959.45 L 80.699,2959.4 C 80.648,2959.4 80.6,2959.4 80.557,2959.42 C 80.511,2959.43 80.471,2959.45 80.44,2959.48 C 80.42,2959.5 80.406,2959.51 80.39,2959.54 C 80.369,2959.56 80.355,2959.59 80.342,2959.63 C 80.331,2959.67 80.324,2959.7 80.324,2959.74 L 80.324,2959.75 C 80.326,2959.81 80.336,2959.86 80.355,2959.9 C 80.374,2959.95 80.401,2959.99 80.436,2960.03 C 80.469,2960.07 80.508,2960.11 80.552,2960.13 C 80.597,2960.15 80.646,2960.17 80.699,2960.17 L 81.263,2960.23 C 81.314,2960.24 81.363,2960.23 81.408,2960.22 C 81.453,2960.2 81.493,2960.18 81.527,2960.15 C 81.561,2960.12 81.589,2960.08 81.607,2960.04 C 81.627,2959.99 81.638,2959.94 81.638,2959.89 L 81.638,2959.89 L 81.389,2959.86 L 81.389,2959.87 C 81.389,2959.89 81.383,2959.91 81.372,2959.93 C 81.361,2959.95 81.344,2959.96 81.327,2959.97 C 81.308,2959.98 81.287,2959.98 81.263,2959.98 L 80.699,2959.92 C 80.675,2959.92 80.654,2959.91 80.635,2959.9 C 80.616,2959.88 80.602,2959.86 80.589,2959.84 C 80.578,2959.82 80.571,2959.8 80.571,2959.78 L 80.571,2959.77 C 80.571,2959.74 80.578,2959.72 80.589,2959.71 C 80.602,2959.69 80.616,2959.68 80.635,2959.67 C 80.654,2959.66 80.675,2959.65 80.699,2959.65 L 81.199,2959.71 L 81.291,2959.71 C 81.321,2959.7 81.35,2959.7 81.378,2959.69 C 81.433,2959.67 81.482,2959.64 81.523,2959.6 C 81.524,2959.59 81.527,2959.59 81.529,2959.59 C 81.534,2959.59 81.536,2959.58 81.537,2959.58 C 81.57,2959.55 81.593,2959.5 81.61,2959.46 C 81.629,2959.41 81.638,2959.36 81.638,2959.31 C 81.638,2959.25 81.625,2959.19 81.604,2959.13 C 81.58,2959.08 81.548,2959.03 81.508,2958.98 C 81.469,2958.94 81.423,2958.9 81.37,2958.87 C 81.316,2958.84 81.259,2958.82 81.199,2958.82 L 80.763,2958.77 C 80.704,2958.76 80.646,2958.77 80.592,2958.79 Z M 83.072,2959.05 C 83.018,2959.07 82.972,2959.1 82.933,2959.13 C 82.893,2959.17 82.861,2959.21 82.838,2959.26 C 82.817,2959.32 82.804,2959.37 82.804,2959.44 L 83.053,2959.46 C 83.053,2959.43 83.061,2959.39 83.078,2959.37 C 83.096,2959.34 83.119,2959.32 83.146,2959.31 C 83.177,2959.29 83.208,2959.28 83.242,2959.29 L 83.679,2959.34 C 83.713,2959.34 83.744,2959.35 83.774,2959.37 C 83.804,2959.39 83.825,2959.42 83.844,2959.45 C 83.861,2959.48 83.869,2959.51 83.869,2959.55 C 83.869,2959.59 83.861,2959.62 83.844,2959.65 C 83.825,2959.67 83.804,2959.69 83.774,2959.71 C 83.744,2959.72 83.713,2959.72 83.679,2959.72 L 83.178,2959.67 C 83.127,2959.67 83.078,2959.67 83.036,2959.68 C 82.992,2959.7 82.951,2959.72 82.916,2959.75 C 82.899,2959.76 82.884,2959.78 82.87,2959.8 C 82.849,2959.83 82.833,2959.86 82.82,2959.9 C 82.81,2959.93 82.804,2959.97 82.804,2960.01 L 82.804,2960.02 C 82.804,2960.07 82.814,2960.12 82.833,2960.17 C 82.852,2960.22 82.88,2960.26 82.914,2960.3 C 82.949,2960.34 82.986,2960.37 83.032,2960.39 C 83.076,2960.42 83.125,2960.43 83.178,2960.44 L 83.74,2960.5 C 83.793,2960.5 83.842,2960.5 83.887,2960.48 C 83.931,2960.47 83.971,2960.45 84.006,2960.42 C 84.04,2960.39 84.068,2960.35 84.087,2960.3 C 84.106,2960.26 84.116,2960.21 84.116,2960.16 L 84.116,2960.15 L 83.867,2960.12 L 83.867,2960.13 C 83.867,2960.16 83.861,2960.18 83.851,2960.19 C 83.84,2960.21 83.823,2960.23 83.804,2960.24 C 83.784,2960.24 83.763,2960.25 83.74,2960.24 L 83.178,2960.19 C 83.155,2960.18 83.133,2960.18 83.115,2960.16 C 83.096,2960.15 83.078,2960.13 83.067,2960.11 C 83.057,2960.09 83.05,2960.07 83.05,2960.04 L 83.05,2960.03 C 83.05,2960.01 83.057,2959.99 83.067,2959.97 C 83.078,2959.95 83.096,2959.94 83.115,2959.93 C 83.133,2959.92 83.155,2959.92 83.178,2959.92 L 83.679,2959.97 L 83.77,2959.97 C 83.8,2959.97 83.829,2959.96 83.857,2959.95 C 83.912,2959.93 83.961,2959.9 84.002,2959.86 C 84.004,2959.86 84.006,2959.86 84.008,2959.86 C 84.01,2959.85 84.014,2959.85 84.017,2959.85 C 84.049,2959.81 84.072,2959.77 84.089,2959.72 C 84.106,2959.68 84.116,2959.63 84.116,2959.57 C 84.114,2959.51 84.104,2959.45 84.08,2959.4 C 84.059,2959.35 84.028,2959.29 83.987,2959.25 C 83.947,2959.2 83.902,2959.17 83.848,2959.14 C 83.795,2959.11 83.738,2959.09 83.679,2959.09 L 83.242,2959.04 C 83.182,2959.03 83.125,2959.04 83.072,2959.05 Z M 84.544,2959.21 C 84.5,2959.22 84.461,2959.24 84.427,2959.28 C 84.393,2959.31 84.366,2959.35 84.346,2959.39 C 84.327,2959.43 84.317,2959.48 84.317,2959.53 L 84.317,2960.18 C 84.317,2960.23 84.327,2960.28 84.346,2960.33 C 84.366,2960.38 84.393,2960.42 84.427,2960.46 C 84.461,2960.5 84.5,2960.53 84.544,2960.56 C 84.589,2960.58 84.637,2960.6 84.691,2960.6 L 85.704,2960.71 L 85.704,2960.46 L 84.691,2960.35 C 84.668,2960.35 84.646,2960.34 84.627,2960.33 C 84.608,2960.31 84.591,2960.3 84.581,2960.27 C 84.57,2960.26 84.564,2960.23 84.564,2960.21 L 84.564,2960.08 L 85.457,2960.18 L 85.457,2959.92 L 84.564,2959.83 L 84.564,2959.56 C 84.564,2959.54 84.57,2959.51 84.581,2959.5 C 84.591,2959.48 84.608,2959.46 84.627,2959.45 C 84.646,2959.45 84.668,2959.44 84.691,2959.45 L 85.704,2959.55 L 85.704,2959.3 L 84.691,2959.19 C 84.637,2959.19 84.589,2959.19 84.544,2959.21 Z M 85.9,2959.32 L 85.9,2960.73 L 86.777,2960.82 C 86.83,2960.83 86.879,2960.82 86.923,2960.81 C 86.967,2960.79 87.006,2960.77 87.04,2960.74 C 87.075,2960.71 87.102,2960.67 87.121,2960.63 C 87.14,2960.58 87.15,2960.54 87.15,2960.48 C 87.15,2960.43 87.14,2960.38 87.123,2960.34 C 87.104,2960.29 87.079,2960.25 87.046,2960.21 C 87.013,2960.17 86.975,2960.14 86.932,2960.11 C 86.898,2960.09 86.863,2960.08 86.825,2960.07 L 87.023,2959.69 L 87.15,2959.45 L 86.872,2959.42 L 86.745,2959.66 L 86.613,2959.91 L 86.606,2959.92 C 86.585,2959.96 86.555,2959.98 86.519,2960 C 86.483,2960.02 86.442,2960.02 86.396,2960.02 L 86.149,2959.99 L 86.149,2959.35 L 85.9,2959.32 Z M 87.349,2959.48 L 87.349,2960.89 L 87.598,2960.92 L 87.598,2959.51 L 87.349,2959.48 Z M 88.025,2959.58 C 87.981,2959.6 87.941,2959.62 87.907,2959.65 C 87.872,2959.68 87.847,2959.72 87.827,2959.76 C 87.808,2959.81 87.798,2959.85 87.798,2959.91 L 87.798,2960.55 C 87.798,2960.61 87.808,2960.66 87.827,2960.7 C 87.847,2960.75 87.872,2960.8 87.907,2960.84 C 87.941,2960.88 87.981,2960.91 88.025,2960.93 C 88.07,2960.96 88.119,2960.97 88.17,2960.97 L 89.185,2961.09 L 89.185,2960.83 L 88.17,2960.72 C 88.147,2960.72 88.126,2960.71 88.106,2960.7 C 88.087,2960.68 88.072,2960.67 88.062,2960.65 C 88.049,2960.63 88.045,2960.6 88.043,2960.58 L 88.043,2960.45 L 88.936,2960.55 L 88.936,2960.3 L 88.043,2960.2 L 88.043,2959.93 C 88.045,2959.91 88.049,2959.89 88.062,2959.87 C 88.072,2959.85 88.087,2959.84 88.106,2959.83 C 88.126,2959.82 88.147,2959.82 88.17,2959.82 L 89.185,2959.93 L 89.185,2959.68 L 88.17,2959.57 C 88.119,2959.56 88.07,2959.57 88.025,2959.58 Z M 89.652,2959.76 C 89.6,2959.78 89.553,2959.81 89.513,2959.84 C 89.472,2959.88 89.44,2959.92 89.419,2959.97 C 89.396,2960.02 89.386,2960.08 89.386,2960.14 L 89.632,2960.17 C 89.632,2960.13 89.641,2960.1 89.657,2960.07 C 89.675,2960.05 89.698,2960.03 89.727,2960.01 C 89.756,2960 89.787,2959.99 89.824,2960 L 90.258,2960.04 C 90.294,2960.05 90.326,2960.06 90.353,2960.08 C 90.383,2960.1 90.406,2960.13 90.423,2960.16 C 90.441,2960.19 90.449,2960.22 90.449,2960.26 C 90.449,2960.29 90.441,2960.33 90.423,2960.35 C 90.406,2960.38 90.383,2960.4 90.353,2960.41 C 90.326,2960.43 90.294,2960.43 90.258,2960.43 L 89.758,2960.38 C 89.706,2960.37 89.66,2960.38 89.615,2960.39 C 89.571,2960.4 89.532,2960.43 89.498,2960.45 C 89.479,2960.47 89.464,2960.49 89.449,2960.51 C 89.43,2960.54 89.413,2960.57 89.402,2960.6 C 89.389,2960.64 89.386,2960.68 89.386,2960.72 L 89.386,2960.72 C 89.386,2960.78 89.394,2960.83 89.413,2960.88 C 89.432,2960.92 89.459,2960.97 89.494,2961.01 C 89.528,2961.05 89.566,2961.07 89.613,2961.1 C 89.657,2961.13 89.706,2961.14 89.758,2961.14 L 90.321,2961.21 C 90.373,2961.21 90.422,2961.21 90.466,2961.19 C 90.511,2961.18 90.551,2961.16 90.586,2961.12 C 90.62,2961.09 90.647,2961.05 90.667,2961.01 C 90.686,2960.97 90.696,2960.92 90.696,2960.87 L 90.696,2960.86 L 90.447,2960.83 L 90.447,2960.84 C 90.447,2960.86 90.443,2960.88 90.43,2960.9 C 90.42,2960.92 90.404,2960.93 90.385,2960.94 C 90.366,2960.95 90.345,2960.96 90.321,2960.95 L 89.758,2960.89 C 89.735,2960.89 89.713,2960.88 89.694,2960.87 C 89.675,2960.86 89.66,2960.84 89.647,2960.82 C 89.636,2960.8 89.631,2960.77 89.631,2960.75 L 89.631,2960.74 C 89.631,2960.72 89.636,2960.7 89.647,2960.68 C 89.66,2960.66 89.675,2960.65 89.694,2960.64 C 89.713,2960.63 89.735,2960.62 89.758,2960.63 L 90.258,2960.68 C 90.321,2960.69 90.383,2960.68 90.439,2960.66 C 90.493,2960.64 90.541,2960.61 90.581,2960.57 C 90.584,2960.57 90.587,2960.57 90.589,2960.56 C 90.592,2960.56 90.594,2960.56 90.596,2960.56 C 90.628,2960.52 90.651,2960.48 90.67,2960.43 C 90.688,2960.39 90.696,2960.34 90.696,2960.28 C 90.696,2960.22 90.683,2960.16 90.662,2960.11 C 90.639,2960.05 90.607,2960 90.568,2959.96 C 90.527,2959.91 90.481,2959.87 90.428,2959.85 C 90.375,2959.82 90.319,2959.8 90.258,2959.79 L 89.824,2959.74 C 89.762,2959.74 89.704,2959.74 89.652,2959.76 Z M 86.149,2960.24 L 86.777,2960.31 C 86.788,2960.31 86.796,2960.32 86.804,2960.32 C 86.812,2960.32 86.821,2960.33 86.83,2960.33 C 86.853,2960.35 86.87,2960.36 86.882,2960.39 C 86.898,2960.4 86.904,2960.43 86.904,2960.45 C 86.904,2960.48 86.9,2960.5 86.892,2960.51 C 86.882,2960.53 86.874,2960.54 86.866,2960.55 C 86.859,2960.55 86.847,2960.56 86.832,2960.56 C 86.823,2960.57 86.814,2960.57 86.806,2960.57 L 86.777,2960.57 L 86.149,2960.5 L 86.149,2960.24 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 77.322,2979.18 L 77.322,2981.24 L 77.688,2981 L 78.345,2980.55 L 79.003,2981.13 L 79.367,2981.45 L 79.367,2979.38 L 79.003,2979.35 L 79.003,2980.66 L 78.644,2980.35 L 78.345,2980.09 L 78.048,2980.29 L 77.688,2980.53 L 77.688,2979.21 L 77.322,2979.18 Z M 79.66,2979.41 L 79.66,2981.48 L 80.027,2981.52 L 80.027,2979.45 L 79.66,2979.41 Z M 80.32,2979.48 L 80.32,2981.54 L 80.685,2981.29 L 82.001,2980.4 L 82.001,2981.72 L 82.365,2981.75 L 82.365,2979.69 L 82.001,2979.93 L 80.685,2980.82 L 80.685,2979.52 L 80.32,2979.48 Z M 82.659,2979.72 L 82.659,2981.78 L 83.025,2981.82 L 83.025,2979.76 L 82.659,2979.72 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.KAZE_LIGHT_individuals {
  width: 100%;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.KAZE_LIGHT_individuals--VARIETY_BUNDLE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='117.047pt' height='116.655pt' viewBox='14.757 -3355.14 117.047 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='58.604' y2='0' gradientTransform='translate(28.502 3295.43) rotate(33.6879) skewX(12.5617)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23f4f4f4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='76.512' y2='0' gradientTransform='translate(125.417 3281.48) rotate(-170.864) skewX(5.35446)'%3E%3Cstop offset='0' stop-color='%23e7e7e7'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='3.042' y2='0' gradientTransform='translate(16.446 3300.33) rotate(4.61822) skewX(2.75461)'%3E%3Cstop offset='0' stop-color='%23f0f0f0'/%3E%3Cstop offset='1' stop-color='%23e5e5e5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.613' y2='0' gradientTransform='translate(100.161 3291.28) rotate(90) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23ececec'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.412' y2='0' gradientTransform='translate(19.294 3309.75) rotate(15.0478) skewX(6.00835) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23e6e6e6'/%3E%3Cstop offset='1' stop-color='%23d3d3d3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.891' y2='0' gradientTransform='translate(121.16 3310.1) rotate(-137.955) skewX(14.2506) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23ebebeb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_6' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.299' y2='0' gradientTransform='translate(130.042 3278.51) rotate(170.789) skewX(-3.57412)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23d5d5d5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_7' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.358' y2='0' gradientTransform='translate(20.539 3281.03) rotate(-5.91709) skewX(-2.2571)'%3E%3Cstop offset='0' stop-color='%23c9c9c9'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(73.281 3296.81) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cpath d='M 20.712,3292.12 L 15.984,3324.58 L 115.203,3323.45 L 131.402,3293.1 L 131.476,3292.97 C 131.599,3292.72 131.685,3292.43 131.735,3292.12 L 20.712,3292.12 Z' stroke-width='0.343' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cg id='Group_1' fill='%23000000' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.213'%3E%3Cg id='Group_2'%3E%3Cpath d='M 65.94,3307.59 L 64.831,3307.6 L 62.52,3308.98 L 61.519,3308.32 L 61.814,3307.61 L 60.91,3307.61 L 59.737,3310.47 L 60.63,3310.47 L 61.234,3309.01 L 61.81,3309.39 L 62.334,3309.74 L 63.42,3310.45 L 64.737,3310.45 L 63.037,3309.32 L 65.94,3307.59 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 71.376,3307.57 L 70.369,3307.57 L 69.679,3308.09 L 68.046,3309.32 L 67.488,3308.1 L 67.249,3307.59 L 66.243,3307.59 L 66.483,3308.11 L 67.557,3310.43 L 70.688,3308.09 L 71.376,3307.57 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 76.838,3307.55 L 72.966,3307.57 L 72.958,3307.57 L 71.825,3307.57 L 71.833,3307.57 L 72.287,3308.08 L 73.101,3308.99 L 73.472,3309.4 L 73.923,3309.9 L 70.757,3309.91 L 70.531,3310.42 L 74.369,3310.4 L 75.482,3310.39 L 75.033,3309.89 L 74.223,3308.98 L 73.849,3308.57 L 73.404,3308.08 L 76.598,3308.06 L 76.838,3307.55 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 82.529,3307.53 L 78.888,3307.54 C 78.695,3307.54 78.512,3307.56 78.33,3307.6 C 78.147,3307.64 77.98,3307.7 77.825,3307.77 C 77.669,3307.84 77.531,3307.92 77.424,3308.02 C 77.311,3308.11 77.226,3308.21 77.177,3308.32 L 76.557,3309.63 C 76.506,3309.73 76.494,3309.83 76.52,3309.92 C 76.546,3310.01 76.601,3310.1 76.691,3310.17 C 76.778,3310.23 76.89,3310.29 77.036,3310.33 C 77.177,3310.36 77.343,3310.38 77.531,3310.38 L 81.138,3310.36 L 81.384,3309.86 L 77.77,3309.88 C 77.682,3309.88 77.613,3309.87 77.555,3309.85 C 77.503,3309.82 77.458,3309.79 77.437,3309.75 C 77.416,3309.71 77.416,3309.67 77.437,3309.62 L 77.559,3309.36 L 80.754,3309.34 L 81.001,3308.84 L 77.797,3308.85 L 78.054,3308.32 C 78.082,3308.27 78.13,3308.22 78.181,3308.18 C 78.241,3308.14 78.314,3308.11 78.393,3308.09 C 78.474,3308.07 78.552,3308.05 78.642,3308.05 L 82.276,3308.04 L 82.529,3307.53 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 19.451,3269.04 L 20.704,3292.12 L 131.735,3292.12 C 131.833,3291.54 131.823,3290.86 131.724,3290.1 L 131.495,3287.83 L 129.598,3269.04 L 19.451,3269.04 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 19.099,3269.04 L 14.757,3299.42 L 15.984,3324.58 L 20.721,3292.12 L 19.453,3269.04 L 19.099,3269.04 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 20.674,3291.54 L 20.704,3292.12 L 131.735,3292.12 C 131.767,3291.94 131.789,3291.75 131.798,3291.54 L 20.674,3291.54 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill='%23000000' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.059'%3E%3Cg id='Group_4'%3E%3Cpath d='M 72.679,3270.93 L 72.679,3272.65 L 72.983,3272.65 L 72.983,3271.77 L 73.24,3272 L 73.466,3272.21 L 73.947,3272.65 L 74.4,3272.65 L 73.646,3271.96 L 74.392,3270.93 L 74.014,3270.93 L 73.42,3271.75 L 72.983,3271.35 L 72.983,3270.93 L 72.679,3270.93 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 74.495,3270.93 L 74.655,3271.24 L 75.375,3272.65 L 76.096,3271.24 L 76.252,3270.93 L 75.907,3270.93 L 75.749,3271.24 L 75.375,3271.97 L 75,3271.24 L 74.84,3270.93 L 74.495,3270.93 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 76.406,3270.93 L 76.641,3271.24 L 77.065,3271.78 L 77.26,3272.03 L 77.494,3272.34 L 76.403,3272.34 L 76.403,3272.65 L 78.118,3272.65 L 77.878,3272.34 L 77.452,3271.78 L 77.26,3271.53 L 77.027,3271.24 L 78.127,3271.24 L 78.127,3270.93 L 76.406,3270.93 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 78.647,3270.96 C 78.597,3270.99 78.544,3271.02 78.5,3271.06 C 78.457,3271.11 78.426,3271.15 78.403,3271.21 C 78.381,3271.27 78.365,3271.33 78.365,3271.39 L 78.365,3272.18 C 78.365,3272.24 78.381,3272.31 78.403,3272.36 C 78.426,3272.42 78.457,3272.47 78.5,3272.51 C 78.544,3272.55 78.597,3272.59 78.647,3272.61 C 78.703,3272.63 78.767,3272.65 78.828,3272.65 L 80.085,3272.65 L 80.085,3272.34 L 78.828,3272.34 C 78.799,3272.34 78.772,3272.33 78.749,3272.32 C 78.725,3272.3 78.708,3272.28 78.695,3272.26 C 78.678,3272.24 78.671,3272.21 78.671,3272.18 L 78.671,3272.02 L 79.778,3272.02 L 79.778,3271.72 L 78.671,3271.72 L 78.671,3271.39 C 78.671,3271.36 78.678,3271.33 78.695,3271.31 C 78.708,3271.29 78.725,3271.27 78.749,3271.26 C 78.772,3271.24 78.799,3271.24 78.828,3271.24 L 80.085,3271.24 L 80.085,3270.93 L 78.828,3270.93 C 78.767,3270.93 78.703,3270.94 78.647,3270.96 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 21.771,3292.12 L 16.838,3324.58 L 17.184,3324.57 L 22.23,3292.12 L 21.771,3292.12 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 130.012,3292.1 L 113.426,3323.47 L 113.999,3323.46 L 130.776,3292.12 L 130.012,3292.1 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 128.695,3269.04 L 130.963,3291.54 L 131.407,3291.54 L 129.182,3269.04 L 128.695,3269.04 Z' stroke-width='0.189' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_6)'/%3E%3Cpath d='M 19.859,3269.04 L 21.137,3291.55 L 21.584,3291.55 L 20.346,3269.04 L 19.859,3269.04 Z' stroke-width='0.189' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_7)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_LIGHT_individuals--MONO {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='637.998 -3194.63 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='29.519' y2='82.215' gradientTransform='translate(692.559 3107.07)'%3E%3Cstop offset='0' stop-color='%23ddceca'/%3E%3Cstop offset='1' stop-color='%23f0eae4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-5.044' y2='47.162' gradientTransform='translate(679.229 3109.39)'%3E%3Cstop offset='0' stop-color='%23b8afad'/%3E%3Cstop offset='1' stop-color='%23e3d8d6'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.616' y2='0' gradientTransform='translate(681.895 3143.77) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23beb5b3'/%3E%3Cstop offset='1' stop-color='%23c5bcb9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.051' y2='8.082' gradientTransform='translate(694.444 3182.74)'%3E%3Cstop offset='0' stop-color='%23cbc1bf'/%3E%3Cstop offset='1' stop-color='%23d8cecb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.039' y2='-0.616' gradientTransform='translate(723.866 3189.39) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c7bebb'/%3E%3Cstop offset='1' stop-color='%23ccc2c0'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.446' y2='-0.865' gradientTransform='translate(674.93 3190.09)'%3E%3Cstop offset='0' stop-color='%23a59d9b'/%3E%3Cstop offset='1' stop-color='%23c4bbb8'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 681.585,3077.98 L 681.585,3186.44 L 722.078,3189.04 L 722.078,3083.47 L 681.585,3077.98 Z' stroke-width='8.676' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 681.585,3077.98 L 670.588,3088.66 L 670.588,3171.62 C 670.588,3171.9 670.583,3172.19 670.574,3172.47 L 670.576,3172.47 L 670.585,3172.46 L 670.588,3191.62 C 670.588,3191.9 670.583,3192.19 670.574,3192.47 L 670.576,3192.47 L 681.585,3186.44 L 681.585,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 681.585,3077.98 L 681.256,3078.3 L 681.256,3186.63 L 681.912,3186.02 L 681.912,3078.03 L 681.585,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cg id='Group_1' fill='%23000000' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='3.14'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 689.474,3133.62 L 689.468,3139.78 L 690.486,3139.89 L 690.491,3136.74 L 691.332,3137.65 L 692.088,3138.47 L 693.677,3140.21 L 695.187,3140.37 L 692.693,3137.64 L 695.171,3134.2 L 693.913,3134.07 L 691.936,3136.81 L 690.493,3135.24 L 690.493,3133.72 L 689.474,3133.62 Z M 695.69,3134.25 L 696.214,3135.4 L 698.596,3140.71 L 700.994,3135.89 L 701.513,3134.84 L 700.375,3134.73 L 699.849,3135.77 L 698.598,3138.29 L 697.355,3135.52 L 696.831,3134.37 L 695.69,3134.25 Z M 702.028,3134.89 L 702.04,3134.9 L 702.819,3136.07 L 704.219,3138.19 L 704.867,3139.15 L 705.644,3140.33 L 702.017,3139.96 L 702.014,3141.06 L 706.428,3141.51 L 707.706,3141.64 L 706.918,3140.46 L 705.499,3138.32 L 704.86,3137.35 L 704.09,3136.21 L 707.738,3136.57 L 707.741,3135.47 L 703.325,3135.03 L 703.315,3135.03 L 702.028,3134.89 Z M 709.474,3135.78 C 709.29,3135.85 709.124,3135.95 708.989,3136.09 C 708.844,3136.22 708.736,3136.39 708.658,3136.59 C 708.58,3136.78 708.54,3136.99 708.538,3137.22 L 708.531,3140.06 C 708.531,3140.29 708.57,3140.51 708.651,3140.72 C 708.729,3140.93 708.835,3141.11 708.982,3141.28 C 709.117,3141.45 709.283,3141.58 709.467,3141.69 C 709.653,3141.79 709.853,3141.86 710.065,3141.88 L 714.232,3142.3 L 714.232,3141.2 L 710.065,3140.78 C 709.966,3140.76 709.883,3140.73 709.803,3140.68 C 709.724,3140.62 709.665,3140.54 709.616,3140.45 C 709.568,3140.37 709.547,3140.27 709.547,3140.16 L 709.547,3139.59 L 713.216,3139.96 L 713.218,3138.86 L 709.547,3138.49 L 709.547,3137.32 C 709.547,3137.22 709.573,3137.13 709.619,3137.05 C 709.669,3136.97 709.729,3136.91 709.807,3136.86 C 709.888,3136.82 709.97,3136.81 710.069,3136.81 L 714.237,3137.24 L 714.239,3136.14 L 710.069,3135.71 C 709.86,3135.69 709.662,3135.71 709.474,3135.78 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' fill='%23000000' fill-rule='nonzero'%3E%3Cg id='Group_5'%3E%3Cpath d='M 698.267,3130.63 C 698.226,3130.63 698.185,3130.64 698.145,3130.66 C 698.09,3130.68 698.04,3130.71 697.996,3130.75 C 697.95,3130.79 697.916,3130.84 697.888,3130.89 C 697.87,3130.93 697.853,3130.97 697.844,3131.01 C 697.835,3131.05 697.831,3131.1 697.828,3131.14 L 697.828,3132.37 L 698.148,3132.41 L 698.148,3131.14 C 698.155,3131.11 698.166,3131.07 698.187,3131.04 C 698.208,3131.01 698.233,3130.99 698.263,3130.97 C 698.295,3130.96 698.329,3130.95 698.366,3130.95 L 699.304,3131.04 L 699.304,3130.72 L 698.396,3130.62 C 698.352,3130.62 698.309,3130.62 698.267,3130.63 Z M 699.559,3130.74 L 699.559,3132.55 L 699.879,3132.59 L 699.879,3130.78 L 699.559,3130.74 Z M 700.683,3130.93 C 700.575,3130.97 700.481,3131.02 700.398,3131.1 C 700.318,3131.17 700.253,3131.26 700.207,3131.36 C 700.161,3131.47 700.138,3131.58 700.136,3131.71 C 700.138,3131.83 700.161,3131.95 700.207,3132.07 C 700.253,3132.18 700.318,3132.28 700.398,3132.37 C 700.481,3132.47 700.575,3132.54 700.683,3132.6 C 700.791,3132.66 700.906,3132.69 701.03,3132.7 L 701.927,3132.8 L 701.927,3132.47 L 701.03,3132.38 C 700.952,3132.37 700.876,3132.35 700.807,3132.31 C 700.738,3132.28 700.676,3132.23 700.626,3132.17 C 700.573,3132.11 700.532,3132.05 700.502,3131.97 C 700.472,3131.9 700.456,3131.82 700.456,3131.74 C 700.456,3131.66 700.472,3131.59 700.502,3131.52 C 700.532,3131.45 700.573,3131.4 700.626,3131.35 C 700.676,3131.3 700.738,3131.26 700.807,3131.24 C 700.876,3131.22 700.952,3131.21 701.03,3131.22 L 701.607,3131.28 L 701.607,3131.63 L 701.03,3131.57 L 701.03,3131.89 L 701.927,3131.98 L 701.927,3130.99 L 701.03,3130.9 L 700.849,3130.9 C 700.791,3130.9 700.736,3130.91 700.683,3130.93 Z M 702.18,3131.02 L 702.18,3132.83 L 702.499,3132.86 L 702.499,3132.2 L 703.651,3132.32 L 703.651,3132.98 L 703.971,3133.01 L 703.971,3131.2 L 703.651,3131.17 L 703.651,3132 L 702.499,3131.88 L 702.499,3131.05 L 702.18,3131.02 Z M 704.959,3131.3 L 704.959,3132.79 L 704.226,3132.71 L 704.226,3133.04 L 706.012,3133.22 L 706.012,3132.9 L 705.279,3132.82 L 705.279,3131.34 L 704.959,3131.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 681.585,3186.44 L 670.581,3192.47 L 709.651,3194.63 L 722.078,3189.35 L 722.078,3189.04 L 681.585,3186.44 Z' stroke-width='1.11' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 681.912,3186.02 L 681.256,3186.63 L 722.078,3189.29 L 722.078,3188.63 L 681.912,3186.02 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 681.256,3185.43 L 670.585,3191.4 L 670.588,3191.62 C 670.588,3191.9 670.583,3192.19 670.574,3192.47 L 681.256,3186.62 L 681.256,3185.43 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Ctext xml:space='preserve' transform='translate(693.057 3105.78) scale(1 -1)' kerning='auto' stroke-linecap='round' stroke-linejoin='round' fill='%23000000' font-family='DIN Pro Medium' stroke-width='0.046' font-size='1.833'/%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.214'%3E%3Crect x='-2.276' y='-2.143' width='4.552' height='4.287' transform='translate(699.046 3096.72) rotate(90) skewX(-7.19943)' fill='%23000000'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(704.62 3097.42) rotate(90) skewX(-7.19473)' fill='%23ffffff'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.046' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 696.159,3100.97 L 696.131,3102.28 L 696.328,3102.3 L 696.723,3101.54 L 697.077,3102.4 L 697.273,3102.42 L 697.3,3101.11 L 697.104,3101.09 L 697.086,3101.96 L 696.801,3101.29 L 696.655,3101.27 L 696.337,3101.87 L 696.355,3100.99 L 696.159,3100.97 Z M 697.866,3101.21 C 697.81,3101.22 697.761,3101.25 697.718,3101.29 C 697.686,3101.31 697.661,3101.34 697.642,3101.38 C 697.623,3101.41 697.61,3101.45 697.601,3101.49 C 697.592,3101.53 697.586,3101.57 697.583,3101.62 C 697.579,3101.68 697.577,3101.74 697.576,3101.8 C 697.575,3101.87 697.574,3101.93 697.575,3101.99 C 697.576,3102.04 697.58,3102.09 697.587,3102.13 C 697.594,3102.17 697.607,3102.21 697.624,3102.25 C 697.641,3102.28 697.665,3102.32 697.696,3102.36 C 697.737,3102.4 697.784,3102.44 697.839,3102.47 C 697.894,3102.5 697.957,3102.52 698.028,3102.53 C 698.098,3102.54 698.161,3102.53 698.217,3102.52 C 698.273,3102.5 698.322,3102.48 698.365,3102.44 C 698.397,3102.41 698.422,3102.38 698.441,3102.35 C 698.459,3102.32 698.473,3102.28 698.482,3102.24 C 698.491,3102.2 698.497,3102.16 698.5,3102.1 C 698.503,3102.05 698.505,3101.99 698.507,3101.92 C 698.508,3101.85 698.509,3101.79 698.508,3101.74 C 698.507,3101.69 698.503,3101.64 698.495,3101.6 C 698.488,3101.56 698.476,3101.52 698.459,3101.48 C 698.442,3101.44 698.418,3101.41 698.387,3101.37 C 698.346,3101.32 698.298,3101.28 698.244,3101.26 C 698.189,3101.22 698.126,3101.21 698.055,3101.2 C 697.985,3101.19 697.921,3101.19 697.866,3101.21 Z M 698.812,3101.3 L 698.784,3102.62 L 698.964,3102.64 L 699.582,3101.79 L 699.562,3102.71 L 699.758,3102.74 L 699.786,3101.43 L 699.606,3101.4 L 698.988,3102.25 L 699.008,3101.33 L 698.812,3101.3 Z M 698.052,3101.37 C 698.091,3101.38 698.126,3101.39 698.158,3101.41 C 698.19,3101.43 698.218,3101.45 698.243,3101.48 C 698.258,3101.5 698.271,3101.52 698.281,3101.54 C 698.291,3101.56 698.298,3101.59 698.302,3101.62 C 698.307,3101.65 698.31,3101.69 698.311,3101.73 C 698.312,3101.78 698.312,3101.83 698.31,3101.9 C 698.309,3101.96 698.307,3102.02 698.304,3102.06 C 698.301,3102.11 698.297,3102.14 698.291,3102.17 C 698.285,3102.2 698.277,3102.23 698.266,3102.25 C 698.256,3102.26 698.242,3102.28 698.226,3102.3 C 698.2,3102.32 698.172,3102.34 698.139,3102.35 C 698.106,3102.36 698.07,3102.36 698.031,3102.35 C 697.992,3102.35 697.956,3102.34 697.924,3102.32 C 697.892,3102.3 697.864,3102.28 697.84,3102.25 C 697.825,3102.23 697.812,3102.21 697.803,3102.19 C 697.793,3102.16 697.786,3102.14 697.781,3102.11 C 697.776,3102.08 697.773,3102.04 697.772,3101.99 C 697.771,3101.95 697.771,3101.89 697.772,3101.83 C 697.774,3101.76 697.776,3101.71 697.779,3101.67 C 697.782,3101.62 697.786,3101.59 697.792,3101.56 C 697.799,3101.53 697.807,3101.5 697.817,3101.48 C 697.828,3101.46 697.841,3101.45 697.857,3101.43 C 697.882,3101.41 697.911,3101.39 697.944,3101.38 C 697.977,3101.37 698.012,3101.37 698.052,3101.37 Z M 700.354,3101.52 C 700.298,3101.54 700.249,3101.56 700.206,3101.6 C 700.174,3101.63 700.149,3101.66 700.13,3101.69 C 700.111,3101.72 700.098,3101.76 700.089,3101.8 C 700.08,3101.84 700.074,3101.89 700.071,3101.94 C 700.068,3101.99 700.065,3102.05 700.064,3102.12 C 700.063,3102.19 700.062,3102.25 700.063,3102.3 C 700.064,3102.35 700.068,3102.4 700.075,3102.44 C 700.083,3102.49 700.095,3102.53 700.112,3102.56 C 700.129,3102.6 700.153,3102.64 700.184,3102.67 C 700.225,3102.72 700.273,3102.76 700.327,3102.79 C 700.382,3102.82 700.445,3102.84 700.516,3102.85 C 700.586,3102.85 700.65,3102.85 700.705,3102.84 C 700.761,3102.82 700.81,3102.79 700.853,3102.76 C 700.885,3102.73 700.91,3102.7 700.929,3102.67 C 700.948,3102.63 700.961,3102.6 700.97,3102.56 C 700.979,3102.52 700.985,3102.47 700.988,3102.42 C 700.991,3102.37 700.994,3102.31 700.995,3102.24 C 700.996,3102.17 700.997,3102.11 700.996,3102.06 C 700.995,3102 700.991,3101.96 700.984,3101.91 C 700.976,3101.87 700.964,3101.83 700.947,3101.8 C 700.93,3101.76 700.906,3101.72 700.875,3101.69 C 700.834,3101.64 700.786,3101.6 700.732,3101.57 C 700.677,3101.54 700.614,3101.52 700.543,3101.51 C 700.473,3101.5 700.409,3101.51 700.354,3101.52 Z M 700.54,3101.69 C 700.579,3101.69 700.614,3101.7 700.646,3101.72 C 700.679,3101.74 700.707,3101.77 700.731,3101.8 C 700.747,3101.81 700.759,3101.83 700.769,3101.86 C 700.779,3101.88 700.786,3101.91 700.791,3101.93 C 700.795,3101.97 700.798,3102 700.799,3102.05 C 700.8,3102.09 700.8,3102.15 700.798,3102.21 C 700.797,3102.28 700.795,3102.33 700.792,3102.38 C 700.79,3102.42 700.785,3102.46 700.779,3102.49 C 700.773,3102.52 700.765,3102.54 700.754,3102.56 C 700.744,3102.58 700.73,3102.6 700.714,3102.61 C 700.688,3102.64 700.66,3102.65 700.627,3102.66 C 700.594,3102.67 700.558,3102.67 700.519,3102.67 C 700.48,3102.66 700.445,3102.65 700.413,3102.63 C 700.38,3102.62 700.352,3102.59 700.328,3102.56 C 700.313,3102.54 700.3,3102.52 700.291,3102.5 C 700.281,3102.48 700.274,3102.45 700.269,3102.42 C 700.264,3102.39 700.261,3102.35 700.26,3102.31 C 700.259,3102.26 700.259,3102.21 700.26,3102.14 C 700.262,3102.08 700.264,3102.03 700.267,3101.98 C 700.27,3101.94 700.274,3101.9 700.281,3101.87 C 700.287,3101.84 700.295,3101.82 700.305,3101.8 C 700.316,3101.78 700.329,3101.76 700.345,3101.75 C 700.37,3101.72 700.399,3101.71 700.432,3101.7 C 700.465,3101.69 700.501,3101.68 700.54,3101.69 Z M 701.902,3101.7 C 701.848,3101.7 701.798,3101.72 701.752,3101.74 C 701.705,3101.76 701.661,3101.78 701.618,3101.82 L 701.744,3101.97 C 701.793,3101.93 701.844,3101.9 701.899,3101.89 C 701.954,3101.88 702.015,3101.87 702.08,3101.88 C 702.166,3101.9 702.232,3101.92 702.277,3101.96 C 702.322,3102 702.344,3102.06 702.343,3102.12 C 702.343,3102.15 702.338,3102.18 702.33,3102.2 C 702.321,3102.22 702.308,3102.24 702.289,3102.25 C 702.273,3102.26 702.253,3102.27 702.23,3102.28 C 702.207,3102.28 702.179,3102.29 702.146,3102.29 L 701.993,3102.29 C 701.94,3102.29 701.893,3102.3 701.852,3102.31 C 701.811,3102.32 701.776,3102.34 701.747,3102.36 C 701.715,3102.39 701.69,3102.42 701.673,3102.46 C 701.656,3102.5 701.647,3102.55 701.646,3102.6 C 701.644,3102.68 701.66,3102.75 701.694,3102.81 C 701.727,3102.87 701.776,3102.92 701.84,3102.96 C 701.903,3103 701.98,3103.03 702.07,3103.04 C 702.128,3103.05 702.18,3103.05 702.227,3103.05 C 702.274,3103.04 702.318,3103.03 702.359,3103.01 C 702.399,3103 702.438,3102.97 702.475,3102.94 L 702.355,3102.8 C 702.314,3102.84 702.269,3102.86 702.222,3102.87 C 702.174,3102.88 702.122,3102.88 702.067,3102.87 C 702.016,3102.86 701.973,3102.85 701.939,3102.83 C 701.904,3102.8 701.878,3102.78 701.861,3102.74 C 701.844,3102.71 701.836,3102.67 701.836,3102.63 C 701.837,3102.61 701.841,3102.59 701.848,3102.57 C 701.856,3102.55 701.869,3102.53 701.886,3102.52 C 701.902,3102.51 701.921,3102.5 701.944,3102.49 C 701.966,3102.48 701.994,3102.48 702.029,3102.48 L 702.184,3102.47 C 702.224,3102.47 702.258,3102.47 702.287,3102.46 C 702.316,3102.46 702.342,3102.45 702.365,3102.44 C 702.387,3102.43 702.408,3102.42 702.427,3102.41 C 702.462,3102.38 702.489,3102.34 702.508,3102.3 C 702.526,3102.26 702.536,3102.21 702.537,3102.15 C 702.538,3102.07 702.52,3102 702.482,3101.93 C 702.444,3101.87 702.39,3101.82 702.321,3101.78 C 702.252,3101.74 702.172,3101.72 702.08,3101.71 C 702.015,3101.7 701.956,3101.7 701.902,3101.7 Z M 702.809,3101.81 L 702.781,3103.12 L 703.608,3103.23 L 703.612,3103.05 L 702.981,3102.97 L 702.989,3102.58 L 703.527,3102.65 L 703.531,3102.48 L 702.993,3102.41 L 703.001,3102.01 L 703.632,3102.09 L 703.636,3101.91 L 702.809,3101.81 Z M 703.905,3101.95 L 703.878,3103.26 L 704.379,3103.32 C 704.461,3103.33 704.533,3103.33 704.593,3103.3 C 704.654,3103.28 704.701,3103.24 704.735,3103.18 C 704.769,3103.13 704.787,3103.07 704.789,3102.99 C 704.79,3102.93 704.779,3102.87 704.758,3102.82 C 704.736,3102.77 704.706,3102.73 704.668,3102.69 C 704.63,3102.66 704.587,3102.63 704.538,3102.61 L 704.848,3102.07 L 704.619,3102.04 L 704.335,3102.56 L 704.09,3102.53 L 704.101,3101.97 L 703.905,3101.95 Z M 705.095,3102.1 L 705.068,3103.41 L 705.264,3103.44 L 705.291,3102.12 L 705.095,3102.1 Z M 705.63,3102.17 L 705.603,3103.48 L 706.43,3103.58 L 706.433,3103.41 L 705.803,3103.33 L 705.811,3102.94 L 706.349,3103.01 L 706.352,3102.83 L 705.814,3102.76 L 705.823,3102.37 L 706.453,3102.45 L 706.457,3102.27 L 705.63,3102.17 Z M 706.892,3102.33 C 706.838,3102.34 706.788,3102.35 706.742,3102.37 C 706.695,3102.39 706.651,3102.42 706.608,3102.45 L 706.735,3102.6 C 706.783,3102.56 706.834,3102.53 706.889,3102.52 C 706.945,3102.51 707.005,3102.51 707.07,3102.51 C 707.156,3102.53 707.222,3102.55 707.267,3102.59 C 707.312,3102.63 707.334,3102.69 707.333,3102.75 C 707.333,3102.78 707.328,3102.81 707.32,3102.83 C 707.311,3102.85 707.298,3102.87 707.28,3102.88 C 707.263,3102.89 707.243,3102.9 707.22,3102.91 C 707.197,3102.92 707.169,3102.92 707.137,3102.92 L 706.983,3102.92 C 706.93,3102.92 706.883,3102.93 706.842,3102.94 C 706.801,3102.95 706.766,3102.97 706.737,3103 C 706.705,3103.02 706.68,3103.05 706.663,3103.1 C 706.646,3103.14 706.637,3103.18 706.636,3103.24 C 706.635,3103.31 706.651,3103.38 706.684,3103.44 C 706.717,3103.51 706.766,3103.56 706.83,3103.6 C 706.894,3103.64 706.971,3103.66 707.061,3103.67 C 707.118,3103.68 707.17,3103.68 707.217,3103.68 C 707.264,3103.67 707.308,3103.66 707.349,3103.65 C 707.389,3103.63 707.428,3103.61 707.466,3103.58 L 707.345,3103.43 C 707.304,3103.47 707.26,3103.49 707.212,3103.5 C 707.164,3103.51 707.112,3103.51 707.057,3103.5 C 707.006,3103.49 706.963,3103.48 706.929,3103.46 C 706.894,3103.44 706.868,3103.41 706.851,3103.38 C 706.834,3103.34 706.826,3103.31 706.826,3103.27 C 706.827,3103.24 706.831,3103.22 706.839,3103.2 C 706.846,3103.18 706.859,3103.16 706.876,3103.15 C 706.892,3103.14 706.912,3103.13 706.934,3103.12 C 706.956,3103.11 706.984,3103.11 707.019,3103.11 L 707.175,3103.11 C 707.214,3103.1 707.248,3103.1 707.277,3103.1 C 707.307,3103.09 707.332,3103.08 707.355,3103.07 C 707.377,3103.07 707.398,3103.05 707.417,3103.04 C 707.452,3103.01 707.479,3102.97 707.498,3102.93 C 707.516,3102.89 707.526,3102.84 707.528,3102.78 C 707.529,3102.7 707.51,3102.63 707.472,3102.57 C 707.434,3102.51 707.38,3102.45 707.311,3102.42 C 707.242,3102.38 707.162,3102.35 707.07,3102.34 C 707.006,3102.33 706.946,3102.33 706.892,3102.33 Z M 704.086,3102.7 L 704.377,3102.73 C 704.421,3102.74 704.459,3102.75 704.492,3102.77 C 704.524,3102.79 704.549,3102.82 704.567,3102.85 C 704.585,3102.88 704.593,3102.92 704.593,3102.97 C 704.591,3103.01 704.581,3103.04 704.562,3103.07 C 704.543,3103.1 704.517,3103.12 704.484,3103.13 C 704.451,3103.15 704.412,3103.15 704.368,3103.14 L 704.077,3103.11 L 704.086,3102.7 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(696.326 3136.31) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_LIGHT_individuals--FONDANT {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='763.357 -3194.63 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='54.402' y2='78.71' gradientTransform='translate(817.919 3107.07)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-5.043' y2='47.161' gradientTransform='translate(804.589 3109.39)'%3E%3Cstop offset='0' stop-color='%23836538'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.616' y2='0' gradientTransform='translate(807.256 3143.77) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2387683a'/%3E%3Cstop offset='1' stop-color='%238c6c3c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.05' y2='8.082' gradientTransform='translate(819.804 3182.74)'%3E%3Cstop offset='0' stop-color='%2391703e'/%3E%3Cstop offset='1' stop-color='%23a47f47'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.039' y2='-0.616' gradientTransform='translate(849.226 3189.39) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%238e6e3d'/%3E%3Cstop offset='1' stop-color='%2392713e'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.445' y2='-0.864' gradientTransform='translate(800.29 3190.08)'%3E%3Cstop offset='0' stop-color='%23765b32'/%3E%3Cstop offset='1' stop-color='%238c6c3c'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='none'%3E%3Cg id='Group_1'%3E%3Cpath d='M 806.945,3077.99 L 806.945,3186.44 L 847.437,3189.04 L 847.437,3083.47 L 806.945,3077.99 Z' stroke-width='8.675' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 806.945,3077.99 L 795.948,3088.66 L 795.948,3171.62 C 795.948,3171.9 795.944,3172.19 795.934,3172.47 L 795.937,3172.47 L 795.946,3172.46 L 795.948,3191.62 C 795.948,3191.9 795.944,3192.18 795.934,3192.47 L 795.937,3192.47 L 806.945,3186.44 L 806.945,3077.99 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 806.945,3077.98 L 806.617,3078.3 L 806.617,3186.63 L 807.272,3186.02 L 807.272,3078.03 L 806.945,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='3.14' fill='%23ffffff'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 814.834,3133.62 L 814.828,3139.79 L 815.846,3139.89 L 815.851,3136.74 L 816.692,3137.65 L 817.448,3138.47 L 819.037,3140.21 L 820.547,3140.37 L 818.053,3137.64 L 820.531,3134.2 L 819.273,3134.07 L 817.296,3136.81 L 815.853,3135.25 L 815.853,3133.72 L 814.834,3133.62 Z M 821.05,3134.25 L 821.574,3135.4 L 823.956,3140.71 L 826.353,3135.89 L 826.873,3134.84 L 825.735,3134.73 L 825.209,3135.78 L 823.958,3138.29 L 822.714,3135.52 L 822.19,3134.37 L 821.05,3134.25 Z M 827.388,3134.89 L 827.399,3134.9 L 828.179,3136.07 L 829.578,3138.19 L 830.227,3139.15 L 831.004,3140.33 L 827.376,3139.96 L 827.374,3141.06 L 831.788,3141.51 L 833.066,3141.64 L 832.277,3140.46 L 830.859,3138.32 L 830.22,3137.35 L 829.45,3136.21 L 833.098,3136.57 L 833.1,3135.47 L 828.684,3135.03 L 828.675,3135.03 L 827.388,3134.89 Z M 834.833,3135.78 C 834.649,3135.85 834.484,3135.95 834.348,3136.09 C 834.203,3136.22 834.095,3136.39 834.017,3136.59 C 833.939,3136.78 833.9,3136.99 833.898,3137.22 L 833.891,3140.06 C 833.891,3140.29 833.93,3140.51 834.01,3140.72 C 834.089,3140.93 834.194,3141.11 834.341,3141.28 C 834.477,3141.45 834.643,3141.58 834.826,3141.69 C 835.013,3141.79 835.213,3141.86 835.424,3141.88 L 839.592,3142.3 L 839.592,3141.2 L 835.424,3140.78 C 835.325,3140.76 835.243,3140.73 835.162,3140.68 C 835.084,3140.62 835.024,3140.54 834.976,3140.45 C 834.928,3140.37 834.907,3140.27 834.907,3140.16 L 834.907,3139.59 L 838.576,3139.96 L 838.578,3138.86 L 834.907,3138.49 L 834.907,3137.32 C 834.907,3137.22 834.932,3137.13 834.978,3137.05 C 835.029,3136.97 835.089,3136.91 835.167,3136.86 C 835.247,3136.82 835.33,3136.81 835.429,3136.81 L 839.596,3137.24 L 839.599,3136.14 L 835.429,3135.71 C 835.22,3135.69 835.022,3135.71 834.833,3135.78 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cpath d='M 823.627,3130.63 C 823.586,3130.63 823.544,3130.64 823.505,3130.66 C 823.45,3130.68 823.4,3130.71 823.356,3130.75 C 823.31,3130.79 823.275,3130.84 823.248,3130.89 C 823.229,3130.93 823.213,3130.97 823.204,3131.01 C 823.195,3131.05 823.19,3131.1 823.188,3131.14 L 823.188,3132.38 L 823.508,3132.41 L 823.508,3131.14 C 823.514,3131.11 823.526,3131.07 823.547,3131.04 C 823.567,3131.01 823.593,3130.99 823.622,3130.97 C 823.655,3130.96 823.689,3130.95 823.726,3130.95 L 824.664,3131.04 L 824.664,3130.72 L 823.756,3130.62 C 823.712,3130.62 823.668,3130.62 823.627,3130.63 Z M 824.919,3130.74 L 824.919,3132.55 L 825.238,3132.59 L 825.238,3130.78 L 824.919,3130.74 Z M 826.043,3130.93 C 825.935,3130.97 825.841,3131.02 825.758,3131.1 C 825.678,3131.17 825.613,3131.26 825.567,3131.36 C 825.521,3131.47 825.498,3131.58 825.496,3131.71 C 825.498,3131.84 825.521,3131.95 825.567,3132.07 C 825.613,3132.18 825.678,3132.28 825.758,3132.38 C 825.841,3132.47 825.935,3132.54 826.043,3132.6 C 826.151,3132.66 826.266,3132.69 826.39,3132.71 L 827.287,3132.8 L 827.287,3132.48 L 826.39,3132.38 C 826.312,3132.37 826.236,3132.35 826.167,3132.31 C 826.098,3132.28 826.036,3132.23 825.986,3132.17 C 825.933,3132.11 825.891,3132.05 825.861,3131.97 C 825.832,3131.9 825.815,3131.82 825.815,3131.74 C 825.815,3131.66 825.832,3131.59 825.861,3131.52 C 825.891,3131.45 825.933,3131.4 825.986,3131.35 C 826.036,3131.3 826.098,3131.26 826.167,3131.24 C 826.236,3131.22 826.312,3131.21 826.39,3131.22 L 826.967,3131.28 L 826.967,3131.63 L 826.39,3131.57 L 826.39,3131.89 L 827.287,3131.98 L 827.287,3130.99 L 826.39,3130.9 L 826.209,3130.9 C 826.151,3130.9 826.096,3130.91 826.043,3130.93 Z M 827.54,3131.02 L 827.54,3132.83 L 827.859,3132.86 L 827.859,3132.2 L 829.011,3132.32 L 829.011,3132.98 L 829.33,3133.01 L 829.33,3131.2 L 829.011,3131.17 L 829.011,3132 L 827.859,3131.88 L 827.859,3131.05 L 827.54,3131.02 Z M 830.319,3131.3 L 830.319,3132.79 L 829.585,3132.71 L 829.585,3133.04 L 831.371,3133.22 L 831.371,3132.9 L 830.638,3132.82 L 830.638,3131.34 L 830.319,3131.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 806.945,3186.44 L 795.941,3192.47 L 835.01,3194.63 L 847.437,3189.35 L 847.437,3189.04 L 806.945,3186.44 Z' stroke-width='1.11' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 807.272,3186.02 L 806.617,3186.63 L 847.437,3189.29 L 847.437,3188.63 L 807.272,3186.02 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 806.617,3185.43 L 795.946,3191.4 L 795.948,3191.62 C 795.948,3191.9 795.944,3192.18 795.934,3192.47 L 806.617,3186.62 L 806.617,3185.43 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cg id='Group_7' stroke-linecap='round'%3E%3Cg id='Group_8' stroke-linejoin='miter' stroke-width='0.269'%3E%3Crect x='-2.276' y='-2.144' width='4.553' height='4.289' transform='translate(816.039 3095.81) rotate(90) skewX(-7.19708)' fill='%23003660'/%3E%3Crect x='-2.276' y='-2.143' width='4.552' height='4.287' transform='translate(821.611 3096.51) rotate(90) skewX(-7.19943)' fill='%23cf3400'/%3E%3Crect x='-2.276' y='-2.144' width='4.552' height='4.289' transform='translate(827.186 3097.22) rotate(90) skewX(-7.19708)' fill='%23bf0000'/%3E%3Crect x='-2.276' y='-2.144' width='4.553' height='4.289' transform='translate(832.762 3097.92) rotate(90) skewX(-7.19708)' fill='%2393170b'/%3E%3Crect x='-2.276' y='-2.144' width='4.553' height='4.289' transform='translate(838.337 3098.62) rotate(90) skewX(-7.19708)' fill='%23114700'/%3E%3C/g%3E%3Cg id='Group_9' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.041' fill='%23ffffff'%3E%3Cg id='Group_10'%3E%3Cpath d='M 819.071,3100.91 L 819.071,3101.76 C 819.071,3101.81 819.08,3101.85 819.096,3101.89 C 819.112,3101.93 819.135,3101.97 819.163,3102 C 819.191,3102.03 819.225,3102.06 819.262,3102.08 C 819.299,3102.1 819.34,3102.11 819.384,3102.12 L 820.234,3102.21 L 820.234,3102 L 819.386,3101.91 C 819.365,3101.91 819.349,3101.9 819.333,3101.89 C 819.317,3101.87 819.303,3101.86 819.294,3101.84 C 819.285,3101.83 819.28,3101.81 819.28,3101.79 L 819.28,3101.68 L 820.027,3101.76 L 820.027,3101.55 L 819.278,3101.47 L 819.278,3100.93 L 819.071,3100.91 Z M 820.57,3101.12 C 820.499,3101.14 820.436,3101.18 820.384,3101.23 C 820.331,3101.27 820.289,3101.33 820.259,3101.4 C 820.23,3101.47 820.213,3101.54 820.213,3101.62 C 820.213,3101.7 820.23,3101.78 820.259,3101.86 C 820.289,3101.93 820.331,3102 820.384,3102.06 C 820.436,3102.12 820.499,3102.17 820.57,3102.2 C 820.639,3102.24 820.715,3102.27 820.795,3102.28 C 820.876,3102.28 820.951,3102.28 821.02,3102.26 C 821.089,3102.23 821.154,3102.2 821.207,3102.15 C 821.259,3102.1 821.301,3102.05 821.331,3101.98 C 821.361,3101.91 821.374,3101.84 821.377,3101.75 C 821.374,3101.67 821.361,3101.59 821.331,3101.52 C 821.301,3101.45 821.259,3101.38 821.207,3101.32 C 821.154,3101.26 821.089,3101.21 821.02,3101.17 C 820.951,3101.13 820.876,3101.11 820.795,3101.1 C 820.715,3101.09 820.639,3101.1 820.57,3101.12 Z M 821.503,3101.18 L 821.503,3102.35 L 821.71,3102.21 L 822.457,3101.71 L 822.457,3102.46 L 822.664,3102.48 L 822.664,3101.31 L 822.457,3101.45 L 821.71,3101.94 L 821.71,3101.2 L 821.503,3101.18 Z M 820.795,3101.31 C 820.846,3101.32 820.896,3101.33 820.94,3101.35 C 820.986,3101.38 821.025,3101.41 821.059,3101.45 C 821.094,3101.49 821.119,3101.53 821.14,3101.58 C 821.158,3101.63 821.167,3101.68 821.17,3101.73 C 821.167,3101.78 821.158,3101.83 821.14,3101.87 C 821.119,3101.92 821.094,3101.95 821.059,3101.98 C 821.025,3102.02 820.986,3102.04 820.94,3102.05 C 820.896,3102.07 820.846,3102.07 820.795,3102.07 C 820.744,3102.06 820.694,3102.05 820.65,3102.02 C 820.604,3101.99 820.565,3101.96 820.531,3101.93 C 820.496,3101.89 820.471,3101.85 820.45,3101.8 C 820.432,3101.75 820.42,3101.7 820.42,3101.65 C 820.42,3101.59 820.432,3101.54 820.45,3101.5 C 820.471,3101.46 820.496,3101.42 820.531,3101.39 C 820.565,3101.36 820.604,3101.34 820.65,3101.32 C 820.694,3101.31 820.744,3101.3 820.795,3101.31 Z M 822.832,3101.33 L 822.832,3102.51 L 823.413,3102.57 L 823.411,3102.57 C 823.491,3102.58 823.567,3102.57 823.636,3102.55 C 823.708,3102.53 823.77,3102.49 823.822,3102.45 C 823.875,3102.4 823.917,3102.34 823.947,3102.27 C 823.976,3102.21 823.99,3102.13 823.993,3102.05 C 823.99,3101.98 823.981,3101.91 823.956,3101.84 C 823.933,3101.77 823.898,3101.71 823.855,3101.66 C 823.85,3101.65 823.845,3101.64 823.839,3101.63 C 823.834,3101.63 823.827,3101.62 823.82,3101.61 C 823.77,3101.55 823.708,3101.51 823.636,3101.47 C 823.567,3101.43 823.494,3101.4 823.413,3101.4 L 822.832,3101.33 Z M 823.949,3101.45 L 824.055,3101.68 L 824.542,3102.7 L 825.027,3101.79 L 825.135,3101.59 L 824.901,3101.56 L 824.795,3101.76 L 824.542,3102.24 L 824.287,3101.7 L 824.181,3101.48 L 823.949,3101.45 Z M 823.036,3101.56 L 823.411,3101.6 C 823.464,3101.61 823.512,3101.63 823.556,3101.65 C 823.602,3101.67 823.641,3101.7 823.675,3101.74 C 823.71,3101.78 823.735,3101.83 823.754,3101.87 C 823.774,3101.92 823.783,3101.97 823.786,3102.03 C 823.783,3102.08 823.774,3102.13 823.754,3102.17 C 823.735,3102.21 823.71,3102.25 823.675,3102.28 C 823.641,3102.31 823.602,3102.33 823.556,3102.35 C 823.512,3102.36 823.464,3102.37 823.411,3102.36 L 823.036,3102.32 L 823.036,3101.56 Z M 825.236,3101.6 L 825.236,3102.77 L 825.443,3102.64 L 826.19,3102.14 L 826.19,3102.88 L 826.397,3102.91 L 826.397,3101.73 L 826.19,3101.87 L 825.443,3102.37 L 825.443,3101.63 L 825.236,3101.6 Z M 827.041,3101.8 L 827.041,3102.77 L 826.563,3102.72 L 826.563,3102.93 L 827.726,3103.06 L 827.726,3102.85 L 827.248,3102.8 L 827.248,3101.83 L 827.041,3101.8 Z M 828.928,3102.05 C 828.882,3102.06 828.845,3102.08 828.808,3102.11 C 828.776,3102.14 828.751,3102.18 828.73,3102.22 C 828.712,3102.26 828.703,3102.31 828.703,3102.36 L 828.91,3102.39 C 828.91,3102.36 828.919,3102.33 828.933,3102.31 C 828.946,3102.28 828.965,3102.27 828.99,3102.26 C 829.013,3102.24 829.038,3102.24 829.07,3102.24 L 829.434,3102.28 C 829.464,3102.29 829.491,3102.3 829.514,3102.32 C 829.537,3102.33 829.558,3102.35 829.572,3102.38 C 829.585,3102.41 829.592,3102.43 829.595,3102.46 C 829.592,3102.49 829.585,3102.52 829.572,3102.54 C 829.558,3102.57 829.537,3102.58 829.514,3102.6 C 829.491,3102.61 829.464,3102.61 829.434,3102.61 L 829.015,3102.56 C 828.974,3102.55 828.933,3102.56 828.896,3102.57 C 828.859,3102.58 828.827,3102.6 828.797,3102.63 C 828.781,3102.64 828.769,3102.66 828.756,3102.67 C 828.739,3102.69 828.728,3102.72 828.716,3102.75 C 828.707,3102.78 828.703,3102.81 828.703,3102.85 L 828.703,3102.85 C 828.703,3102.89 828.71,3102.93 828.728,3102.98 C 828.744,3103.02 828.765,3103.06 828.792,3103.08 C 828.822,3103.12 828.854,3103.14 828.891,3103.17 C 828.93,3103.19 828.972,3103.2 829.015,3103.2 L 829.487,3103.26 L 829.549,3103.26 C 829.569,3103.26 829.59,3103.25 829.608,3103.24 C 829.645,3103.23 829.68,3103.22 829.709,3103.19 C 829.737,3103.16 829.758,3103.13 829.774,3103.1 C 829.792,3103.06 829.799,3103.02 829.799,3102.97 L 829.799,3102.97 L 829.592,3102.94 L 829.592,3102.95 C 829.592,3102.97 829.588,3102.99 829.578,3103 C 829.567,3103.02 829.555,3103.03 829.539,3103.04 C 829.523,3103.05 829.505,3103.05 829.487,3103.05 L 829.015,3102.99 C 828.995,3102.99 828.976,3102.98 828.962,3102.97 C 828.946,3102.96 828.933,3102.94 828.923,3102.93 C 828.914,3102.91 828.91,3102.89 828.91,3102.87 L 828.91,3102.87 C 828.91,3102.85 828.914,3102.83 828.923,3102.81 C 828.933,3102.8 828.946,3102.79 828.962,3102.78 C 828.976,3102.77 828.995,3102.77 829.015,3102.77 L 829.434,3102.82 C 829.487,3102.82 829.537,3102.82 829.583,3102.8 C 829.629,3102.79 829.67,3102.76 829.703,3102.73 C 829.707,3102.73 829.709,3102.72 829.709,3102.72 C 829.712,3102.72 829.714,3102.72 829.716,3102.71 C 829.744,3102.68 829.765,3102.65 829.778,3102.61 C 829.792,3102.57 829.799,3102.53 829.799,3102.49 C 829.799,3102.44 829.79,3102.39 829.772,3102.34 C 829.753,3102.29 829.726,3102.25 829.691,3102.21 C 829.659,3102.17 829.62,3102.14 829.576,3102.12 C 829.53,3102.1 829.484,3102.08 829.434,3102.07 L 829.07,3102.03 C 829.018,3102.03 828.972,3102.03 828.928,3102.05 Z M 830.158,3102.18 C 830.121,3102.19 830.089,3102.21 830.059,3102.24 C 830.029,3102.26 830.008,3102.3 829.992,3102.33 C 829.976,3102.37 829.967,3102.41 829.967,3102.45 L 829.967,3102.99 C 829.967,3103.04 829.976,3103.08 829.992,3103.12 C 830.008,3103.16 830.029,3103.2 830.059,3103.23 C 830.089,3103.26 830.121,3103.29 830.158,3103.31 C 830.197,3103.33 830.236,3103.34 830.28,3103.35 L 831.128,3103.44 L 831.128,3103.23 L 830.28,3103.14 C 830.261,3103.14 830.243,3103.13 830.227,3103.12 C 830.211,3103.11 830.199,3103.09 830.188,3103.07 C 830.178,3103.06 830.174,3103.04 830.174,3103.02 L 830.174,3102.91 L 830.921,3102.99 L 830.921,3102.78 L 830.174,3102.7 L 830.174,3102.47 C 830.174,3102.45 830.178,3102.44 830.188,3102.42 C 830.199,3102.41 830.211,3102.4 830.227,3102.39 C 830.243,3102.38 830.261,3102.38 830.28,3102.38 L 831.128,3102.47 L 831.128,3102.26 L 830.28,3102.17 L 830.218,3102.17 C 830.197,3102.17 830.176,3102.17 830.158,3102.18 Z M 831.293,3102.28 L 831.293,3103.46 L 832.027,3103.54 C 832.07,3103.54 832.112,3103.54 832.148,3103.53 C 832.188,3103.52 832.22,3103.5 832.247,3103.47 C 832.277,3103.45 832.3,3103.42 832.316,3103.38 C 832.33,3103.34 832.339,3103.3 832.339,3103.26 C 832.339,3103.22 832.332,3103.18 832.316,3103.14 C 832.3,3103.1 832.279,3103.06 832.252,3103.03 C 832.224,3103 832.192,3102.97 832.155,3102.95 C 832.128,3102.93 832.1,3102.92 832.068,3102.91 L 832.233,3102.6 L 832.339,3102.4 L 832.107,3102.37 L 832.001,3102.57 L 831.891,3102.78 L 831.884,3102.79 C 831.866,3102.82 831.84,3102.84 831.811,3102.86 C 831.781,3102.87 831.746,3102.87 831.709,3102.87 L 831.5,3102.85 L 831.5,3102.31 L 831.293,3102.28 Z M 832.509,3102.42 L 832.509,3103.6 L 832.716,3103.62 L 832.716,3102.45 L 832.509,3102.42 Z M 833.073,3102.51 C 833.036,3102.52 833.001,3102.54 832.974,3102.57 C 832.946,3102.59 832.923,3102.63 832.909,3102.66 C 832.891,3102.7 832.882,3102.74 832.882,3102.78 L 832.882,3103.32 C 832.882,3103.37 832.891,3103.41 832.909,3103.45 C 832.923,3103.49 832.946,3103.53 832.974,3103.56 C 833.001,3103.59 833.036,3103.62 833.073,3103.64 C 833.112,3103.66 833.153,3103.67 833.194,3103.68 L 834.045,3103.77 L 834.045,3103.56 L 833.194,3103.47 C 833.176,3103.46 833.158,3103.45 833.141,3103.45 C 833.128,3103.43 833.114,3103.42 833.102,3103.4 C 833.093,3103.38 833.091,3103.37 833.089,3103.34 L 833.089,3103.24 L 833.838,3103.32 L 833.838,3103.11 L 833.089,3103.03 L 833.089,3102.8 C 833.091,3102.78 833.093,3102.77 833.102,3102.75 C 833.114,3102.74 833.128,3102.73 833.141,3102.72 C 833.158,3102.71 833.176,3102.71 833.194,3102.71 L 834.045,3102.8 L 834.045,3102.6 L 833.194,3102.5 C 833.153,3102.49 833.112,3102.5 833.073,3102.51 Z M 834.438,3102.67 C 834.392,3102.68 834.353,3102.7 834.318,3102.74 C 834.286,3102.76 834.261,3102.8 834.24,3102.85 C 834.222,3102.89 834.213,3102.93 834.213,3102.99 L 834.42,3103.01 C 834.42,3102.98 834.429,3102.95 834.443,3102.93 C 834.454,3102.91 834.475,3102.89 834.5,3102.88 C 834.523,3102.87 834.548,3102.86 834.58,3102.86 L 834.944,3102.91 C 834.974,3102.91 835.001,3102.92 835.024,3102.94 C 835.047,3102.95 835.066,3102.98 835.082,3103 C 835.095,3103.03 835.102,3103.06 835.102,3103.08 C 835.102,3103.12 835.095,3103.14 835.082,3103.16 C 835.066,3103.19 835.047,3103.2 835.024,3103.22 C 835.001,3103.23 834.974,3103.23 834.944,3103.23 L 834.525,3103.18 C 834.482,3103.18 834.443,3103.18 834.406,3103.19 C 834.367,3103.2 834.337,3103.22 834.307,3103.24 C 834.291,3103.26 834.279,3103.28 834.266,3103.29 C 834.249,3103.32 834.238,3103.34 834.226,3103.37 C 834.217,3103.4 834.213,3103.43 834.213,3103.47 L 834.213,3103.47 C 834.213,3103.52 834.22,3103.56 834.238,3103.6 C 834.254,3103.64 834.275,3103.68 834.302,3103.71 C 834.332,3103.74 834.364,3103.76 834.401,3103.79 C 834.44,3103.81 834.482,3103.82 834.525,3103.83 L 834.997,3103.88 L 835.056,3103.88 C 835.077,3103.88 835.098,3103.87 835.118,3103.87 C 835.155,3103.85 835.19,3103.84 835.217,3103.81 C 835.247,3103.78 835.268,3103.75 835.284,3103.72 C 835.3,3103.68 835.309,3103.64 835.309,3103.6 L 835.309,3103.59 L 835.102,3103.57 L 835.102,3103.57 C 835.1,3103.59 835.098,3103.61 835.089,3103.63 C 835.077,3103.64 835.063,3103.65 835.049,3103.66 C 835.033,3103.67 835.015,3103.67 834.997,3103.67 L 834.525,3103.61 C 834.505,3103.61 834.486,3103.6 834.472,3103.59 C 834.454,3103.58 834.443,3103.57 834.433,3103.55 C 834.424,3103.53 834.42,3103.51 834.42,3103.49 L 834.42,3103.49 C 834.42,3103.47 834.424,3103.45 834.433,3103.44 C 834.443,3103.42 834.454,3103.41 834.472,3103.4 C 834.486,3103.39 834.505,3103.39 834.525,3103.39 L 834.944,3103.44 L 835.02,3103.44 C 835.047,3103.44 835.07,3103.43 835.093,3103.42 C 835.139,3103.41 835.18,3103.38 835.213,3103.35 C 835.215,3103.35 835.22,3103.34 835.22,3103.34 C 835.222,3103.34 835.224,3103.34 835.226,3103.34 C 835.254,3103.31 835.272,3103.27 835.288,3103.23 C 835.302,3103.2 835.309,3103.15 835.309,3103.11 C 835.309,3103.06 835.3,3103.01 835.282,3102.96 C 835.263,3102.91 835.236,3102.87 835.201,3102.83 C 835.169,3102.8 835.13,3102.76 835.084,3102.74 C 835.04,3102.72 834.992,3102.7 834.944,3102.7 L 834.58,3102.66 C 834.528,3102.65 834.482,3102.66 834.438,3102.67 Z M 831.5,3103.06 L 832.027,3103.12 C 832.036,3103.12 832.043,3103.12 832.05,3103.12 C 832.056,3103.12 832.063,3103.13 832.07,3103.13 C 832.091,3103.14 832.105,3103.16 832.116,3103.17 C 832.128,3103.19 832.135,3103.21 832.135,3103.24 C 832.132,3103.26 832.128,3103.27 832.121,3103.28 C 832.116,3103.29 832.109,3103.3 832.102,3103.31 C 832.096,3103.32 832.086,3103.32 832.073,3103.33 C 832.061,3103.33 832.045,3103.33 832.027,3103.33 L 831.5,3103.27 L 831.5,3103.06 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(821.685 3136.31) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_LIGHT_individuals--EYE_CANDY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='513.009 -3194.63 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='29.519' y2='82.215' gradientTransform='translate(567.57 3107.07)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-5.044' y2='47.162' gradientTransform='translate(554.24 3109.39)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.616' y2='0' gradientTransform='translate(556.906 3143.77) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.051' y2='8.082' gradientTransform='translate(569.455 3182.74)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.039' y2='-0.616' gradientTransform='translate(598.877 3189.39) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.446' y2='-0.865' gradientTransform='translate(549.941 3190.09)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 556.596,3077.98 L 556.596,3186.44 L 597.089,3189.04 L 597.089,3083.47 L 556.596,3077.98 Z' stroke-width='8.676' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 556.596,3077.98 L 545.599,3088.66 L 545.599,3171.62 C 545.599,3171.9 545.594,3172.19 545.585,3172.47 L 545.587,3172.47 L 545.596,3172.46 L 545.599,3191.62 C 545.599,3191.9 545.594,3192.19 545.585,3192.47 L 545.587,3192.47 L 556.596,3186.44 L 556.596,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 556.596,3077.98 L 556.267,3078.3 L 556.267,3186.63 L 556.923,3186.02 L 556.923,3078.03 L 556.596,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='3.14' fill='%23000000'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 564.485,3133.62 L 564.479,3139.78 L 565.497,3139.89 L 565.502,3136.74 L 566.343,3137.65 L 567.099,3138.47 L 568.688,3140.21 L 570.198,3140.37 L 567.704,3137.64 L 570.182,3134.2 L 568.924,3134.07 L 566.947,3136.81 L 565.504,3135.24 L 565.504,3133.72 L 564.485,3133.62 Z M 570.701,3134.25 L 571.225,3135.4 L 573.607,3140.71 L 576.005,3135.89 L 576.524,3134.84 L 575.386,3134.73 L 574.86,3135.77 L 573.609,3138.29 L 572.366,3135.52 L 571.842,3134.37 L 570.701,3134.25 Z M 577.039,3134.89 L 577.051,3134.9 L 577.83,3136.07 L 579.23,3138.19 L 579.878,3139.15 L 580.655,3140.33 L 577.028,3139.96 L 577.025,3141.06 L 581.439,3141.51 L 582.717,3141.64 L 581.929,3140.46 L 580.51,3138.32 L 579.871,3137.35 L 579.101,3136.21 L 582.749,3136.57 L 582.752,3135.47 L 578.336,3135.03 L 578.326,3135.03 L 577.039,3134.89 Z M 584.485,3135.78 C 584.301,3135.85 584.135,3135.95 584,3136.09 C 583.855,3136.22 583.747,3136.39 583.669,3136.59 C 583.591,3136.78 583.551,3136.99 583.549,3137.22 L 583.542,3140.06 C 583.542,3140.29 583.581,3140.51 583.662,3140.72 C 583.74,3140.93 583.846,3141.11 583.993,3141.28 C 584.128,3141.45 584.294,3141.58 584.478,3141.69 C 584.664,3141.79 584.864,3141.86 585.076,3141.88 L 589.243,3142.3 L 589.243,3141.2 L 585.076,3140.78 C 584.977,3140.76 584.894,3140.73 584.814,3140.68 C 584.735,3140.62 584.676,3140.54 584.627,3140.45 C 584.579,3140.37 584.558,3140.27 584.558,3140.16 L 584.558,3139.59 L 588.227,3139.96 L 588.229,3138.86 L 584.558,3138.49 L 584.558,3137.32 C 584.558,3137.22 584.584,3137.13 584.63,3137.05 C 584.68,3136.97 584.74,3136.91 584.818,3136.86 C 584.899,3136.82 584.981,3136.81 585.08,3136.81 L 589.248,3137.24 L 589.25,3136.14 L 585.08,3135.71 C 584.871,3135.69 584.673,3135.71 584.485,3135.78 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' fill-rule='nonzero' fill='%23000000'%3E%3Cg id='Group_5'%3E%3Cpath d='M 573.278,3130.63 C 573.237,3130.63 573.196,3130.64 573.156,3130.66 C 573.101,3130.68 573.051,3130.71 573.007,3130.75 C 572.961,3130.79 572.927,3130.84 572.899,3130.89 C 572.881,3130.93 572.864,3130.97 572.855,3131.01 C 572.846,3131.05 572.842,3131.1 572.839,3131.14 L 572.839,3132.37 L 573.159,3132.41 L 573.159,3131.14 C 573.166,3131.11 573.177,3131.07 573.198,3131.04 C 573.219,3131.01 573.244,3130.99 573.274,3130.97 C 573.306,3130.96 573.34,3130.95 573.377,3130.95 L 574.315,3131.04 L 574.315,3130.72 L 573.407,3130.62 C 573.363,3130.62 573.32,3130.62 573.278,3130.63 Z M 574.57,3130.74 L 574.57,3132.55 L 574.89,3132.59 L 574.89,3130.78 L 574.57,3130.74 Z M 575.694,3130.93 C 575.586,3130.97 575.492,3131.02 575.409,3131.1 C 575.329,3131.17 575.264,3131.26 575.218,3131.36 C 575.172,3131.47 575.149,3131.58 575.147,3131.71 C 575.149,3131.83 575.172,3131.95 575.218,3132.07 C 575.264,3132.18 575.329,3132.28 575.409,3132.37 C 575.492,3132.47 575.586,3132.54 575.694,3132.6 C 575.802,3132.66 575.917,3132.69 576.041,3132.7 L 576.938,3132.8 L 576.938,3132.47 L 576.041,3132.38 C 575.963,3132.37 575.887,3132.35 575.818,3132.31 C 575.749,3132.28 575.687,3132.23 575.637,3132.17 C 575.584,3132.11 575.543,3132.05 575.513,3131.97 C 575.483,3131.9 575.467,3131.82 575.467,3131.74 C 575.467,3131.66 575.483,3131.59 575.513,3131.52 C 575.543,3131.45 575.584,3131.4 575.637,3131.35 C 575.687,3131.3 575.749,3131.26 575.818,3131.24 C 575.887,3131.22 575.963,3131.21 576.041,3131.22 L 576.618,3131.28 L 576.618,3131.63 L 576.041,3131.57 L 576.041,3131.89 L 576.938,3131.98 L 576.938,3130.99 L 576.041,3130.9 L 575.86,3130.9 C 575.802,3130.9 575.747,3130.91 575.694,3130.93 Z M 577.191,3131.02 L 577.191,3132.83 L 577.51,3132.86 L 577.51,3132.2 L 578.662,3132.32 L 578.662,3132.98 L 578.982,3133.01 L 578.982,3131.2 L 578.662,3131.17 L 578.662,3132 L 577.51,3131.88 L 577.51,3131.05 L 577.191,3131.02 Z M 579.97,3131.3 L 579.97,3132.79 L 579.237,3132.71 L 579.237,3133.04 L 581.023,3133.22 L 581.023,3132.9 L 580.29,3132.82 L 580.29,3131.34 L 579.97,3131.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 556.596,3186.44 L 545.592,3192.47 L 584.662,3194.63 L 597.089,3189.35 L 597.089,3189.04 L 556.596,3186.44 Z' stroke-width='1.11' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 556.923,3186.02 L 556.267,3186.63 L 597.089,3189.29 L 597.089,3188.63 L 556.923,3186.02 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 556.267,3185.43 L 545.596,3191.4 L 545.599,3191.62 C 545.599,3191.9 545.594,3192.19 545.585,3192.47 L 556.267,3186.62 L 556.267,3185.43 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Ctext xml:space='preserve' transform='translate(568.068 3105.78) scale(1 -1)' kerning='auto' stroke-linecap='round' stroke-linejoin='round' fill='%23000000' font-family='DIN Pro Medium' stroke-width='0.046' font-size='1.833'/%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.214'%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(565.69 3095.81) rotate(90) skewX(-7.19473)' fill='%231880d9'/%3E%3Crect x='-2.276' y='-2.143' width='4.552' height='4.287' transform='translate(571.265 3096.51) rotate(90) skewX(-7.19943)' fill='%2313a875'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(576.839 3097.21) rotate(90) skewX(-7.19473)' fill='%2387c74c'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(582.416 3097.92) rotate(90) skewX(-7.19473)' fill='%23fc5f9b'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(587.99 3098.62) rotate(90) skewX(-7.19473)' fill='%234f34de'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.046' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 568.788,3100.8 L 568.76,3102.11 L 569.587,3102.22 L 569.591,3102.04 L 568.96,3101.96 L 568.968,3101.58 L 569.506,3101.64 L 569.51,3101.47 L 568.972,3101.4 L 568.98,3101 L 569.611,3101.08 L 569.615,3100.9 L 568.788,3100.8 Z M 570.111,3100.97 L 570.1,3101.51 L 569.697,3102.23 L 569.911,3102.26 L 570.194,3101.71 L 570.453,3102.32 L 570.667,3102.35 L 570.296,3101.53 L 570.307,3100.99 L 570.111,3100.97 Z M 570.873,3101.06 L 570.846,3102.37 L 571.673,3102.47 L 571.677,3102.3 L 571.046,3102.22 L 571.054,3101.83 L 571.592,3101.9 L 571.595,3101.72 L 571.057,3101.66 L 571.066,3101.26 L 571.696,3101.34 L 571.7,3101.16 L 570.873,3101.06 Z M 572.634,3101.3 C 572.579,3101.32 572.53,3101.34 572.487,3101.38 C 572.455,3101.41 572.43,3101.44 572.412,3101.47 C 572.393,3101.5 572.379,3101.54 572.37,3101.58 C 572.361,3101.62 572.355,3101.67 572.352,3101.72 C 572.348,3101.77 572.346,3101.83 572.345,3101.9 C 572.343,3101.97 572.343,3102.03 572.344,3102.08 C 572.345,3102.13 572.349,3102.18 572.357,3102.22 C 572.364,3102.27 572.376,3102.31 572.394,3102.34 C 572.411,3102.38 572.434,3102.42 572.465,3102.45 C 572.506,3102.5 572.553,3102.54 572.608,3102.57 C 572.663,3102.6 572.726,3102.62 572.796,3102.62 C 572.876,3102.63 572.948,3102.63 573.013,3102.6 C 573.077,3102.58 573.131,3102.54 573.175,3102.49 C 573.219,3102.43 573.249,3102.36 573.267,3102.28 L 573.067,3102.25 C 573.056,3102.3 573.039,3102.33 573.015,3102.37 C 572.992,3102.4 572.962,3102.42 572.926,3102.43 C 572.89,3102.45 572.848,3102.45 572.8,3102.45 C 572.761,3102.44 572.725,3102.43 572.694,3102.41 C 572.662,3102.4 572.634,3102.37 572.611,3102.34 C 572.595,3102.32 572.582,3102.3 572.572,3102.28 C 572.562,3102.26 572.555,3102.23 572.55,3102.2 C 572.545,3102.17 572.542,3102.13 572.541,3102.09 C 572.54,3102.04 572.54,3101.99 572.541,3101.92 C 572.543,3101.86 572.545,3101.81 572.548,3101.76 C 572.551,3101.72 572.555,3101.68 572.562,3101.65 C 572.568,3101.62 572.576,3101.6 572.587,3101.58 C 572.598,3101.56 572.611,3101.54 572.628,3101.52 C 572.652,3101.5 572.681,3101.49 572.713,3101.47 C 572.746,3101.47 572.781,3101.46 572.821,3101.47 C 572.868,3101.47 572.91,3101.49 572.946,3101.51 C 572.981,3101.53 573.01,3101.57 573.033,3101.6 C 573.056,3101.64 573.072,3101.68 573.081,3101.73 L 573.278,3101.75 C 573.264,3101.66 573.236,3101.59 573.195,3101.52 C 573.153,3101.45 573.101,3101.4 573.038,3101.36 C 572.975,3101.33 572.903,3101.3 572.824,3101.29 C 572.753,3101.28 572.69,3101.28 572.634,3101.3 Z M 573.375,3101.37 L 573.822,3102.74 L 573.981,3102.76 L 574.482,3101.51 L 574.273,3101.48 L 574.179,3101.73 L 573.668,3101.67 L 573.584,3101.4 L 573.375,3101.37 Z M 574.667,3101.53 L 574.639,3102.84 L 574.819,3102.86 L 575.437,3102.02 L 575.418,3102.94 L 575.614,3102.96 L 575.641,3101.65 L 575.461,3101.63 L 574.844,3102.48 L 574.863,3101.55 L 574.667,3101.53 Z M 575.98,3101.69 L 575.953,3103 L 576.407,3103.06 C 576.488,3103.07 576.558,3103.07 576.618,3103.05 C 576.679,3103.03 576.732,3102.99 576.778,3102.94 C 576.81,3102.91 576.833,3102.86 576.848,3102.82 C 576.863,3102.77 576.873,3102.72 576.878,3102.66 C 576.883,3102.6 576.885,3102.53 576.886,3102.46 C 576.888,3102.39 576.888,3102.33 576.886,3102.27 C 576.884,3102.21 576.876,3102.15 576.863,3102.1 C 576.85,3102.05 576.829,3102 576.798,3101.96 C 576.755,3101.9 576.703,3101.85 576.644,3101.82 C 576.585,3101.78 576.515,3101.76 576.435,3101.75 L 575.98,3101.69 Z M 573.723,3101.85 L 574.121,3101.9 L 573.912,3102.45 L 573.723,3101.85 Z M 577.392,3101.87 L 577.381,3102.41 L 576.978,3103.13 L 577.192,3103.16 L 577.475,3102.62 L 577.734,3103.22 L 577.948,3103.25 L 577.577,3102.43 L 577.588,3101.89 L 577.392,3101.87 Z M 576.173,3101.89 L 576.409,3101.92 C 576.456,3101.93 576.497,3101.94 576.534,3101.96 C 576.571,3101.98 576.602,3102.01 576.629,3102.04 C 576.649,3102.07 576.664,3102.1 576.673,3102.14 C 576.683,3102.17 576.688,3102.22 576.69,3102.27 C 576.692,3102.32 576.692,3102.37 576.69,3102.44 C 576.689,3102.5 576.687,3102.56 576.683,3102.61 C 576.679,3102.66 576.672,3102.7 576.661,3102.74 C 576.65,3102.77 576.634,3102.8 576.613,3102.82 C 576.585,3102.85 576.552,3102.87 576.515,3102.88 C 576.477,3102.89 576.436,3102.89 576.389,3102.88 L 576.153,3102.85 L 576.173,3101.89 Z M 578.756,3102.04 C 578.703,3102.05 578.652,3102.06 578.606,3102.08 C 578.559,3102.1 578.515,3102.13 578.472,3102.16 L 578.599,3102.31 C 578.647,3102.27 578.698,3102.24 578.754,3102.23 C 578.809,3102.22 578.869,3102.22 578.934,3102.22 C 579.02,3102.24 579.086,3102.26 579.131,3102.3 C 579.176,3102.34 579.198,3102.4 579.198,3102.46 C 579.197,3102.49 579.193,3102.52 579.184,3102.54 C 579.176,3102.56 579.162,3102.58 579.144,3102.59 C 579.127,3102.6 579.107,3102.61 579.084,3102.62 C 579.061,3102.63 579.033,3102.63 579.001,3102.63 L 578.847,3102.63 C 578.794,3102.63 578.747,3102.64 578.706,3102.65 C 578.665,3102.66 578.63,3102.68 578.601,3102.71 C 578.569,3102.73 578.544,3102.76 578.527,3102.81 C 578.51,3102.85 578.501,3102.89 578.5,3102.95 C 578.499,3103.02 578.515,3103.09 578.548,3103.15 C 578.581,3103.22 578.63,3103.27 578.694,3103.31 C 578.758,3103.35 578.835,3103.37 578.925,3103.38 C 578.982,3103.39 579.034,3103.39 579.081,3103.39 C 579.129,3103.38 579.172,3103.37 579.213,3103.36 C 579.253,3103.34 579.292,3103.32 579.33,3103.28 L 579.209,3103.14 C 579.168,3103.18 579.124,3103.2 579.076,3103.21 C 579.028,3103.22 578.976,3103.22 578.921,3103.21 C 578.87,3103.2 578.827,3103.19 578.793,3103.17 C 578.758,3103.15 578.732,3103.12 578.715,3103.09 C 578.698,3103.05 578.69,3103.02 578.691,3102.98 C 578.691,3102.95 578.695,3102.93 578.703,3102.91 C 578.71,3102.89 578.723,3102.87 578.74,3102.86 C 578.757,3102.85 578.776,3102.84 578.798,3102.83 C 578.82,3102.83 578.849,3102.82 578.884,3102.82 L 579.039,3102.81 C 579.078,3102.81 579.112,3102.81 579.141,3102.81 C 579.171,3102.8 579.197,3102.79 579.219,3102.78 C 579.241,3102.77 579.262,3102.76 579.281,3102.75 C 579.316,3102.72 579.343,3102.68 579.362,3102.64 C 579.38,3102.6 579.39,3102.55 579.392,3102.49 C 579.393,3102.41 579.374,3102.34 579.336,3102.28 C 579.298,3102.21 579.244,3102.16 579.175,3102.12 C 579.106,3102.09 579.026,3102.06 578.934,3102.05 C 578.87,3102.04 578.81,3102.04 578.756,3102.04 Z M 579.663,3102.15 L 579.636,3103.46 L 579.832,3103.49 L 579.859,3102.17 L 579.663,3102.15 Z M 580.198,3102.22 L 580.17,3103.53 L 580.997,3103.63 L 581.001,3103.45 L 580.37,3103.37 L 580.378,3102.99 L 580.916,3103.06 L 580.92,3102.88 L 580.382,3102.81 L 580.39,3102.42 L 581.021,3102.5 L 581.025,3102.32 L 580.198,3102.22 Z M 581.294,3102.35 L 581.267,3103.66 L 581.768,3103.72 C 581.85,3103.73 581.922,3103.73 581.982,3103.7 C 582.043,3103.68 582.09,3103.64 582.124,3103.58 C 582.158,3103.53 582.176,3103.47 582.178,3103.39 C 582.179,3103.33 582.168,3103.27 582.147,3103.22 C 582.125,3103.17 582.095,3103.13 582.057,3103.1 C 582.019,3103.06 581.976,3103.03 581.927,3103.01 L 582.237,3102.47 L 582.008,3102.44 L 581.724,3102.96 L 581.478,3102.93 L 581.49,3102.38 L 581.294,3102.35 Z M 582.484,3102.5 L 582.457,3103.81 L 582.653,3103.84 L 582.68,3102.52 L 582.484,3102.5 Z M 583.019,3102.57 L 582.992,3103.88 L 583.819,3103.98 L 583.822,3103.8 L 583.192,3103.72 L 583.2,3103.34 L 583.738,3103.41 L 583.741,3103.23 L 583.203,3103.16 L 583.211,3102.77 L 583.842,3102.85 L 583.846,3102.67 L 583.019,3102.57 Z M 584.281,3102.73 C 584.227,3102.73 584.177,3102.74 584.131,3102.76 C 584.084,3102.78 584.04,3102.81 583.997,3102.85 L 584.124,3102.99 C 584.172,3102.95 584.223,3102.93 584.278,3102.92 C 584.334,3102.9 584.394,3102.9 584.459,3102.91 C 584.545,3102.92 584.611,3102.95 584.656,3102.99 C 584.701,3103.03 584.723,3103.08 584.722,3103.15 C 584.722,3103.18 584.717,3103.2 584.709,3103.22 C 584.7,3103.24 584.687,3103.26 584.669,3103.28 C 584.652,3103.29 584.632,3103.3 584.609,3103.3 C 584.586,3103.31 584.558,3103.31 584.525,3103.31 L 584.372,3103.32 C 584.319,3103.32 584.272,3103.33 584.231,3103.34 C 584.19,3103.35 584.155,3103.37 584.126,3103.39 C 584.094,3103.42 584.069,3103.45 584.052,3103.49 C 584.035,3103.53 584.026,3103.58 584.025,3103.63 C 584.024,3103.71 584.04,3103.78 584.073,3103.84 C 584.106,3103.9 584.155,3103.95 584.219,3103.99 C 584.283,3104.03 584.359,3104.06 584.45,3104.07 C 584.507,3104.08 584.559,3104.08 584.606,3104.07 C 584.653,3104.07 584.697,3104.06 584.738,3104.04 C 584.778,3104.02 584.817,3104 584.855,3103.97 L 584.734,3103.83 C 584.693,3103.86 584.649,3103.88 584.601,3103.89 C 584.553,3103.9 584.501,3103.9 584.446,3103.89 C 584.395,3103.89 584.352,3103.87 584.318,3103.85 C 584.283,3103.83 584.257,3103.8 584.24,3103.77 C 584.223,3103.74 584.215,3103.7 584.215,3103.66 C 584.216,3103.64 584.22,3103.62 584.228,3103.6 C 584.235,3103.58 584.248,3103.56 584.265,3103.55 C 584.281,3103.53 584.3,3103.52 584.323,3103.52 C 584.345,3103.51 584.373,3103.51 584.408,3103.5 L 584.564,3103.5 C 584.603,3103.5 584.637,3103.49 584.666,3103.49 C 584.696,3103.49 584.721,3103.48 584.744,3103.47 C 584.766,3103.46 584.787,3103.45 584.806,3103.43 C 584.841,3103.4 584.868,3103.37 584.887,3103.33 C 584.905,3103.28 584.915,3103.23 584.917,3103.18 C 584.918,3103.09 584.899,3103.02 584.861,3102.96 C 584.823,3102.9 584.769,3102.85 584.7,3102.81 C 584.631,3102.77 584.551,3102.74 584.459,3102.73 C 584.395,3102.72 584.335,3102.72 584.281,3102.73 Z M 581.475,3103.1 L 581.766,3103.13 C 581.81,3103.14 581.848,3103.15 581.881,3103.17 C 581.913,3103.19 581.938,3103.22 581.956,3103.25 C 581.974,3103.28 581.982,3103.32 581.982,3103.37 C 581.98,3103.41 581.97,3103.44 581.951,3103.47 C 581.932,3103.5 581.906,3103.52 581.873,3103.53 C 581.84,3103.55 581.801,3103.55 581.757,3103.55 L 581.466,3103.51 L 581.475,3103.1 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(571.337 3136.31) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_LIGHT_individuals--ELEMENTS {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='14.758 -3194.63 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='29.519' y2='82.215' gradientTransform='translate(69.319 3107.07)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-5.044' y2='47.162' gradientTransform='translate(55.989 3109.39)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.616' y2='0' gradientTransform='translate(58.655 3143.77) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.051' y2='8.082' gradientTransform='translate(71.204 3182.73)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.039' y2='-0.616' gradientTransform='translate(100.626 3189.39) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.446' y2='-0.865' gradientTransform='translate(51.69 3190.08)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(73.086 3136.3) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 58.345,3077.98 L 58.345,3186.44 L 98.838,3189.04 L 98.838,3083.47 L 58.345,3077.98 Z' stroke-width='8.676' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 58.345,3077.98 L 47.348,3088.66 L 47.348,3171.62 C 47.348,3171.9 47.343,3172.18 47.334,3172.47 L 47.336,3172.47 L 47.345,3172.46 L 47.348,3191.62 C 47.348,3191.9 47.343,3192.18 47.334,3192.47 L 47.336,3192.47 L 58.345,3186.44 L 58.345,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 58.345,3077.98 L 58.016,3078.3 L 58.016,3186.62 L 58.672,3186.01 L 58.672,3078.03 L 58.345,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='3.14' fill='%23000000'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 66.234,3133.61 L 66.228,3139.78 L 67.246,3139.89 L 67.251,3136.73 L 68.092,3137.64 L 68.848,3138.47 L 70.437,3140.21 L 71.947,3140.36 L 69.453,3137.63 L 71.931,3134.19 L 70.673,3134.07 L 68.696,3136.81 L 67.253,3135.24 L 67.253,3133.72 L 66.234,3133.61 Z M 72.45,3134.24 L 72.974,3135.4 L 75.356,3140.71 L 77.754,3135.89 L 78.273,3134.84 L 77.135,3134.72 L 76.609,3135.77 L 75.358,3138.29 L 74.115,3135.52 L 73.591,3134.36 L 72.45,3134.24 Z M 78.788,3134.89 L 78.8,3134.89 L 79.579,3136.07 L 80.979,3138.18 L 81.627,3139.15 L 82.404,3140.33 L 78.777,3139.96 L 78.774,3141.06 L 83.188,3141.51 L 84.466,3141.64 L 83.678,3140.46 L 82.259,3138.32 L 81.62,3137.35 L 80.85,3136.2 L 84.498,3136.57 L 84.501,3135.47 L 80.085,3135.02 L 80.075,3135.02 L 78.788,3134.89 Z M 86.234,3135.78 C 86.05,3135.85 85.884,3135.95 85.749,3136.09 C 85.604,3136.22 85.496,3136.39 85.418,3136.58 C 85.34,3136.78 85.3,3136.99 85.298,3137.22 L 85.291,3140.06 C 85.291,3140.29 85.33,3140.51 85.411,3140.71 C 85.489,3140.92 85.595,3141.11 85.742,3141.28 C 85.877,3141.44 86.043,3141.58 86.227,3141.68 C 86.413,3141.79 86.613,3141.85 86.825,3141.88 L 90.992,3142.3 L 90.992,3141.2 L 86.825,3140.77 C 86.726,3140.76 86.643,3140.73 86.563,3140.67 C 86.484,3140.61 86.425,3140.54 86.376,3140.45 C 86.328,3140.36 86.307,3140.26 86.307,3140.16 L 86.307,3139.59 L 89.976,3139.96 L 89.978,3138.86 L 86.307,3138.49 L 86.307,3137.32 C 86.307,3137.22 86.333,3137.13 86.379,3137.05 C 86.429,3136.96 86.489,3136.9 86.567,3136.86 C 86.648,3136.82 86.73,3136.8 86.829,3136.81 L 90.997,3137.23 L 90.999,3136.13 L 86.829,3135.71 C 86.62,3135.69 86.422,3135.71 86.234,3135.78 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' stroke-linejoin='miter' stroke-linecap='round' stroke-width='0.269'%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(67.439 3095.81) rotate(90) skewX(-7.19473)' fill='%2339332f'/%3E%3Crect x='-2.276' y='-2.143' width='4.552' height='4.287' transform='translate(73.014 3096.51) rotate(90) skewX(-7.19943)' fill='%23b6b6b3'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(78.588 3097.21) rotate(90) skewX(-7.19473)' fill='%23dcd5c6'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(84.165 3097.92) rotate(90) skewX(-7.19473)' fill='%23ccb7b3'/%3E%3Crect x='-2.276' y='-2.144' width='4.553' height='4.289' transform='translate(89.742 3098.62) rotate(90) skewX(-7.19708)' fill='%23d8b590'/%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-linecap='round' stroke-width='0.361' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 69.632,3100.75 C 69.595,3100.77 69.561,3100.79 69.529,3100.81 C 69.501,3100.84 69.478,3100.87 69.462,3100.91 C 69.446,3100.95 69.437,3100.99 69.437,3101.03 L 69.437,3101.59 C 69.437,3101.64 69.446,3101.68 69.462,3101.72 C 69.478,3101.76 69.501,3101.8 69.529,3101.83 C 69.561,3101.87 69.595,3101.9 69.632,3101.92 C 69.671,3101.94 69.715,3101.95 69.758,3101.96 L 70.634,3102.06 L 70.634,3101.85 L 69.758,3101.74 C 69.738,3101.74 69.717,3101.73 69.703,3101.72 C 69.685,3101.71 69.673,3101.69 69.664,3101.68 C 69.655,3101.66 69.65,3101.64 69.65,3101.62 L 69.65,3101.51 L 70.418,3101.6 L 70.418,3101.38 L 69.65,3101.29 L 69.65,3101.06 C 69.65,3101.04 69.655,3101.02 69.664,3101 C 69.673,3100.99 69.685,3100.98 69.703,3100.97 C 69.717,3100.96 69.738,3100.96 69.758,3100.96 L 70.634,3101.06 L 70.634,3100.85 L 69.758,3100.74 C 69.715,3100.74 69.671,3100.74 69.632,3100.75 Z M 71.016,3100.93 C 70.979,3100.95 70.945,3100.97 70.915,3100.99 C 70.885,3101.02 70.86,3101.05 70.841,3101.09 C 70.83,3101.12 70.821,3101.14 70.814,3101.17 C 70.807,3101.19 70.802,3101.22 70.802,3101.26 L 70.802,3102.08 L 71.016,3102.11 L 71.016,3101.26 C 71.021,3101.24 71.03,3101.21 71.041,3101.19 C 71.057,3101.17 71.073,3101.16 71.094,3101.15 C 71.115,3101.14 71.138,3101.13 71.163,3101.13 L 71.791,3101.2 L 71.791,3100.99 L 71.181,3100.92 L 71.094,3100.92 C 71.069,3100.92 71.041,3100.92 71.016,3100.93 Z M 72.158,3101.06 C 72.119,3101.07 72.087,3101.09 72.057,3101.12 C 72.027,3101.14 72.004,3101.17 71.988,3101.21 C 71.97,3101.25 71.963,3101.29 71.963,3101.34 L 71.963,3101.89 C 71.963,3101.94 71.97,3101.98 71.988,3102.03 C 72.004,3102.07 72.027,3102.1 72.057,3102.14 C 72.087,3102.17 72.119,3102.2 72.158,3102.22 C 72.2,3102.24 72.239,3102.26 72.285,3102.26 L 73.158,3102.37 L 73.158,3102.15 L 72.285,3102.04 C 72.264,3102.04 72.246,3102.03 72.23,3102.02 C 72.211,3102.01 72.202,3101.99 72.191,3101.97 C 72.179,3101.96 72.175,3101.94 72.175,3101.92 L 72.175,3101.81 L 72.945,3101.9 L 72.945,3101.68 L 72.175,3101.59 L 72.175,3101.36 C 72.175,3101.34 72.179,3101.32 72.191,3101.31 C 72.202,3101.29 72.211,3101.28 72.23,3101.27 C 72.246,3101.26 72.264,3101.26 72.285,3101.26 L 73.158,3101.37 L 73.158,3101.15 L 72.285,3101.05 L 72.218,3101.05 C 72.2,3101.05 72.177,3101.05 72.158,3101.06 Z M 73.331,3101.17 L 73.331,3102.38 L 73.542,3102.24 L 73.928,3101.99 L 74.312,3102.34 L 74.526,3102.53 L 74.526,3101.31 L 74.312,3101.29 L 74.312,3102.06 L 74.103,3101.88 L 73.928,3101.72 L 73.756,3101.83 L 73.542,3101.97 L 73.542,3101.19 L 73.331,3101.17 Z M 74.894,3101.38 C 74.857,3101.4 74.823,3101.42 74.795,3101.44 C 74.763,3101.47 74.742,3101.5 74.726,3101.53 C 74.708,3101.57 74.699,3101.62 74.699,3101.66 L 74.699,3102.22 C 74.699,3102.27 74.708,3102.31 74.726,3102.35 C 74.742,3102.39 74.763,3102.43 74.795,3102.46 C 74.823,3102.5 74.857,3102.52 74.894,3102.55 C 74.935,3102.57 74.977,3102.58 75.02,3102.59 L 75.896,3102.69 L 75.896,3102.47 L 75.02,3102.37 C 75,3102.37 74.984,3102.36 74.965,3102.35 C 74.949,3102.34 74.938,3102.32 74.928,3102.3 C 74.917,3102.28 74.912,3102.27 74.912,3102.25 L 74.912,3102.13 L 75.68,3102.22 L 75.68,3102.01 L 74.912,3101.92 L 74.912,3101.68 C 74.912,3101.67 74.917,3101.65 74.928,3101.63 C 74.938,3101.62 74.949,3101.61 74.965,3101.6 C 74.984,3101.59 75,3101.58 75.02,3101.59 L 75.896,3101.69 L 75.896,3101.48 L 75.02,3101.37 L 74.954,3101.37 C 74.935,3101.37 74.915,3101.38 74.894,3101.38 Z M 76.066,3101.49 L 76.066,3102.71 L 76.28,3102.57 L 77.05,3102.06 L 77.05,3102.83 L 77.266,3102.86 L 77.266,3101.64 L 77.05,3101.78 L 76.28,3102.29 L 76.28,3101.52 L 76.066,3101.49 Z M 77.924,3101.72 L 77.924,3102.72 L 77.434,3102.66 L 77.434,3102.88 L 78.632,3103.02 L 78.632,3102.8 L 78.14,3102.74 L 78.14,3101.74 L 77.924,3101.72 Z M 79.036,3101.88 C 78.99,3101.9 78.951,3101.92 78.917,3101.95 C 78.882,3101.98 78.852,3102.02 78.836,3102.06 C 78.816,3102.11 78.806,3102.16 78.804,3102.21 L 79.02,3102.23 C 79.02,3102.2 79.027,3102.17 79.043,3102.15 C 79.055,3102.13 79.078,3102.11 79.098,3102.1 C 79.126,3102.09 79.154,3102.08 79.183,3102.09 L 79.558,3102.13 C 79.588,3102.13 79.618,3102.15 79.641,3102.17 C 79.669,3102.18 79.687,3102.2 79.703,3102.23 C 79.717,3102.26 79.726,3102.29 79.726,3102.32 C 79.726,3102.35 79.717,3102.37 79.703,3102.4 C 79.687,3102.42 79.669,3102.44 79.641,3102.45 C 79.618,3102.46 79.588,3102.47 79.558,3102.46 L 79.128,3102.41 C 79.085,3102.41 79.043,3102.41 79.004,3102.42 C 78.965,3102.43 78.931,3102.45 78.903,3102.48 C 78.887,3102.49 78.875,3102.51 78.862,3102.52 C 78.843,3102.55 78.829,3102.57 78.818,3102.61 C 78.809,3102.64 78.804,3102.67 78.804,3102.7 L 78.804,3102.71 C 78.806,3102.76 78.813,3102.8 78.829,3102.84 C 78.848,3102.88 78.871,3102.92 78.898,3102.95 C 78.931,3102.99 78.963,3103.02 79,3103.04 C 79.041,3103.06 79.082,3103.07 79.128,3103.08 L 79.613,3103.14 C 79.657,3103.14 79.701,3103.14 79.737,3103.12 C 79.779,3103.11 79.813,3103.09 79.841,3103.07 C 79.871,3103.04 79.894,3103.01 79.912,3102.97 C 79.926,3102.93 79.937,3102.89 79.937,3102.85 L 79.937,3102.84 L 79.724,3102.81 L 79.724,3102.82 C 79.724,3102.84 79.717,3102.86 79.708,3102.87 C 79.698,3102.89 79.682,3102.9 79.669,3102.91 C 79.652,3102.92 79.634,3102.92 79.613,3102.92 L 79.128,3102.86 C 79.108,3102.86 79.089,3102.85 79.073,3102.84 C 79.055,3102.83 79.043,3102.81 79.032,3102.79 C 79.023,3102.77 79.018,3102.76 79.018,3102.74 L 79.018,3102.73 C 79.018,3102.71 79.023,3102.69 79.032,3102.67 C 79.043,3102.66 79.055,3102.65 79.073,3102.64 C 79.089,3102.63 79.108,3102.63 79.128,3102.63 L 79.558,3102.68 L 79.636,3102.68 C 79.664,3102.68 79.689,3102.67 79.714,3102.66 C 79.76,3102.65 79.804,3102.63 79.836,3102.59 C 79.839,3102.59 79.841,3102.58 79.843,3102.58 C 79.848,3102.58 79.848,3102.58 79.85,3102.57 C 79.878,3102.55 79.898,3102.51 79.914,3102.47 C 79.928,3102.43 79.937,3102.39 79.937,3102.34 C 79.937,3102.29 79.926,3102.24 79.908,3102.19 C 79.887,3102.14 79.859,3102.1 79.827,3102.06 C 79.79,3102.02 79.751,3101.99 79.705,3101.96 C 79.659,3101.93 79.611,3101.92 79.558,3101.92 L 79.183,3101.87 C 79.133,3101.86 79.082,3101.87 79.036,3101.88 Z M 81.174,3102.14 C 81.128,3102.15 81.089,3102.17 81.055,3102.2 C 81.02,3102.23 80.993,3102.27 80.972,3102.32 C 80.954,3102.36 80.944,3102.41 80.944,3102.46 L 81.156,3102.49 C 81.156,3102.46 81.165,3102.43 81.179,3102.41 C 81.195,3102.38 81.213,3102.37 81.239,3102.36 C 81.264,3102.34 81.291,3102.34 81.321,3102.34 L 81.696,3102.39 C 81.726,3102.39 81.753,3102.4 81.781,3102.42 C 81.804,3102.44 81.825,3102.46 81.839,3102.49 C 81.855,3102.51 81.862,3102.54 81.862,3102.57 C 81.862,3102.6 81.855,3102.63 81.839,3102.66 C 81.825,3102.68 81.804,3102.69 81.781,3102.71 C 81.753,3102.72 81.726,3102.72 81.696,3102.72 L 81.266,3102.67 C 81.222,3102.66 81.179,3102.67 81.144,3102.68 C 81.103,3102.69 81.068,3102.71 81.041,3102.73 C 81.025,3102.75 81.011,3102.76 80.999,3102.78 C 80.981,3102.8 80.967,3102.83 80.956,3102.86 C 80.949,3102.89 80.944,3102.92 80.944,3102.96 L 80.944,3102.97 C 80.944,3103.01 80.951,3103.06 80.967,3103.1 C 80.986,3103.14 81.009,3103.17 81.039,3103.21 C 81.066,3103.24 81.098,3103.27 81.14,3103.29 C 81.179,3103.31 81.22,3103.33 81.266,3103.33 L 81.749,3103.39 C 81.795,3103.4 81.836,3103.39 81.878,3103.38 C 81.917,3103.37 81.949,3103.35 81.979,3103.32 C 82.009,3103.29 82.032,3103.26 82.05,3103.22 C 82.066,3103.19 82.075,3103.15 82.075,3103.1 L 82.075,3103.1 L 81.862,3103.07 L 81.862,3103.07 C 81.862,3103.1 81.855,3103.11 81.845,3103.13 C 81.836,3103.15 81.822,3103.15 81.804,3103.16 C 81.788,3103.17 81.772,3103.17 81.749,3103.17 L 81.266,3103.12 C 81.243,3103.11 81.227,3103.1 81.211,3103.09 C 81.195,3103.08 81.179,3103.06 81.17,3103.05 C 81.16,3103.03 81.156,3103.01 81.156,3102.99 L 81.156,3102.98 C 81.156,3102.96 81.16,3102.95 81.17,3102.93 C 81.179,3102.91 81.195,3102.9 81.211,3102.89 C 81.227,3102.89 81.243,3102.88 81.266,3102.89 L 81.696,3102.94 L 81.776,3102.94 C 81.802,3102.93 81.827,3102.93 81.85,3102.92 C 81.898,3102.9 81.94,3102.88 81.976,3102.85 C 81.976,3102.84 81.979,3102.84 81.981,3102.84 C 81.983,3102.84 81.986,3102.83 81.988,3102.83 C 82.018,3102.8 82.036,3102.76 82.05,3102.73 C 82.066,3102.69 82.075,3102.65 82.075,3102.6 C 82.073,3102.55 82.064,3102.49 82.043,3102.45 C 82.025,3102.4 81.997,3102.35 81.963,3102.31 C 81.928,3102.27 81.889,3102.24 81.843,3102.22 C 81.797,3102.19 81.749,3102.17 81.696,3102.17 L 81.321,3102.12 C 81.268,3102.12 81.22,3102.12 81.174,3102.14 Z M 82.443,3102.28 C 82.406,3102.3 82.372,3102.32 82.342,3102.34 C 82.314,3102.37 82.289,3102.4 82.273,3102.44 C 82.257,3102.48 82.248,3102.52 82.248,3102.56 L 82.248,3103.12 C 82.248,3103.17 82.257,3103.21 82.273,3103.25 C 82.289,3103.29 82.314,3103.33 82.342,3103.36 C 82.372,3103.4 82.406,3103.43 82.443,3103.45 C 82.482,3103.47 82.524,3103.49 82.57,3103.49 L 83.443,3103.59 L 83.443,3103.37 L 82.57,3103.27 C 82.551,3103.27 82.53,3103.26 82.514,3103.25 C 82.498,3103.24 82.484,3103.22 82.475,3103.2 C 82.466,3103.19 82.462,3103.17 82.462,3103.15 L 82.462,3103.03 L 83.232,3103.13 L 83.232,3102.91 L 82.462,3102.82 L 82.462,3102.59 C 82.462,3102.57 82.466,3102.55 82.475,3102.53 C 82.484,3102.52 82.498,3102.51 82.514,3102.5 C 82.53,3102.49 82.551,3102.49 82.57,3102.49 L 83.443,3102.6 L 83.443,3102.38 L 82.57,3102.27 C 82.524,3102.27 82.482,3102.27 82.443,3102.28 Z M 83.613,3102.4 L 83.613,3103.61 L 84.369,3103.7 C 84.415,3103.7 84.457,3103.7 84.496,3103.69 C 84.533,3103.68 84.565,3103.66 84.597,3103.63 C 84.625,3103.61 84.65,3103.57 84.666,3103.54 C 84.682,3103.5 84.691,3103.46 84.691,3103.41 C 84.691,3103.37 84.682,3103.33 84.666,3103.28 C 84.652,3103.25 84.629,3103.21 84.602,3103.17 C 84.572,3103.14 84.54,3103.11 84.503,3103.09 C 84.473,3103.07 84.443,3103.06 84.411,3103.05 L 84.581,3102.73 L 84.691,3102.52 L 84.452,3102.49 L 84.342,3102.7 L 84.227,3102.91 L 84.222,3102.92 C 84.204,3102.95 84.176,3102.97 84.147,3102.99 C 84.117,3103 84.08,3103.01 84.041,3103 L 83.829,3102.98 L 83.829,3102.42 L 83.613,3102.4 Z M 84.861,3102.55 L 84.861,3103.76 L 85.078,3103.79 L 85.078,3102.57 L 84.861,3102.55 Z M 85.445,3102.64 C 85.406,3102.66 85.372,3102.67 85.344,3102.7 C 85.314,3102.73 85.294,3102.76 85.275,3102.8 C 85.259,3102.84 85.25,3102.88 85.25,3102.92 L 85.25,3103.48 C 85.25,3103.53 85.259,3103.57 85.275,3103.61 C 85.294,3103.65 85.314,3103.69 85.344,3103.72 C 85.372,3103.76 85.406,3103.78 85.445,3103.81 C 85.484,3103.83 85.528,3103.84 85.572,3103.85 L 86.445,3103.95 L 86.445,3103.73 L 85.572,3103.63 C 85.549,3103.63 85.533,3103.62 85.517,3103.61 C 85.498,3103.6 85.487,3103.58 85.477,3103.56 C 85.466,3103.54 85.461,3103.53 85.459,3103.51 L 85.459,3103.39 L 86.231,3103.49 L 86.231,3103.27 L 85.459,3103.18 L 85.459,3102.95 C 85.461,3102.93 85.466,3102.91 85.477,3102.89 C 85.487,3102.88 85.498,3102.86 85.517,3102.86 C 85.533,3102.85 85.549,3102.85 85.572,3102.85 L 86.445,3102.95 L 86.445,3102.74 L 85.572,3102.63 C 85.528,3102.63 85.484,3102.63 85.445,3102.64 Z M 86.848,3102.81 C 86.804,3102.83 86.765,3102.85 86.728,3102.88 C 86.694,3102.91 86.666,3102.95 86.648,3102.99 C 86.627,3103.04 86.618,3103.09 86.618,3103.14 L 86.831,3103.17 C 86.831,3103.14 86.838,3103.11 86.854,3103.09 C 86.868,3103.06 86.889,3103.04 86.912,3103.03 C 86.937,3103.02 86.965,3103.02 86.997,3103.02 L 87.372,3103.06 C 87.402,3103.07 87.429,3103.08 87.452,3103.1 C 87.48,3103.12 87.498,3103.14 87.514,3103.16 C 87.528,3103.19 87.537,3103.22 87.537,3103.25 C 87.537,3103.28 87.528,3103.31 87.514,3103.33 C 87.498,3103.35 87.48,3103.37 87.452,3103.39 C 87.429,3103.4 87.402,3103.4 87.372,3103.4 L 86.94,3103.34 C 86.896,3103.34 86.857,3103.34 86.815,3103.35 C 86.779,3103.37 86.746,3103.39 86.714,3103.41 C 86.7,3103.43 86.687,3103.44 86.673,3103.46 C 86.657,3103.48 86.643,3103.51 86.634,3103.54 C 86.622,3103.57 86.618,3103.6 86.618,3103.64 L 86.618,3103.64 C 86.618,3103.69 86.625,3103.73 86.643,3103.77 C 86.659,3103.82 86.682,3103.86 86.714,3103.89 C 86.742,3103.92 86.774,3103.95 86.813,3103.97 C 86.854,3103.99 86.896,3104 86.94,3104.01 L 87.427,3104.07 C 87.471,3104.08 87.512,3104.07 87.551,3104.06 C 87.59,3104.04 87.625,3104.03 87.652,3104 C 87.684,3103.97 87.707,3103.94 87.723,3103.9 C 87.742,3103.87 87.749,3103.83 87.749,3103.78 L 87.749,3103.77 L 87.535,3103.74 L 87.535,3103.75 C 87.535,3103.77 87.53,3103.79 87.519,3103.81 C 87.51,3103.82 87.496,3103.83 87.482,3103.84 C 87.464,3103.85 87.448,3103.85 87.427,3103.85 L 86.94,3103.79 C 86.919,3103.79 86.903,3103.78 86.884,3103.77 C 86.868,3103.76 86.857,3103.74 86.845,3103.73 C 86.836,3103.71 86.829,3103.68 86.829,3103.67 L 86.829,3103.66 C 86.829,3103.64 86.836,3103.62 86.845,3103.61 C 86.857,3103.59 86.868,3103.58 86.884,3103.57 C 86.903,3103.56 86.919,3103.56 86.94,3103.56 L 87.372,3103.61 C 87.427,3103.62 87.48,3103.62 87.528,3103.6 C 87.574,3103.58 87.615,3103.56 87.65,3103.52 C 87.65,3103.52 87.654,3103.52 87.657,3103.51 C 87.659,3103.51 87.661,3103.51 87.664,3103.51 C 87.691,3103.48 87.71,3103.44 87.728,3103.4 C 87.742,3103.36 87.749,3103.32 87.749,3103.28 C 87.749,3103.22 87.739,3103.17 87.719,3103.12 C 87.698,3103.07 87.673,3103.03 87.641,3102.99 C 87.604,3102.95 87.562,3102.92 87.517,3102.89 C 87.473,3102.87 87.425,3102.86 87.372,3102.85 L 86.997,3102.8 C 86.944,3102.8 86.894,3102.8 86.848,3102.81 Z M 83.829,3103.2 L 84.369,3103.26 C 84.376,3103.26 84.386,3103.26 84.392,3103.27 C 84.399,3103.27 84.409,3103.27 84.415,3103.28 C 84.434,3103.29 84.45,3103.3 84.461,3103.32 C 84.473,3103.34 84.478,3103.36 84.478,3103.39 C 84.478,3103.4 84.475,3103.42 84.468,3103.43 C 84.461,3103.45 84.455,3103.45 84.445,3103.46 C 84.441,3103.47 84.429,3103.48 84.418,3103.48 C 84.411,3103.48 84.402,3103.48 84.395,3103.49 L 84.369,3103.49 L 83.829,3103.42 L 83.829,3103.2 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 75.027,3130.62 C 74.986,3130.63 74.945,3130.64 74.905,3130.65 C 74.85,3130.68 74.8,3130.71 74.756,3130.75 C 74.71,3130.79 74.676,3130.84 74.648,3130.89 C 74.63,3130.93 74.614,3130.97 74.604,3131.01 C 74.595,3131.05 74.591,3131.09 74.588,3131.14 L 74.588,3132.37 L 74.908,3132.4 L 74.908,3131.14 C 74.915,3131.1 74.926,3131.07 74.947,3131.04 C 74.968,3131.01 74.993,3130.99 75.023,3130.97 C 75.055,3130.95 75.089,3130.94 75.126,3130.94 L 76.064,3131.04 L 76.064,3130.71 L 75.156,3130.62 C 75.112,3130.62 75.069,3130.62 75.027,3130.62 Z M 76.319,3130.74 L 76.319,3132.55 L 76.639,3132.58 L 76.639,3130.77 L 76.319,3130.74 Z M 77.443,3130.93 C 77.335,3130.96 77.241,3131.02 77.158,3131.09 C 77.078,3131.17 77.013,3131.26 76.967,3131.36 C 76.921,3131.47 76.898,3131.58 76.896,3131.7 C 76.898,3131.83 76.921,3131.95 76.967,3132.06 C 77.013,3132.18 77.078,3132.28 77.158,3132.37 C 77.241,3132.46 77.335,3132.54 77.443,3132.59 C 77.551,3132.65 77.666,3132.69 77.79,3132.7 L 78.687,3132.79 L 78.687,3132.47 L 77.79,3132.38 C 77.712,3132.37 77.636,3132.35 77.567,3132.31 C 77.498,3132.27 77.436,3132.22 77.386,3132.17 C 77.333,3132.11 77.292,3132.04 77.262,3131.97 C 77.232,3131.9 77.216,3131.82 77.216,3131.74 C 77.216,3131.66 77.232,3131.58 77.262,3131.52 C 77.292,3131.45 77.333,3131.39 77.386,3131.34 C 77.436,3131.3 77.498,3131.26 77.567,3131.24 C 77.636,3131.22 77.712,3131.21 77.79,3131.22 L 78.367,3131.28 L 78.367,3131.62 L 77.79,3131.56 L 77.79,3131.89 L 78.687,3131.98 L 78.687,3130.99 L 77.79,3130.89 L 77.609,3130.89 C 77.551,3130.9 77.496,3130.91 77.443,3130.93 Z M 78.94,3131.01 L 78.94,3132.82 L 79.259,3132.85 L 79.259,3132.2 L 80.411,3132.32 L 80.411,3132.97 L 80.731,3133.01 L 80.731,3131.2 L 80.411,3131.16 L 80.411,3131.99 L 79.259,3131.88 L 79.259,3131.05 L 78.94,3131.01 Z M 81.719,3131.3 L 81.719,3132.78 L 80.986,3132.71 L 80.986,3133.03 L 82.772,3133.22 L 82.772,3132.89 L 82.039,3132.82 L 82.039,3131.33 L 81.719,3131.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 58.345,3186.44 L 47.341,3192.47 L 86.411,3194.63 L 98.838,3189.35 L 98.838,3189.04 L 58.345,3186.44 Z' stroke-width='1.11' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 58.672,3186.02 L 58.016,3186.62 L 98.838,3189.28 L 98.838,3188.63 L 58.672,3186.02 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 58.016,3185.43 L 47.345,3191.39 L 47.348,3191.62 C 47.348,3191.9 47.343,3192.18 47.334,3192.47 L 58.016,3186.62 L 58.016,3185.43 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ORIGINAL_individuals {
  width: 100%;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.ORIGINAL_individuals--MONO {
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' standalone='no'?%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!--Generator: Xara Designer (www.xara.com), SVG filter version: 6.6.0.0--%3E%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='637.997 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.89' y2='69.197' gradientTransform='translate(682.074 2784.99)'%3E%3Cstop offset='0' stop-color='%23d1c3bf'/%3E%3Cstop offset='1' stop-color='%23ece4df'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.717' y2='69.453' gradientTransform='translate(669.737 2787.13)'%3E%3Cstop offset='0' stop-color='%23bcafac'/%3E%3Cstop offset='1' stop-color='%23e3d8d6'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.402' y2='7.324' gradientTransform='translate(682.052 2854.66)'%3E%3Cstop offset='0' stop-color='%23d0c2be'/%3E%3Cstop offset='1' stop-color='%23ddceca'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.8' gradientTransform='translate(665.757 2861.83)'%3E%3Cstop offset='0' stop-color='%23a99e9a'/%3E%3Cstop offset='1' stop-color='%23c9bbb8'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.569' gradientTransform='translate(711.058 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23ccbeba'/%3E%3Cstop offset='1' stop-color='%23d1c3bf'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.569' y2='0' gradientTransform='translate(672.202 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c2b5b1'/%3E%3Cstop offset='1' stop-color='%23cabcb9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(696.325 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 671.917,2776.57 L 671.917,2858.45 L 732.748,2862.36 C 732.79,2862.31 732.822,2862.24 732.822,2862.16 L 732.822,2784.82 L 671.917,2776.57 Z' stroke-width='8.03' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 671.917,2776.57 L 659.842,2788.29 L 659.835,2865.07 L 671.917,2858.45 L 671.917,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 671.917,2858.45 L 659.835,2865.07 L 718.869,2868.31 L 732.618,2862.45 C 732.665,2862.43 732.712,2862.4 732.748,2862.36 L 671.917,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 671.613,2857.52 L 659.831,2864.11 L 659.829,2865.07 L 671.613,2858.62 L 671.613,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill='%23000000' fill-rule='nonzero' stroke-width='2.907'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 688.787,2819.56 L 688.779,2826.71 L 689.96,2826.83 L 689.966,2823.18 L 690.941,2824.24 L 691.817,2825.19 L 693.659,2827.21 L 695.409,2827.39 L 692.52,2824.22 L 695.393,2820.23 L 693.935,2820.09 L 691.643,2823.27 L 689.969,2821.45 L 689.969,2819.68 L 688.787,2819.56 Z M 695.994,2820.29 L 696.601,2821.63 L 699.363,2827.79 L 702.144,2822.2 L 702.747,2820.98 L 701.428,2820.85 L 700.818,2822.06 L 699.367,2824.98 L 697.92,2821.76 L 697.318,2820.43 L 695.994,2820.29 Z M 703.344,2821.04 L 703.355,2821.04 L 704.261,2822.41 L 705.883,2824.86 L 706.634,2825.98 L 707.536,2827.35 L 703.329,2826.92 L 703.327,2828.19 L 708.445,2828.71 L 709.926,2828.87 L 709.013,2827.49 L 707.371,2825.01 L 706.628,2823.89 L 705.734,2822.56 L 709.964,2822.99 L 709.966,2821.71 L 704.846,2821.19 L 704.839,2821.19 L 703.344,2821.04 Z M 711.977,2822.07 C 711.764,2822.15 711.571,2822.27 711.413,2822.43 C 711.247,2822.59 711.12,2822.78 711.033,2823 C 710.939,2823.23 710.894,2823.47 710.892,2823.74 L 710.886,2827.03 C 710.886,2827.3 710.93,2827.55 711.024,2827.79 C 711.113,2828.04 711.239,2828.25 711.407,2828.45 C 711.564,2828.64 711.756,2828.8 711.968,2828.92 C 712.184,2829.04 712.415,2829.12 712.663,2829.14 L 717.495,2829.63 L 717.495,2828.36 L 712.663,2827.86 C 712.55,2827.85 712.45,2827.81 712.358,2827.74 C 712.266,2827.68 712.198,2827.59 712.143,2827.49 C 712.088,2827.38 712.062,2827.27 712.062,2827.15 L 712.062,2826.49 L 716.317,2826.92 L 716.317,2825.64 L 712.062,2825.21 L 712.062,2823.86 C 712.062,2823.74 712.092,2823.63 712.147,2823.54 C 712.204,2823.45 712.273,2823.37 712.362,2823.33 C 712.456,2823.27 712.554,2823.26 712.669,2823.27 L 717.501,2823.76 L 717.503,2822.48 L 712.669,2821.99 C 712.426,2821.97 712.195,2821.99 711.977,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 672.218,2858.06 L 671.613,2858.62 L 732.307,2862.58 L 732.618,2862.45 C 732.72,2862.41 732.822,2862.32 732.822,2862.16 L 732.822,2862.01 L 672.218,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 671.613,2858.62 L 671.611,2776.86 L 671.917,2776.57 L 672.218,2776.61 L 672.218,2858.06 L 671.613,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.068' fill='%23000000'%3E%3Cpath d='M 695.275,2815.57 C 695.125,2815.62 694.994,2815.7 694.878,2815.8 C 694.765,2815.9 694.675,2816.03 694.612,2816.17 C 694.549,2816.32 694.516,2816.48 694.514,2816.65 C 694.516,2816.83 694.549,2816.99 694.612,2817.15 C 694.675,2817.31 694.765,2817.45 694.878,2817.58 C 694.994,2817.71 695.125,2817.81 695.275,2817.89 C 695.425,2817.97 695.587,2818.02 695.759,2818.04 C 695.931,2818.06 696.092,2818.04 696.241,2817.99 C 696.393,2817.94 696.524,2817.87 696.638,2817.76 C 696.752,2817.66 696.843,2817.54 696.906,2817.39 C 696.969,2817.25 697.002,2817.09 697.004,2816.91 C 697.002,2816.74 696.969,2816.57 696.906,2816.41 C 696.843,2816.25 696.752,2816.11 696.638,2815.99 C 696.524,2815.86 696.393,2815.75 696.241,2815.67 C 696.092,2815.59 695.931,2815.54 695.759,2815.53 C 695.587,2815.51 695.425,2815.53 695.275,2815.57 Z M 697.266,2815.68 L 697.266,2818.19 L 698.837,2818.36 L 698.97,2818.36 C 699.015,2818.35 699.057,2818.34 699.097,2818.33 C 699.179,2818.3 699.249,2818.26 699.31,2818.21 C 699.372,2818.15 699.418,2818.09 699.454,2818.01 C 699.487,2817.93 699.503,2817.84 699.506,2817.75 C 699.503,2817.66 699.489,2817.57 699.455,2817.49 C 699.422,2817.4 699.377,2817.33 699.318,2817.26 C 699.259,2817.19 699.192,2817.14 699.115,2817.09 C 699.055,2817.06 698.991,2817.03 698.923,2817.02 L 699.278,2816.34 L 699.506,2815.91 L 699.009,2815.86 L 698.781,2816.28 L 698.542,2816.73 L 698.531,2816.75 C 698.49,2816.81 698.44,2816.86 698.373,2816.89 C 698.309,2816.92 698.235,2816.93 698.155,2816.93 L 697.709,2816.88 L 697.709,2815.72 L 697.266,2815.68 Z M 699.863,2815.95 L 699.863,2818.47 L 700.308,2818.52 L 700.308,2816 L 699.863,2815.95 Z M 696.07,2816.07 C 696.166,2816.12 696.249,2816.19 696.326,2816.27 C 696.398,2816.35 696.455,2816.44 696.494,2816.55 C 696.537,2816.65 696.559,2816.76 696.559,2816.87 C 696.559,2816.98 696.537,2817.08 696.494,2817.17 C 696.455,2817.27 696.398,2817.35 696.326,2817.41 C 696.249,2817.48 696.166,2817.53 696.07,2817.56 C 695.973,2817.59 695.868,2817.6 695.759,2817.59 C 695.649,2817.58 695.544,2817.55 695.448,2817.49 C 695.35,2817.44 695.265,2817.38 695.192,2817.3 C 695.121,2817.21 695.062,2817.12 695.021,2817.02 C 694.981,2816.92 694.959,2816.81 694.959,2816.7 C 694.959,2816.59 694.981,2816.48 695.021,2816.39 C 695.062,2816.3 695.121,2816.22 695.192,2816.15 C 695.265,2816.09 695.35,2816.04 695.448,2816 C 695.496,2815.99 695.546,2815.98 695.596,2815.97 L 695.759,2815.97 C 695.868,2815.99 695.973,2816.02 696.07,2816.07 Z M 701.426,2816.22 C 701.274,2816.27 701.142,2816.34 701.031,2816.45 C 700.915,2816.55 700.828,2816.67 700.761,2816.82 C 700.698,2816.96 700.666,2817.12 700.664,2817.3 C 700.666,2817.47 700.698,2817.64 700.761,2817.8 C 700.828,2817.95 700.915,2818.1 701.031,2818.22 C 701.142,2818.35 701.274,2818.45 701.426,2818.53 C 701.576,2818.62 701.736,2818.66 701.908,2818.68 L 703.154,2818.82 L 703.154,2818.36 L 701.908,2818.24 C 701.798,2818.22 701.694,2818.19 701.598,2818.14 C 701.503,2818.09 701.417,2818.02 701.343,2817.94 C 701.27,2817.86 701.213,2817.76 701.172,2817.66 C 701.129,2817.56 701.108,2817.46 701.108,2817.34 C 701.108,2817.23 701.129,2817.13 701.172,2817.03 C 701.213,2816.94 701.27,2816.86 701.343,2816.8 C 701.417,2816.73 701.503,2816.68 701.598,2816.65 C 701.644,2816.63 701.696,2816.62 701.747,2816.62 L 701.908,2816.62 L 702.709,2816.7 L 702.709,2817.18 L 701.908,2817.1 L 701.908,2817.55 L 703.154,2817.68 L 703.154,2816.3 L 701.908,2816.17 C 701.736,2816.15 701.576,2816.17 701.426,2816.22 Z M 703.508,2816.34 L 703.508,2818.85 L 703.953,2818.9 L 703.953,2816.38 L 703.508,2816.34 Z M 704.308,2816.42 L 704.308,2818.92 L 704.753,2818.63 L 706.353,2817.55 L 706.353,2819.15 L 706.796,2819.19 L 706.796,2816.68 L 706.353,2816.98 L 704.753,2818.06 L 704.753,2816.47 L 704.308,2816.42 Z M 707.01,2816.7 L 707.239,2817.18 L 708.28,2819.35 L 709.322,2817.39 L 709.549,2816.97 L 709.051,2816.92 L 708.825,2817.34 L 708.28,2818.36 L 707.735,2817.23 L 707.509,2816.76 L 707.01,2816.7 Z M 710.278,2817.07 C 710.219,2817.08 710.162,2817.09 710.109,2817.11 C 710.031,2817.14 709.96,2817.18 709.901,2817.24 C 709.838,2817.3 709.788,2817.37 709.753,2817.44 C 709.725,2817.49 709.702,2817.55 709.689,2817.6 C 709.677,2817.66 709.668,2817.72 709.668,2817.78 L 709.668,2819.5 L 710.115,2819.54 L 710.115,2817.79 C 710.122,2817.73 710.139,2817.69 710.166,2817.65 C 710.194,2817.61 710.229,2817.58 710.273,2817.55 C 710.316,2817.53 710.362,2817.52 710.417,2817.51 L 711.72,2817.65 L 711.72,2817.2 L 710.457,2817.07 C 710.398,2817.06 710.334,2817.06 710.278,2817.07 Z M 697.709,2817.33 L 698.837,2817.45 C 698.853,2817.45 698.869,2817.45 698.884,2817.46 C 698.899,2817.46 698.914,2817.47 698.929,2817.48 C 698.972,2817.5 699.005,2817.53 699.027,2817.57 C 699.053,2817.61 699.064,2817.66 699.066,2817.7 C 699.064,2817.74 699.055,2817.78 699.039,2817.8 C 699.023,2817.83 699.01,2817.85 698.998,2817.86 C 698.983,2817.87 698.963,2817.88 698.936,2817.9 C 698.909,2817.91 698.876,2817.91 698.837,2817.91 L 697.709,2817.79 L 697.709,2817.33 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cg id='Group_6'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.248'%3E%3Crect x='-2.636' y='-2.484' width='5.273' height='4.968' transform='translate(699.892 2791.06) rotate(90) skewX(-7.18724)' fill='%23000000'/%3E%3Crect x='-2.637' y='-2.484' width='5.275' height='4.969' transform='translate(706.35 2791.87) rotate(90) skewX(-7.20126)' fill='%23ffffff'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.053' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 696.548,2795.98 L 696.516,2797.5 L 696.744,2797.53 L 697.202,2796.64 L 697.612,2797.64 L 697.839,2797.66 L 697.87,2796.14 L 697.643,2796.12 L 697.622,2797.13 L 697.292,2796.35 L 697.123,2796.33 L 696.755,2797.02 L 696.775,2796.01 L 696.548,2795.98 Z M 698.526,2796.25 C 698.461,2796.27 698.404,2796.3 698.354,2796.35 C 698.317,2796.38 698.288,2796.41 698.266,2796.45 C 698.244,2796.49 698.229,2796.53 698.219,2796.58 C 698.208,2796.62 698.201,2796.68 698.198,2796.74 C 698.193,2796.8 698.191,2796.87 698.19,2796.95 C 698.189,2797.03 698.188,2797.1 698.189,2797.16 C 698.19,2797.22 698.194,2797.27 698.203,2797.32 C 698.211,2797.37 698.226,2797.42 698.245,2797.46 C 698.265,2797.5 698.293,2797.54 698.329,2797.58 C 698.376,2797.64 698.431,2797.68 698.495,2797.72 C 698.558,2797.75 698.631,2797.78 698.713,2797.79 C 698.795,2797.8 698.868,2797.79 698.932,2797.78 C 698.997,2797.76 699.054,2797.72 699.104,2797.68 C 699.141,2797.65 699.17,2797.62 699.192,2797.58 C 699.213,2797.54 699.229,2797.5 699.239,2797.45 C 699.25,2797.41 699.257,2797.35 699.26,2797.29 C 699.264,2797.23 699.266,2797.16 699.268,2797.08 C 699.269,2797 699.271,2796.93 699.269,2796.87 C 699.268,2796.81 699.264,2796.76 699.254,2796.71 C 699.246,2796.66 699.232,2796.61 699.213,2796.57 C 699.193,2796.53 699.165,2796.49 699.129,2796.44 C 699.082,2796.39 699.026,2796.34 698.964,2796.31 C 698.9,2796.28 698.827,2796.25 698.745,2796.24 C 698.664,2796.23 698.589,2796.24 698.526,2796.25 Z M 699.622,2796.37 L 699.589,2797.89 L 699.798,2797.91 L 700.514,2796.93 L 700.49,2798 L 700.717,2798.03 L 700.75,2796.51 L 700.541,2796.48 L 699.825,2797.46 L 699.849,2796.39 L 699.622,2796.37 Z M 698.741,2796.45 C 698.786,2796.45 698.827,2796.47 698.864,2796.49 C 698.901,2796.51 698.934,2796.54 698.962,2796.57 C 698.98,2796.59 698.995,2796.62 699.007,2796.64 C 699.018,2796.67 699.026,2796.7 699.031,2796.73 C 699.037,2796.77 699.04,2796.81 699.041,2796.86 C 699.042,2796.92 699.042,2796.98 699.04,2797.05 C 699.039,2797.13 699.037,2797.19 699.033,2797.24 C 699.03,2797.3 699.025,2797.34 699.018,2797.37 C 699.011,2797.41 699.002,2797.43 698.989,2797.46 C 698.978,2797.48 698.961,2797.5 698.943,2797.52 C 698.913,2797.54 698.88,2797.56 698.842,2797.57 C 698.804,2797.59 698.762,2797.59 698.717,2797.58 C 698.672,2797.58 698.63,2797.56 698.593,2797.54 C 698.556,2797.52 698.523,2797.49 698.496,2797.46 C 698.478,2797.44 698.463,2797.41 698.453,2797.39 C 698.441,2797.36 698.433,2797.33 698.427,2797.3 C 698.422,2797.26 698.418,2797.22 698.417,2797.16 C 698.416,2797.11 698.416,2797.05 698.417,2796.97 C 698.419,2796.9 698.422,2796.84 698.425,2796.79 C 698.428,2796.74 698.433,2796.69 698.44,2796.66 C 698.448,2796.63 698.457,2796.6 698.469,2796.57 C 698.482,2796.55 698.497,2796.53 698.515,2796.51 C 698.544,2796.49 698.578,2796.47 698.616,2796.46 C 698.654,2796.44 698.695,2796.44 698.741,2796.45 Z M 701.408,2796.62 C 701.343,2796.64 701.286,2796.67 701.236,2796.71 C 701.199,2796.74 701.17,2796.78 701.148,2796.82 C 701.126,2796.85 701.111,2796.9 701.101,2796.94 C 701.09,2796.99 701.083,2797.04 701.08,2797.1 C 701.077,2797.16 701.073,2797.23 701.072,2797.31 C 701.071,2797.39 701.07,2797.46 701.071,2797.52 C 701.072,2797.58 701.077,2797.64 701.085,2797.69 C 701.094,2797.74 701.108,2797.78 701.127,2797.82 C 701.147,2797.87 701.175,2797.91 701.211,2797.95 C 701.258,2798 701.314,2798.05 701.377,2798.08 C 701.44,2798.12 701.513,2798.14 701.595,2798.15 C 701.677,2798.16 701.751,2798.16 701.814,2798.14 C 701.879,2798.12 701.936,2798.09 701.986,2798.05 C 702.023,2798.01 702.052,2797.98 702.074,2797.94 C 702.096,2797.91 702.111,2797.86 702.121,2797.82 C 702.132,2797.77 702.139,2797.72 702.142,2797.66 C 702.146,2797.6 702.149,2797.53 702.15,2797.45 C 702.151,2797.37 702.153,2797.3 702.151,2797.24 C 702.15,2797.18 702.146,2797.12 702.138,2797.07 C 702.128,2797.02 702.114,2796.98 702.095,2796.93 C 702.075,2796.89 702.047,2796.85 702.011,2796.81 C 701.964,2796.75 701.908,2796.71 701.846,2796.67 C 701.782,2796.64 701.709,2796.62 701.627,2796.61 C 701.546,2796.6 701.472,2796.6 701.408,2796.62 Z M 701.623,2796.81 C 701.668,2796.82 701.709,2796.83 701.746,2796.85 C 701.784,2796.87 701.817,2796.9 701.845,2796.94 C 701.863,2796.96 701.877,2796.98 701.889,2797.01 C 701.9,2797.03 701.908,2797.06 701.914,2797.1 C 701.919,2797.13 701.922,2797.18 701.923,2797.23 C 701.924,2797.28 701.924,2797.34 701.922,2797.42 C 701.921,2797.49 701.919,2797.56 701.915,2797.61 C 701.913,2797.66 701.907,2797.7 701.9,2797.74 C 701.893,2797.77 701.884,2797.8 701.871,2797.82 C 701.86,2797.84 701.843,2797.87 701.825,2797.88 C 701.795,2797.91 701.762,2797.93 701.724,2797.94 C 701.686,2797.95 701.644,2797.95 701.599,2797.95 C 701.554,2797.94 701.513,2797.93 701.476,2797.91 C 701.438,2797.89 701.406,2797.86 701.378,2797.83 C 701.36,2797.8 701.345,2797.78 701.335,2797.75 C 701.323,2797.73 701.315,2797.7 701.309,2797.66 C 701.304,2797.63 701.3,2797.58 701.299,2797.53 C 701.298,2797.48 701.298,2797.42 701.299,2797.34 C 701.301,2797.26 701.304,2797.2 701.307,2797.15 C 701.311,2797.1 701.315,2797.06 701.323,2797.02 C 701.33,2796.99 701.339,2796.96 701.351,2796.94 C 701.364,2796.92 701.379,2796.9 701.397,2796.88 C 701.426,2796.85 701.46,2796.83 701.498,2796.82 C 701.536,2796.81 701.578,2796.8 701.623,2796.81 Z M 703.201,2796.83 C 703.138,2796.83 703.081,2796.85 703.027,2796.87 C 702.973,2796.89 702.922,2796.92 702.872,2796.97 L 703.018,2797.14 C 703.075,2797.09 703.134,2797.06 703.198,2797.04 C 703.261,2797.03 703.332,2797.03 703.407,2797.04 C 703.507,2797.05 703.583,2797.08 703.635,2797.13 C 703.687,2797.18 703.713,2797.24 703.712,2797.31 C 703.712,2797.35 703.706,2797.38 703.697,2797.4 C 703.686,2797.43 703.671,2797.45 703.649,2797.46 C 703.631,2797.48 703.608,2797.49 703.581,2797.49 C 703.554,2797.5 703.522,2797.51 703.484,2797.51 L 703.306,2797.51 C 703.245,2797.51 703.191,2797.52 703.143,2797.53 C 703.096,2797.55 703.055,2797.57 703.021,2797.59 C 702.984,2797.62 702.955,2797.66 702.936,2797.71 C 702.916,2797.76 702.906,2797.81 702.904,2797.87 C 702.902,2797.96 702.921,2798.04 702.96,2798.11 C 702.998,2798.18 703.055,2798.24 703.129,2798.29 C 703.202,2798.34 703.291,2798.37 703.396,2798.38 C 703.463,2798.39 703.523,2798.39 703.577,2798.39 C 703.632,2798.38 703.683,2798.37 703.73,2798.35 C 703.777,2798.33 703.822,2798.3 703.865,2798.27 L 703.726,2798.1 C 703.678,2798.14 703.626,2798.17 703.572,2798.18 C 703.516,2798.19 703.456,2798.19 703.392,2798.18 C 703.333,2798.17 703.283,2798.15 703.244,2798.13 C 703.203,2798.1 703.173,2798.07 703.153,2798.03 C 703.134,2798 703.125,2797.95 703.125,2797.91 C 703.126,2797.88 703.13,2797.85 703.138,2797.83 C 703.148,2797.81 703.163,2797.79 703.182,2797.77 C 703.201,2797.76 703.223,2797.75 703.25,2797.74 C 703.275,2797.73 703.308,2797.73 703.348,2797.72 L 703.528,2797.72 C 703.574,2797.72 703.613,2797.72 703.647,2797.71 C 703.681,2797.7 703.711,2797.7 703.737,2797.68 C 703.763,2797.67 703.787,2797.66 703.809,2797.64 C 703.85,2797.61 703.881,2797.57 703.903,2797.52 C 703.924,2797.47 703.935,2797.41 703.937,2797.35 C 703.938,2797.25 703.917,2797.17 703.873,2797.1 C 703.829,2797.03 703.766,2796.97 703.686,2796.92 C 703.606,2796.88 703.514,2796.85 703.407,2796.83 C 703.332,2796.82 703.264,2796.82 703.201,2796.83 Z M 704.252,2796.95 L 704.219,2798.47 L 705.177,2798.59 L 705.182,2798.39 L 704.451,2798.29 L 704.46,2797.85 L 705.083,2797.93 L 705.088,2797.72 L 704.465,2797.65 L 704.474,2797.19 L 705.205,2797.28 L 705.21,2797.07 L 704.252,2796.95 Z M 705.521,2797.11 L 705.49,2798.63 L 706.07,2798.71 C 706.165,2798.72 706.249,2798.71 706.318,2798.68 C 706.389,2798.65 706.443,2798.61 706.483,2798.54 C 706.522,2798.48 706.543,2798.41 706.545,2798.32 C 706.546,2798.25 706.534,2798.18 706.509,2798.13 C 706.484,2798.07 706.449,2798.02 706.405,2797.98 C 706.361,2797.93 706.311,2797.9 706.254,2797.88 L 706.614,2797.25 L 706.348,2797.22 L 706.019,2797.82 L 705.736,2797.78 L 705.748,2797.14 L 705.521,2797.11 Z M 706.9,2797.29 L 706.868,2798.81 L 707.095,2798.84 L 707.127,2797.32 L 706.9,2797.29 Z M 707.519,2797.37 L 707.488,2798.89 L 708.446,2799.01 L 708.45,2798.8 L 707.72,2798.71 L 707.729,2798.26 L 708.352,2798.34 L 708.356,2798.14 L 707.733,2798.06 L 707.743,2797.6 L 708.473,2797.69 L 708.477,2797.49 L 707.519,2797.37 Z M 708.981,2797.56 C 708.919,2797.56 708.861,2797.58 708.808,2797.6 C 708.753,2797.62 708.702,2797.65 708.652,2797.7 L 708.799,2797.87 C 708.855,2797.82 708.914,2797.79 708.978,2797.78 C 709.043,2797.76 709.112,2797.76 709.187,2797.77 C 709.287,2797.78 709.364,2797.81 709.416,2797.86 C 709.468,2797.91 709.493,2797.97 709.492,2798.04 C 709.492,2798.08 709.486,2798.11 709.477,2798.13 C 709.467,2798.16 709.452,2798.18 709.431,2798.19 C 709.411,2798.21 709.388,2798.22 709.361,2798.23 C 709.335,2798.23 709.302,2798.24 709.265,2798.24 L 709.087,2798.24 C 709.025,2798.24 708.971,2798.25 708.923,2798.26 C 708.876,2798.28 708.835,2798.3 708.802,2798.33 C 708.765,2798.36 708.736,2798.39 708.716,2798.44 C 708.696,2798.49 708.686,2798.54 708.685,2798.6 C 708.684,2798.69 708.702,2798.77 708.74,2798.85 C 708.779,2798.92 708.835,2798.97 708.909,2799.02 C 708.984,2799.07 709.073,2799.1 709.177,2799.11 C 709.243,2799.12 709.303,2799.12 709.358,2799.12 C 709.412,2799.11 709.463,2799.1 709.511,2799.08 C 709.557,2799.06 709.602,2799.03 709.646,2799 L 709.506,2798.84 C 709.459,2798.87 709.408,2798.9 709.352,2798.91 C 709.296,2798.92 709.236,2798.92 709.172,2798.91 C 709.113,2798.9 709.064,2798.89 709.024,2798.86 C 708.984,2798.84 708.953,2798.8 708.934,2798.77 C 708.914,2798.73 708.905,2798.68 708.905,2798.64 C 708.906,2798.61 708.911,2798.59 708.92,2798.56 C 708.928,2798.54 708.943,2798.52 708.963,2798.51 C 708.981,2798.49 709.004,2798.48 709.03,2798.47 C 709.055,2798.46 709.088,2798.46 709.128,2798.46 L 709.309,2798.45 C 709.354,2798.45 709.394,2798.45 709.427,2798.44 C 709.462,2798.44 709.491,2798.43 709.518,2798.42 C 709.543,2798.41 709.567,2798.39 709.589,2798.38 C 709.63,2798.34 709.661,2798.3 709.683,2798.25 C 709.704,2798.2 709.716,2798.14 709.718,2798.08 C 709.719,2797.99 709.697,2797.9 709.653,2797.83 C 709.609,2797.76 709.547,2797.7 709.467,2797.65 C 709.387,2797.61 709.294,2797.58 709.187,2797.56 C 709.113,2797.55 709.044,2797.55 708.981,2797.56 Z M 705.731,2797.98 L 706.068,2798.02 C 706.119,2798.03 706.163,2798.04 706.201,2798.07 C 706.238,2798.09 706.267,2798.12 706.288,2798.16 C 706.309,2798.2 706.318,2798.24 706.318,2798.29 C 706.316,2798.34 706.304,2798.38 706.282,2798.41 C 706.26,2798.45 706.23,2798.47 706.192,2798.49 C 706.154,2798.5 706.109,2798.5 706.058,2798.5 L 705.72,2798.45 L 705.731,2797.98 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ORIGINAL_individuals--FONDANT {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='763.356 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.889' y2='69.196' gradientTransform='translate(807.434 2784.99)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23b68e50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.716' y2='69.452' gradientTransform='translate(795.096 2787.13)'%3E%3Cstop offset='0' stop-color='%238a6b3c'/%3E%3Cstop offset='1' stop-color='%23b68e50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.4' y2='7.325' gradientTransform='translate(807.413 2854.66)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23a47f47'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.414' y2='-0.8' gradientTransform='translate(791.117 2861.83)'%3E%3Cstop offset='0' stop-color='%237d6136'/%3E%3Cstop offset='1' stop-color='%23947240'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.034' y2='-0.57' gradientTransform='translate(836.419 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23977541'/%3E%3Cstop offset='1' stop-color='%239a7742'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.57' y2='0' gradientTransform='translate(797.562 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%238f6f3e'/%3E%3Cstop offset='1' stop-color='%23957340'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(821.684 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 797.277,2776.57 L 797.277,2858.45 L 858.107,2862.36 C 858.151,2862.31 858.182,2862.24 858.182,2862.15 L 858.182,2784.82 L 797.277,2776.57 Z' stroke-width='8.031' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 797.277,2776.57 L 785.202,2788.29 L 785.194,2865.07 L 797.277,2858.45 L 797.277,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 797.277,2858.45 L 785.194,2865.07 L 844.23,2868.31 L 857.978,2862.45 C 858.025,2862.43 858.071,2862.4 858.107,2862.36 L 797.277,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 796.973,2857.52 L 785.191,2864.11 L 785.188,2865.07 L 796.973,2858.62 L 796.973,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 797.577,2858.06 L 796.973,2858.62 L 857.667,2862.58 L 857.978,2862.45 C 858.079,2862.41 858.182,2862.32 858.182,2862.15 L 858.182,2862.01 L 797.577,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 796.973,2858.62 L 796.971,2776.86 L 797.277,2776.57 L 797.577,2776.61 L 797.577,2858.06 L 796.973,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-linejoin='miter' stroke-width='2.906' fill='%23ffffff'%3E%3Cg id='Group_3'%3E%3Cpath d='M 814.146,2819.56 L 814.139,2826.71 L 815.319,2826.83 L 815.326,2823.18 L 816.301,2824.24 L 817.177,2825.19 L 819.018,2827.21 L 820.769,2827.39 L 817.878,2824.22 L 820.753,2820.23 L 819.293,2820.08 L 817.003,2823.27 L 815.328,2821.45 L 815.328,2819.68 L 814.146,2819.56 Z M 821.355,2820.29 L 821.961,2821.63 L 824.724,2827.79 L 827.505,2822.2 L 828.106,2820.98 L 826.787,2820.85 L 826.179,2822.06 L 824.727,2824.98 L 823.281,2821.77 L 822.678,2820.43 L 821.355,2820.29 Z M 828.705,2821.04 L 828.715,2821.04 L 829.621,2822.41 L 831.244,2824.86 L 831.995,2825.98 L 832.897,2827.35 L 828.69,2826.92 L 828.688,2828.19 L 833.805,2828.71 L 835.286,2828.87 L 834.372,2827.49 L 832.73,2825.01 L 831.988,2823.89 L 831.094,2822.56 L 835.325,2822.99 L 835.327,2821.71 L 830.206,2821.19 L 830.198,2821.19 L 828.705,2821.04 Z M 837.337,2822.07 C 837.123,2822.15 836.932,2822.27 836.774,2822.43 C 836.607,2822.59 836.478,2822.78 836.393,2823 C 836.299,2823.23 836.254,2823.47 836.253,2823.74 L 836.246,2827.03 C 836.246,2827.3 836.291,2827.55 836.384,2827.8 C 836.473,2828.04 836.598,2828.25 836.767,2828.45 C 836.924,2828.64 837.116,2828.8 837.329,2828.92 C 837.543,2829.04 837.776,2829.12 838.022,2829.14 L 842.855,2829.63 L 842.855,2828.36 L 838.022,2827.86 C 837.909,2827.85 837.808,2827.81 837.718,2827.74 C 837.627,2827.68 837.559,2827.59 837.503,2827.49 C 837.449,2827.38 837.423,2827.27 837.423,2827.15 L 837.423,2826.49 L 841.675,2826.92 L 841.679,2825.64 L 837.423,2825.21 L 837.423,2823.86 C 837.423,2823.74 837.453,2823.63 837.508,2823.54 C 837.565,2823.45 837.634,2823.37 837.723,2823.33 C 837.815,2823.27 837.914,2823.26 838.029,2823.27 L 842.862,2823.76 L 842.863,2822.48 L 838.029,2821.99 C 837.786,2821.97 837.553,2821.99 837.337,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(815.547 2789.88) rotate(90) skewX(-7.19316)' fill='%23003660'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(822.012 2790.7) rotate(90) skewX(-7.19721)' fill='%23cf3400'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(828.477 2791.51) rotate(90) skewX(-7.19518)' fill='%23bf0000'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(834.943 2792.33) rotate(90) skewX(-7.19316)' fill='%2393170b'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(841.408 2793.14) rotate(90) skewX(-7.19518)' fill='%23114700'/%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.068' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cpath d='M 820.737,2815.58 C 820.587,2815.63 820.456,2815.71 820.34,2815.81 C 820.227,2815.91 820.137,2816.03 820.073,2816.18 C 820.01,2816.33 819.977,2816.49 819.975,2816.66 C 819.977,2816.83 820.01,2817 820.073,2817.16 C 820.137,2817.32 820.227,2817.46 820.34,2817.59 C 820.456,2817.71 820.587,2817.82 820.737,2817.9 C 820.887,2817.98 821.049,2818.03 821.221,2818.05 C 821.393,2818.06 821.554,2818.05 821.703,2818 C 821.855,2817.95 821.986,2817.87 822.1,2817.77 C 822.214,2817.67 822.305,2817.55 822.368,2817.4 C 822.431,2817.25 822.464,2817.09 822.466,2816.92 C 822.464,2816.74 822.431,2816.58 822.368,2816.42 C 822.305,2816.26 822.214,2816.12 822.1,2815.99 C 821.986,2815.86 821.855,2815.76 821.703,2815.68 C 821.554,2815.6 821.393,2815.55 821.221,2815.53 C 821.049,2815.51 820.887,2815.53 820.737,2815.58 Z M 822.728,2815.68 L 822.728,2818.2 L 824.299,2818.36 L 824.432,2818.36 C 824.477,2818.36 824.519,2818.35 824.559,2818.34 C 824.641,2818.31 824.711,2818.27 824.772,2818.22 C 824.834,2818.16 824.88,2818.09 824.916,2818.01 C 824.949,2817.94 824.965,2817.85 824.968,2817.76 C 824.965,2817.67 824.951,2817.58 824.917,2817.49 C 824.884,2817.41 824.839,2817.34 824.78,2817.27 C 824.721,2817.2 824.654,2817.14 824.577,2817.1 C 824.517,2817.06 824.453,2817.04 824.385,2817.03 L 824.74,2816.34 L 824.968,2815.92 L 824.471,2815.86 L 824.243,2816.29 L 824.004,2816.74 L 823.993,2816.76 C 823.952,2816.82 823.902,2816.87 823.835,2816.9 C 823.771,2816.93 823.697,2816.94 823.617,2816.93 L 823.171,2816.89 L 823.171,2815.73 L 822.728,2815.68 Z M 825.325,2815.96 L 825.325,2818.48 L 825.77,2818.52 L 825.77,2816.01 L 825.325,2815.96 Z M 821.532,2816.08 C 821.628,2816.13 821.711,2816.2 821.788,2816.28 C 821.86,2816.36 821.917,2816.45 821.956,2816.55 C 821.999,2816.66 822.021,2816.76 822.021,2816.87 C 822.021,2816.99 821.999,2817.09 821.956,2817.18 C 821.917,2817.27 821.86,2817.35 821.788,2817.42 C 821.711,2817.49 821.628,2817.54 821.532,2817.57 C 821.435,2817.6 821.33,2817.61 821.221,2817.6 C 821.111,2817.59 821.006,2817.55 820.91,2817.5 C 820.812,2817.45 820.727,2817.38 820.654,2817.3 C 820.583,2817.22 820.524,2817.13 820.483,2817.03 C 820.443,2816.93 820.421,2816.82 820.421,2816.71 C 820.421,2816.59 820.443,2816.49 820.483,2816.4 C 820.524,2816.3 820.583,2816.23 820.654,2816.16 C 820.727,2816.09 820.812,2816.04 820.91,2816.01 C 820.958,2815.99 821.008,2815.99 821.058,2815.98 L 821.221,2815.98 C 821.33,2815.99 821.435,2816.03 821.532,2816.08 Z M 826.888,2816.23 C 826.736,2816.27 826.604,2816.35 826.493,2816.45 C 826.377,2816.55 826.29,2816.68 826.223,2816.82 C 826.16,2816.97 826.128,2817.13 826.126,2817.3 C 826.128,2817.48 826.16,2817.65 826.223,2817.8 C 826.29,2817.96 826.377,2818.1 826.493,2818.23 C 826.604,2818.36 826.736,2818.46 826.888,2818.54 C 827.038,2818.62 827.198,2818.67 827.37,2818.69 L 828.616,2818.82 L 828.616,2818.37 L 827.37,2818.24 C 827.26,2818.23 827.156,2818.2 827.06,2818.15 C 826.965,2818.1 826.879,2818.03 826.805,2817.95 C 826.732,2817.87 826.675,2817.77 826.634,2817.67 C 826.591,2817.57 826.57,2817.46 826.57,2817.35 C 826.57,2817.24 826.591,2817.14 826.634,2817.04 C 826.675,2816.95 826.732,2816.87 826.805,2816.8 C 826.879,2816.74 826.965,2816.69 827.06,2816.66 C 827.106,2816.64 827.158,2816.63 827.209,2816.63 L 827.37,2816.63 L 828.171,2816.71 L 828.171,2817.19 L 827.37,2817.11 L 827.37,2817.56 L 828.616,2817.69 L 828.616,2816.3 L 827.37,2816.18 C 827.198,2816.16 827.038,2816.18 826.888,2816.23 Z M 828.97,2816.34 L 828.97,2818.86 L 829.415,2818.91 L 829.415,2816.39 L 828.97,2816.34 Z M 829.77,2816.43 L 829.77,2818.93 L 830.215,2818.63 L 831.815,2817.56 L 831.815,2819.16 L 832.258,2819.2 L 832.258,2816.69 L 831.815,2816.99 L 830.215,2818.06 L 830.215,2816.47 L 829.77,2816.43 Z M 832.472,2816.71 L 832.701,2817.18 L 833.742,2819.36 L 834.784,2817.4 L 835.011,2816.98 L 834.513,2816.93 L 834.287,2817.35 L 833.742,2818.37 L 833.197,2817.24 L 832.971,2816.76 L 832.472,2816.71 Z M 835.74,2817.07 C 835.681,2817.08 835.624,2817.1 835.571,2817.12 C 835.493,2817.15 835.422,2817.19 835.363,2817.25 C 835.3,2817.31 835.25,2817.37 835.215,2817.45 C 835.187,2817.5 835.164,2817.55 835.151,2817.61 C 835.139,2817.67 835.13,2817.73 835.13,2817.79 L 835.13,2819.51 L 835.577,2819.55 L 835.577,2817.8 C 835.584,2817.74 835.601,2817.7 835.628,2817.66 C 835.656,2817.61 835.691,2817.58 835.735,2817.56 C 835.778,2817.54 835.824,2817.52 835.879,2817.52 L 837.182,2817.66 L 837.182,2817.2 L 835.919,2817.07 C 835.86,2817.07 835.796,2817.07 835.74,2817.07 Z M 823.171,2817.33 L 824.299,2817.45 C 824.315,2817.45 824.331,2817.46 824.346,2817.46 C 824.361,2817.47 824.376,2817.48 824.391,2817.49 C 824.434,2817.51 824.467,2817.54 824.489,2817.58 C 824.515,2817.62 824.526,2817.66 824.528,2817.71 C 824.526,2817.75 824.517,2817.78 824.501,2817.81 C 824.485,2817.84 824.472,2817.85 824.46,2817.87 C 824.445,2817.88 824.425,2817.89 824.398,2817.9 C 824.371,2817.91 824.338,2817.92 824.299,2817.92 L 823.171,2817.8 L 823.171,2817.33 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.038' fill='%23ffffff'%3E%3Cg id='Group_8'%3E%3Cpath d='M 819.064,2795.79 L 819.064,2796.78 C 819.064,2796.84 819.075,2796.88 819.092,2796.93 C 819.112,2796.98 819.137,2797.02 819.171,2797.06 C 819.202,2797.1 819.241,2797.12 819.286,2797.15 C 819.328,2797.17 819.375,2797.19 819.426,2797.19 L 820.412,2797.3 L 820.412,2797.06 L 819.428,2796.95 C 819.404,2796.95 819.385,2796.94 819.367,2796.93 C 819.347,2796.91 819.333,2796.9 819.321,2796.88 C 819.311,2796.86 819.304,2796.84 819.304,2796.81 L 819.304,2796.68 L 820.172,2796.78 L 820.172,2796.54 L 819.302,2796.44 L 819.302,2795.81 L 819.064,2795.79 Z M 820.801,2796.04 C 820.721,2796.06 820.648,2796.1 820.587,2796.16 C 820.524,2796.22 820.477,2796.28 820.443,2796.36 C 820.408,2796.44 820.388,2796.52 820.388,2796.62 C 820.388,2796.71 820.408,2796.81 820.443,2796.89 C 820.477,2796.98 820.524,2797.05 820.587,2797.12 C 820.648,2797.19 820.721,2797.25 820.801,2797.29 C 820.882,2797.34 820.97,2797.37 821.063,2797.38 C 821.157,2797.39 821.245,2797.38 821.325,2797.36 C 821.407,2797.33 821.479,2797.29 821.54,2797.23 C 821.601,2797.17 821.652,2797.11 821.685,2797.03 C 821.719,2796.95 821.734,2796.87 821.739,2796.77 C 821.734,2796.68 821.719,2796.59 821.685,2796.5 C 821.652,2796.41 821.601,2796.34 821.54,2796.27 C 821.479,2796.2 821.407,2796.14 821.325,2796.1 C 821.245,2796.05 821.157,2796.03 821.063,2796.01 C 820.97,2796 820.882,2796.01 820.801,2796.04 Z M 821.885,2796.11 L 821.885,2797.47 L 822.125,2797.3 L 822.99,2796.73 L 822.99,2797.6 L 823.231,2797.62 L 823.231,2796.26 L 822.99,2796.42 L 822.125,2796.99 L 822.125,2796.13 L 821.885,2796.11 Z M 821.063,2796.26 C 821.123,2796.26 821.18,2796.28 821.232,2796.31 C 821.286,2796.34 821.329,2796.38 821.371,2796.42 C 821.411,2796.46 821.44,2796.52 821.463,2796.57 C 821.485,2796.63 821.495,2796.68 821.498,2796.74 C 821.495,2796.81 821.485,2796.86 821.463,2796.91 C 821.44,2796.96 821.411,2797.01 821.371,2797.04 C 821.329,2797.08 821.286,2797.1 821.232,2797.12 C 821.18,2797.13 821.123,2797.14 821.063,2797.13 C 821.004,2797.13 820.947,2797.11 820.895,2797.08 C 820.842,2797.05 820.797,2797.01 820.757,2796.97 C 820.718,2796.93 820.687,2796.88 820.663,2796.82 C 820.642,2796.76 820.629,2796.71 820.629,2796.65 C 820.629,2796.59 820.642,2796.53 820.663,2796.48 C 820.687,2796.43 820.718,2796.39 820.757,2796.35 C 820.797,2796.32 820.842,2796.29 820.895,2796.27 C 820.947,2796.26 821.004,2796.25 821.063,2796.26 Z M 823.425,2796.28 L 823.425,2797.65 L 824.099,2797.72 L 824.097,2797.72 C 824.191,2797.73 824.279,2797.72 824.359,2797.7 C 824.441,2797.67 824.513,2797.63 824.574,2797.58 C 824.635,2797.52 824.684,2797.45 824.719,2797.38 C 824.752,2797.3 824.771,2797.21 824.772,2797.11 C 824.771,2797.03 824.757,2796.95 824.731,2796.87 C 824.703,2796.79 824.662,2796.72 824.612,2796.66 C 824.607,2796.65 824.6,2796.64 824.593,2796.63 C 824.587,2796.62 824.581,2796.62 824.572,2796.61 C 824.513,2796.54 824.441,2796.48 824.359,2796.44 C 824.279,2796.39 824.194,2796.37 824.099,2796.36 L 823.425,2796.28 Z M 824.721,2796.43 L 824.844,2796.68 L 825.409,2797.87 L 825.973,2796.81 L 826.096,2796.58 L 825.826,2796.55 L 825.702,2796.78 L 825.409,2797.33 L 825.112,2796.71 L 824.989,2796.46 L 824.721,2796.43 Z M 823.664,2796.55 L 824.097,2796.6 C 824.158,2796.61 824.214,2796.62 824.266,2796.65 C 824.319,2796.68 824.364,2796.72 824.405,2796.76 C 824.443,2796.81 824.474,2796.86 824.495,2796.91 C 824.519,2796.97 824.53,2797.02 824.532,2797.09 C 824.53,2797.15 824.519,2797.2 824.495,2797.25 C 824.474,2797.3 824.443,2797.35 824.405,2797.38 C 824.364,2797.42 824.319,2797.44 824.266,2797.46 C 824.214,2797.48 824.158,2797.48 824.097,2797.48 L 823.664,2797.43 L 823.664,2796.55 Z M 826.212,2796.59 L 826.212,2797.95 L 826.454,2797.79 L 827.319,2797.22 L 827.319,2798.08 L 827.56,2798.11 L 827.56,2796.74 L 827.319,2796.91 L 826.454,2797.48 L 826.454,2796.62 L 826.212,2796.59 Z M 828.307,2796.83 L 828.307,2797.95 L 827.753,2797.89 L 827.753,2798.13 L 829.1,2798.29 L 829.1,2798.04 L 828.547,2797.98 L 828.547,2796.86 L 828.307,2796.83 Z M 830.495,2797.11 C 830.443,2797.13 830.399,2797.15 830.359,2797.19 C 830.32,2797.22 830.289,2797.26 830.266,2797.31 C 830.245,2797.37 830.234,2797.42 830.234,2797.48 L 830.474,2797.51 C 830.474,2797.47 830.484,2797.44 830.5,2797.41 C 830.514,2797.39 830.539,2797.37 830.567,2797.36 C 830.595,2797.34 830.624,2797.34 830.659,2797.34 L 831.081,2797.39 C 831.117,2797.39 831.147,2797.4 831.175,2797.42 C 831.203,2797.44 831.226,2797.47 831.242,2797.5 C 831.258,2797.53 831.266,2797.56 831.268,2797.6 C 831.266,2797.63 831.258,2797.66 831.242,2797.69 C 831.226,2797.71 831.203,2797.73 831.175,2797.75 C 831.147,2797.76 831.117,2797.76 831.081,2797.76 L 830.596,2797.71 C 830.546,2797.7 830.5,2797.7 830.459,2797.72 C 830.415,2797.73 830.377,2797.75 830.343,2797.78 C 830.327,2797.8 830.311,2797.82 830.296,2797.83 C 830.277,2797.86 830.262,2797.89 830.249,2797.93 C 830.238,2797.96 830.234,2798 830.234,2798.04 L 830.234,2798.04 C 830.234,2798.09 830.243,2798.14 830.262,2798.19 C 830.281,2798.24 830.307,2798.28 830.338,2798.32 C 830.373,2798.35 830.411,2798.39 830.455,2798.41 C 830.499,2798.43 830.546,2798.45 830.596,2798.45 L 831.143,2798.52 L 831.215,2798.52 C 831.239,2798.51 831.262,2798.51 831.284,2798.5 C 831.329,2798.49 831.368,2798.47 831.401,2798.44 C 831.432,2798.41 831.458,2798.37 831.477,2798.33 C 831.497,2798.29 831.508,2798.24 831.508,2798.19 L 831.508,2798.18 L 831.266,2798.15 L 831.266,2798.16 C 831.264,2798.18 831.261,2798.2 831.25,2798.22 C 831.237,2798.24 831.222,2798.25 831.204,2798.26 C 831.185,2798.27 831.164,2798.27 831.143,2798.27 L 830.596,2798.21 C 830.573,2798.21 830.551,2798.2 830.535,2798.18 C 830.514,2798.17 830.5,2798.15 830.49,2798.14 C 830.479,2798.11 830.473,2798.09 830.473,2798.07 L 830.473,2798.06 C 830.473,2798.04 830.479,2798.02 830.49,2798 C 830.5,2797.98 830.514,2797.97 830.535,2797.96 C 830.551,2797.95 830.573,2797.95 830.596,2797.95 L 831.081,2798.01 C 831.143,2798.01 831.203,2798.01 831.257,2797.99 C 831.309,2797.97 831.356,2797.94 831.394,2797.9 C 831.397,2797.9 831.401,2797.89 831.402,2797.89 C 831.405,2797.89 831.407,2797.89 831.409,2797.89 C 831.441,2797.85 831.464,2797.81 831.481,2797.77 C 831.499,2797.72 831.508,2797.68 831.508,2797.62 C 831.508,2797.56 831.494,2797.51 831.474,2797.45 C 831.451,2797.4 831.42,2797.35 831.382,2797.3 C 831.343,2797.26 831.298,2797.22 831.248,2797.2 C 831.194,2797.17 831.14,2797.15 831.081,2797.14 L 830.659,2797.1 C 830.6,2797.09 830.546,2797.1 830.495,2797.11 Z M 831.923,2797.27 C 831.879,2797.28 831.841,2797.3 831.806,2797.34 C 831.774,2797.37 831.747,2797.4 831.729,2797.44 C 831.71,2797.48 831.701,2797.53 831.701,2797.58 L 831.701,2798.21 C 831.701,2798.26 831.71,2798.31 831.729,2798.36 C 831.747,2798.4 831.774,2798.45 831.806,2798.48 C 831.841,2798.52 831.879,2798.55 831.923,2798.57 C 831.966,2798.6 832.014,2798.61 832.063,2798.62 L 833.047,2798.73 L 833.047,2798.49 L 832.063,2798.38 C 832.042,2798.37 832.02,2798.37 832.001,2798.35 C 831.983,2798.34 831.969,2798.32 831.956,2798.3 C 831.946,2798.28 831.942,2798.26 831.938,2798.24 L 831.938,2798.11 L 832.807,2798.21 L 832.807,2797.97 L 831.938,2797.87 L 831.938,2797.61 C 831.942,2797.59 831.946,2797.57 831.956,2797.55 C 831.969,2797.53 831.983,2797.52 832.001,2797.51 C 832.02,2797.5 832.042,2797.5 832.063,2797.5 L 833.047,2797.61 L 833.047,2797.37 L 832.063,2797.25 L 831.99,2797.25 C 831.966,2797.26 831.942,2797.26 831.923,2797.27 Z M 833.239,2797.38 L 833.239,2798.75 L 834.09,2798.84 C 834.14,2798.85 834.188,2798.85 834.23,2798.83 C 834.277,2798.82 834.314,2798.8 834.345,2798.77 C 834.379,2798.74 834.406,2798.7 834.424,2798.66 C 834.442,2798.62 834.452,2798.57 834.452,2798.52 C 834.452,2798.47 834.443,2798.42 834.424,2798.38 C 834.408,2798.33 834.382,2798.29 834.35,2798.25 C 834.317,2798.22 834.282,2798.18 834.239,2798.16 C 834.207,2798.14 834.173,2798.13 834.137,2798.12 L 834.328,2797.75 L 834.452,2797.52 L 834.182,2797.49 L 834.059,2797.72 L 833.93,2797.96 L 833.924,2797.97 C 833.904,2798.01 833.873,2798.03 833.839,2798.05 C 833.802,2798.07 833.765,2798.07 833.719,2798.07 L 833.48,2798.04 L 833.48,2797.41 L 833.239,2797.38 Z M 834.648,2797.55 L 834.648,2798.91 L 834.888,2798.94 L 834.888,2797.57 L 834.648,2797.55 Z M 835.303,2797.65 C 835.26,2797.66 835.22,2797.69 835.189,2797.72 C 835.154,2797.75 835.128,2797.78 835.112,2797.83 C 835.093,2797.87 835.083,2797.91 835.083,2797.97 L 835.083,2798.59 C 835.083,2798.64 835.093,2798.69 835.112,2798.74 C 835.128,2798.78 835.154,2798.83 835.189,2798.86 C 835.22,2798.9 835.26,2798.93 835.303,2798.96 C 835.348,2798.98 835.394,2798.99 835.443,2799 L 836.43,2799.11 L 836.43,2798.87 L 835.443,2798.76 C 835.422,2798.75 835.4,2798.75 835.382,2798.73 C 835.365,2798.72 835.35,2798.7 835.338,2798.68 C 835.327,2798.66 835.323,2798.64 835.32,2798.62 L 835.32,2798.49 L 836.188,2798.59 L 836.188,2798.35 L 835.32,2798.25 L 835.32,2797.99 C 835.323,2797.97 835.327,2797.95 835.338,2797.93 C 835.35,2797.91 835.365,2797.9 835.382,2797.89 C 835.4,2797.88 835.422,2797.88 835.443,2797.88 L 836.43,2797.99 L 836.43,2797.75 L 835.443,2797.64 C 835.394,2797.63 835.348,2797.64 835.303,2797.65 Z M 836.883,2797.83 C 836.834,2797.85 836.787,2797.88 836.747,2797.91 C 836.711,2797.95 836.68,2797.99 836.657,2798.04 C 836.636,2798.09 836.624,2798.14 836.624,2798.2 L 836.864,2798.22 C 836.864,2798.19 836.873,2798.16 836.89,2798.14 C 836.906,2798.11 836.928,2798.09 836.957,2798.08 C 836.983,2798.06 837.013,2798.06 837.051,2798.06 L 837.472,2798.11 C 837.506,2798.11 837.537,2798.13 837.565,2798.15 C 837.594,2798.17 837.613,2798.19 837.631,2798.22 C 837.647,2798.25 837.656,2798.28 837.656,2798.32 C 837.656,2798.35 837.647,2798.38 837.631,2798.41 C 837.613,2798.43 837.594,2798.45 837.565,2798.47 C 837.537,2798.48 837.506,2798.49 837.472,2798.48 L 836.986,2798.43 C 836.936,2798.42 836.89,2798.43 836.847,2798.44 C 836.804,2798.45 836.767,2798.47 836.732,2798.5 C 836.715,2798.52 836.701,2798.54 836.687,2798.56 C 836.667,2798.58 836.652,2798.61 836.639,2798.65 C 836.628,2798.68 836.624,2798.72 836.624,2798.76 L 836.624,2798.76 C 836.624,2798.82 836.634,2798.86 836.652,2798.91 C 836.671,2798.96 836.697,2799 836.729,2799.04 C 836.764,2799.08 836.802,2799.1 836.844,2799.13 C 836.887,2799.15 836.936,2799.17 836.986,2799.18 L 837.532,2799.24 L 837.603,2799.24 C 837.627,2799.24 837.649,2799.23 837.673,2799.22 C 837.718,2799.21 837.757,2799.19 837.789,2799.16 C 837.823,2799.13 837.849,2799.09 837.867,2799.05 C 837.886,2799.01 837.897,2798.96 837.897,2798.91 L 837.897,2798.9 L 837.656,2798.87 L 837.656,2798.88 C 837.654,2798.9 837.649,2798.92 837.64,2798.94 C 837.627,2798.96 837.613,2798.97 837.595,2798.98 C 837.576,2798.99 837.553,2798.99 837.532,2798.99 L 836.986,2798.93 C 836.963,2798.93 836.942,2798.92 836.924,2798.91 C 836.906,2798.89 836.89,2798.88 836.879,2798.86 C 836.869,2798.84 836.863,2798.81 836.863,2798.79 L 836.863,2798.78 C 836.863,2798.76 836.869,2798.74 836.879,2798.72 C 836.89,2798.7 836.906,2798.69 836.924,2798.68 C 836.942,2798.67 836.963,2798.67 836.986,2798.67 L 837.472,2798.73 L 837.562,2798.73 C 837.591,2798.72 837.618,2798.72 837.645,2798.71 C 837.699,2798.69 837.746,2798.66 837.784,2798.62 C 837.786,2798.62 837.789,2798.62 837.792,2798.61 C 837.794,2798.61 837.797,2798.61 837.799,2798.61 C 837.83,2798.57 837.854,2798.53 837.872,2798.49 C 837.889,2798.44 837.897,2798.4 837.897,2798.34 C 837.896,2798.28 837.884,2798.22 837.863,2798.17 C 837.842,2798.12 837.808,2798.07 837.771,2798.03 C 837.734,2797.98 837.69,2797.95 837.636,2797.92 C 837.584,2797.89 837.528,2797.87 837.472,2797.87 L 837.051,2797.82 C 836.99,2797.81 836.936,2797.82 836.883,2797.83 Z M 833.48,2798.28 L 834.09,2798.35 C 834.099,2798.35 834.107,2798.35 834.115,2798.36 C 834.123,2798.36 834.133,2798.37 834.14,2798.37 C 834.163,2798.38 834.181,2798.4 834.192,2798.42 C 834.204,2798.44 834.214,2798.47 834.214,2798.49 C 834.211,2798.51 834.207,2798.53 834.199,2798.55 C 834.192,2798.56 834.185,2798.57 834.177,2798.57 C 834.169,2798.58 834.159,2798.59 834.144,2798.59 C 834.129,2798.6 834.112,2798.6 834.09,2798.6 L 833.48,2798.53 L 833.48,2798.28 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ORIGINAL_individuals--EYE_CANDY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='513.008 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.89' y2='69.197' gradientTransform='translate(557.085 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.717' y2='69.453' gradientTransform='translate(544.748 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.402' y2='7.324' gradientTransform='translate(557.063 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.8' gradientTransform='translate(540.768 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.569' gradientTransform='translate(586.069 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.569' y2='0' gradientTransform='translate(547.213 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(571.336 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 546.928,2776.57 L 546.928,2858.45 L 607.759,2862.36 C 607.801,2862.31 607.833,2862.24 607.833,2862.16 L 607.833,2784.82 L 546.928,2776.57 Z' stroke-width='8.03' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 546.928,2776.57 L 534.853,2788.29 L 534.846,2865.07 L 546.928,2858.45 L 546.928,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 546.928,2858.45 L 534.846,2865.07 L 593.88,2868.31 L 607.629,2862.45 C 607.676,2862.43 607.723,2862.4 607.759,2862.36 L 546.928,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 546.624,2857.52 L 534.842,2864.11 L 534.84,2865.07 L 546.624,2858.62 L 546.624,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 563.798,2819.56 L 563.79,2826.71 L 564.971,2826.83 L 564.977,2823.18 L 565.952,2824.24 L 566.828,2825.19 L 568.67,2827.21 L 570.42,2827.39 L 567.531,2824.22 L 570.404,2820.23 L 568.946,2820.09 L 566.654,2823.27 L 564.98,2821.45 L 564.98,2819.68 L 563.798,2819.56 Z M 571.005,2820.29 L 571.612,2821.63 L 574.374,2827.79 L 577.155,2822.2 L 577.758,2820.98 L 576.439,2820.85 L 575.829,2822.06 L 574.378,2824.98 L 572.931,2821.76 L 572.329,2820.43 L 571.005,2820.29 Z M 578.355,2821.04 L 578.366,2821.04 L 579.272,2822.41 L 580.894,2824.86 L 581.645,2825.98 L 582.547,2827.35 L 578.34,2826.92 L 578.338,2828.19 L 583.456,2828.71 L 584.937,2828.87 L 584.024,2827.49 L 582.382,2825.01 L 581.639,2823.89 L 580.745,2822.56 L 584.975,2822.99 L 584.977,2821.71 L 579.857,2821.19 L 579.85,2821.19 L 578.355,2821.04 Z M 586.988,2822.07 C 586.775,2822.15 586.582,2822.27 586.424,2822.43 C 586.258,2822.59 586.131,2822.78 586.044,2823 C 585.95,2823.23 585.905,2823.47 585.903,2823.74 L 585.897,2827.03 C 585.897,2827.3 585.941,2827.55 586.035,2827.79 C 586.124,2828.04 586.25,2828.25 586.418,2828.45 C 586.575,2828.64 586.767,2828.8 586.979,2828.92 C 587.195,2829.04 587.426,2829.12 587.674,2829.14 L 592.506,2829.63 L 592.506,2828.36 L 587.674,2827.86 C 587.561,2827.85 587.461,2827.81 587.369,2827.74 C 587.277,2827.68 587.209,2827.59 587.154,2827.49 C 587.099,2827.38 587.073,2827.27 587.073,2827.15 L 587.073,2826.49 L 591.328,2826.92 L 591.328,2825.64 L 587.073,2825.21 L 587.073,2823.86 C 587.073,2823.74 587.103,2823.63 587.158,2823.54 C 587.215,2823.45 587.284,2823.37 587.373,2823.33 C 587.467,2823.27 587.565,2823.26 587.68,2823.27 L 592.512,2823.76 L 592.514,2822.48 L 587.68,2821.99 C 587.437,2821.97 587.206,2821.99 586.988,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 547.229,2858.06 L 546.624,2858.62 L 607.318,2862.58 L 607.629,2862.45 C 607.731,2862.41 607.833,2862.32 607.833,2862.16 L 607.833,2862.01 L 547.229,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 546.624,2858.62 L 546.622,2776.86 L 546.928,2776.57 L 547.229,2776.61 L 547.229,2858.06 L 546.624,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.068' fill='%23000000'%3E%3Cpath d='M 570.286,2815.57 C 570.136,2815.62 570.005,2815.7 569.889,2815.8 C 569.776,2815.9 569.686,2816.03 569.623,2816.17 C 569.56,2816.32 569.527,2816.48 569.525,2816.65 C 569.527,2816.83 569.56,2816.99 569.623,2817.15 C 569.686,2817.31 569.776,2817.45 569.889,2817.58 C 570.005,2817.71 570.136,2817.81 570.286,2817.89 C 570.436,2817.97 570.598,2818.02 570.77,2818.04 C 570.942,2818.06 571.103,2818.04 571.252,2817.99 C 571.404,2817.94 571.535,2817.87 571.649,2817.76 C 571.763,2817.66 571.854,2817.54 571.917,2817.39 C 571.98,2817.25 572.013,2817.09 572.015,2816.91 C 572.013,2816.74 571.98,2816.57 571.917,2816.41 C 571.854,2816.25 571.763,2816.11 571.649,2815.99 C 571.535,2815.86 571.404,2815.75 571.252,2815.67 C 571.103,2815.59 570.942,2815.54 570.77,2815.53 C 570.598,2815.51 570.436,2815.53 570.286,2815.57 Z M 572.277,2815.68 L 572.277,2818.19 L 573.848,2818.36 L 573.981,2818.36 C 574.026,2818.35 574.068,2818.34 574.108,2818.33 C 574.19,2818.3 574.26,2818.26 574.321,2818.21 C 574.383,2818.15 574.429,2818.09 574.465,2818.01 C 574.498,2817.93 574.514,2817.84 574.517,2817.75 C 574.514,2817.66 574.5,2817.57 574.466,2817.49 C 574.433,2817.4 574.388,2817.33 574.329,2817.26 C 574.27,2817.19 574.203,2817.14 574.126,2817.09 C 574.066,2817.06 574.002,2817.03 573.934,2817.02 L 574.289,2816.34 L 574.517,2815.91 L 574.02,2815.86 L 573.792,2816.28 L 573.553,2816.73 L 573.542,2816.75 C 573.501,2816.81 573.451,2816.86 573.384,2816.89 C 573.32,2816.92 573.246,2816.93 573.166,2816.93 L 572.72,2816.88 L 572.72,2815.72 L 572.277,2815.68 Z M 574.874,2815.95 L 574.874,2818.47 L 575.319,2818.52 L 575.319,2816 L 574.874,2815.95 Z M 571.081,2816.07 C 571.177,2816.12 571.26,2816.19 571.337,2816.27 C 571.409,2816.35 571.466,2816.44 571.505,2816.55 C 571.548,2816.65 571.57,2816.76 571.57,2816.87 C 571.57,2816.98 571.548,2817.08 571.505,2817.17 C 571.466,2817.27 571.409,2817.35 571.337,2817.41 C 571.26,2817.48 571.177,2817.53 571.081,2817.56 C 570.984,2817.59 570.879,2817.6 570.77,2817.59 C 570.66,2817.58 570.555,2817.55 570.459,2817.49 C 570.361,2817.44 570.276,2817.38 570.203,2817.3 C 570.132,2817.21 570.073,2817.12 570.032,2817.02 C 569.992,2816.92 569.97,2816.81 569.97,2816.7 C 569.97,2816.59 569.992,2816.48 570.032,2816.39 C 570.073,2816.3 570.132,2816.22 570.203,2816.15 C 570.276,2816.09 570.361,2816.04 570.459,2816 C 570.507,2815.99 570.557,2815.98 570.607,2815.97 L 570.77,2815.97 C 570.879,2815.99 570.984,2816.02 571.081,2816.07 Z M 576.437,2816.22 C 576.285,2816.27 576.153,2816.34 576.042,2816.45 C 575.926,2816.55 575.839,2816.67 575.772,2816.82 C 575.709,2816.96 575.677,2817.12 575.675,2817.3 C 575.677,2817.47 575.709,2817.64 575.772,2817.8 C 575.839,2817.95 575.926,2818.1 576.042,2818.22 C 576.153,2818.35 576.285,2818.45 576.437,2818.53 C 576.587,2818.62 576.747,2818.66 576.919,2818.68 L 578.165,2818.82 L 578.165,2818.36 L 576.919,2818.24 C 576.809,2818.22 576.705,2818.19 576.609,2818.14 C 576.514,2818.09 576.428,2818.02 576.354,2817.94 C 576.281,2817.86 576.224,2817.76 576.183,2817.66 C 576.14,2817.56 576.119,2817.46 576.119,2817.34 C 576.119,2817.23 576.14,2817.13 576.183,2817.03 C 576.224,2816.94 576.281,2816.86 576.354,2816.8 C 576.428,2816.73 576.514,2816.68 576.609,2816.65 C 576.655,2816.63 576.707,2816.62 576.758,2816.62 L 576.919,2816.62 L 577.72,2816.7 L 577.72,2817.18 L 576.919,2817.1 L 576.919,2817.55 L 578.165,2817.68 L 578.165,2816.3 L 576.919,2816.17 C 576.747,2816.15 576.587,2816.17 576.437,2816.22 Z M 578.519,2816.34 L 578.519,2818.85 L 578.964,2818.9 L 578.964,2816.38 L 578.519,2816.34 Z M 579.319,2816.42 L 579.319,2818.92 L 579.764,2818.63 L 581.364,2817.55 L 581.364,2819.15 L 581.807,2819.19 L 581.807,2816.68 L 581.364,2816.98 L 579.764,2818.06 L 579.764,2816.47 L 579.319,2816.42 Z M 582.021,2816.7 L 582.25,2817.18 L 583.291,2819.35 L 584.333,2817.39 L 584.56,2816.97 L 584.062,2816.92 L 583.836,2817.34 L 583.291,2818.36 L 582.746,2817.23 L 582.52,2816.76 L 582.021,2816.7 Z M 585.289,2817.07 C 585.23,2817.08 585.173,2817.09 585.12,2817.11 C 585.042,2817.14 584.971,2817.18 584.912,2817.24 C 584.849,2817.3 584.799,2817.37 584.764,2817.44 C 584.736,2817.49 584.713,2817.55 584.7,2817.6 C 584.688,2817.66 584.679,2817.72 584.679,2817.78 L 584.679,2819.5 L 585.126,2819.54 L 585.126,2817.79 C 585.133,2817.73 585.15,2817.69 585.177,2817.65 C 585.205,2817.61 585.24,2817.58 585.284,2817.55 C 585.327,2817.53 585.373,2817.52 585.428,2817.51 L 586.731,2817.65 L 586.731,2817.2 L 585.468,2817.07 C 585.409,2817.06 585.345,2817.06 585.289,2817.07 Z M 572.72,2817.33 L 573.848,2817.45 C 573.864,2817.45 573.88,2817.45 573.895,2817.46 C 573.91,2817.46 573.925,2817.47 573.94,2817.48 C 573.983,2817.5 574.016,2817.53 574.038,2817.57 C 574.064,2817.61 574.075,2817.66 574.077,2817.7 C 574.075,2817.74 574.066,2817.78 574.05,2817.8 C 574.034,2817.83 574.021,2817.85 574.009,2817.86 C 573.994,2817.87 573.974,2817.88 573.947,2817.9 C 573.92,2817.91 573.887,2817.91 573.848,2817.91 L 572.72,2817.79 L 572.72,2817.33 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cg id='Group_6'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.248'%3E%3Crect x='-2.639' y='-2.486' width='5.279' height='4.973' transform='translate(565.204 2789.89) rotate(90) skewX(-7.19518)' fill='%231880d9'/%3E%3Crect x='-2.638' y='-2.484' width='5.276' height='4.969' transform='translate(571.666 2790.7) rotate(90) skewX(-7.20126)' fill='%2313a875'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(578.127 2791.52) rotate(90) skewX(-7.19721)' fill='%2387c74c'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(584.591 2792.34) rotate(90) skewX(-7.19721)' fill='%23fc5f9b'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(591.052 2793.15) rotate(90) skewX(-7.19721)' fill='%234f34de'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.053' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 569.102,2795.63 L 569.07,2797.15 L 570.029,2797.27 L 570.034,2797.06 L 569.302,2796.97 L 569.311,2796.53 L 569.935,2796.61 L 569.94,2796.4 L 569.316,2796.32 L 569.325,2795.86 L 570.057,2795.96 L 570.061,2795.75 L 569.102,2795.63 Z M 570.636,2795.82 L 570.623,2796.45 L 570.156,2797.29 L 570.404,2797.32 L 570.732,2796.69 L 571.032,2797.4 L 571.281,2797.43 L 570.851,2796.48 L 570.864,2795.85 L 570.636,2795.82 Z M 571.52,2795.93 L 571.488,2797.45 L 572.447,2797.58 L 572.451,2797.37 L 571.72,2797.28 L 571.729,2796.83 L 572.353,2796.91 L 572.357,2796.71 L 571.733,2796.63 L 571.743,2796.17 L 572.474,2796.26 L 572.479,2796.05 L 571.52,2795.93 Z M 573.563,2796.22 C 573.498,2796.24 573.441,2796.27 573.392,2796.31 C 573.355,2796.34 573.326,2796.38 573.304,2796.42 C 573.283,2796.45 573.267,2796.49 573.256,2796.54 C 573.246,2796.59 573.239,2796.64 573.235,2796.7 C 573.231,2796.76 573.228,2796.83 573.227,2796.91 C 573.225,2796.99 573.225,2797.06 573.226,2797.12 C 573.227,2797.18 573.232,2797.24 573.241,2797.29 C 573.249,2797.34 573.263,2797.38 573.283,2797.43 C 573.303,2797.47 573.331,2797.51 573.366,2797.55 C 573.413,2797.61 573.468,2797.65 573.532,2797.69 C 573.596,2797.72 573.668,2797.74 573.75,2797.75 C 573.843,2797.77 573.927,2797.76 574.001,2797.73 C 574.076,2797.7 574.139,2797.66 574.189,2797.6 C 574.24,2797.53 574.275,2797.45 574.296,2797.35 L 574.064,2797.33 C 574.051,2797.38 574.031,2797.42 574.004,2797.45 C 573.977,2797.49 573.942,2797.52 573.901,2797.53 C 573.859,2797.55 573.81,2797.56 573.755,2797.55 C 573.709,2797.54 573.668,2797.53 573.631,2797.51 C 573.594,2797.49 573.562,2797.46 573.535,2797.43 C 573.517,2797.41 573.502,2797.38 573.49,2797.36 C 573.479,2797.33 573.47,2797.3 573.465,2797.26 C 573.459,2797.23 573.455,2797.18 573.454,2797.13 C 573.453,2797.08 573.453,2797.02 573.455,2796.94 C 573.456,2796.87 573.458,2796.8 573.462,2796.75 C 573.466,2796.7 573.471,2796.66 573.478,2796.62 C 573.485,2796.59 573.495,2796.56 573.507,2796.54 C 573.52,2796.52 573.536,2796.5 573.555,2796.48 C 573.583,2796.45 573.616,2796.43 573.654,2796.42 C 573.691,2796.41 573.733,2796.41 573.778,2796.41 C 573.834,2796.42 573.882,2796.44 573.923,2796.46 C 573.965,2796.49 573.998,2796.53 574.025,2796.57 C 574.051,2796.61 574.07,2796.66 574.081,2796.71 L 574.308,2796.74 C 574.292,2796.64 574.26,2796.55 574.212,2796.47 C 574.164,2796.4 574.104,2796.34 574.03,2796.29 C 573.957,2796.25 573.874,2796.22 573.783,2796.21 C 573.701,2796.2 573.627,2796.2 573.563,2796.22 Z M 574.421,2796.3 L 574.939,2797.89 L 575.123,2797.92 L 575.705,2796.46 L 575.462,2796.43 L 575.353,2796.73 L 574.76,2796.65 L 574.663,2796.33 L 574.421,2796.3 Z M 575.918,2796.49 L 575.886,2798.01 L 576.094,2798.04 L 576.81,2797.06 L 576.788,2798.13 L 577.015,2798.16 L 577.047,2796.63 L 576.839,2796.61 L 576.123,2797.59 L 576.145,2796.52 L 575.918,2796.49 Z M 577.44,2796.68 L 577.409,2798.2 L 577.936,2798.27 C 578.029,2798.28 578.11,2798.28 578.18,2798.26 C 578.25,2798.23 578.312,2798.19 578.365,2798.13 C 578.402,2798.09 578.429,2798.04 578.447,2797.99 C 578.464,2797.93 578.476,2797.87 578.481,2797.8 C 578.486,2797.74 578.49,2797.66 578.491,2797.58 C 578.493,2797.5 578.493,2797.42 578.49,2797.35 C 578.488,2797.28 578.479,2797.22 578.464,2797.16 C 578.449,2797.1 578.424,2797.05 578.389,2797 C 578.338,2796.92 578.279,2796.87 578.21,2796.83 C 578.141,2796.79 578.06,2796.76 577.967,2796.75 L 577.44,2796.68 Z M 574.824,2796.86 L 575.285,2796.91 L 575.043,2797.56 L 574.824,2796.86 Z M 579.076,2796.89 L 579.063,2797.52 L 578.595,2798.36 L 578.844,2798.39 L 579.172,2797.76 L 579.472,2798.47 L 579.721,2798.5 L 579.29,2797.55 L 579.303,2796.92 L 579.076,2796.89 Z M 577.664,2796.92 L 577.938,2796.95 C 577.991,2796.96 578.04,2796.97 578.082,2796.99 C 578.125,2797.02 578.162,2797.05 578.193,2797.09 C 578.216,2797.12 578.233,2797.16 578.244,2797.2 C 578.255,2797.24 578.261,2797.29 578.263,2797.35 C 578.265,2797.41 578.265,2797.47 578.263,2797.55 C 578.262,2797.63 578.259,2797.69 578.255,2797.75 C 578.25,2797.81 578.242,2797.85 578.23,2797.89 C 578.217,2797.93 578.199,2797.97 578.174,2797.99 C 578.141,2798.02 578.104,2798.05 578.06,2798.06 C 578.017,2798.07 577.968,2798.07 577.915,2798.06 L 577.64,2798.03 L 577.664,2796.92 Z M 580.659,2797.1 C 580.596,2797.1 580.538,2797.12 580.484,2797.14 C 580.43,2797.16 580.379,2797.2 580.329,2797.24 L 580.476,2797.41 C 580.532,2797.36 580.591,2797.33 580.655,2797.32 C 580.719,2797.3 580.789,2797.3 580.865,2797.31 C 580.965,2797.32 581.041,2797.35 581.093,2797.4 C 581.145,2797.45 581.171,2797.51 581.17,2797.58 C 581.17,2797.62 581.164,2797.65 581.155,2797.67 C 581.145,2797.7 581.129,2797.72 581.108,2797.74 C 581.089,2797.75 581.066,2797.76 581.039,2797.77 C 581.012,2797.77 580.98,2797.78 580.942,2797.78 L 580.764,2797.78 C 580.703,2797.78 580.648,2797.79 580.6,2797.8 C 580.553,2797.82 580.512,2797.84 580.479,2797.87 C 580.441,2797.9 580.413,2797.93 580.393,2797.98 C 580.373,2798.03 580.363,2798.08 580.361,2798.15 C 580.36,2798.24 580.378,2798.32 580.417,2798.39 C 580.456,2798.46 580.512,2798.52 580.586,2798.56 C 580.66,2798.61 580.749,2798.64 580.854,2798.65 C 580.92,2798.66 580.981,2798.66 581.036,2798.66 C 581.09,2798.65 581.141,2798.64 581.188,2798.62 C 581.235,2798.6 581.28,2798.58 581.323,2798.54 L 581.183,2798.38 C 581.136,2798.42 581.085,2798.44 581.029,2798.45 C 580.974,2798.46 580.914,2798.46 580.85,2798.45 C 580.79,2798.44 580.741,2798.43 580.701,2798.4 C 580.661,2798.38 580.631,2798.35 580.611,2798.31 C 580.591,2798.27 580.581,2798.23 580.582,2798.18 C 580.583,2798.15 580.587,2798.13 580.596,2798.1 C 580.605,2798.08 580.62,2798.06 580.64,2798.05 C 580.659,2798.03 580.681,2798.02 580.707,2798.01 C 580.732,2798 580.765,2798 580.806,2798 L 580.986,2797.99 C 581.032,2797.99 581.071,2797.99 581.105,2797.98 C 581.139,2797.98 581.169,2797.97 581.195,2797.96 C 581.221,2797.95 581.245,2797.93 581.267,2797.92 C 581.308,2797.88 581.339,2797.84 581.361,2797.79 C 581.382,2797.74 581.394,2797.68 581.395,2797.62 C 581.396,2797.53 581.375,2797.44 581.331,2797.37 C 581.286,2797.3 581.224,2797.24 581.144,2797.19 C 581.064,2797.15 580.971,2797.12 580.865,2797.1 C 580.79,2797.1 580.721,2797.09 580.659,2797.1 Z M 581.709,2797.22 L 581.678,2798.74 L 582.637,2798.87 L 582.641,2798.66 L 581.909,2798.57 L 581.919,2798.12 L 582.543,2798.2 L 582.547,2798 L 581.923,2797.92 L 581.932,2797.46 L 582.664,2797.55 L 582.668,2797.35 L 581.709,2797.22 Z M 582.98,2797.39 L 582.948,2798.91 L 583.53,2798.98 C 583.625,2798.99 583.708,2798.98 583.778,2798.95 C 583.849,2798.92 583.903,2798.88 583.943,2798.82 C 583.982,2798.76 584.003,2798.68 584.005,2798.6 C 584.006,2798.52 583.994,2798.46 583.969,2798.4 C 583.944,2798.34 583.909,2798.29 583.865,2798.25 C 583.821,2798.21 583.771,2798.18 583.714,2798.15 L 584.074,2797.52 L 583.808,2797.49 L 583.479,2798.09 L 583.194,2798.05 L 583.208,2797.41 L 582.98,2797.39 Z M 584.36,2797.56 L 584.328,2799.08 L 584.556,2799.11 L 584.588,2797.59 L 584.36,2797.56 Z M 584.98,2797.64 L 584.949,2799.16 L 585.907,2799.28 L 585.912,2799.07 L 585.18,2798.98 L 585.189,2798.54 L 585.813,2798.62 L 585.818,2798.41 L 585.194,2798.33 L 585.203,2797.87 L 585.935,2797.97 L 585.939,2797.76 L 584.98,2797.64 Z M 586.443,2797.83 C 586.381,2797.84 586.323,2797.85 586.269,2797.87 C 586.215,2797.9 586.163,2797.93 586.114,2797.97 L 586.261,2798.14 C 586.316,2798.09 586.376,2798.06 586.44,2798.05 C 586.504,2798.03 586.574,2798.03 586.65,2798.04 C 586.749,2798.06 586.825,2798.09 586.878,2798.13 C 586.93,2798.18 586.956,2798.24 586.955,2798.32 C 586.954,2798.35 586.949,2798.38 586.939,2798.41 C 586.929,2798.43 586.914,2798.45 586.893,2798.47 C 586.873,2798.48 586.85,2798.49 586.824,2798.5 C 586.797,2798.51 586.764,2798.51 586.727,2798.51 L 586.549,2798.51 C 586.487,2798.52 586.433,2798.52 586.385,2798.54 C 586.338,2798.55 586.297,2798.57 586.264,2798.6 C 586.226,2798.63 586.197,2798.67 586.178,2798.71 C 586.158,2798.76 586.147,2798.82 586.146,2798.88 C 586.145,2798.97 586.163,2799.05 586.202,2799.12 C 586.241,2799.19 586.297,2799.25 586.371,2799.3 C 586.445,2799.34 586.534,2799.37 586.639,2799.39 C 586.705,2799.4 586.766,2799.4 586.82,2799.39 C 586.875,2799.39 586.926,2799.37 586.973,2799.36 C 587.02,2799.34 587.065,2799.31 587.108,2799.27 L 586.968,2799.11 C 586.921,2799.15 586.869,2799.17 586.814,2799.18 C 586.758,2799.19 586.699,2799.19 586.634,2799.18 C 586.575,2799.18 586.526,2799.16 586.486,2799.14 C 586.446,2799.11 586.416,2799.08 586.396,2799.04 C 586.376,2799 586.366,2798.96 586.367,2798.91 C 586.367,2798.89 586.372,2798.86 586.381,2798.84 C 586.39,2798.81 586.405,2798.79 586.425,2798.78 C 586.444,2798.76 586.466,2798.75 586.491,2798.74 C 586.517,2798.74 586.55,2798.73 586.591,2798.73 L 586.771,2798.73 C 586.816,2798.72 586.856,2798.72 586.89,2798.72 C 586.924,2798.71 586.954,2798.7 586.98,2798.69 C 587.006,2798.68 587.03,2798.67 587.051,2798.65 C 587.092,2798.62 587.124,2798.58 587.145,2798.53 C 587.167,2798.48 587.179,2798.42 587.18,2798.35 C 587.181,2798.26 587.16,2798.18 587.115,2798.1 C 587.071,2798.03 587.009,2797.97 586.929,2797.93 C 586.849,2797.88 586.756,2797.85 586.65,2797.84 C 586.575,2797.83 586.506,2797.83 586.443,2797.83 Z M 583.19,2798.25 L 583.527,2798.29 C 583.578,2798.3 583.623,2798.32 583.66,2798.34 C 583.698,2798.36 583.727,2798.39 583.748,2798.43 C 583.768,2798.47 583.778,2798.51 583.778,2798.56 C 583.776,2798.61 583.765,2798.66 583.742,2798.69 C 583.721,2798.72 583.69,2798.74 583.652,2798.76 C 583.613,2798.77 583.568,2798.78 583.518,2798.77 L 583.18,2798.73 L 583.19,2798.25 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.PPF2_NR_small_individuals, .KN95_NR_small_individuals {
  height: 4rem;
  width: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.PPF2_NR_small_individuals--VIBRANT, .KN95_NR_small_individuals--VIBRANT {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='265.301 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.89' y2='69.197' gradientTransform='translate(309.377 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.716' y2='69.454' gradientTransform='translate(297.04 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.401' y2='7.324' gradientTransform='translate(309.356 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.801' gradientTransform='translate(293.06 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.57' gradientTransform='translate(338.361 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.57' y2='0' gradientTransform='translate(299.506 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(323.629 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 299.22,2776.57 L 299.22,2858.45 L 360.051,2862.36 C 360.094,2862.31 360.126,2862.24 360.126,2862.16 L 360.126,2784.82 L 299.22,2776.57 Z' stroke-width='8.031' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 299.22,2776.57 L 287.145,2788.29 L 287.138,2865.07 L 299.22,2858.45 L 299.22,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 299.22,2858.45 L 287.138,2865.07 L 346.173,2868.31 L 359.921,2862.45 C 359.968,2862.43 360.015,2862.4 360.051,2862.36 L 299.22,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 298.916,2857.52 L 287.134,2864.11 L 287.132,2865.07 L 298.916,2858.62 L 298.916,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 316.09,2819.56 L 316.082,2826.71 L 317.263,2826.83 L 317.269,2823.18 L 318.244,2824.24 L 319.12,2825.19 L 320.961,2827.21 L 322.713,2827.39 L 319.823,2824.22 L 322.696,2820.23 L 321.238,2820.08 L 318.947,2823.27 L 317.271,2821.45 L 317.271,2819.68 L 316.09,2819.56 Z M 323.298,2820.29 L 323.904,2821.63 L 326.666,2827.79 L 329.448,2822.2 L 330.049,2820.98 L 328.731,2820.85 L 328.122,2822.06 L 326.67,2824.98 L 325.224,2821.77 L 324.621,2820.43 L 323.298,2820.29 Z M 330.648,2821.04 L 330.658,2821.04 L 331.565,2822.41 L 333.187,2824.86 L 333.938,2825.98 L 334.84,2827.35 L 330.633,2826.92 L 330.631,2828.19 L 335.748,2828.71 L 337.229,2828.86 L 336.317,2827.49 L 334.674,2825.01 L 333.931,2823.89 L 333.037,2822.56 L 337.267,2822.99 L 337.27,2821.71 L 332.15,2821.19 L 332.141,2821.19 L 330.648,2821.04 Z M 339.281,2822.07 C 339.068,2822.15 338.874,2822.27 338.717,2822.43 C 338.551,2822.59 338.423,2822.78 338.335,2823 C 338.242,2823.23 338.198,2823.47 338.195,2823.74 L 338.189,2827.03 C 338.189,2827.3 338.234,2827.55 338.327,2827.79 C 338.416,2828.04 338.542,2828.25 338.71,2828.45 C 338.868,2828.64 339.059,2828.8 339.272,2828.92 C 339.487,2829.04 339.719,2829.12 339.966,2829.14 L 344.798,2829.63 L 344.798,2828.36 L 339.966,2827.86 C 339.853,2827.85 339.753,2827.81 339.661,2827.74 C 339.57,2827.68 339.502,2827.59 339.447,2827.49 C 339.392,2827.38 339.366,2827.27 339.366,2827.15 L 339.366,2826.49 L 343.619,2826.92 L 343.622,2825.64 L 339.366,2825.21 L 339.366,2823.86 C 339.366,2823.74 339.395,2823.63 339.451,2823.54 C 339.508,2823.45 339.576,2823.37 339.666,2823.33 C 339.76,2823.27 339.857,2823.26 339.972,2823.27 L 344.805,2823.76 L 344.807,2822.48 L 339.972,2821.99 C 339.73,2821.97 339.498,2821.99 339.281,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 323.076,2815.76 L 323.076,2817.28 C 323.076,2817.36 323.09,2817.43 323.117,2817.51 C 323.145,2817.58 323.185,2817.64 323.236,2817.7 C 323.287,2817.76 323.347,2817.8 323.413,2817.84 C 323.481,2817.87 323.554,2817.9 323.632,2817.9 L 325.141,2818.07 L 325.141,2817.69 L 323.632,2817.53 C 323.598,2817.53 323.566,2817.51 323.536,2817.49 C 323.509,2817.47 323.487,2817.45 323.468,2817.42 C 323.451,2817.39 323.445,2817.36 323.445,2817.32 L 323.445,2817.13 L 324.772,2817.26 L 324.772,2816.89 L 323.443,2816.75 L 323.445,2815.8 L 323.076,2815.76 Z M 325.441,2816.01 L 325.439,2817.53 C 325.439,2817.61 325.451,2817.68 325.481,2817.76 C 325.506,2817.83 325.547,2817.89 325.596,2817.95 C 325.649,2818 325.708,2818.05 325.774,2818.09 C 325.84,2818.12 325.911,2818.14 325.994,2818.15 L 327.501,2818.31 L 327.502,2817.94 L 325.996,2817.78 C 325.96,2817.78 325.925,2817.76 325.9,2817.75 C 325.87,2817.72 325.849,2817.7 325.83,2817.67 C 325.813,2817.64 325.807,2817.61 325.807,2817.57 L 325.807,2817.38 L 327.134,2817.52 L 327.134,2817.15 L 325.804,2817 L 325.807,2816.04 L 325.441,2816.01 Z M 327.803,2816.26 L 327.799,2818.35 L 329.1,2818.49 C 329.175,2818.49 329.25,2818.49 329.313,2818.46 C 329.382,2818.44 329.441,2818.41 329.492,2818.36 L 329.494,2818.36 C 329.545,2818.31 329.584,2818.25 329.615,2818.19 C 329.641,2818.12 329.658,2818.05 329.658,2817.98 C 329.658,2817.9 329.641,2817.83 329.618,2817.76 C 329.588,2817.69 329.549,2817.62 329.503,2817.57 C 329.454,2817.51 329.398,2817.47 329.335,2817.43 C 329.283,2817.4 329.231,2817.38 329.173,2817.37 C 329.169,2817.37 329.162,2817.37 329.158,2817.37 L 329.158,2817.36 L 328.168,2817.26 L 328.171,2816.3 L 327.803,2816.26 Z M 329.95,2816.47 L 329.95,2817.1 C 329.95,2817.14 329.952,2817.18 329.961,2817.22 C 329.968,2817.26 329.983,2817.3 329.997,2817.34 C 330.028,2817.42 330.071,2817.48 330.124,2817.54 C 330.178,2817.61 330.237,2817.66 330.309,2817.7 C 330.377,2817.73 330.454,2817.76 330.537,2817.77 L 331.42,2817.87 L 331.43,2817.87 C 331.471,2817.88 331.509,2817.89 331.541,2817.92 C 331.574,2817.94 331.599,2817.98 331.618,2818.02 C 331.637,2818.05 331.646,2818.09 331.646,2818.13 C 331.646,2818.18 331.635,2818.22 331.614,2818.25 C 331.592,2818.29 331.566,2818.31 331.529,2818.33 C 331.493,2818.35 331.452,2818.36 331.408,2818.36 L 329.952,2818.2 L 329.952,2818.57 L 331.405,2818.73 C 331.493,2818.74 331.574,2818.73 331.644,2818.7 C 331.716,2818.68 331.78,2818.64 331.839,2818.59 C 331.894,2818.54 331.939,2818.48 331.967,2818.41 C 331.999,2818.34 332.014,2818.26 332.016,2818.17 C 332.016,2818.13 332.012,2818.09 332.003,2818.05 C 331.994,2818.01 331.982,2817.97 331.964,2817.93 C 331.952,2817.89 331.935,2817.86 331.913,2817.82 C 331.894,2817.79 331.869,2817.76 331.843,2817.73 C 331.792,2817.67 331.726,2817.61 331.656,2817.57 C 331.584,2817.53 331.511,2817.51 331.427,2817.49 L 331.418,2817.49 C 331.415,2817.49 331.412,2817.49 331.408,2817.49 L 330.537,2817.4 C 330.496,2817.39 330.46,2817.38 330.426,2817.35 C 330.392,2817.33 330.366,2817.29 330.35,2817.26 C 330.329,2817.22 330.322,2817.18 330.322,2817.14 L 330.322,2816.89 L 332.008,2817.07 L 332.009,2816.7 L 330.554,2816.54 L 329.95,2816.47 Z M 333.75,2816.88 L 333.748,2818.96 L 334.116,2818.72 L 335.446,2817.82 L 335.444,2819.15 L 335.812,2819.19 L 335.816,2817.1 L 335.446,2817.35 L 334.116,2818.24 L 334.12,2816.92 L 333.75,2816.88 Z M 336.11,2817.14 L 336.108,2819.22 L 337.412,2819.36 C 337.487,2819.37 337.559,2819.37 337.625,2819.34 C 337.695,2819.32 337.753,2819.28 337.804,2819.24 C 337.852,2819.19 337.893,2819.14 337.923,2819.07 C 337.951,2819 337.966,2818.93 337.967,2818.86 C 337.967,2818.78 337.951,2818.71 337.925,2818.63 C 337.897,2818.57 337.859,2818.5 337.81,2818.45 C 337.764,2818.39 337.706,2818.35 337.644,2818.3 C 337.593,2818.28 337.538,2818.25 337.482,2818.24 L 337.78,2817.68 L 337.97,2817.33 L 337.557,2817.29 L 337.367,2817.64 L 337.167,2818.01 L 337.159,2818.03 C 337.127,2818.08 337.085,2818.12 337.027,2818.14 C 336.974,2818.17 336.912,2818.18 336.844,2818.17 L 336.478,2818.13 L 336.48,2817.17 L 336.11,2817.14 Z M 328.168,2817.62 L 329.105,2817.72 C 329.115,2817.72 329.129,2817.73 329.143,2817.73 C 329.156,2817.74 329.166,2817.74 329.18,2817.75 L 329.18,2817.75 C 329.213,2817.77 329.243,2817.8 329.26,2817.83 C 329.281,2817.86 329.29,2817.9 329.29,2817.94 C 329.29,2817.97 329.283,2818 329.271,2818.02 C 329.258,2818.04 329.247,2818.06 329.237,2818.07 C 329.222,2818.08 329.205,2818.09 329.184,2818.1 C 329.162,2818.11 329.135,2818.11 329.105,2818.11 L 328.168,2818.01 L 328.168,2817.62 Z M 336.478,2818.5 L 337.414,2818.6 C 337.425,2818.6 337.438,2818.61 337.453,2818.61 C 337.466,2818.62 337.476,2818.62 337.487,2818.63 C 337.523,2818.65 337.55,2818.68 337.568,2818.71 C 337.591,2818.74 337.602,2818.78 337.602,2818.82 C 337.598,2818.85 337.593,2818.88 337.578,2818.9 C 337.565,2818.92 337.557,2818.94 337.544,2818.95 C 337.532,2818.96 337.514,2818.97 337.493,2818.98 C 337.469,2818.99 337.444,2818.99 337.412,2818.99 L 336.476,2818.89 L 336.478,2818.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 316.499,2811.59 L 316.497,2812.97 L 317.341,2813.06 C 317.393,2813.07 317.444,2813.06 317.485,2813.05 C 317.525,2813.03 317.567,2813.01 317.597,2812.98 L 317.599,2812.97 C 317.636,2812.94 317.659,2812.91 317.678,2812.87 C 317.695,2812.82 317.708,2812.78 317.708,2812.72 C 317.708,2812.67 317.697,2812.62 317.68,2812.58 C 317.663,2812.53 317.64,2812.49 317.606,2812.45 C 317.576,2812.41 317.537,2812.38 317.497,2812.36 C 317.463,2812.34 317.429,2812.32 317.393,2812.32 C 317.389,2812.32 317.385,2812.32 317.382,2812.32 L 317.382,2812.32 L 316.74,2812.25 L 316.741,2811.61 L 316.499,2811.59 Z M 317.897,2811.73 L 317.895,2813.11 L 318.744,2813.2 C 318.797,2813.21 318.842,2813.2 318.884,2813.19 C 318.929,2813.17 318.963,2813.15 318.998,2813.12 C 319.031,2813.09 319.055,2813.05 319.08,2813.01 C 319.095,2812.97 319.104,2812.92 319.106,2812.87 C 319.104,2812.82 319.095,2812.77 319.083,2812.72 C 319.057,2812.68 319.035,2812.64 319.004,2812.6 C 318.969,2812.56 318.938,2812.53 318.895,2812.51 C 318.861,2812.49 318.827,2812.47 318.793,2812.46 L 318.983,2812.09 L 319.106,2811.85 L 318.84,2811.82 L 318.715,2812.06 L 318.586,2812.31 L 318.58,2812.32 C 318.559,2812.35 318.529,2812.38 318.495,2812.39 C 318.457,2812.41 318.42,2812.42 318.378,2812.41 L 318.136,2812.39 L 318.136,2811.75 L 317.897,2811.73 Z M 319.661,2811.97 C 319.584,2811.99 319.512,2812.04 319.453,2812.09 C 319.387,2812.15 319.337,2812.22 319.306,2812.3 C 319.272,2812.38 319.255,2812.47 319.251,2812.57 C 319.255,2812.66 319.272,2812.75 319.304,2812.84 C 319.337,2812.93 319.387,2813.01 319.451,2813.08 C 319.51,2813.15 319.583,2813.2 319.659,2813.25 C 319.742,2813.29 319.829,2813.32 319.923,2813.33 C 320.015,2813.34 320.104,2813.33 320.187,2813.3 C 320.263,2813.27 320.338,2813.24 320.398,2813.18 C 320.461,2813.12 320.51,2813.05 320.542,2812.97 C 320.576,2812.89 320.596,2812.8 320.596,2812.7 C 320.596,2812.61 320.578,2812.52 320.542,2812.43 C 320.51,2812.34 320.464,2812.27 320.4,2812.19 C 320.34,2812.12 320.265,2812.06 320.189,2812.02 C 320.104,2811.98 320.017,2811.95 319.925,2811.94 L 319.791,2811.94 C 319.744,2811.95 319.704,2811.95 319.661,2811.97 Z M 321.291,2812.08 L 321.289,2813.22 L 320.74,2813.16 L 320.74,2813.41 L 322.078,2813.55 L 322.078,2813.3 L 321.534,2813.25 L 321.536,2812.11 L 321.291,2812.08 Z M 319.925,2812.19 C 319.982,2812.19 320.04,2812.21 320.093,2812.24 C 320.148,2812.27 320.193,2812.31 320.229,2812.35 C 320.268,2812.39 320.299,2812.45 320.325,2812.51 C 320.344,2812.56 320.357,2812.62 320.357,2812.68 C 320.357,2812.74 320.344,2812.8 320.323,2812.85 C 320.299,2812.9 320.268,2812.95 320.229,2812.98 C 320.191,2813.02 320.147,2813.05 320.091,2813.06 C 320.038,2813.08 319.982,2813.09 319.923,2813.08 C 319.865,2813.08 319.808,2813.06 319.755,2813.03 C 319.704,2813 319.655,2812.97 319.617,2812.92 C 319.58,2812.87 319.548,2812.83 319.525,2812.76 C 319.508,2812.71 319.495,2812.65 319.495,2812.59 C 319.495,2812.53 319.508,2812.47 319.525,2812.42 C 319.548,2812.37 319.583,2812.32 319.619,2812.29 C 319.657,2812.25 319.706,2812.22 319.755,2812.21 C 319.808,2812.19 319.867,2812.18 319.925,2812.19 Z M 322.496,2812.24 C 322.457,2812.25 322.419,2812.27 322.383,2812.31 C 322.351,2812.34 322.325,2812.37 322.306,2812.42 C 322.289,2812.46 322.281,2812.51 322.281,2812.56 L 322.279,2813.2 C 322.281,2813.25 322.285,2813.3 322.304,2813.35 C 322.325,2813.4 322.349,2813.43 322.383,2813.47 C 322.417,2813.51 322.453,2813.54 322.496,2813.57 C 322.541,2813.59 322.587,2813.61 322.636,2813.61 L 323.619,2813.71 L 323.619,2813.47 L 322.636,2813.36 C 322.614,2813.36 322.593,2813.35 322.574,2813.34 C 322.559,2813.33 322.542,2813.31 322.532,2813.29 C 322.521,2813.27 322.515,2813.24 322.515,2813.22 L 322.515,2813.09 L 323.379,2813.18 L 323.379,2812.93 L 322.515,2812.85 L 322.519,2812.59 C 322.519,2812.56 322.521,2812.54 322.533,2812.52 C 322.545,2812.51 322.562,2812.49 322.577,2812.48 C 322.598,2812.47 322.617,2812.47 322.636,2812.47 L 323.621,2812.57 L 323.621,2812.32 L 322.638,2812.22 C 322.589,2812.22 322.542,2812.22 322.496,2812.24 Z M 324.198,2812.44 C 324.119,2812.46 324.051,2812.51 323.989,2812.56 C 323.925,2812.62 323.877,2812.69 323.843,2812.77 C 323.808,2812.85 323.789,2812.94 323.789,2813.03 C 323.789,2813.13 323.808,2813.22 323.843,2813.31 C 323.874,2813.4 323.923,2813.47 323.989,2813.55 C 324.051,2813.62 324.119,2813.67 324.198,2813.72 C 324.281,2813.76 324.368,2813.79 324.462,2813.8 L 325.13,2813.87 L 325.13,2813.62 L 324.462,2813.55 C 324.402,2813.55 324.345,2813.53 324.294,2813.5 C 324.242,2813.47 324.194,2813.43 324.154,2813.39 C 324.117,2813.34 324.087,2813.3 324.062,2813.24 C 324.045,2813.18 324.03,2813.12 324.03,2813.06 C 324.03,2813 324.045,2812.94 324.064,2812.89 C 324.087,2812.84 324.117,2812.79 324.155,2812.76 C 324.196,2812.72 324.245,2812.69 324.296,2812.68 C 324.345,2812.66 324.402,2812.65 324.464,2812.66 L 325.132,2812.73 L 325.132,2812.48 L 324.464,2812.41 L 324.327,2812.41 C 324.283,2812.41 324.242,2812.42 324.198,2812.44 Z M 316.74,2812.5 L 317.346,2812.56 C 317.356,2812.56 317.367,2812.56 317.374,2812.56 C 317.382,2812.56 317.389,2812.57 317.399,2812.58 C 317.419,2812.59 317.437,2812.6 317.452,2812.63 C 317.463,2812.65 317.467,2812.67 317.467,2812.7 C 317.467,2812.72 317.463,2812.74 317.457,2812.75 C 317.45,2812.77 317.44,2812.78 317.433,2812.78 C 317.425,2812.79 317.414,2812.8 317.401,2812.8 C 317.385,2812.81 317.37,2812.82 317.346,2812.81 L 316.74,2812.75 L 316.74,2812.5 Z M 325.875,2812.56 L 325.875,2813.7 L 325.324,2813.64 L 325.324,2813.89 L 326.666,2814.03 L 326.666,2813.78 L 326.115,2813.72 L 326.115,2812.58 L 325.875,2812.56 Z M 318.136,2812.64 L 318.744,2812.7 C 318.752,2812.7 318.761,2812.7 318.77,2812.7 C 318.781,2812.71 318.787,2812.71 318.797,2812.72 C 318.817,2812.73 318.833,2812.74 318.848,2812.77 C 318.861,2812.79 318.867,2812.82 318.867,2812.84 C 318.867,2812.87 318.861,2812.88 318.855,2812.9 C 318.848,2812.91 318.84,2812.92 318.829,2812.93 C 318.823,2812.93 318.81,2812.94 318.802,2812.95 C 318.785,2812.96 318.763,2812.96 318.744,2812.96 L 318.136,2812.89 L 318.136,2812.64 Z M 326.858,2812.66 L 326.856,2814.05 L 327.1,2814.07 L 327.103,2812.68 L 326.858,2812.66 Z M 327.9,2812.77 L 327.336,2813.85 L 327.211,2814.08 L 327.481,2814.11 L 327.604,2813.88 L 327.899,2813.31 L 328.19,2813.94 L 328.315,2814.2 L 328.581,2814.23 L 328.458,2813.97 L 327.9,2812.77 Z M 328.924,2812.9 C 328.882,2812.92 328.843,2812.94 328.811,2812.97 C 328.777,2813 328.749,2813.04 328.735,2813.08 C 328.713,2813.12 328.702,2813.17 328.702,2813.22 L 328.702,2813.86 C 328.702,2813.92 328.711,2813.97 328.732,2814.01 C 328.747,2814.06 328.775,2814.1 328.809,2814.14 C 328.841,2814.18 328.879,2814.21 328.922,2814.23 C 328.964,2814.26 329.014,2814.27 329.064,2814.28 L 330.041,2814.38 L 330.041,2814.13 L 329.064,2814.03 C 329.037,2814.03 329.018,2814.02 328.999,2814.01 C 328.981,2813.99 328.969,2813.98 328.956,2813.95 C 328.945,2813.94 328.939,2813.91 328.939,2813.89 L 328.939,2813.76 L 329.807,2813.85 L 329.807,2813.61 L 328.941,2813.52 L 328.941,2813.25 C 328.941,2813.23 328.948,2813.21 328.958,2813.19 C 328.969,2813.17 328.981,2813.15 329.003,2813.15 C 329.02,2813.14 329.039,2813.13 329.066,2813.13 L 330.043,2813.24 L 330.043,2812.99 L 329.066,2812.89 C 329.015,2812.88 328.967,2812.89 328.924,2812.9 Z M 331.167,2813.1 L 331.165,2814.49 L 332.012,2814.58 C 332.063,2814.59 332.109,2814.58 332.154,2814.57 C 332.199,2814.55 332.235,2814.53 332.269,2814.5 C 332.303,2814.47 332.326,2814.43 332.347,2814.38 C 332.362,2814.34 332.373,2814.29 332.373,2814.24 C 332.373,2814.19 332.365,2814.14 332.35,2814.1 C 332.331,2814.05 332.307,2814.01 332.275,2813.97 C 332.244,2813.94 332.21,2813.91 332.165,2813.88 C 332.135,2813.86 332.094,2813.85 332.06,2813.84 L 332.256,2813.46 L 332.376,2813.23 L 332.105,2813.2 L 331.986,2813.43 L 331.858,2813.68 L 331.852,2813.69 C 331.831,2813.72 331.801,2813.75 331.762,2813.77 C 331.728,2813.79 331.69,2813.79 331.65,2813.79 L 331.405,2813.76 L 331.408,2813.13 L 331.167,2813.1 Z M 332.793,2813.3 C 332.75,2813.32 332.709,2813.34 332.68,2813.37 C 332.645,2813.4 332.62,2813.44 332.601,2813.48 C 332.584,2813.53 332.573,2813.58 332.573,2813.63 L 332.573,2814.27 C 332.573,2814.32 332.582,2814.37 332.599,2814.41 C 332.618,2814.46 332.644,2814.5 332.678,2814.54 C 332.709,2814.58 332.748,2814.61 332.79,2814.64 C 332.835,2814.66 332.882,2814.68 332.931,2814.68 L 333.912,2814.78 L 333.912,2814.53 L 332.931,2814.43 C 332.911,2814.43 332.888,2814.42 332.869,2814.41 C 332.856,2814.39 332.84,2814.38 332.826,2814.36 C 332.816,2814.34 332.81,2814.31 332.81,2814.29 L 332.81,2814.16 L 333.673,2814.25 L 333.673,2814 L 332.811,2813.91 L 332.811,2813.65 C 332.811,2813.63 332.818,2813.61 332.829,2813.59 C 332.84,2813.57 332.856,2813.56 332.871,2813.55 C 332.89,2813.54 332.914,2813.54 332.931,2813.54 L 333.914,2813.64 L 333.914,2813.39 L 332.933,2813.29 C 332.884,2813.29 332.837,2813.29 332.793,2813.3 Z M 334.365,2813.47 C 334.316,2813.49 334.271,2813.52 334.231,2813.55 C 334.191,2813.59 334.163,2813.63 334.137,2813.68 C 334.12,2813.73 334.105,2813.79 334.105,2813.85 L 334.35,2813.87 C 334.35,2813.84 334.357,2813.8 334.372,2813.78 C 334.388,2813.75 334.409,2813.73 334.438,2813.72 C 334.465,2813.7 334.493,2813.7 334.531,2813.7 L 334.952,2813.75 C 334.987,2813.75 335.016,2813.76 335.046,2813.78 C 335.069,2813.8 335.095,2813.82 335.11,2813.86 C 335.127,2813.89 335.135,2813.92 335.135,2813.96 C 335.135,2813.99 335.127,2814.02 335.11,2814.05 C 335.095,2814.08 335.069,2814.1 335.046,2814.11 C 335.014,2814.13 334.987,2814.13 334.952,2814.13 L 334.465,2814.08 L 334.397,2814.08 C 334.372,2814.08 334.35,2814.08 334.329,2814.09 C 334.286,2814.1 334.252,2814.13 334.214,2814.15 C 334.201,2814.17 334.18,2814.19 334.167,2814.21 C 334.146,2814.24 334.133,2814.27 334.122,2814.31 C 334.112,2814.34 334.105,2814.38 334.105,2814.42 L 334.105,2814.42 C 334.105,2814.47 334.116,2814.52 334.133,2814.57 C 334.15,2814.62 334.176,2814.66 334.212,2814.7 C 334.248,2814.74 334.282,2814.77 334.327,2814.79 C 334.367,2814.82 334.416,2814.83 334.465,2814.84 L 335.01,2814.89 C 335.059,2814.9 335.105,2814.89 335.15,2814.88 C 335.195,2814.87 335.233,2814.84 335.269,2814.81 C 335.299,2814.78 335.327,2814.74 335.344,2814.7 C 335.365,2814.66 335.371,2814.61 335.371,2814.56 L 335.371,2814.55 L 335.133,2814.52 L 335.133,2814.53 C 335.133,2814.55 335.127,2814.57 335.116,2814.59 C 335.103,2814.61 335.091,2814.62 335.072,2814.64 C 335.054,2814.64 335.033,2814.65 335.01,2814.64 L 334.465,2814.59 C 334.444,2814.59 334.42,2814.58 334.403,2814.56 C 334.388,2814.55 334.372,2814.53 334.358,2814.51 C 334.35,2814.49 334.346,2814.47 334.346,2814.45 L 334.346,2814.44 C 334.346,2814.41 334.35,2814.4 334.358,2814.38 C 334.372,2814.36 334.388,2814.34 334.406,2814.34 C 334.42,2814.33 334.444,2814.32 334.465,2814.32 L 334.952,2814.37 L 335.042,2814.37 C 335.067,2814.37 335.097,2814.36 335.123,2814.36 C 335.18,2814.34 335.225,2814.31 335.263,2814.27 C 335.269,2814.26 335.271,2814.26 335.274,2814.26 C 335.276,2814.26 335.276,2814.25 335.28,2814.25 C 335.308,2814.22 335.331,2814.18 335.346,2814.13 C 335.367,2814.08 335.374,2814.03 335.374,2813.98 C 335.374,2813.92 335.363,2813.86 335.341,2813.8 C 335.323,2813.75 335.289,2813.7 335.253,2813.66 C 335.21,2813.62 335.168,2813.58 335.114,2813.55 C 335.063,2813.53 335.01,2813.5 334.952,2813.5 L 334.531,2813.45 C 334.472,2813.45 334.416,2813.45 334.365,2813.47 Z M 335.572,2813.57 L 335.566,2814.95 L 336.414,2815.04 C 336.465,2815.05 336.51,2815.04 336.552,2815.02 C 336.597,2815.01 336.636,2814.99 336.674,2814.96 L 336.674,2814.96 C 336.703,2814.92 336.731,2814.88 336.751,2814.84 C 336.766,2814.8 336.776,2814.75 336.776,2814.7 C 336.776,2814.65 336.77,2814.6 336.751,2814.55 C 336.733,2814.51 336.71,2814.47 336.678,2814.43 C 336.644,2814.39 336.61,2814.36 336.565,2814.34 C 336.535,2814.32 336.499,2814.3 336.463,2814.3 C 336.459,2814.3 336.455,2814.29 336.453,2814.29 L 336.453,2814.29 L 335.81,2814.23 L 335.81,2813.59 L 335.572,2813.57 Z M 336.972,2813.71 L 336.969,2815.1 L 337.204,2815.12 L 337.208,2813.73 L 336.972,2813.71 Z M 337.402,2813.75 L 337.399,2815.14 L 338.246,2815.22 C 338.298,2815.23 338.344,2815.22 338.389,2815.21 C 338.431,2815.2 338.466,2815.17 338.502,2815.14 C 338.536,2815.11 338.559,2815.07 338.578,2815.03 C 338.597,2814.99 338.606,2814.94 338.608,2814.89 C 338.606,2814.84 338.597,2814.79 338.581,2814.74 C 338.561,2814.7 338.538,2814.65 338.508,2814.62 C 338.476,2814.58 338.438,2814.55 338.395,2814.52 C 338.364,2814.51 338.329,2814.49 338.295,2814.48 L 338.487,2814.11 L 338.608,2813.87 L 338.342,2813.85 L 338.217,2814.08 L 338.089,2814.33 L 338.083,2814.34 C 338.061,2814.37 338.033,2814.4 337.997,2814.41 C 337.963,2814.43 337.923,2814.44 337.882,2814.44 L 337.642,2814.41 L 337.642,2813.77 L 337.402,2813.75 Z M 338.725,2813.89 L 338.849,2814.15 L 339.41,2815.35 L 339.972,2814.27 L 340.1,2814.03 L 339.83,2814 L 339.706,2814.24 L 339.41,2814.8 L 339.117,2814.18 L 338.994,2813.92 L 338.725,2813.89 Z M 331.405,2814.01 L 332.014,2814.08 C 332.024,2814.08 332.033,2814.08 332.039,2814.08 C 332.048,2814.08 332.056,2814.09 332.063,2814.09 C 332.084,2814.11 332.103,2814.13 332.12,2814.15 C 332.13,2814.17 332.139,2814.19 332.139,2814.22 C 332.139,2814.24 332.135,2814.26 332.124,2814.27 C 332.118,2814.29 332.105,2814.3 332.099,2814.3 C 332.09,2814.31 332.08,2814.32 332.069,2814.32 C 332.058,2814.33 332.05,2814.33 332.041,2814.33 L 332.012,2814.33 L 331.405,2814.27 L 331.405,2814.01 Z M 340.761,2814.1 L 340.761,2815.24 L 340.21,2815.19 L 340.209,2815.43 L 341.551,2815.57 L 341.551,2815.33 L 341,2815.26 L 341.002,2814.13 L 340.761,2814.1 Z M 342.109,2814.29 C 342.028,2814.32 341.959,2814.36 341.896,2814.42 C 341.836,2814.48 341.787,2814.55 341.749,2814.63 C 341.717,2814.7 341.698,2814.8 341.698,2814.89 C 341.698,2814.99 341.715,2815.08 341.749,2815.17 C 341.785,2815.25 341.834,2815.34 341.896,2815.4 C 341.958,2815.47 342.025,2815.53 342.106,2815.58 C 342.191,2815.62 342.279,2815.65 342.368,2815.66 C 342.466,2815.67 342.549,2815.66 342.63,2815.63 C 342.711,2815.6 342.785,2815.56 342.847,2815.5 C 342.906,2815.44 342.953,2815.38 342.987,2815.3 C 343.023,2815.21 343.041,2815.13 343.043,2815.03 C 343.041,2814.93 343.023,2814.84 342.989,2814.75 C 342.953,2814.67 342.906,2814.59 342.847,2814.52 C 342.79,2814.45 342.713,2814.39 342.632,2814.35 C 342.551,2814.31 342.468,2814.28 342.372,2814.27 L 342.236,2814.27 C 342.194,2814.27 342.153,2814.28 342.109,2814.29 Z M 343.188,2814.35 L 343.185,2815.74 L 344.032,2815.82 C 344.081,2815.83 344.128,2815.82 344.172,2815.81 C 344.217,2815.8 344.256,2815.77 344.289,2815.74 C 344.324,2815.71 344.347,2815.67 344.364,2815.63 C 344.383,2815.59 344.392,2815.54 344.392,2815.49 C 344.392,2815.44 344.383,2815.39 344.368,2815.34 C 344.349,2815.3 344.328,2815.26 344.292,2815.22 C 344.262,2815.18 344.223,2815.15 344.186,2815.12 C 344.147,2815.11 344.115,2815.09 344.077,2815.09 L 344.274,2814.71 L 344.394,2814.47 L 344.126,2814.45 L 344.006,2814.68 L 343.873,2814.93 L 343.868,2814.94 C 343.847,2814.97 343.822,2815 343.783,2815.02 C 343.747,2815.03 343.709,2815.04 343.664,2815.03 L 343.426,2815.01 L 343.426,2814.37 L 343.188,2814.35 Z M 335.808,2814.47 L 336.416,2814.53 C 336.425,2814.54 336.435,2814.54 336.444,2814.54 C 336.45,2814.55 336.459,2814.55 336.468,2814.55 L 336.468,2814.55 C 336.486,2814.57 336.506,2814.59 336.519,2814.61 C 336.534,2814.63 336.538,2814.65 336.54,2814.68 C 336.538,2814.7 336.535,2814.72 336.527,2814.73 C 336.516,2814.75 336.51,2814.76 336.501,2814.76 C 336.493,2814.77 336.484,2814.78 336.47,2814.78 C 336.455,2814.79 336.44,2814.79 336.416,2814.79 L 335.808,2814.73 L 335.808,2814.47 Z M 342.372,2814.51 C 342.432,2814.52 342.487,2814.54 342.538,2814.57 C 342.589,2814.6 342.636,2814.64 342.675,2814.68 C 342.715,2814.72 342.747,2814.78 342.768,2814.83 C 342.796,2814.89 342.802,2814.95 342.802,2815.01 C 342.802,2815.07 342.794,2815.12 342.768,2815.18 C 342.747,2815.23 342.713,2815.28 342.673,2815.31 C 342.634,2815.35 342.589,2815.38 342.538,2815.39 C 342.487,2815.41 342.43,2815.41 342.368,2815.41 C 342.308,2815.4 342.253,2815.38 342.202,2815.36 C 342.153,2815.33 342.104,2815.29 342.064,2815.25 C 342.024,2815.2 341.994,2815.15 341.973,2815.09 C 341.949,2815.04 341.94,2814.98 341.938,2814.92 C 341.94,2814.85 341.949,2814.8 341.973,2814.75 C 341.994,2814.7 342.024,2814.65 342.064,2814.62 C 342.104,2814.58 342.153,2814.55 342.205,2814.53 C 342.256,2814.51 342.308,2814.51 342.372,2814.51 Z M 337.642,2814.66 L 338.246,2814.72 C 338.257,2814.72 338.263,2814.73 338.272,2814.73 C 338.28,2814.73 338.289,2814.74 338.298,2814.74 C 338.321,2814.75 338.338,2814.77 338.349,2814.79 C 338.364,2814.82 338.37,2814.84 338.37,2814.86 C 338.37,2814.89 338.364,2814.91 338.357,2814.92 C 338.349,2814.93 338.342,2814.94 338.334,2814.95 C 338.325,2814.96 338.314,2814.97 338.299,2814.97 C 338.287,2814.98 338.265,2814.98 338.246,2814.98 L 337.642,2814.92 L 337.642,2814.66 Z M 343.426,2815.26 L 344.032,2815.33 C 344.042,2815.33 344.051,2815.33 344.06,2815.33 C 344.068,2815.34 344.075,2815.34 344.081,2815.34 C 344.105,2815.35 344.121,2815.37 344.136,2815.39 C 344.147,2815.41 344.153,2815.43 344.153,2815.46 C 344.151,2815.48 344.147,2815.5 344.143,2815.52 C 344.136,2815.53 344.126,2815.54 344.117,2815.55 C 344.111,2815.56 344.098,2815.56 344.085,2815.57 C 344.072,2815.58 344.056,2815.58 344.032,2815.58 L 343.426,2815.52 L 343.426,2815.26 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 299.521,2858.06 L 298.916,2858.62 L 359.611,2862.58 L 359.921,2862.45 C 360.024,2862.41 360.126,2862.32 360.126,2862.16 L 360.126,2862.01 L 299.521,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 298.916,2858.62 L 298.914,2776.86 L 299.22,2776.57 L 299.521,2776.61 L 299.521,2858.06 L 298.916,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_9' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(317.491 2789.88) rotate(90) skewX(-7.19518)' fill='%23e01a1a'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.973' transform='translate(323.955 2790.7) rotate(90) skewX(-7.19518)' fill='%23dc5500'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(330.42 2791.51) rotate(90) skewX(-7.19316)' fill='%23d4126a'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(336.887 2792.33) rotate(90) skewX(-7.19518)' fill='%238d56c4'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(343.351 2793.14) rotate(90) skewX(-7.19316)' fill='%23e8b3c0'/%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.334' fill='%23000000'%3E%3Cg id='Group_11'%3E%3Cpath d='M 321.9,2795.83 L 321.319,2796.92 L 321.191,2797.15 L 321.47,2797.19 L 321.595,2796.95 L 321.9,2796.38 L 322.204,2797.02 L 322.33,2797.29 L 322.608,2797.32 L 322.481,2797.06 L 321.9,2795.83 Z M 322.729,2795.93 L 322.729,2797.34 L 322.976,2797.37 L 322.976,2795.96 L 322.729,2795.93 Z M 323.174,2795.98 L 323.174,2797.39 L 324.049,2797.49 C 324.102,2797.5 324.151,2797.5 324.196,2797.48 C 324.241,2797.47 324.281,2797.45 324.315,2797.41 C 324.349,2797.38 324.377,2797.35 324.396,2797.3 C 324.415,2797.26 324.426,2797.21 324.426,2797.16 C 324.426,2797.12 324.419,2797.08 324.408,2797.05 C 324.4,2797.01 324.386,2796.98 324.366,2796.95 C 324.407,2796.92 324.441,2796.9 324.47,2796.86 C 324.5,2796.83 324.523,2796.79 324.538,2796.74 C 324.555,2796.7 324.564,2796.65 324.564,2796.6 C 324.564,2796.53 324.551,2796.47 324.529,2796.42 C 324.507,2796.36 324.474,2796.31 324.434,2796.26 C 324.393,2796.22 324.347,2796.18 324.294,2796.15 C 324.241,2796.12 324.183,2796.1 324.121,2796.1 L 323.174,2795.98 Z M 324.71,2796.17 L 324.71,2797.57 L 325.587,2797.68 C 325.641,2797.68 325.689,2797.68 325.734,2797.67 C 325.779,2797.65 325.817,2797.63 325.851,2797.6 C 325.885,2797.57 325.913,2797.53 325.932,2797.49 C 325.951,2797.44 325.962,2797.4 325.962,2797.34 C 325.962,2797.29 325.951,2797.24 325.934,2797.19 C 325.915,2797.15 325.889,2797.1 325.858,2797.06 C 325.824,2797.03 325.785,2796.99 325.743,2796.97 C 325.708,2796.95 325.675,2796.93 325.636,2796.93 L 325.834,2796.55 L 325.962,2796.31 L 325.683,2796.28 L 325.556,2796.52 L 325.424,2796.76 L 325.417,2796.78 C 325.396,2796.81 325.366,2796.84 325.33,2796.85 C 325.294,2796.87 325.253,2796.88 325.207,2796.87 L 324.96,2796.84 L 324.96,2796.2 L 324.71,2796.17 Z M 323.424,2796.26 L 324.121,2796.35 L 324.121,2796.35 C 324.157,2796.35 324.19,2796.37 324.219,2796.39 C 324.249,2796.41 324.272,2796.43 324.29,2796.47 C 324.306,2796.5 324.315,2796.53 324.315,2796.57 C 324.315,2796.61 324.306,2796.64 324.29,2796.67 C 324.272,2796.69 324.249,2796.71 324.219,2796.73 C 324.19,2796.74 324.157,2796.75 324.121,2796.74 L 323.424,2796.66 L 323.424,2796.26 Z M 326.083,2796.33 L 326.211,2796.6 L 326.792,2797.82 L 327.372,2796.74 L 327.501,2796.5 L 327.221,2796.46 L 327.096,2796.7 L 326.792,2797.27 L 326.488,2796.63 L 326.362,2796.36 L 326.083,2796.33 Z M 327.619,2796.51 L 327.619,2797.92 L 327.866,2797.75 L 328.76,2797.16 L 328.76,2798.06 L 329.007,2798.08 L 329.007,2796.68 L 328.76,2796.84 L 327.866,2797.43 L 327.866,2796.54 L 327.619,2796.51 Z M 329.775,2796.77 L 329.775,2797.93 L 329.205,2797.86 L 329.205,2798.11 L 330.592,2798.28 L 330.592,2798.03 L 330.024,2797.96 L 330.024,2796.8 L 329.775,2796.77 Z M 323.424,2796.91 L 324.051,2796.99 C 324.074,2796.99 324.096,2797 324.115,2797.01 C 324.134,2797.02 324.149,2797.04 324.161,2797.06 C 324.172,2797.08 324.179,2797.11 324.179,2797.13 C 324.179,2797.15 324.172,2797.18 324.161,2797.19 C 324.149,2797.21 324.134,2797.22 324.115,2797.23 C 324.096,2797.24 324.074,2797.24 324.051,2797.24 L 323.424,2797.17 L 323.424,2796.91 Z M 332.029,2797.07 C 331.975,2797.09 331.928,2797.12 331.888,2797.15 C 331.848,2797.19 331.818,2797.23 331.795,2797.28 C 331.771,2797.33 331.761,2797.39 331.761,2797.45 L 332.008,2797.48 C 332.009,2797.45 332.018,2797.41 332.035,2797.39 C 332.052,2797.36 332.073,2797.34 332.103,2797.33 C 332.13,2797.31 332.163,2797.31 332.199,2797.31 L 332.633,2797.36 C 332.669,2797.37 332.701,2797.38 332.731,2797.4 C 332.759,2797.42 332.782,2797.45 332.799,2797.48 C 332.816,2797.51 332.825,2797.54 332.826,2797.58 C 332.825,2797.61 332.816,2797.65 332.799,2797.67 C 332.782,2797.7 332.759,2797.72 332.731,2797.74 C 332.701,2797.75 332.669,2797.75 332.633,2797.75 L 332.133,2797.69 L 332.058,2797.69 C 332.035,2797.69 332.012,2797.69 331.99,2797.7 C 331.946,2797.71 331.907,2797.74 331.873,2797.76 C 331.856,2797.78 331.839,2797.8 331.827,2797.82 C 331.806,2797.85 331.788,2797.88 331.777,2797.91 C 331.767,2797.95 331.761,2797.99 331.761,2798.03 L 331.761,2798.03 C 331.761,2798.09 331.771,2798.14 331.791,2798.19 C 331.809,2798.24 331.835,2798.28 331.869,2798.32 C 331.903,2798.36 331.943,2798.39 331.988,2798.41 C 332.033,2798.44 332.082,2798.45 332.133,2798.46 L 332.697,2798.53 C 332.748,2798.53 332.796,2798.53 332.844,2798.51 C 332.888,2798.5 332.926,2798.48 332.962,2798.45 C 332.997,2798.42 333.022,2798.38 333.042,2798.34 C 333.063,2798.29 333.071,2798.24 333.071,2798.19 L 333.071,2798.18 L 332.825,2798.15 L 332.825,2798.16 C 332.825,2798.18 332.818,2798.21 332.807,2798.22 C 332.795,2798.24 332.78,2798.25 332.76,2798.26 C 332.741,2798.27 332.72,2798.28 332.697,2798.27 L 332.133,2798.21 C 332.109,2798.2 332.088,2798.2 332.069,2798.18 C 332.05,2798.17 332.035,2798.15 332.024,2798.13 C 332.012,2798.11 332.008,2798.09 332.008,2798.06 L 332.008,2798.05 C 332.008,2798.03 332.012,2798.01 332.024,2797.99 C 332.035,2797.97 332.05,2797.96 332.069,2797.95 C 332.088,2797.94 332.109,2797.94 332.133,2797.94 L 332.633,2798 L 332.726,2798 C 332.756,2798 332.786,2797.99 332.814,2797.98 C 332.869,2797.96 332.916,2797.93 332.956,2797.9 C 332.961,2797.89 332.962,2797.89 332.965,2797.89 C 332.967,2797.88 332.969,2797.88 332.973,2797.88 C 333.003,2797.84 333.028,2797.8 333.046,2797.76 C 333.063,2797.71 333.071,2797.66 333.071,2797.61 C 333.071,2797.55 333.061,2797.49 333.037,2797.43 C 333.016,2797.38 332.984,2797.33 332.944,2797.28 C 332.903,2797.23 332.856,2797.2 332.804,2797.17 C 332.752,2797.14 332.695,2797.12 332.633,2797.11 L 332.199,2797.06 C 332.137,2797.05 332.082,2797.06 332.029,2797.07 Z M 324.96,2797.09 L 325.587,2797.17 C 325.598,2797.17 325.607,2797.17 325.615,2797.17 C 325.623,2797.18 325.632,2797.18 325.641,2797.19 C 325.662,2797.2 325.681,2797.22 325.694,2797.24 C 325.708,2797.26 325.715,2797.29 325.715,2797.31 C 325.715,2797.34 325.711,2797.35 325.702,2797.37 C 325.694,2797.38 325.686,2797.4 325.677,2797.4 C 325.671,2797.41 325.658,2797.42 325.643,2797.42 C 325.628,2797.43 325.611,2797.43 325.587,2797.43 L 324.96,2797.35 L 324.96,2797.09 Z M 333.501,2797.24 C 333.456,2797.26 333.416,2797.28 333.382,2797.31 C 333.348,2797.34 333.323,2797.38 333.303,2797.43 C 333.284,2797.47 333.273,2797.52 333.273,2797.57 L 333.273,2798.22 C 333.273,2798.27 333.284,2798.32 333.303,2798.37 C 333.323,2798.42 333.348,2798.46 333.382,2798.5 C 333.416,2798.54 333.456,2798.57 333.501,2798.59 C 333.546,2798.62 333.595,2798.64 333.646,2798.64 L 334.661,2798.76 L 334.661,2798.51 L 333.646,2798.39 C 333.622,2798.39 333.601,2798.38 333.582,2798.37 C 333.562,2798.35 333.548,2798.33 333.537,2798.31 C 333.525,2798.29 333.52,2798.27 333.52,2798.25 L 333.52,2798.11 L 334.412,2798.22 L 334.412,2797.97 L 333.52,2797.86 L 333.52,2797.6 C 333.52,2797.57 333.525,2797.55 333.537,2797.53 C 333.548,2797.52 333.562,2797.5 333.582,2797.49 C 333.601,2797.48 333.622,2797.48 333.646,2797.48 L 334.661,2797.61 L 334.661,2797.35 L 333.646,2797.23 C 333.595,2797.23 333.546,2797.23 333.501,2797.24 Z M 334.857,2797.37 L 334.857,2798.78 L 335.733,2798.89 C 335.784,2798.89 335.834,2798.89 335.878,2798.87 C 335.925,2798.86 335.963,2798.84 335.997,2798.81 C 336.031,2798.78 336.059,2798.74 336.078,2798.7 C 336.097,2798.65 336.106,2798.61 336.106,2798.55 C 336.106,2798.5 336.097,2798.45 336.078,2798.41 C 336.061,2798.36 336.036,2798.32 336.001,2798.28 C 335.97,2798.24 335.931,2798.21 335.889,2798.18 C 335.855,2798.16 335.819,2798.15 335.78,2798.14 L 335.98,2797.76 L 336.106,2797.52 L 335.829,2797.49 L 335.702,2797.72 L 335.569,2797.97 L 335.563,2797.98 C 335.54,2798.02 335.512,2798.04 335.474,2798.06 C 335.437,2798.08 335.397,2798.08 335.352,2798.08 L 335.103,2798.05 L 335.103,2797.4 L 334.857,2797.37 Z M 336.306,2797.55 L 336.306,2798.96 L 336.555,2798.99 L 336.555,2797.58 L 336.306,2797.55 Z M 336.983,2797.66 C 336.935,2797.68 336.897,2797.7 336.863,2797.73 C 336.829,2797.76 336.802,2797.8 336.782,2797.84 C 336.763,2797.88 336.755,2797.93 336.752,2797.98 L 336.752,2798.63 C 336.755,2798.68 336.763,2798.74 336.782,2798.78 C 336.802,2798.83 336.829,2798.87 336.863,2798.91 C 336.897,2798.95 336.935,2798.98 336.983,2799.01 C 337.027,2799.03 337.074,2799.05 337.127,2799.06 L 338.142,2799.18 L 338.142,2798.93 L 337.127,2798.81 C 337.104,2798.8 337.083,2798.79 337.063,2798.78 C 337.044,2798.76 337.029,2798.75 337.016,2798.73 C 337.005,2798.71 336.999,2798.68 336.999,2798.66 L 336.999,2798.53 L 337.893,2798.64 L 337.893,2798.39 L 336.999,2798.28 L 336.999,2798.01 C 336.999,2797.99 337.005,2797.97 337.016,2797.95 C 337.029,2797.93 337.044,2797.92 337.063,2797.91 C 337.083,2797.9 337.104,2797.9 337.127,2797.9 L 338.142,2798.02 L 338.142,2797.77 L 337.127,2797.65 C 337.074,2797.64 337.027,2797.65 336.983,2797.66 Z M 338.608,2797.86 C 338.555,2797.88 338.51,2797.9 338.47,2797.94 C 338.43,2797.97 338.397,2798.02 338.374,2798.07 C 338.353,2798.12 338.34,2798.18 338.34,2798.24 L 338.589,2798.27 C 338.589,2798.23 338.597,2798.2 338.615,2798.17 C 338.632,2798.15 338.655,2798.13 338.683,2798.11 C 338.712,2798.1 338.744,2798.09 338.778,2798.1 L 339.215,2798.15 C 339.248,2798.15 339.281,2798.17 339.311,2798.19 C 339.34,2798.21 339.363,2798.23 339.381,2798.26 C 339.398,2798.29 339.406,2798.33 339.406,2798.37 C 339.406,2798.4 339.398,2798.43 339.381,2798.46 C 339.363,2798.49 339.34,2798.51 339.311,2798.52 C 339.281,2798.53 339.248,2798.54 339.215,2798.53 L 338.714,2798.47 C 338.663,2798.47 338.615,2798.47 338.572,2798.49 C 338.527,2798.5 338.487,2798.52 338.453,2798.55 C 338.436,2798.57 338.421,2798.58 338.406,2798.61 C 338.385,2798.63 338.37,2798.67 338.357,2798.7 C 338.346,2798.74 338.34,2798.77 338.34,2798.81 L 338.34,2798.82 C 338.34,2798.87 338.35,2798.92 338.37,2798.97 C 338.389,2799.02 338.416,2799.06 338.451,2799.1 C 338.485,2799.14 338.523,2799.17 338.567,2799.2 C 338.612,2799.22 338.661,2799.24 338.714,2799.25 L 339.276,2799.31 L 339.353,2799.31 C 339.377,2799.31 339.399,2799.31 339.423,2799.3 C 339.468,2799.29 339.508,2799.26 339.543,2799.23 C 339.576,2799.2 339.604,2799.17 339.623,2799.12 C 339.642,2799.08 339.653,2799.03 339.653,2798.98 L 339.653,2798.97 L 339.404,2798.94 L 339.404,2798.95 C 339.404,2798.97 339.398,2798.99 339.387,2799.01 C 339.377,2799.03 339.359,2799.04 339.34,2799.05 C 339.321,2799.06 339.3,2799.06 339.276,2799.06 L 338.714,2798.99 C 338.691,2798.99 338.67,2798.98 338.651,2798.97 C 338.632,2798.95 338.615,2798.93 338.604,2798.92 C 338.593,2798.89 338.587,2798.87 338.587,2798.85 L 338.587,2798.84 C 338.587,2798.82 338.593,2798.8 338.604,2798.78 C 338.615,2798.76 338.632,2798.75 338.651,2798.74 C 338.67,2798.73 338.691,2798.72 338.714,2798.73 L 339.215,2798.79 C 339.278,2798.79 339.338,2798.79 339.393,2798.77 C 339.449,2798.75 339.498,2798.72 339.538,2798.68 C 339.54,2798.68 339.543,2798.68 339.544,2798.67 C 339.549,2798.67 339.55,2798.67 339.553,2798.67 C 339.585,2798.63 339.609,2798.59 339.625,2798.54 C 339.642,2798.5 339.653,2798.45 339.653,2798.4 C 339.653,2798.33 339.64,2798.27 339.619,2798.22 C 339.595,2798.16 339.564,2798.11 339.523,2798.07 C 339.485,2798.02 339.438,2797.98 339.384,2797.95 C 339.332,2797.92 339.274,2797.91 339.215,2797.9 L 338.778,2797.85 C 338.719,2797.84 338.661,2797.84 338.608,2797.86 Z M 335.103,2798.3 L 335.733,2798.38 C 335.742,2798.38 335.75,2798.38 335.761,2798.38 C 335.769,2798.39 335.778,2798.39 335.784,2798.4 C 335.808,2798.41 335.827,2798.43 335.84,2798.45 C 335.853,2798.47 335.861,2798.49 335.861,2798.52 C 335.859,2798.54 335.855,2798.56 335.846,2798.58 C 335.838,2798.59 335.831,2798.6 335.823,2798.61 C 335.814,2798.62 335.804,2798.62 335.789,2798.63 C 335.774,2798.64 335.754,2798.64 335.733,2798.64 L 335.103,2798.56 L 335.103,2798.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--VARIETY_BUNDLE, .KN95_NR_small_individuals--VARIETY_BUNDLE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.658pt' height='116.655pt' viewBox='139.941 -3355.14 116.658 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='48.599' y2='24.666' gradientTransform='translate(153.64 3296.44)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23f4f4f4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='75.855' y2='0' gradientTransform='translate(250.234 3285.85) rotate(-173.019) skewX(2.01923)'%3E%3Cstop offset='0' stop-color='%23e7e7e7'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='3.029' y2='0' gradientTransform='translate(141.625 3300.16) rotate(3.51971) skewX(1.04747)'%3E%3Cstop offset='0' stop-color='%23f0f0f0'/%3E%3Cstop offset='1' stop-color='%23e5e5e5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0' y2='0.464' gradientTransform='translate(225.06 3293.29) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23ececec'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.401' y2='0.082' gradientTransform='translate(144.46 3307.3) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23e6e6e6'/%3E%3Cstop offset='1' stop-color='%23d3d3d3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.657' y2='-0.453' gradientTransform='translate(245.99 3307.57) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23ebebeb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_6' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.292' y2='0.037' gradientTransform='translate(254.841 3283.6)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23d5d5d5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_7' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.356' y2='-0.029' gradientTransform='translate(145.705 3285.51)'%3E%3Cstop offset='0' stop-color='%23c9c9c9'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(198.27 3296.81) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 145.876,3293.93 L 141.163,3318.56 L 240.053,3317.7 L 256.201,3294.67 L 256.273,3294.57 C 256.393,3294.38 256.479,3294.17 256.53,3293.93 L 145.876,3293.93 Z' stroke-width='0.26' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.162' fill='%23000000'%3E%3Cg id='Group_4'%3E%3Cpath d='M 192.7,3305.67 L 191.86,3305.67 L 190.102,3306.72 L 189.346,3306.22 L 189.569,3305.68 L 188.885,3305.68 L 187.993,3307.85 L 188.672,3307.85 L 189.129,3306.75 L 189.567,3307.03 L 189.963,3307.29 L 190.787,3307.84 L 191.789,3307.83 L 190.497,3306.98 L 192.7,3305.67 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 196.824,3305.65 L 196.062,3305.66 L 195.539,3306.05 L 194.298,3306.98 L 193.875,3306.05 L 193.694,3305.67 L 192.929,3305.67 L 193.111,3306.06 L 193.926,3307.82 L 196.301,3306.04 L 196.824,3305.65 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 200.969,3305.64 L 198.03,3305.65 L 198.025,3305.65 L 197.165,3305.65 L 197.171,3305.65 L 197.517,3306.04 L 198.134,3306.73 L 198.417,3307.04 L 198.756,3307.42 L 196.356,3307.43 L 196.185,3307.81 L 199.095,3307.8 L 199.941,3307.79 L 199.598,3307.41 L 198.983,3306.72 L 198.7,3306.41 L 198.364,3306.03 L 200.788,3306.02 L 200.969,3305.64 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 205.29,3305.62 L 202.522,3305.63 C 202.381,3305.63 202.24,3305.65 202.101,3305.68 C 201.965,3305.71 201.836,3305.75 201.719,3305.81 C 201.599,3305.86 201.498,3305.92 201.414,3305.99 C 201.328,3306.06 201.264,3306.14 201.226,3306.22 L 200.757,3307.21 C 200.718,3307.29 200.709,3307.37 200.729,3307.44 C 200.748,3307.51 200.789,3307.57 200.858,3307.62 C 200.924,3307.67 201.012,3307.71 201.121,3307.74 C 201.227,3307.77 201.353,3307.79 201.492,3307.79 L 204.232,3307.77 L 204.42,3307.39 L 201.676,3307.4 C 201.61,3307.4 201.558,3307.4 201.515,3307.38 C 201.471,3307.36 201.44,3307.34 201.424,3307.31 C 201.408,3307.28 201.408,3307.24 201.423,3307.21 L 201.518,3307.01 L 203.941,3307 L 204.129,3306.61 L 201.7,3306.63 L 201.895,3306.22 C 201.914,3306.18 201.947,3306.15 201.991,3306.12 C 202.036,3306.09 202.089,3306.06 202.15,3306.05 C 202.21,3306.03 202.272,3306.02 202.337,3306.02 L 205.098,3306.01 L 205.29,3305.62 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 144.522,3275.06 L 145.869,3293.93 L 256.531,3293.93 C 256.629,3293.49 256.617,3292.97 256.518,3292.39 L 256.291,3290.68 L 254.222,3275.06 L 144.522,3275.06 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 144.522,3275.06 L 139.941,3299.47 L 141.163,3318.56 L 145.884,3293.93 L 144.522,3275.06 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 145.838,3293.49 L 145.869,3293.93 L 256.531,3293.93 C 256.562,3293.79 256.581,3293.65 256.592,3293.49 L 145.838,3293.49 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.046' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 197.81,3276.59 L 197.81,3277.89 L 198.043,3277.89 L 198.043,3277.22 L 198.235,3277.4 L 198.408,3277.56 L 198.773,3277.89 L 199.118,3277.89 L 198.546,3277.37 L 199.111,3276.59 L 198.825,3276.59 L 198.373,3277.21 L 198.043,3276.91 L 198.043,3276.59 L 197.81,3276.59 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 199.19,3276.59 L 199.31,3276.82 L 199.856,3277.89 L 200.403,3276.82 L 200.522,3276.59 L 200.261,3276.59 L 200.141,3276.82 L 199.856,3277.38 L 199.571,3276.82 L 199.451,3276.59 L 199.19,3276.59 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 200.641,3276.59 L 200.82,3276.82 L 201.14,3277.24 L 201.288,3277.43 L 201.467,3277.66 L 200.638,3277.66 L 200.638,3277.89 L 201.939,3277.89 L 201.758,3277.66 L 201.433,3277.24 L 201.287,3277.05 L 201.111,3276.82 L 201.944,3276.82 L 201.944,3276.59 L 200.641,3276.59 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 202.341,3276.62 C 202.299,3276.63 202.262,3276.66 202.23,3276.69 C 202.199,3276.72 202.173,3276.76 202.155,3276.8 C 202.136,3276.85 202.127,3276.89 202.127,3276.94 L 202.127,3277.54 C 202.127,3277.59 202.136,3277.63 202.155,3277.68 C 202.173,3277.72 202.199,3277.76 202.23,3277.79 C 202.262,3277.82 202.299,3277.85 202.341,3277.87 C 202.384,3277.88 202.429,3277.89 202.478,3277.89 L 203.431,3277.89 L 203.431,3277.66 L 202.478,3277.66 C 202.456,3277.66 202.436,3277.66 202.418,3277.64 C 202.4,3277.63 202.386,3277.62 202.376,3277.6 C 202.364,3277.58 202.358,3277.56 202.358,3277.54 L 202.358,3277.42 L 203.198,3277.42 L 203.198,3277.19 L 202.358,3277.19 L 202.358,3276.94 C 202.358,3276.92 202.364,3276.9 202.376,3276.88 C 202.386,3276.86 202.4,3276.85 202.418,3276.84 C 202.436,3276.83 202.456,3276.82 202.478,3276.82 L 203.431,3276.82 L 203.431,3276.59 L 202.478,3276.59 C 202.429,3276.59 202.384,3276.6 202.341,3276.62 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 146.933,3293.93 L 142.015,3318.56 L 142.359,3318.55 L 147.386,3293.93 L 146.933,3293.93 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 254.813,3293.91 L 238.282,3317.72 L 238.851,3317.71 L 255.576,3293.93 L 254.813,3293.91 Z' stroke-width='0.3' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 253.322,3275.06 L 255.762,3293.49 L 256.207,3293.49 L 253.81,3275.06 L 253.322,3275.06 Z' stroke-width='0.143' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_6)'/%3E%3Cpath d='M 144.925,3275.07 L 146.302,3293.49 L 146.746,3293.49 L 145.415,3275.07 L 144.925,3275.07 Z' stroke-width='0.143' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_7)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--VOUGE, .KN95_NR_small_individuals--VOUGE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='390.486 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.89' y2='69.197' gradientTransform='translate(434.563 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.717' y2='69.453' gradientTransform='translate(422.226 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.402' y2='7.324' gradientTransform='translate(434.541 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.8' gradientTransform='translate(418.246 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.569' gradientTransform='translate(463.547 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.569' y2='0' gradientTransform='translate(424.691 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 424.406,2776.57 L 424.406,2858.45 L 485.237,2862.36 C 485.279,2862.31 485.311,2862.24 485.311,2862.16 L 485.311,2784.82 L 424.406,2776.57 Z' stroke-width='8.03' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 424.406,2776.57 L 412.331,2788.29 L 412.324,2865.07 L 424.406,2858.45 L 424.406,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 424.406,2858.45 L 412.324,2865.07 L 471.358,2868.31 L 485.107,2862.45 C 485.154,2862.43 485.201,2862.4 485.237,2862.36 L 424.406,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 424.102,2857.52 L 412.32,2864.11 L 412.318,2865.07 L 424.102,2858.62 L 424.102,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 441.276,2819.56 L 441.268,2826.71 L 442.449,2826.83 L 442.455,2823.18 L 443.43,2824.24 L 444.306,2825.19 L 446.148,2827.21 L 447.898,2827.39 L 445.009,2824.22 L 447.882,2820.23 L 446.424,2820.09 L 444.132,2823.27 L 442.458,2821.45 L 442.458,2819.68 L 441.276,2819.56 Z M 448.483,2820.29 L 449.09,2821.63 L 451.852,2827.79 L 454.633,2822.2 L 455.236,2820.98 L 453.917,2820.85 L 453.307,2822.06 L 451.856,2824.98 L 450.409,2821.76 L 449.807,2820.43 L 448.483,2820.29 Z M 455.833,2821.04 L 455.844,2821.04 L 456.75,2822.41 L 458.372,2824.86 L 459.123,2825.98 L 460.025,2827.35 L 455.818,2826.92 L 455.816,2828.19 L 460.934,2828.71 L 462.415,2828.87 L 461.502,2827.49 L 459.86,2825.01 L 459.117,2823.89 L 458.223,2822.56 L 462.453,2822.99 L 462.455,2821.71 L 457.335,2821.19 L 457.328,2821.19 L 455.833,2821.04 Z M 464.466,2822.07 C 464.253,2822.15 464.06,2822.27 463.902,2822.43 C 463.736,2822.59 463.609,2822.78 463.522,2823 C 463.428,2823.23 463.383,2823.47 463.381,2823.74 L 463.375,2827.03 C 463.375,2827.3 463.419,2827.55 463.513,2827.79 C 463.602,2828.04 463.728,2828.25 463.896,2828.45 C 464.053,2828.64 464.245,2828.8 464.457,2828.92 C 464.673,2829.04 464.904,2829.12 465.152,2829.14 L 469.984,2829.63 L 469.984,2828.36 L 465.152,2827.86 C 465.039,2827.85 464.939,2827.81 464.847,2827.74 C 464.755,2827.68 464.687,2827.59 464.632,2827.49 C 464.577,2827.38 464.551,2827.27 464.551,2827.15 L 464.551,2826.49 L 468.806,2826.92 L 468.806,2825.64 L 464.551,2825.21 L 464.551,2823.86 C 464.551,2823.74 464.581,2823.63 464.636,2823.54 C 464.693,2823.45 464.762,2823.37 464.851,2823.33 C 464.945,2823.27 465.043,2823.26 465.158,2823.27 L 469.99,2823.76 L 469.992,2822.48 L 465.158,2821.99 C 464.915,2821.97 464.684,2821.99 464.466,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 448.262,2815.76 L 448.262,2817.28 C 448.262,2817.36 448.275,2817.43 448.303,2817.51 C 448.331,2817.58 448.371,2817.64 448.422,2817.7 C 448.473,2817.75 448.533,2817.8 448.598,2817.84 C 448.666,2817.87 448.739,2817.9 448.817,2817.9 L 450.327,2818.07 L 450.327,2817.69 L 448.817,2817.53 C 448.784,2817.53 448.751,2817.51 448.722,2817.5 C 448.694,2817.47 448.673,2817.45 448.654,2817.42 C 448.637,2817.39 448.63,2817.36 448.63,2817.32 L 448.63,2817.13 L 449.958,2817.26 L 449.958,2816.89 L 448.628,2816.75 L 448.63,2815.8 L 448.262,2815.76 Z M 450.627,2816.01 L 450.625,2817.53 C 450.625,2817.61 450.637,2817.68 450.666,2817.75 C 450.692,2817.82 450.733,2817.89 450.781,2817.95 C 450.835,2818 450.894,2818.05 450.961,2818.09 C 451.027,2818.12 451.097,2818.15 451.18,2818.16 L 452.686,2818.31 L 452.688,2817.94 L 451.182,2817.78 C 451.145,2817.78 451.112,2817.76 451.086,2817.75 C 451.056,2817.72 451.035,2817.7 451.016,2817.67 C 450.999,2817.64 450.992,2817.61 450.992,2817.57 L 450.992,2817.38 L 452.32,2817.52 L 452.32,2817.15 L 450.99,2817 L 450.992,2816.04 L 450.627,2816.01 Z M 452.988,2816.26 L 452.984,2818.35 L 454.286,2818.48 C 454.361,2818.49 454.435,2818.48 454.5,2818.46 C 454.568,2818.44 454.627,2818.41 454.678,2818.36 L 454.68,2818.36 C 454.732,2818.31 454.77,2818.26 454.802,2818.19 C 454.827,2818.12 454.844,2818.05 454.844,2817.97 C 454.844,2817.9 454.827,2817.82 454.804,2817.76 C 454.774,2817.69 454.735,2817.62 454.688,2817.57 C 454.64,2817.51 454.584,2817.47 454.521,2817.43 C 454.47,2817.4 454.416,2817.38 454.359,2817.37 C 454.355,2817.37 454.348,2817.37 454.344,2817.37 L 454.344,2817.36 L 453.354,2817.26 L 453.357,2816.3 L 452.988,2816.26 Z M 455.135,2816.48 L 455.135,2817.1 C 455.135,2817.14 455.137,2817.18 455.146,2817.22 C 455.155,2817.26 455.17,2817.3 455.182,2817.34 C 455.214,2817.42 455.257,2817.48 455.31,2817.54 C 455.363,2817.61 455.422,2817.66 455.495,2817.7 C 455.564,2817.73 455.64,2817.76 455.722,2817.77 L 456.606,2817.87 L 456.617,2817.87 C 456.657,2817.88 456.695,2817.89 456.727,2817.92 C 456.759,2817.94 456.784,2817.97 456.804,2818.02 C 456.823,2818.05 456.831,2818.09 456.831,2818.13 C 456.831,2818.18 456.821,2818.22 456.8,2818.26 C 456.778,2818.29 456.753,2818.31 456.715,2818.33 C 456.678,2818.35 456.638,2818.36 456.593,2818.36 L 455.137,2818.2 L 455.137,2818.57 L 456.591,2818.73 C 456.678,2818.74 456.759,2818.73 456.83,2818.7 C 456.901,2818.68 456.966,2818.64 457.025,2818.59 C 457.081,2818.54 457.125,2818.48 457.153,2818.41 C 457.185,2818.34 457.199,2818.26 457.202,2818.17 C 457.202,2818.13 457.197,2818.09 457.188,2818.05 C 457.18,2818.01 457.167,2817.97 457.151,2817.93 C 457.138,2817.89 457.121,2817.85 457.099,2817.82 C 457.081,2817.79 457.055,2817.76 457.03,2817.73 C 456.978,2817.67 456.912,2817.61 456.842,2817.57 C 456.77,2817.53 456.697,2817.51 456.612,2817.5 L 456.603,2817.5 C 456.601,2817.5 456.598,2817.5 456.593,2817.49 L 455.722,2817.4 C 455.682,2817.39 455.646,2817.38 455.612,2817.35 C 455.578,2817.33 455.553,2817.29 455.536,2817.26 C 455.514,2817.22 455.509,2817.18 455.509,2817.14 L 455.509,2816.9 L 457.193,2817.07 L 457.195,2816.7 L 455.74,2816.54 L 455.135,2816.48 Z M 458.936,2816.88 L 458.933,2818.96 L 459.302,2818.72 L 460.631,2817.82 L 460.629,2819.15 L 460.998,2819.19 L 461.003,2817.1 L 460.631,2817.35 L 459.302,2818.24 L 459.305,2816.92 L 458.936,2816.88 Z M 461.296,2817.14 L 461.294,2819.22 L 462.598,2819.36 C 462.672,2819.37 462.745,2819.37 462.811,2819.34 C 462.881,2819.32 462.939,2819.28 462.989,2819.24 C 463.039,2819.19 463.079,2819.14 463.109,2819.07 C 463.136,2819 463.151,2818.93 463.154,2818.86 C 463.154,2818.78 463.136,2818.7 463.111,2818.63 C 463.083,2818.57 463.044,2818.5 462.996,2818.45 C 462.949,2818.39 462.892,2818.35 462.83,2818.31 C 462.778,2818.28 462.723,2818.26 462.668,2818.24 L 462.966,2817.68 L 463.156,2817.33 L 462.743,2817.29 L 462.553,2817.64 L 462.354,2818.01 L 462.344,2818.03 C 462.313,2818.08 462.27,2818.12 462.213,2818.14 C 462.159,2818.17 462.098,2818.18 462.03,2818.17 L 461.663,2818.13 L 461.666,2817.17 L 461.296,2817.14 Z M 453.354,2817.62 L 454.29,2817.72 C 454.301,2817.72 454.314,2817.73 454.329,2817.73 C 454.341,2817.74 454.352,2817.74 454.365,2817.75 L 454.365,2817.75 C 454.399,2817.77 454.429,2817.8 454.446,2817.83 C 454.467,2817.86 454.476,2817.9 454.476,2817.94 C 454.476,2817.97 454.47,2818 454.456,2818.02 C 454.444,2818.04 454.433,2818.06 454.422,2818.07 C 454.408,2818.08 454.391,2818.09 454.369,2818.1 C 454.348,2818.11 454.32,2818.11 454.29,2818.11 L 453.354,2818.01 L 453.354,2817.62 Z M 461.663,2818.5 L 462.6,2818.6 C 462.611,2818.6 462.623,2818.61 462.638,2818.61 C 462.652,2818.62 462.661,2818.62 462.672,2818.63 C 462.709,2818.65 462.737,2818.68 462.753,2818.71 C 462.776,2818.74 462.787,2818.78 462.787,2818.82 C 462.783,2818.85 462.778,2818.88 462.764,2818.9 C 462.751,2818.92 462.743,2818.94 462.73,2818.95 C 462.717,2818.96 462.7,2818.97 462.679,2818.98 C 462.656,2818.99 462.63,2818.99 462.598,2818.99 L 461.662,2818.89 L 461.663,2818.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 441.684,2811.59 L 441.683,2812.97 L 442.528,2813.06 C 442.579,2813.07 442.63,2813.06 442.67,2813.05 C 442.711,2813.03 442.753,2813.01 442.783,2812.98 L 442.785,2812.97 C 442.822,2812.94 442.844,2812.91 442.863,2812.87 C 442.881,2812.82 442.893,2812.78 442.893,2812.72 C 442.893,2812.67 442.883,2812.62 442.866,2812.58 C 442.849,2812.53 442.826,2812.49 442.792,2812.45 C 442.762,2812.41 442.723,2812.38 442.683,2812.36 C 442.649,2812.34 442.615,2812.32 442.579,2812.32 C 442.574,2812.32 442.57,2812.32 442.568,2812.32 L 442.568,2812.32 L 441.925,2812.25 L 441.927,2811.61 L 441.684,2811.59 Z M 443.083,2811.73 L 443.081,2813.11 L 443.93,2813.2 C 443.982,2813.21 444.028,2813.2 444.07,2813.19 C 444.115,2813.17 444.149,2813.15 444.184,2813.12 C 444.217,2813.09 444.241,2813.05 444.266,2813.01 C 444.281,2812.97 444.29,2812.92 444.292,2812.87 C 444.29,2812.82 444.281,2812.77 444.269,2812.72 C 444.243,2812.68 444.222,2812.64 444.189,2812.6 C 444.155,2812.56 444.124,2812.53 444.081,2812.51 C 444.047,2812.49 444.012,2812.47 443.979,2812.46 L 444.168,2812.09 L 444.292,2811.85 L 444.026,2811.82 L 443.9,2812.06 L 443.772,2812.31 L 443.766,2812.32 C 443.744,2812.35 443.714,2812.38 443.681,2812.39 C 443.643,2812.41 443.607,2812.42 443.564,2812.41 L 443.322,2812.39 L 443.322,2811.75 L 443.083,2811.73 Z M 444.847,2811.97 C 444.77,2811.99 444.698,2812.04 444.638,2812.09 C 444.572,2812.15 444.524,2812.22 444.491,2812.3 C 444.457,2812.38 444.441,2812.47 444.436,2812.57 C 444.441,2812.66 444.457,2812.75 444.49,2812.84 C 444.524,2812.93 444.572,2813.01 444.636,2813.08 C 444.696,2813.15 444.769,2813.2 444.845,2813.25 C 444.928,2813.29 445.015,2813.32 445.109,2813.33 C 445.201,2813.34 445.29,2813.33 445.373,2813.3 C 445.45,2813.27 445.524,2813.24 445.584,2813.18 C 445.647,2813.12 445.696,2813.05 445.728,2812.97 C 445.762,2812.89 445.781,2812.8 445.781,2812.7 C 445.781,2812.61 445.765,2812.52 445.728,2812.43 C 445.696,2812.34 445.65,2812.27 445.585,2812.19 C 445.526,2812.12 445.451,2812.07 445.374,2812.02 C 445.29,2811.98 445.202,2811.95 445.111,2811.94 L 444.977,2811.94 C 444.93,2811.95 444.89,2811.95 444.847,2811.97 Z M 446.477,2812.08 L 446.475,2813.22 L 445.926,2813.17 L 445.926,2813.41 L 447.264,2813.55 L 447.264,2813.31 L 446.719,2813.25 L 446.722,2812.11 L 446.477,2812.08 Z M 445.111,2812.19 C 445.168,2812.19 445.226,2812.21 445.279,2812.24 C 445.334,2812.27 445.379,2812.31 445.415,2812.35 C 445.453,2812.39 445.485,2812.45 445.511,2812.51 C 445.53,2812.56 445.543,2812.62 445.543,2812.68 C 445.543,2812.74 445.53,2812.8 445.509,2812.85 C 445.485,2812.9 445.453,2812.95 445.415,2812.98 C 445.377,2813.02 445.332,2813.05 445.277,2813.06 C 445.223,2813.08 445.168,2813.09 445.109,2813.08 C 445.051,2813.08 444.994,2813.06 444.941,2813.03 C 444.89,2813 444.84,2812.97 444.803,2812.92 C 444.767,2812.87 444.734,2812.83 444.711,2812.76 C 444.693,2812.71 444.682,2812.65 444.682,2812.59 C 444.682,2812.53 444.693,2812.47 444.711,2812.42 C 444.734,2812.37 444.769,2812.32 444.804,2812.29 C 444.843,2812.25 444.892,2812.22 444.941,2812.21 C 444.994,2812.19 445.054,2812.18 445.111,2812.19 Z M 447.682,2812.24 C 447.643,2812.25 447.605,2812.27 447.569,2812.31 C 447.537,2812.34 447.511,2812.37 447.492,2812.42 C 447.475,2812.46 447.466,2812.51 447.466,2812.56 L 447.464,2813.2 C 447.466,2813.25 447.471,2813.3 447.49,2813.35 C 447.511,2813.39 447.535,2813.43 447.569,2813.47 C 447.602,2813.51 447.639,2813.54 447.682,2813.57 C 447.726,2813.59 447.773,2813.61 447.822,2813.61 L 448.805,2813.71 L 448.805,2813.47 L 447.822,2813.36 C 447.801,2813.36 447.779,2813.35 447.761,2813.34 C 447.745,2813.33 447.728,2813.31 447.717,2813.29 C 447.707,2813.27 447.701,2813.25 447.701,2813.22 L 447.701,2813.09 L 448.565,2813.18 L 448.565,2812.93 L 447.701,2812.85 L 447.705,2812.59 C 447.705,2812.56 447.707,2812.54 447.72,2812.52 C 447.731,2812.51 447.747,2812.49 447.762,2812.48 C 447.783,2812.47 447.803,2812.47 447.822,2812.47 L 448.806,2812.57 L 448.806,2812.32 L 447.824,2812.22 C 447.775,2812.22 447.728,2812.22 447.682,2812.24 Z M 449.384,2812.44 C 449.304,2812.47 449.237,2812.51 449.175,2812.57 C 449.112,2812.62 449.063,2812.69 449.028,2812.77 C 448.994,2812.85 448.976,2812.94 448.976,2813.03 C 448.976,2813.13 448.994,2813.22 449.028,2813.31 C 449.06,2813.4 449.109,2813.47 449.175,2813.55 C 449.237,2813.62 449.304,2813.67 449.384,2813.72 C 449.467,2813.76 449.554,2813.79 449.648,2813.8 L 450.316,2813.87 L 450.316,2813.62 L 449.648,2813.55 C 449.588,2813.55 449.531,2813.53 449.48,2813.5 C 449.429,2813.47 449.38,2813.43 449.339,2813.39 C 449.304,2813.34 449.274,2813.3 449.247,2813.24 C 449.23,2813.18 449.215,2813.12 449.215,2813.06 C 449.215,2813 449.23,2812.94 449.249,2812.89 C 449.274,2812.84 449.304,2812.79 449.341,2812.76 C 449.381,2812.72 449.43,2812.7 449.481,2812.68 C 449.531,2812.66 449.588,2812.65 449.65,2812.66 L 450.318,2812.73 L 450.318,2812.48 L 449.65,2812.41 L 449.513,2812.41 C 449.469,2812.41 449.429,2812.42 449.384,2812.44 Z M 441.925,2812.5 L 442.532,2812.56 C 442.542,2812.56 442.553,2812.56 442.56,2812.56 C 442.568,2812.57 442.574,2812.57 442.585,2812.58 C 442.604,2812.59 442.623,2812.6 442.638,2812.63 C 442.649,2812.65 442.653,2812.67 442.653,2812.7 C 442.653,2812.72 442.649,2812.74 442.642,2812.75 C 442.636,2812.77 442.626,2812.78 442.62,2812.78 C 442.611,2812.79 442.6,2812.8 442.587,2812.8 C 442.57,2812.81 442.555,2812.82 442.532,2812.81 L 441.925,2812.75 L 441.925,2812.5 Z M 451.06,2812.56 L 451.06,2813.7 L 450.509,2813.64 L 450.509,2813.89 L 451.852,2814.03 L 451.852,2813.78 L 451.301,2813.72 L 451.301,2812.58 L 451.06,2812.56 Z M 443.322,2812.64 L 443.93,2812.7 C 443.938,2812.7 443.947,2812.7 443.955,2812.7 C 443.966,2812.71 443.973,2812.71 443.982,2812.72 C 444.002,2812.73 444.019,2812.75 444.034,2812.77 C 444.047,2812.79 444.053,2812.82 444.053,2812.84 C 444.053,2812.86 444.047,2812.88 444.04,2812.9 C 444.034,2812.91 444.026,2812.92 444.015,2812.93 C 444.008,2812.93 443.996,2812.94 443.987,2812.95 C 443.971,2812.96 443.949,2812.96 443.93,2812.96 L 443.322,2812.89 L 443.322,2812.64 Z M 452.043,2812.66 L 452.041,2814.05 L 452.286,2814.07 L 452.288,2812.69 L 452.043,2812.66 Z M 453.086,2812.77 L 452.522,2813.85 L 452.397,2814.08 L 452.667,2814.11 L 452.791,2813.88 L 453.084,2813.31 L 453.376,2813.94 L 453.502,2814.2 L 453.767,2814.23 L 453.644,2813.97 L 453.086,2812.77 Z M 454.109,2812.9 C 454.068,2812.92 454.029,2812.94 453.997,2812.97 C 453.963,2813 453.936,2813.04 453.921,2813.08 C 453.899,2813.12 453.888,2813.17 453.888,2813.22 L 453.888,2813.87 C 453.888,2813.92 453.897,2813.97 453.918,2814.01 C 453.933,2814.06 453.961,2814.1 453.995,2814.14 C 454.027,2814.18 454.065,2814.21 454.108,2814.23 C 454.15,2814.26 454.199,2814.27 454.25,2814.28 L 455.227,2814.38 L 455.227,2814.13 L 454.25,2814.03 C 454.223,2814.03 454.204,2814.02 454.185,2814.01 C 454.167,2813.99 454.155,2813.98 454.142,2813.95 C 454.131,2813.94 454.125,2813.91 454.125,2813.89 L 454.125,2813.76 L 454.993,2813.85 L 454.993,2813.61 L 454.128,2813.52 L 454.128,2813.25 C 454.128,2813.23 454.133,2813.21 454.144,2813.19 C 454.155,2813.17 454.167,2813.15 454.188,2813.15 C 454.205,2813.14 454.224,2813.13 454.252,2813.14 L 455.229,2813.24 L 455.229,2812.99 L 454.252,2812.89 C 454.201,2812.88 454.153,2812.89 454.109,2812.9 Z M 456.352,2813.1 L 456.351,2814.49 L 457.197,2814.58 C 457.248,2814.59 457.295,2814.58 457.339,2814.57 C 457.385,2814.55 457.421,2814.53 457.454,2814.5 C 457.489,2814.47 457.512,2814.43 457.534,2814.38 C 457.549,2814.34 457.56,2814.29 457.56,2814.24 C 457.56,2814.19 457.55,2814.14 457.536,2814.1 C 457.516,2814.05 457.493,2814.01 457.461,2813.97 C 457.429,2813.94 457.395,2813.91 457.35,2813.88 C 457.32,2813.86 457.28,2813.85 457.246,2813.84 L 457.442,2813.46 L 457.561,2813.23 L 457.291,2813.2 L 457.172,2813.43 L 457.044,2813.68 L 457.038,2813.69 C 457.016,2813.72 456.986,2813.75 456.948,2813.77 C 456.915,2813.79 456.876,2813.79 456.835,2813.79 L 456.591,2813.76 L 456.593,2813.13 L 456.352,2813.1 Z M 457.979,2813.31 C 457.935,2813.32 457.895,2813.34 457.865,2813.37 C 457.832,2813.4 457.806,2813.44 457.787,2813.48 C 457.77,2813.53 457.759,2813.58 457.759,2813.63 L 457.759,2814.27 C 457.759,2814.32 457.768,2814.37 457.784,2814.41 C 457.804,2814.46 457.829,2814.5 457.863,2814.54 C 457.895,2814.58 457.934,2814.61 457.976,2814.64 C 458.02,2814.66 458.068,2814.68 458.116,2814.68 L 459.098,2814.78 L 459.098,2814.53 L 458.116,2814.43 C 458.097,2814.43 458.074,2814.42 458.055,2814.41 C 458.042,2814.4 458.025,2814.38 458.012,2814.36 C 458.002,2814.34 457.995,2814.31 457.995,2814.29 L 457.995,2814.16 L 458.86,2814.25 L 458.86,2814 L 457.998,2813.91 L 457.998,2813.65 C 457.998,2813.63 458.004,2813.61 458.014,2813.59 C 458.025,2813.57 458.042,2813.56 458.057,2813.55 C 458.076,2813.54 458.099,2813.54 458.116,2813.54 L 459.099,2813.64 L 459.099,2813.39 L 458.119,2813.29 C 458.069,2813.29 458.023,2813.29 457.979,2813.31 Z M 459.551,2813.47 C 459.502,2813.49 459.457,2813.52 459.417,2813.55 C 459.376,2813.59 459.349,2813.63 459.324,2813.68 C 459.305,2813.73 459.291,2813.79 459.291,2813.85 L 459.536,2813.87 C 459.536,2813.84 459.542,2813.8 459.557,2813.78 C 459.574,2813.76 459.596,2813.73 459.623,2813.72 C 459.651,2813.7 459.679,2813.7 459.717,2813.7 L 460.138,2813.75 C 460.172,2813.75 460.202,2813.76 460.232,2813.78 C 460.255,2813.8 460.281,2813.82 460.296,2813.86 C 460.312,2813.89 460.322,2813.92 460.322,2813.96 C 460.322,2813.99 460.312,2814.03 460.296,2814.05 C 460.281,2814.08 460.255,2814.09 460.232,2814.11 C 460.2,2814.12 460.172,2814.13 460.138,2814.13 L 459.651,2814.08 L 459.583,2814.08 C 459.557,2814.08 459.536,2814.08 459.515,2814.09 C 459.472,2814.1 459.438,2814.13 459.4,2814.15 C 459.387,2814.17 459.365,2814.19 459.353,2814.21 C 459.332,2814.24 459.319,2814.27 459.308,2814.31 C 459.298,2814.34 459.291,2814.38 459.291,2814.42 L 459.291,2814.43 C 459.291,2814.47 459.302,2814.53 459.319,2814.57 C 459.335,2814.62 459.362,2814.66 459.397,2814.7 C 459.434,2814.74 459.468,2814.77 459.512,2814.79 C 459.553,2814.82 459.602,2814.83 459.651,2814.84 L 460.196,2814.89 C 460.245,2814.9 460.292,2814.89 460.336,2814.88 C 460.381,2814.87 460.419,2814.84 460.455,2814.81 C 460.484,2814.78 460.513,2814.74 460.53,2814.7 C 460.551,2814.66 460.557,2814.61 460.557,2814.56 L 460.557,2814.55 L 460.319,2814.52 L 460.319,2814.53 C 460.319,2814.55 460.312,2814.57 460.303,2814.59 C 460.289,2814.61 460.276,2814.62 460.257,2814.64 C 460.241,2814.64 460.219,2814.65 460.196,2814.64 L 459.651,2814.59 C 459.629,2814.59 459.606,2814.58 459.589,2814.56 C 459.574,2814.55 459.557,2814.53 459.545,2814.51 C 459.536,2814.49 459.532,2814.47 459.532,2814.45 L 459.532,2814.44 C 459.532,2814.41 459.536,2814.4 459.545,2814.38 C 459.557,2814.36 459.574,2814.34 459.592,2814.34 C 459.606,2814.33 459.629,2814.32 459.651,2814.32 L 460.138,2814.37 L 460.227,2814.37 C 460.253,2814.37 460.283,2814.37 460.308,2814.36 C 460.366,2814.34 460.41,2814.31 460.449,2814.27 C 460.455,2814.26 460.457,2814.26 460.459,2814.26 C 460.462,2814.26 460.462,2814.26 460.465,2814.25 C 460.494,2814.22 460.517,2814.18 460.532,2814.13 C 460.553,2814.08 460.56,2814.03 460.56,2813.98 C 460.56,2813.92 460.549,2813.86 460.528,2813.8 C 460.509,2813.76 460.475,2813.7 460.438,2813.66 C 460.395,2813.62 460.353,2813.58 460.3,2813.55 C 460.248,2813.53 460.196,2813.5 460.138,2813.5 L 459.717,2813.45 C 459.657,2813.45 459.602,2813.45 459.551,2813.47 Z M 460.757,2813.56 L 460.751,2814.95 L 461.6,2815.04 C 461.651,2815.05 461.695,2815.04 461.739,2815.03 C 461.783,2815.01 461.821,2814.99 461.86,2814.96 L 461.86,2814.96 C 461.89,2814.92 461.917,2814.88 461.936,2814.84 C 461.952,2814.8 461.961,2814.75 461.961,2814.7 C 461.961,2814.65 461.955,2814.6 461.936,2814.55 C 461.92,2814.51 461.895,2814.47 461.864,2814.43 C 461.83,2814.39 461.796,2814.36 461.751,2814.34 C 461.721,2814.32 461.685,2814.3 461.649,2814.3 C 461.644,2814.3 461.64,2814.29 461.638,2814.29 L 461.638,2814.29 L 460.996,2814.23 L 460.996,2813.59 L 460.757,2813.56 Z M 462.158,2813.71 L 462.156,2815.1 L 462.39,2815.12 L 462.393,2813.73 L 462.158,2813.71 Z M 462.587,2813.75 L 462.585,2815.14 L 463.432,2815.22 C 463.483,2815.23 463.53,2815.22 463.574,2815.21 C 463.618,2815.2 463.651,2815.17 463.688,2815.14 C 463.721,2815.11 463.745,2815.07 463.764,2815.03 C 463.783,2814.99 463.792,2814.94 463.794,2814.89 C 463.792,2814.84 463.783,2814.79 463.766,2814.74 C 463.746,2814.7 463.724,2814.65 463.694,2814.62 C 463.662,2814.58 463.624,2814.55 463.581,2814.53 C 463.549,2814.51 463.514,2814.49 463.481,2814.48 L 463.673,2814.11 L 463.794,2813.87 L 463.528,2813.85 L 463.402,2814.08 L 463.275,2814.33 L 463.268,2814.34 C 463.246,2814.37 463.219,2814.4 463.183,2814.41 C 463.15,2814.43 463.109,2814.44 463.069,2814.44 L 462.828,2814.41 L 462.828,2813.77 L 462.587,2813.75 Z M 463.911,2813.89 L 464.034,2814.15 L 464.597,2815.35 L 465.158,2814.27 L 465.286,2814.03 L 465.015,2814 L 464.892,2814.24 L 464.597,2814.8 L 464.303,2814.18 L 464.179,2813.92 L 463.911,2813.89 Z M 456.591,2814.01 L 457.199,2814.08 C 457.21,2814.08 457.218,2814.08 457.225,2814.08 C 457.234,2814.08 457.243,2814.09 457.248,2814.09 C 457.27,2814.11 457.289,2814.12 457.306,2814.15 C 457.317,2814.17 457.325,2814.19 457.325,2814.22 C 457.325,2814.24 457.32,2814.26 457.31,2814.27 C 457.304,2814.29 457.291,2814.3 457.284,2814.3 C 457.276,2814.31 457.265,2814.32 457.254,2814.32 C 457.244,2814.33 457.236,2814.33 457.227,2814.33 L 457.197,2814.33 L 456.591,2814.27 L 456.591,2814.01 Z M 465.948,2814.1 L 465.948,2815.24 L 465.396,2815.19 L 465.393,2815.43 L 466.737,2815.57 L 466.737,2815.33 L 466.186,2815.26 L 466.188,2814.12 L 465.948,2814.1 Z M 467.294,2814.29 C 467.214,2814.32 467.145,2814.37 467.081,2814.42 C 467.022,2814.48 466.973,2814.55 466.935,2814.63 C 466.902,2814.7 466.884,2814.79 466.884,2814.89 C 466.884,2814.99 466.9,2815.08 466.935,2815.17 C 466.971,2815.25 467.02,2815.34 467.081,2815.4 C 467.143,2815.47 467.212,2815.53 467.292,2815.58 C 467.377,2815.62 467.465,2815.65 467.554,2815.66 C 467.652,2815.67 467.735,2815.66 467.816,2815.63 C 467.896,2815.6 467.971,2815.56 468.033,2815.5 C 468.092,2815.44 468.139,2815.38 468.173,2815.29 C 468.21,2815.21 468.226,2815.13 468.228,2815.03 C 468.226,2814.94 468.21,2814.84 468.175,2814.75 C 468.139,2814.67 468.092,2814.59 468.033,2814.52 C 467.975,2814.45 467.898,2814.4 467.818,2814.35 C 467.737,2814.31 467.654,2814.28 467.558,2814.27 L 467.422,2814.27 C 467.379,2814.27 467.339,2814.28 467.294,2814.29 Z M 468.373,2814.35 L 468.371,2815.74 L 469.218,2815.83 C 469.267,2815.83 469.314,2815.82 469.359,2815.81 C 469.403,2815.8 469.441,2815.77 469.476,2815.74 C 469.51,2815.71 469.533,2815.67 469.55,2815.63 C 469.569,2815.59 469.577,2815.54 469.577,2815.49 C 469.577,2815.44 469.569,2815.39 469.554,2815.34 C 469.535,2815.3 469.513,2815.26 469.478,2815.22 C 469.448,2815.18 469.41,2815.15 469.371,2815.13 C 469.333,2815.11 469.301,2815.09 469.263,2815.09 L 469.46,2814.71 L 469.58,2814.47 L 469.311,2814.45 L 469.192,2814.68 L 469.058,2814.93 L 469.054,2814.94 C 469.033,2814.97 469.008,2815 468.969,2815.02 C 468.932,2815.03 468.894,2815.04 468.85,2815.03 L 468.611,2815.01 L 468.611,2814.37 L 468.373,2814.35 Z M 460.993,2814.47 L 461.602,2814.53 C 461.611,2814.54 461.622,2814.54 461.629,2814.54 C 461.636,2814.55 461.644,2814.55 461.654,2814.55 L 461.654,2814.55 C 461.673,2814.57 461.692,2814.59 461.704,2814.61 C 461.719,2814.63 461.723,2814.65 461.725,2814.68 C 461.723,2814.7 461.721,2814.72 461.713,2814.73 C 461.702,2814.75 461.695,2814.76 461.687,2814.76 C 461.679,2814.77 461.67,2814.78 461.655,2814.78 C 461.64,2814.79 461.625,2814.79 461.602,2814.79 L 460.993,2814.73 L 460.993,2814.47 Z M 467.558,2814.51 C 467.618,2814.52 467.673,2814.54 467.724,2814.57 C 467.775,2814.6 467.822,2814.64 467.86,2814.68 C 467.9,2814.72 467.933,2814.78 467.953,2814.83 C 467.981,2814.89 467.988,2814.95 467.988,2815.01 C 467.988,2815.07 467.98,2815.13 467.953,2815.18 C 467.933,2815.23 467.898,2815.28 467.858,2815.31 C 467.819,2815.35 467.775,2815.38 467.724,2815.39 C 467.673,2815.41 467.616,2815.41 467.554,2815.41 C 467.494,2815.4 467.439,2815.38 467.388,2815.36 C 467.339,2815.33 467.29,2815.29 467.249,2815.25 C 467.209,2815.2 467.179,2815.15 467.158,2815.1 C 467.134,2815.04 467.127,2814.98 467.124,2814.92 C 467.127,2814.85 467.134,2814.8 467.158,2814.75 C 467.179,2814.7 467.209,2814.65 467.249,2814.62 C 467.29,2814.58 467.339,2814.55 467.39,2814.53 C 467.441,2814.51 467.494,2814.51 467.558,2814.51 Z M 462.828,2814.66 L 463.432,2814.72 C 463.443,2814.72 463.449,2814.73 463.457,2814.73 C 463.467,2814.73 463.475,2814.74 463.483,2814.74 C 463.507,2814.75 463.524,2814.77 463.534,2814.79 C 463.549,2814.82 463.555,2814.84 463.555,2814.86 C 463.555,2814.89 463.549,2814.91 463.543,2814.92 C 463.534,2814.93 463.528,2814.94 463.519,2814.95 C 463.511,2814.96 463.5,2814.97 463.485,2814.97 C 463.473,2814.97 463.452,2814.98 463.432,2814.98 L 462.828,2814.92 L 462.828,2814.66 Z M 468.611,2815.26 L 469.218,2815.33 C 469.229,2815.33 469.237,2815.33 469.246,2815.33 C 469.254,2815.34 469.26,2815.34 469.267,2815.34 C 469.29,2815.35 469.307,2815.37 469.322,2815.39 C 469.333,2815.41 469.339,2815.43 469.339,2815.46 C 469.337,2815.48 469.333,2815.5 469.329,2815.52 C 469.322,2815.53 469.311,2815.54 469.303,2815.55 C 469.296,2815.56 469.284,2815.56 469.271,2815.57 C 469.258,2815.58 469.241,2815.58 469.218,2815.58 L 468.611,2815.52 L 468.611,2815.26 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 424.707,2858.06 L 424.102,2858.62 L 484.796,2862.58 L 485.107,2862.45 C 485.209,2862.41 485.311,2862.32 485.311,2862.16 L 485.311,2862.01 L 424.707,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 424.102,2858.62 L 424.1,2776.86 L 424.406,2776.57 L 424.707,2776.61 L 424.707,2858.06 L 424.102,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_9' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(442.677 2789.88) rotate(90) skewX(-7.19518)' fill='%23860c0c'/%3E%3Crect x='-2.639' y='-2.486' width='5.279' height='4.972' transform='translate(449.141 2790.7) rotate(90) skewX(-7.19721)' fill='%231e4212'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(455.606 2791.51) rotate(90) skewX(-7.19518)' fill='%237caba7'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(462.072 2792.33) rotate(90) skewX(-7.19316)' fill='%23e9b4c0'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(468.537 2793.14) rotate(90) skewX(-7.19518)' fill='%23ddd2ac'/%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.334' fill='%23000000'%3E%3Cg id='Group_11'%3E%3Cpath d='M 447.994,2795.9 L 447.414,2796.99 L 447.286,2797.22 L 447.565,2797.26 L 447.69,2797.02 L 447.994,2796.45 L 448.298,2797.09 L 448.426,2797.36 L 448.703,2797.39 L 448.575,2797.13 L 447.994,2795.9 Z M 449.199,2796.1 C 449.113,2796.12 449.041,2796.17 448.978,2796.22 C 448.913,2796.28 448.864,2796.35 448.828,2796.43 C 448.792,2796.51 448.773,2796.6 448.773,2796.7 C 448.773,2796.79 448.792,2796.89 448.828,2796.98 C 448.864,2797.07 448.913,2797.15 448.978,2797.22 C 449.041,2797.29 449.113,2797.35 449.199,2797.4 C 449.281,2797.44 449.371,2797.47 449.469,2797.49 C 449.565,2797.49 449.654,2797.49 449.739,2797.46 C 449.823,2797.44 449.896,2797.39 449.96,2797.34 C 450.022,2797.28 450.073,2797.21 450.11,2797.13 C 450.143,2797.05 450.162,2796.96 450.162,2796.86 C 450.162,2796.76 450.143,2796.67 450.11,2796.58 C 450.073,2796.49 450.022,2796.41 449.96,2796.34 C 449.896,2796.27 449.823,2796.21 449.739,2796.16 C 449.654,2796.12 449.565,2796.09 449.469,2796.08 C 449.371,2796.07 449.281,2796.07 449.199,2796.1 Z M 450.735,2796.28 C 450.652,2796.31 450.578,2796.35 450.513,2796.41 C 450.452,2796.46 450.401,2796.53 450.364,2796.61 C 450.331,2796.7 450.311,2796.78 450.311,2796.88 C 450.311,2796.98 450.331,2797.07 450.364,2797.16 C 450.401,2797.25 450.452,2797.33 450.513,2797.4 C 450.578,2797.47 450.652,2797.53 450.735,2797.58 C 450.82,2797.63 450.909,2797.66 451.005,2797.67 L 451.701,2797.75 L 451.701,2797.5 L 451.005,2797.42 C 450.944,2797.41 450.887,2797.39 450.833,2797.36 C 450.777,2797.33 450.731,2797.29 450.69,2797.25 C 450.65,2797.2 450.618,2797.15 450.595,2797.09 C 450.57,2797.03 450.561,2796.97 450.559,2796.91 C 450.561,2796.85 450.57,2796.79 450.595,2796.74 C 450.618,2796.69 450.65,2796.64 450.69,2796.61 C 450.731,2796.57 450.777,2796.54 450.833,2796.53 C 450.887,2796.51 450.944,2796.5 451.005,2796.51 L 451.452,2796.57 L 451.452,2796.83 L 451.005,2796.78 L 451.005,2797.03 L 451.701,2797.11 L 451.701,2796.34 L 451.005,2796.26 C 450.909,2796.25 450.82,2796.26 450.735,2796.28 Z M 449.469,2796.33 C 449.531,2796.34 449.588,2796.35 449.641,2796.38 C 449.697,2796.41 449.744,2796.45 449.784,2796.5 C 449.824,2796.54 449.856,2796.59 449.88,2796.65 C 449.903,2796.71 449.916,2796.77 449.916,2796.83 C 449.916,2796.9 449.903,2796.95 449.88,2797.01 C 449.856,2797.06 449.824,2797.1 449.784,2797.14 C 449.744,2797.17 449.697,2797.2 449.641,2797.22 C 449.588,2797.24 449.531,2797.24 449.469,2797.23 C 449.407,2797.22 449.348,2797.21 449.295,2797.18 C 449.241,2797.15 449.194,2797.11 449.152,2797.06 C 449.112,2797.02 449.079,2796.97 449.056,2796.91 C 449.033,2796.85 449.022,2796.79 449.022,2796.73 C 449.022,2796.66 449.033,2796.61 449.056,2796.55 C 449.079,2796.5 449.112,2796.46 449.152,2796.42 C 449.194,2796.39 449.241,2796.36 449.295,2796.34 C 449.348,2796.32 449.407,2796.32 449.469,2796.33 Z M 452.323,2796.47 C 452.239,2796.5 452.165,2796.54 452.101,2796.6 C 452.037,2796.65 451.988,2796.72 451.951,2796.8 C 451.916,2796.88 451.899,2796.97 451.899,2797.07 L 451.899,2797.77 L 452.146,2797.8 L 452.146,2797.1 C 452.146,2797.04 452.158,2796.98 452.182,2796.93 C 452.203,2796.88 452.238,2796.83 452.277,2796.79 C 452.318,2796.76 452.364,2796.73 452.419,2796.72 C 452.474,2796.7 452.531,2796.69 452.593,2796.7 C 452.655,2796.71 452.712,2796.73 452.767,2796.76 C 452.82,2796.79 452.867,2796.82 452.908,2796.87 C 452.95,2796.92 452.982,2796.97 453.004,2797.03 C 453.027,2797.08 453.039,2797.14 453.039,2797.21 L 453.039,2797.91 L 453.286,2797.94 L 453.286,2797.24 C 453.286,2797.14 453.27,2797.04 453.233,2796.96 C 453.197,2796.87 453.148,2796.79 453.084,2796.71 C 453.02,2796.64 452.946,2796.58 452.862,2796.54 C 452.78,2796.49 452.688,2796.46 452.593,2796.45 C 452.497,2796.44 452.405,2796.45 452.323,2796.47 Z M 453.715,2796.61 C 453.669,2796.63 453.631,2796.65 453.597,2796.68 C 453.563,2796.71 453.535,2796.75 453.516,2796.79 C 453.497,2796.84 453.486,2796.88 453.486,2796.94 L 453.486,2797.58 C 453.486,2797.64 453.497,2797.69 453.516,2797.74 C 453.535,2797.78 453.563,2797.83 453.597,2797.87 C 453.631,2797.9 453.669,2797.93 453.715,2797.96 C 453.759,2797.99 453.807,2798 453.861,2798.01 L 454.874,2798.13 L 454.874,2797.88 L 453.861,2797.76 C 453.837,2797.75 453.816,2797.75 453.797,2797.73 C 453.778,2797.72 453.761,2797.7 453.75,2797.68 C 453.74,2797.66 453.734,2797.64 453.734,2797.61 L 453.734,2797.48 L 454.627,2797.59 L 454.627,2797.34 L 453.734,2797.23 L 453.734,2796.97 C 453.734,2796.94 453.74,2796.92 453.75,2796.9 C 453.761,2796.88 453.778,2796.87 453.797,2796.86 C 453.816,2796.85 453.837,2796.85 453.861,2796.85 L 454.874,2796.97 L 454.874,2796.72 L 453.861,2796.6 L 453.784,2796.6 C 453.759,2796.6 453.735,2796.61 453.715,2796.61 Z M 456.308,2796.93 C 456.255,2796.94 456.208,2796.97 456.168,2797.01 C 456.127,2797.04 456.098,2797.08 456.073,2797.14 C 456.05,2797.19 456.039,2797.24 456.039,2797.3 L 456.286,2797.34 C 456.289,2797.3 456.297,2797.27 456.314,2797.24 C 456.332,2797.21 456.352,2797.19 456.382,2797.18 C 456.41,2797.17 456.442,2797.16 456.478,2797.17 L 456.912,2797.22 C 456.948,2797.22 456.981,2797.23 457.01,2797.26 C 457.038,2797.28 457.062,2797.3 457.078,2797.33 C 457.096,2797.36 457.103,2797.4 457.106,2797.43 C 457.103,2797.47 457.096,2797.5 457.078,2797.53 C 457.062,2797.55 457.038,2797.57 457.01,2797.59 C 456.981,2797.6 456.948,2797.61 456.912,2797.6 L 456.412,2797.54 L 456.337,2797.54 C 456.314,2797.54 456.291,2797.55 456.27,2797.55 C 456.225,2797.57 456.186,2797.59 456.153,2797.62 C 456.135,2797.64 456.119,2797.65 456.105,2797.67 C 456.084,2797.7 456.068,2797.73 456.057,2797.77 C 456.046,2797.8 456.039,2797.84 456.039,2797.88 L 456.039,2797.89 C 456.039,2797.94 456.05,2797.99 456.069,2798.04 C 456.089,2798.09 456.114,2798.13 456.149,2798.17 C 456.183,2798.21 456.223,2798.24 456.267,2798.26 C 456.312,2798.29 456.362,2798.31 456.412,2798.31 L 456.976,2798.38 C 457.027,2798.39 457.076,2798.38 457.123,2798.37 C 457.167,2798.36 457.206,2798.33 457.243,2798.3 C 457.276,2798.27 457.302,2798.23 457.32,2798.19 C 457.342,2798.15 457.35,2798.1 457.35,2798.05 L 457.35,2798.04 L 457.103,2798.01 L 457.103,2798.01 C 457.103,2798.04 457.098,2798.06 457.087,2798.08 C 457.074,2798.1 457.059,2798.11 457.04,2798.12 C 457.021,2798.13 457,2798.13 456.976,2798.13 L 456.412,2798.06 C 456.389,2798.06 456.367,2798.05 456.348,2798.03 C 456.33,2798.02 456.314,2798 456.304,2797.98 C 456.291,2797.96 456.286,2797.94 456.286,2797.92 L 456.286,2797.91 C 456.286,2797.88 456.291,2797.86 456.304,2797.85 C 456.314,2797.83 456.33,2797.81 456.348,2797.8 C 456.367,2797.8 456.389,2797.79 456.412,2797.8 L 456.912,2797.85 L 457.006,2797.85 C 457.036,2797.85 457.066,2797.84 457.093,2797.84 C 457.148,2797.82 457.195,2797.79 457.236,2797.75 C 457.24,2797.75 457.243,2797.74 457.244,2797.74 C 457.246,2797.74 457.248,2797.73 457.253,2797.73 C 457.282,2797.7 457.308,2797.66 457.325,2797.61 C 457.342,2797.57 457.35,2797.52 457.35,2797.46 C 457.35,2797.4 457.339,2797.34 457.317,2797.28 C 457.295,2797.23 457.263,2797.18 457.223,2797.13 C 457.183,2797.09 457.136,2797.05 457.082,2797.02 C 457.032,2796.99 456.974,2796.97 456.912,2796.97 L 456.478,2796.91 C 456.417,2796.91 456.362,2796.91 456.308,2796.93 Z M 457.781,2797.1 C 457.736,2797.11 457.695,2797.14 457.661,2797.17 C 457.627,2797.2 457.601,2797.23 457.582,2797.28 C 457.563,2797.32 457.552,2797.37 457.552,2797.42 L 457.552,2798.07 C 457.552,2798.12 457.563,2798.17 457.582,2798.22 C 457.601,2798.27 457.627,2798.31 457.661,2798.35 C 457.695,2798.39 457.736,2798.42 457.781,2798.45 C 457.825,2798.47 457.874,2798.49 457.924,2798.49 L 458.941,2798.62 L 458.941,2798.36 L 457.924,2798.24 C 457.902,2798.24 457.88,2798.23 457.862,2798.22 C 457.842,2798.2 457.828,2798.19 457.817,2798.17 C 457.804,2798.14 457.8,2798.12 457.8,2798.1 L 457.8,2797.97 L 458.691,2798.08 L 458.691,2797.82 L 457.8,2797.72 L 457.8,2797.45 C 457.8,2797.43 457.804,2797.41 457.817,2797.39 C 457.828,2797.37 457.842,2797.36 457.862,2797.35 C 457.88,2797.34 457.902,2797.34 457.924,2797.34 L 458.941,2797.46 L 458.941,2797.21 L 457.924,2797.09 C 457.874,2797.08 457.825,2797.08 457.781,2797.1 Z M 459.136,2797.23 L 459.136,2798.64 L 460.012,2798.74 C 460.064,2798.75 460.112,2798.74 460.157,2798.73 C 460.204,2798.71 460.243,2798.69 460.276,2798.66 C 460.311,2798.63 460.338,2798.59 460.358,2798.55 C 460.377,2798.51 460.385,2798.46 460.385,2798.41 C 460.385,2798.36 460.377,2798.31 460.358,2798.26 C 460.34,2798.21 460.314,2798.17 460.281,2798.13 C 460.248,2798.09 460.211,2798.06 460.168,2798.03 C 460.134,2798.01 460.098,2798 460.06,2797.99 L 460.259,2797.61 L 460.385,2797.38 L 460.108,2797.34 L 459.981,2797.58 L 459.849,2797.83 L 459.842,2797.84 C 459.819,2797.87 459.791,2797.9 459.753,2797.91 C 459.717,2797.93 459.677,2797.94 459.631,2797.93 L 459.383,2797.9 L 459.383,2797.26 L 459.136,2797.23 Z M 460.585,2797.4 L 460.585,2798.81 L 460.834,2798.84 L 460.834,2797.43 L 460.585,2797.4 Z M 461.261,2797.51 C 461.215,2797.53 461.176,2797.55 461.143,2797.58 C 461.108,2797.61 461.08,2797.65 461.062,2797.69 C 461.042,2797.74 461.034,2797.78 461.032,2797.84 L 461.032,2798.48 C 461.034,2798.54 461.042,2798.59 461.062,2798.64 C 461.08,2798.68 461.108,2798.73 461.143,2798.77 C 461.176,2798.81 461.215,2798.84 461.261,2798.86 C 461.306,2798.89 461.353,2798.9 461.406,2798.91 L 462.421,2799.03 L 462.421,2798.78 L 461.406,2798.66 C 461.383,2798.65 461.362,2798.65 461.342,2798.63 C 461.323,2798.62 461.309,2798.6 461.296,2798.58 C 461.285,2798.56 461.279,2798.54 461.279,2798.51 L 461.279,2798.38 L 462.172,2798.49 L 462.172,2798.24 L 461.279,2798.13 L 461.279,2797.87 C 461.279,2797.84 461.285,2797.82 461.296,2797.8 C 461.309,2797.79 461.323,2797.77 461.342,2797.76 C 461.362,2797.75 461.383,2797.75 461.406,2797.75 L 462.421,2797.87 L 462.421,2797.62 L 461.406,2797.5 C 461.353,2797.49 461.306,2797.5 461.261,2797.51 Z M 462.888,2797.71 C 462.834,2797.73 462.787,2797.76 462.748,2797.79 C 462.709,2797.83 462.677,2797.87 462.653,2797.92 C 462.632,2797.97 462.62,2798.03 462.62,2798.09 L 462.868,2798.12 C 462.868,2798.08 462.877,2798.05 462.893,2798.03 C 462.911,2798 462.934,2797.98 462.962,2797.97 C 462.992,2797.95 463.024,2797.95 463.058,2797.95 L 463.494,2798 C 463.528,2798.01 463.56,2798.02 463.59,2798.04 C 463.62,2798.06 463.64,2798.09 463.659,2798.12 C 463.677,2798.15 463.686,2798.18 463.686,2798.22 C 463.686,2798.26 463.677,2798.29 463.659,2798.31 C 463.64,2798.34 463.62,2798.36 463.59,2798.37 C 463.56,2798.39 463.528,2798.39 463.494,2798.39 L 462.994,2798.33 C 462.943,2798.32 462.893,2798.33 462.852,2798.34 C 462.806,2798.35 462.767,2798.37 462.732,2798.4 C 462.715,2798.42 462.7,2798.44 462.686,2798.46 C 462.664,2798.49 462.649,2798.52 462.636,2798.55 C 462.626,2798.59 462.62,2798.63 462.62,2798.67 L 462.62,2798.67 C 462.62,2798.73 462.63,2798.78 462.649,2798.83 C 462.668,2798.87 462.696,2798.92 462.73,2798.96 C 462.764,2798.99 462.803,2799.03 462.847,2799.05 C 462.892,2799.08 462.94,2799.09 462.994,2799.1 L 463.555,2799.17 L 463.632,2799.17 C 463.656,2799.17 463.679,2799.16 463.702,2799.15 C 463.746,2799.14 463.787,2799.12 463.821,2799.09 C 463.856,2799.06 463.883,2799.02 463.902,2798.98 C 463.922,2798.93 463.932,2798.89 463.932,2798.83 L 463.932,2798.82 L 463.684,2798.79 L 463.684,2798.8 C 463.684,2798.82 463.677,2798.84 463.666,2798.86 C 463.656,2798.88 463.639,2798.89 463.62,2798.9 C 463.6,2798.91 463.579,2798.92 463.555,2798.91 L 462.994,2798.85 C 462.97,2798.84 462.949,2798.84 462.929,2798.82 C 462.911,2798.81 462.893,2798.79 462.883,2798.77 C 462.872,2798.75 462.866,2798.72 462.866,2798.7 L 462.866,2798.69 C 462.866,2798.67 462.872,2798.65 462.883,2798.63 C 462.893,2798.61 462.911,2798.6 462.929,2798.59 C 462.949,2798.58 462.97,2798.58 462.994,2798.58 L 463.494,2798.64 C 463.558,2798.65 463.618,2798.64 463.673,2798.62 C 463.728,2798.6 463.776,2798.57 463.817,2798.53 C 463.82,2798.53 463.821,2798.53 463.824,2798.53 C 463.826,2798.52 463.831,2798.52 463.832,2798.52 C 463.864,2798.48 463.888,2798.44 463.905,2798.4 C 463.922,2798.35 463.932,2798.3 463.932,2798.25 C 463.932,2798.19 463.92,2798.13 463.897,2798.07 C 463.875,2798.01 463.842,2797.96 463.802,2797.92 C 463.762,2797.87 463.717,2797.84 463.664,2797.81 C 463.61,2797.78 463.553,2797.76 463.494,2797.75 L 463.058,2797.7 C 462.998,2797.69 462.94,2797.7 462.888,2797.71 Z M 459.383,2798.15 L 460.012,2798.23 C 460.021,2798.23 460.03,2798.23 460.04,2798.24 C 460.049,2798.24 460.057,2798.24 460.064,2798.25 C 460.087,2798.26 460.106,2798.28 460.119,2798.3 C 460.131,2798.33 460.14,2798.35 460.14,2798.37 C 460.138,2798.4 460.134,2798.42 460.126,2798.43 C 460.117,2798.45 460.11,2798.46 460.101,2798.46 C 460.093,2798.47 460.082,2798.48 460.068,2798.48 C 460.053,2798.49 460.034,2798.49 460.012,2798.49 L 459.383,2798.41 L 459.383,2798.15 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(448.814 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--ELEMENTS, .KN95_NR_small_individuals--ELEMENTS {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='14.953 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.891' y2='69.197' gradientTransform='translate(59.028 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.716' y2='69.453' gradientTransform='translate(46.692 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.402' y2='7.324' gradientTransform='translate(59.007 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.801' gradientTransform='translate(42.712 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.57' gradientTransform='translate(88.013 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.57' y2='0' gradientTransform='translate(49.157 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(73.281 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 48.872,2776.57 L 48.872,2858.45 L 109.703,2862.36 C 109.745,2862.31 109.777,2862.24 109.777,2862.16 L 109.777,2784.82 L 48.872,2776.57 Z' stroke-width='8.031' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 48.872,2776.57 L 36.797,2788.29 L 36.79,2865.07 L 48.872,2858.45 L 48.872,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 48.872,2858.45 L 36.79,2865.07 L 95.824,2868.31 L 109.573,2862.45 C 109.62,2862.43 109.667,2862.4 109.703,2862.36 L 48.872,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 48.568,2857.52 L 36.786,2864.11 L 36.784,2865.07 L 48.568,2858.62 L 48.568,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 65.742,2819.56 L 65.734,2826.71 L 66.914,2826.83 L 66.921,2823.18 L 67.896,2824.24 L 68.772,2825.19 L 70.613,2827.21 L 72.365,2827.39 L 69.474,2824.22 L 72.347,2820.23 L 70.89,2820.08 L 68.598,2823.26 L 66.923,2821.45 L 66.923,2819.68 L 65.742,2819.56 Z M 72.949,2820.29 L 73.556,2821.63 L 76.318,2827.79 L 79.1,2822.2 L 79.701,2820.98 L 78.382,2820.85 L 77.773,2822.06 L 76.323,2824.98 L 74.876,2821.77 L 74.273,2820.43 L 72.949,2820.29 Z M 80.299,2821.04 L 80.31,2821.04 L 81.217,2822.41 L 82.838,2824.86 L 83.589,2825.98 L 84.492,2827.35 L 80.284,2826.92 L 80.283,2828.19 L 85.4,2828.71 L 86.881,2828.87 L 85.968,2827.49 L 84.325,2825.01 L 83.583,2823.89 L 82.689,2822.56 L 86.919,2822.99 L 86.922,2821.71 L 81.802,2821.19 L 81.793,2821.19 L 80.299,2821.04 Z M 88.932,2822.07 C 88.719,2822.15 88.526,2822.27 88.368,2822.43 C 88.202,2822.59 88.075,2822.78 87.987,2823 C 87.894,2823.23 87.849,2823.47 87.847,2823.74 L 87.84,2827.03 C 87.84,2827.3 87.885,2827.55 87.979,2827.79 C 88.068,2828.04 88.193,2828.25 88.362,2828.45 C 88.519,2828.64 88.711,2828.8 88.923,2828.92 C 89.139,2829.04 89.371,2829.12 89.618,2829.14 L 94.45,2829.63 L 94.45,2828.36 L 89.618,2827.86 C 89.504,2827.85 89.405,2827.81 89.313,2827.74 C 89.221,2827.68 89.154,2827.59 89.099,2827.49 C 89.043,2827.38 89.018,2827.27 89.018,2827.15 L 89.018,2826.49 L 93.271,2826.92 L 93.272,2825.64 L 89.018,2825.21 L 89.018,2823.86 C 89.018,2823.74 89.047,2823.63 89.102,2823.54 C 89.16,2823.45 89.228,2823.37 89.317,2823.33 C 89.411,2823.28 89.509,2823.26 89.624,2823.26 L 94.456,2823.76 L 94.458,2822.48 L 89.624,2821.99 C 89.381,2821.97 89.149,2821.99 88.932,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 72.728,2815.76 L 72.728,2817.28 C 72.728,2817.36 72.741,2817.43 72.769,2817.51 C 72.796,2817.58 72.836,2817.65 72.888,2817.7 C 72.939,2817.76 72.998,2817.8 73.065,2817.84 C 73.132,2817.87 73.205,2817.9 73.283,2817.9 L 74.792,2818.07 L 74.792,2817.69 L 73.283,2817.53 C 73.249,2817.53 73.218,2817.51 73.187,2817.49 C 73.16,2817.47 73.138,2817.45 73.12,2817.42 C 73.103,2817.39 73.097,2817.36 73.097,2817.32 L 73.097,2817.13 L 74.423,2817.26 L 74.423,2816.89 L 73.094,2816.75 L 73.097,2815.8 L 72.728,2815.76 Z M 75.092,2816.01 L 75.09,2817.53 C 75.09,2817.61 75.103,2817.68 75.132,2817.76 C 75.158,2817.83 75.199,2817.89 75.248,2817.95 C 75.301,2818 75.361,2818.05 75.426,2818.09 C 75.492,2818.12 75.562,2818.14 75.645,2818.15 L 77.152,2818.31 L 77.155,2817.94 L 75.648,2817.78 C 75.611,2817.78 75.577,2817.76 75.552,2817.74 C 75.522,2817.72 75.501,2817.7 75.481,2817.67 C 75.465,2817.64 75.458,2817.61 75.458,2817.57 L 75.458,2817.38 L 76.787,2817.52 L 76.787,2817.15 L 75.456,2817 L 75.458,2816.04 L 75.092,2816.01 Z M 77.454,2816.26 L 77.45,2818.35 L 78.752,2818.49 C 78.827,2818.49 78.902,2818.49 78.965,2818.46 C 79.033,2818.44 79.093,2818.41 79.144,2818.36 L 79.145,2818.36 C 79.197,2818.31 79.235,2818.26 79.267,2818.19 C 79.293,2818.12 79.31,2818.05 79.31,2817.98 C 79.31,2817.9 79.293,2817.83 79.269,2817.76 C 79.24,2817.69 79.202,2817.62 79.155,2817.57 C 79.105,2817.51 79.05,2817.46 78.986,2817.43 C 78.935,2817.4 78.882,2817.38 78.824,2817.37 C 78.821,2817.37 78.814,2817.37 78.81,2817.37 L 78.81,2817.36 L 77.82,2817.25 L 77.822,2816.3 L 77.454,2816.26 Z M 79.601,2816.47 L 79.601,2817.1 C 79.601,2817.14 79.603,2817.18 79.613,2817.22 C 79.62,2817.26 79.635,2817.3 79.648,2817.34 C 79.68,2817.42 79.723,2817.48 79.776,2817.54 C 79.829,2817.61 79.889,2817.66 79.961,2817.7 C 80.029,2817.73 80.106,2817.76 80.188,2817.77 L 81.072,2817.87 L 81.082,2817.87 C 81.122,2817.88 81.161,2817.89 81.192,2817.92 C 81.225,2817.94 81.251,2817.98 81.27,2818.02 C 81.288,2818.05 81.298,2818.09 81.298,2818.13 C 81.298,2818.18 81.287,2818.22 81.266,2818.26 C 81.244,2818.29 81.218,2818.31 81.18,2818.33 C 81.144,2818.35 81.104,2818.36 81.059,2818.36 L 79.603,2818.2 L 79.603,2818.57 L 81.056,2818.73 C 81.144,2818.74 81.225,2818.73 81.295,2818.7 C 81.368,2818.68 81.431,2818.64 81.491,2818.59 C 81.546,2818.54 81.591,2818.48 81.619,2818.41 C 81.65,2818.34 81.666,2818.26 81.667,2818.17 C 81.667,2818.13 81.663,2818.09 81.655,2818.05 C 81.646,2818.01 81.634,2817.97 81.616,2817.93 C 81.603,2817.89 81.586,2817.86 81.565,2817.82 C 81.546,2817.79 81.52,2817.76 81.495,2817.73 C 81.444,2817.67 81.379,2817.61 81.308,2817.57 C 81.236,2817.53 81.163,2817.51 81.078,2817.49 L 81.069,2817.49 C 81.067,2817.49 81.063,2817.49 81.059,2817.49 L 80.188,2817.4 C 80.148,2817.39 80.112,2817.38 80.078,2817.35 C 80.044,2817.33 80.018,2817.29 80.002,2817.25 C 79.981,2817.22 79.974,2817.18 79.974,2817.14 L 79.974,2816.9 L 81.66,2817.07 L 81.661,2816.7 L 80.205,2816.54 L 79.601,2816.47 Z M 83.402,2816.88 L 83.4,2818.96 L 83.768,2818.72 L 85.098,2817.82 L 85.096,2819.15 L 85.464,2819.19 L 85.468,2817.1 L 85.098,2817.35 L 83.768,2818.24 L 83.772,2816.92 L 83.402,2816.88 Z M 85.762,2817.14 L 85.76,2819.22 L 87.064,2819.36 C 87.139,2819.37 87.21,2819.37 87.276,2819.34 C 87.346,2819.32 87.405,2819.28 87.455,2819.24 C 87.505,2819.19 87.545,2819.14 87.575,2819.07 C 87.603,2819 87.617,2818.93 87.619,2818.86 C 87.619,2818.78 87.603,2818.71 87.577,2818.63 C 87.549,2818.57 87.511,2818.5 87.462,2818.45 C 87.415,2818.39 87.357,2818.35 87.296,2818.3 C 87.244,2818.28 87.189,2818.26 87.134,2818.24 L 87.432,2817.68 L 87.621,2817.33 L 87.209,2817.29 L 87.019,2817.64 L 86.82,2818.01 L 86.811,2818.02 C 86.779,2818.08 86.736,2818.12 86.679,2818.14 C 86.625,2818.17 86.563,2818.18 86.496,2818.17 L 86.13,2818.13 L 86.131,2817.17 L 85.762,2817.14 Z M 77.82,2817.62 L 78.756,2817.72 C 78.767,2817.72 78.78,2817.73 78.795,2817.73 C 78.808,2817.74 78.818,2817.74 78.831,2817.75 L 78.831,2817.75 C 78.865,2817.77 78.895,2817.8 78.912,2817.83 C 78.933,2817.86 78.942,2817.9 78.942,2817.94 C 78.942,2817.97 78.935,2818 78.923,2818.02 C 78.91,2818.04 78.899,2818.06 78.889,2818.07 C 78.873,2818.08 78.857,2818.09 78.835,2818.1 C 78.814,2818.11 78.787,2818.11 78.756,2818.11 L 77.82,2818.01 L 77.82,2817.62 Z M 86.13,2818.5 L 87.066,2818.6 C 87.076,2818.6 87.089,2818.61 87.103,2818.61 C 87.117,2818.62 87.128,2818.62 87.139,2818.63 C 87.174,2818.65 87.203,2818.68 87.219,2818.71 C 87.243,2818.74 87.253,2818.78 87.253,2818.82 C 87.249,2818.85 87.244,2818.88 87.23,2818.9 C 87.217,2818.92 87.209,2818.94 87.195,2818.95 C 87.183,2818.96 87.166,2818.97 87.144,2818.98 C 87.122,2818.99 87.096,2818.99 87.064,2818.99 L 86.127,2818.89 L 86.13,2818.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 66.151,2811.59 L 66.148,2812.97 L 66.994,2813.06 C 67.044,2813.07 67.096,2813.06 67.135,2813.05 C 67.176,2813.03 67.22,2813.01 67.249,2812.98 L 67.25,2812.97 C 67.287,2812.94 67.311,2812.91 67.33,2812.87 C 67.346,2812.82 67.36,2812.78 67.36,2812.72 C 67.36,2812.67 67.349,2812.62 67.331,2812.58 C 67.315,2812.53 67.291,2812.49 67.257,2812.45 C 67.227,2812.41 67.189,2812.38 67.149,2812.36 C 67.114,2812.34 67.08,2812.32 67.044,2812.32 C 67.04,2812.32 67.036,2812.32 67.033,2812.32 L 67.033,2812.32 L 66.391,2812.25 L 66.394,2811.61 L 66.151,2811.59 Z M 67.549,2811.73 L 67.547,2813.11 L 68.395,2813.2 C 68.449,2813.21 68.494,2813.2 68.536,2813.19 C 68.581,2813.17 68.615,2813.15 68.649,2813.12 C 68.683,2813.09 68.707,2813.05 68.732,2813.01 C 68.746,2812.97 68.756,2812.92 68.757,2812.87 C 68.756,2812.82 68.746,2812.77 68.734,2812.72 C 68.708,2812.68 68.687,2812.64 68.655,2812.6 C 68.621,2812.56 68.589,2812.53 68.546,2812.5 C 68.513,2812.49 68.479,2812.47 68.444,2812.46 L 68.634,2812.09 L 68.757,2811.85 L 68.491,2811.82 L 68.366,2812.06 L 68.238,2812.31 L 68.232,2812.32 C 68.211,2812.35 68.181,2812.38 68.147,2812.39 C 68.108,2812.41 68.073,2812.42 68.03,2812.41 L 67.787,2812.39 L 67.787,2811.75 L 67.549,2811.73 Z M 69.312,2811.97 C 69.236,2811.99 69.165,2812.04 69.105,2812.09 C 69.038,2812.15 68.989,2812.22 68.957,2812.3 C 68.923,2812.38 68.907,2812.47 68.902,2812.57 C 68.907,2812.66 68.923,2812.75 68.955,2812.84 C 68.989,2812.93 69.038,2813.01 69.102,2813.08 C 69.161,2813.15 69.234,2813.2 69.311,2813.25 C 69.393,2813.29 69.481,2813.32 69.575,2813.33 C 69.666,2813.34 69.755,2813.33 69.838,2813.3 C 69.916,2813.27 69.989,2813.23 70.048,2813.18 C 70.113,2813.12 70.162,2813.05 70.194,2812.97 C 70.229,2812.89 70.247,2812.8 70.247,2812.7 C 70.247,2812.61 70.23,2812.51 70.194,2812.43 C 70.162,2812.34 70.115,2812.27 70.052,2812.19 C 69.992,2812.12 69.917,2812.07 69.841,2812.02 C 69.755,2811.98 69.669,2811.95 69.577,2811.94 L 69.442,2811.94 C 69.397,2811.95 69.356,2811.95 69.312,2811.97 Z M 70.943,2812.08 L 70.94,2813.22 L 70.392,2813.16 L 70.392,2813.41 L 71.731,2813.55 L 71.731,2813.3 L 71.186,2813.25 L 71.187,2812.11 L 70.943,2812.08 Z M 69.577,2812.19 C 69.635,2812.19 69.691,2812.21 69.745,2812.24 C 69.8,2812.27 69.845,2812.31 69.881,2812.35 C 69.919,2812.39 69.951,2812.45 69.977,2812.5 C 69.997,2812.56 70.008,2812.62 70.008,2812.68 C 70.008,2812.74 69.997,2812.8 69.975,2812.85 C 69.951,2812.9 69.919,2812.95 69.881,2812.98 C 69.842,2813.02 69.798,2813.05 69.743,2813.06 C 69.69,2813.08 69.635,2813.09 69.575,2813.08 C 69.517,2813.08 69.459,2813.06 69.406,2813.03 C 69.356,2813 69.307,2812.96 69.268,2812.92 C 69.232,2812.87 69.2,2812.83 69.177,2812.76 C 69.16,2812.71 69.146,2812.65 69.146,2812.59 C 69.146,2812.53 69.16,2812.47 69.177,2812.42 C 69.2,2812.37 69.234,2812.32 69.27,2812.29 C 69.308,2812.25 69.357,2812.22 69.406,2812.21 C 69.459,2812.19 69.519,2812.18 69.577,2812.19 Z M 72.148,2812.24 C 72.109,2812.25 72.071,2812.27 72.034,2812.31 C 72.003,2812.34 71.977,2812.37 71.958,2812.42 C 71.941,2812.46 71.932,2812.51 71.932,2812.56 L 71.93,2813.2 C 71.932,2813.25 71.937,2813.3 71.956,2813.35 C 71.977,2813.4 72,2813.43 72.034,2813.48 C 72.068,2813.51 72.105,2813.54 72.148,2813.57 C 72.192,2813.59 72.239,2813.61 72.287,2813.61 L 73.271,2813.71 L 73.271,2813.47 L 72.287,2813.36 C 72.266,2813.36 72.245,2813.35 72.225,2813.34 C 72.211,2813.33 72.194,2813.31 72.184,2813.29 C 72.173,2813.27 72.166,2813.24 72.166,2813.22 L 72.166,2813.09 L 73.03,2813.18 L 73.03,2812.93 L 72.166,2812.85 L 72.17,2812.59 C 72.17,2812.56 72.173,2812.54 72.185,2812.52 C 72.196,2812.5 72.213,2812.49 72.229,2812.48 C 72.25,2812.47 72.269,2812.47 72.287,2812.47 L 73.273,2812.57 L 73.273,2812.32 L 72.29,2812.22 C 72.241,2812.22 72.194,2812.22 72.148,2812.24 Z M 73.849,2812.44 C 73.771,2812.47 73.703,2812.51 73.641,2812.56 C 73.577,2812.62 73.528,2812.69 73.494,2812.77 C 73.46,2812.85 73.44,2812.94 73.44,2813.03 C 73.44,2813.13 73.46,2813.22 73.494,2813.31 C 73.526,2813.4 73.575,2813.48 73.641,2813.55 C 73.703,2813.62 73.771,2813.67 73.849,2813.72 C 73.932,2813.76 74.019,2813.79 74.114,2813.8 L 74.781,2813.87 L 74.781,2813.62 L 74.114,2813.55 C 74.054,2813.55 73.996,2813.53 73.945,2813.5 C 73.894,2813.47 73.845,2813.43 73.805,2813.39 C 73.768,2813.34 73.739,2813.3 73.713,2813.24 C 73.697,2813.18 73.682,2813.12 73.682,2813.06 C 73.682,2813 73.697,2812.94 73.716,2812.89 C 73.739,2812.84 73.768,2812.8 73.807,2812.76 C 73.848,2812.72 73.897,2812.69 73.948,2812.68 C 73.996,2812.66 74.054,2812.65 74.115,2812.66 L 74.784,2812.73 L 74.784,2812.48 L 74.115,2812.41 L 73.979,2812.41 C 73.935,2812.41 73.894,2812.42 73.849,2812.44 Z M 66.391,2812.5 L 66.998,2812.56 C 67.009,2812.56 67.019,2812.56 67.025,2812.56 C 67.033,2812.56 67.04,2812.57 67.051,2812.58 C 67.07,2812.59 67.09,2812.6 67.104,2812.63 C 67.114,2812.65 67.119,2812.67 67.119,2812.7 C 67.119,2812.72 67.114,2812.74 67.108,2812.75 C 67.102,2812.77 67.091,2812.78 67.085,2812.78 C 67.076,2812.79 67.065,2812.8 67.053,2812.8 C 67.036,2812.81 67.021,2812.82 66.998,2812.81 L 66.391,2812.75 L 66.391,2812.5 Z M 75.526,2812.56 L 75.526,2813.7 L 74.975,2813.64 L 74.975,2813.89 L 76.318,2814.03 L 76.318,2813.78 L 75.767,2813.72 L 75.767,2812.58 L 75.526,2812.56 Z M 67.787,2812.64 L 68.395,2812.7 C 68.404,2812.7 68.413,2812.7 68.421,2812.7 C 68.432,2812.71 68.438,2812.71 68.449,2812.72 C 68.468,2812.73 68.485,2812.75 68.5,2812.77 C 68.513,2812.79 68.519,2812.82 68.519,2812.84 C 68.519,2812.87 68.513,2812.88 68.506,2812.9 C 68.5,2812.91 68.491,2812.92 68.481,2812.93 C 68.475,2812.93 68.462,2812.94 68.454,2812.95 C 68.436,2812.96 68.415,2812.96 68.395,2812.96 L 67.787,2812.89 L 67.787,2812.64 Z M 76.509,2812.66 L 76.508,2814.05 L 76.752,2814.07 L 76.755,2812.69 L 76.509,2812.66 Z M 77.552,2812.77 L 76.988,2813.85 L 76.863,2814.08 L 77.133,2814.11 L 77.257,2813.88 L 77.55,2813.31 L 77.841,2813.94 L 77.967,2814.2 L 78.233,2814.23 L 78.11,2813.97 L 77.552,2812.77 Z M 78.576,2812.9 C 78.533,2812.92 78.495,2812.94 78.463,2812.97 C 78.429,2813 78.401,2813.04 78.386,2813.08 C 78.365,2813.12 78.354,2813.17 78.354,2813.22 L 78.354,2813.87 C 78.354,2813.92 78.363,2813.97 78.384,2814.01 C 78.399,2814.06 78.427,2814.1 78.461,2814.14 C 78.493,2814.18 78.531,2814.21 78.573,2814.23 C 78.616,2814.26 78.665,2814.27 78.716,2814.28 L 79.694,2814.38 L 79.694,2814.13 L 78.716,2814.03 C 78.688,2814.03 78.67,2814.02 78.651,2814.01 C 78.633,2813.99 78.62,2813.98 78.608,2813.95 C 78.597,2813.94 78.591,2813.91 78.591,2813.89 L 78.591,2813.76 L 79.458,2813.85 L 79.458,2813.61 L 78.592,2813.52 L 78.592,2813.25 C 78.592,2813.23 78.599,2813.21 78.61,2813.19 C 78.62,2813.17 78.633,2813.15 78.654,2813.15 C 78.672,2813.14 78.691,2813.13 78.718,2813.14 L 79.695,2813.24 L 79.695,2812.99 L 78.718,2812.89 C 78.667,2812.88 78.618,2812.89 78.576,2812.9 Z M 80.818,2813.1 L 80.817,2814.49 L 81.663,2814.58 C 81.715,2814.59 81.761,2814.58 81.806,2814.57 C 81.851,2814.55 81.887,2814.53 81.921,2814.5 C 81.955,2814.47 81.978,2814.43 82,2814.38 C 82.014,2814.34 82.025,2814.3 82.025,2814.24 C 82.025,2814.19 82.017,2814.14 82.002,2814.1 C 81.982,2814.05 81.959,2814.01 81.927,2813.97 C 81.895,2813.94 81.861,2813.91 81.817,2813.89 C 81.786,2813.86 81.746,2813.85 81.712,2813.84 L 81.908,2813.46 L 82.028,2813.23 L 81.757,2813.2 L 81.638,2813.43 L 81.51,2813.68 L 81.504,2813.69 C 81.483,2813.72 81.452,2813.75 81.414,2813.77 C 81.38,2813.78 81.342,2813.79 81.301,2813.79 L 81.056,2813.76 L 81.059,2813.13 L 80.818,2813.1 Z M 82.445,2813.3 C 82.401,2813.32 82.362,2813.34 82.331,2813.37 C 82.297,2813.4 82.271,2813.44 82.253,2813.48 C 82.235,2813.53 82.225,2813.58 82.225,2813.63 L 82.225,2814.27 C 82.225,2814.32 82.234,2814.37 82.25,2814.41 C 82.27,2814.46 82.295,2814.5 82.33,2814.54 C 82.362,2814.58 82.4,2814.61 82.441,2814.64 C 82.487,2814.66 82.533,2814.68 82.582,2814.68 L 83.564,2814.78 L 83.564,2814.53 L 82.582,2814.43 C 82.563,2814.43 82.54,2814.42 82.521,2814.41 C 82.508,2814.39 82.492,2814.38 82.478,2814.36 C 82.467,2814.34 82.461,2814.31 82.461,2814.29 L 82.461,2814.16 L 83.325,2814.25 L 83.325,2814 L 82.463,2813.91 L 82.463,2813.65 C 82.463,2813.63 82.47,2813.61 82.481,2813.59 C 82.492,2813.57 82.508,2813.56 82.522,2813.55 C 82.542,2813.54 82.565,2813.54 82.582,2813.54 L 83.565,2813.64 L 83.565,2813.39 L 82.585,2813.29 C 82.536,2813.29 82.489,2813.29 82.445,2813.3 Z M 84.017,2813.47 C 83.968,2813.49 83.923,2813.52 83.882,2813.55 C 83.843,2813.59 83.815,2813.63 83.789,2813.68 C 83.772,2813.73 83.757,2813.79 83.757,2813.85 L 84.002,2813.87 C 84.002,2813.84 84.008,2813.8 84.023,2813.78 C 84.04,2813.76 84.061,2813.73 84.089,2813.72 C 84.117,2813.7 84.145,2813.7 84.183,2813.7 L 84.604,2813.74 C 84.638,2813.75 84.667,2813.76 84.698,2813.78 C 84.721,2813.8 84.746,2813.83 84.761,2813.86 C 84.779,2813.89 84.787,2813.92 84.787,2813.96 C 84.787,2813.99 84.779,2814.03 84.761,2814.05 C 84.746,2814.08 84.721,2814.1 84.698,2814.11 C 84.665,2814.12 84.638,2814.13 84.604,2814.13 L 84.117,2814.08 L 84.049,2814.08 C 84.023,2814.08 84.002,2814.08 83.98,2814.09 C 83.938,2814.1 83.904,2814.13 83.866,2814.15 C 83.853,2814.17 83.832,2814.19 83.818,2814.21 C 83.797,2814.24 83.785,2814.27 83.774,2814.31 C 83.763,2814.34 83.757,2814.38 83.757,2814.42 L 83.757,2814.43 C 83.757,2814.47 83.768,2814.52 83.785,2814.57 C 83.802,2814.62 83.827,2814.66 83.864,2814.7 C 83.899,2814.74 83.934,2814.77 83.979,2814.79 C 84.018,2814.82 84.068,2814.83 84.117,2814.84 L 84.662,2814.89 C 84.71,2814.9 84.757,2814.89 84.802,2814.88 C 84.847,2814.86 84.885,2814.84 84.921,2814.81 C 84.951,2814.78 84.978,2814.74 84.996,2814.7 C 85.017,2814.66 85.023,2814.61 85.023,2814.56 L 85.023,2814.55 L 84.785,2814.52 L 84.785,2814.53 C 84.785,2814.55 84.779,2814.57 84.768,2814.59 C 84.755,2814.61 84.742,2814.62 84.724,2814.64 C 84.706,2814.64 84.685,2814.65 84.662,2814.64 L 84.117,2814.59 C 84.096,2814.59 84.072,2814.58 84.055,2814.56 C 84.04,2814.55 84.023,2814.53 84.01,2814.51 C 84.002,2814.49 83.997,2814.47 83.997,2814.45 L 83.997,2814.44 C 83.997,2814.41 84.002,2814.4 84.01,2814.38 C 84.023,2814.36 84.04,2814.34 84.057,2814.34 C 84.072,2814.33 84.096,2814.32 84.117,2814.32 L 84.604,2814.37 L 84.693,2814.37 C 84.719,2814.37 84.748,2814.37 84.774,2814.36 C 84.832,2814.34 84.876,2814.31 84.915,2814.27 C 84.921,2814.26 84.923,2814.26 84.925,2814.26 C 84.928,2814.26 84.928,2814.25 84.931,2814.25 C 84.959,2814.22 84.983,2814.18 84.998,2814.13 C 85.019,2814.08 85.026,2814.03 85.026,2813.98 C 85.026,2813.92 85.015,2813.86 84.993,2813.8 C 84.974,2813.76 84.94,2813.7 84.904,2813.66 C 84.861,2813.62 84.819,2813.58 84.766,2813.55 C 84.714,2813.52 84.662,2813.5 84.604,2813.5 L 84.183,2813.45 C 84.124,2813.45 84.068,2813.45 84.017,2813.47 Z M 85.223,2813.56 L 85.217,2814.95 L 86.065,2815.04 C 86.117,2815.05 86.161,2815.04 86.205,2815.03 C 86.249,2815.01 86.287,2814.99 86.325,2814.96 L 86.325,2814.96 C 86.356,2814.92 86.383,2814.88 86.403,2814.84 C 86.417,2814.8 86.427,2814.75 86.427,2814.7 C 86.427,2814.65 86.421,2814.6 86.403,2814.55 C 86.385,2814.51 86.362,2814.47 86.33,2814.43 C 86.296,2814.39 86.262,2814.36 86.217,2814.34 C 86.187,2814.32 86.151,2814.3 86.115,2814.3 C 86.111,2814.3 86.106,2814.3 86.104,2814.3 L 86.104,2814.29 L 85.461,2814.23 L 85.461,2813.59 L 85.223,2813.56 Z M 86.623,2813.71 L 86.621,2815.1 L 86.855,2815.12 L 86.86,2813.73 L 86.623,2813.71 Z M 87.053,2813.75 L 87.052,2815.14 L 87.898,2815.22 C 87.949,2815.23 87.996,2815.22 88.041,2815.21 C 88.083,2815.2 88.117,2815.17 88.153,2815.14 C 88.187,2815.11 88.211,2815.07 88.23,2815.03 C 88.249,2814.99 88.258,2814.94 88.26,2814.89 C 88.258,2814.84 88.249,2814.79 88.232,2814.74 C 88.213,2814.7 88.19,2814.65 88.16,2814.62 C 88.128,2814.58 88.09,2814.55 88.047,2814.52 C 88.015,2814.51 87.981,2814.49 87.947,2814.48 L 88.138,2814.11 L 88.26,2813.87 L 87.994,2813.85 L 87.869,2814.08 L 87.74,2814.33 L 87.734,2814.34 C 87.713,2814.37 87.685,2814.4 87.648,2814.41 C 87.615,2814.43 87.575,2814.44 87.534,2814.44 L 87.294,2814.41 L 87.294,2813.77 L 87.053,2813.75 Z M 88.377,2813.89 L 88.5,2814.15 L 89.062,2815.35 L 89.624,2814.27 L 89.751,2814.03 L 89.481,2814 L 89.358,2814.24 L 89.062,2814.8 L 88.768,2814.18 L 88.645,2813.92 L 88.377,2813.89 Z M 81.056,2814.01 L 81.666,2814.08 C 81.676,2814.08 81.684,2814.08 81.69,2814.08 C 81.7,2814.08 81.708,2814.09 81.715,2814.09 C 81.736,2814.11 81.755,2814.12 81.771,2814.15 C 81.782,2814.17 81.791,2814.19 81.791,2814.22 C 81.791,2814.24 81.786,2814.26 81.776,2814.27 C 81.77,2814.29 81.757,2814.3 81.75,2814.3 C 81.742,2814.31 81.731,2814.32 81.721,2814.32 C 81.71,2814.33 81.701,2814.33 81.693,2814.33 L 81.663,2814.33 L 81.056,2814.27 L 81.056,2814.01 Z M 90.413,2814.1 L 90.413,2815.24 L 89.862,2815.19 L 89.86,2815.43 L 91.202,2815.57 L 91.202,2815.33 L 90.651,2815.26 L 90.654,2814.12 L 90.413,2814.1 Z M 91.76,2814.3 C 91.679,2814.32 91.611,2814.37 91.548,2814.42 C 91.488,2814.48 91.439,2814.55 91.401,2814.63 C 91.368,2814.71 91.349,2814.79 91.349,2814.89 C 91.349,2814.99 91.366,2815.08 91.401,2815.17 C 91.436,2815.25 91.486,2815.34 91.548,2815.4 C 91.609,2815.47 91.677,2815.53 91.758,2815.58 C 91.843,2815.62 91.931,2815.65 92.02,2815.66 C 92.118,2815.66 92.2,2815.66 92.281,2815.63 C 92.362,2815.6 92.437,2815.56 92.499,2815.5 C 92.558,2815.44 92.605,2815.38 92.639,2815.3 C 92.675,2815.21 92.692,2815.13 92.694,2815.03 C 92.692,2814.93 92.675,2814.84 92.641,2814.75 C 92.605,2814.67 92.558,2814.59 92.499,2814.52 C 92.441,2814.45 92.364,2814.39 92.283,2814.35 C 92.203,2814.31 92.12,2814.28 92.023,2814.27 L 91.888,2814.27 C 91.845,2814.27 91.805,2814.28 91.76,2814.3 Z M 92.839,2814.35 L 92.837,2815.74 L 93.684,2815.83 C 93.732,2815.83 93.78,2815.82 93.824,2815.81 C 93.869,2815.79 93.907,2815.77 93.941,2815.74 C 93.975,2815.71 93.999,2815.67 94.016,2815.63 C 94.034,2815.59 94.043,2815.54 94.043,2815.49 C 94.043,2815.44 94.034,2815.39 94.02,2815.34 C 94.001,2815.3 93.979,2815.26 93.943,2815.22 C 93.913,2815.18 93.876,2815.15 93.837,2815.12 C 93.799,2815.11 93.767,2815.09 93.729,2815.09 L 93.926,2814.71 L 94.045,2814.47 L 93.777,2814.45 L 93.659,2814.68 L 93.524,2814.93 L 93.52,2814.94 C 93.499,2814.97 93.473,2815 93.434,2815.02 C 93.399,2815.03 93.36,2815.04 93.316,2815.03 L 93.077,2815.01 L 93.077,2814.37 L 92.839,2814.35 Z M 85.46,2814.47 L 86.068,2814.53 C 86.076,2814.54 86.087,2814.54 86.096,2814.54 C 86.102,2814.55 86.111,2814.55 86.119,2814.55 L 86.119,2814.55 C 86.138,2814.57 86.157,2814.59 86.171,2814.61 C 86.185,2814.63 86.189,2814.65 86.192,2814.68 C 86.189,2814.7 86.187,2814.72 86.179,2814.73 C 86.168,2814.75 86.161,2814.76 86.153,2814.76 C 86.145,2814.77 86.136,2814.78 86.122,2814.78 C 86.106,2814.79 86.091,2814.79 86.068,2814.79 L 85.46,2814.73 L 85.46,2814.47 Z M 92.023,2814.51 C 92.083,2814.52 92.138,2814.54 92.19,2814.57 C 92.241,2814.6 92.288,2814.64 92.326,2814.68 C 92.367,2814.72 92.398,2814.78 92.419,2814.83 C 92.448,2814.89 92.454,2814.95 92.454,2815.01 C 92.454,2815.07 92.445,2815.12 92.419,2815.18 C 92.398,2815.23 92.364,2815.28 92.324,2815.31 C 92.286,2815.35 92.241,2815.38 92.19,2815.39 C 92.138,2815.41 92.082,2815.41 92.02,2815.41 C 91.96,2815.4 91.905,2815.38 91.854,2815.36 C 91.805,2815.33 91.756,2815.29 91.715,2815.25 C 91.675,2815.2 91.645,2815.15 91.624,2815.1 C 91.6,2815.04 91.592,2814.98 91.59,2814.92 C 91.592,2814.85 91.6,2814.8 91.624,2814.75 C 91.645,2814.7 91.675,2814.65 91.715,2814.62 C 91.756,2814.58 91.805,2814.55 91.856,2814.53 C 91.907,2814.51 91.96,2814.51 92.023,2814.51 Z M 87.294,2814.66 L 87.898,2814.72 C 87.908,2814.72 87.915,2814.73 87.924,2814.73 C 87.932,2814.73 87.94,2814.74 87.949,2814.74 C 87.972,2814.75 87.989,2814.77 88,2814.79 C 88.015,2814.82 88.021,2814.84 88.021,2814.86 C 88.021,2814.89 88.015,2814.91 88.009,2814.92 C 88,2814.93 87.994,2814.94 87.986,2814.95 C 87.976,2814.96 87.966,2814.97 87.951,2814.97 C 87.939,2814.98 87.917,2814.98 87.898,2814.98 L 87.294,2814.92 L 87.294,2814.66 Z M 93.077,2815.26 L 93.684,2815.33 C 93.694,2815.33 93.703,2815.33 93.712,2815.33 C 93.72,2815.34 93.726,2815.34 93.732,2815.34 C 93.756,2815.35 93.773,2815.37 93.788,2815.39 C 93.799,2815.41 93.805,2815.43 93.805,2815.46 C 93.802,2815.48 93.799,2815.5 93.795,2815.52 C 93.788,2815.53 93.777,2815.54 93.769,2815.55 C 93.762,2815.56 93.75,2815.56 93.736,2815.57 C 93.725,2815.58 93.707,2815.58 93.684,2815.58 L 93.077,2815.52 L 93.077,2815.26 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 49.172,2858.06 L 48.568,2858.62 L 109.262,2862.58 L 109.573,2862.45 C 109.675,2862.41 109.777,2862.32 109.777,2862.16 L 109.777,2862.01 L 49.172,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 48.568,2858.62 L 48.566,2776.86 L 48.872,2776.57 L 49.172,2776.61 L 49.172,2858.06 L 48.568,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_9' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(67.142 2789.88) rotate(90) skewX(-7.19316)' fill='%2339332f'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(73.607 2790.7) rotate(90) skewX(-7.19721)' fill='%23b6b6b3'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(80.072 2791.51) rotate(90) skewX(-7.19518)' fill='%23dcd5c6'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(86.538 2792.33) rotate(90) skewX(-7.19316)' fill='%23ccb7b3'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(93.003 2793.14) rotate(90) skewX(-7.19518)' fill='%23d8b590'/%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.334' fill='%23000000'%3E%3Cg id='Group_11'%3E%3Cpath d='M 69.685,2795.62 C 69.641,2795.63 69.6,2795.65 69.566,2795.69 C 69.533,2795.72 69.507,2795.75 69.487,2795.8 C 69.468,2795.84 69.458,2795.89 69.458,2795.94 L 69.458,2796.59 C 69.458,2796.64 69.468,2796.69 69.487,2796.74 C 69.507,2796.79 69.533,2796.83 69.566,2796.87 C 69.6,2796.91 69.641,2796.94 69.685,2796.97 C 69.73,2796.99 69.779,2797.01 69.83,2797.01 L 70.845,2797.14 L 70.845,2796.88 L 69.83,2796.76 C 69.807,2796.76 69.786,2796.75 69.766,2796.74 C 69.747,2796.72 69.732,2796.7 69.721,2796.68 C 69.711,2796.66 69.705,2796.64 69.705,2796.62 L 69.705,2796.49 L 70.597,2796.59 L 70.597,2796.34 L 69.705,2796.24 L 69.705,2795.97 C 69.705,2795.95 69.711,2795.93 69.721,2795.91 C 69.732,2795.89 69.747,2795.88 69.766,2795.87 C 69.786,2795.86 69.807,2795.85 69.83,2795.86 L 70.845,2795.98 L 70.845,2795.73 L 69.83,2795.61 C 69.779,2795.6 69.73,2795.6 69.685,2795.62 Z M 71.289,2795.83 C 71.245,2795.84 71.207,2795.87 71.171,2795.9 C 71.137,2795.93 71.109,2795.97 71.088,2796.01 C 71.072,2796.03 71.062,2796.06 71.054,2796.1 C 71.047,2796.13 71.043,2796.16 71.043,2796.2 L 71.043,2797.16 L 71.289,2797.19 L 71.289,2796.2 C 71.294,2796.18 71.304,2796.15 71.32,2796.13 C 71.337,2796.1 71.356,2796.09 71.379,2796.07 C 71.403,2796.06 71.43,2796.05 71.46,2796.05 L 72.188,2796.14 L 72.188,2795.89 L 71.484,2795.8 L 71.382,2795.8 C 71.349,2795.8 71.32,2795.81 71.289,2795.83 Z M 72.613,2795.97 C 72.569,2795.98 72.531,2796.01 72.496,2796.03 C 72.462,2796.06 72.435,2796.1 72.415,2796.15 C 72.396,2796.19 72.387,2796.24 72.386,2796.29 L 72.386,2796.94 C 72.387,2796.99 72.396,2797.04 72.415,2797.09 C 72.435,2797.14 72.462,2797.18 72.496,2797.22 C 72.531,2797.26 72.569,2797.29 72.613,2797.32 C 72.66,2797.34 72.707,2797.36 72.76,2797.36 L 73.773,2797.48 L 73.773,2797.23 L 72.76,2797.11 C 72.737,2797.11 72.715,2797.1 72.696,2797.09 C 72.677,2797.07 72.662,2797.06 72.649,2797.04 C 72.639,2797.01 72.633,2796.99 72.633,2796.97 L 72.633,2796.84 L 73.526,2796.94 L 73.526,2796.69 L 72.633,2796.59 L 72.633,2796.32 C 72.633,2796.3 72.639,2796.28 72.649,2796.26 C 72.662,2796.24 72.677,2796.23 72.696,2796.22 C 72.715,2796.21 72.737,2796.2 72.76,2796.21 L 73.773,2796.33 L 73.773,2796.08 L 72.76,2795.95 L 72.683,2795.95 C 72.66,2795.96 72.636,2795.96 72.613,2795.97 Z M 73.971,2796.1 L 73.971,2797.51 L 74.219,2797.34 L 74.667,2797.05 L 75.114,2797.45 L 75.361,2797.67 L 75.361,2796.26 L 75.114,2796.24 L 75.114,2797.13 L 74.869,2796.92 L 74.667,2796.73 L 74.464,2796.87 L 74.219,2797.03 L 74.219,2796.13 L 73.971,2796.1 Z M 75.788,2796.35 C 75.744,2796.36 75.703,2796.38 75.669,2796.41 C 75.635,2796.45 75.609,2796.48 75.59,2796.52 C 75.572,2796.57 75.561,2796.62 75.561,2796.67 L 75.561,2797.32 C 75.561,2797.37 75.572,2797.42 75.59,2797.47 C 75.609,2797.52 75.635,2797.56 75.669,2797.6 C 75.703,2797.64 75.744,2797.67 75.788,2797.7 C 75.833,2797.72 75.882,2797.74 75.933,2797.74 L 76.947,2797.86 L 76.947,2797.61 L 75.933,2797.49 C 75.909,2797.49 75.888,2797.48 75.869,2797.47 C 75.849,2797.45 75.834,2797.43 75.824,2797.41 C 75.814,2797.39 75.807,2797.37 75.807,2797.35 L 75.807,2797.22 L 76.699,2797.32 L 76.699,2797.07 L 75.807,2796.97 L 75.807,2796.7 C 75.807,2796.68 75.814,2796.65 75.824,2796.64 C 75.834,2796.62 75.849,2796.61 75.869,2796.59 C 75.888,2796.59 75.909,2796.58 75.933,2796.59 L 76.947,2796.71 L 76.947,2796.45 L 75.933,2796.33 L 75.856,2796.33 C 75.833,2796.34 75.809,2796.34 75.788,2796.35 Z M 77.145,2796.48 L 77.145,2797.88 L 77.392,2797.72 L 78.286,2797.13 L 78.286,2798.03 L 78.535,2798.05 L 78.535,2796.64 L 78.286,2796.81 L 77.392,2797.4 L 77.392,2796.51 L 77.145,2796.48 Z M 79.301,2796.74 L 79.301,2797.89 L 78.733,2797.82 L 78.733,2798.08 L 80.121,2798.24 L 80.121,2797.99 L 79.55,2797.92 L 79.55,2796.76 L 79.301,2796.74 Z M 80.588,2796.92 C 80.536,2796.94 80.49,2796.97 80.451,2797 C 80.41,2797.04 80.378,2797.08 80.356,2797.13 C 80.333,2797.18 80.323,2797.24 80.321,2797.3 L 80.57,2797.33 C 80.57,2797.3 80.577,2797.26 80.596,2797.24 C 80.612,2797.21 80.636,2797.19 80.663,2797.18 C 80.693,2797.16 80.725,2797.16 80.759,2797.16 L 81.196,2797.21 C 81.229,2797.22 81.263,2797.23 81.291,2797.25 C 81.321,2797.27 81.343,2797.3 81.361,2797.33 C 81.379,2797.36 81.387,2797.39 81.387,2797.43 C 81.387,2797.47 81.379,2797.5 81.361,2797.52 C 81.343,2797.55 81.321,2797.57 81.291,2797.58 C 81.263,2797.6 81.229,2797.6 81.196,2797.6 L 80.695,2797.54 C 80.644,2797.53 80.596,2797.54 80.553,2797.55 C 80.507,2797.57 80.467,2797.59 80.435,2797.62 C 80.415,2797.63 80.401,2797.65 80.386,2797.67 C 80.365,2797.7 80.35,2797.73 80.338,2797.76 C 80.327,2797.8 80.321,2797.84 80.321,2797.88 L 80.321,2797.89 C 80.323,2797.94 80.331,2797.99 80.35,2798.04 C 80.37,2798.09 80.397,2798.13 80.431,2798.17 C 80.466,2798.21 80.504,2798.24 80.548,2798.26 C 80.592,2798.29 80.642,2798.31 80.695,2798.31 L 81.259,2798.38 C 81.31,2798.38 81.359,2798.38 81.403,2798.37 C 81.449,2798.35 81.489,2798.33 81.523,2798.3 C 81.557,2798.27 81.585,2798.23 81.603,2798.19 C 81.623,2798.14 81.634,2798.1 81.634,2798.04 L 81.634,2798.03 L 81.384,2798 L 81.384,2798.01 C 81.384,2798.03 81.379,2798.06 81.368,2798.07 C 81.357,2798.09 81.34,2798.11 81.322,2798.11 C 81.304,2798.12 81.282,2798.13 81.259,2798.12 L 80.695,2798.06 C 80.672,2798.05 80.651,2798.05 80.631,2798.03 C 80.612,2798.02 80.597,2798 80.585,2797.98 C 80.574,2797.96 80.567,2797.94 80.567,2797.91 L 80.567,2797.91 C 80.567,2797.88 80.574,2797.86 80.585,2797.84 C 80.597,2797.82 80.612,2797.81 80.631,2797.8 C 80.651,2797.79 80.672,2797.79 80.695,2797.79 L 81.196,2797.85 L 81.287,2797.85 C 81.316,2797.85 81.347,2797.84 81.374,2797.83 C 81.429,2797.81 81.478,2797.79 81.519,2797.75 C 81.52,2797.74 81.523,2797.74 81.525,2797.74 C 81.529,2797.74 81.531,2797.73 81.533,2797.73 C 81.565,2797.7 81.589,2797.65 81.606,2797.61 C 81.625,2797.56 81.634,2797.51 81.634,2797.46 C 81.634,2797.4 81.62,2797.34 81.599,2797.28 C 81.575,2797.23 81.544,2797.18 81.504,2797.13 C 81.465,2797.08 81.418,2797.05 81.366,2797.02 C 81.312,2796.99 81.255,2796.97 81.196,2796.96 L 80.759,2796.91 C 80.699,2796.9 80.642,2796.91 80.588,2796.92 Z M 83.067,2797.22 C 83.014,2797.24 82.968,2797.26 82.93,2797.3 C 82.889,2797.34 82.857,2797.38 82.834,2797.43 C 82.813,2797.48 82.8,2797.54 82.8,2797.6 L 83.049,2797.63 C 83.049,2797.59 83.056,2797.56 83.074,2797.53 C 83.092,2797.51 83.115,2797.49 83.142,2797.47 C 83.172,2797.46 83.203,2797.45 83.238,2797.46 L 83.675,2797.51 C 83.708,2797.51 83.741,2797.53 83.77,2797.55 C 83.8,2797.57 83.821,2797.6 83.84,2797.63 C 83.857,2797.66 83.866,2797.69 83.866,2797.73 C 83.866,2797.76 83.857,2797.79 83.84,2797.82 C 83.821,2797.85 83.8,2797.87 83.77,2797.88 C 83.741,2797.9 83.708,2797.9 83.675,2797.9 L 83.174,2797.84 C 83.123,2797.83 83.074,2797.84 83.032,2797.85 C 82.986,2797.86 82.946,2797.88 82.912,2797.91 C 82.895,2797.93 82.881,2797.95 82.865,2797.97 C 82.844,2797.99 82.829,2798.03 82.817,2798.06 C 82.806,2798.1 82.8,2798.13 82.8,2798.17 L 82.8,2798.18 C 82.8,2798.24 82.81,2798.29 82.829,2798.33 C 82.849,2798.38 82.876,2798.43 82.91,2798.46 C 82.944,2798.5 82.983,2798.53 83.027,2798.56 C 83.072,2798.58 83.121,2798.6 83.174,2798.61 L 83.736,2798.67 C 83.789,2798.68 83.838,2798.68 83.882,2798.66 C 83.927,2798.65 83.968,2798.63 84.002,2798.59 C 84.036,2798.56 84.064,2798.53 84.083,2798.48 C 84.102,2798.44 84.113,2798.39 84.113,2798.34 L 84.113,2798.33 L 83.864,2798.3 L 83.864,2798.31 C 83.864,2798.33 83.857,2798.35 83.846,2798.37 C 83.836,2798.39 83.818,2798.4 83.8,2798.41 C 83.78,2798.42 83.759,2798.42 83.736,2798.42 L 83.174,2798.36 C 83.151,2798.35 83.13,2798.34 83.11,2798.33 C 83.092,2798.31 83.074,2798.3 83.063,2798.28 C 83.053,2798.26 83.046,2798.23 83.046,2798.21 L 83.046,2798.2 C 83.046,2798.18 83.053,2798.16 83.063,2798.14 C 83.074,2798.12 83.092,2798.11 83.11,2798.1 C 83.13,2798.09 83.151,2798.09 83.174,2798.09 L 83.675,2798.15 L 83.765,2798.15 C 83.796,2798.14 83.826,2798.14 83.853,2798.13 C 83.908,2798.11 83.957,2798.08 83.997,2798.04 C 84,2798.04 84.002,2798.03 84.004,2798.03 C 84.006,2798.03 84.01,2798.03 84.012,2798.03 C 84.044,2797.99 84.068,2797.95 84.085,2797.9 C 84.102,2797.86 84.113,2797.81 84.113,2797.75 C 84.11,2797.69 84.099,2797.64 84.076,2797.58 C 84.055,2797.52 84.023,2797.47 83.983,2797.43 C 83.942,2797.38 83.898,2797.34 83.844,2797.31 C 83.791,2797.28 83.734,2797.26 83.675,2797.26 L 83.238,2797.2 C 83.178,2797.2 83.121,2797.2 83.067,2797.22 Z M 84.54,2797.39 C 84.496,2797.41 84.457,2797.43 84.423,2797.46 C 84.389,2797.49 84.362,2797.53 84.342,2797.57 C 84.323,2797.61 84.312,2797.66 84.312,2797.72 L 84.312,2798.36 C 84.312,2798.42 84.323,2798.47 84.342,2798.51 C 84.362,2798.56 84.389,2798.61 84.423,2798.64 C 84.457,2798.68 84.496,2798.72 84.54,2798.74 C 84.584,2798.76 84.634,2798.78 84.687,2798.79 L 85.7,2798.91 L 85.7,2798.66 L 84.687,2798.54 C 84.664,2798.53 84.643,2798.52 84.623,2798.51 C 84.604,2798.5 84.588,2798.48 84.577,2798.46 C 84.566,2798.44 84.559,2798.42 84.559,2798.39 L 84.559,2798.26 L 85.453,2798.37 L 85.453,2798.12 L 84.559,2798.01 L 84.559,2797.74 C 84.559,2797.72 84.566,2797.7 84.577,2797.68 C 84.588,2797.66 84.604,2797.65 84.623,2797.64 C 84.643,2797.63 84.664,2797.63 84.687,2797.63 L 85.7,2797.75 L 85.7,2797.5 L 84.687,2797.38 C 84.634,2797.37 84.584,2797.38 84.54,2797.39 Z M 85.895,2797.52 L 85.895,2798.93 L 86.772,2799.03 C 86.826,2799.04 86.875,2799.04 86.919,2799.02 C 86.963,2799.01 87.003,2798.98 87.037,2798.95 C 87.07,2798.92 87.098,2798.89 87.117,2798.84 C 87.136,2798.8 87.147,2798.75 87.147,2798.7 C 87.147,2798.65 87.136,2798.6 87.119,2798.55 C 87.1,2798.51 87.074,2798.46 87.043,2798.42 C 87.009,2798.38 86.971,2798.35 86.928,2798.33 C 86.894,2798.31 86.86,2798.29 86.821,2798.28 L 87.019,2797.91 L 87.147,2797.67 L 86.868,2797.64 L 86.74,2797.87 L 86.609,2798.12 L 86.602,2798.13 C 86.581,2798.17 86.551,2798.19 86.514,2798.21 C 86.479,2798.23 86.438,2798.23 86.392,2798.23 L 86.145,2798.2 L 86.145,2797.55 L 85.895,2797.52 Z M 87.345,2797.7 L 87.345,2799.11 L 87.593,2799.14 L 87.593,2797.73 L 87.345,2797.7 Z M 88.021,2797.81 C 87.976,2797.82 87.937,2797.84 87.902,2797.88 C 87.869,2797.91 87.843,2797.94 87.824,2797.99 C 87.804,2798.03 87.794,2798.08 87.794,2798.13 L 87.794,2798.78 C 87.794,2798.83 87.804,2798.88 87.824,2798.93 C 87.843,2798.98 87.869,2799.02 87.902,2799.06 C 87.937,2799.1 87.976,2799.13 88.021,2799.16 C 88.067,2799.18 88.116,2799.2 88.166,2799.2 L 89.181,2799.33 L 89.181,2799.07 L 88.166,2798.95 C 88.143,2798.95 88.122,2798.94 88.102,2798.93 C 88.083,2798.91 88.068,2798.9 88.057,2798.88 C 88.045,2798.85 88.041,2798.83 88.038,2798.81 L 88.038,2798.68 L 88.932,2798.78 L 88.932,2798.53 L 88.038,2798.43 L 88.038,2798.16 C 88.041,2798.14 88.045,2798.12 88.057,2798.1 C 88.068,2798.08 88.083,2798.06 88.102,2798.06 C 88.122,2798.05 88.143,2798.04 88.166,2798.05 L 89.181,2798.17 L 89.181,2797.92 L 88.166,2797.8 C 88.116,2797.79 88.067,2797.79 88.021,2797.81 Z M 89.647,2798.01 C 89.596,2798.02 89.549,2798.05 89.509,2798.09 C 89.468,2798.12 89.436,2798.17 89.415,2798.22 C 89.392,2798.27 89.381,2798.32 89.381,2798.38 L 89.628,2798.41 C 89.628,2798.38 89.637,2798.35 89.653,2798.32 C 89.671,2798.29 89.694,2798.27 89.723,2798.26 C 89.751,2798.25 89.783,2798.24 89.819,2798.24 L 90.253,2798.3 C 90.289,2798.3 90.322,2798.31 90.349,2798.33 C 90.379,2798.36 90.403,2798.38 90.419,2798.41 C 90.436,2798.44 90.445,2798.48 90.445,2798.51 C 90.445,2798.55 90.436,2798.58 90.419,2798.61 C 90.403,2798.63 90.379,2798.65 90.349,2798.67 C 90.322,2798.68 90.289,2798.69 90.253,2798.68 L 89.754,2798.62 C 89.702,2798.62 89.655,2798.62 89.611,2798.63 C 89.566,2798.65 89.528,2798.67 89.494,2798.7 C 89.475,2798.72 89.46,2798.73 89.445,2798.75 C 89.426,2798.78 89.409,2798.81 89.398,2798.85 C 89.386,2798.88 89.381,2798.92 89.381,2798.96 L 89.381,2798.97 C 89.381,2799.02 89.39,2799.07 89.409,2799.12 C 89.428,2799.17 89.456,2799.21 89.49,2799.25 C 89.523,2799.29 89.562,2799.32 89.609,2799.35 C 89.653,2799.37 89.702,2799.39 89.754,2799.39 L 90.317,2799.46 C 90.369,2799.47 90.418,2799.46 90.462,2799.45 C 90.506,2799.43 90.547,2799.41 90.581,2799.38 C 90.615,2799.35 90.643,2799.31 90.662,2799.27 C 90.682,2799.22 90.692,2799.18 90.692,2799.13 L 90.692,2799.12 L 90.444,2799.08 L 90.444,2799.09 C 90.444,2799.12 90.439,2799.14 90.425,2799.16 C 90.415,2799.17 90.401,2799.19 90.381,2799.2 C 90.363,2799.2 90.341,2799.21 90.317,2799.21 L 89.754,2799.14 C 89.73,2799.14 89.709,2799.13 89.689,2799.11 C 89.671,2799.1 89.655,2799.08 89.642,2799.06 C 89.632,2799.04 89.626,2799.02 89.626,2798.99 L 89.626,2798.99 C 89.626,2798.96 89.632,2798.94 89.642,2798.92 C 89.655,2798.91 89.671,2798.89 89.689,2798.89 C 89.709,2798.87 89.73,2798.87 89.754,2798.87 L 90.253,2798.93 C 90.317,2798.94 90.379,2798.93 90.435,2798.92 C 90.49,2798.9 90.537,2798.87 90.576,2798.83 C 90.58,2798.83 90.583,2798.82 90.586,2798.82 C 90.587,2798.82 90.59,2798.81 90.592,2798.81 C 90.624,2798.78 90.647,2798.74 90.667,2798.69 C 90.683,2798.64 90.692,2798.59 90.692,2798.54 C 90.692,2798.48 90.679,2798.42 90.657,2798.36 C 90.635,2798.31 90.602,2798.26 90.565,2798.21 C 90.524,2798.17 90.477,2798.13 90.424,2798.1 C 90.37,2798.07 90.315,2798.05 90.253,2798.04 L 89.819,2797.99 C 89.758,2797.99 89.7,2797.99 89.647,2798.01 Z M 86.145,2798.45 L 86.772,2798.52 C 86.783,2798.52 86.792,2798.53 86.8,2798.53 C 86.809,2798.53 86.816,2798.54 86.826,2798.54 C 86.849,2798.56 86.866,2798.57 86.879,2798.6 C 86.894,2798.62 86.901,2798.64 86.901,2798.67 C 86.901,2798.69 86.896,2798.71 86.887,2798.72 C 86.879,2798.74 86.87,2798.75 86.862,2798.76 C 86.855,2798.76 86.842,2798.77 86.827,2798.78 C 86.82,2798.78 86.811,2798.78 86.802,2798.78 L 86.772,2798.78 L 86.145,2798.71 L 86.145,2798.45 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--CHARACTER, .KN95_NR_small_individuals--CHARACTER {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='139.942 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.889' y2='69.196' gradientTransform='translate(184.018 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.715' y2='69.451' gradientTransform='translate(171.681 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.4' y2='7.324' gradientTransform='translate(183.997 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.416' y2='-0.8' gradientTransform='translate(167.702 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.037' y2='-0.57' gradientTransform='translate(213.001 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.57' y2='0' gradientTransform='translate(174.147 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(198.27 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 173.861,2776.57 L 173.861,2858.45 L 234.691,2862.36 C 234.733,2862.31 234.766,2862.24 234.766,2862.15 L 234.766,2784.82 L 173.861,2776.57 Z' stroke-width='8.03' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 173.861,2776.57 L 161.785,2788.29 L 161.78,2865.07 L 173.861,2858.45 L 173.861,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 173.861,2858.45 L 161.78,2865.07 L 220.813,2868.31 L 234.562,2862.45 C 234.608,2862.43 234.654,2862.4 234.691,2862.36 L 173.861,2858.45 Z' stroke-width='1.027' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 173.558,2857.52 L 161.775,2864.11 L 161.773,2865.07 L 173.558,2858.62 L 173.558,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 190.732,2819.56 L 190.723,2826.71 L 191.904,2826.83 L 191.91,2823.18 L 192.884,2824.24 L 193.761,2825.19 L 195.601,2827.21 L 197.353,2827.39 L 194.464,2824.22 L 197.336,2820.23 L 195.879,2820.09 L 193.587,2823.26 L 191.913,2821.45 L 191.913,2819.68 L 190.732,2819.56 Z M 197.939,2820.29 L 198.544,2821.63 L 201.307,2827.79 L 204.088,2822.2 L 204.69,2820.98 L 203.371,2820.85 L 202.763,2822.06 L 201.312,2824.98 L 199.865,2821.77 L 199.261,2820.43 L 197.939,2820.29 Z M 205.289,2821.04 L 205.299,2821.04 L 206.206,2822.41 L 207.827,2824.86 L 208.578,2825.98 L 209.48,2827.35 L 205.273,2826.92 L 205.271,2828.19 L 210.389,2828.71 L 211.87,2828.86 L 210.957,2827.49 L 209.315,2825.01 L 208.571,2823.89 L 207.677,2822.56 L 211.907,2822.99 L 211.91,2821.71 L 206.79,2821.19 L 206.781,2821.19 L 205.289,2821.04 Z M 213.921,2822.07 C 213.708,2822.15 213.514,2822.27 213.358,2822.43 C 213.192,2822.59 213.063,2822.78 212.976,2823 C 212.883,2823.23 212.838,2823.47 212.836,2823.74 L 212.829,2827.03 C 212.829,2827.3 212.874,2827.55 212.968,2827.79 C 213.057,2828.04 213.183,2828.25 213.351,2828.45 C 213.508,2828.64 213.7,2828.8 213.912,2828.92 C 214.128,2829.04 214.359,2829.12 214.606,2829.14 L 219.438,2829.63 L 219.438,2828.36 L 214.606,2827.86 C 214.493,2827.85 214.393,2827.81 214.301,2827.74 C 214.21,2827.68 214.142,2827.59 214.087,2827.49 C 214.032,2827.38 214.006,2827.27 214.006,2827.15 L 214.006,2826.49 L 218.26,2826.92 L 218.262,2825.64 L 214.006,2825.21 L 214.006,2823.86 C 214.006,2823.74 214.036,2823.63 214.091,2823.54 C 214.149,2823.45 214.216,2823.37 214.306,2823.33 C 214.4,2823.27 214.497,2823.26 214.613,2823.26 L 219.445,2823.76 L 219.447,2822.48 L 214.613,2821.99 C 214.37,2821.97 214.138,2821.99 213.921,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 197.717,2815.76 L 197.717,2817.28 C 197.717,2817.36 197.73,2817.43 197.757,2817.51 C 197.785,2817.58 197.825,2817.64 197.877,2817.7 C 197.928,2817.76 197.987,2817.8 198.053,2817.84 C 198.121,2817.87 198.194,2817.9 198.273,2817.9 L 199.781,2818.07 L 199.781,2817.69 L 198.273,2817.53 C 198.238,2817.53 198.207,2817.51 198.177,2817.49 C 198.149,2817.47 198.127,2817.45 198.109,2817.42 C 198.091,2817.39 198.086,2817.36 198.086,2817.32 L 198.086,2817.13 L 199.413,2817.26 L 199.413,2816.89 L 198.083,2816.75 L 198.086,2815.8 L 197.717,2815.76 Z M 200.082,2816.01 L 200.079,2817.53 C 200.079,2817.61 200.092,2817.68 200.122,2817.76 C 200.147,2817.83 200.187,2817.89 200.237,2817.95 C 200.29,2818 200.349,2818.05 200.416,2818.09 C 200.481,2818.12 200.551,2818.14 200.635,2818.16 L 202.141,2818.31 L 202.143,2817.94 L 200.637,2817.78 C 200.6,2817.78 200.566,2817.76 200.541,2817.75 C 200.511,2817.72 200.49,2817.7 200.47,2817.67 C 200.453,2817.64 200.447,2817.61 200.447,2817.57 L 200.447,2817.38 L 201.775,2817.52 L 201.775,2817.15 L 200.444,2817 L 200.447,2816.04 L 200.082,2816.01 Z M 202.443,2816.26 L 202.439,2818.35 L 203.741,2818.49 C 203.816,2818.49 203.89,2818.49 203.954,2818.46 C 204.022,2818.44 204.082,2818.41 204.133,2818.36 L 204.134,2818.36 C 204.186,2818.31 204.225,2818.26 204.256,2818.19 C 204.281,2818.12 204.299,2818.05 204.299,2817.98 C 204.299,2817.9 204.281,2817.83 204.259,2817.76 C 204.229,2817.69 204.19,2817.62 204.143,2817.57 C 204.094,2817.51 204.039,2817.47 203.975,2817.43 C 203.924,2817.4 203.872,2817.38 203.813,2817.37 C 203.809,2817.37 203.803,2817.37 203.798,2817.37 L 203.798,2817.36 L 202.809,2817.26 L 202.811,2816.3 L 202.443,2816.26 Z M 204.59,2816.47 L 204.59,2817.1 C 204.59,2817.14 204.593,2817.18 204.601,2817.22 C 204.609,2817.26 204.624,2817.3 204.637,2817.34 C 204.669,2817.42 204.712,2817.48 204.764,2817.54 C 204.818,2817.61 204.877,2817.66 204.95,2817.7 C 205.017,2817.73 205.094,2817.76 205.177,2817.77 L 206.06,2817.87 L 206.071,2817.87 C 206.111,2817.88 206.15,2817.89 206.181,2817.92 C 206.214,2817.94 206.239,2817.98 206.258,2818.02 C 206.277,2818.05 206.286,2818.09 206.286,2818.13 C 206.286,2818.18 206.276,2818.22 206.254,2818.26 C 206.233,2818.29 206.207,2818.31 206.169,2818.33 C 206.133,2818.35 206.092,2818.36 206.048,2818.36 L 204.593,2818.2 L 204.593,2818.57 L 206.046,2818.73 C 206.133,2818.74 206.214,2818.73 206.284,2818.7 C 206.356,2818.68 206.42,2818.64 206.48,2818.59 C 206.534,2818.54 206.58,2818.48 206.608,2818.41 C 206.639,2818.34 206.654,2818.26 206.656,2818.17 C 206.656,2818.13 206.652,2818.09 206.643,2818.05 C 206.634,2818.01 206.622,2817.97 206.605,2817.93 C 206.593,2817.89 206.575,2817.86 206.554,2817.82 C 206.534,2817.79 206.51,2817.76 206.484,2817.73 C 206.433,2817.67 206.367,2817.61 206.297,2817.57 C 206.225,2817.53 206.151,2817.51 206.067,2817.49 L 206.059,2817.49 C 206.056,2817.49 206.052,2817.49 206.048,2817.49 L 205.177,2817.4 C 205.137,2817.39 205.101,2817.38 205.067,2817.35 C 205.033,2817.33 205.007,2817.29 204.99,2817.26 C 204.969,2817.22 204.963,2817.18 204.963,2817.14 L 204.963,2816.9 L 206.648,2817.07 L 206.65,2816.7 L 205.194,2816.54 L 204.59,2816.47 Z M 208.39,2816.88 L 208.389,2818.96 L 208.756,2818.72 L 210.086,2817.82 L 210.084,2819.15 L 210.453,2819.19 L 210.457,2817.1 L 210.086,2817.35 L 208.756,2818.24 L 208.76,2816.92 L 208.39,2816.88 Z M 210.751,2817.14 L 210.748,2819.22 L 212.053,2819.36 C 212.128,2819.37 212.199,2819.37 212.266,2819.34 C 212.336,2819.32 212.393,2819.28 212.445,2819.24 C 212.493,2819.19 212.533,2819.14 212.563,2819.07 C 212.592,2819 212.606,2818.93 212.607,2818.86 C 212.607,2818.78 212.592,2818.71 212.566,2818.63 C 212.537,2818.57 212.499,2818.5 212.45,2818.45 C 212.404,2818.39 212.346,2818.35 212.285,2818.3 C 212.233,2818.28 212.179,2818.26 212.123,2818.24 L 212.42,2817.68 L 212.61,2817.33 L 212.198,2817.29 L 212.007,2817.64 L 211.808,2818.01 L 211.799,2818.03 C 211.767,2818.08 211.725,2818.12 211.668,2818.14 C 211.614,2818.17 211.553,2818.18 211.484,2818.17 L 211.119,2818.13 L 211.12,2817.17 L 210.751,2817.14 Z M 202.809,2817.62 L 203.746,2817.72 C 203.756,2817.72 203.769,2817.73 203.784,2817.73 C 203.796,2817.74 203.807,2817.74 203.82,2817.75 L 203.82,2817.75 C 203.854,2817.77 203.883,2817.8 203.901,2817.83 C 203.922,2817.86 203.931,2817.9 203.931,2817.93 C 203.931,2817.97 203.924,2818 203.912,2818.02 C 203.898,2818.04 203.887,2818.06 203.877,2818.07 C 203.863,2818.08 203.846,2818.09 203.824,2818.1 C 203.803,2818.11 203.776,2818.11 203.746,2818.11 L 202.809,2818.01 L 202.809,2817.62 Z M 211.119,2818.5 L 212.054,2818.6 C 212.065,2818.6 212.079,2818.61 212.093,2818.61 C 212.106,2818.62 212.116,2818.62 212.128,2818.63 C 212.163,2818.65 212.191,2818.68 212.208,2818.71 C 212.231,2818.74 212.242,2818.78 212.242,2818.82 C 212.238,2818.85 212.233,2818.88 212.219,2818.9 C 212.206,2818.92 212.198,2818.94 212.184,2818.95 C 212.172,2818.96 212.154,2818.97 212.133,2818.98 C 212.11,2818.99 212.084,2818.99 212.053,2818.99 L 211.116,2818.89 L 211.119,2818.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 191.14,2811.59 L 191.138,2812.97 L 191.983,2813.06 C 192.034,2813.07 192.084,2813.06 192.125,2813.05 C 192.165,2813.03 192.209,2813.01 192.239,2812.98 L 192.24,2812.98 C 192.276,2812.94 192.3,2812.91 192.319,2812.87 C 192.336,2812.82 192.349,2812.78 192.349,2812.72 C 192.349,2812.67 192.338,2812.62 192.321,2812.58 C 192.304,2812.53 192.28,2812.49 192.246,2812.45 C 192.217,2812.41 192.179,2812.38 192.137,2812.36 C 192.104,2812.34 192.07,2812.32 192.034,2812.32 C 192.029,2812.32 192.025,2812.32 192.023,2812.32 L 192.023,2812.32 L 191.38,2812.25 L 191.383,2811.61 L 191.14,2811.59 Z M 192.538,2811.73 L 192.536,2813.11 L 193.384,2813.2 C 193.439,2813.21 193.483,2813.2 193.525,2813.19 C 193.57,2813.17 193.604,2813.15 193.638,2813.12 C 193.671,2813.09 193.696,2813.05 193.721,2813.01 C 193.736,2812.97 193.745,2812.92 193.747,2812.87 C 193.745,2812.82 193.736,2812.77 193.723,2812.72 C 193.697,2812.68 193.676,2812.64 193.645,2812.6 C 193.61,2812.56 193.579,2812.53 193.536,2812.51 C 193.502,2812.49 193.468,2812.47 193.434,2812.46 L 193.623,2812.09 L 193.747,2811.85 L 193.48,2811.82 L 193.355,2812.06 L 193.227,2812.31 L 193.222,2812.32 C 193.2,2812.35 193.17,2812.38 193.136,2812.4 C 193.097,2812.41 193.061,2812.42 193.019,2812.41 L 192.776,2812.39 L 192.776,2811.75 L 192.538,2811.73 Z M 194.301,2811.97 C 194.226,2811.99 194.153,2812.04 194.093,2812.09 C 194.027,2812.15 193.978,2812.22 193.947,2812.3 C 193.913,2812.38 193.896,2812.47 193.892,2812.57 C 193.896,2812.66 193.913,2812.75 193.944,2812.84 C 193.978,2812.93 194.027,2813.01 194.091,2813.08 C 194.151,2813.15 194.223,2813.2 194.3,2813.25 C 194.383,2813.29 194.47,2813.32 194.564,2813.33 C 194.655,2813.34 194.744,2813.33 194.828,2813.3 C 194.905,2813.27 194.979,2813.24 195.038,2813.18 C 195.102,2813.12 195.152,2813.05 195.183,2812.97 C 195.217,2812.89 195.236,2812.8 195.236,2812.7 C 195.236,2812.61 195.219,2812.52 195.183,2812.43 C 195.152,2812.34 195.104,2812.27 195.04,2812.2 C 194.98,2812.12 194.906,2812.07 194.83,2812.02 C 194.744,2811.98 194.657,2811.95 194.566,2811.94 L 194.432,2811.94 C 194.385,2811.95 194.345,2811.95 194.301,2811.97 Z M 195.932,2812.08 L 195.93,2813.22 L 195.38,2813.17 L 195.38,2813.41 L 196.719,2813.55 L 196.719,2813.3 L 196.175,2813.25 L 196.177,2812.11 L 195.932,2812.08 Z M 194.566,2812.19 C 194.623,2812.2 194.68,2812.21 194.734,2812.24 C 194.789,2812.27 194.834,2812.31 194.87,2812.35 C 194.909,2812.4 194.94,2812.45 194.966,2812.51 C 194.985,2812.56 194.997,2812.62 194.997,2812.68 C 194.997,2812.74 194.985,2812.8 194.964,2812.85 C 194.94,2812.9 194.909,2812.95 194.87,2812.98 C 194.831,2813.02 194.787,2813.05 194.732,2813.06 C 194.679,2813.08 194.623,2813.09 194.564,2813.08 C 194.506,2813.08 194.448,2813.06 194.396,2813.03 C 194.345,2813 194.296,2812.97 194.257,2812.92 C 194.221,2812.87 194.189,2812.83 194.166,2812.76 C 194.149,2812.71 194.135,2812.65 194.135,2812.59 C 194.135,2812.53 194.149,2812.47 194.166,2812.42 C 194.189,2812.37 194.223,2812.32 194.26,2812.29 C 194.297,2812.25 194.347,2812.22 194.396,2812.21 C 194.448,2812.19 194.508,2812.18 194.566,2812.19 Z M 197.136,2812.24 C 197.098,2812.25 197.06,2812.27 197.023,2812.31 C 196.992,2812.34 196.966,2812.37 196.947,2812.42 C 196.93,2812.46 196.922,2812.51 196.922,2812.56 L 196.919,2813.2 C 196.922,2813.25 196.926,2813.3 196.945,2813.35 C 196.966,2813.4 196.989,2813.43 197.023,2813.47 C 197.057,2813.51 197.094,2813.54 197.136,2813.57 C 197.181,2813.59 197.228,2813.61 197.277,2813.61 L 198.26,2813.71 L 198.26,2813.47 L 197.277,2813.36 C 197.255,2813.36 197.234,2813.35 197.214,2813.34 C 197.2,2813.33 197.183,2813.31 197.173,2813.29 C 197.162,2813.27 197.155,2813.24 197.155,2813.22 L 197.155,2813.1 L 198.019,2813.18 L 198.019,2812.93 L 197.155,2812.85 L 197.16,2812.59 C 197.16,2812.56 197.162,2812.54 197.174,2812.52 C 197.185,2812.51 197.202,2812.49 197.218,2812.48 C 197.239,2812.47 197.258,2812.47 197.277,2812.47 L 198.262,2812.57 L 198.262,2812.32 L 197.279,2812.22 C 197.23,2812.22 197.183,2812.22 197.136,2812.24 Z M 198.838,2812.44 C 198.76,2812.47 198.691,2812.51 198.63,2812.57 C 198.566,2812.62 198.518,2812.69 198.483,2812.77 C 198.449,2812.85 198.43,2812.94 198.43,2813.03 C 198.43,2813.13 198.449,2813.22 198.483,2813.31 C 198.515,2813.4 198.564,2813.47 198.63,2813.55 C 198.691,2813.62 198.76,2813.67 198.838,2813.72 C 198.922,2813.76 199.009,2813.79 199.103,2813.8 L 199.77,2813.87 L 199.77,2813.62 L 199.103,2813.55 C 199.043,2813.55 198.985,2813.53 198.934,2813.5 C 198.883,2813.47 198.834,2813.43 198.794,2813.39 C 198.757,2813.34 198.727,2813.3 198.702,2813.24 C 198.686,2813.18 198.67,2813.12 198.67,2813.06 C 198.67,2813 198.686,2812.94 198.705,2812.89 C 198.727,2812.84 198.757,2812.8 198.796,2812.76 C 198.836,2812.72 198.886,2812.7 198.936,2812.68 C 198.985,2812.66 199.043,2812.65 199.104,2812.66 L 199.773,2812.73 L 199.773,2812.48 L 199.104,2812.41 L 198.969,2812.41 C 198.923,2812.41 198.883,2812.42 198.838,2812.44 Z M 191.38,2812.5 L 191.987,2812.56 C 191.997,2812.56 192.008,2812.56 192.014,2812.56 C 192.023,2812.57 192.029,2812.57 192.04,2812.58 C 192.058,2812.59 192.078,2812.6 192.093,2812.63 C 192.104,2812.65 192.108,2812.67 192.108,2812.7 C 192.108,2812.72 192.104,2812.74 192.097,2812.75 C 192.092,2812.77 192.081,2812.78 192.074,2812.78 C 192.066,2812.79 192.055,2812.8 192.042,2812.8 C 192.025,2812.81 192.01,2812.82 191.987,2812.81 L 191.38,2812.75 L 191.38,2812.5 Z M 200.516,2812.56 L 200.516,2813.7 L 199.965,2813.64 L 199.965,2813.89 L 201.307,2814.03 L 201.307,2813.78 L 200.756,2813.72 L 200.756,2812.58 L 200.516,2812.56 Z M 192.776,2812.64 L 193.384,2812.7 C 193.393,2812.7 193.402,2812.7 193.41,2812.7 C 193.421,2812.71 193.427,2812.71 193.439,2812.72 C 193.458,2812.73 193.474,2812.74 193.489,2812.77 C 193.502,2812.79 193.509,2812.82 193.509,2812.84 C 193.509,2812.87 193.502,2812.88 193.495,2812.9 C 193.489,2812.91 193.48,2812.92 193.47,2812.93 C 193.463,2812.93 193.451,2812.94 193.443,2812.95 C 193.425,2812.96 193.404,2812.96 193.384,2812.96 L 192.776,2812.89 L 192.776,2812.64 Z M 201.499,2812.66 L 201.496,2814.05 L 201.741,2814.07 L 201.743,2812.69 L 201.499,2812.66 Z M 202.542,2812.77 L 201.977,2813.85 L 201.851,2814.08 L 202.122,2814.11 L 202.245,2813.88 L 202.539,2813.31 L 202.83,2813.94 L 202.956,2814.2 L 203.222,2814.23 L 203.099,2813.97 L 202.542,2812.77 Z M 203.564,2812.9 C 203.522,2812.92 203.483,2812.94 203.452,2812.97 C 203.418,2813 203.39,2813.04 203.375,2813.08 C 203.354,2813.12 203.343,2813.17 203.343,2813.22 L 203.343,2813.87 C 203.343,2813.92 203.352,2813.97 203.373,2814.01 C 203.388,2814.06 203.415,2814.1 203.45,2814.14 C 203.482,2814.18 203.52,2814.21 203.563,2814.23 C 203.605,2814.26 203.655,2814.27 203.705,2814.28 L 204.682,2814.38 L 204.682,2814.13 L 203.705,2814.03 C 203.677,2814.03 203.658,2814.02 203.639,2814.01 C 203.621,2813.99 203.609,2813.98 203.596,2813.95 C 203.586,2813.94 203.58,2813.91 203.58,2813.89 L 203.58,2813.76 L 204.447,2813.85 L 204.447,2813.61 L 203.581,2813.52 L 203.581,2813.25 C 203.581,2813.23 203.588,2813.21 203.599,2813.19 C 203.609,2813.17 203.621,2813.15 203.643,2813.15 C 203.66,2813.14 203.68,2813.13 203.707,2813.14 L 204.684,2813.24 L 204.684,2812.99 L 203.707,2812.89 C 203.656,2812.88 203.607,2812.89 203.564,2812.9 Z M 205.807,2813.1 L 205.805,2814.49 L 206.652,2814.58 C 206.703,2814.59 206.75,2814.58 206.795,2814.57 C 206.839,2814.55 206.876,2814.53 206.91,2814.5 C 206.943,2814.47 206.967,2814.43 206.988,2814.38 C 207.003,2814.34 207.014,2814.3 207.014,2814.24 C 207.014,2814.19 207.006,2814.14 206.991,2814.1 C 206.972,2814.05 206.947,2814.01 206.916,2813.97 C 206.884,2813.94 206.85,2813.91 206.806,2813.88 C 206.776,2813.86 206.735,2813.85 206.701,2813.84 L 206.897,2813.46 L 207.016,2813.23 L 206.746,2813.2 L 206.626,2813.43 L 206.499,2813.68 L 206.493,2813.69 C 206.472,2813.72 206.442,2813.75 206.403,2813.77 C 206.369,2813.79 206.331,2813.8 206.29,2813.79 L 206.046,2813.76 L 206.048,2813.13 L 205.807,2813.1 Z M 207.433,2813.3 C 207.39,2813.32 207.35,2813.34 207.32,2813.37 C 207.286,2813.4 207.26,2813.44 207.241,2813.48 C 207.224,2813.53 207.214,2813.58 207.214,2813.63 L 207.214,2814.27 C 207.214,2814.32 207.223,2814.37 207.239,2814.41 C 207.259,2814.46 207.284,2814.5 207.319,2814.54 C 207.35,2814.58 207.389,2814.61 207.43,2814.64 C 207.476,2814.66 207.523,2814.68 207.572,2814.68 L 208.552,2814.78 L 208.552,2814.53 L 207.572,2814.43 C 207.552,2814.43 207.529,2814.42 207.51,2814.41 C 207.497,2814.4 207.48,2814.38 207.467,2814.36 C 207.456,2814.34 207.45,2814.31 207.45,2814.29 L 207.45,2814.16 L 208.314,2814.25 L 208.314,2814 L 207.451,2813.91 L 207.451,2813.65 C 207.451,2813.63 207.459,2813.61 207.469,2813.59 C 207.48,2813.57 207.497,2813.56 207.512,2813.55 C 207.53,2813.54 207.554,2813.54 207.572,2813.54 L 208.555,2813.64 L 208.555,2813.39 L 207.573,2813.29 C 207.525,2813.29 207.477,2813.29 207.433,2813.3 Z M 209.005,2813.47 C 208.956,2813.49 208.912,2813.52 208.872,2813.55 C 208.832,2813.59 208.803,2813.63 208.777,2813.68 C 208.76,2813.73 208.746,2813.79 208.746,2813.85 L 208.991,2813.87 C 208.991,2813.84 208.997,2813.8 209.012,2813.78 C 209.029,2813.75 209.05,2813.73 209.078,2813.72 C 209.106,2813.7 209.133,2813.7 209.171,2813.7 L 209.593,2813.74 C 209.627,2813.75 209.656,2813.76 209.686,2813.78 C 209.71,2813.8 209.736,2813.83 209.75,2813.86 C 209.768,2813.89 209.776,2813.92 209.776,2813.96 C 209.776,2813.99 209.768,2814.03 209.75,2814.05 C 209.736,2814.08 209.71,2814.1 209.686,2814.11 C 209.654,2814.13 209.627,2814.13 209.593,2814.13 L 209.106,2814.08 L 209.038,2814.08 C 209.012,2814.08 208.991,2814.08 208.969,2814.09 C 208.927,2814.1 208.893,2814.13 208.854,2814.15 C 208.842,2814.17 208.821,2814.19 208.807,2814.21 C 208.786,2814.24 208.773,2814.27 208.763,2814.31 C 208.752,2814.34 208.746,2814.38 208.746,2814.42 L 208.746,2814.43 C 208.746,2814.47 208.756,2814.53 208.773,2814.57 C 208.79,2814.62 208.816,2814.66 208.852,2814.7 C 208.888,2814.74 208.923,2814.77 208.967,2814.79 C 209.008,2814.82 209.056,2814.83 209.106,2814.84 L 209.65,2814.89 C 209.699,2814.9 209.746,2814.89 209.79,2814.88 C 209.836,2814.87 209.874,2814.84 209.91,2814.81 C 209.94,2814.78 209.967,2814.74 209.985,2814.7 C 210.006,2814.66 210.012,2814.61 210.012,2814.56 L 210.012,2814.55 L 209.773,2814.52 L 209.773,2814.53 C 209.773,2814.55 209.768,2814.57 209.757,2814.59 C 209.744,2814.61 209.731,2814.62 209.712,2814.64 C 209.694,2814.64 209.673,2814.65 209.65,2814.64 L 209.106,2814.59 C 209.084,2814.59 209.061,2814.58 209.044,2814.56 C 209.029,2814.55 209.012,2814.53 208.999,2814.51 C 208.991,2814.49 208.986,2814.47 208.986,2814.45 L 208.986,2814.44 C 208.986,2814.41 208.991,2814.4 208.999,2814.38 C 209.012,2814.36 209.029,2814.34 209.046,2814.34 C 209.061,2814.33 209.084,2814.32 209.106,2814.33 L 209.593,2814.37 L 209.682,2814.37 C 209.708,2814.37 209.738,2814.37 209.763,2814.36 C 209.82,2814.34 209.865,2814.31 209.904,2814.27 C 209.91,2814.26 209.911,2814.26 209.915,2814.26 C 209.916,2814.26 209.916,2814.25 209.92,2814.25 C 209.948,2814.22 209.971,2814.18 209.986,2814.13 C 210.007,2814.08 210.014,2814.03 210.014,2813.98 C 210.014,2813.92 210.003,2813.86 209.982,2813.8 C 209.963,2813.75 209.929,2813.7 209.893,2813.66 C 209.85,2813.62 209.808,2813.58 209.754,2813.55 C 209.703,2813.53 209.65,2813.5 209.593,2813.5 L 209.171,2813.45 C 209.112,2813.45 209.056,2813.45 209.005,2813.47 Z M 210.212,2813.57 L 210.206,2814.95 L 211.055,2815.04 C 211.106,2815.05 211.15,2815.04 211.193,2815.03 C 211.237,2815.01 211.276,2814.99 211.314,2814.96 L 211.314,2814.96 C 211.344,2814.92 211.372,2814.88 211.391,2814.84 C 211.406,2814.8 211.416,2814.75 211.416,2814.7 C 211.416,2814.65 211.41,2814.6 211.391,2814.55 C 211.374,2814.51 211.351,2814.47 211.318,2814.43 C 211.285,2814.39 211.25,2814.36 211.206,2814.34 C 211.176,2814.32 211.14,2814.3 211.103,2814.3 C 211.099,2814.3 211.095,2814.3 211.093,2814.3 L 211.093,2814.29 L 210.45,2814.23 L 210.45,2813.59 L 210.212,2813.57 Z M 211.612,2813.71 L 211.61,2815.1 L 211.844,2815.12 L 211.848,2813.73 L 211.612,2813.71 Z M 212.042,2813.75 L 212.04,2815.14 L 212.887,2815.22 C 212.938,2815.23 212.985,2815.22 213.029,2815.21 C 213.071,2815.2 213.106,2815.17 213.142,2815.14 C 213.176,2815.11 213.199,2815.07 213.218,2815.03 C 213.237,2814.99 213.246,2814.94 213.248,2814.89 C 213.246,2814.84 213.237,2814.79 213.221,2814.74 C 213.202,2814.7 213.178,2814.65 213.148,2814.62 C 213.116,2814.58 213.078,2814.55 213.036,2814.53 C 213.004,2814.51 212.97,2814.49 212.936,2814.48 L 213.127,2814.11 L 213.248,2813.87 L 212.982,2813.85 L 212.857,2814.08 L 212.729,2814.33 L 212.723,2814.34 C 212.702,2814.37 212.674,2814.4 212.637,2814.41 C 212.603,2814.43 212.563,2814.44 212.523,2814.44 L 212.283,2814.41 L 212.283,2813.77 L 212.042,2813.75 Z M 213.365,2813.89 L 213.489,2814.15 L 214.05,2815.35 L 214.613,2814.27 L 214.74,2814.03 L 214.47,2814 L 214.346,2814.24 L 214.05,2814.8 L 213.757,2814.18 L 213.634,2813.92 L 213.365,2813.89 Z M 206.046,2814.01 L 206.654,2814.08 C 206.664,2814.08 206.673,2814.08 206.68,2814.08 C 206.689,2814.08 206.697,2814.09 206.703,2814.09 C 206.725,2814.11 206.743,2814.13 206.76,2814.15 C 206.771,2814.17 206.78,2814.19 206.78,2814.22 C 206.78,2814.24 206.776,2814.26 206.765,2814.27 C 206.759,2814.29 206.746,2814.3 206.739,2814.3 C 206.73,2814.31 206.72,2814.32 206.71,2814.33 C 206.699,2814.33 206.69,2814.33 206.682,2814.33 L 206.652,2814.33 L 206.046,2814.27 L 206.046,2814.01 Z M 215.402,2814.1 L 215.402,2815.24 L 214.85,2815.19 L 214.849,2815.43 L 216.191,2815.57 L 216.191,2815.33 L 215.64,2815.26 L 215.642,2814.13 L 215.402,2814.1 Z M 216.749,2814.3 C 216.668,2814.32 216.6,2814.37 216.536,2814.42 C 216.476,2814.48 216.427,2814.55 216.389,2814.63 C 216.357,2814.7 216.338,2814.8 216.338,2814.89 C 216.338,2814.99 216.355,2815.08 216.389,2815.17 C 216.426,2815.25 216.474,2815.34 216.536,2815.4 C 216.598,2815.47 216.666,2815.53 216.746,2815.58 C 216.832,2815.62 216.919,2815.65 217.009,2815.66 C 217.106,2815.67 217.189,2815.66 217.27,2815.63 C 217.351,2815.6 217.426,2815.56 217.487,2815.5 C 217.547,2815.44 217.593,2815.38 217.627,2815.3 C 217.663,2815.21 217.681,2815.13 217.683,2815.03 C 217.681,2814.93 217.663,2814.84 217.63,2814.75 C 217.593,2814.67 217.547,2814.59 217.487,2814.52 C 217.43,2814.45 217.353,2814.4 217.272,2814.35 C 217.191,2814.31 217.109,2814.28 217.013,2814.27 L 216.876,2814.27 C 216.834,2814.27 216.794,2814.28 216.749,2814.3 Z M 217.828,2814.35 L 217.826,2815.74 L 218.672,2815.83 C 218.722,2815.83 218.768,2815.82 218.813,2815.81 C 218.857,2815.8 218.896,2815.77 218.93,2815.74 C 218.964,2815.71 218.988,2815.67 219.004,2815.63 C 219.023,2815.59 219.032,2815.54 219.032,2815.49 C 219.032,2815.44 219.023,2815.39 219.009,2815.34 C 218.989,2815.3 218.969,2815.26 218.932,2815.22 C 218.902,2815.18 218.864,2815.15 218.826,2815.13 C 218.787,2815.11 218.756,2815.09 218.717,2815.09 L 218.915,2814.71 L 219.034,2814.47 L 218.766,2814.45 L 218.647,2814.68 L 218.513,2814.93 L 218.509,2814.94 C 218.488,2814.97 218.462,2815 218.423,2815.02 C 218.388,2815.03 218.349,2815.04 218.304,2815.03 L 218.066,2815.01 L 218.066,2814.37 L 217.828,2814.35 Z M 210.449,2814.47 L 211.057,2814.53 C 211.066,2814.54 211.076,2814.54 211.085,2814.54 C 211.09,2814.55 211.099,2814.55 211.108,2814.55 L 211.108,2814.55 C 211.127,2814.57 211.146,2814.59 211.159,2814.61 C 211.174,2814.63 211.178,2814.65 211.18,2814.68 C 211.178,2814.7 211.176,2814.72 211.167,2814.73 C 211.157,2814.75 211.15,2814.76 211.141,2814.76 C 211.134,2814.77 211.125,2814.78 211.11,2814.78 C 211.095,2814.79 211.08,2814.79 211.057,2814.79 L 210.449,2814.73 L 210.449,2814.47 Z M 217.013,2814.51 C 217.072,2814.52 217.128,2814.54 217.179,2814.57 C 217.23,2814.6 217.276,2814.64 217.315,2814.68 C 217.355,2814.72 217.387,2814.78 217.409,2814.83 C 217.436,2814.89 217.443,2814.95 217.443,2815.01 C 217.443,2815.07 217.435,2815.13 217.409,2815.18 C 217.387,2815.23 217.353,2815.28 217.313,2815.31 C 217.275,2815.35 217.23,2815.38 217.179,2815.39 C 217.128,2815.41 217.07,2815.41 217.009,2815.41 C 216.948,2815.4 216.893,2815.38 216.843,2815.36 C 216.794,2815.33 216.745,2815.29 216.705,2815.25 C 216.663,2815.2 216.634,2815.15 216.613,2815.1 C 216.589,2815.04 216.58,2814.98 216.579,2814.92 C 216.58,2814.85 216.589,2814.8 216.613,2814.74 C 216.634,2814.7 216.663,2814.65 216.705,2814.62 C 216.745,2814.58 216.794,2814.55 216.845,2814.53 C 216.896,2814.51 216.948,2814.51 217.013,2814.51 Z M 212.283,2814.66 L 212.887,2814.72 C 212.898,2814.72 212.903,2814.73 212.912,2814.73 C 212.92,2814.73 212.929,2814.74 212.938,2814.74 C 212.961,2814.75 212.979,2814.77 212.989,2814.79 C 213.004,2814.82 213.01,2814.84 213.01,2814.86 C 213.01,2814.89 213.004,2814.91 212.997,2814.92 C 212.989,2814.93 212.982,2814.94 212.975,2814.95 C 212.966,2814.96 212.955,2814.97 212.94,2814.97 C 212.927,2814.97 212.906,2814.98 212.887,2814.98 L 212.283,2814.92 L 212.283,2814.66 Z M 218.066,2815.26 L 218.672,2815.33 C 218.683,2815.33 218.692,2815.33 218.7,2815.33 C 218.709,2815.34 218.715,2815.34 218.722,2815.34 C 218.745,2815.35 218.762,2815.37 218.776,2815.39 C 218.787,2815.41 218.793,2815.43 218.793,2815.46 C 218.792,2815.48 218.787,2815.5 218.783,2815.52 C 218.776,2815.53 218.766,2815.54 218.757,2815.55 C 218.752,2815.56 218.738,2815.56 218.726,2815.57 C 218.713,2815.58 218.696,2815.58 218.672,2815.58 L 218.066,2815.52 L 218.066,2815.26 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 174.162,2858.06 L 173.558,2858.62 L 234.25,2862.58 L 234.562,2862.45 C 234.663,2862.41 234.766,2862.31 234.766,2862.15 L 234.766,2862.01 L 174.162,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 173.558,2858.62 L 173.555,2776.86 L 173.861,2776.57 L 174.162,2776.61 L 174.162,2858.06 L 173.558,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_9' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.639' y='-2.486' width='5.279' height='4.973' transform='translate(192.132 2789.88) rotate(90) skewX(-7.19518)' fill='%23df5600'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(198.596 2790.7) rotate(90) skewX(-7.18117)' fill='%230b3a60'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(205.06 2791.51) rotate(90) skewX(-7.19316)' fill='%2390c6e4'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(211.527 2792.33) rotate(90) skewX(-7.17713)' fill='%23a6a5a5'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(217.991 2793.14) rotate(90) skewX(-7.17713)' fill='%23ddd2ac'/%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.334' fill='%23000000'%3E%3Cg id='Group_11'%3E%3Cpath d='M 194.28,2795.66 C 194.198,2795.69 194.123,2795.73 194.06,2795.79 C 193.997,2795.85 193.947,2795.91 193.911,2795.99 C 193.876,2796.08 193.857,2796.16 193.857,2796.26 C 193.857,2796.36 193.876,2796.45 193.911,2796.54 C 193.947,2796.63 193.997,2796.71 194.06,2796.78 C 194.123,2796.86 194.198,2796.92 194.28,2796.96 C 194.364,2797.01 194.456,2797.04 194.552,2797.05 L 195.247,2797.13 L 195.247,2796.88 L 194.552,2796.8 C 194.489,2796.79 194.432,2796.77 194.378,2796.74 C 194.323,2796.71 194.276,2796.67 194.236,2796.63 C 194.196,2796.58 194.163,2796.53 194.14,2796.47 C 194.117,2796.42 194.104,2796.36 194.104,2796.29 C 194.104,2796.23 194.117,2796.17 194.14,2796.12 C 194.163,2796.07 194.196,2796.02 194.236,2795.99 C 194.276,2795.95 194.323,2795.93 194.378,2795.91 C 194.432,2795.89 194.489,2795.89 194.552,2795.89 L 195.247,2795.98 L 195.247,2795.72 L 194.552,2795.64 C 194.456,2795.63 194.364,2795.64 194.28,2795.66 Z M 195.444,2795.75 L 195.444,2797.16 L 195.692,2797.18 L 195.692,2796.67 L 196.585,2796.78 L 196.585,2797.29 L 196.835,2797.32 L 196.835,2795.91 L 196.585,2795.89 L 196.585,2796.53 L 195.692,2796.42 L 195.692,2795.78 L 195.444,2795.75 Z M 196.953,2795.93 L 197.081,2796.2 L 197.662,2797.42 L 198.245,2796.33 L 198.37,2796.1 L 198.094,2796.06 L 197.966,2796.3 L 197.662,2796.87 L 197.36,2796.23 L 197.232,2795.96 L 196.953,2795.93 Z M 198.488,2796.11 L 198.488,2797.52 L 199.365,2797.63 L 199.438,2797.63 C 199.462,2797.62 199.486,2797.62 199.508,2797.61 C 199.556,2797.6 199.594,2797.58 199.629,2797.54 C 199.662,2797.51 199.69,2797.48 199.709,2797.43 C 199.729,2797.39 199.736,2797.34 199.736,2797.29 C 199.736,2797.24 199.729,2797.19 199.709,2797.14 C 199.692,2797.09 199.666,2797.05 199.632,2797.01 C 199.6,2796.97 199.562,2796.94 199.52,2796.92 C 199.486,2796.89 199.449,2796.88 199.413,2796.87 L 199.611,2796.49 L 199.736,2796.26 L 199.46,2796.23 L 199.331,2796.46 L 199.2,2796.71 L 199.194,2796.72 C 199.17,2796.75 199.143,2796.78 199.107,2796.8 C 199.069,2796.81 199.027,2796.82 198.983,2796.82 L 198.736,2796.79 L 198.736,2796.14 L 198.488,2796.11 Z M 199.86,2796.27 L 199.986,2796.54 L 200.569,2797.77 L 201.15,2796.68 L 201.277,2796.44 L 200.999,2796.41 L 200.871,2796.65 L 200.569,2797.22 L 200.264,2796.57 L 200.137,2796.31 L 199.86,2796.27 Z M 201.624,2796.54 C 201.541,2796.57 201.466,2796.61 201.403,2796.67 C 201.338,2796.72 201.29,2796.79 201.254,2796.87 C 201.217,2796.95 201.2,2797.04 201.2,2797.14 C 201.2,2797.24 201.217,2797.33 201.254,2797.42 C 201.29,2797.51 201.338,2797.59 201.403,2797.66 C 201.466,2797.73 201.541,2797.79 201.624,2797.84 C 201.707,2797.89 201.799,2797.91 201.894,2797.93 L 202.59,2798.01 L 202.59,2797.76 L 201.894,2797.67 C 201.833,2797.67 201.775,2797.65 201.72,2797.62 C 201.666,2797.59 201.62,2797.55 201.579,2797.5 C 201.539,2797.46 201.504,2797.41 201.483,2797.35 C 201.46,2797.29 201.447,2797.23 201.447,2797.17 C 201.447,2797.11 201.46,2797.05 201.483,2797 C 201.504,2796.94 201.539,2796.9 201.579,2796.86 C 201.62,2796.83 201.666,2796.8 201.72,2796.78 C 201.775,2796.77 201.833,2796.76 201.894,2796.77 L 202.59,2796.85 L 202.59,2796.6 L 201.894,2796.52 C 201.799,2796.51 201.707,2796.51 201.624,2796.54 Z M 203.356,2796.69 L 203.356,2797.85 L 202.788,2797.78 L 202.788,2798.03 L 204.176,2798.2 L 204.176,2797.95 L 203.605,2797.88 L 203.605,2796.72 L 203.356,2796.69 Z M 204.603,2796.87 C 204.558,2796.89 204.52,2796.91 204.486,2796.94 C 204.452,2796.97 204.424,2797.01 204.405,2797.05 C 204.386,2797.09 204.377,2797.14 204.376,2797.2 L 204.376,2797.84 C 204.377,2797.9 204.386,2797.95 204.405,2797.99 C 204.424,2798.04 204.452,2798.09 204.486,2798.13 C 204.52,2798.16 204.558,2798.2 204.603,2798.22 C 204.65,2798.24 204.696,2798.26 204.75,2798.27 L 205.763,2798.39 L 205.763,2798.14 L 204.75,2798.02 C 204.726,2798.01 204.704,2798 204.686,2797.99 C 204.667,2797.98 204.652,2797.96 204.639,2797.94 C 204.629,2797.92 204.622,2797.9 204.622,2797.87 L 204.622,2797.74 L 205.516,2797.85 L 205.516,2797.6 L 204.622,2797.49 L 204.622,2797.22 C 204.622,2797.2 204.629,2797.18 204.639,2797.16 C 204.652,2797.14 204.667,2797.13 204.686,2797.12 C 204.704,2797.11 204.726,2797.11 204.75,2797.11 L 205.763,2797.23 L 205.763,2796.98 L 204.75,2796.86 C 204.696,2796.85 204.65,2796.86 204.603,2796.87 Z M 205.959,2797 L 205.959,2798.41 L 206.837,2798.52 C 206.888,2798.52 206.937,2798.52 206.982,2798.5 C 207.026,2798.49 207.067,2798.47 207.101,2798.44 C 207.135,2798.41 207.16,2798.37 207.18,2798.33 C 207.199,2798.28 207.21,2798.23 207.21,2798.18 C 207.21,2798.13 207.199,2798.08 207.182,2798.03 C 207.163,2797.98 207.138,2797.94 207.105,2797.9 C 207.073,2797.86 207.035,2797.83 206.991,2797.81 C 206.956,2797.79 206.922,2797.77 206.884,2797.76 L 207.082,2797.39 L 207.21,2797.15 L 206.93,2797.12 L 206.806,2797.36 L 206.671,2797.6 L 206.664,2797.61 C 206.643,2797.65 206.614,2797.67 206.578,2797.69 C 206.542,2797.71 206.501,2797.71 206.456,2797.71 L 206.207,2797.68 L 206.207,2797.03 L 205.959,2797 Z M 198.736,2797.03 L 199.365,2797.11 C 199.373,2797.12 199.383,2797.12 199.391,2797.12 C 199.4,2797.12 199.409,2797.13 199.416,2797.13 C 199.438,2797.14 199.457,2797.16 199.47,2797.18 C 199.483,2797.21 199.492,2797.23 199.492,2797.26 C 199.49,2797.28 199.486,2797.3 199.477,2797.31 C 199.468,2797.33 199.462,2797.34 199.453,2797.35 C 199.445,2797.36 199.435,2797.36 199.42,2797.37 C 199.405,2797.37 199.386,2797.37 199.365,2797.37 L 198.736,2797.3 L 198.736,2797.03 Z M 208.644,2797.36 C 208.59,2797.38 208.546,2797.4 208.506,2797.44 C 208.464,2797.47 208.433,2797.52 208.412,2797.57 C 208.389,2797.62 208.376,2797.67 208.376,2797.74 L 208.625,2797.76 C 208.625,2797.73 208.633,2797.7 208.65,2797.67 C 208.667,2797.64 208.69,2797.63 208.718,2797.61 C 208.748,2797.6 208.78,2797.59 208.814,2797.6 L 209.25,2797.65 C 209.285,2797.65 209.316,2797.67 209.346,2797.68 C 209.376,2797.71 209.399,2797.73 209.416,2797.76 C 209.433,2797.79 209.442,2797.83 209.442,2797.86 C 209.442,2797.9 209.433,2797.93 209.416,2797.96 C 209.399,2797.98 209.376,2798.01 209.346,2798.02 C 209.316,2798.03 209.285,2798.04 209.25,2798.03 L 208.75,2797.97 C 208.699,2797.97 208.65,2797.97 208.608,2797.98 C 208.563,2798 208.523,2798.02 208.489,2798.05 C 208.471,2798.07 208.457,2798.09 208.442,2798.1 C 208.42,2798.13 208.405,2798.16 208.393,2798.2 C 208.382,2798.23 208.376,2798.27 208.376,2798.31 L 208.376,2798.32 C 208.376,2798.37 208.386,2798.42 208.405,2798.47 C 208.424,2798.52 208.452,2798.56 208.486,2798.6 C 208.52,2798.64 208.559,2798.67 208.603,2798.7 C 208.648,2798.72 208.697,2798.74 208.75,2798.74 L 209.311,2798.81 C 209.365,2798.82 209.414,2798.82 209.458,2798.8 C 209.503,2798.78 209.544,2798.76 209.577,2798.73 C 209.612,2798.7 209.64,2798.66 209.659,2798.62 C 209.678,2798.58 209.689,2798.53 209.689,2798.48 L 209.689,2798.47 L 209.44,2798.44 L 209.44,2798.44 C 209.44,2798.47 209.433,2798.49 209.423,2798.51 C 209.412,2798.53 209.395,2798.54 209.376,2798.55 C 209.356,2798.56 209.336,2798.56 209.311,2798.56 L 208.75,2798.49 C 208.727,2798.49 208.706,2798.48 208.686,2798.47 C 208.667,2798.45 208.652,2798.44 208.64,2798.42 C 208.629,2798.39 208.622,2798.37 208.622,2798.35 L 208.622,2798.34 C 208.622,2798.32 208.629,2798.3 208.64,2798.28 C 208.652,2798.26 208.667,2798.24 208.686,2798.24 C 208.706,2798.23 208.727,2798.22 208.75,2798.22 L 209.25,2798.28 C 209.315,2798.29 209.374,2798.29 209.429,2798.27 C 209.484,2798.25 209.533,2798.22 209.573,2798.18 C 209.576,2798.18 209.577,2798.17 209.58,2798.17 C 209.584,2798.17 209.586,2798.17 209.589,2798.16 C 209.62,2798.13 209.644,2798.09 209.661,2798.04 C 209.678,2797.99 209.689,2797.95 209.689,2797.89 C 209.689,2797.83 209.676,2797.77 209.654,2797.72 C 209.631,2797.66 209.599,2797.61 209.559,2797.56 C 209.521,2797.52 209.473,2797.48 209.42,2797.45 C 209.367,2797.42 209.31,2797.4 209.25,2797.4 L 208.814,2797.34 C 208.755,2797.34 208.697,2797.34 208.644,2797.36 Z M 210.116,2797.53 C 210.072,2797.54 210.033,2797.57 209.999,2797.6 C 209.965,2797.63 209.937,2797.67 209.919,2797.71 C 209.899,2797.75 209.889,2797.8 209.889,2797.85 L 209.889,2798.5 C 209.889,2798.55 209.899,2798.6 209.919,2798.65 C 209.937,2798.7 209.965,2798.74 209.999,2798.78 C 210.033,2798.82 210.072,2798.85 210.116,2798.88 C 210.163,2798.9 210.21,2798.92 210.263,2798.93 L 211.276,2799.05 L 211.276,2798.8 L 210.263,2798.67 C 210.24,2798.67 210.219,2798.66 210.199,2798.65 C 210.18,2798.64 210.165,2798.62 210.153,2798.6 C 210.142,2798.58 210.136,2798.55 210.136,2798.53 L 210.136,2798.4 L 211.029,2798.51 L 211.029,2798.26 L 210.136,2798.15 L 210.136,2797.88 C 210.136,2797.86 210.142,2797.84 210.153,2797.82 C 210.165,2797.8 210.18,2797.79 210.199,2797.78 C 210.219,2797.77 210.24,2797.76 210.263,2797.77 L 211.276,2797.89 L 211.276,2797.64 L 210.263,2797.52 C 210.21,2797.51 210.163,2797.51 210.116,2797.53 Z M 211.472,2797.66 L 211.472,2799.07 L 212.349,2799.17 L 212.425,2799.17 C 212.448,2799.17 212.472,2799.17 212.495,2799.16 C 212.54,2799.14 212.581,2799.12 212.614,2799.09 C 212.649,2799.06 212.674,2799.03 212.693,2798.98 C 212.712,2798.94 212.723,2798.89 212.723,2798.84 C 212.723,2798.79 212.712,2798.74 212.695,2798.69 C 212.676,2798.64 212.651,2798.6 212.618,2798.56 C 212.585,2798.52 212.548,2798.49 212.504,2798.47 C 212.47,2798.44 212.436,2798.43 212.397,2798.42 L 212.595,2798.04 L 212.723,2797.81 L 212.445,2797.77 L 212.319,2798.01 L 212.184,2798.26 L 212.179,2798.27 C 212.158,2798.3 212.128,2798.33 212.091,2798.35 C 212.054,2798.36 212.014,2798.37 211.967,2798.37 L 211.72,2798.34 L 211.72,2797.69 L 211.472,2797.66 Z M 212.92,2797.83 L 212.92,2799.24 L 213.17,2799.27 L 213.17,2797.86 L 212.92,2797.83 Z M 206.207,2797.93 L 206.837,2798.01 C 206.846,2798.01 206.855,2798.01 206.863,2798.01 C 206.872,2798.01 206.88,2798.02 206.888,2798.02 C 206.912,2798.04 206.928,2798.05 206.943,2798.08 C 206.956,2798.1 206.963,2798.13 206.963,2798.15 C 206.963,2798.17 206.958,2798.19 206.95,2798.21 C 206.942,2798.22 206.933,2798.23 206.926,2798.24 C 206.918,2798.25 206.906,2798.25 206.89,2798.26 C 206.876,2798.26 206.858,2798.27 206.837,2798.26 L 206.207,2798.19 L 206.207,2797.93 Z M 213.597,2797.94 C 213.553,2797.96 213.512,2797.98 213.479,2798.01 C 213.444,2798.04 213.419,2798.08 213.4,2798.13 C 213.38,2798.17 213.37,2798.22 213.37,2798.27 L 213.37,2798.92 C 213.37,2798.97 213.38,2799.02 213.4,2799.07 C 213.419,2799.12 213.444,2799.16 213.479,2799.2 C 213.512,2799.24 213.553,2799.27 213.597,2799.29 C 213.642,2799.32 213.691,2799.33 213.742,2799.34 L 214.757,2799.46 L 214.757,2799.21 L 213.742,2799.09 C 213.719,2799.09 213.697,2799.08 213.678,2799.06 C 213.659,2799.05 213.645,2799.03 213.634,2799.01 C 213.62,2798.99 213.616,2798.97 213.616,2798.95 L 213.616,2798.82 L 214.508,2798.92 L 214.508,2798.67 L 213.616,2798.56 L 213.616,2798.3 C 213.616,2798.27 213.62,2798.25 213.634,2798.24 C 213.645,2798.22 213.659,2798.2 213.678,2798.19 C 213.697,2798.18 213.719,2798.18 213.742,2798.18 L 214.757,2798.31 L 214.757,2798.05 L 213.742,2797.93 C 213.691,2797.93 213.642,2797.93 213.597,2797.94 Z M 215.225,2798.14 C 215.172,2798.16 215.125,2798.19 215.085,2798.22 C 215.045,2798.26 215.015,2798.3 214.992,2798.35 C 214.967,2798.4 214.957,2798.46 214.957,2798.52 L 215.204,2798.55 C 215.204,2798.52 215.214,2798.49 215.229,2798.46 C 215.246,2798.43 215.27,2798.41 215.3,2798.4 C 215.328,2798.38 215.359,2798.38 215.396,2798.38 L 215.83,2798.43 C 215.866,2798.44 215.898,2798.45 215.925,2798.47 C 215.954,2798.49 215.979,2798.52 215.996,2798.55 C 216.013,2798.58 216.021,2798.61 216.021,2798.65 C 216.021,2798.68 216.013,2798.72 215.996,2798.74 C 215.979,2798.77 215.954,2798.79 215.925,2798.8 C 215.898,2798.82 215.866,2798.82 215.83,2798.82 L 215.329,2798.76 C 215.279,2798.76 215.232,2798.76 215.187,2798.77 C 215.142,2798.78 215.104,2798.81 215.07,2798.84 C 215.051,2798.85 215.036,2798.87 215.022,2798.89 C 215.002,2798.92 214.985,2798.95 214.975,2798.99 C 214.962,2799.02 214.957,2799.06 214.957,2799.1 L 214.957,2799.11 C 214.957,2799.16 214.966,2799.21 214.985,2799.26 C 215.004,2799.31 215.032,2799.35 215.066,2799.39 C 215.1,2799.43 215.14,2799.46 215.185,2799.48 C 215.229,2799.51 215.279,2799.53 215.329,2799.53 L 215.893,2799.6 C 215.944,2799.6 215.993,2799.6 216.038,2799.59 C 216.085,2799.57 216.124,2799.55 216.157,2799.52 C 216.194,2799.49 216.219,2799.45 216.238,2799.41 C 216.257,2799.36 216.267,2799.32 216.267,2799.26 L 216.267,2799.26 L 216.021,2799.22 L 216.021,2799.23 C 216.019,2799.26 216.015,2799.28 216.002,2799.29 C 215.991,2799.31 215.976,2799.33 215.958,2799.33 C 215.938,2799.35 215.917,2799.35 215.893,2799.35 L 215.329,2799.28 C 215.306,2799.27 215.284,2799.26 215.266,2799.25 C 215.246,2799.24 215.232,2799.22 215.221,2799.2 C 215.209,2799.18 215.202,2799.16 215.202,2799.13 L 215.202,2799.13 C 215.202,2799.1 215.209,2799.08 215.221,2799.06 C 215.232,2799.05 215.246,2799.03 215.266,2799.02 C 215.284,2799.01 215.306,2799.01 215.329,2799.01 L 215.83,2799.07 L 215.923,2799.07 C 215.953,2799.07 215.983,2799.06 216.01,2799.05 C 216.066,2799.03 216.113,2799 216.153,2798.97 C 216.155,2798.96 216.159,2798.96 216.161,2798.96 C 216.164,2798.95 216.166,2798.95 216.17,2798.95 C 216.2,2798.92 216.226,2798.87 216.242,2798.83 C 216.259,2798.78 216.267,2798.73 216.267,2798.68 C 216.267,2798.62 216.257,2798.56 216.234,2798.5 C 216.21,2798.45 216.18,2798.4 216.14,2798.35 C 216.1,2798.3 216.053,2798.26 216,2798.24 C 215.947,2798.21 215.892,2798.19 215.83,2798.18 L 215.396,2798.13 C 215.333,2798.12 215.276,2798.13 215.225,2798.14 Z M 211.72,2798.59 L 212.349,2798.66 C 212.359,2798.66 212.367,2798.67 212.376,2798.67 C 212.385,2798.67 212.393,2798.68 212.401,2798.68 C 212.425,2798.69 212.441,2798.71 212.455,2798.73 C 212.47,2798.76 212.476,2798.78 212.476,2798.81 C 212.476,2798.83 212.472,2798.85 212.463,2798.86 C 212.455,2798.88 212.446,2798.89 212.437,2798.89 C 212.431,2798.9 212.419,2798.91 212.404,2798.92 C 212.389,2798.92 212.371,2798.92 212.349,2798.92 L 211.72,2798.85 L 211.72,2798.59 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--ULTRA_VIOLET, .KN95_NR_small_individuals--ULTRA_VIOLET {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='206.002 -433.287 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.848' gradientTransform='translate(218.644 405.816)'%3E%3Cstop offset='0' stop-color='%2372469e'/%3E%3Cstop offset='1' stop-color='%23955cd1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.922' gradientTransform='translate(215.105 406.431)'%3E%3Cstop offset='0' stop-color='%235d3981'/%3E%3Cstop offset='1' stop-color='%23814fb3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.1' gradientTransform='translate(218.638 425.801)'%3E%3Cstop offset='0' stop-color='%236e4499'/%3E%3Cstop offset='1' stop-color='%238351b6'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.229' gradientTransform='translate(213.964 427.856)'%3E%3Cstop offset='0' stop-color='%235b387f'/%3E%3Cstop offset='1' stop-color='%236e4499'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.01' y2='-0.164' gradientTransform='translate(226.958 427.672) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%237749a5'/%3E%3Cstop offset='1' stop-color='%238753bc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(215.812 415.559) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%236e4499'/%3E%3Cstop offset='1' stop-color='%23814fb3'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(222.731 416.558) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 215.731,403.403 L 215.731,426.89 L 233.179,428.009 C 233.191,427.996 233.199,427.975 233.199,427.951 L 233.199,405.77 L 215.731,403.403 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 215.731,403.403 L 212.267,406.765 L 212.265,428.787 L 215.731,426.89 L 215.731,403.403 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 215.731,426.89 L 212.265,428.787 L 229.197,429.715 L 233.141,428.035 C 233.155,428.03 233.168,428.022 233.179,428.009 L 215.731,426.89 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 215.644,426.621 L 212.264,428.511 L 212.264,428.787 L 215.644,426.937 L 215.644,426.621 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 222.773,409.005 L 222.773,409.414 L 222.844,409.423 L 222.844,409.012 L 222.773,409.005 Z M 222.903,409.017 L 222.903,409.427 L 222.974,409.38 L 223.236,409.204 L 223.236,409.465 L 223.308,409.474 L 223.308,409.063 L 223.236,409.111 L 222.974,409.287 L 222.974,409.027 L 222.903,409.017 Z M 223.365,409.069 L 223.365,409.48 L 223.567,409.502 C 223.595,409.504 223.622,409.502 223.645,409.494 C 223.671,409.486 223.691,409.475 223.71,409.456 C 223.729,409.44 223.743,409.42 223.753,409.397 C 223.764,409.373 223.77,409.346 223.77,409.318 C 223.77,409.293 223.765,409.269 223.757,409.246 C 223.748,409.222 223.736,409.2 223.721,409.181 C 223.719,409.179 223.717,409.176 223.716,409.174 C 223.715,409.172 223.712,409.169 223.709,409.166 C 223.691,409.146 223.671,409.13 223.645,409.115 C 223.622,409.103 223.596,409.094 223.567,409.091 L 223.365,409.069 Z M 223.828,409.119 L 223.828,409.53 L 223.901,409.536 L 223.901,409.127 L 223.828,409.119 Z M 223.438,409.149 L 223.567,409.163 C 223.585,409.166 223.601,409.172 223.618,409.18 C 223.633,409.188 223.647,409.198 223.658,409.212 C 223.671,409.225 223.68,409.241 223.687,409.257 C 223.694,409.275 223.697,409.292 223.697,409.309 C 223.697,409.328 223.694,409.344 223.687,409.36 C 223.68,409.376 223.671,409.388 223.658,409.399 C 223.647,409.411 223.633,409.418 223.618,409.423 C 223.601,409.428 223.585,409.429 223.567,409.427 L 223.438,409.413 L 223.438,409.149 Z M 224.142,409.154 L 223.971,409.473 L 223.934,409.541 L 224.016,409.549 L 224.052,409.481 L 224.142,409.315 L 224.23,409.501 L 224.266,409.578 L 224.348,409.586 L 224.311,409.508 L 224.142,409.154 Z M 224.383,409.18 L 224.383,409.59 L 224.456,409.598 L 224.456,409.187 L 224.383,409.18 Z M 224.514,409.194 L 224.514,409.604 L 224.716,409.626 C 224.743,409.628 224.77,409.626 224.795,409.618 C 224.819,409.612 224.839,409.599 224.858,409.582 C 224.878,409.565 224.892,409.544 224.902,409.521 C 224.913,409.497 224.917,409.472 224.917,409.443 C 224.917,409.418 224.914,409.394 224.905,409.371 C 224.897,409.346 224.885,409.326 224.87,409.305 C 224.868,409.303 224.866,409.302 224.865,409.299 C 224.863,409.296 224.86,409.294 224.858,409.292 C 224.839,409.271 224.819,409.254 224.795,409.24 C 224.77,409.227 224.743,409.219 224.716,409.216 L 224.514,409.194 Z M 225.101,409.274 C 225.076,409.282 225.053,409.294 225.035,409.311 C 225.018,409.327 225.003,409.347 224.994,409.372 C 224.982,409.395 224.976,409.421 224.976,409.45 L 224.976,409.654 L 225.048,409.662 L 225.048,409.456 C 225.048,409.438 225.052,409.422 225.059,409.407 C 225.064,409.392 225.075,409.38 225.088,409.369 C 225.099,409.357 225.113,409.35 225.129,409.344 C 225.143,409.339 225.161,409.337 225.179,409.339 C 225.197,409.341 225.214,409.346 225.229,409.355 C 225.246,409.364 225.258,409.375 225.271,409.388 C 225.283,409.401 225.291,409.417 225.298,409.433 C 225.305,409.45 225.31,409.467 225.31,409.486 L 225.31,409.69 L 225.381,409.699 L 225.381,409.494 C 225.381,409.465 225.376,409.437 225.365,409.412 C 225.355,409.386 225.341,409.362 225.322,409.341 C 225.304,409.321 225.282,409.305 225.257,409.29 C 225.233,409.279 225.207,409.27 225.179,409.266 C 225.15,409.263 225.125,409.266 225.101,409.274 Z M 224.585,409.275 L 224.716,409.289 C 224.733,409.29 224.749,409.295 224.767,409.305 C 224.782,409.313 224.796,409.323 224.807,409.337 C 224.82,409.351 224.828,409.366 224.836,409.383 C 224.841,409.399 224.845,409.417 224.845,409.435 C 224.845,409.452 224.841,409.47 224.836,409.486 C 224.828,409.501 224.82,409.514 224.807,409.523 C 224.796,409.534 224.782,409.542 224.767,409.547 C 224.749,409.553 224.733,409.554 224.716,409.553 L 224.585,409.538 L 224.585,409.275 Z M 225.417,409.292 L 225.453,409.37 L 225.622,409.724 L 225.794,409.406 L 225.829,409.336 L 225.749,409.328 L 225.712,409.398 L 225.622,409.562 L 225.535,409.379 L 225.497,409.302 L 225.417,409.292 Z M 225.964,409.355 C 225.953,409.357 225.944,409.358 225.936,409.362 C 225.924,409.368 225.912,409.374 225.902,409.385 C 225.892,409.393 225.885,409.403 225.878,409.416 C 225.873,409.424 225.872,409.432 225.868,409.442 C 225.866,409.451 225.866,409.462 225.866,409.472 L 225.866,409.75 L 225.936,409.758 L 225.936,409.473 C 225.937,409.464 225.941,409.455 225.945,409.45 C 225.949,409.443 225.955,409.437 225.962,409.433 C 225.97,409.43 225.979,409.428 225.987,409.427 L 226.199,409.45 L 226.199,409.378 L 225.994,409.355 C 225.982,409.354 225.973,409.354 225.964,409.355 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 220.57,415.733 L 220.567,417.785 L 220.907,417.819 L 220.908,416.771 L 221.187,417.075 L 221.438,417.35 L 221.966,417.927 L 222.47,417.978 L 221.64,417.071 L 222.464,415.926 L 222.046,415.884 L 221.389,416.796 L 220.908,416.276 L 220.908,415.768 L 220.57,415.733 Z M 222.637,415.944 L 222.811,416.328 L 223.603,418.094 L 224.4,416.49 L 224.574,416.141 L 224.195,416.103 L 224.02,416.451 L 223.605,417.289 L 223.189,416.366 L 223.017,415.983 L 222.637,415.944 Z M 224.745,416.158 L 224.748,416.158 L 225.008,416.551 L 225.473,417.254 L 225.688,417.575 L 225.947,417.967 L 224.74,417.843 L 224.74,418.21 L 226.208,418.358 L 226.634,418.403 L 226.371,418.009 L 225.9,417.297 L 225.686,416.977 L 225.431,416.595 L 226.644,416.718 L 226.645,416.351 L 225.175,416.203 L 225.173,416.203 L 224.745,416.158 Z M 227.221,416.454 C 227.159,416.477 227.105,416.51 227.059,416.557 C 227.011,416.602 226.976,416.657 226.949,416.721 C 226.923,416.785 226.91,416.857 226.91,416.932 L 226.908,417.877 C 226.908,417.954 226.921,418.026 226.947,418.095 C 226.974,418.164 227.009,418.226 227.057,418.282 C 227.103,418.339 227.157,418.383 227.219,418.417 C 227.28,418.453 227.347,418.474 227.418,418.482 L 228.803,418.623 L 228.803,418.257 L 227.418,418.115 C 227.384,418.112 227.356,418.1 227.331,418.081 C 227.304,418.061 227.284,418.036 227.268,418.008 C 227.253,417.978 227.246,417.945 227.246,417.91 L 227.246,417.719 L 228.465,417.845 L 228.466,417.478 L 227.246,417.354 L 227.246,416.967 C 227.246,416.932 227.254,416.902 227.269,416.876 C 227.286,416.847 227.306,416.827 227.331,416.813 C 227.358,416.799 227.386,416.794 227.42,416.796 L 228.805,416.937 L 228.806,416.571 L 227.42,416.43 C 227.35,416.423 227.283,416.431 227.221,416.454 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 222.573,414.642 L 222.573,415.08 C 222.573,415.104 222.577,415.124 222.585,415.144 C 222.593,415.164 222.605,415.184 222.619,415.2 C 222.633,415.216 222.65,415.229 222.67,415.24 C 222.689,415.249 222.71,415.256 222.733,415.258 L 223.166,415.306 L 223.166,415.198 L 222.733,415.152 C 222.722,415.15 222.714,415.147 222.705,415.141 C 222.697,415.135 222.691,415.129 222.686,415.12 C 222.681,415.111 222.679,415.102 222.679,415.093 L 222.679,415.036 L 223.059,415.075 L 223.059,414.968 L 222.678,414.929 L 222.679,414.655 L 222.573,414.642 Z M 223.251,414.714 L 223.251,415.152 C 223.251,415.173 223.255,415.196 223.263,415.216 C 223.27,415.235 223.282,415.254 223.296,415.271 C 223.31,415.287 223.329,415.3 223.348,415.312 C 223.367,415.322 223.386,415.328 223.41,415.331 L 223.842,415.376 L 223.843,415.268 L 223.41,415.224 C 223.4,415.222 223.391,415.219 223.383,415.214 C 223.374,415.208 223.368,415.2 223.363,415.191 C 223.358,415.182 223.357,415.173 223.357,415.163 L 223.357,415.108 L 223.737,415.147 L 223.737,415.041 L 223.356,415.001 L 223.357,414.724 L 223.251,414.714 Z M 223.929,414.786 L 223.928,415.386 L 224.301,415.425 C 224.323,415.428 224.344,415.425 224.362,415.419 C 224.381,415.413 224.399,415.402 224.413,415.389 L 224.413,415.388 C 224.429,415.375 224.44,415.359 224.449,415.34 C 224.457,415.322 224.461,415.3 224.461,415.279 C 224.461,415.256 224.457,415.235 224.45,415.216 C 224.441,415.196 224.431,415.178 224.416,415.162 C 224.402,415.146 224.387,415.132 224.368,415.123 C 224.354,415.113 224.339,415.108 224.323,415.105 C 224.321,415.105 224.32,415.105 224.318,415.105 L 224.318,415.104 L 224.033,415.072 L 224.034,414.798 L 223.929,414.786 Z M 224.545,414.848 L 224.545,415.027 C 224.545,415.039 224.546,415.049 224.548,415.062 C 224.55,415.073 224.555,415.086 224.558,415.097 C 224.568,415.119 224.58,415.137 224.594,415.155 C 224.61,415.173 224.626,415.188 224.648,415.2 C 224.668,415.209 224.69,415.218 224.713,415.221 L 224.966,415.247 L 224.969,415.247 C 224.981,415.251 224.993,415.255 225.001,415.263 C 225.011,415.27 225.018,415.279 225.023,415.291 C 225.029,415.3 225.031,415.312 225.031,415.325 C 225.031,415.338 225.028,415.349 225.022,415.359 C 225.016,415.368 225.008,415.376 224.998,415.382 C 224.988,415.387 224.975,415.389 224.962,415.388 L 224.546,415.344 L 224.546,415.451 L 224.961,415.494 C 224.988,415.497 225.011,415.494 225.031,415.488 C 225.052,415.481 225.07,415.47 225.087,415.456 C 225.103,415.442 225.116,415.425 225.123,415.403 C 225.132,415.384 225.136,415.361 225.137,415.336 C 225.137,415.324 225.136,415.312 225.133,415.299 C 225.131,415.287 225.128,415.276 225.123,415.265 C 225.119,415.254 225.114,415.245 225.108,415.235 C 225.103,415.226 225.096,415.218 225.088,415.209 C 225.072,415.19 225.054,415.175 225.034,415.163 C 225.013,415.152 224.994,415.145 224.968,415.141 L 224.965,415.141 C 224.965,415.141 224.963,415.141 224.962,415.141 L 224.713,415.115 C 224.702,415.112 224.691,415.108 224.682,415.1 C 224.671,415.094 224.665,415.083 224.659,415.072 C 224.654,415.062 224.652,415.051 224.652,415.04 L 224.652,414.969 L 225.135,415.019 L 225.136,414.912 L 224.717,414.867 L 224.545,414.848 Z M 225.635,414.966 L 225.633,415.563 L 225.739,415.492 L 226.121,415.235 L 226.121,415.616 L 226.227,415.627 L 226.227,415.029 L 226.121,415.1 L 225.739,415.357 L 225.741,414.977 L 225.635,414.966 Z M 226.311,415.038 L 226.311,415.638 L 226.685,415.678 C 226.706,415.68 226.727,415.678 226.746,415.67 C 226.767,415.665 226.783,415.654 226.797,415.641 C 226.811,415.627 226.823,415.612 226.832,415.593 C 226.839,415.574 226.843,415.554 226.844,415.532 C 226.844,415.509 226.839,415.488 226.832,415.467 C 226.824,415.448 226.813,415.43 226.799,415.414 C 226.786,415.398 226.769,415.385 226.752,415.374 C 226.736,415.365 226.721,415.359 226.705,415.356 L 226.791,415.196 L 226.845,415.095 L 226.726,415.081 L 226.672,415.182 L 226.614,415.288 L 226.612,415.293 C 226.603,415.309 226.591,415.32 226.575,415.326 C 226.559,415.334 226.542,415.337 226.522,415.335 L 226.418,415.324 L 226.418,415.048 L 226.311,415.038 Z M 224.033,415.178 L 224.302,415.207 C 224.305,415.207 224.309,415.208 224.314,415.209 C 224.317,415.211 224.321,415.213 224.324,415.215 L 224.324,415.215 C 224.334,415.221 224.342,415.228 224.347,415.238 C 224.354,415.247 224.355,415.256 224.355,415.267 C 224.355,415.278 224.354,415.285 224.35,415.292 C 224.347,415.298 224.344,415.304 224.341,415.306 C 224.336,415.309 224.331,415.312 224.325,415.314 C 224.32,415.318 224.311,415.319 224.302,415.318 L 224.033,415.288 L 224.033,415.178 Z M 226.418,415.43 L 226.685,415.459 C 226.688,415.459 226.692,415.46 226.697,415.461 C 226.7,415.464 226.703,415.465 226.706,415.467 C 226.717,415.472 226.724,415.48 226.73,415.489 C 226.736,415.499 226.74,415.509 226.74,415.52 C 226.739,415.532 226.736,415.538 226.732,415.545 C 226.729,415.551 226.726,415.556 226.723,415.558 C 226.719,415.562 226.714,415.564 226.708,415.567 C 226.701,415.57 226.695,415.57 226.685,415.57 L 226.417,415.541 L 226.418,415.43 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 220.687,413.446 L 220.686,413.844 L 220.929,413.869 C 220.943,413.872 220.958,413.869 220.97,413.865 C 220.981,413.86 220.993,413.855 221.002,413.845 L 221.003,413.845 C 221.013,413.835 221.02,413.826 221.025,413.814 C 221.031,413.801 221.033,413.788 221.033,413.774 C 221.033,413.757 221.031,413.743 221.025,413.73 C 221.021,413.717 221.014,413.706 221.005,413.695 C 220.995,413.684 220.984,413.675 220.972,413.669 C 220.963,413.663 220.953,413.659 220.943,413.658 C 220.942,413.658 220.94,413.656 220.94,413.656 L 220.94,413.656 L 220.756,413.636 L 220.756,413.454 L 220.687,413.446 Z M 221.088,413.486 L 221.087,413.885 L 221.33,413.911 C 221.347,413.911 221.359,413.911 221.371,413.907 C 221.384,413.902 221.394,413.896 221.404,413.886 C 221.413,413.878 221.419,413.867 221.427,413.855 C 221.431,413.843 221.433,413.829 221.434,413.815 C 221.433,413.8 221.431,413.786 221.428,413.774 C 221.42,413.759 221.414,413.748 221.405,413.736 C 221.395,413.726 221.386,413.717 221.374,413.71 C 221.365,413.705 221.355,413.7 221.345,413.698 L 221.398,413.591 L 221.434,413.522 L 221.358,413.515 L 221.321,413.582 L 221.286,413.653 L 221.284,413.656 C 221.278,413.667 221.269,413.674 221.259,413.679 C 221.249,413.684 221.238,413.685 221.226,413.684 L 221.156,413.677 L 221.156,413.494 L 221.088,413.486 Z M 221.593,413.556 C 221.572,413.563 221.551,413.576 221.533,413.592 C 221.514,413.608 221.501,413.628 221.492,413.652 C 221.482,413.675 221.477,413.7 221.476,413.728 C 221.477,413.755 221.482,413.782 221.491,413.806 C 221.501,413.831 221.514,413.853 221.533,413.874 C 221.55,413.894 221.572,413.911 221.593,413.924 C 221.617,413.936 221.642,413.943 221.67,413.946 C 221.695,413.949 221.721,413.946 221.745,413.938 C 221.766,413.93 221.788,413.919 221.805,413.903 C 221.823,413.886 221.837,413.866 221.846,413.843 C 221.856,413.82 221.862,413.795 221.862,413.768 C 221.862,413.739 221.856,413.713 221.846,413.687 C 221.837,413.664 221.824,413.641 221.805,413.62 C 221.789,413.601 221.767,413.584 221.745,413.572 C 221.721,413.559 221.695,413.551 221.67,413.549 L 221.63,413.55 C 221.618,413.55 221.606,413.552 221.593,413.556 Z M 222.061,413.588 L 222.061,413.916 L 221.903,413.899 L 221.903,413.969 L 222.287,414.011 L 222.287,413.94 L 222.131,413.924 L 222.132,413.595 L 222.061,413.588 Z M 221.67,413.619 C 221.686,413.62 221.702,413.627 221.717,413.634 C 221.734,413.643 221.746,413.653 221.756,413.666 C 221.767,413.679 221.778,413.693 221.784,413.71 C 221.79,413.725 221.794,413.743 221.794,413.76 C 221.794,413.778 221.79,413.794 221.784,413.809 C 221.778,413.823 221.767,413.836 221.756,413.846 C 221.746,413.857 221.733,413.865 221.717,413.869 C 221.702,413.875 221.686,413.877 221.67,413.875 C 221.652,413.874 221.636,413.868 221.62,413.859 C 221.606,413.852 221.592,413.842 221.581,413.829 C 221.571,413.816 221.562,413.802 221.555,413.785 C 221.549,413.769 221.546,413.752 221.546,413.735 C 221.546,413.717 221.549,413.7 221.555,413.685 C 221.562,413.671 221.572,413.659 221.582,413.647 C 221.592,413.637 221.606,413.629 221.62,413.625 C 221.636,413.62 221.653,413.618 221.67,413.619 Z M 222.407,413.633 C 222.395,413.636 222.385,413.643 222.374,413.653 C 222.365,413.662 222.358,413.672 222.353,413.685 C 222.347,413.698 222.345,413.711 222.345,413.726 L 222.345,413.91 C 222.345,413.924 222.347,413.938 222.352,413.951 C 222.358,413.965 222.365,413.976 222.374,413.989 C 222.384,414 222.394,414.008 222.407,414.015 C 222.419,414.021 222.432,414.027 222.447,414.027 L 222.728,414.056 L 222.728,413.987 L 222.447,413.956 C 222.442,413.955 222.434,413.953 222.429,413.949 C 222.424,413.945 222.419,413.94 222.417,413.935 C 222.413,413.929 222.411,413.923 222.411,413.916 L 222.411,413.879 L 222.66,413.905 L 222.66,413.833 L 222.411,413.808 L 222.413,413.733 C 222.413,413.726 222.413,413.72 222.418,413.715 C 222.42,413.71 222.425,413.706 222.43,413.704 C 222.437,413.7 222.442,413.699 222.447,413.7 L 222.73,413.73 L 222.73,413.659 L 222.448,413.629 C 222.433,413.627 222.419,413.629 222.407,413.633 Z M 222.896,413.691 C 222.871,413.698 222.852,413.711 222.835,413.727 C 222.817,413.743 222.803,413.764 222.793,413.787 C 222.784,413.809 222.778,413.834 222.778,413.862 C 222.778,413.89 222.784,413.917 222.793,413.941 C 222.802,413.966 222.817,413.989 222.835,414.009 C 222.852,414.03 222.871,414.045 222.896,414.058 C 222.919,414.07 222.944,414.078 222.97,414.081 L 223.162,414.102 L 223.162,414.03 L 222.97,414.01 C 222.954,414.008 222.937,414.003 222.922,413.995 C 222.908,413.989 222.894,413.976 222.883,413.963 C 222.871,413.95 222.863,413.937 222.856,413.921 C 222.85,413.905 222.846,413.887 222.846,413.869 C 222.846,413.852 222.85,413.835 222.857,413.82 C 222.863,413.806 222.871,413.794 222.883,413.783 C 222.895,413.774 222.909,413.765 222.923,413.759 C 222.937,413.754 222.954,413.752 222.971,413.754 L 223.162,413.775 L 223.162,413.704 L 222.971,413.684 L 222.933,413.684 C 222.92,413.684 222.908,413.687 222.896,413.691 Z M 220.756,413.708 L 220.93,413.724 C 220.933,413.725 220.936,413.726 220.938,413.726 C 220.94,413.727 220.942,413.729 220.945,413.73 C 220.95,413.734 220.956,413.738 220.96,413.744 C 220.963,413.75 220.965,413.757 220.965,413.766 C 220.965,413.771 220.963,413.777 220.961,413.782 C 220.959,413.786 220.957,413.788 220.955,413.79 C 220.952,413.793 220.949,413.795 220.946,413.796 C 220.94,413.798 220.937,413.8 220.93,413.798 L 220.756,413.781 L 220.756,413.708 Z M 223.376,413.725 L 223.376,414.053 L 223.219,414.036 L 223.219,414.108 L 223.603,414.148 L 223.603,414.075 L 223.445,414.059 L 223.445,413.732 L 223.376,413.725 Z M 221.156,413.748 L 221.33,413.766 C 221.334,413.767 221.335,413.768 221.339,413.768 C 221.341,413.769 221.344,413.769 221.347,413.77 C 221.352,413.776 221.357,413.779 221.361,413.787 C 221.365,413.792 221.366,413.8 221.366,413.807 C 221.366,413.813 221.365,413.818 221.363,413.822 C 221.361,413.827 221.358,413.83 221.355,413.832 C 221.353,413.833 221.35,413.835 221.347,413.837 C 221.343,413.84 221.337,413.84 221.33,413.84 L 221.156,413.82 L 221.156,413.748 Z M 223.658,413.754 L 223.658,414.152 L 223.728,414.16 L 223.728,413.763 L 223.658,413.754 Z M 223.957,413.786 L 223.795,414.097 L 223.76,414.163 L 223.837,414.17 L 223.872,414.104 L 223.956,413.942 L 224.04,414.122 L 224.076,414.195 L 224.153,414.205 L 224.117,414.13 L 223.957,413.786 Z M 224.251,413.824 C 224.239,413.829 224.227,413.834 224.219,413.843 C 224.208,413.852 224.199,413.863 224.196,413.876 C 224.19,413.888 224.186,413.902 224.186,413.917 L 224.186,414.1 C 224.186,414.115 224.189,414.129 224.195,414.143 C 224.199,414.156 224.208,414.168 224.218,414.179 C 224.226,414.189 224.238,414.199 224.25,414.207 C 224.262,414.214 224.277,414.217 224.29,414.219 L 224.571,414.247 L 224.571,414.175 L 224.29,414.148 C 224.283,414.147 224.277,414.143 224.271,414.141 C 224.267,414.137 224.264,414.132 224.259,414.126 C 224.257,414.121 224.255,414.115 224.255,414.108 L 224.255,414.07 L 224.503,414.097 L 224.503,414.026 L 224.256,414.001 L 224.256,413.924 C 224.256,413.917 224.258,413.911 224.26,413.907 C 224.264,413.901 224.267,413.897 224.273,413.894 C 224.278,413.892 224.283,413.891 224.291,413.892 L 224.572,413.921 L 224.572,413.848 L 224.291,413.82 C 224.277,413.819 224.263,413.82 224.251,413.824 Z M 224.894,413.882 L 224.894,414.279 L 225.136,414.305 C 225.151,414.306 225.164,414.305 225.176,414.3 C 225.189,414.297 225.201,414.29 225.21,414.281 C 225.22,414.272 225.226,414.261 225.233,414.249 C 225.237,414.237 225.239,414.224 225.239,414.209 C 225.239,414.193 225.238,414.18 225.233,414.167 C 225.228,414.154 225.221,414.142 225.212,414.131 C 225.203,414.122 225.194,414.111 225.18,414.106 C 225.171,414.1 225.16,414.095 225.15,414.094 L 225.207,413.985 L 225.24,413.917 L 225.162,413.91 L 225.129,413.976 L 225.093,414.046 L 225.091,414.051 C 225.085,414.059 225.075,414.067 225.064,414.072 C 225.055,414.077 225.044,414.079 225.032,414.078 L 224.961,414.071 L 224.962,413.888 L 224.894,413.882 Z M 225.36,413.94 C 225.348,413.943 225.336,413.95 225.328,413.959 C 225.318,413.968 225.311,413.977 225.305,413.991 C 225.299,414.003 225.297,414.017 225.297,414.032 L 225.297,414.216 C 225.297,414.231 225.299,414.245 225.305,414.258 C 225.31,414.271 225.318,414.283 225.328,414.294 C 225.336,414.305 225.347,414.314 225.36,414.322 C 225.372,414.328 225.386,414.333 225.399,414.333 L 225.681,414.362 L 225.681,414.291 L 225.399,414.261 C 225.394,414.261 225.387,414.259 225.381,414.255 C 225.378,414.252 225.374,414.247 225.37,414.242 C 225.367,414.235 225.365,414.229 225.365,414.222 L 225.365,414.185 L 225.613,414.211 L 225.613,414.139 L 225.365,414.115 L 225.365,414.04 C 225.365,414.033 225.367,414.027 225.37,414.021 C 225.374,414.017 225.378,414.013 225.383,414.01 C 225.387,414.007 225.394,414.007 225.399,414.007 L 225.682,414.035 L 225.682,413.964 L 225.4,413.935 C 225.386,413.934 225.373,413.936 225.36,413.94 Z M 225.811,413.989 C 225.797,413.993 225.784,414.001 225.773,414.01 C 225.762,414.021 225.754,414.034 225.746,414.047 C 225.741,414.062 225.736,414.078 225.736,414.097 L 225.807,414.103 C 225.807,414.093 225.808,414.083 225.813,414.075 C 225.818,414.068 225.824,414.061 225.832,414.058 C 225.839,414.054 225.847,414.053 225.859,414.054 L 225.98,414.065 C 225.99,414.067 225.998,414.07 226.007,414.075 C 226.013,414.082 226.02,414.088 226.025,414.098 C 226.029,414.108 226.033,414.117 226.033,414.126 C 226.033,414.137 226.029,414.145 226.025,414.152 C 226.02,414.161 226.013,414.166 226.007,414.169 C 225.997,414.175 225.99,414.175 225.98,414.175 L 225.839,414.161 L 225.82,414.161 C 225.813,414.162 225.807,414.163 225.801,414.164 C 225.788,414.169 225.779,414.175 225.769,414.182 C 225.765,414.188 225.759,414.193 225.755,414.199 C 225.749,414.208 225.745,414.217 225.742,414.227 C 225.738,414.236 225.736,414.247 225.736,414.258 L 225.736,414.26 C 225.736,414.275 225.739,414.289 225.745,414.303 C 225.749,414.318 225.757,414.329 225.768,414.34 C 225.778,414.35 225.788,414.359 225.801,414.366 C 225.812,414.373 225.826,414.376 225.839,414.379 L 225.996,414.395 C 226.01,414.396 226.024,414.395 226.036,414.39 C 226.049,414.387 226.059,414.38 226.07,414.371 C 226.079,414.362 226.087,414.351 226.092,414.34 C 226.098,414.327 226.1,414.314 226.1,414.298 L 226.1,414.297 L 226.032,414.288 L 226.032,414.29 C 226.032,414.297 226.029,414.303 226.027,414.308 C 226.023,414.314 226.02,414.318 226.014,414.322 C 226.009,414.324 226.003,414.324 225.996,414.324 L 225.839,414.307 C 225.833,414.306 225.826,414.304 225.821,414.3 C 225.818,414.297 225.813,414.291 225.809,414.285 C 225.807,414.28 225.806,414.273 225.806,414.267 L 225.806,414.265 C 225.806,414.258 225.807,414.253 225.809,414.247 C 225.813,414.242 225.818,414.237 225.823,414.235 C 225.826,414.233 225.833,414.232 225.839,414.232 L 225.98,414.247 L 226.005,414.247 C 226.013,414.245 226.021,414.244 226.028,414.241 C 226.045,414.235 226.058,414.227 226.068,414.216 C 226.07,414.215 226.071,414.215 226.071,414.214 C 226.071,414.213 226.071,414.213 226.072,414.211 C 226.082,414.201 226.088,414.189 226.093,414.175 C 226.099,414.163 226.101,414.149 226.101,414.134 C 226.101,414.117 226.098,414.1 226.091,414.083 C 226.086,414.068 226.077,414.054 226.065,414.041 C 226.053,414.028 226.041,414.018 226.026,414.01 C 226.011,414.002 225.996,413.997 225.98,413.995 L 225.859,413.981 C 225.841,413.98 225.826,413.981 225.811,413.989 Z M 226.157,414.014 L 226.155,414.412 L 226.399,414.438 C 226.414,414.44 226.427,414.438 226.439,414.433 C 226.452,414.429 226.462,414.422 226.473,414.413 L 226.473,414.413 C 226.482,414.403 226.49,414.392 226.495,414.38 C 226.499,414.368 226.502,414.355 226.502,414.34 C 226.502,414.325 226.5,414.311 226.495,414.298 C 226.491,414.284 226.484,414.272 226.474,414.261 C 226.465,414.251 226.455,414.242 226.442,414.235 C 226.433,414.231 226.424,414.227 226.414,414.224 C 226.412,414.224 226.411,414.224 226.41,414.224 L 226.41,414.223 L 226.226,414.204 L 226.226,414.021 L 226.157,414.014 Z M 226.559,414.056 L 226.558,414.453 L 226.625,414.46 L 226.627,414.062 L 226.559,414.056 Z M 226.682,414.066 L 226.682,414.466 L 226.924,414.49 C 226.939,414.492 226.952,414.49 226.966,414.485 C 226.977,414.482 226.988,414.475 226.998,414.467 C 227.008,414.457 227.014,414.447 227.02,414.434 C 227.025,414.422 227.027,414.408 227.027,414.394 C 227.027,414.379 227.025,414.365 227.021,414.352 C 227.014,414.338 227.008,414.327 227,414.317 C 226.99,414.306 226.979,414.297 226.968,414.289 C 226.958,414.284 226.948,414.281 226.938,414.278 L 226.994,414.169 L 227.027,414.103 L 226.951,414.095 L 226.916,414.162 L 226.879,414.233 L 226.878,414.235 C 226.872,414.246 226.864,414.253 226.853,414.258 C 226.843,414.263 226.832,414.266 226.82,414.265 L 226.751,414.257 L 226.751,414.073 L 226.682,414.066 Z M 227.061,414.108 L 227.098,414.182 L 227.258,414.525 L 227.42,414.216 L 227.456,414.149 L 227.378,414.14 L 227.343,414.208 L 227.258,414.369 L 227.174,414.189 L 227.138,414.116 L 227.061,414.108 Z M 224.961,414.143 L 225.136,414.161 C 225.14,414.162 225.142,414.162 225.144,414.163 C 225.146,414.163 225.149,414.164 225.151,414.165 C 225.156,414.169 225.162,414.175 225.167,414.181 C 225.17,414.188 225.172,414.193 225.172,414.201 C 225.172,414.208 225.171,414.215 225.168,414.218 C 225.166,414.222 225.162,414.226 225.161,414.227 C 225.159,414.229 225.155,414.231 225.153,414.232 C 225.149,414.233 225.147,414.234 225.145,414.234 L 225.136,414.234 L 224.961,414.216 L 224.961,414.143 Z M 227.647,414.167 L 227.647,414.495 L 227.487,414.479 L 227.487,414.55 L 227.873,414.59 L 227.873,414.518 L 227.714,414.502 L 227.714,414.175 L 227.647,414.167 Z M 228.032,414.224 C 228.008,414.232 227.989,414.244 227.971,414.259 C 227.955,414.276 227.939,414.295 227.929,414.319 C 227.92,414.342 227.914,414.367 227.914,414.395 C 227.914,414.422 227.919,414.449 227.929,414.473 C 227.939,414.498 227.954,414.522 227.971,414.542 C 227.989,414.562 228.008,414.577 228.031,414.591 C 228.055,414.604 228.081,414.612 228.106,414.614 C 228.134,414.616 228.158,414.614 228.182,414.606 C 228.205,414.599 228.227,414.586 228.244,414.569 C 228.26,414.553 228.274,414.534 228.285,414.51 C 228.295,414.487 228.299,414.462 228.3,414.434 C 228.299,414.407 228.295,414.381 228.286,414.356 C 228.274,414.331 228.26,414.308 228.244,414.287 C 228.228,414.268 228.206,414.252 228.183,414.24 C 228.159,414.227 228.135,414.219 228.108,414.216 L 228.069,414.216 C 228.056,414.218 228.045,414.22 228.032,414.224 Z M 228.342,414.24 L 228.341,414.636 L 228.584,414.663 C 228.597,414.663 228.611,414.661 228.624,414.658 C 228.637,414.654 228.648,414.647 228.658,414.639 C 228.667,414.629 228.673,414.619 228.679,414.607 C 228.685,414.594 228.686,414.581 228.686,414.566 C 228.686,414.551 228.685,414.538 228.68,414.524 C 228.675,414.511 228.669,414.499 228.658,414.488 C 228.649,414.477 228.639,414.469 228.628,414.461 C 228.617,414.456 228.608,414.453 228.596,414.451 L 228.654,414.342 L 228.687,414.274 L 228.61,414.266 L 228.576,414.335 L 228.538,414.405 L 228.537,414.408 C 228.531,414.418 228.524,414.427 228.512,414.432 C 228.503,414.435 228.491,414.438 228.478,414.436 L 228.41,414.43 L 228.41,414.247 L 228.342,414.24 Z M 226.225,414.274 L 226.399,414.292 C 226.401,414.292 226.405,414.293 226.408,414.294 C 226.409,414.295 226.412,414.295 226.414,414.297 L 226.414,414.298 C 226.42,414.301 226.426,414.306 226.429,414.314 C 226.433,414.32 226.434,414.326 226.435,414.334 C 226.434,414.34 226.433,414.346 226.431,414.35 C 226.428,414.354 226.427,414.356 226.424,414.358 C 226.421,414.361 226.42,414.362 226.415,414.364 C 226.411,414.366 226.407,414.366 226.399,414.366 L 226.225,414.348 L 226.225,414.274 Z M 228.108,414.285 C 228.124,414.288 228.14,414.293 228.155,414.302 C 228.169,414.31 228.184,414.322 228.195,414.334 C 228.206,414.347 228.215,414.361 228.221,414.376 C 228.229,414.393 228.231,414.409 228.231,414.428 C 228.231,414.446 228.228,414.461 228.221,414.476 C 228.215,414.492 228.206,414.504 228.195,414.514 C 228.183,414.524 228.169,414.534 228.155,414.538 C 228.14,414.543 228.124,414.544 228.106,414.543 C 228.09,414.541 228.073,414.536 228.059,414.527 C 228.045,414.52 228.031,414.509 228.02,414.497 C 228.008,414.483 227.999,414.469 227.994,414.453 C 227.987,414.437 227.984,414.419 227.984,414.402 C 227.984,414.383 227.987,414.368 227.994,414.353 C 227.999,414.338 228.008,414.326 228.02,414.316 C 228.031,414.305 228.045,414.297 228.059,414.292 C 228.074,414.285 228.09,414.284 228.108,414.285 Z M 226.751,414.328 L 226.924,414.347 C 226.927,414.347 226.93,414.348 226.931,414.349 C 226.934,414.35 226.936,414.35 226.939,414.351 C 226.945,414.355 226.95,414.36 226.954,414.366 C 226.958,414.373 226.96,414.379 226.96,414.386 C 226.96,414.393 226.958,414.399 226.956,414.402 C 226.954,414.406 226.951,414.409 226.949,414.412 C 226.946,414.414 226.943,414.415 226.939,414.417 C 226.936,414.418 226.93,414.419 226.924,414.419 L 226.751,414.401 L 226.751,414.328 Z M 228.41,414.499 L 228.584,414.518 C 228.587,414.518 228.589,414.519 228.591,414.52 C 228.594,414.522 228.595,414.522 228.597,414.523 C 228.604,414.526 228.609,414.531 228.614,414.538 C 228.617,414.544 228.619,414.55 228.619,414.558 C 228.619,414.565 228.617,414.569 228.616,414.575 C 228.614,414.578 228.61,414.582 228.608,414.582 C 228.606,414.585 228.602,414.588 228.599,414.589 C 228.595,414.591 228.59,414.592 228.584,414.591 L 228.41,414.574 L 228.41,414.499 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 215.818,426.777 L 215.644,426.937 L 233.052,428.073 L 233.141,428.035 C 233.171,428.024 233.199,427.997 233.199,427.951 L 233.199,427.908 L 215.818,426.777 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 215.644,426.937 L 215.643,403.486 L 215.731,403.402 L 215.818,403.415 L 215.818,426.777 L 215.644,426.937 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--SILVER_GREY, .KN95_NR_small_individuals--SILVER_GREY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.434 -475.375 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.846' gradientTransform='translate(30.076 447.904)'%3E%3Cstop offset='0' stop-color='%23b5b5b2'/%3E%3Cstop offset='1' stop-color='%23eeeeea'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.92' gradientTransform='translate(26.537 448.519)'%3E%3Cstop offset='0' stop-color='%23969694'/%3E%3Cstop offset='1' stop-color='%23cacac7'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.1' gradientTransform='translate(30.07 467.888)'%3E%3Cstop offset='0' stop-color='%23b2b2af'/%3E%3Cstop offset='1' stop-color='%23cececb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.229' gradientTransform='translate(25.397 469.943)'%3E%3Cstop offset='0' stop-color='%2390908e'/%3E%3Cstop offset='1' stop-color='%23b2b2af'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(38.389 469.758) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23babab7'/%3E%3Cstop offset='1' stop-color='%23d4d4d1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.244 457.647) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b0b0ad'/%3E%3Cstop offset='1' stop-color='%23cacac7'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.163 458.646) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.163,445.49 L 27.163,468.976 L 44.61,470.096 C 44.622,470.081 44.632,470.062 44.632,470.038 L 44.632,447.857 L 27.163,445.49 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.163,445.49 L 23.699,448.853 L 23.698,470.874 L 27.163,468.976 L 27.163,445.49 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.163,468.976 L 23.698,470.874 L 40.63,471.802 L 44.574,470.123 C 44.587,470.117 44.6,470.109 44.61,470.096 L 27.163,468.976 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.076,468.708 L 23.696,470.598 L 23.695,470.874 L 27.076,469.024 L 27.076,468.708 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.204,451.091 L 34.204,451.502 L 34.276,451.51 L 34.276,451.099 L 34.204,451.091 Z M 34.334,451.106 L 34.334,451.513 L 34.406,451.467 L 34.668,451.291 L 34.668,451.551 L 34.739,451.559 L 34.739,451.151 L 34.668,451.198 L 34.406,451.373 L 34.406,451.113 L 34.334,451.106 Z M 34.797,451.156 L 34.797,451.567 L 35,451.589 C 35.028,451.591 35.054,451.589 35.077,451.581 C 35.102,451.573 35.124,451.561 35.143,451.543 C 35.161,451.526 35.175,451.507 35.185,451.484 C 35.196,451.46 35.202,451.433 35.202,451.405 C 35.202,451.38 35.198,451.356 35.189,451.332 C 35.18,451.309 35.168,451.287 35.153,451.268 C 35.152,451.266 35.15,451.263 35.148,451.261 C 35.146,451.259 35.145,451.256 35.141,451.255 C 35.124,451.233 35.102,451.216 35.077,451.203 C 35.055,451.19 35.029,451.181 35,451.178 L 34.797,451.156 Z M 35.259,451.206 L 35.259,451.616 L 35.333,451.623 L 35.333,451.215 L 35.259,451.206 Z M 34.869,451.236 L 35,451.25 C 35.017,451.254 35.034,451.259 35.049,451.268 C 35.066,451.275 35.079,451.287 35.091,451.3 C 35.102,451.313 35.113,451.327 35.12,451.345 C 35.126,451.362 35.129,451.379 35.13,451.397 C 35.129,451.416 35.126,451.431 35.12,451.446 C 35.113,451.463 35.102,451.476 35.091,451.486 C 35.079,451.497 35.066,451.505 35.049,451.51 C 35.034,451.515 35.017,451.516 35,451.514 L 34.869,451.5 L 34.869,451.236 Z M 35.574,451.242 L 35.403,451.558 L 35.366,451.629 L 35.448,451.636 L 35.484,451.568 L 35.574,451.403 L 35.662,451.588 L 35.698,451.663 L 35.779,451.674 L 35.742,451.596 L 35.574,451.242 Z M 35.815,451.268 L 35.815,451.677 L 35.888,451.685 L 35.888,451.275 L 35.815,451.268 Z M 35.946,451.281 L 35.946,451.691 L 36.148,451.713 C 36.176,451.715 36.202,451.713 36.227,451.706 C 36.251,451.698 36.272,451.686 36.29,451.668 C 36.31,451.652 36.323,451.631 36.334,451.608 C 36.345,451.585 36.35,451.558 36.35,451.53 C 36.35,451.505 36.346,451.481 36.338,451.458 C 36.329,451.433 36.318,451.412 36.302,451.392 C 36.3,451.39 36.298,451.388 36.296,451.386 C 36.295,451.384 36.293,451.381 36.289,451.379 C 36.271,451.358 36.251,451.341 36.227,451.327 C 36.202,451.314 36.176,451.306 36.148,451.302 L 35.946,451.281 Z M 36.534,451.362 C 36.508,451.369 36.486,451.381 36.468,451.397 C 36.449,451.415 36.435,451.435 36.424,451.459 C 36.415,451.482 36.409,451.509 36.409,451.536 L 36.409,451.74 L 36.48,451.749 L 36.48,451.544 C 36.48,451.525 36.484,451.51 36.49,451.494 C 36.497,451.48 36.507,451.467 36.52,451.456 C 36.532,451.444 36.545,451.436 36.561,451.431 C 36.576,451.426 36.592,451.423 36.611,451.426 C 36.629,451.429 36.646,451.433 36.661,451.442 C 36.677,451.449 36.691,451.462 36.703,451.476 C 36.714,451.488 36.724,451.504 36.73,451.52 C 36.738,451.537 36.741,451.554 36.741,451.573 L 36.741,451.777 L 36.814,451.786 L 36.814,451.581 C 36.814,451.551 36.808,451.525 36.798,451.5 C 36.786,451.473 36.773,451.448 36.753,451.429 C 36.736,451.409 36.714,451.391 36.689,451.378 C 36.666,451.365 36.639,451.357 36.611,451.353 C 36.582,451.351 36.557,451.353 36.534,451.362 Z M 36.017,451.362 L 36.148,451.377 C 36.165,451.378 36.181,451.383 36.198,451.391 C 36.214,451.4 36.228,451.41 36.24,451.423 C 36.252,451.437 36.261,451.454 36.267,451.47 C 36.274,451.486 36.277,451.504 36.278,451.521 C 36.277,451.539 36.274,451.557 36.267,451.572 C 36.261,451.588 36.252,451.601 36.24,451.611 C 36.228,451.622 36.214,451.629 36.198,451.635 C 36.181,451.64 36.165,451.641 36.148,451.639 L 36.017,451.625 L 36.017,451.362 Z M 36.849,451.379 L 36.885,451.457 L 37.054,451.811 L 37.225,451.494 L 37.261,451.423 L 37.181,451.416 L 37.144,451.485 L 37.054,451.649 L 36.967,451.465 L 36.929,451.388 L 36.849,451.379 Z M 37.396,451.442 C 37.385,451.443 37.377,451.445 37.368,451.448 C 37.355,451.455 37.344,451.462 37.334,451.472 C 37.325,451.481 37.316,451.49 37.31,451.502 C 37.306,451.511 37.303,451.52 37.301,451.528 C 37.298,451.538 37.297,451.547 37.297,451.558 L 37.297,451.837 L 37.368,451.845 L 37.368,451.558 C 37.37,451.551 37.372,451.543 37.377,451.537 C 37.381,451.53 37.386,451.525 37.394,451.521 C 37.402,451.517 37.411,451.515 37.418,451.514 L 37.631,451.537 L 37.631,451.465 L 37.425,451.442 C 37.415,451.44 37.405,451.442 37.396,451.442 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.002,457.82 L 32,459.873 L 32.338,459.906 L 32.34,458.859 L 32.619,459.162 L 32.87,459.436 L 33.398,460.014 L 33.901,460.066 L 33.072,459.157 L 33.896,458.013 L 33.478,457.972 L 32.821,458.884 L 32.34,458.362 L 32.34,457.855 L 32.002,457.82 Z M 34.068,458.031 L 34.242,458.415 L 35.035,460.182 L 35.832,458.578 L 36.005,458.228 L 35.627,458.19 L 35.453,458.538 L 35.036,459.375 L 34.621,458.453 L 34.449,458.072 L 34.068,458.031 Z M 36.177,458.246 L 36.179,458.246 L 36.44,458.638 L 36.905,459.342 L 37.121,459.662 L 37.379,460.054 L 36.172,459.93 L 36.172,460.297 L 37.64,460.446 L 38.065,460.488 L 37.802,460.096 L 37.331,459.384 L 37.119,459.063 L 36.863,458.682 L 38.076,458.805 L 38.077,458.438 L 36.608,458.29 L 36.604,458.29 L 36.177,458.246 Z M 38.652,458.541 C 38.592,458.563 38.537,458.597 38.49,458.644 C 38.444,458.689 38.407,458.744 38.381,458.808 C 38.355,458.872 38.342,458.943 38.341,459.02 L 38.34,459.963 C 38.34,460.04 38.352,460.113 38.379,460.183 C 38.406,460.252 38.441,460.314 38.489,460.37 C 38.535,460.425 38.589,460.471 38.651,460.505 C 38.712,460.54 38.779,460.562 38.85,460.569 L 40.235,460.709 L 40.235,460.343 L 38.85,460.202 C 38.817,460.199 38.788,460.188 38.762,460.169 C 38.736,460.149 38.715,460.124 38.7,460.095 C 38.684,460.065 38.677,460.032 38.677,459.997 L 38.677,459.807 L 39.897,459.931 L 39.897,459.565 L 38.677,459.441 L 38.677,459.053 C 38.677,459.019 38.685,458.989 38.702,458.963 C 38.717,458.936 38.738,458.914 38.764,458.901 C 38.79,458.886 38.818,458.881 38.852,458.884 L 40.237,459.025 L 40.238,458.659 L 38.852,458.517 C 38.781,458.511 38.715,458.518 38.652,458.541 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.005,456.729 L 34.005,457.167 C 34.005,457.19 34.01,457.211 34.017,457.232 C 34.025,457.252 34.036,457.271 34.051,457.286 C 34.066,457.304 34.082,457.316 34.102,457.327 C 34.122,457.336 34.142,457.343 34.164,457.346 L 34.597,457.392 L 34.597,457.284 L 34.164,457.239 C 34.155,457.238 34.146,457.234 34.137,457.228 C 34.129,457.223 34.124,457.216 34.118,457.207 C 34.113,457.198 34.111,457.189 34.111,457.179 L 34.111,457.123 L 34.492,457.161 L 34.492,457.056 L 34.111,457.015 L 34.111,456.741 L 34.005,456.729 Z M 34.683,456.801 L 34.683,457.239 C 34.683,457.26 34.687,457.283 34.695,457.304 C 34.702,457.323 34.713,457.342 34.728,457.358 C 34.743,457.374 34.76,457.387 34.779,457.398 C 34.798,457.409 34.818,457.415 34.842,457.418 L 35.274,457.463 L 35.275,457.356 L 34.842,457.31 C 34.832,457.31 34.823,457.306 34.815,457.301 C 34.807,457.294 34.801,457.286 34.796,457.278 C 34.791,457.27 34.789,457.26 34.789,457.25 L 34.789,457.195 L 35.169,457.234 L 35.169,457.128 L 34.788,457.088 L 34.789,456.812 L 34.683,456.801 Z M 35.36,456.873 L 35.359,457.473 L 35.733,457.512 C 35.755,457.514 35.776,457.512 35.794,457.505 C 35.814,457.499 35.83,457.49 35.845,457.477 L 35.846,457.475 C 35.862,457.461 35.872,457.446 35.881,457.427 C 35.888,457.409 35.894,457.388 35.894,457.366 C 35.894,457.343 35.888,457.323 35.882,457.304 C 35.873,457.283 35.863,457.264 35.848,457.249 C 35.835,457.233 35.818,457.22 35.8,457.21 C 35.786,457.2 35.771,457.195 35.754,457.192 C 35.753,457.192 35.751,457.192 35.75,457.192 L 35.75,457.19 L 35.466,457.159 L 35.466,456.885 L 35.36,456.873 Z M 35.977,456.935 L 35.977,457.114 C 35.977,457.126 35.978,457.136 35.98,457.148 C 35.983,457.16 35.987,457.173 35.99,457.183 C 35.999,457.207 36.011,457.225 36.027,457.242 C 36.042,457.26 36.059,457.274 36.08,457.285 C 36.1,457.297 36.121,457.304 36.145,457.308 L 36.398,457.335 L 36.401,457.335 C 36.413,457.338 36.424,457.342 36.434,457.349 C 36.443,457.357 36.45,457.366 36.455,457.377 C 36.461,457.387 36.463,457.399 36.463,457.412 C 36.463,457.425 36.46,457.436 36.454,457.446 C 36.448,457.456 36.441,457.463 36.43,457.469 C 36.419,457.474 36.408,457.476 36.394,457.475 L 35.978,457.432 L 35.978,457.538 L 36.394,457.581 C 36.419,457.584 36.443,457.581 36.463,457.574 C 36.483,457.568 36.501,457.557 36.519,457.542 C 36.535,457.53 36.547,457.51 36.555,457.49 C 36.565,457.471 36.569,457.448 36.569,457.423 C 36.569,457.411 36.568,457.398 36.566,457.387 C 36.563,457.374 36.56,457.362 36.554,457.352 C 36.552,457.342 36.547,457.332 36.54,457.323 C 36.535,457.314 36.528,457.304 36.521,457.295 C 36.505,457.277 36.486,457.262 36.466,457.251 C 36.445,457.239 36.424,457.232 36.4,457.228 L 36.398,457.228 C 36.397,457.228 36.396,457.228 36.394,457.227 L 36.145,457.201 C 36.133,457.2 36.123,457.195 36.114,457.187 C 36.104,457.18 36.096,457.17 36.091,457.159 C 36.086,457.148 36.084,457.137 36.084,457.126 L 36.084,457.056 L 36.567,457.105 L 36.567,456.999 L 36.15,456.954 L 35.977,456.935 Z M 37.067,457.052 L 37.067,457.65 L 37.172,457.58 L 37.553,457.323 L 37.553,457.703 L 37.658,457.714 L 37.659,457.116 L 37.553,457.187 L 37.172,457.443 L 37.172,457.064 L 37.067,457.052 Z M 37.744,457.125 L 37.743,457.724 L 38.117,457.764 C 38.138,457.767 38.159,457.765 38.179,457.757 C 38.199,457.751 38.215,457.742 38.229,457.728 C 38.243,457.715 38.255,457.699 38.263,457.68 C 38.271,457.661 38.276,457.64 38.276,457.619 C 38.276,457.596 38.271,457.575 38.264,457.555 C 38.256,457.536 38.245,457.517 38.231,457.501 C 38.218,457.485 38.201,457.472 38.184,457.46 C 38.168,457.452 38.153,457.446 38.137,457.443 L 38.223,457.282 L 38.276,457.181 L 38.158,457.168 L 38.104,457.27 L 38.047,457.375 L 38.044,457.38 C 38.035,457.394 38.023,457.407 38.006,457.413 C 37.992,457.422 37.974,457.424 37.954,457.422 L 37.85,457.411 L 37.851,457.135 L 37.744,457.125 Z M 35.466,457.264 L 35.734,457.293 C 35.737,457.293 35.74,457.294 35.746,457.297 C 35.749,457.298 35.752,457.299 35.756,457.303 L 35.756,457.303 C 35.766,457.308 35.774,457.315 35.779,457.325 C 35.785,457.334 35.788,457.343 35.788,457.355 C 35.788,457.365 35.786,457.373 35.782,457.379 C 35.779,457.385 35.775,457.39 35.772,457.393 C 35.768,457.395 35.764,457.398 35.757,457.4 C 35.751,457.404 35.742,457.405 35.734,457.404 L 35.466,457.375 L 35.466,457.264 Z M 37.85,457.517 L 38.117,457.546 C 38.121,457.547 38.124,457.548 38.128,457.549 C 38.132,457.55 38.135,457.552 38.138,457.554 C 38.148,457.559 38.156,457.568 38.161,457.576 C 38.167,457.586 38.172,457.596 38.172,457.607 C 38.17,457.617 38.168,457.625 38.164,457.633 C 38.16,457.639 38.158,457.642 38.154,457.646 C 38.151,457.648 38.147,457.652 38.14,457.653 C 38.134,457.657 38.126,457.658 38.117,457.657 L 37.849,457.629 L 37.85,457.517 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.119,455.535 L 32.119,455.931 L 32.361,455.957 C 32.376,455.958 32.389,455.957 32.402,455.953 C 32.413,455.947 32.425,455.942 32.435,455.933 L 32.435,455.932 C 32.445,455.923 32.452,455.913 32.457,455.901 C 32.462,455.888 32.466,455.875 32.466,455.859 C 32.466,455.844 32.463,455.831 32.458,455.818 C 32.453,455.805 32.447,455.793 32.437,455.782 C 32.428,455.771 32.416,455.762 32.405,455.756 C 32.396,455.748 32.386,455.745 32.376,455.744 C 32.374,455.744 32.373,455.743 32.372,455.743 L 32.372,455.743 L 32.188,455.724 L 32.188,455.542 L 32.119,455.535 Z M 32.519,455.573 L 32.519,455.971 L 32.763,455.998 C 32.778,455.999 32.791,455.998 32.803,455.994 C 32.815,455.989 32.826,455.983 32.835,455.974 C 32.845,455.964 32.852,455.954 32.859,455.942 C 32.863,455.93 32.866,455.916 32.867,455.903 C 32.866,455.887 32.863,455.873 32.86,455.859 C 32.852,455.846 32.846,455.835 32.837,455.824 C 32.828,455.812 32.818,455.804 32.806,455.797 C 32.796,455.792 32.787,455.786 32.777,455.786 L 32.831,455.677 L 32.867,455.61 L 32.79,455.602 L 32.754,455.669 L 32.717,455.74 L 32.715,455.743 C 32.71,455.755 32.701,455.761 32.692,455.766 C 32.68,455.771 32.67,455.773 32.658,455.771 L 32.589,455.764 L 32.589,455.581 L 32.519,455.573 Z M 33.026,455.644 C 33.004,455.651 32.983,455.664 32.966,455.679 C 32.947,455.696 32.933,455.715 32.925,455.737 C 32.914,455.762 32.91,455.786 32.908,455.814 C 32.91,455.842 32.914,455.869 32.924,455.893 C 32.933,455.918 32.947,455.941 32.964,455.96 C 32.983,455.981 33.003,455.998 33.026,456.01 C 33.049,456.023 33.073,456.031 33.101,456.034 C 33.127,456.036 33.152,456.034 33.177,456.025 C 33.198,456.018 33.22,456.006 33.237,455.99 C 33.255,455.973 33.269,455.954 33.278,455.93 C 33.288,455.907 33.293,455.882 33.293,455.853 C 33.293,455.826 33.288,455.8 33.278,455.775 C 33.269,455.749 33.255,455.728 33.238,455.709 C 33.221,455.688 33.198,455.671 33.177,455.659 C 33.152,455.646 33.128,455.637 33.102,455.635 L 33.063,455.636 C 33.05,455.637 33.038,455.638 33.026,455.644 Z M 33.493,455.676 L 33.493,456.003 L 33.336,455.987 L 33.336,456.057 L 33.719,456.098 L 33.719,456.026 L 33.564,456.01 L 33.564,455.683 L 33.493,455.676 Z M 33.102,455.706 C 33.119,455.709 33.135,455.713 33.15,455.722 C 33.165,455.729 33.178,455.74 33.188,455.754 C 33.199,455.766 33.21,455.78 33.216,455.797 C 33.222,455.812 33.226,455.829 33.226,455.847 C 33.226,455.865 33.222,455.881 33.216,455.896 C 33.21,455.91 33.199,455.923 33.188,455.934 C 33.177,455.944 33.164,455.953 33.15,455.957 C 33.134,455.961 33.119,455.963 33.101,455.961 C 33.084,455.96 33.067,455.956 33.053,455.947 C 33.038,455.94 33.024,455.928 33.013,455.916 C 33.003,455.903 32.994,455.89 32.987,455.872 C 32.982,455.856 32.977,455.838 32.977,455.823 C 32.977,455.804 32.982,455.786 32.987,455.773 C 32.994,455.759 33.003,455.745 33.014,455.734 C 33.025,455.724 33.038,455.716 33.053,455.711 C 33.067,455.707 33.085,455.705 33.102,455.706 Z M 33.838,455.72 C 33.828,455.724 33.816,455.73 33.807,455.74 C 33.797,455.748 33.79,455.76 33.784,455.772 C 33.779,455.785 33.778,455.799 33.778,455.812 L 33.777,455.997 C 33.778,456.011 33.778,456.025 33.784,456.038 C 33.79,456.052 33.797,456.064 33.807,456.075 C 33.816,456.087 33.826,456.095 33.838,456.102 C 33.851,456.109 33.865,456.114 33.879,456.115 L 34.161,456.143 L 34.161,456.072 L 33.879,456.043 C 33.874,456.042 33.867,456.039 33.861,456.036 C 33.857,456.033 33.852,456.027 33.849,456.022 C 33.846,456.016 33.844,456.01 33.844,456.003 L 33.844,455.966 L 34.093,455.993 L 34.093,455.921 L 33.844,455.895 L 33.845,455.82 C 33.845,455.812 33.846,455.807 33.849,455.802 C 33.852,455.797 33.857,455.793 33.861,455.791 C 33.867,455.786 33.875,455.786 33.879,455.786 L 34.161,455.816 L 34.161,455.745 L 33.88,455.716 C 33.865,455.715 33.852,455.716 33.838,455.72 Z M 34.327,455.778 C 34.304,455.786 34.285,455.799 34.267,455.814 C 34.249,455.831 34.235,455.85 34.225,455.873 C 34.216,455.896 34.21,455.922 34.21,455.949 C 34.21,455.977 34.216,456.004 34.225,456.028 C 34.235,456.052 34.249,456.075 34.267,456.097 C 34.285,456.116 34.304,456.132 34.327,456.145 C 34.351,456.158 34.376,456.166 34.403,456.168 L 34.595,456.187 L 34.595,456.117 L 34.403,456.097 C 34.385,456.096 34.37,456.09 34.354,456.083 C 34.34,456.074 34.326,456.064 34.314,456.051 C 34.304,456.038 34.294,456.025 34.288,456.007 C 34.283,455.992 34.279,455.974 34.279,455.957 C 34.279,455.939 34.283,455.922 34.288,455.908 C 34.294,455.893 34.304,455.88 34.315,455.871 C 34.326,455.859 34.34,455.851 34.355,455.846 C 34.37,455.84 34.385,455.838 34.403,455.84 L 34.595,455.861 L 34.595,455.791 L 34.403,455.771 L 34.364,455.771 C 34.352,455.771 34.34,455.774 34.327,455.778 Z M 32.188,455.795 L 32.362,455.812 C 32.364,455.812 32.368,455.812 32.37,455.813 C 32.372,455.814 32.374,455.815 32.377,455.817 C 32.383,455.821 32.388,455.825 32.392,455.832 C 32.396,455.838 32.396,455.844 32.396,455.851 C 32.396,455.858 32.396,455.864 32.394,455.869 C 32.391,455.873 32.389,455.877 32.387,455.877 C 32.384,455.88 32.381,455.882 32.377,455.883 C 32.373,455.885 32.369,455.886 32.362,455.885 L 32.188,455.868 L 32.188,455.795 Z M 34.808,455.812 L 34.808,456.139 L 34.65,456.123 L 34.65,456.195 L 35.035,456.235 L 35.035,456.162 L 34.877,456.146 L 34.877,455.819 L 34.808,455.812 Z M 32.589,455.835 L 32.763,455.852 C 32.764,455.853 32.768,455.853 32.771,455.854 C 32.773,455.855 32.775,455.857 32.778,455.857 C 32.784,455.861 32.789,455.867 32.793,455.873 C 32.796,455.879 32.798,455.886 32.798,455.894 C 32.798,455.901 32.796,455.905 32.795,455.909 C 32.793,455.914 32.79,455.917 32.788,455.919 C 32.786,455.921 32.782,455.922 32.779,455.924 C 32.775,455.927 32.769,455.927 32.763,455.927 L 32.589,455.909 L 32.589,455.835 Z M 35.09,455.84 L 35.089,456.239 L 35.159,456.247 L 35.159,455.848 L 35.09,455.84 Z M 35.389,455.873 L 35.227,456.183 L 35.19,456.25 L 35.268,456.258 L 35.305,456.191 L 35.388,456.029 L 35.472,456.209 L 35.507,456.283 L 35.584,456.291 L 35.549,456.217 L 35.389,455.873 Z M 35.682,455.911 C 35.67,455.916 35.66,455.922 35.65,455.93 C 35.641,455.94 35.633,455.95 35.628,455.962 C 35.622,455.974 35.618,455.989 35.618,456.004 L 35.618,456.186 C 35.618,456.202 35.621,456.216 35.627,456.229 C 35.631,456.243 35.64,456.255 35.65,456.265 C 35.659,456.276 35.67,456.286 35.682,456.292 C 35.694,456.3 35.707,456.304 35.722,456.306 L 36.003,456.335 L 36.003,456.263 L 35.722,456.235 C 35.714,456.234 35.709,456.231 35.704,456.227 C 35.699,456.224 35.695,456.219 35.692,456.213 C 35.688,456.208 35.687,456.201 35.687,456.195 L 35.687,456.157 L 35.936,456.183 L 35.936,456.113 L 35.688,456.087 L 35.688,456.011 C 35.688,456.004 35.689,455.999 35.693,455.994 C 35.695,455.988 35.699,455.984 35.705,455.982 C 35.709,455.979 35.715,455.978 35.723,455.978 L 36.004,456.007 L 36.004,455.935 L 35.723,455.907 C 35.708,455.906 35.694,455.907 35.682,455.911 Z M 36.327,455.968 L 36.325,456.367 L 36.568,456.393 C 36.582,456.393 36.596,456.393 36.609,456.387 C 36.621,456.384 36.633,456.377 36.643,456.368 C 36.652,456.36 36.659,456.348 36.665,456.336 C 36.669,456.324 36.672,456.31 36.672,456.296 C 36.672,456.281 36.669,456.266 36.665,456.253 C 36.66,456.24 36.653,456.229 36.644,456.219 C 36.635,456.209 36.624,456.199 36.611,456.192 C 36.603,456.186 36.592,456.182 36.582,456.18 L 36.638,456.071 L 36.672,456.004 L 36.595,455.997 L 36.561,456.064 L 36.524,456.135 L 36.522,456.137 C 36.516,456.148 36.507,456.154 36.496,456.16 C 36.487,456.164 36.476,456.167 36.464,456.167 L 36.394,456.159 L 36.394,455.976 L 36.327,455.968 Z M 36.792,456.026 C 36.779,456.03 36.768,456.038 36.76,456.046 C 36.75,456.054 36.743,456.064 36.738,456.076 C 36.732,456.09 36.728,456.104 36.728,456.119 L 36.728,456.302 C 36.728,456.317 36.732,456.331 36.737,456.345 C 36.742,456.358 36.749,456.37 36.76,456.382 C 36.768,456.393 36.779,456.4 36.792,456.408 C 36.804,456.415 36.817,456.42 36.831,456.42 L 37.114,456.449 L 37.114,456.379 L 36.831,456.349 C 36.826,456.348 36.819,456.347 36.814,456.342 C 36.811,456.34 36.805,456.334 36.802,456.329 C 36.799,456.322 36.797,456.316 36.797,456.31 L 36.797,456.272 L 37.044,456.297 L 37.044,456.226 L 36.798,456.201 L 36.798,456.127 C 36.798,456.12 36.799,456.115 36.802,456.109 C 36.805,456.103 36.811,456.1 36.814,456.097 C 36.82,456.094 36.826,456.094 36.831,456.094 L 37.115,456.122 L 37.115,456.051 L 36.832,456.022 C 36.818,456.021 36.805,456.023 36.792,456.026 Z M 37.243,456.074 C 37.229,456.078 37.217,456.088 37.205,456.097 C 37.193,456.107 37.186,456.121 37.178,456.135 C 37.172,456.149 37.168,456.166 37.168,456.183 L 37.239,456.189 C 37.239,456.18 37.241,456.17 37.244,456.162 C 37.25,456.155 37.256,456.148 37.263,456.145 C 37.272,456.141 37.279,456.14 37.291,456.141 L 37.412,456.153 C 37.421,456.154 37.431,456.158 37.439,456.162 C 37.445,456.169 37.452,456.175 37.457,456.185 C 37.462,456.195 37.464,456.203 37.464,456.213 C 37.464,456.224 37.462,456.233 37.457,456.24 C 37.452,456.248 37.445,456.253 37.439,456.257 C 37.43,456.261 37.421,456.263 37.412,456.262 L 37.272,456.248 L 37.252,456.248 C 37.244,456.249 37.239,456.25 37.233,456.251 C 37.22,456.255 37.211,456.262 37.2,456.27 C 37.196,456.275 37.191,456.279 37.186,456.286 C 37.181,456.294 37.176,456.304 37.173,456.315 C 37.17,456.323 37.168,456.335 37.168,456.345 L 37.168,456.348 C 37.168,456.362 37.172,456.376 37.176,456.39 C 37.182,456.403 37.189,456.416 37.199,456.426 C 37.21,456.438 37.219,456.446 37.231,456.452 C 37.244,456.46 37.257,456.464 37.272,456.465 L 37.428,456.482 C 37.442,456.483 37.455,456.482 37.468,456.477 C 37.481,456.474 37.492,456.467 37.501,456.459 C 37.511,456.449 37.519,456.439 37.524,456.426 C 37.53,456.415 37.532,456.4 37.532,456.385 L 37.532,456.384 L 37.463,456.375 L 37.463,456.377 C 37.463,456.384 37.462,456.39 37.458,456.395 C 37.455,456.4 37.451,456.405 37.445,456.408 C 37.441,456.41 37.435,456.411 37.428,456.41 L 37.272,456.394 C 37.265,456.393 37.259,456.391 37.254,456.386 C 37.25,456.384 37.244,456.379 37.241,456.373 C 37.239,456.367 37.238,456.361 37.238,456.354 L 37.238,456.351 C 37.238,456.345 37.239,456.34 37.241,456.334 C 37.244,456.329 37.25,456.325 37.254,456.322 C 37.259,456.32 37.265,456.319 37.272,456.319 L 37.412,456.334 L 37.437,456.334 C 37.444,456.332 37.453,456.33 37.46,456.329 C 37.476,456.322 37.489,456.315 37.501,456.302 C 37.501,456.302 37.502,456.301 37.503,456.3 C 37.503,456.299 37.503,456.298 37.505,456.297 C 37.514,456.287 37.521,456.276 37.525,456.263 C 37.531,456.25 37.533,456.235 37.533,456.221 C 37.533,456.203 37.53,456.186 37.523,456.17 C 37.518,456.155 37.509,456.141 37.497,456.129 C 37.485,456.116 37.473,456.105 37.458,456.097 C 37.444,456.09 37.428,456.084 37.412,456.083 L 37.291,456.069 C 37.274,456.067 37.257,456.069 37.243,456.074 Z M 37.589,456.102 L 37.587,456.499 L 37.831,456.523 C 37.845,456.526 37.858,456.523 37.87,456.519 C 37.883,456.515 37.894,456.509 37.905,456.5 L 37.905,456.5 C 37.914,456.49 37.921,456.478 37.927,456.467 C 37.931,456.454 37.934,456.441 37.934,456.426 C 37.934,456.411 37.933,456.397 37.927,456.385 C 37.922,456.371 37.915,456.36 37.907,456.348 C 37.897,456.338 37.888,456.329 37.875,456.322 C 37.866,456.317 37.856,456.314 37.845,456.311 C 37.844,456.311 37.843,456.31 37.842,456.31 L 37.842,456.31 L 37.657,456.29 L 37.657,456.108 L 37.589,456.102 Z M 37.991,456.142 L 37.99,456.541 L 38.057,456.548 L 38.058,456.149 L 37.991,456.142 Z M 38.115,456.154 L 38.114,456.552 L 38.356,456.576 C 38.371,456.58 38.384,456.577 38.398,456.573 C 38.41,456.569 38.419,456.562 38.43,456.554 C 38.439,456.544 38.446,456.535 38.451,456.521 C 38.457,456.509 38.459,456.496 38.46,456.48 C 38.459,456.466 38.457,456.452 38.452,456.439 C 38.447,456.426 38.44,456.412 38.432,456.403 C 38.423,456.393 38.412,456.384 38.4,456.376 C 38.389,456.371 38.379,456.367 38.37,456.364 L 38.425,456.257 L 38.46,456.189 L 38.383,456.181 L 38.347,456.25 L 38.312,456.32 L 38.309,456.322 C 38.303,456.332 38.296,456.341 38.285,456.345 C 38.275,456.35 38.263,456.353 38.251,456.351 L 38.183,456.344 L 38.183,456.16 L 38.115,456.154 Z M 38.494,456.195 L 38.529,456.269 L 38.689,456.612 L 38.852,456.302 L 38.888,456.235 L 38.81,456.227 L 38.775,456.294 L 38.689,456.456 L 38.605,456.277 L 38.571,456.203 L 38.494,456.195 Z M 36.394,456.229 L 36.569,456.248 C 36.572,456.249 36.574,456.25 36.576,456.25 C 36.579,456.25 36.58,456.251 36.582,456.252 C 36.589,456.256 36.594,456.261 36.599,456.268 C 36.602,456.274 36.604,456.281 36.604,456.289 C 36.604,456.294 36.603,456.3 36.6,456.305 C 36.598,456.31 36.595,456.312 36.593,456.314 C 36.59,456.316 36.587,456.317 36.585,456.319 C 36.581,456.32 36.579,456.321 36.577,456.321 L 36.568,456.321 L 36.394,456.302 L 36.394,456.229 Z M 39.078,456.254 L 39.078,456.583 L 38.92,456.567 L 38.919,456.637 L 39.304,456.677 L 39.304,456.606 L 39.146,456.588 L 39.147,456.261 L 39.078,456.254 Z M 39.464,456.31 C 39.44,456.319 39.421,456.33 39.403,456.347 C 39.387,456.362 39.372,456.383 39.361,456.406 C 39.352,456.428 39.346,456.454 39.346,456.482 C 39.346,456.509 39.351,456.535 39.361,456.561 C 39.371,456.586 39.386,456.609 39.403,456.628 C 39.421,456.649 39.44,456.664 39.464,456.677 C 39.488,456.69 39.513,456.698 39.539,456.701 C 39.567,456.703 39.59,456.701 39.614,456.693 C 39.637,456.685 39.658,456.674 39.676,456.656 C 39.693,456.64 39.706,456.62 39.716,456.598 C 39.727,456.574 39.731,456.549 39.732,456.521 C 39.731,456.494 39.727,456.467 39.716,456.443 C 39.706,456.418 39.693,456.395 39.676,456.374 C 39.659,456.355 39.638,456.34 39.614,456.327 C 39.591,456.315 39.567,456.306 39.54,456.302 L 39.502,456.302 C 39.488,456.305 39.477,456.308 39.464,456.31 Z M 39.774,456.327 L 39.773,456.723 L 40.016,456.749 C 40.029,456.75 40.043,456.749 40.056,456.745 C 40.069,456.741 40.08,456.734 40.09,456.726 C 40.099,456.716 40.106,456.706 40.111,456.694 C 40.116,456.682 40.119,456.668 40.119,456.653 C 40.119,456.639 40.116,456.625 40.112,456.611 C 40.107,456.598 40.101,456.586 40.09,456.574 C 40.082,456.565 40.071,456.555 40.06,456.548 C 40.05,456.543 40.039,456.54 40.028,456.537 L 40.085,456.429 L 40.119,456.361 L 40.042,456.354 L 40.008,456.422 L 39.97,456.492 L 39.969,456.496 C 39.963,456.505 39.955,456.512 39.945,456.517 C 39.935,456.522 39.922,456.523 39.91,456.522 L 39.842,456.516 L 39.842,456.334 L 39.774,456.327 Z M 37.657,456.361 L 37.831,456.379 C 37.833,456.38 37.837,456.38 37.84,456.382 C 37.842,456.382 37.844,456.383 37.846,456.384 L 37.846,456.385 C 37.852,456.388 37.857,456.393 37.861,456.399 C 37.865,456.406 37.866,456.412 37.867,456.421 C 37.866,456.426 37.866,456.433 37.864,456.436 C 37.86,456.441 37.858,456.444 37.857,456.445 C 37.854,456.448 37.851,456.449 37.847,456.451 C 37.843,456.452 37.837,456.453 37.831,456.452 L 37.657,456.435 L 37.657,456.361 Z M 39.54,456.374 C 39.557,456.375 39.573,456.38 39.587,456.388 C 39.602,456.397 39.615,456.408 39.627,456.421 C 39.639,456.434 39.647,456.449 39.653,456.464 C 39.661,456.48 39.663,456.497 39.663,456.515 C 39.663,456.533 39.661,456.548 39.653,456.563 C 39.647,456.579 39.638,456.592 39.626,456.601 C 39.615,456.612 39.602,456.62 39.587,456.625 C 39.573,456.63 39.556,456.631 39.539,456.63 C 39.522,456.626 39.506,456.622 39.49,456.615 C 39.477,456.607 39.463,456.596 39.451,456.584 C 39.439,456.57 39.431,456.555 39.425,456.541 C 39.419,456.522 39.416,456.507 39.415,456.49 C 39.416,456.471 39.419,456.454 39.425,456.44 C 39.431,456.426 39.439,456.412 39.451,456.402 C 39.463,456.393 39.477,456.384 39.49,456.379 C 39.506,456.374 39.522,456.372 39.54,456.374 Z M 38.183,456.415 L 38.356,456.434 C 38.359,456.434 38.36,456.435 38.364,456.436 C 38.366,456.436 38.368,456.437 38.371,456.439 C 38.377,456.442 38.382,456.447 38.385,456.452 C 38.389,456.46 38.392,456.466 38.392,456.473 C 38.392,456.48 38.389,456.486 38.388,456.49 C 38.385,456.493 38.383,456.496 38.381,456.499 C 38.379,456.501 38.375,456.503 38.372,456.504 C 38.367,456.506 38.361,456.506 38.356,456.506 L 38.183,456.488 L 38.183,456.415 Z M 39.842,456.587 L 40.016,456.606 C 40.019,456.606 40.021,456.607 40.023,456.607 C 40.026,456.609 40.027,456.609 40.029,456.61 C 40.036,456.613 40.041,456.619 40.046,456.625 C 40.05,456.631 40.052,456.638 40.052,456.645 C 40.051,456.652 40.05,456.657 40.048,456.661 C 40.046,456.665 40.042,456.668 40.039,456.67 C 40.038,456.673 40.034,456.674 40.031,456.676 C 40.027,456.678 40.022,456.679 40.016,456.678 L 39.842,456.661 L 39.842,456.587 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.249,468.864 L 27.076,469.025 L 44.484,470.16 L 44.574,470.122 C 44.603,470.111 44.632,470.084 44.632,470.038 L 44.632,469.995 L 27.249,468.864 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.076,469.025 L 27.075,445.574 L 27.163,445.489 L 27.249,445.503 L 27.249,468.863 L 27.076,469.025 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--SANDY_BEIGE, .KN95_NR_small_individuals--SANDY_BEIGE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='300.284 -391.2 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.301' y2='19.847' gradientTransform='translate(312.927 363.729)'%3E%3Cstop offset='0' stop-color='%23cfc39d'/%3E%3Cstop offset='1' stop-color='%23f2e7c1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.353' y2='19.921' gradientTransform='translate(309.388 364.345)'%3E%3Cstop offset='0' stop-color='%239d926f'/%3E%3Cstop offset='1' stop-color='%23cec4a4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(312.921 383.713)'%3E%3Cstop offset='0' stop-color='%23bcb18b'/%3E%3Cstop offset='1' stop-color='%23d2c8a7'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.231' gradientTransform='translate(308.246 385.77)'%3E%3Cstop offset='0' stop-color='%23928b74'/%3E%3Cstop offset='1' stop-color='%23b4ac8f'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.009' y2='-0.163' gradientTransform='translate(321.24 385.584) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23beb597'/%3E%3Cstop offset='1' stop-color='%23d7cdab'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(310.095 373.473) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b2aa8e'/%3E%3Cstop offset='1' stop-color='%23cec4a4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(317.013 374.471) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cpath d='M 310.013,361.316 L 310.013,384.802 L 327.46,385.922 C 327.473,385.907 327.483,385.888 327.483,385.863 L 327.483,363.683 L 310.013,361.316 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 310.013,361.316 L 306.55,364.678 L 306.548,386.7 L 310.013,384.802 L 310.013,361.316 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 310.013,384.802 L 306.548,386.7 L 323.48,387.629 L 327.423,385.949 C 327.437,385.943 327.45,385.934 327.46,385.922 L 310.013,384.802 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 309.926,384.534 L 306.547,386.423 L 306.546,386.7 L 309.926,384.849 L 309.926,384.534 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_3'%3E%3Cpath d='M 317.055,366.917 L 317.055,367.328 L 317.127,367.336 L 317.127,366.925 L 317.055,366.917 Z M 317.184,366.931 L 317.184,367.34 L 317.257,367.292 L 317.518,367.117 L 317.518,367.377 L 317.59,367.387 L 317.59,366.976 L 317.518,367.025 L 317.257,367.199 L 317.257,366.94 L 317.184,366.931 Z M 317.647,366.982 L 317.647,367.393 L 317.849,367.414 C 317.879,367.418 317.905,367.415 317.928,367.406 C 317.952,367.4 317.973,367.387 317.994,367.368 C 318.012,367.352 318.026,367.333 318.036,367.31 C 318.046,367.286 318.052,367.259 318.052,367.231 C 318.052,367.206 318.047,367.182 318.04,367.159 C 318.031,367.135 318.019,367.113 318.004,367.095 C 318.002,367.092 318,367.089 317.999,367.087 C 317.997,367.085 317.995,367.083 317.992,367.08 C 317.973,367.059 317.952,367.042 317.928,367.029 C 317.906,367.016 317.88,367.007 317.849,367.004 L 317.647,366.982 Z M 318.11,367.031 L 318.11,367.443 L 318.183,367.45 L 318.183,367.04 L 318.11,367.031 Z M 317.718,367.063 L 317.849,367.077 C 317.867,367.079 317.884,367.085 317.9,367.093 C 317.917,367.102 317.93,367.112 317.941,367.126 C 317.953,367.139 317.962,367.153 317.97,367.17 C 317.976,367.188 317.979,367.206 317.98,367.222 C 317.979,367.241 317.976,367.257 317.97,367.273 C 317.962,367.289 317.953,367.302 317.941,367.312 C 317.93,367.323 317.917,367.331 317.9,367.336 C 317.884,367.341 317.867,367.342 317.849,367.341 L 317.718,367.327 L 317.718,367.063 Z M 318.423,367.067 L 318.254,367.386 L 318.217,367.454 L 318.298,367.463 L 318.334,367.393 L 318.423,367.228 L 318.512,367.413 L 318.549,367.49 L 318.629,367.5 L 318.593,367.421 L 318.423,367.067 Z M 318.667,367.093 L 318.667,367.503 L 318.738,367.511 L 318.738,367.101 L 318.667,367.093 Z M 318.797,367.108 L 318.797,367.517 L 318.998,367.539 C 319.026,367.541 319.052,367.539 319.077,367.532 C 319.102,367.524 319.122,367.511 319.141,367.495 C 319.159,367.477 319.173,367.457 319.183,367.434 C 319.195,367.411 319.201,367.386 319.201,367.355 C 319.201,367.331 319.197,367.307 319.187,367.284 C 319.179,367.259 319.168,367.238 319.151,367.219 C 319.15,367.217 319.148,367.214 319.146,367.212 C 319.145,367.209 319.144,367.207 319.14,367.206 C 319.122,367.185 319.102,367.167 319.077,367.153 C 319.052,367.14 319.026,367.132 318.998,367.128 L 318.797,367.108 Z M 319.383,367.187 C 319.358,367.194 319.336,367.207 319.319,367.224 C 319.299,367.241 319.285,367.26 319.275,367.284 C 319.264,367.309 319.259,367.335 319.259,367.362 L 319.259,367.567 L 319.331,367.575 L 319.331,367.369 C 319.331,367.351 319.334,367.335 319.342,367.32 C 319.347,367.306 319.358,367.292 319.37,367.283 C 319.382,367.271 319.395,367.262 319.41,367.257 C 319.426,367.252 319.443,367.25 319.461,367.252 C 319.479,367.254 319.495,367.259 319.511,367.269 C 319.528,367.277 319.542,367.288 319.554,367.302 C 319.565,367.314 319.574,367.329 319.581,367.346 C 319.587,367.363 319.591,367.381 319.591,367.4 L 319.591,367.604 L 319.665,367.612 L 319.665,367.406 C 319.665,367.377 319.659,367.351 319.648,367.325 C 319.636,367.299 319.622,367.276 319.603,367.254 C 319.585,367.234 319.565,367.218 319.54,367.204 C 319.516,367.192 319.489,367.183 319.461,367.179 C 319.432,367.177 319.407,367.179 319.383,367.187 Z M 318.868,367.188 L 318.998,367.202 C 319.016,367.204 319.032,367.209 319.048,367.218 C 319.064,367.226 319.078,367.237 319.091,367.25 C 319.103,367.263 319.111,367.279 319.119,367.296 C 319.125,367.312 319.128,367.329 319.129,367.348 C 319.128,367.365 319.125,367.384 319.119,367.399 C 319.111,367.413 319.103,367.426 319.091,367.437 C 319.078,367.447 319.064,367.455 319.048,367.46 C 319.032,367.466 319.016,367.467 318.998,367.465 L 318.868,367.451 L 318.868,367.188 Z M 319.699,367.206 L 319.735,367.284 L 319.905,367.637 L 320.075,367.32 L 320.113,367.25 L 320.031,367.241 L 319.995,367.31 L 319.905,367.476 L 319.816,367.291 L 319.78,367.214 L 319.699,367.206 Z M 320.247,367.269 C 320.236,367.27 320.227,367.271 320.219,367.275 C 320.206,367.281 320.195,367.288 320.184,367.297 C 320.174,367.307 320.166,367.316 320.159,367.328 C 320.156,367.336 320.153,367.346 320.15,367.354 C 320.148,367.364 320.147,367.373 320.147,367.386 L 320.147,367.664 L 320.219,367.67 L 320.219,367.386 C 320.22,367.377 320.223,367.368 320.228,367.363 C 320.232,367.355 320.237,367.351 320.246,367.347 C 320.252,367.342 320.261,367.341 320.268,367.341 L 320.481,367.363 L 320.481,367.29 L 320.275,367.267 C 320.265,367.266 320.255,367.267 320.247,367.269 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_5'%3E%3Cg id='Group_6'%3E%3Cpath d='M 314.852,373.646 L 314.849,375.698 L 315.188,375.733 L 315.19,374.685 L 315.47,374.987 L 315.721,375.262 L 316.249,375.84 L 316.751,375.892 L 315.923,374.983 L 316.746,373.839 L 316.329,373.797 L 315.672,374.709 L 315.19,374.189 L 315.19,373.681 L 314.852,373.646 Z M 316.919,373.856 L 317.092,374.242 L 317.886,376.007 L 318.683,374.403 L 318.855,374.054 L 318.478,374.016 L 318.303,374.365 L 317.887,375.202 L 317.472,374.279 L 317.299,373.897 L 316.919,373.856 Z M 319.028,374.071 L 319.03,374.071 L 319.29,374.464 L 319.756,375.167 L 319.971,375.488 L 320.23,375.881 L 319.023,375.756 L 319.023,376.122 L 320.49,376.272 L 320.915,376.315 L 320.653,375.922 L 320.182,375.211 L 319.97,374.889 L 319.713,374.508 L 320.926,374.63 L 320.927,374.264 L 319.458,374.116 L 319.455,374.116 L 319.028,374.071 Z M 321.503,374.367 C 321.443,374.39 321.386,374.423 321.341,374.469 C 321.295,374.514 321.257,374.57 321.232,374.634 C 321.206,374.699 321.193,374.77 321.192,374.846 L 321.191,375.79 C 321.191,375.866 321.203,375.939 321.23,376.008 C 321.256,376.078 321.291,376.14 321.34,376.196 C 321.385,376.251 321.44,376.296 321.501,376.331 C 321.563,376.366 321.63,376.387 321.7,376.395 L 323.086,376.536 L 323.086,376.17 L 321.7,376.028 C 321.668,376.024 321.639,376.014 321.612,375.994 C 321.586,375.974 321.566,375.949 321.551,375.921 C 321.535,375.891 321.527,375.857 321.527,375.823 L 321.527,375.632 L 322.747,375.757 L 322.748,375.391 L 321.527,375.267 L 321.527,374.881 C 321.527,374.844 321.537,374.816 321.552,374.79 C 321.569,374.761 321.588,374.739 321.613,374.726 C 321.641,374.713 321.669,374.707 321.701,374.709 L 323.088,374.85 L 323.089,374.485 L 321.701,374.343 C 321.632,374.337 321.566,374.344 321.503,374.367 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_8'%3E%3Cpath d='M 316.856,372.555 L 316.856,372.992 C 316.856,373.016 316.859,373.037 316.867,373.057 C 316.875,373.078 316.887,373.097 316.902,373.112 C 316.917,373.129 316.933,373.142 316.952,373.153 C 316.971,373.163 316.993,373.169 317.015,373.171 L 317.448,373.217 L 317.448,373.111 L 317.015,373.065 C 317.006,373.063 316.996,373.06 316.988,373.054 C 316.979,373.048 316.973,373.041 316.968,373.033 C 316.963,373.024 316.961,373.015 316.961,373.005 L 316.961,372.949 L 317.343,372.988 L 317.343,372.881 L 316.96,372.841 L 316.961,372.567 L 316.856,372.555 Z M 317.533,372.628 L 317.532,373.065 C 317.532,373.086 317.537,373.108 317.546,373.129 C 317.553,373.149 317.564,373.167 317.579,373.183 C 317.594,373.2 317.611,373.213 317.629,373.223 C 317.648,373.235 317.669,373.241 317.693,373.244 L 318.125,373.288 L 318.125,373.182 L 317.693,373.137 C 317.683,373.135 317.674,373.132 317.666,373.126 C 317.657,373.12 317.65,373.112 317.645,373.104 C 317.641,373.095 317.639,373.086 317.639,373.076 L 317.639,373.021 L 318.02,373.061 L 318.02,372.954 L 317.638,372.913 L 317.639,372.638 L 317.533,372.628 Z M 318.212,372.699 L 318.21,373.299 L 318.584,373.339 C 318.605,373.34 318.626,373.339 318.644,373.331 C 318.664,373.325 318.681,373.315 318.696,373.303 L 318.696,373.301 C 318.711,373.287 318.722,373.272 318.731,373.254 C 318.738,373.235 318.744,373.214 318.744,373.191 C 318.744,373.17 318.738,373.149 318.732,373.13 C 318.723,373.109 318.712,373.091 318.7,373.075 C 318.685,373.059 318.669,373.046 318.651,373.035 C 318.635,373.026 318.621,373.021 318.604,373.018 C 318.603,373.018 318.602,373.018 318.6,373.017 L 318.6,373.016 L 318.317,372.985 L 318.317,372.711 L 318.212,372.699 Z M 318.827,372.762 L 318.827,372.939 C 318.827,372.952 318.828,372.963 318.83,372.975 C 318.833,372.986 318.836,372.998 318.84,373.01 C 318.849,373.032 318.861,373.051 318.878,373.067 C 318.893,373.086 318.91,373.1 318.93,373.112 C 318.949,373.123 318.971,373.13 318.996,373.134 L 319.249,373.161 L 319.252,373.161 C 319.263,373.164 319.274,373.169 319.283,373.176 C 319.293,373.183 319.3,373.191 319.307,373.203 C 319.312,373.213 319.313,373.225 319.313,373.238 C 319.313,373.25 319.311,373.262 319.304,373.272 C 319.298,373.281 319.291,373.288 319.28,373.294 C 319.269,373.3 319.258,373.302 319.245,373.301 L 318.828,373.257 L 318.828,373.364 L 319.244,373.407 C 319.269,373.41 319.293,373.407 319.313,373.401 C 319.334,373.394 319.352,373.383 319.369,373.369 C 319.384,373.355 319.397,373.338 319.406,373.316 C 319.415,373.297 319.42,373.274 319.42,373.249 C 319.42,373.237 319.419,373.225 319.416,373.213 C 319.413,373.201 319.409,373.189 319.404,373.178 C 319.401,373.167 319.396,373.158 319.39,373.148 C 319.384,373.139 319.377,373.13 319.37,373.122 C 319.356,373.104 319.337,373.088 319.317,373.077 C 319.295,373.065 319.275,373.058 319.251,373.054 L 319.248,373.054 C 319.248,373.054 319.246,373.054 319.245,373.054 L 318.996,373.028 C 318.984,373.025 318.973,373.021 318.964,373.013 C 318.954,373.006 318.946,372.996 318.941,372.985 C 318.936,372.975 318.934,372.964 318.934,372.952 L 318.934,372.881 L 319.418,372.932 L 319.418,372.825 L 319.001,372.78 L 318.827,372.762 Z M 319.917,372.879 L 319.917,373.476 L 320.023,373.405 L 320.403,373.148 L 320.403,373.529 L 320.508,373.539 L 320.509,372.942 L 320.403,373.013 L 320.023,373.269 L 320.023,372.89 L 319.917,372.879 Z M 320.594,372.951 L 320.593,373.551 L 320.968,373.59 C 320.989,373.593 321.01,373.591 321.029,373.584 C 321.049,373.577 321.065,373.567 321.081,373.553 C 321.094,373.54 321.106,373.525 321.114,373.506 C 321.122,373.487 321.126,373.467 321.127,373.444 C 321.127,373.422 321.122,373.402 321.114,373.381 C 321.107,373.362 321.096,373.344 321.082,373.327 C 321.068,373.311 321.052,373.298 321.034,373.286 C 321.02,373.279 321.004,373.272 320.988,373.268 L 321.074,373.108 L 321.127,373.008 L 321.009,372.994 L 320.954,373.095 L 320.897,373.202 L 320.895,373.206 C 320.886,373.221 320.874,373.233 320.857,373.24 C 320.842,373.248 320.823,373.249 320.804,373.248 L 320.7,373.237 L 320.7,372.962 L 320.594,372.951 Z M 318.317,373.091 L 318.585,373.12 C 318.588,373.12 318.591,373.121 318.596,373.122 C 318.6,373.124 318.603,373.126 318.606,373.128 L 318.606,373.128 C 318.616,373.133 318.624,373.14 318.629,373.151 C 318.635,373.159 318.637,373.17 318.637,373.18 C 318.637,373.19 318.635,373.199 318.632,373.204 C 318.628,373.211 318.625,373.215 318.622,373.219 C 318.618,373.221 318.613,373.225 318.607,373.227 C 318.602,373.23 318.593,373.231 318.585,373.23 L 318.317,373.202 L 318.317,373.091 Z M 320.7,373.344 L 320.968,373.371 C 320.972,373.372 320.975,373.373 320.979,373.374 C 320.983,373.377 320.986,373.378 320.989,373.379 C 320.999,373.385 321.007,373.394 321.011,373.403 C 321.019,373.412 321.022,373.422 321.022,373.433 C 321.021,373.443 321.02,373.451 321.015,373.458 C 321.011,373.464 321.009,373.468 321.005,373.471 C 321.002,373.474 320.997,373.478 320.991,373.48 C 320.984,373.482 320.977,373.483 320.968,373.482 L 320.699,373.455 L 320.7,373.344 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_9' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_10'%3E%3Cpath d='M 314.969,371.36 L 314.968,371.757 L 315.211,371.782 C 315.227,371.783 315.24,371.782 315.253,371.778 C 315.264,371.774 315.276,371.768 315.285,371.758 L 315.285,371.757 C 315.295,371.749 315.302,371.739 315.307,371.727 C 315.312,371.714 315.316,371.701 315.316,371.686 C 315.316,371.67 315.312,371.656 315.308,371.643 C 315.303,371.63 315.296,371.62 315.286,371.608 C 315.278,371.597 315.267,371.589 315.256,371.582 C 315.246,371.576 315.236,371.571 315.227,371.569 C 315.224,371.569 315.222,371.569 315.222,371.569 L 315.222,371.569 L 315.039,371.55 L 315.039,371.368 L 314.969,371.36 Z M 315.37,371.4 L 315.369,371.798 L 315.613,371.824 C 315.628,371.825 315.641,371.824 315.653,371.82 C 315.667,371.815 315.677,371.809 315.686,371.8 C 315.696,371.791 315.703,371.78 315.71,371.768 C 315.714,371.756 315.717,371.742 315.717,371.728 C 315.717,371.713 315.714,371.699 315.711,371.686 C 315.703,371.672 315.697,371.66 315.688,371.65 C 315.679,371.639 315.669,371.63 315.656,371.623 C 315.646,371.617 315.637,371.613 315.627,371.611 L 315.681,371.504 L 315.717,371.435 L 315.64,371.427 L 315.605,371.494 L 315.569,371.566 L 315.567,371.569 C 315.561,371.58 315.551,371.587 315.542,371.591 C 315.53,371.597 315.52,371.598 315.508,371.597 L 315.438,371.59 L 315.438,371.407 L 315.37,371.4 Z M 315.876,371.469 C 315.854,371.477 315.834,371.49 315.817,371.505 C 315.798,371.522 315.784,371.542 315.774,371.563 C 315.764,371.589 315.759,371.613 315.757,371.64 C 315.759,371.667 315.764,371.694 315.774,371.718 C 315.784,371.744 315.798,371.767 315.815,371.787 C 315.833,371.807 315.853,371.824 315.875,371.836 C 315.9,371.849 315.924,371.857 315.951,371.86 C 315.977,371.862 316.003,371.86 316.027,371.851 C 316.048,371.844 316.07,371.833 316.087,371.815 C 316.105,371.799 316.12,371.78 316.129,371.756 C 316.138,371.733 316.144,371.707 316.144,371.679 C 316.144,371.653 316.139,371.626 316.129,371.601 C 316.12,371.576 316.105,371.555 316.087,371.534 C 316.071,371.513 316.05,371.497 316.027,371.485 C 316.003,371.473 315.978,371.465 315.952,371.461 L 315.913,371.463 C 315.9,371.464 315.889,371.466 315.876,371.469 Z M 316.344,371.502 L 316.344,371.828 L 316.185,371.813 L 316.185,371.883 L 316.57,371.925 L 316.57,371.853 L 316.414,371.836 L 316.414,371.508 L 316.344,371.502 Z M 315.952,371.532 C 315.969,371.534 315.984,371.539 316.001,371.547 C 316.016,371.556 316.029,371.566 316.039,371.579 C 316.05,371.591 316.059,371.607 316.066,371.623 C 316.072,371.639 316.076,371.655 316.076,371.673 C 316.076,371.692 316.072,371.707 316.066,371.722 C 316.059,371.737 316.05,371.75 316.039,371.759 C 316.028,371.769 316.015,371.778 316,371.782 C 315.984,371.788 315.969,371.789 315.951,371.788 C 315.935,371.787 315.918,371.782 315.904,371.773 C 315.889,371.766 315.874,371.755 315.863,371.742 C 315.853,371.729 315.844,371.716 315.837,371.698 C 315.833,371.682 315.828,371.665 315.828,371.648 C 315.828,371.63 315.833,371.613 315.837,371.598 C 315.844,371.584 315.853,371.571 315.864,371.56 C 315.875,371.55 315.89,371.542 315.904,371.537 C 315.918,371.532 315.936,371.531 315.952,371.532 Z M 316.689,371.545 C 316.679,371.55 316.667,371.556 316.656,371.566 C 316.647,371.576 316.64,371.585 316.634,371.598 C 316.63,371.61 316.627,371.624 316.627,371.639 L 316.627,371.823 C 316.627,371.836 316.628,371.851 316.634,371.865 C 316.64,371.879 316.647,371.89 316.656,371.902 C 316.667,371.913 316.677,371.921 316.689,371.928 C 316.702,371.934 316.716,371.939 316.73,371.941 L 317.011,371.969 L 317.011,371.898 L 316.73,371.868 C 316.724,371.867 316.718,371.866 316.712,371.862 C 316.707,371.859 316.703,371.853 316.699,371.848 C 316.697,371.841 316.695,371.835 316.695,371.828 L 316.695,371.792 L 316.943,371.818 L 316.943,371.746 L 316.695,371.721 L 316.696,371.646 C 316.696,371.639 316.697,371.634 316.7,371.628 C 316.703,371.623 316.708,371.62 316.712,371.616 C 316.718,371.613 316.724,371.612 316.73,371.613 L 317.012,371.642 L 317.012,371.571 L 316.731,371.542 C 316.716,371.541 316.703,371.542 316.689,371.545 Z M 317.177,371.603 C 317.155,371.611 317.135,371.624 317.118,371.64 C 317.098,371.656 317.085,371.676 317.075,371.699 C 317.066,371.723 317.06,371.748 317.06,371.775 C 317.06,371.802 317.066,371.829 317.075,371.853 C 317.084,371.879 317.098,371.902 317.118,371.923 C 317.135,371.942 317.155,371.958 317.177,371.971 C 317.201,371.983 317.227,371.991 317.254,371.994 L 317.445,372.015 L 317.445,371.943 L 317.254,371.924 C 317.236,371.922 317.22,371.916 317.204,371.908 C 317.19,371.9 317.176,371.89 317.164,371.876 C 317.155,371.864 317.146,371.85 317.138,371.834 C 317.133,371.817 317.13,371.801 317.13,371.782 C 317.13,371.765 317.133,371.748 317.139,371.733 C 317.146,371.718 317.155,371.706 317.165,371.696 C 317.176,371.686 317.19,371.677 317.205,371.672 C 317.22,371.666 317.236,371.665 317.254,371.666 L 317.446,371.688 L 317.446,371.616 L 317.254,371.596 L 317.215,371.596 C 317.202,371.597 317.19,371.6 317.177,371.603 Z M 315.039,371.621 L 315.212,371.637 C 315.215,371.639 315.218,371.639 315.22,371.64 C 315.222,371.64 315.224,371.641 315.228,371.643 C 315.233,371.647 315.239,371.651 315.243,371.658 C 315.246,371.664 315.247,371.67 315.247,371.678 C 315.247,371.685 315.246,371.691 315.244,371.694 C 315.242,371.699 315.24,371.702 315.238,371.703 C 315.235,371.705 315.232,371.707 315.228,371.709 C 315.222,371.711 315.219,371.712 315.212,371.711 L 315.039,371.693 L 315.039,371.621 Z M 317.659,371.639 L 317.659,371.965 L 317.5,371.949 L 317.5,372.022 L 317.886,372.06 L 317.886,371.989 L 317.727,371.971 L 317.727,371.645 L 317.659,371.639 Z M 315.438,371.66 L 315.613,371.678 C 315.615,371.679 315.618,371.679 315.62,371.681 C 315.623,371.681 315.625,371.683 315.628,371.684 C 315.633,371.688 315.639,371.692 315.643,371.699 C 315.646,371.705 315.648,371.712 315.648,371.72 C 315.648,371.726 315.646,371.731 315.645,371.735 C 315.643,371.74 315.64,371.743 315.637,371.744 C 315.635,371.746 315.632,371.748 315.629,371.75 C 315.624,371.752 315.619,371.753 315.613,371.752 L 315.438,371.734 L 315.438,371.66 Z M 317.94,371.666 L 317.939,372.065 L 318.009,372.073 L 318.01,371.674 L 317.94,371.666 Z M 318.24,371.699 L 318.077,372.008 L 318.041,372.076 L 318.119,372.084 L 318.155,372.017 L 318.239,371.855 L 318.323,372.035 L 318.358,372.108 L 318.435,372.117 L 318.399,372.042 L 318.24,371.699 Z M 318.532,371.737 C 318.52,371.742 318.51,371.748 318.5,371.756 C 318.491,371.766 318.482,371.776 318.479,371.788 C 318.473,371.801 318.469,371.815 318.469,371.829 L 318.469,372.014 C 318.469,372.028 318.472,372.041 318.478,372.055 C 318.482,372.069 318.49,372.08 318.5,372.092 C 318.509,372.102 318.519,372.112 318.532,372.118 C 318.545,372.126 318.558,372.13 318.573,372.131 L 318.853,372.16 L 318.853,372.089 L 318.573,372.06 C 318.566,372.06 318.559,372.057 318.555,372.054 C 318.55,372.05 318.546,372.046 318.543,372.039 C 318.539,372.034 318.538,372.028 318.538,372.022 L 318.538,371.982 L 318.786,372.008 L 318.786,371.939 L 318.539,371.913 L 318.539,371.836 C 318.539,371.83 318.54,371.825 318.544,371.82 C 318.546,371.815 318.55,371.809 318.556,371.808 C 318.56,371.804 318.566,371.803 318.574,371.804 L 318.854,371.834 L 318.854,371.761 L 318.574,371.733 C 318.559,371.731 318.545,371.733 318.532,371.737 Z M 319.176,371.795 L 319.175,372.192 L 319.419,372.218 C 319.433,372.219 319.447,372.218 319.46,372.214 C 319.473,372.209 319.482,372.203 319.493,372.194 C 319.502,372.185 319.508,372.174 319.515,372.162 C 319.519,372.15 319.521,372.137 319.521,372.122 C 319.521,372.106 319.519,372.092 319.515,372.079 C 319.51,372.066 319.503,372.054 319.494,372.045 C 319.485,372.035 319.475,372.025 319.462,372.019 C 319.454,372.013 319.442,372.008 319.432,372.006 L 319.488,371.898 L 319.522,371.83 L 319.445,371.823 L 319.41,371.89 L 319.375,371.96 L 319.373,371.963 C 319.366,371.973 319.358,371.981 319.347,371.985 C 319.338,371.99 319.326,371.992 319.315,371.992 L 319.244,371.984 L 319.245,371.802 L 319.176,371.795 Z M 319.643,371.853 C 319.63,371.856 319.618,371.864 319.61,371.872 C 319.6,371.88 319.593,371.891 319.587,371.904 C 319.583,371.916 319.579,371.931 319.579,371.945 L 319.579,372.129 C 319.579,372.143 319.582,372.157 319.587,372.17 C 319.592,372.183 319.6,372.196 319.61,372.208 C 319.618,372.218 319.629,372.226 319.643,372.235 C 319.655,372.241 319.668,372.246 319.682,372.247 L 319.964,372.275 L 319.964,372.204 L 319.682,372.175 C 319.677,372.174 319.67,372.172 319.665,372.169 C 319.661,372.165 319.656,372.159 319.653,372.155 C 319.649,372.148 319.648,372.142 319.648,372.136 L 319.648,372.098 L 319.895,372.124 L 319.895,372.052 L 319.648,372.028 L 319.648,371.952 C 319.648,371.945 319.65,371.94 319.653,371.934 C 319.656,371.93 319.661,371.926 319.666,371.923 C 319.67,371.92 319.677,371.919 319.682,371.919 L 319.964,371.949 L 319.964,371.877 L 319.683,371.848 C 319.669,371.847 319.655,371.849 319.643,371.853 Z M 320.094,371.9 C 320.081,371.905 320.067,371.914 320.055,371.924 C 320.043,371.933 320.036,371.947 320.028,371.96 C 320.023,371.975 320.019,371.991 320.019,372.008 L 320.09,372.016 C 320.09,372.005 320.092,371.995 320.095,371.989 C 320.101,371.981 320.107,371.975 320.114,371.971 C 320.122,371.967 320.13,371.966 320.141,371.966 L 320.262,371.979 C 320.271,371.98 320.281,371.983 320.288,371.989 C 320.294,371.995 320.303,372.001 320.307,372.012 C 320.313,372.021 320.315,372.028 320.315,372.04 C 320.315,372.05 320.313,372.059 320.307,372.066 C 320.303,372.074 320.294,372.079 320.288,372.083 C 320.28,372.087 320.271,372.089 320.262,372.088 L 320.122,372.074 L 320.103,372.074 C 320.095,372.074 320.09,372.076 320.083,372.078 C 320.07,372.081 320.061,372.088 320.05,372.095 C 320.047,372.101 320.041,372.105 320.036,372.112 C 320.031,372.12 320.027,372.13 320.024,372.14 C 320.021,372.15 320.019,372.16 320.019,372.171 L 320.019,372.174 C 320.019,372.189 320.023,372.202 320.027,372.215 C 320.032,372.229 320.039,372.241 320.049,372.253 C 320.06,372.264 320.069,372.273 320.083,372.279 C 320.094,372.286 320.108,372.29 320.122,372.291 L 320.279,372.307 C 320.292,372.309 320.307,372.307 320.319,372.304 C 320.332,372.299 320.343,372.292 320.352,372.285 C 320.361,372.275 320.37,372.265 320.374,372.253 C 320.38,372.241 320.382,372.226 320.382,372.211 L 320.382,372.209 L 320.314,372.201 L 320.314,372.203 C 320.314,372.209 320.313,372.215 320.309,372.221 C 320.306,372.226 320.302,372.23 320.295,372.235 C 320.291,372.236 320.285,372.238 320.279,372.237 L 320.122,372.221 C 320.116,372.219 320.109,372.216 320.105,372.213 C 320.101,372.209 320.095,372.204 320.092,372.198 C 320.09,372.193 320.088,372.186 320.088,372.18 L 320.088,372.177 C 320.088,372.17 320.09,372.166 320.092,372.159 C 320.095,372.155 320.101,372.151 320.105,372.148 C 320.109,372.146 320.116,372.144 320.122,372.145 L 320.262,372.159 L 320.287,372.159 C 320.294,372.157 320.304,372.157 320.311,372.154 C 320.327,372.148 320.34,372.14 320.351,372.129 C 320.352,372.128 320.353,372.127 320.354,372.126 C 320.354,372.125 320.354,372.125 320.356,372.124 C 320.364,372.113 320.371,372.102 320.375,372.089 C 320.381,372.076 320.383,372.061 320.383,372.047 C 320.383,372.028 320.38,372.013 320.373,371.995 C 320.368,371.981 320.359,371.966 320.348,371.955 C 320.336,371.942 320.324,371.931 320.308,371.923 C 320.294,371.916 320.279,371.91 320.262,371.908 L 320.141,371.894 C 320.124,371.892 320.108,371.894 320.094,371.9 Z M 320.44,371.927 L 320.438,372.324 L 320.681,372.351 C 320.696,372.352 320.708,372.351 320.72,372.346 C 320.733,372.341 320.745,372.335 320.756,372.326 L 320.756,372.326 C 320.765,372.316 320.772,372.305 320.778,372.292 C 320.782,372.28 320.785,372.267 320.785,372.253 C 320.785,372.238 320.783,372.223 320.778,372.211 C 320.773,372.196 320.766,372.185 320.758,372.174 C 320.747,372.164 320.737,372.156 320.724,372.149 C 320.716,372.143 320.706,372.14 320.695,372.138 C 320.694,372.138 320.693,372.137 320.692,372.137 L 320.692,372.137 L 320.507,372.116 L 320.507,371.934 L 320.44,371.927 Z M 320.841,371.968 L 320.84,372.366 L 320.907,372.373 L 320.908,371.975 L 320.841,371.968 Z M 320.965,371.979 L 320.965,372.378 L 321.207,372.402 C 321.222,372.405 321.235,372.403 321.248,372.399 C 321.259,372.396 321.269,372.388 321.28,372.38 C 321.289,372.37 321.297,372.36 321.302,372.348 C 321.308,372.335 321.31,372.322 321.311,372.306 C 321.31,372.292 321.308,372.279 321.302,372.266 C 321.297,372.252 321.29,372.24 321.281,372.228 C 321.272,372.219 321.262,372.209 321.249,372.202 C 321.24,372.196 321.23,372.193 321.221,372.19 L 321.275,372.083 L 321.311,372.016 L 321.234,372.007 L 321.198,372.075 L 321.161,372.146 L 321.159,372.149 C 321.153,372.158 321.146,372.166 321.135,372.17 C 321.126,372.176 321.114,372.178 321.102,372.177 L 321.033,372.17 L 321.033,371.986 L 320.965,371.979 Z M 321.345,372.022 L 321.379,372.094 L 321.54,372.438 L 321.701,372.129 L 321.739,372.061 L 321.661,372.053 L 321.625,372.12 L 321.54,372.282 L 321.456,372.103 L 321.421,372.028 L 321.345,372.022 Z M 319.244,372.055 L 319.42,372.074 C 319.423,372.074 319.425,372.075 319.427,372.076 C 319.429,372.076 319.431,372.078 319.433,372.079 C 319.44,372.082 319.445,372.087 319.45,372.093 C 319.453,372.1 319.455,372.106 319.455,372.115 C 319.455,372.12 319.454,372.127 319.451,372.131 C 319.449,372.135 319.445,372.138 319.444,372.14 C 319.442,372.142 319.438,372.143 319.436,372.145 C 319.432,372.146 319.429,372.146 319.428,372.147 L 319.419,372.147 L 319.244,372.129 L 319.244,372.055 Z M 321.928,372.08 L 321.928,372.409 L 321.77,372.392 L 321.77,372.463 L 322.154,372.504 L 322.154,372.432 L 321.997,372.415 L 321.997,372.087 L 321.928,372.08 Z M 322.315,372.137 C 322.291,372.144 322.271,372.157 322.253,372.172 C 322.237,372.189 322.222,372.208 322.211,372.233 C 322.203,372.254 322.197,372.28 322.197,372.307 C 322.197,372.335 322.201,372.362 322.211,372.386 C 322.222,372.412 322.236,372.434 322.253,372.454 C 322.27,372.474 322.291,372.491 322.314,372.504 C 322.338,372.516 322.363,372.525 322.388,372.527 C 322.418,372.529 322.441,372.527 322.463,372.519 C 322.487,372.512 322.509,372.499 322.527,372.482 C 322.544,372.467 322.557,372.447 322.566,372.423 C 322.577,372.4 322.581,372.375 322.582,372.348 C 322.581,372.319 322.577,372.293 322.567,372.268 C 322.557,372.243 322.544,372.221 322.527,372.2 C 322.51,372.182 322.488,372.165 322.465,372.152 C 322.442,372.14 322.418,372.131 322.39,372.129 L 322.351,372.129 C 322.339,372.131 322.328,372.133 322.315,372.137 Z M 322.624,372.152 L 322.624,372.549 L 322.867,372.576 C 322.88,372.576 322.894,372.575 322.906,372.57 C 322.919,372.567 322.93,372.56 322.94,372.552 C 322.95,372.542 322.957,372.531 322.961,372.519 C 322.967,372.507 322.97,372.493 322.97,372.479 C 322.97,372.465 322.967,372.45 322.963,372.437 C 322.958,372.423 322.952,372.412 322.94,372.401 C 322.932,372.39 322.921,372.382 322.91,372.375 C 322.899,372.37 322.89,372.365 322.879,372.364 L 322.935,372.255 L 322.97,372.187 L 322.893,372.18 L 322.859,372.248 L 322.82,372.318 L 322.819,372.321 C 322.812,372.331 322.805,372.338 322.795,372.344 C 322.785,372.349 322.773,372.351 322.76,372.349 L 322.692,372.343 L 322.692,372.159 L 322.624,372.152 Z M 320.507,372.187 L 320.682,372.205 C 320.684,372.206 320.687,372.206 320.69,372.208 C 320.692,372.208 320.694,372.208 320.696,372.209 L 320.696,372.211 C 320.701,372.215 320.707,372.219 320.711,372.226 C 320.715,372.233 320.716,372.24 320.717,372.248 C 320.716,372.253 320.716,372.259 320.713,372.262 C 320.71,372.267 320.708,372.27 320.707,372.272 C 320.704,372.273 320.701,372.275 320.697,372.277 C 320.693,372.279 320.688,372.28 320.682,372.279 L 320.507,372.261 L 320.507,372.187 Z M 322.39,372.199 C 322.408,372.201 322.423,372.206 322.437,372.215 C 322.452,372.222 322.466,372.235 322.476,372.248 C 322.488,372.26 322.497,372.274 322.503,372.29 C 322.512,372.305 322.514,372.323 322.514,372.34 C 322.514,372.358 322.511,372.375 322.503,372.389 C 322.497,372.405 322.488,372.417 322.476,372.428 C 322.465,372.438 322.452,372.446 322.437,372.45 C 322.423,372.456 322.407,372.457 322.388,372.456 C 322.372,372.454 322.356,372.447 322.341,372.44 C 322.328,372.433 322.314,372.421 322.302,372.409 C 322.29,372.396 322.281,372.382 322.275,372.366 C 322.269,372.35 322.266,372.332 322.265,372.316 C 322.266,372.297 322.269,372.28 322.275,372.266 C 322.281,372.251 322.29,372.24 322.302,372.228 C 322.314,372.218 322.328,372.209 322.342,372.205 C 322.356,372.199 322.372,372.197 322.39,372.199 Z M 321.033,372.241 L 321.207,372.26 C 321.211,372.26 321.212,372.26 321.214,372.262 C 321.217,372.262 321.219,372.263 321.222,372.264 C 321.229,372.267 321.233,372.273 321.236,372.279 C 321.24,372.286 321.242,372.292 321.242,372.299 C 321.242,372.305 321.24,372.312 321.238,372.316 C 321.236,372.318 321.234,372.322 321.232,372.324 C 321.23,372.327 321.226,372.328 321.222,372.33 C 321.218,372.331 321.212,372.331 321.207,372.331 L 321.033,372.314 L 321.033,372.241 Z M 322.692,372.413 L 322.867,372.432 C 322.87,372.432 322.871,372.433 322.874,372.433 C 322.876,372.434 322.878,372.434 322.88,372.436 C 322.887,372.44 322.892,372.445 322.895,372.45 C 322.899,372.457 322.901,372.464 322.901,372.472 C 322.901,372.478 322.899,372.482 322.897,372.487 C 322.895,372.491 322.893,372.494 322.891,372.496 C 322.889,372.499 322.885,372.5 322.882,372.502 C 322.878,372.505 322.873,372.505 322.867,372.505 L 322.692,372.487 L 322.692,372.413 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 310.1,384.689 L 309.926,384.851 L 327.334,385.985 L 327.423,385.948 C 327.452,385.938 327.483,385.91 327.483,385.863 L 327.483,385.821 L 310.1,384.689 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 309.926,384.851 L 309.925,361.399 L 310.013,361.316 L 310.1,361.328 L 310.1,384.689 L 309.926,384.851 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--ROYAL_BLUE, .KN95_NR_small_individuals--ROYAL_BLUE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='111.718 -475.376 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.303' y2='19.846' gradientTransform='translate(124.36 447.905)'%3E%3Cstop offset='0' stop-color='%230a3558'/%3E%3Cstop offset='1' stop-color='%230d4673'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.92' gradientTransform='translate(120.821 448.52)'%3E%3Cstop offset='0' stop-color='%23082c48'/%3E%3Cstop offset='1' stop-color='%230b3b61'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.1' gradientTransform='translate(124.354 467.889)'%3E%3Cstop offset='0' stop-color='%230a3557'/%3E%3Cstop offset='1' stop-color='%230b3c63'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.118' y2='-0.229' gradientTransform='translate(119.68 469.944)'%3E%3Cstop offset='0' stop-color='%23082a46'/%3E%3Cstop offset='1' stop-color='%230a3557'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(132.674 469.759) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%230a375a'/%3E%3Cstop offset='1' stop-color='%230b3e66'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.164' y2='0' gradientTransform='translate(121.529 457.648) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23093355'/%3E%3Cstop offset='1' stop-color='%230b3b61'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(128.447 458.647) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 121.448,445.491 L 121.448,468.977 L 138.895,470.097 C 138.907,470.082 138.915,470.063 138.915,470.039 L 138.915,447.858 L 121.448,445.491 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 121.448,445.491 L 117.984,448.854 L 117.981,470.875 L 121.448,468.977 L 121.448,445.491 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 121.448,468.977 L 117.981,470.875 L 134.914,471.803 L 138.857,470.124 C 138.871,470.118 138.884,470.11 138.895,470.097 L 121.448,468.977 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 121.36,468.709 L 117.981,470.599 L 117.98,470.875 L 121.36,469.025 L 121.36,468.709 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 128.489,451.092 L 128.489,451.503 L 128.561,451.511 L 128.561,451.1 L 128.489,451.092 Z M 128.619,451.107 L 128.619,451.514 L 128.69,451.468 L 128.952,451.292 L 128.952,451.552 L 129.023,451.56 L 129.023,451.151 L 128.952,451.199 L 128.69,451.374 L 128.69,451.114 L 128.619,451.107 Z M 129.081,451.157 L 129.081,451.568 L 129.284,451.59 C 129.312,451.592 129.338,451.59 129.361,451.582 C 129.387,451.574 129.408,451.562 129.426,451.544 C 129.445,451.527 129.459,451.508 129.47,451.485 C 129.48,451.461 129.486,451.434 129.486,451.406 C 129.486,451.381 129.481,451.357 129.474,451.333 C 129.464,451.31 129.452,451.288 129.438,451.269 C 129.436,451.267 129.434,451.264 129.433,451.262 C 129.431,451.26 129.428,451.257 129.426,451.256 C 129.408,451.234 129.387,451.217 129.361,451.204 C 129.338,451.191 129.312,451.182 129.284,451.179 L 129.081,451.157 Z M 129.544,451.207 L 129.544,451.617 L 129.618,451.624 L 129.618,451.216 L 129.544,451.207 Z M 129.154,451.237 L 129.284,451.251 C 129.302,451.255 129.318,451.26 129.334,451.269 C 129.35,451.276 129.364,451.288 129.375,451.301 C 129.388,451.314 129.396,451.328 129.404,451.346 C 129.41,451.363 129.413,451.38 129.413,451.398 C 129.413,451.417 129.41,451.432 129.404,451.447 C 129.396,451.464 129.388,451.477 129.375,451.487 C 129.364,451.498 129.35,451.506 129.334,451.511 C 129.318,451.516 129.302,451.517 129.284,451.515 L 129.154,451.501 L 129.154,451.237 Z M 129.859,451.243 L 129.687,451.559 L 129.651,451.63 L 129.732,451.637 L 129.768,451.569 L 129.859,451.404 L 129.946,451.589 L 129.983,451.664 L 130.064,451.675 L 130.027,451.597 L 129.859,451.243 Z M 130.1,451.269 L 130.1,451.678 L 130.172,451.686 L 130.172,451.276 L 130.1,451.269 Z M 130.231,451.282 L 130.231,451.692 L 130.433,451.714 C 130.459,451.716 130.486,451.714 130.511,451.707 C 130.536,451.699 130.556,451.687 130.575,451.669 C 130.594,451.653 130.608,451.632 130.618,451.609 C 130.629,451.585 130.633,451.559 130.633,451.531 C 130.633,451.506 130.631,451.482 130.622,451.459 C 130.613,451.434 130.602,451.413 130.586,451.393 C 130.584,451.391 130.582,451.389 130.581,451.387 C 130.579,451.385 130.577,451.382 130.574,451.38 C 130.555,451.359 130.536,451.342 130.511,451.328 C 130.486,451.315 130.459,451.307 130.433,451.303 L 130.231,451.282 Z M 130.817,451.363 C 130.792,451.37 130.769,451.382 130.751,451.398 C 130.733,451.416 130.719,451.436 130.709,451.46 C 130.699,451.483 130.693,451.51 130.693,451.537 L 130.693,451.741 L 130.764,451.75 L 130.764,451.545 C 130.764,451.526 130.768,451.511 130.775,451.495 C 130.781,451.481 130.792,451.468 130.804,451.457 C 130.816,451.445 130.829,451.437 130.846,451.432 C 130.859,451.427 130.877,451.424 130.895,451.427 C 130.913,451.43 130.93,451.434 130.946,451.443 C 130.962,451.45 130.975,451.463 130.988,451.477 C 130.999,451.489 131.007,451.505 131.015,451.521 C 131.022,451.538 131.026,451.555 131.026,451.574 L 131.026,451.778 L 131.098,451.787 L 131.098,451.582 C 131.098,451.552 131.092,451.526 131.082,451.501 C 131.071,451.474 131.057,451.449 131.039,451.43 C 131.02,451.41 130.998,451.392 130.973,451.379 C 130.95,451.366 130.924,451.358 130.895,451.354 C 130.866,451.352 130.841,451.354 130.817,451.363 Z M 130.301,451.363 L 130.433,451.378 C 130.449,451.379 130.465,451.384 130.483,451.392 C 130.498,451.401 130.512,451.411 130.524,451.424 C 130.536,451.438 130.544,451.455 130.552,451.471 C 130.558,451.487 130.562,451.505 130.562,451.522 C 130.562,451.54 130.558,451.558 130.552,451.573 C 130.544,451.589 130.536,451.602 130.524,451.612 C 130.512,451.623 130.498,451.63 130.483,451.636 C 130.465,451.641 130.449,451.642 130.433,451.64 L 130.301,451.626 L 130.301,451.363 Z M 131.133,451.38 L 131.169,451.458 L 131.338,451.812 L 131.51,451.495 L 131.546,451.424 L 131.465,451.417 L 131.428,451.486 L 131.338,451.65 L 131.251,451.466 L 131.214,451.389 L 131.133,451.38 Z M 131.681,451.443 C 131.67,451.444 131.661,451.446 131.653,451.449 C 131.64,451.456 131.629,451.463 131.619,451.473 C 131.608,451.482 131.601,451.491 131.595,451.503 C 131.59,451.512 131.588,451.521 131.585,451.529 C 131.582,451.539 131.582,451.548 131.582,451.559 L 131.582,451.838 L 131.653,451.846 L 131.653,451.559 C 131.654,451.552 131.657,451.544 131.661,451.538 C 131.666,451.531 131.671,451.526 131.68,451.522 C 131.686,451.518 131.695,451.516 131.703,451.515 L 131.915,451.538 L 131.915,451.466 L 131.709,451.443 C 131.699,451.441 131.69,451.442 131.681,451.443 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 126.286,457.821 L 126.284,459.874 L 126.623,459.907 L 126.625,458.86 L 126.903,459.163 L 127.155,459.437 L 127.683,460.015 L 128.185,460.067 L 127.356,459.158 L 128.18,458.014 L 127.762,457.973 L 127.105,458.885 L 126.625,458.363 L 126.625,457.856 L 126.286,457.821 Z M 128.353,458.032 L 128.528,458.416 L 129.319,460.183 L 130.116,458.579 L 130.29,458.229 L 129.91,458.191 L 129.736,458.539 L 129.321,459.376 L 128.905,458.454 L 128.733,458.073 L 128.353,458.032 Z M 130.46,458.247 L 130.464,458.247 L 130.724,458.639 L 131.189,459.343 L 131.405,459.663 L 131.663,460.055 L 130.457,459.931 L 130.456,460.298 L 131.925,460.447 L 132.349,460.489 L 132.087,460.097 L 131.616,459.385 L 131.403,459.064 L 131.147,458.683 L 132.36,458.806 L 132.361,458.439 L 130.891,458.291 L 130.89,458.291 L 130.46,458.247 Z M 132.938,458.542 C 132.876,458.564 132.821,458.598 132.776,458.645 C 132.728,458.69 132.692,458.745 132.666,458.809 C 132.639,458.873 132.627,458.943 132.626,459.021 L 132.624,459.964 C 132.624,460.041 132.637,460.114 132.663,460.184 C 132.69,460.253 132.725,460.315 132.773,460.37 C 132.819,460.426 132.873,460.471 132.935,460.506 C 132.996,460.541 133.063,460.562 133.134,460.57 L 134.52,460.71 L 134.52,460.344 L 133.134,460.203 C 133.101,460.2 133.073,460.189 133.047,460.17 C 133.021,460.15 133,460.125 132.984,460.096 C 132.969,460.066 132.962,460.033 132.962,459.998 L 132.962,459.808 L 134.182,459.932 L 134.183,459.566 L 132.962,459.442 L 132.962,459.054 C 132.962,459.02 132.97,458.99 132.986,458.964 C 133.002,458.937 133.022,458.915 133.048,458.902 C 133.074,458.887 133.102,458.882 133.136,458.885 L 134.522,459.025 L 134.522,458.66 L 133.136,458.518 C 133.067,458.512 132.999,458.519 132.938,458.542 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 128.29,456.73 L 128.29,457.168 C 128.29,457.191 128.293,457.212 128.302,457.233 C 128.309,457.253 128.321,457.272 128.335,457.287 C 128.349,457.305 128.367,457.317 128.387,457.328 C 128.406,457.337 128.426,457.344 128.449,457.347 L 128.882,457.393 L 128.882,457.285 L 128.449,457.24 C 128.439,457.239 128.43,457.235 128.421,457.229 C 128.413,457.224 128.407,457.217 128.402,457.208 C 128.397,457.199 128.395,457.19 128.395,457.18 L 128.395,457.124 L 128.775,457.162 L 128.775,457.057 L 128.395,457.016 L 128.395,456.742 L 128.29,456.73 Z M 128.968,456.802 L 128.967,457.24 C 128.967,457.261 128.971,457.284 128.98,457.305 C 128.987,457.324 128.998,457.343 129.012,457.359 C 129.027,457.375 129.046,457.388 129.064,457.399 C 129.083,457.41 129.103,457.416 129.126,457.419 L 129.558,457.464 L 129.559,457.357 L 129.127,457.311 C 129.116,457.311 129.107,457.307 129.099,457.302 C 129.09,457.295 129.085,457.287 129.079,457.279 C 129.075,457.271 129.072,457.261 129.072,457.251 L 129.072,457.196 L 129.453,457.235 L 129.453,457.129 L 129.072,457.089 L 129.072,456.813 L 128.968,456.802 Z M 129.646,456.874 L 129.644,457.474 L 130.017,457.513 C 130.04,457.515 130.06,457.513 130.078,457.506 C 130.097,457.5 130.115,457.491 130.129,457.478 L 130.129,457.476 C 130.145,457.462 130.156,457.447 130.166,457.428 C 130.173,457.41 130.177,457.389 130.177,457.367 C 130.177,457.344 130.173,457.324 130.166,457.305 C 130.158,457.284 130.146,457.265 130.133,457.25 C 130.118,457.234 130.103,457.221 130.084,457.211 C 130.07,457.201 130.055,457.196 130.039,457.193 C 130.037,457.193 130.035,457.193 130.034,457.193 L 130.034,457.191 L 129.75,457.16 L 129.751,456.886 L 129.646,456.874 Z M 130.261,456.936 L 130.261,457.115 C 130.261,457.127 130.262,457.137 130.265,457.149 C 130.267,457.161 130.271,457.174 130.275,457.184 C 130.284,457.208 130.296,457.226 130.31,457.243 C 130.326,457.261 130.343,457.275 130.365,457.286 C 130.384,457.298 130.406,457.305 130.43,457.309 L 130.683,457.336 L 130.685,457.336 C 130.698,457.339 130.709,457.343 130.717,457.35 C 130.727,457.358 130.734,457.367 130.74,457.378 C 130.745,457.388 130.748,457.4 130.748,457.413 C 130.748,457.426 130.745,457.437 130.738,457.447 C 130.732,457.457 130.725,457.464 130.714,457.47 C 130.704,457.475 130.692,457.477 130.678,457.476 L 130.262,457.433 L 130.262,457.539 L 130.678,457.582 C 130.704,457.585 130.727,457.582 130.747,457.575 C 130.768,457.569 130.785,457.558 130.803,457.543 C 130.819,457.531 130.832,457.511 130.84,457.491 C 130.849,457.472 130.853,457.449 130.854,457.424 C 130.854,457.412 130.853,457.399 130.85,457.388 C 130.847,457.375 130.845,457.363 130.84,457.353 C 130.835,457.343 130.831,457.333 130.825,457.324 C 130.819,457.315 130.812,457.305 130.804,457.296 C 130.789,457.278 130.77,457.263 130.75,457.252 C 130.73,457.24 130.709,457.233 130.684,457.229 L 130.682,457.229 C 130.681,457.229 130.68,457.229 130.678,457.228 L 130.43,457.202 C 130.418,457.201 130.407,457.196 130.398,457.188 C 130.388,457.181 130.381,457.171 130.376,457.16 C 130.37,457.149 130.369,457.138 130.369,457.127 L 130.369,457.057 L 130.851,457.106 L 130.852,457 L 130.434,456.955 L 130.261,456.936 Z M 131.351,457.053 L 131.35,457.651 L 131.456,457.581 L 131.838,457.324 L 131.837,457.704 L 131.943,457.715 L 131.944,457.117 L 131.838,457.188 L 131.456,457.444 L 131.457,457.065 L 131.351,457.053 Z M 132.028,457.126 L 132.028,457.725 L 132.402,457.765 C 132.422,457.768 132.443,457.766 132.463,457.758 C 132.483,457.752 132.499,457.743 132.513,457.729 C 132.528,457.716 132.539,457.7 132.547,457.681 C 132.556,457.662 132.56,457.641 132.56,457.62 C 132.56,457.597 132.556,457.576 132.548,457.556 C 132.54,457.537 132.53,457.518 132.515,457.502 C 132.502,457.486 132.486,457.473 132.468,457.461 C 132.454,457.453 132.437,457.447 132.421,457.444 L 132.507,457.283 L 132.561,457.182 L 132.443,457.169 L 132.389,457.271 L 132.33,457.376 L 132.329,457.381 C 132.319,457.395 132.307,457.408 132.291,457.414 C 132.276,457.423 132.258,457.425 132.239,457.423 L 132.134,457.412 L 132.135,457.136 L 132.028,457.126 Z M 129.75,457.265 L 130.019,457.294 C 130.021,457.294 130.026,457.295 130.03,457.298 C 130.033,457.299 130.037,457.3 130.04,457.303 L 130.04,457.303 C 130.05,457.309 130.059,457.316 130.063,457.326 C 130.07,457.335 130.072,457.344 130.072,457.356 C 130.072,457.366 130.07,457.374 130.066,457.38 C 130.063,457.386 130.059,457.391 130.057,457.394 C 130.052,457.396 130.048,457.399 130.042,457.401 C 130.035,457.405 130.027,457.406 130.019,457.405 L 129.75,457.376 L 129.75,457.265 Z M 132.134,457.518 L 132.402,457.547 C 132.405,457.548 132.408,457.549 132.413,457.55 C 132.416,457.551 132.42,457.553 132.422,457.555 C 132.434,457.56 132.44,457.569 132.446,457.577 C 132.454,457.587 132.456,457.597 132.456,457.608 C 132.455,457.618 132.454,457.626 132.448,457.634 C 132.445,457.64 132.443,457.643 132.439,457.647 C 132.435,457.649 132.43,457.653 132.425,457.654 C 132.417,457.658 132.41,457.659 132.402,457.658 L 132.134,457.63 L 132.134,457.518 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 126.404,455.536 L 126.403,455.932 L 126.645,455.958 C 126.659,455.959 126.674,455.958 126.685,455.954 C 126.697,455.948 126.709,455.943 126.719,455.934 L 126.719,455.933 C 126.729,455.924 126.736,455.914 126.741,455.902 C 126.746,455.889 126.75,455.876 126.75,455.86 C 126.75,455.845 126.747,455.832 126.742,455.819 C 126.737,455.806 126.731,455.794 126.722,455.783 C 126.711,455.772 126.701,455.763 126.689,455.757 C 126.679,455.749 126.67,455.746 126.659,455.745 C 126.658,455.745 126.657,455.744 126.657,455.744 L 126.657,455.744 L 126.471,455.725 L 126.473,455.543 L 126.404,455.536 Z M 126.804,455.574 L 126.803,455.972 L 127.048,455.999 C 127.063,456 127.076,455.999 127.087,455.995 C 127.1,455.99 127.109,455.984 127.12,455.975 C 127.129,455.965 127.136,455.955 127.143,455.943 C 127.147,455.931 127.15,455.917 127.15,455.904 C 127.15,455.888 127.147,455.874 127.144,455.86 C 127.137,455.847 127.13,455.836 127.121,455.825 C 127.111,455.813 127.103,455.805 127.09,455.798 C 127.081,455.793 127.071,455.787 127.061,455.787 L 127.115,455.678 L 127.15,455.611 L 127.075,455.603 L 127.038,455.67 L 127.002,455.741 L 127,455.744 C 126.994,455.756 126.986,455.762 126.976,455.767 C 126.965,455.772 126.954,455.774 126.942,455.772 L 126.872,455.765 L 126.872,455.582 L 126.804,455.574 Z M 127.31,455.645 C 127.288,455.652 127.268,455.665 127.25,455.68 C 127.231,455.697 127.218,455.716 127.208,455.738 C 127.199,455.763 127.193,455.787 127.193,455.815 C 127.193,455.843 127.199,455.87 127.207,455.894 C 127.218,455.919 127.231,455.942 127.25,455.961 C 127.266,455.982 127.288,455.999 127.309,456.011 C 127.333,456.024 127.358,456.032 127.386,456.035 C 127.412,456.037 127.438,456.035 127.461,456.026 C 127.483,456.019 127.505,456.007 127.522,455.99 C 127.54,455.974 127.554,455.955 127.563,455.931 C 127.573,455.908 127.578,455.883 127.578,455.854 C 127.578,455.827 127.573,455.801 127.563,455.775 C 127.554,455.75 127.541,455.729 127.522,455.71 C 127.505,455.689 127.483,455.672 127.462,455.66 C 127.438,455.647 127.412,455.638 127.386,455.636 L 127.347,455.637 C 127.334,455.638 127.322,455.639 127.31,455.645 Z M 127.777,455.677 L 127.777,456.004 L 127.62,455.988 L 127.62,456.058 L 128.003,456.099 L 128.003,456.027 L 127.847,456.011 L 127.848,455.684 L 127.777,455.677 Z M 127.386,455.707 C 127.402,455.71 127.419,455.714 127.434,455.723 C 127.45,455.73 127.463,455.741 127.473,455.755 C 127.483,455.767 127.494,455.781 127.501,455.798 C 127.507,455.813 127.509,455.83 127.509,455.848 C 127.509,455.866 127.507,455.882 127.5,455.897 C 127.494,455.911 127.483,455.924 127.473,455.935 C 127.462,455.945 127.449,455.954 127.433,455.958 C 127.419,455.962 127.402,455.964 127.386,455.962 C 127.368,455.961 127.352,455.956 127.337,455.948 C 127.322,455.941 127.309,455.929 127.297,455.917 C 127.287,455.904 127.278,455.891 127.271,455.873 C 127.266,455.856 127.262,455.839 127.262,455.823 C 127.262,455.805 127.266,455.787 127.271,455.774 C 127.278,455.76 127.288,455.746 127.298,455.735 C 127.309,455.725 127.323,455.717 127.337,455.712 C 127.352,455.708 127.369,455.706 127.386,455.707 Z M 128.122,455.721 C 128.112,455.725 128.102,455.731 128.09,455.741 C 128.082,455.749 128.074,455.761 128.07,455.773 C 128.064,455.786 128.061,455.799 128.061,455.813 L 128.061,455.998 C 128.061,456.012 128.063,456.026 128.068,456.039 C 128.074,456.053 128.081,456.065 128.09,456.076 C 128.1,456.088 128.111,456.096 128.122,456.103 C 128.135,456.11 128.148,456.114 128.164,456.116 L 128.445,456.144 L 128.445,456.073 L 128.164,456.044 C 128.158,456.042 128.151,456.04 128.145,456.037 C 128.141,456.034 128.136,456.028 128.134,456.023 C 128.13,456.017 128.128,456.011 128.128,456.004 L 128.128,455.967 L 128.376,455.994 L 128.376,455.922 L 128.128,455.896 L 128.129,455.821 C 128.129,455.813 128.13,455.808 128.134,455.803 C 128.137,455.798 128.141,455.794 128.146,455.792 C 128.153,455.787 128.158,455.787 128.164,455.787 L 128.445,455.817 L 128.445,455.746 L 128.164,455.717 C 128.149,455.716 128.136,455.717 128.122,455.721 Z M 128.612,455.779 C 128.588,455.787 128.569,455.799 128.551,455.815 C 128.533,455.832 128.519,455.851 128.51,455.874 C 128.5,455.897 128.495,455.923 128.495,455.95 C 128.495,455.978 128.5,456.005 128.51,456.029 C 128.518,456.053 128.533,456.076 128.551,456.098 C 128.569,456.117 128.588,456.133 128.612,456.146 C 128.635,456.159 128.66,456.166 128.687,456.169 L 128.878,456.188 L 128.878,456.118 L 128.687,456.098 C 128.67,456.097 128.653,456.091 128.639,456.084 C 128.624,456.075 128.61,456.065 128.599,456.052 C 128.587,456.039 128.58,456.026 128.572,456.008 C 128.567,455.993 128.563,455.975 128.563,455.958 C 128.563,455.94 128.567,455.923 128.573,455.909 C 128.58,455.894 128.587,455.881 128.6,455.872 C 128.611,455.86 128.626,455.852 128.639,455.847 C 128.653,455.841 128.67,455.839 128.687,455.841 L 128.879,455.862 L 128.879,455.792 L 128.687,455.772 L 128.648,455.772 C 128.636,455.772 128.624,455.775 128.612,455.779 Z M 126.471,455.796 L 126.646,455.813 C 126.65,455.813 126.652,455.813 126.655,455.814 C 126.657,455.815 126.658,455.816 126.661,455.818 C 126.667,455.822 126.672,455.826 126.676,455.832 C 126.679,455.839 126.681,455.845 126.681,455.852 C 126.681,455.859 126.679,455.865 126.677,455.87 C 126.676,455.874 126.673,455.878 126.67,455.878 C 126.669,455.881 126.666,455.883 126.662,455.884 C 126.657,455.886 126.653,455.887 126.646,455.886 L 126.471,455.869 L 126.471,455.796 Z M 129.092,455.813 L 129.092,456.14 L 128.934,456.123 L 128.934,456.196 L 129.319,456.236 L 129.319,456.163 L 129.162,456.147 L 129.162,455.82 L 129.092,455.813 Z M 126.872,455.836 L 127.048,455.853 C 127.05,455.854 127.052,455.854 127.055,455.855 C 127.057,455.856 127.059,455.858 127.063,455.858 C 127.068,455.862 127.073,455.868 127.077,455.874 C 127.081,455.88 127.083,455.887 127.083,455.895 C 127.083,455.902 127.081,455.906 127.079,455.91 C 127.077,455.915 127.075,455.918 127.072,455.92 C 127.07,455.922 127.066,455.923 127.064,455.925 C 127.059,455.928 127.053,455.928 127.048,455.928 L 126.872,455.909 L 126.872,455.836 Z M 129.375,455.841 L 129.374,456.24 L 129.444,456.248 L 129.445,455.849 L 129.375,455.841 Z M 129.672,455.874 L 129.511,456.184 L 129.476,456.251 L 129.553,456.259 L 129.588,456.192 L 129.672,456.03 L 129.756,456.21 L 129.792,456.284 L 129.869,456.292 L 129.833,456.218 L 129.672,455.874 Z M 129.967,455.912 C 129.955,455.917 129.944,455.923 129.935,455.931 C 129.925,455.941 129.917,455.951 129.912,455.963 C 129.906,455.975 129.903,455.99 129.903,456.005 L 129.903,456.187 C 129.903,456.203 129.905,456.217 129.911,456.23 C 129.917,456.244 129.924,456.256 129.934,456.266 C 129.943,456.277 129.954,456.287 129.967,456.293 C 129.978,456.301 129.993,456.305 130.007,456.307 L 130.287,456.336 L 130.287,456.264 L 130.007,456.236 C 129.999,456.235 129.994,456.232 129.988,456.228 C 129.983,456.225 129.98,456.22 129.976,456.214 C 129.973,456.209 129.971,456.202 129.971,456.196 L 129.971,456.158 L 130.22,456.184 L 130.22,456.114 L 129.972,456.088 L 129.972,456.012 C 129.972,456.005 129.974,456 129.976,455.995 C 129.98,455.989 129.983,455.985 129.989,455.983 C 129.994,455.98 130,455.979 130.007,455.979 L 130.288,456.008 L 130.288,455.936 L 130.007,455.908 C 129.993,455.907 129.979,455.908 129.967,455.912 Z M 130.61,455.969 L 130.609,456.368 L 130.853,456.394 C 130.867,456.394 130.88,456.394 130.893,456.388 C 130.906,456.385 130.917,456.378 130.926,456.369 C 130.936,456.361 130.943,456.349 130.949,456.337 C 130.953,456.325 130.956,456.311 130.956,456.297 C 130.956,456.281 130.954,456.267 130.95,456.254 C 130.944,456.241 130.937,456.23 130.928,456.22 C 130.919,456.21 130.91,456.2 130.896,456.193 C 130.888,456.187 130.876,456.183 130.866,456.181 L 130.923,456.072 L 130.957,456.005 L 130.879,455.998 L 130.846,456.065 L 130.808,456.136 L 130.808,456.138 C 130.801,456.148 130.792,456.155 130.781,456.161 C 130.77,456.165 130.76,456.168 130.749,456.168 L 130.678,456.16 L 130.678,455.977 L 130.61,455.969 Z M 131.076,456.027 C 131.065,456.031 131.053,456.039 131.044,456.047 C 131.034,456.055 131.027,456.065 131.022,456.077 C 131.016,456.091 131.014,456.105 131.014,456.12 L 131.014,456.303 C 131.014,456.318 131.015,456.332 131.021,456.346 C 131.027,456.359 131.034,456.371 131.044,456.383 C 131.053,456.394 131.064,456.401 131.076,456.409 C 131.089,456.416 131.102,456.421 131.116,456.421 L 131.397,456.45 L 131.397,456.38 L 131.116,456.35 C 131.11,456.349 131.104,456.348 131.098,456.343 C 131.094,456.341 131.09,456.335 131.085,456.33 C 131.083,456.323 131.081,456.317 131.081,456.311 L 131.081,456.273 L 131.329,456.298 L 131.329,456.227 L 131.082,456.202 L 131.082,456.128 C 131.082,456.121 131.084,456.116 131.086,456.11 C 131.09,456.104 131.094,456.101 131.098,456.098 C 131.104,456.095 131.111,456.095 131.116,456.095 L 131.398,456.123 L 131.398,456.052 L 131.117,456.023 C 131.103,456.022 131.089,456.024 131.076,456.027 Z M 131.528,456.075 C 131.513,456.079 131.5,456.089 131.489,456.098 C 131.478,456.108 131.47,456.122 131.463,456.136 C 131.457,456.15 131.453,456.166 131.453,456.184 L 131.523,456.19 C 131.523,456.181 131.524,456.171 131.53,456.163 C 131.534,456.156 131.54,456.149 131.548,456.146 C 131.556,456.142 131.563,456.141 131.576,456.142 L 131.697,456.154 C 131.706,456.155 131.714,456.159 131.723,456.163 C 131.73,456.17 131.737,456.176 131.741,456.186 C 131.746,456.196 131.748,456.204 131.748,456.214 C 131.748,456.225 131.746,456.234 131.741,456.241 C 131.737,456.249 131.73,456.254 131.723,456.258 C 131.714,456.262 131.706,456.264 131.697,456.263 L 131.556,456.249 L 131.537,456.249 C 131.53,456.25 131.523,456.251 131.517,456.252 C 131.505,456.256 131.496,456.263 131.484,456.271 C 131.481,456.276 131.474,456.28 131.472,456.287 C 131.465,456.295 131.461,456.305 131.458,456.316 C 131.454,456.324 131.453,456.336 131.453,456.346 L 131.453,456.349 C 131.453,456.363 131.456,456.377 131.461,456.391 C 131.466,456.404 131.473,456.417 131.484,456.427 C 131.494,456.439 131.504,456.447 131.517,456.453 C 131.528,456.461 131.542,456.465 131.556,456.466 L 131.712,456.483 C 131.726,456.484 131.74,456.483 131.753,456.478 C 131.765,456.475 131.776,456.468 131.787,456.46 C 131.796,456.45 131.804,456.44 131.809,456.427 C 131.815,456.415 131.816,456.401 131.816,456.386 L 131.816,456.385 L 131.748,456.376 L 131.748,456.378 C 131.748,456.385 131.746,456.391 131.743,456.396 C 131.739,456.401 131.735,456.405 131.731,456.409 C 131.725,456.411 131.719,456.412 131.712,456.411 L 131.556,456.395 C 131.55,456.394 131.543,456.392 131.538,456.387 C 131.534,456.385 131.53,456.38 131.525,456.374 C 131.523,456.368 131.522,456.362 131.522,456.355 L 131.522,456.352 C 131.522,456.346 131.523,456.341 131.525,456.335 C 131.53,456.33 131.534,456.326 131.539,456.323 C 131.543,456.321 131.55,456.32 131.556,456.32 L 131.697,456.334 L 131.722,456.334 C 131.729,456.333 131.737,456.331 131.745,456.33 C 131.761,456.323 131.774,456.316 131.785,456.303 C 131.787,456.303 131.787,456.302 131.788,456.301 C 131.788,456.299 131.788,456.299 131.789,456.298 C 131.798,456.288 131.805,456.277 131.809,456.264 C 131.815,456.251 131.817,456.236 131.817,456.222 C 131.817,456.204 131.814,456.187 131.808,456.171 C 131.802,456.156 131.793,456.142 131.782,456.13 C 131.769,456.117 131.757,456.106 131.742,456.098 C 131.728,456.091 131.712,456.085 131.697,456.084 L 131.576,456.07 C 131.557,456.068 131.542,456.07 131.528,456.075 Z M 131.873,456.103 L 131.872,456.5 L 132.115,456.524 C 132.131,456.527 132.144,456.524 132.155,456.52 C 132.168,456.516 132.179,456.51 132.189,456.501 L 132.189,456.501 C 132.198,456.491 132.206,456.479 132.211,456.468 C 132.215,456.455 132.219,456.442 132.219,456.427 C 132.219,456.412 132.216,456.398 132.211,456.386 C 132.207,456.372 132.2,456.361 132.19,456.349 C 132.181,456.339 132.171,456.33 132.158,456.323 C 132.15,456.318 132.14,456.315 132.13,456.312 C 132.129,456.312 132.127,456.311 132.126,456.311 L 132.126,456.311 L 131.943,456.291 L 131.943,456.109 L 131.873,456.103 Z M 132.275,456.143 L 132.274,456.542 L 132.342,456.549 L 132.344,456.15 L 132.275,456.143 Z M 132.398,456.155 L 132.397,456.553 L 132.641,456.577 C 132.655,456.581 132.668,456.578 132.682,456.574 C 132.694,456.57 132.704,456.562 132.714,456.555 C 132.724,456.545 132.731,456.536 132.736,456.522 C 132.741,456.51 132.744,456.497 132.744,456.481 C 132.744,456.467 132.741,456.453 132.737,456.44 C 132.731,456.427 132.725,456.413 132.716,456.404 C 132.706,456.394 132.696,456.385 132.684,456.377 C 132.674,456.372 132.664,456.368 132.654,456.365 L 132.709,456.258 L 132.744,456.19 L 132.668,456.182 L 132.632,456.251 L 132.596,456.321 L 132.594,456.323 C 132.588,456.333 132.58,456.342 132.57,456.346 C 132.559,456.351 132.547,456.354 132.536,456.352 L 132.468,456.345 L 132.468,456.161 L 132.398,456.155 Z M 132.777,456.196 L 132.814,456.27 L 132.975,456.613 L 133.136,456.303 L 133.172,456.236 L 133.094,456.228 L 133.06,456.295 L 132.975,456.457 L 132.89,456.278 L 132.854,456.204 L 132.777,456.196 Z M 130.678,456.23 L 130.853,456.249 C 130.856,456.25 130.859,456.251 130.86,456.251 C 130.862,456.251 130.865,456.252 130.867,456.253 C 130.873,456.257 130.878,456.262 130.883,456.269 C 130.886,456.275 130.889,456.281 130.889,456.29 C 130.889,456.295 130.888,456.301 130.885,456.305 C 130.883,456.311 130.879,456.313 130.878,456.315 C 130.875,456.317 130.872,456.318 130.869,456.32 C 130.865,456.321 130.864,456.322 130.86,456.322 L 130.853,456.322 L 130.678,456.303 L 130.678,456.23 Z M 133.362,456.255 L 133.362,456.584 L 133.203,456.568 L 133.203,456.638 L 133.589,456.678 L 133.589,456.607 L 133.43,456.589 L 133.431,456.262 L 133.362,456.255 Z M 133.748,456.311 C 133.725,456.32 133.706,456.331 133.687,456.348 C 133.671,456.363 133.656,456.384 133.645,456.407 C 133.635,456.429 133.63,456.455 133.63,456.483 C 133.63,456.51 133.635,456.536 133.645,456.562 C 133.655,456.587 133.67,456.61 133.687,456.629 C 133.705,456.65 133.725,456.665 133.748,456.678 C 133.771,456.691 133.797,456.699 133.823,456.702 C 133.851,456.704 133.874,456.702 133.898,456.694 C 133.921,456.686 133.943,456.675 133.96,456.657 C 133.977,456.641 133.99,456.621 134.001,456.599 C 134.011,456.575 134.016,456.55 134.016,456.522 C 134.016,456.495 134.011,456.468 134.002,456.444 C 133.99,456.419 133.977,456.396 133.96,456.375 C 133.944,456.356 133.922,456.341 133.899,456.328 C 133.875,456.316 133.851,456.307 133.824,456.303 L 133.785,456.303 C 133.772,456.305 133.761,456.309 133.748,456.311 Z M 134.058,456.328 L 134.057,456.724 L 134.299,456.75 C 134.314,456.751 134.328,456.75 134.341,456.746 C 134.353,456.742 134.364,456.735 134.374,456.727 C 134.384,456.717 134.39,456.707 134.396,456.695 C 134.401,456.683 134.403,456.669 134.403,456.654 C 134.403,456.64 134.401,456.626 134.396,456.612 C 134.391,456.599 134.384,456.587 134.375,456.575 C 134.366,456.566 134.356,456.556 134.345,456.549 C 134.333,456.544 134.324,456.541 134.312,456.538 L 134.37,456.43 L 134.404,456.362 L 134.327,456.355 L 134.293,456.423 L 134.255,456.493 L 134.253,456.496 C 134.248,456.506 134.24,456.513 134.229,456.518 C 134.219,456.523 134.207,456.524 134.195,456.523 L 134.126,456.517 L 134.126,456.334 L 134.058,456.328 Z M 131.941,456.362 L 132.115,456.38 C 132.118,456.381 132.122,456.381 132.124,456.383 C 132.125,456.383 132.129,456.384 132.131,456.385 L 132.131,456.386 C 132.137,456.389 132.142,456.394 132.145,456.4 C 132.15,456.407 132.15,456.413 132.151,456.422 C 132.15,456.427 132.15,456.434 132.148,456.437 C 132.145,456.442 132.144,456.445 132.14,456.446 C 132.138,456.449 132.136,456.45 132.131,456.452 C 132.127,456.453 132.123,456.454 132.115,456.453 L 131.941,456.436 L 131.941,456.362 Z M 133.824,456.375 C 133.841,456.376 133.857,456.381 133.872,456.389 C 133.887,456.398 133.9,456.409 133.911,456.422 C 133.923,456.435 133.932,456.45 133.938,456.465 C 133.945,456.481 133.947,456.498 133.947,456.516 C 133.947,456.534 133.945,456.549 133.938,456.564 C 133.932,456.58 133.922,456.593 133.91,456.602 C 133.9,456.613 133.887,456.621 133.872,456.626 C 133.857,456.631 133.841,456.632 133.823,456.631 C 133.806,456.627 133.79,456.623 133.776,456.616 C 133.761,456.608 133.747,456.597 133.735,456.585 C 133.724,456.571 133.716,456.556 133.709,456.542 C 133.703,456.523 133.7,456.508 133.7,456.491 C 133.7,456.472 133.703,456.455 133.709,456.441 C 133.716,456.427 133.724,456.413 133.735,456.403 C 133.747,456.394 133.761,456.385 133.777,456.38 C 133.791,456.375 133.806,456.373 133.824,456.375 Z M 132.468,456.416 L 132.641,456.435 C 132.644,456.435 132.646,456.436 132.648,456.437 C 132.65,456.437 132.653,456.438 132.655,456.439 C 132.661,456.443 132.666,456.448 132.67,456.453 C 132.674,456.461 132.676,456.467 132.676,456.474 C 132.676,456.481 132.674,456.487 132.673,456.491 C 132.67,456.494 132.668,456.497 132.665,456.5 C 132.663,456.502 132.66,456.504 132.655,456.505 C 132.652,456.507 132.646,456.507 132.641,456.507 L 132.468,456.489 L 132.468,456.416 Z M 134.126,456.588 L 134.299,456.607 C 134.303,456.607 134.306,456.608 134.308,456.608 C 134.31,456.61 134.312,456.61 134.314,456.611 C 134.32,456.614 134.325,456.62 134.331,456.626 C 134.333,456.632 134.335,456.639 134.335,456.646 C 134.335,456.653 134.333,456.658 134.332,456.662 C 134.331,456.666 134.327,456.669 134.324,456.671 C 134.322,456.674 134.319,456.675 134.315,456.677 C 134.311,456.679 134.306,456.68 134.299,456.679 L 134.126,456.662 L 134.126,456.588 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 121.534,468.865 L 121.36,469.026 L 138.768,470.161 L 138.857,470.123 C 138.887,470.112 138.915,470.085 138.915,470.039 L 138.915,469.996 L 121.534,468.865 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 121.36,469.026 L 121.359,445.575 L 121.448,445.49 L 121.534,445.504 L 121.534,468.864 L 121.36,469.026 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--ROSE_QUARZ, .KN95_NR_small_individuals--ROSE_QUARZ {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='206.003 -391.199 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(218.645 363.728)'%3E%3Cstop offset='0' stop-color='%23cc96a2'/%3E%3Cstop offset='1' stop-color='%23eeb9c5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.921' gradientTransform='translate(215.106 364.344)'%3E%3Cstop offset='0' stop-color='%239a6a75'/%3E%3Cstop offset='1' stop-color='%23cb9ea8'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(218.639 383.712)'%3E%3Cstop offset='0' stop-color='%23b98591'/%3E%3Cstop offset='1' stop-color='%23cea1ab'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.231' gradientTransform='translate(213.965 385.769)'%3E%3Cstop offset='0' stop-color='%23907077'/%3E%3Cstop offset='1' stop-color='%23b28b93'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.01' y2='-0.163' gradientTransform='translate(226.959 385.583) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bb929b'/%3E%3Cstop offset='1' stop-color='%23d3a5af'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(215.813 373.472) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b08992'/%3E%3Cstop offset='1' stop-color='%23cb9ea8'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(222.732 374.47) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 215.732,361.315 L 215.732,384.801 L 233.18,385.921 C 233.192,385.906 233.2,385.887 233.2,385.863 L 233.2,363.681 L 215.732,361.315 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 215.732,361.315 L 212.268,364.677 L 212.266,386.699 L 215.732,384.801 L 215.732,361.315 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 215.732,384.801 L 212.266,386.699 L 229.198,387.628 L 233.142,385.948 C 233.156,385.942 233.169,385.934 233.18,385.921 L 215.732,384.801 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 215.645,384.533 L 212.265,386.422 L 212.265,386.699 L 215.645,384.848 L 215.645,384.533 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 222.774,366.916 L 222.774,367.327 L 222.845,367.335 L 222.845,366.924 L 222.774,366.916 Z M 222.904,366.93 L 222.904,367.339 L 222.975,367.291 L 223.237,367.116 L 223.237,367.376 L 223.309,367.386 L 223.309,366.975 L 223.237,367.023 L 222.975,367.198 L 222.975,366.939 L 222.904,366.93 Z M 223.366,366.98 L 223.366,367.391 L 223.568,367.413 C 223.596,367.417 223.623,367.414 223.646,367.405 C 223.672,367.399 223.692,367.386 223.711,367.367 C 223.73,367.351 223.744,367.332 223.754,367.309 C 223.765,367.285 223.771,367.258 223.771,367.23 C 223.771,367.205 223.766,367.18 223.758,367.158 C 223.749,367.134 223.737,367.112 223.722,367.094 C 223.72,367.09 223.718,367.088 223.717,367.086 C 223.716,367.084 223.713,367.081 223.71,367.079 C 223.692,367.057 223.672,367.041 223.646,367.028 C 223.623,367.015 223.597,367.006 223.568,367.003 L 223.366,366.98 Z M 223.829,367.03 L 223.829,367.442 L 223.902,367.448 L 223.902,367.039 L 223.829,367.03 Z M 223.439,367.062 L 223.568,367.076 C 223.586,367.078 223.602,367.084 223.619,367.092 C 223.634,367.1 223.648,367.111 223.659,367.124 C 223.672,367.137 223.681,367.152 223.688,367.169 C 223.695,367.187 223.698,367.204 223.698,367.221 C 223.698,367.24 223.695,367.256 223.688,367.272 C 223.681,367.288 223.672,367.301 223.659,367.311 C 223.648,367.322 223.634,367.329 223.619,367.335 C 223.602,367.34 223.586,367.341 223.568,367.34 L 223.439,367.326 L 223.439,367.062 Z M 224.143,367.066 L 223.972,367.385 L 223.935,367.453 L 224.017,367.461 L 224.053,367.392 L 224.143,367.227 L 224.231,367.412 L 224.267,367.489 L 224.349,367.499 L 224.312,367.42 L 224.143,367.066 Z M 224.384,367.092 L 224.384,367.502 L 224.457,367.51 L 224.457,367.099 L 224.384,367.092 Z M 224.515,367.107 L 224.515,367.515 L 224.717,367.538 C 224.744,367.54 224.771,367.538 224.796,367.531 C 224.82,367.523 224.84,367.51 224.859,367.494 C 224.879,367.476 224.893,367.456 224.903,367.433 C 224.914,367.41 224.918,367.385 224.918,367.354 C 224.918,367.329 224.915,367.306 224.906,367.283 C 224.898,367.258 224.886,367.237 224.871,367.218 C 224.869,367.216 224.867,367.213 224.866,367.211 C 224.864,367.208 224.861,367.206 224.859,367.204 C 224.84,367.184 224.82,367.166 224.796,367.152 C 224.771,367.139 224.744,367.131 224.717,367.127 L 224.515,367.107 Z M 225.102,367.186 C 225.077,367.193 225.054,367.206 225.036,367.223 C 225.019,367.24 225.004,367.259 224.995,367.283 C 224.983,367.308 224.977,367.334 224.977,367.361 L 224.977,367.566 L 225.049,367.574 L 225.049,367.368 C 225.049,367.35 225.053,367.334 225.06,367.319 C 225.065,367.304 225.076,367.291 225.089,367.281 C 225.1,367.27 225.114,367.261 225.13,367.256 C 225.144,367.251 225.162,367.249 225.18,367.251 C 225.198,367.253 225.215,367.258 225.23,367.268 C 225.247,367.276 225.259,367.287 225.272,367.301 C 225.284,367.313 225.292,367.328 225.299,367.345 C 225.306,367.361 225.311,367.38 225.311,367.399 L 225.311,367.603 L 225.382,367.611 L 225.382,367.405 C 225.382,367.376 225.377,367.35 225.366,367.324 C 225.356,367.298 225.342,367.275 225.323,367.253 C 225.305,367.233 225.283,367.217 225.258,367.203 C 225.234,367.19 225.208,367.181 225.18,367.178 C 225.151,367.176 225.126,367.178 225.102,367.186 Z M 224.586,367.187 L 224.717,367.201 C 224.734,367.203 224.75,367.208 224.768,367.217 C 224.783,367.225 224.797,367.236 224.808,367.249 C 224.821,367.262 224.829,367.278 224.837,367.295 C 224.842,367.311 224.846,367.328 224.846,367.347 C 224.846,367.364 224.842,367.382 224.837,367.398 C 224.829,367.412 224.821,367.425 224.808,367.436 C 224.797,367.446 224.783,367.454 224.768,367.459 C 224.75,367.465 224.734,367.466 224.717,367.464 L 224.586,367.45 L 224.586,367.187 Z M 225.418,367.204 L 225.454,367.282 L 225.623,367.636 L 225.795,367.319 L 225.83,367.248 L 225.75,367.24 L 225.713,367.309 L 225.623,367.475 L 225.536,367.289 L 225.498,367.213 L 225.418,367.204 Z M 225.965,367.268 C 225.954,367.269 225.945,367.27 225.937,367.274 C 225.925,367.28 225.913,367.287 225.903,367.296 C 225.893,367.305 225.886,367.315 225.879,367.327 C 225.874,367.335 225.873,367.345 225.869,367.353 C 225.867,367.363 225.867,367.372 225.867,367.385 L 225.867,367.662 L 225.937,367.669 L 225.937,367.385 C 225.938,367.376 225.942,367.367 225.946,367.361 C 225.95,367.354 225.956,367.35 225.963,367.346 C 225.971,367.341 225.98,367.34 225.988,367.34 L 226.2,367.361 L 226.2,367.289 L 225.995,367.266 C 225.983,367.265 225.974,367.266 225.965,367.268 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 220.571,373.645 L 220.568,375.697 L 220.908,375.732 L 220.909,374.684 L 221.188,374.986 L 221.439,375.261 L 221.967,375.839 L 222.471,375.891 L 221.641,374.982 L 222.465,373.838 L 222.047,373.796 L 221.39,374.708 L 220.909,374.188 L 220.909,373.68 L 220.571,373.645 Z M 222.638,373.855 L 222.812,374.241 L 223.604,376.006 L 224.401,374.402 L 224.575,374.053 L 224.196,374.015 L 224.021,374.364 L 223.606,375.201 L 223.19,374.278 L 223.018,373.896 L 222.638,373.855 Z M 224.746,374.07 L 224.749,374.07 L 225.009,374.462 L 225.474,375.166 L 225.689,375.487 L 225.948,375.88 L 224.741,375.755 L 224.741,376.121 L 226.209,376.271 L 226.635,376.314 L 226.372,375.921 L 225.901,375.21 L 225.687,374.888 L 225.432,374.507 L 226.645,374.629 L 226.646,374.263 L 225.176,374.114 L 225.174,374.114 L 224.746,374.07 Z M 227.222,374.366 C 227.16,374.389 227.106,374.422 227.06,374.468 C 227.012,374.513 226.977,374.569 226.95,374.633 C 226.924,374.698 226.911,374.769 226.911,374.845 L 226.909,375.789 C 226.909,375.865 226.922,375.938 226.948,376.007 C 226.975,376.077 227.01,376.139 227.058,376.195 C 227.104,376.25 227.158,376.295 227.22,376.33 C 227.281,376.365 227.348,376.386 227.419,376.394 L 228.804,376.535 L 228.804,376.169 L 227.419,376.027 C 227.385,376.023 227.357,376.013 227.332,375.993 C 227.305,375.973 227.285,375.948 227.269,375.92 C 227.254,375.89 227.247,375.856 227.247,375.822 L 227.247,375.631 L 228.466,375.756 L 228.467,375.39 L 227.247,375.266 L 227.247,374.88 C 227.247,374.843 227.255,374.815 227.27,374.789 C 227.287,374.76 227.307,374.738 227.332,374.725 C 227.359,374.712 227.387,374.706 227.421,374.708 L 228.806,374.849 L 228.807,374.484 L 227.421,374.342 C 227.351,374.336 227.284,374.343 227.222,374.366 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 222.574,372.554 L 222.574,372.991 C 222.574,373.015 222.578,373.036 222.586,373.056 C 222.594,373.077 222.606,373.096 222.62,373.111 C 222.634,373.128 222.651,373.141 222.671,373.152 C 222.69,373.162 222.711,373.168 222.734,373.17 L 223.167,373.216 L 223.167,373.11 L 222.734,373.064 C 222.723,373.062 222.715,373.059 222.706,373.053 C 222.698,373.047 222.692,373.04 222.687,373.032 C 222.682,373.023 222.68,373.014 222.68,373.004 L 222.68,372.948 L 223.06,372.987 L 223.06,372.88 L 222.679,372.84 L 222.68,372.566 L 222.574,372.554 Z M 223.252,372.627 L 223.252,373.064 C 223.252,373.085 223.256,373.107 223.264,373.128 C 223.271,373.148 223.283,373.166 223.297,373.182 C 223.311,373.199 223.33,373.212 223.349,373.222 C 223.368,373.234 223.387,373.24 223.411,373.243 L 223.843,373.287 L 223.844,373.181 L 223.411,373.136 C 223.401,373.134 223.392,373.131 223.384,373.125 C 223.375,373.119 223.369,373.111 223.364,373.103 C 223.359,373.094 223.358,373.085 223.358,373.075 L 223.358,373.02 L 223.738,373.059 L 223.738,372.953 L 223.357,372.912 L 223.358,372.637 L 223.252,372.627 Z M 223.93,372.698 L 223.929,373.298 L 224.302,373.338 C 224.324,373.339 224.345,373.338 224.363,373.33 C 224.382,373.324 224.4,373.314 224.414,373.302 L 224.414,373.3 C 224.43,373.286 224.441,373.271 224.45,373.253 C 224.458,373.234 224.462,373.213 224.462,373.19 C 224.462,373.169 224.458,373.148 224.451,373.129 C 224.442,373.108 224.432,373.09 224.417,373.073 C 224.403,373.058 224.388,373.045 224.369,373.034 C 224.355,373.025 224.34,373.02 224.324,373.016 C 224.322,373.016 224.321,373.016 224.319,373.016 L 224.319,373.015 L 224.034,372.984 L 224.035,372.71 L 223.93,372.698 Z M 224.546,372.761 L 224.546,372.938 C 224.546,372.951 224.547,372.962 224.549,372.974 C 224.551,372.985 224.556,372.997 224.559,373.009 C 224.569,373.031 224.581,373.049 224.595,373.066 C 224.611,373.085 224.627,373.099 224.649,373.111 C 224.669,373.122 224.691,373.129 224.714,373.133 L 224.967,373.159 L 224.97,373.159 C 224.982,373.163 224.994,373.168 225.002,373.175 C 225.012,373.182 225.019,373.19 225.024,373.202 C 225.03,373.212 225.032,373.224 225.032,373.237 C 225.032,373.249 225.029,373.261 225.023,373.271 C 225.017,373.28 225.009,373.287 224.999,373.293 C 224.989,373.299 224.976,373.301 224.963,373.3 L 224.547,373.256 L 224.547,373.363 L 224.962,373.406 C 224.989,373.409 225.012,373.406 225.032,373.4 C 225.053,373.393 225.071,373.382 225.088,373.368 C 225.104,373.354 225.117,373.337 225.124,373.315 C 225.133,373.296 225.137,373.273 225.138,373.248 C 225.138,373.236 225.137,373.224 225.134,373.212 C 225.132,373.2 225.129,373.188 225.124,373.177 C 225.12,373.166 225.115,373.157 225.109,373.147 C 225.104,373.138 225.097,373.129 225.089,373.121 C 225.073,373.103 225.055,373.087 225.035,373.076 C 225.014,373.064 224.995,373.057 224.969,373.053 L 224.966,373.053 C 224.966,373.053 224.964,373.053 224.963,373.053 L 224.714,373.027 C 224.703,373.024 224.692,373.02 224.683,373.012 C 224.672,373.005 224.666,372.995 224.66,372.984 C 224.655,372.974 224.653,372.963 224.653,372.951 L 224.653,372.88 L 225.136,372.931 L 225.137,372.824 L 224.718,372.779 L 224.546,372.761 Z M 225.636,372.878 L 225.634,373.474 L 225.74,373.404 L 226.122,373.147 L 226.122,373.528 L 226.228,373.538 L 226.228,372.941 L 226.122,373.012 L 225.74,373.268 L 225.742,372.889 L 225.636,372.878 Z M 226.312,372.95 L 226.312,373.55 L 226.686,373.589 C 226.707,373.592 226.728,373.59 226.747,373.583 C 226.768,373.576 226.784,373.566 226.798,373.552 C 226.812,373.539 226.824,373.524 226.833,373.505 C 226.84,373.486 226.844,373.466 226.845,373.443 C 226.845,373.421 226.84,373.401 226.833,373.38 C 226.825,373.361 226.814,373.343 226.8,373.326 C 226.787,373.31 226.77,373.297 226.753,373.285 C 226.737,373.278 226.722,373.271 226.706,373.267 L 226.792,373.106 L 226.846,373.007 L 226.727,372.993 L 226.673,373.094 L 226.615,373.201 L 226.613,373.205 C 226.604,373.22 226.592,373.232 226.576,373.239 C 226.56,373.247 226.543,373.248 226.523,373.247 L 226.419,373.236 L 226.419,372.961 L 226.312,372.95 Z M 224.034,373.09 L 224.303,373.119 C 224.306,373.119 224.31,373.12 224.315,373.121 C 224.318,373.123 224.322,373.125 224.325,373.126 L 224.325,373.126 C 224.335,373.132 224.343,373.139 224.348,373.15 C 224.355,373.158 224.356,373.169 224.356,373.179 C 224.356,373.189 224.355,373.197 224.351,373.203 C 224.348,373.21 224.345,373.214 224.342,373.218 C 224.337,373.22 224.332,373.224 224.326,373.226 C 224.321,373.229 224.312,373.23 224.303,373.229 L 224.034,373.201 L 224.034,373.09 Z M 226.419,373.343 L 226.686,373.37 C 226.689,373.371 226.693,373.372 226.698,373.373 C 226.701,373.376 226.704,373.377 226.707,373.378 C 226.718,373.383 226.725,373.393 226.731,373.402 C 226.737,373.411 226.741,373.421 226.741,373.432 C 226.74,373.442 226.737,373.45 226.733,373.457 C 226.73,373.463 226.727,373.467 226.724,373.47 C 226.72,373.473 226.715,373.477 226.709,373.479 C 226.702,373.481 226.696,373.482 226.686,373.481 L 226.418,373.454 L 226.419,373.343 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 220.688,371.359 L 220.687,371.756 L 220.93,371.781 C 220.944,371.782 220.959,371.781 220.971,371.777 C 220.982,371.773 220.994,371.767 221.003,371.757 L 221.004,371.756 C 221.014,371.748 221.021,371.737 221.026,371.726 C 221.032,371.713 221.034,371.7 221.034,371.685 C 221.034,371.669 221.032,371.655 221.026,371.642 C 221.022,371.629 221.015,371.618 221.006,371.607 C 220.996,371.596 220.985,371.588 220.973,371.581 C 220.964,371.575 220.954,371.57 220.944,371.568 C 220.943,371.568 220.941,371.568 220.941,371.568 L 220.941,371.568 L 220.757,371.549 L 220.757,371.367 L 220.688,371.359 Z M 221.089,371.399 L 221.088,371.797 L 221.331,371.823 C 221.348,371.824 221.36,371.823 221.372,371.819 C 221.385,371.814 221.395,371.808 221.405,371.799 C 221.414,371.79 221.42,371.779 221.428,371.767 C 221.432,371.755 221.434,371.741 221.435,371.727 C 221.434,371.712 221.432,371.698 221.429,371.685 C 221.421,371.671 221.415,371.659 221.406,371.649 C 221.396,371.638 221.387,371.629 221.375,371.622 C 221.366,371.616 221.356,371.612 221.346,371.61 L 221.399,371.503 L 221.435,371.434 L 221.359,371.426 L 221.322,371.493 L 221.287,371.565 L 221.285,371.568 C 221.279,371.579 221.27,371.586 221.26,371.59 C 221.25,371.596 221.239,371.597 221.227,371.596 L 221.157,371.589 L 221.157,371.406 L 221.089,371.399 Z M 221.594,371.468 C 221.573,371.476 221.552,371.489 221.534,371.504 C 221.515,371.521 221.502,371.541 221.493,371.562 C 221.483,371.588 221.478,371.612 221.477,371.639 C 221.478,371.666 221.483,371.693 221.492,371.717 C 221.502,371.743 221.515,371.766 221.534,371.785 C 221.551,371.806 221.573,371.823 221.594,371.835 C 221.618,371.848 221.643,371.856 221.671,371.859 C 221.696,371.861 221.722,371.859 221.746,371.85 C 221.767,371.842 221.789,371.832 221.806,371.814 C 221.824,371.798 221.838,371.779 221.847,371.755 C 221.857,371.732 221.863,371.706 221.863,371.678 C 221.863,371.651 221.857,371.625 221.847,371.6 C 221.838,371.575 221.825,371.554 221.806,371.533 C 221.79,371.512 221.768,371.496 221.746,371.484 C 221.722,371.471 221.696,371.464 221.671,371.46 L 221.631,371.461 C 221.619,371.463 221.607,371.465 221.594,371.468 Z M 222.062,371.501 L 222.062,371.827 L 221.904,371.812 L 221.904,371.882 L 222.288,371.924 L 222.288,371.852 L 222.132,371.835 L 222.133,371.507 L 222.062,371.501 Z M 221.671,371.531 C 221.687,371.533 221.703,371.538 221.718,371.546 C 221.735,371.555 221.747,371.565 221.757,371.578 C 221.768,371.59 221.779,371.606 221.785,371.622 C 221.791,371.637 221.795,371.654 221.795,371.672 C 221.795,371.691 221.791,371.706 221.785,371.721 C 221.779,371.736 221.768,371.749 221.757,371.758 C 221.747,371.768 221.734,371.777 221.718,371.781 C 221.703,371.787 221.687,371.788 221.671,371.787 C 221.653,371.785 221.637,371.781 221.621,371.772 C 221.607,371.765 221.593,371.754 221.582,371.741 C 221.572,371.728 221.563,371.715 221.556,371.697 C 221.55,371.681 221.547,371.664 221.547,371.647 C 221.547,371.629 221.55,371.612 221.556,371.597 C 221.563,371.583 221.573,371.57 221.583,371.559 C 221.593,371.549 221.607,371.541 221.621,371.536 C 221.637,371.531 221.654,371.53 221.671,371.531 Z M 222.408,371.544 C 222.396,371.549 222.386,371.555 222.375,371.565 C 222.366,371.575 222.359,371.584 222.354,371.597 C 222.348,371.609 222.346,371.623 222.346,371.638 L 222.346,371.822 C 222.346,371.835 222.348,371.85 222.353,371.864 C 222.359,371.878 222.366,371.889 222.375,371.901 C 222.385,371.912 222.395,371.919 222.408,371.927 C 222.42,371.933 222.433,371.938 222.448,371.94 L 222.729,371.968 L 222.729,371.897 L 222.448,371.867 C 222.443,371.866 222.435,371.865 222.43,371.861 C 222.425,371.858 222.42,371.852 222.418,371.847 C 222.414,371.84 222.412,371.834 222.412,371.827 L 222.412,371.791 L 222.661,371.817 L 222.661,371.745 L 222.412,371.72 L 222.414,371.645 C 222.414,371.638 222.414,371.633 222.419,371.627 C 222.421,371.622 222.426,371.618 222.431,371.615 C 222.438,371.612 222.443,371.611 222.448,371.612 L 222.731,371.641 L 222.731,371.57 L 222.449,371.541 C 222.434,371.54 222.42,371.541 222.408,371.544 Z M 222.897,371.602 C 222.872,371.61 222.853,371.623 222.836,371.639 C 222.818,371.655 222.804,371.675 222.794,371.698 C 222.785,371.722 222.779,371.747 222.779,371.774 C 222.779,371.801 222.785,371.828 222.794,371.852 C 222.803,371.878 222.818,371.901 222.836,371.922 C 222.853,371.941 222.872,371.957 222.897,371.97 C 222.92,371.982 222.945,371.99 222.971,371.993 L 223.163,372.014 L 223.163,371.942 L 222.971,371.923 C 222.955,371.921 222.938,371.915 222.923,371.907 C 222.909,371.899 222.895,371.889 222.884,371.875 C 222.872,371.863 222.864,371.849 222.857,371.833 C 222.851,371.816 222.847,371.8 222.847,371.781 C 222.847,371.764 222.851,371.747 222.858,371.732 C 222.864,371.717 222.872,371.705 222.884,371.695 C 222.896,371.685 222.91,371.676 222.924,371.671 C 222.938,371.665 222.955,371.664 222.972,371.665 L 223.163,371.687 L 223.163,371.615 L 222.972,371.595 L 222.934,371.595 C 222.921,371.596 222.909,371.599 222.897,371.602 Z M 220.757,371.62 L 220.931,371.636 C 220.934,371.637 220.937,371.638 220.939,371.639 C 220.941,371.639 220.943,371.64 220.946,371.642 C 220.951,371.646 220.957,371.65 220.961,371.657 C 220.964,371.663 220.966,371.669 220.966,371.677 C 220.966,371.684 220.964,371.69 220.962,371.693 C 220.96,371.698 220.958,371.701 220.956,371.702 C 220.953,371.704 220.95,371.706 220.947,371.708 C 220.941,371.71 220.938,371.711 220.931,371.71 L 220.757,371.692 L 220.757,371.62 Z M 223.377,371.637 L 223.377,371.964 L 223.22,371.948 L 223.22,372.021 L 223.604,372.059 L 223.604,371.988 L 223.446,371.97 L 223.446,371.644 L 223.377,371.637 Z M 221.157,371.659 L 221.331,371.677 C 221.335,371.678 221.336,371.678 221.34,371.68 C 221.342,371.68 221.345,371.682 221.348,371.683 C 221.353,371.687 221.358,371.691 221.362,371.698 C 221.366,371.704 221.367,371.711 221.367,371.718 C 221.367,371.725 221.366,371.73 221.364,371.734 C 221.362,371.739 221.359,371.742 221.356,371.743 C 221.354,371.745 221.351,371.747 221.348,371.749 C 221.344,371.751 221.338,371.752 221.331,371.751 L 221.157,371.733 L 221.157,371.659 Z M 223.659,371.665 L 223.659,372.064 L 223.729,372.072 L 223.729,371.673 L 223.659,371.665 Z M 223.958,371.698 L 223.796,372.007 L 223.761,372.075 L 223.838,372.083 L 223.873,372.016 L 223.957,371.854 L 224.041,372.034 L 224.077,372.107 L 224.154,372.116 L 224.118,372.041 L 223.958,371.698 Z M 224.252,371.736 C 224.24,371.741 224.228,371.747 224.22,371.755 C 224.209,371.765 224.2,371.775 224.197,371.787 C 224.191,371.8 224.187,371.814 224.187,371.828 L 224.187,372.013 C 224.187,372.027 224.19,372.04 224.196,372.054 C 224.2,372.068 224.209,372.079 224.219,372.091 C 224.227,372.101 224.239,372.111 224.251,372.117 C 224.263,372.125 224.278,372.129 224.291,372.13 L 224.572,372.159 L 224.572,372.088 L 224.291,372.059 C 224.284,372.059 224.278,372.056 224.272,372.053 C 224.268,372.049 224.265,372.045 224.26,372.038 C 224.258,372.033 224.256,372.027 224.256,372.021 L 224.256,371.981 L 224.504,372.007 L 224.504,371.938 L 224.257,371.912 L 224.257,371.835 C 224.257,371.828 224.259,371.824 224.261,371.819 C 224.265,371.814 224.268,371.808 224.274,371.807 C 224.279,371.803 224.284,371.802 224.292,371.803 L 224.573,371.833 L 224.573,371.76 L 224.292,371.732 C 224.278,371.73 224.264,371.732 224.252,371.736 Z M 224.895,371.794 L 224.895,372.191 L 225.137,372.217 C 225.152,372.218 225.165,372.217 225.177,372.213 C 225.19,372.208 225.202,372.202 225.211,372.193 C 225.221,372.184 225.227,372.173 225.234,372.161 C 225.238,372.149 225.24,372.136 225.24,372.121 C 225.24,372.105 225.239,372.091 225.234,372.078 C 225.229,372.065 225.222,372.053 225.213,372.043 C 225.204,372.034 225.195,372.024 225.181,372.018 C 225.172,372.012 225.161,372.007 225.151,372.005 L 225.208,371.897 L 225.241,371.828 L 225.163,371.822 L 225.13,371.889 L 225.094,371.959 L 225.092,371.962 C 225.086,371.972 225.076,371.98 225.065,371.984 C 225.056,371.989 225.045,371.991 225.033,371.991 L 224.962,371.983 L 224.963,371.801 L 224.895,371.794 Z M 225.361,371.852 C 225.349,371.855 225.337,371.863 225.329,371.871 C 225.319,371.879 225.312,371.89 225.306,371.903 C 225.3,371.915 225.298,371.929 225.298,371.944 L 225.298,372.128 C 225.298,372.142 225.3,372.156 225.306,372.169 C 225.311,372.182 225.319,372.195 225.329,372.207 C 225.337,372.217 225.348,372.225 225.361,372.234 C 225.373,372.24 225.387,372.245 225.4,372.246 L 225.682,372.274 L 225.682,372.203 L 225.4,372.174 C 225.395,372.173 225.388,372.171 225.382,372.167 C 225.379,372.164 225.375,372.158 225.371,372.154 C 225.368,372.147 225.366,372.141 225.366,372.134 L 225.366,372.097 L 225.614,372.123 L 225.614,372.051 L 225.366,372.027 L 225.366,371.951 C 225.366,371.944 225.368,371.939 225.371,371.933 C 225.375,371.928 225.379,371.925 225.384,371.922 C 225.388,371.918 225.395,371.918 225.4,371.918 L 225.683,371.948 L 225.683,371.876 L 225.401,371.847 C 225.387,371.846 225.374,371.848 225.361,371.852 Z M 225.812,371.899 C 225.798,371.904 225.785,371.913 225.774,371.923 C 225.763,371.932 225.755,371.946 225.747,371.959 C 225.742,371.974 225.737,371.99 225.737,372.007 L 225.808,372.015 C 225.808,372.004 225.809,371.994 225.814,371.988 C 225.819,371.98 225.825,371.974 225.833,371.97 C 225.84,371.966 225.848,371.965 225.86,371.965 L 225.981,371.978 C 225.991,371.979 225.999,371.982 226.008,371.988 C 226.014,371.994 226.021,372 226.026,372.009 C 226.03,372.02 226.034,372.027 226.034,372.039 C 226.034,372.049 226.03,372.058 226.026,372.065 C 226.021,372.073 226.014,372.078 226.008,372.082 C 225.998,372.086 225.991,372.088 225.981,372.087 L 225.84,372.073 L 225.821,372.073 C 225.814,372.073 225.808,372.075 225.802,372.076 C 225.789,372.08 225.78,372.087 225.77,372.094 C 225.766,372.099 225.76,372.104 225.756,372.111 C 225.75,372.118 225.746,372.129 225.743,372.139 C 225.739,372.149 225.737,372.159 225.737,372.17 L 225.737,372.173 C 225.737,372.188 225.74,372.201 225.746,372.214 C 225.75,372.228 225.758,372.24 225.769,372.252 C 225.779,372.263 225.789,372.272 225.802,372.278 C 225.813,372.285 225.827,372.289 225.84,372.29 L 225.997,372.306 C 226.011,372.308 226.025,372.306 226.037,372.303 C 226.05,372.298 226.06,372.291 226.071,372.284 C 226.08,372.274 226.088,372.264 226.093,372.252 C 226.099,372.24 226.101,372.225 226.101,372.21 L 226.101,372.208 L 226.033,372.2 L 226.033,372.202 C 226.033,372.208 226.03,372.214 226.028,372.22 C 226.024,372.225 226.021,372.229 226.015,372.234 C 226.01,372.235 226.004,372.237 225.997,372.236 L 225.84,372.219 C 225.834,372.218 225.827,372.215 225.822,372.212 C 225.819,372.208 225.814,372.203 225.81,372.197 C 225.808,372.192 225.807,372.185 225.807,372.179 L 225.807,372.176 C 225.807,372.169 225.808,372.165 225.81,372.158 C 225.814,372.154 225.819,372.15 225.824,372.147 C 225.827,372.145 225.834,372.143 225.84,372.143 L 225.981,372.158 L 226.006,372.158 C 226.014,372.156 226.022,372.156 226.029,372.153 C 226.046,372.147 226.059,372.139 226.069,372.128 C 226.071,372.127 226.072,372.126 226.072,372.125 C 226.072,372.124 226.072,372.124 226.073,372.123 C 226.083,372.112 226.089,372.101 226.094,372.088 C 226.1,372.075 226.102,372.06 226.102,372.046 C 226.102,372.027 226.099,372.012 226.092,371.994 C 226.087,371.98 226.078,371.965 226.066,371.954 C 226.054,371.941 226.042,371.93 226.027,371.922 C 226.012,371.915 225.997,371.909 225.981,371.907 L 225.86,371.893 C 225.842,371.891 225.827,371.893 225.812,371.899 Z M 226.158,371.926 L 226.156,372.323 L 226.4,372.35 C 226.415,372.351 226.428,372.35 226.44,372.345 C 226.453,372.34 226.463,372.334 226.474,372.324 L 226.474,372.324 C 226.483,372.315 226.491,372.304 226.496,372.291 C 226.5,372.279 226.503,372.266 226.503,372.252 C 226.503,372.237 226.501,372.222 226.496,372.209 C 226.492,372.195 226.485,372.184 226.475,372.173 C 226.466,372.163 226.456,372.155 226.443,372.148 C 226.434,372.142 226.425,372.139 226.415,372.137 C 226.413,372.137 226.412,372.136 226.411,372.136 L 226.411,372.136 L 226.227,372.115 L 226.227,371.933 L 226.158,371.926 Z M 226.56,371.967 L 226.559,372.365 L 226.626,372.372 L 226.628,371.974 L 226.56,371.967 Z M 226.683,371.978 L 226.683,372.377 L 226.925,372.401 C 226.94,372.404 226.953,372.402 226.967,372.398 C 226.978,372.395 226.989,372.387 226.999,372.379 C 227.009,372.369 227.015,372.359 227.021,372.347 C 227.026,372.334 227.028,372.321 227.028,372.305 C 227.028,372.291 227.026,372.277 227.022,372.265 C 227.015,372.251 227.009,372.239 227.001,372.227 C 226.991,372.218 226.98,372.208 226.969,372.201 C 226.959,372.195 226.949,372.192 226.939,372.189 L 226.995,372.082 L 227.028,372.015 L 226.952,372.006 L 226.917,372.074 L 226.88,372.145 L 226.879,372.148 C 226.873,372.157 226.865,372.165 226.854,372.169 C 226.844,372.175 226.833,372.177 226.821,372.176 L 226.752,372.169 L 226.752,371.985 L 226.683,371.978 Z M 227.062,372.021 L 227.099,372.093 L 227.259,372.437 L 227.421,372.128 L 227.457,372.06 L 227.379,372.052 L 227.344,372.118 L 227.259,372.281 L 227.175,372.102 L 227.139,372.027 L 227.062,372.021 Z M 224.962,372.054 L 225.137,372.073 C 225.141,372.073 225.143,372.074 225.145,372.075 C 225.147,372.075 225.15,372.076 225.152,372.078 C 225.157,372.081 225.163,372.086 225.168,372.092 C 225.171,372.099 225.173,372.105 225.173,372.114 C 225.173,372.118 225.172,372.126 225.169,372.129 C 225.167,372.134 225.163,372.137 225.162,372.139 C 225.16,372.141 225.156,372.142 225.154,372.143 C 225.15,372.145 225.148,372.145 225.146,372.146 L 225.137,372.146 L 224.962,372.128 L 224.962,372.054 Z M 227.648,372.079 L 227.648,372.408 L 227.488,372.391 L 227.488,372.462 L 227.874,372.503 L 227.874,372.431 L 227.715,372.414 L 227.715,372.086 L 227.648,372.079 Z M 228.033,372.136 C 228.009,372.143 227.99,372.156 227.972,372.171 C 227.956,372.188 227.94,372.207 227.93,372.232 C 227.921,372.253 227.915,372.279 227.915,372.306 C 227.915,372.334 227.92,372.361 227.93,372.385 C 227.94,372.41 227.955,372.433 227.972,372.453 C 227.99,372.473 228.009,372.49 228.032,372.503 C 228.056,372.515 228.082,372.524 228.107,372.526 C 228.135,372.528 228.159,372.526 228.183,372.518 C 228.206,372.511 228.228,372.498 228.245,372.481 C 228.261,372.466 228.275,372.446 228.286,372.422 C 228.296,372.399 228.3,372.374 228.301,372.347 C 228.3,372.318 228.296,372.292 228.287,372.267 C 228.275,372.242 228.261,372.22 228.245,372.199 C 228.229,372.181 228.207,372.164 228.184,372.151 C 228.16,372.139 228.136,372.13 228.109,372.128 L 228.07,372.128 C 228.057,372.129 228.046,372.132 228.033,372.136 Z M 228.343,372.151 L 228.342,372.548 L 228.585,372.575 C 228.598,372.575 228.612,372.574 228.625,372.569 C 228.638,372.566 228.649,372.558 228.659,372.551 C 228.668,372.541 228.674,372.53 228.68,372.518 C 228.686,372.506 228.687,372.492 228.687,372.478 C 228.687,372.464 228.686,372.449 228.681,372.436 C 228.676,372.422 228.67,372.411 228.659,372.4 C 228.65,372.389 228.64,372.381 228.629,372.374 C 228.618,372.368 228.609,372.364 228.597,372.363 L 228.655,372.254 L 228.688,372.186 L 228.611,372.179 L 228.577,372.247 L 228.539,372.317 L 228.538,372.319 C 228.532,372.33 228.525,372.337 228.513,372.343 C 228.504,372.348 228.492,372.35 228.479,372.348 L 228.411,372.342 L 228.411,372.158 L 228.343,372.151 Z M 226.226,372.186 L 226.4,372.204 C 226.402,372.205 226.406,372.205 226.409,372.207 C 226.41,372.207 226.413,372.207 226.415,372.208 L 226.415,372.209 C 226.421,372.214 226.427,372.218 226.43,372.225 C 226.434,372.232 226.435,372.239 226.436,372.247 C 226.435,372.252 226.434,372.258 226.432,372.261 C 226.429,372.266 226.428,372.269 226.425,372.271 C 226.422,372.272 226.421,372.274 226.416,372.276 C 226.412,372.278 226.408,372.279 226.4,372.278 L 226.226,372.26 L 226.226,372.186 Z M 228.109,372.198 C 228.125,372.2 228.141,372.205 228.156,372.214 C 228.17,372.221 228.185,372.234 228.196,372.247 C 228.207,372.259 228.216,372.273 228.222,372.289 C 228.23,372.304 228.232,372.322 228.232,372.339 C 228.232,372.357 228.229,372.374 228.222,372.388 C 228.216,372.404 228.207,372.416 228.196,372.427 C 228.184,372.437 228.17,372.445 228.156,372.449 C 228.141,372.455 228.125,372.456 228.107,372.455 C 228.091,372.453 228.074,372.446 228.06,372.439 C 228.046,372.432 228.032,372.42 228.021,372.408 C 228.009,372.395 228,372.381 227.995,372.365 C 227.988,372.349 227.985,372.331 227.985,372.315 C 227.985,372.296 227.988,372.279 227.995,372.265 C 228,372.25 228.009,372.239 228.021,372.227 C 228.032,372.217 228.046,372.208 228.06,372.204 C 228.075,372.198 228.091,372.196 228.109,372.198 Z M 226.752,372.24 L 226.925,372.259 C 226.928,372.259 226.931,372.259 226.932,372.261 C 226.935,372.261 226.937,372.262 226.94,372.263 C 226.946,372.266 226.951,372.272 226.955,372.278 C 226.959,372.285 226.961,372.291 226.961,372.298 C 226.961,372.304 226.959,372.311 226.957,372.315 C 226.955,372.317 226.952,372.321 226.95,372.323 C 226.947,372.326 226.944,372.327 226.94,372.329 C 226.937,372.33 226.931,372.33 226.925,372.33 L 226.752,372.313 L 226.752,372.24 Z M 228.411,372.412 L 228.585,372.431 C 228.588,372.431 228.59,372.432 228.592,372.432 C 228.595,372.433 228.596,372.433 228.598,372.435 C 228.605,372.439 228.61,372.443 228.615,372.449 C 228.618,372.456 228.62,372.463 228.62,372.471 C 228.62,372.477 228.618,372.481 228.617,372.486 C 228.615,372.49 228.611,372.493 228.609,372.495 C 228.607,372.498 228.603,372.499 228.6,372.501 C 228.596,372.504 228.591,372.504 228.585,372.504 L 228.411,372.486 L 228.411,372.412 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 215.819,384.689 L 215.645,384.85 L 233.053,385.984 L 233.142,385.947 C 233.172,385.937 233.2,385.909 233.2,385.863 L 233.2,385.821 L 215.819,384.689 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 215.645,384.85 L 215.644,361.398 L 215.732,361.315 L 215.819,361.327 L 215.819,384.688 L 215.645,384.85 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--RACING_RED, .KN95_NR_small_individuals--RACING_RED {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='206 -517.465 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(218.642 489.994)'%3E%3Cstop offset='0' stop-color='%23b71616'/%3E%3Cstop offset='1' stop-color='%23f21c1c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.92' gradientTransform='translate(215.103 490.61)'%3E%3Cstop offset='0' stop-color='%23981212'/%3E%3Cstop offset='1' stop-color='%23cd1818'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(218.636 509.977)'%3E%3Cstop offset='0' stop-color='%23b51515'/%3E%3Cstop offset='1' stop-color='%23d11919'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.23' gradientTransform='translate(213.962 512.034)'%3E%3Cstop offset='0' stop-color='%23931111'/%3E%3Cstop offset='1' stop-color='%23b51515'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.01' y2='-0.163' gradientTransform='translate(226.956 511.848) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bd1616'/%3E%3Cstop offset='1' stop-color='%23d81919'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(215.81 499.737) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b21515'/%3E%3Cstop offset='1' stop-color='%23cd1818'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(222.729 500.736) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 215.729,487.58 L 215.729,511.067 L 233.177,512.186 C 233.189,512.172 233.197,512.153 233.197,512.129 L 233.197,489.947 L 215.729,487.58 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 215.729,487.58 L 212.265,490.943 L 212.263,512.964 L 215.729,511.067 L 215.729,487.58 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 215.729,511.067 L 212.263,512.964 L 229.195,513.894 L 233.139,512.213 C 233.153,512.208 233.166,512.198 233.177,512.186 L 215.729,511.067 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 215.642,510.799 L 212.262,512.688 L 212.262,512.964 L 215.642,511.113 L 215.642,510.799 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 222.771,493.182 L 222.771,493.593 L 222.842,493.601 L 222.842,493.19 L 222.771,493.182 Z M 222.901,493.196 L 222.901,493.605 L 222.972,493.556 L 223.234,493.382 L 223.234,493.642 L 223.306,493.651 L 223.306,493.24 L 223.234,493.289 L 222.972,493.464 L 222.972,493.204 L 222.901,493.196 Z M 223.363,493.246 L 223.363,493.657 L 223.565,493.678 C 223.593,493.682 223.62,493.678 223.643,493.67 C 223.669,493.663 223.689,493.651 223.708,493.633 C 223.727,493.617 223.741,493.598 223.751,493.574 C 223.762,493.55 223.768,493.524 223.768,493.496 C 223.768,493.47 223.763,493.445 223.755,493.423 C 223.746,493.4 223.734,493.378 223.719,493.359 C 223.717,493.356 223.715,493.353 223.714,493.351 C 223.713,493.349 223.71,493.347 223.707,493.344 C 223.689,493.323 223.669,493.307 223.643,493.294 C 223.62,493.281 223.594,493.271 223.565,493.269 L 223.363,493.246 Z M 223.826,493.296 L 223.826,493.708 L 223.899,493.715 L 223.899,493.305 L 223.826,493.296 Z M 223.436,493.327 L 223.565,493.34 C 223.583,493.343 223.599,493.349 223.616,493.357 C 223.631,493.367 223.645,493.377 223.656,493.391 C 223.669,493.403 223.678,493.418 223.685,493.434 C 223.692,493.452 223.695,493.469 223.695,493.487 C 223.695,493.506 223.692,493.522 223.685,493.537 C 223.678,493.553 223.669,493.566 223.656,493.576 C 223.645,493.588 223.631,493.595 223.616,493.601 C 223.599,493.606 223.583,493.607 223.565,493.606 L 223.436,493.592 L 223.436,493.327 Z M 224.14,493.331 L 223.969,493.65 L 223.932,493.719 L 224.014,493.727 L 224.05,493.657 L 224.14,493.493 L 224.228,493.677 L 224.264,493.754 L 224.346,493.764 L 224.309,493.685 L 224.14,493.331 Z M 224.381,493.357 L 224.381,493.767 L 224.454,493.775 L 224.454,493.364 L 224.381,493.357 Z M 224.512,493.372 L 224.512,493.781 L 224.714,493.803 C 224.741,493.807 224.768,493.803 224.793,493.796 C 224.817,493.788 224.837,493.775 224.856,493.759 C 224.876,493.742 224.89,493.722 224.9,493.699 C 224.911,493.675 224.915,493.65 224.915,493.62 C 224.915,493.595 224.912,493.571 224.903,493.548 C 224.895,493.524 224.883,493.503 224.868,493.484 C 224.866,493.482 224.864,493.479 224.863,493.477 C 224.861,493.473 224.858,493.47 224.856,493.469 C 224.837,493.449 224.817,493.431 224.793,493.418 C 224.768,493.405 224.741,493.397 224.714,493.393 L 224.512,493.372 Z M 225.099,493.451 C 225.074,493.458 225.051,493.47 225.033,493.489 C 225.016,493.506 225.001,493.525 224.992,493.548 C 224.98,493.573 224.974,493.599 224.974,493.627 L 224.974,493.832 L 225.046,493.84 L 225.046,493.634 C 225.046,493.616 225.05,493.6 225.057,493.584 C 225.062,493.569 225.073,493.556 225.086,493.546 C 225.097,493.535 225.111,493.527 225.127,493.522 C 225.141,493.517 225.159,493.515 225.177,493.517 C 225.195,493.519 225.212,493.524 225.227,493.533 C 225.244,493.541 225.256,493.552 225.269,493.566 C 225.281,493.578 225.289,493.594 225.296,493.611 C 225.303,493.627 225.308,493.645 225.308,493.663 L 225.308,493.868 L 225.379,493.876 L 225.379,493.67 C 225.379,493.642 225.374,493.616 225.363,493.59 C 225.353,493.563 225.339,493.54 225.32,493.519 C 225.302,493.498 225.28,493.483 225.255,493.468 C 225.231,493.456 225.205,493.447 225.177,493.443 C 225.148,493.441 225.123,493.443 225.099,493.451 Z M 224.583,493.452 L 224.714,493.466 C 224.731,493.468 224.747,493.473 224.765,493.483 C 224.78,493.491 224.794,493.502 224.805,493.515 C 224.818,493.528 224.826,493.543 224.834,493.56 C 224.839,493.576 224.843,493.594 224.843,493.613 C 224.843,493.63 224.839,493.648 224.834,493.663 C 224.826,493.677 224.818,493.69 224.805,493.702 C 224.794,493.712 224.78,493.72 224.765,493.725 C 224.747,493.731 224.731,493.732 224.714,493.73 L 224.583,493.716 L 224.583,493.452 Z M 225.415,493.469 L 225.451,493.548 L 225.62,493.901 L 225.792,493.584 L 225.827,493.515 L 225.747,493.506 L 225.71,493.574 L 225.62,493.741 L 225.533,493.554 L 225.495,493.479 L 225.415,493.469 Z M 225.962,493.533 C 225.951,493.534 225.942,493.535 225.934,493.539 C 225.922,493.545 225.91,493.552 225.9,493.561 C 225.89,493.571 225.883,493.58 225.876,493.593 C 225.871,493.601 225.87,493.611 225.866,493.619 C 225.864,493.629 225.864,493.638 225.864,493.65 L 225.864,493.928 L 225.934,493.936 L 225.934,493.65 C 225.935,493.641 225.939,493.633 225.943,493.627 C 225.947,493.62 225.953,493.616 225.96,493.612 C 225.968,493.607 225.977,493.606 225.985,493.606 L 226.197,493.627 L 226.197,493.554 L 225.992,493.532 C 225.98,493.53 225.971,493.531 225.962,493.533 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 220.568,499.911 L 220.565,501.962 L 220.905,501.998 L 220.906,500.949 L 221.185,501.253 L 221.436,501.526 L 221.964,502.105 L 222.468,502.156 L 221.638,501.248 L 222.462,500.104 L 222.044,500.061 L 221.387,500.973 L 220.906,500.454 L 220.906,499.945 L 220.568,499.911 Z M 222.635,500.122 L 222.809,500.506 L 223.601,502.271 L 224.398,500.668 L 224.572,500.319 L 224.193,500.28 L 224.018,500.629 L 223.603,501.467 L 223.187,500.544 L 223.015,500.161 L 222.635,500.122 Z M 224.743,500.336 L 224.746,500.336 L 225.006,500.728 L 225.471,501.432 L 225.686,501.753 L 225.945,502.145 L 224.738,502.021 L 224.738,502.386 L 226.206,502.537 L 226.632,502.579 L 226.369,502.186 L 225.898,501.475 L 225.684,501.153 L 225.429,500.773 L 226.642,500.895 L 226.643,500.527 L 225.173,500.38 L 225.171,500.38 L 224.743,500.336 Z M 227.219,500.63 C 227.157,500.655 227.103,500.687 227.057,500.733 C 227.009,500.779 226.974,500.834 226.947,500.899 C 226.921,500.963 226.908,501.034 226.908,501.11 L 226.906,502.054 C 226.906,502.131 226.919,502.205 226.945,502.272 C 226.972,502.343 227.007,502.404 227.055,502.461 C 227.101,502.515 227.155,502.561 227.217,502.595 C 227.278,502.631 227.345,502.652 227.416,502.66 L 228.801,502.8 L 228.801,502.435 L 227.416,502.293 C 227.382,502.288 227.354,502.278 227.329,502.258 C 227.302,502.239 227.282,502.214 227.266,502.185 C 227.251,502.155 227.244,502.122 227.244,502.088 L 227.244,501.897 L 228.463,502.022 L 228.464,501.656 L 227.244,501.532 L 227.244,501.145 C 227.244,501.109 227.252,501.079 227.267,501.054 C 227.284,501.026 227.304,501.005 227.329,500.991 C 227.356,500.977 227.384,500.971 227.418,500.973 L 228.803,501.115 L 228.804,500.749 L 227.418,500.607 C 227.348,500.601 227.281,500.608 227.219,500.63 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 222.571,498.82 L 222.571,499.258 C 222.571,499.28 222.575,499.301 222.583,499.322 C 222.591,499.343 222.603,499.362 222.617,499.377 C 222.631,499.393 222.648,499.406 222.668,499.417 C 222.687,499.427 222.708,499.434 222.731,499.436 L 223.164,499.482 L 223.164,499.376 L 222.731,499.33 C 222.72,499.328 222.712,499.325 222.703,499.318 C 222.695,499.312 222.689,499.306 222.684,499.297 C 222.679,499.288 222.677,499.279 222.677,499.269 L 222.677,499.214 L 223.057,499.253 L 223.057,499.146 L 222.676,499.106 L 222.677,498.831 L 222.571,498.82 Z M 223.249,498.893 L 223.249,499.33 C 223.249,499.351 223.253,499.373 223.261,499.393 C 223.268,499.413 223.28,499.431 223.294,499.448 C 223.308,499.465 223.327,499.478 223.346,499.488 C 223.365,499.499 223.384,499.505 223.408,499.508 L 223.84,499.553 L 223.841,499.447 L 223.408,499.401 C 223.398,499.399 223.389,499.396 223.381,499.39 C 223.372,499.384 223.366,499.377 223.361,499.369 C 223.356,499.36 223.355,499.351 223.355,499.341 L 223.355,499.285 L 223.735,499.326 L 223.735,499.219 L 223.354,499.177 L 223.355,498.903 L 223.249,498.893 Z M 223.927,498.964 L 223.926,499.564 L 224.299,499.603 C 224.321,499.604 224.342,499.603 224.36,499.596 C 224.379,499.59 224.397,499.58 224.411,499.568 L 224.411,499.566 C 224.427,499.552 224.438,499.536 224.447,499.518 C 224.455,499.499 224.459,499.479 224.459,499.456 C 224.459,499.434 224.455,499.413 224.448,499.394 C 224.439,499.374 224.429,499.356 224.414,499.34 C 224.4,499.324 224.385,499.31 224.366,499.299 C 224.352,499.29 224.337,499.285 224.321,499.282 C 224.319,499.282 224.318,499.282 224.316,499.281 L 224.316,499.28 L 224.031,499.25 L 224.032,498.975 L 223.927,498.964 Z M 224.543,499.027 L 224.543,499.203 C 224.543,499.217 224.544,499.228 224.546,499.24 C 224.548,499.251 224.553,499.263 224.556,499.274 C 224.566,499.296 224.578,499.315 224.592,499.332 C 224.608,499.351 224.624,499.365 224.646,499.377 C 224.666,499.387 224.688,499.394 224.711,499.397 L 224.964,499.425 L 224.967,499.425 C 224.979,499.428 224.991,499.433 224.999,499.441 C 225.009,499.448 225.016,499.456 225.021,499.468 C 225.027,499.478 225.029,499.489 225.029,499.502 C 225.029,499.514 225.026,499.526 225.02,499.536 C 225.014,499.546 225.006,499.553 224.996,499.559 C 224.986,499.565 224.973,499.567 224.96,499.566 L 224.544,499.521 L 224.544,499.628 L 224.959,499.672 C 224.986,499.675 225.009,499.672 225.029,499.666 C 225.05,499.659 225.068,499.647 225.085,499.633 C 225.101,499.619 225.114,499.602 225.121,499.581 C 225.13,499.562 225.134,499.538 225.135,499.513 C 225.135,499.501 225.134,499.489 225.131,499.478 C 225.129,499.465 225.126,499.454 225.121,499.443 C 225.117,499.431 225.112,499.422 225.106,499.412 C 225.101,499.403 225.094,499.394 225.086,499.386 C 225.07,499.368 225.052,499.353 225.032,499.342 C 225.011,499.33 224.992,499.323 224.966,499.318 L 224.963,499.318 C 224.963,499.318 224.961,499.318 224.96,499.318 L 224.711,499.292 C 224.7,499.289 224.689,499.285 224.68,499.277 C 224.669,499.27 224.663,499.261 224.657,499.25 C 224.652,499.24 224.65,499.229 224.65,499.217 L 224.65,499.146 L 225.133,499.196 L 225.134,499.089 L 224.715,499.045 L 224.543,499.027 Z M 225.633,499.144 L 225.631,499.74 L 225.737,499.67 L 226.119,499.412 L 226.119,499.794 L 226.225,499.804 L 226.225,499.206 L 226.119,499.277 L 225.737,499.533 L 225.739,499.155 L 225.633,499.144 Z M 226.309,499.216 L 226.309,499.815 L 226.683,499.854 C 226.704,499.857 226.725,499.855 226.744,499.847 C 226.765,499.841 226.781,499.831 226.795,499.818 C 226.809,499.805 226.821,499.79 226.83,499.771 C 226.837,499.751 226.841,499.731 226.842,499.709 C 226.842,499.687 226.837,499.667 226.83,499.645 C 226.822,499.626 226.811,499.608 226.797,499.591 C 226.784,499.576 226.767,499.563 226.75,499.552 C 226.734,499.544 226.719,499.536 226.703,499.532 L 226.789,499.373 L 226.843,499.272 L 226.724,499.259 L 226.67,499.36 L 226.612,499.466 L 226.61,499.471 C 226.601,499.486 226.589,499.497 226.573,499.504 C 226.557,499.512 226.54,499.513 226.52,499.512 L 226.416,499.501 L 226.416,499.227 L 226.309,499.216 Z M 224.031,499.356 L 224.3,499.384 C 224.303,499.384 224.307,499.385 224.312,499.386 C 224.315,499.388 224.319,499.39 224.322,499.392 L 224.322,499.392 C 224.332,499.397 224.34,499.404 224.345,499.415 C 224.352,499.423 224.353,499.434 224.353,499.445 C 224.353,499.455 224.352,499.463 224.348,499.469 C 224.345,499.476 224.342,499.48 224.339,499.484 C 224.334,499.486 224.329,499.489 224.323,499.492 C 224.318,499.494 224.309,499.495 224.3,499.494 L 224.031,499.466 L 224.031,499.356 Z M 226.416,499.608 L 226.683,499.635 C 226.686,499.636 226.69,499.637 226.695,499.638 C 226.698,499.641 226.701,499.642 226.704,499.643 C 226.715,499.649 226.722,499.658 226.728,499.668 C 226.734,499.677 226.738,499.687 226.738,499.698 C 226.737,499.708 226.734,499.715 226.73,499.722 C 226.727,499.728 226.724,499.732 226.721,499.735 C 226.717,499.738 226.712,499.742 226.706,499.744 C 226.699,499.746 226.693,499.747 226.683,499.746 L 226.415,499.719 L 226.416,499.608 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 220.685,497.624 L 220.684,498.022 L 220.927,498.047 C 220.941,498.048 220.956,498.047 220.968,498.043 C 220.979,498.039 220.991,498.033 221,498.023 L 221.001,498.022 C 221.011,498.014 221.018,498.004 221.023,497.991 C 221.029,497.978 221.031,497.965 221.031,497.95 C 221.031,497.935 221.029,497.921 221.023,497.908 C 221.019,497.895 221.012,497.883 221.003,497.872 C 220.993,497.861 220.982,497.852 220.97,497.846 C 220.961,497.84 220.951,497.835 220.941,497.834 C 220.94,497.834 220.938,497.834 220.938,497.834 L 220.938,497.834 L 220.754,497.815 L 220.754,497.632 L 220.685,497.624 Z M 221.086,497.664 L 221.085,498.062 L 221.328,498.088 C 221.345,498.089 221.357,498.088 221.369,498.084 C 221.382,498.079 221.392,498.073 221.402,498.064 C 221.411,498.055 221.417,498.045 221.425,498.033 C 221.429,498.021 221.431,498.007 221.432,497.992 C 221.431,497.976 221.429,497.963 221.426,497.95 C 221.418,497.937 221.412,497.925 221.403,497.915 C 221.393,497.904 221.384,497.895 221.372,497.886 C 221.363,497.881 221.353,497.877 221.343,497.875 L 221.396,497.767 L 221.432,497.7 L 221.356,497.692 L 221.319,497.758 L 221.284,497.831 L 221.282,497.834 C 221.276,497.844 221.267,497.851 221.257,497.855 C 221.247,497.861 221.236,497.862 221.224,497.861 L 221.154,497.853 L 221.154,497.672 L 221.086,497.664 Z M 221.591,497.733 C 221.57,497.741 221.549,497.753 221.531,497.769 C 221.512,497.786 221.499,497.807 221.49,497.828 C 221.48,497.852 221.475,497.877 221.474,497.905 C 221.475,497.932 221.48,497.958 221.489,497.982 C 221.499,498.009 221.512,498.032 221.531,498.052 C 221.548,498.071 221.57,498.088 221.591,498.1 C 221.615,498.114 221.64,498.122 221.668,498.125 C 221.693,498.127 221.719,498.125 221.743,498.116 C 221.764,498.107 221.786,498.097 221.803,498.079 C 221.821,498.063 221.835,498.044 221.844,498.021 C 221.854,497.997 221.86,497.971 221.86,497.944 C 221.86,497.917 221.854,497.891 221.844,497.865 C 221.835,497.84 221.822,497.819 221.803,497.799 C 221.787,497.778 221.765,497.761 221.743,497.749 C 221.719,497.737 221.693,497.729 221.668,497.725 L 221.628,497.726 C 221.616,497.728 221.604,497.73 221.591,497.733 Z M 222.059,497.766 L 222.059,498.092 L 221.901,498.076 L 221.901,498.148 L 222.285,498.189 L 222.285,498.118 L 222.129,498.1 L 222.13,497.772 L 222.059,497.766 Z M 221.668,497.797 C 221.684,497.799 221.7,497.804 221.715,497.812 C 221.732,497.82 221.744,497.831 221.754,497.843 C 221.765,497.855 221.776,497.871 221.782,497.886 C 221.788,497.904 221.792,497.919 221.792,497.938 C 221.792,497.955 221.788,497.971 221.782,497.986 C 221.776,498.002 221.765,498.015 221.754,498.024 C 221.744,498.034 221.731,498.043 221.715,498.047 C 221.7,498.053 221.684,498.054 221.668,498.053 C 221.65,498.052 221.634,498.047 221.618,498.038 C 221.604,498.03 221.59,498.02 221.579,498.007 C 221.569,497.992 221.56,497.98 221.553,497.962 C 221.547,497.946 221.544,497.93 221.544,497.913 C 221.544,497.895 221.547,497.877 221.553,497.862 C 221.56,497.848 221.57,497.835 221.58,497.825 C 221.59,497.815 221.604,497.807 221.618,497.802 C 221.634,497.797 221.651,497.796 221.668,497.797 Z M 222.405,497.81 C 222.393,497.815 222.383,497.821 222.372,497.831 C 222.363,497.84 222.356,497.849 222.351,497.862 C 222.345,497.874 222.343,497.889 222.343,497.904 L 222.343,498.087 C 222.343,498.1 222.345,498.116 222.35,498.13 C 222.356,498.143 222.363,498.155 222.372,498.166 C 222.382,498.176 222.392,498.185 222.405,498.192 C 222.417,498.198 222.43,498.203 222.445,498.205 L 222.726,498.234 L 222.726,498.163 L 222.445,498.133 C 222.44,498.132 222.432,498.131 222.427,498.127 C 222.422,498.124 222.417,498.119 222.415,498.113 C 222.411,498.105 222.409,498.099 222.409,498.092 L 222.409,498.056 L 222.658,498.082 L 222.658,498.011 L 222.409,497.985 L 222.411,497.911 C 222.411,497.904 222.411,497.899 222.416,497.893 C 222.418,497.886 222.423,497.883 222.428,497.88 C 222.435,497.877 222.44,497.876 222.445,497.877 L 222.728,497.907 L 222.728,497.835 L 222.446,497.807 C 222.431,497.805 222.417,497.807 222.405,497.81 Z M 222.894,497.867 C 222.869,497.875 222.85,497.889 222.833,497.905 C 222.815,497.921 222.801,497.941 222.791,497.963 C 222.782,497.987 222.776,498.012 222.776,498.04 C 222.776,498.066 222.782,498.093 222.791,498.119 C 222.8,498.143 222.815,498.166 222.833,498.187 C 222.85,498.206 222.869,498.223 222.894,498.235 C 222.917,498.248 222.942,498.256 222.968,498.259 L 223.16,498.279 L 223.16,498.207 L 222.968,498.188 C 222.952,498.186 222.935,498.18 222.92,498.172 C 222.906,498.165 222.892,498.155 222.881,498.141 C 222.869,498.129 222.861,498.115 222.854,498.098 C 222.848,498.081 222.844,498.065 222.844,498.047 C 222.844,498.03 222.848,498.013 222.855,497.997 C 222.861,497.982 222.869,497.97 222.881,497.96 C 222.893,497.95 222.907,497.942 222.921,497.937 C 222.935,497.931 222.952,497.93 222.969,497.931 L 223.16,497.951 L 223.16,497.88 L 222.969,497.86 L 222.931,497.86 C 222.918,497.861 222.906,497.864 222.894,497.867 Z M 220.754,497.885 L 220.928,497.902 C 220.931,497.904 220.934,497.904 220.936,497.905 C 220.938,497.905 220.94,497.906 220.943,497.908 C 220.948,497.912 220.954,497.916 220.958,497.923 C 220.961,497.929 220.963,497.935 220.963,497.943 C 220.963,497.949 220.961,497.955 220.959,497.958 C 220.957,497.963 220.955,497.966 220.953,497.967 C 220.95,497.969 220.947,497.971 220.944,497.973 C 220.938,497.975 220.935,497.976 220.928,497.975 L 220.754,497.957 L 220.754,497.885 Z M 223.374,497.904 L 223.374,498.23 L 223.217,498.213 L 223.217,498.286 L 223.601,498.324 L 223.601,498.254 L 223.443,498.236 L 223.443,497.91 L 223.374,497.904 Z M 221.154,497.925 L 221.328,497.943 C 221.332,497.944 221.333,497.944 221.337,497.944 C 221.339,497.945 221.342,497.947 221.345,497.948 C 221.35,497.952 221.355,497.957 221.359,497.963 C 221.363,497.969 221.364,497.976 221.364,497.983 C 221.364,497.99 221.363,497.995 221.361,498 C 221.359,498.005 221.356,498.008 221.353,498.009 C 221.351,498.011 221.348,498.013 221.345,498.015 C 221.341,498.017 221.335,498.018 221.328,498.017 L 221.154,497.999 L 221.154,497.925 Z M 223.656,497.931 L 223.656,498.33 L 223.726,498.338 L 223.726,497.939 L 223.656,497.931 Z M 223.955,497.963 L 223.793,498.273 L 223.758,498.341 L 223.835,498.349 L 223.87,498.281 L 223.954,498.12 L 224.038,498.299 L 224.074,498.373 L 224.151,498.382 L 224.115,498.306 L 223.955,497.963 Z M 224.249,498.002 C 224.237,498.007 224.225,498.012 224.217,498.022 C 224.206,498.03 224.197,498.041 224.194,498.054 C 224.188,498.065 224.184,498.079 224.184,498.093 L 224.184,498.278 C 224.184,498.292 224.187,498.305 224.193,498.319 C 224.197,498.333 224.206,498.345 224.216,498.357 C 224.224,498.367 224.236,498.377 224.248,498.383 C 224.26,498.39 224.275,498.394 224.288,498.396 L 224.569,498.424 L 224.569,498.354 L 224.288,498.324 C 224.281,498.324 224.275,498.321 224.269,498.318 C 224.265,498.314 224.262,498.31 224.257,498.303 C 224.255,498.298 224.253,498.292 224.253,498.286 L 224.253,498.247 L 224.501,498.273 L 224.501,498.202 L 224.254,498.177 L 224.254,498.1 C 224.254,498.094 224.256,498.089 224.258,498.084 C 224.262,498.078 224.265,498.073 224.271,498.072 C 224.276,498.068 224.281,498.067 224.289,498.067 L 224.57,498.098 L 224.57,498.026 L 224.289,497.997 C 224.275,497.995 224.261,497.997 224.249,498.002 Z M 224.892,498.059 L 224.892,498.457 L 225.134,498.483 C 225.149,498.484 225.162,498.483 225.174,498.479 C 225.187,498.474 225.199,498.467 225.208,498.459 C 225.218,498.45 225.224,498.438 225.231,498.426 C 225.235,498.414 225.237,498.401 225.237,498.386 C 225.237,498.371 225.236,498.357 225.231,498.344 C 225.226,498.331 225.219,498.318 225.21,498.309 C 225.201,498.299 225.192,498.289 225.178,498.283 C 225.169,498.277 225.158,498.273 225.148,498.271 L 225.205,498.163 L 225.238,498.094 L 225.16,498.087 L 225.127,498.155 L 225.091,498.225 L 225.089,498.228 C 225.083,498.238 225.073,498.246 225.062,498.25 C 225.053,498.255 225.042,498.257 225.03,498.257 L 224.959,498.249 L 224.96,498.066 L 224.892,498.059 Z M 225.358,498.118 C 225.346,498.121 225.334,498.129 225.326,498.137 C 225.316,498.144 225.309,498.156 225.303,498.168 C 225.297,498.18 225.295,498.195 225.295,498.208 L 225.295,498.393 C 225.295,498.407 225.297,498.421 225.303,498.434 C 225.308,498.448 225.316,498.461 225.326,498.473 C 225.334,498.483 225.345,498.491 225.358,498.499 C 225.37,498.505 225.384,498.51 225.397,498.511 L 225.679,498.539 L 225.679,498.469 L 225.397,498.44 C 225.392,498.438 225.385,498.436 225.379,498.432 C 225.376,498.429 225.372,498.423 225.368,498.419 C 225.365,498.412 225.363,498.406 225.363,498.399 L 225.363,498.364 L 225.611,498.388 L 225.611,498.316 L 225.363,498.292 L 225.363,498.216 C 225.363,498.209 225.365,498.204 225.368,498.198 C 225.372,498.194 225.376,498.19 225.381,498.187 C 225.385,498.184 225.392,498.183 225.397,498.183 L 225.68,498.213 L 225.68,498.142 L 225.398,498.113 C 225.384,498.112 225.371,498.114 225.358,498.118 Z M 225.809,498.165 C 225.795,498.169 225.782,498.177 225.771,498.188 C 225.76,498.197 225.752,498.211 225.744,498.225 C 225.739,498.24 225.734,498.256 225.734,498.273 L 225.805,498.28 C 225.805,498.27 225.806,498.26 225.811,498.254 C 225.816,498.246 225.822,498.24 225.83,498.235 C 225.837,498.232 225.845,498.231 225.857,498.231 L 225.978,498.244 C 225.988,498.245 225.996,498.248 226.005,498.254 C 226.011,498.26 226.018,498.266 226.023,498.276 C 226.027,498.285 226.031,498.292 226.031,498.304 C 226.031,498.314 226.027,498.323 226.023,498.331 C 226.018,498.339 226.011,498.344 226.005,498.348 C 225.995,498.352 225.988,498.354 225.978,498.353 L 225.837,498.339 L 225.818,498.339 C 225.811,498.339 225.805,498.341 225.799,498.343 C 225.786,498.346 225.777,498.353 225.767,498.36 C 225.763,498.365 225.757,498.37 225.753,498.377 C 225.747,498.385 225.743,498.394 225.74,498.404 C 225.736,498.414 225.734,498.424 225.734,498.434 L 225.734,498.438 C 225.734,498.454 225.737,498.467 225.743,498.48 C 225.747,498.493 225.755,498.505 225.766,498.517 C 225.776,498.528 225.786,498.537 225.799,498.543 C 225.81,498.551 225.824,498.555 225.837,498.556 L 225.994,498.572 C 226.008,498.574 226.022,498.572 226.034,498.569 C 226.047,498.564 226.057,498.558 226.068,498.55 C 226.077,498.539 226.085,498.529 226.09,498.517 C 226.096,498.505 226.098,498.491 226.098,498.476 L 226.098,498.474 L 226.03,498.466 L 226.03,498.467 C 226.03,498.474 226.027,498.48 226.025,498.486 C 226.021,498.491 226.018,498.495 226.012,498.499 C 226.007,498.5 226.001,498.502 225.994,498.501 L 225.837,498.486 C 225.831,498.484 225.824,498.481 225.819,498.478 C 225.816,498.474 225.811,498.469 225.807,498.463 C 225.805,498.458 225.804,498.451 225.804,498.445 L 225.804,498.442 C 225.804,498.434 225.805,498.43 225.807,498.423 C 225.811,498.419 225.816,498.415 225.821,498.412 C 225.824,498.41 225.831,498.408 225.837,498.409 L 225.978,498.423 L 226.003,498.423 C 226.011,498.421 226.019,498.421 226.026,498.418 C 226.043,498.412 226.056,498.404 226.066,498.393 C 226.068,498.392 226.069,498.391 226.069,498.39 C 226.069,498.389 226.069,498.389 226.07,498.388 C 226.08,498.378 226.086,498.367 226.091,498.354 C 226.097,498.341 226.099,498.325 226.099,498.311 C 226.099,498.292 226.096,498.277 226.089,498.26 C 226.084,498.246 226.075,498.231 226.063,498.22 C 226.051,498.206 226.039,498.195 226.024,498.187 C 226.009,498.18 225.994,498.174 225.978,498.172 L 225.857,498.159 C 225.839,498.157 225.824,498.159 225.809,498.165 Z M 226.155,498.191 L 226.153,498.589 L 226.397,498.615 C 226.412,498.616 226.425,498.615 226.437,498.61 C 226.45,498.606 226.46,498.6 226.471,498.59 L 226.471,498.59 C 226.48,498.581 226.488,498.57 226.493,498.558 C 226.497,498.544 226.5,498.531 226.5,498.517 C 226.5,498.502 226.498,498.488 226.493,498.476 C 226.489,498.461 226.482,498.45 226.472,498.438 C 226.463,498.428 226.453,498.42 226.44,498.413 C 226.431,498.407 226.422,498.404 226.412,498.401 C 226.41,498.401 226.409,498.401 226.408,498.401 L 226.408,498.4 L 226.224,498.381 L 226.224,498.198 L 226.155,498.191 Z M 226.557,498.233 L 226.556,498.63 L 226.623,498.637 L 226.625,498.24 L 226.557,498.233 Z M 226.68,498.244 L 226.68,498.642 L 226.922,498.667 C 226.937,498.67 226.95,498.668 226.964,498.664 C 226.975,498.659 226.986,498.652 226.996,498.644 C 227.006,498.634 227.012,498.624 227.018,498.612 C 227.023,498.6 227.025,498.587 227.025,498.571 C 227.025,498.557 227.023,498.543 227.019,498.53 C 227.012,498.516 227.006,498.504 226.998,498.493 C 226.988,498.484 226.977,498.474 226.966,498.467 C 226.956,498.461 226.946,498.458 226.936,498.455 L 226.992,498.348 L 227.025,498.28 L 226.949,498.272 L 226.914,498.34 L 226.877,498.41 L 226.876,498.413 C 226.87,498.422 226.862,498.43 226.851,498.434 C 226.841,498.441 226.83,498.443 226.818,498.442 L 226.749,498.434 L 226.749,498.251 L 226.68,498.244 Z M 227.059,498.286 L 227.096,498.359 L 227.256,498.703 L 227.418,498.393 L 227.454,498.325 L 227.376,498.317 L 227.341,498.385 L 227.256,498.546 L 227.172,498.367 L 227.136,498.292 L 227.059,498.286 Z M 224.959,498.319 L 225.134,498.339 C 225.138,498.339 225.14,498.34 225.142,498.341 C 225.144,498.341 225.147,498.343 225.149,498.344 C 225.154,498.347 225.16,498.352 225.165,498.358 C 225.168,498.365 225.17,498.371 225.17,498.38 C 225.17,498.385 225.169,498.391 225.166,498.395 C 225.164,498.399 225.16,498.402 225.159,498.404 C 225.157,498.406 225.153,498.407 225.151,498.409 C 225.147,498.41 225.145,498.41 225.143,498.411 L 225.134,498.411 L 224.959,498.393 L 224.959,498.319 Z M 227.645,498.345 L 227.645,498.674 L 227.485,498.656 L 227.485,498.727 L 227.871,498.767 L 227.871,498.697 L 227.712,498.68 L 227.712,498.352 L 227.645,498.345 Z M 228.03,498.401 C 228.006,498.408 227.987,498.421 227.969,498.436 C 227.953,498.454 227.937,498.473 227.927,498.497 C 227.918,498.518 227.912,498.544 227.912,498.572 C 227.912,498.6 227.917,498.626 227.927,498.65 C 227.937,498.677 227.952,498.699 227.969,498.718 C 227.987,498.738 228.006,498.755 228.029,498.768 C 228.053,498.781 228.079,498.79 228.104,498.792 C 228.132,498.794 228.156,498.792 228.18,498.783 C 228.203,498.777 228.225,498.763 228.242,498.746 C 228.258,498.73 228.272,498.712 228.283,498.688 C 228.293,498.665 228.297,498.639 228.298,498.612 C 228.297,498.584 228.293,498.558 228.284,498.532 C 228.272,498.507 228.258,498.486 228.242,498.465 C 228.226,498.447 228.204,498.429 228.181,498.416 C 228.157,498.404 228.133,498.396 228.106,498.393 L 228.067,498.393 C 228.054,498.395 228.043,498.397 228.03,498.401 Z M 228.34,498.416 L 228.339,498.814 L 228.582,498.84 C 228.595,498.84 228.609,498.839 228.622,498.835 C 228.635,498.831 228.646,498.825 228.656,498.816 C 228.665,498.807 228.671,498.796 228.677,498.784 C 228.683,498.772 228.684,498.757 228.684,498.743 C 228.684,498.729 228.683,498.715 228.678,498.702 C 228.673,498.688 228.667,498.677 228.656,498.666 C 228.647,498.654 228.637,498.646 228.626,498.639 C 228.615,498.634 228.606,498.629 228.594,498.628 L 228.652,498.519 L 228.685,498.452 L 228.608,498.445 L 228.574,498.512 L 228.536,498.583 L 228.535,498.586 C 228.529,498.596 228.522,498.603 228.51,498.608 C 228.501,498.613 228.489,498.615 228.476,498.613 L 228.408,498.607 L 228.408,498.423 L 228.34,498.416 Z M 226.223,498.452 L 226.397,498.47 C 226.399,498.471 226.403,498.471 226.406,498.473 C 226.407,498.473 226.41,498.473 226.412,498.474 L 226.412,498.476 C 226.418,498.48 226.424,498.484 226.427,498.491 C 226.431,498.497 226.432,498.504 226.433,498.512 C 226.432,498.517 226.431,498.523 226.429,498.526 C 226.426,498.531 226.425,498.534 226.422,498.536 C 226.419,498.537 226.418,498.539 226.413,498.541 C 226.409,498.543 226.405,498.544 226.397,498.543 L 226.223,498.525 L 226.223,498.452 Z M 228.106,498.464 C 228.122,498.466 228.138,498.471 228.153,498.48 C 228.167,498.487 228.182,498.499 228.193,498.512 C 228.204,498.524 228.213,498.538 228.219,498.555 C 228.227,498.57 228.229,498.588 228.229,498.605 C 228.229,498.622 228.226,498.639 228.219,498.653 C 228.213,498.67 228.204,498.682 228.193,498.692 C 228.181,498.703 228.167,498.711 228.153,498.715 C 228.138,498.72 228.122,498.721 228.104,498.72 C 228.088,498.718 228.071,498.712 228.057,498.706 C 228.043,498.698 228.029,498.686 228.018,498.674 C 228.006,498.661 227.997,498.646 227.992,498.63 C 227.985,498.614 227.982,498.597 227.982,498.581 C 227.982,498.562 227.985,498.544 227.992,498.53 C 227.997,498.515 228.006,498.504 228.018,498.493 C 228.029,498.483 228.043,498.474 228.057,498.47 C 228.072,498.464 228.088,498.462 228.106,498.464 Z M 226.749,498.505 L 226.922,498.524 C 226.925,498.524 226.928,498.525 226.929,498.525 C 226.932,498.526 226.934,498.526 226.937,498.528 C 226.943,498.531 226.948,498.537 226.952,498.543 C 226.956,498.551 226.958,498.557 226.958,498.564 C 226.958,498.57 226.956,498.577 226.954,498.581 C 226.952,498.583 226.949,498.587 226.947,498.589 C 226.944,498.592 226.941,498.593 226.937,498.595 C 226.934,498.596 226.928,498.596 226.922,498.596 L 226.749,498.579 L 226.749,498.505 Z M 228.408,498.678 L 228.582,498.697 C 228.585,498.697 228.587,498.698 228.589,498.698 C 228.592,498.699 228.593,498.699 228.595,498.701 C 228.602,498.705 228.607,498.71 228.612,498.715 C 228.615,498.721 228.617,498.728 228.617,498.736 C 228.617,498.742 228.615,498.746 228.614,498.751 C 228.612,498.755 228.608,498.757 228.606,498.76 C 228.604,498.763 228.6,498.764 228.597,498.766 C 228.593,498.769 228.588,498.769 228.582,498.769 L 228.408,498.75 L 228.408,498.678 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 215.816,510.955 L 215.642,511.115 L 233.05,512.251 L 233.139,512.212 C 233.169,512.202 233.197,512.174 233.197,512.129 L 233.197,512.086 L 215.816,510.955 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 215.642,511.115 L 215.641,487.664 L 215.729,487.58 L 215.816,487.592 L 215.816,510.954 L 215.642,511.115 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--POWDER_BLUE, .KN95_NR_small_individuals--POWDER_BLUE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='111.719 -433.288 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.303' y2='19.848' gradientTransform='translate(124.361 405.817)'%3E%3Cstop offset='0' stop-color='%2379acc9'/%3E%3Cstop offset='1' stop-color='%2396cdeb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.921' gradientTransform='translate(120.822 406.432)'%3E%3Cstop offset='0' stop-color='%235d7f92'/%3E%3Cstop offset='1' stop-color='%2380aec8'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.1' gradientTransform='translate(124.355 425.801)'%3E%3Cstop offset='0' stop-color='%237098af'/%3E%3Cstop offset='1' stop-color='%2382b2cc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.118' y2='-0.228' gradientTransform='translate(119.681 427.856)'%3E%3Cstop offset='0' stop-color='%235b7c8e'/%3E%3Cstop offset='1' stop-color='%237098af'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.165' gradientTransform='translate(132.675 427.673) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2376a0b8'/%3E%3Cstop offset='1' stop-color='%2385b5d0'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.164' y2='0' gradientTransform='translate(121.53 415.56) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%236f97ad'/%3E%3Cstop offset='1' stop-color='%2380aec8'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(128.448 416.559) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 121.449,403.404 L 121.449,426.891 L 138.896,428.01 C 138.908,427.996 138.916,427.975 138.916,427.952 L 138.916,405.771 L 121.449,403.404 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 121.449,403.404 L 117.985,406.766 L 117.982,428.788 L 121.449,426.891 L 121.449,403.404 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 121.449,426.891 L 117.982,428.788 L 134.915,429.716 L 138.858,428.036 C 138.872,428.031 138.885,428.023 138.896,428.01 L 121.449,426.891 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 121.361,426.622 L 117.982,428.511 L 117.981,428.788 L 121.361,426.937 L 121.361,426.622 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 128.49,409.006 L 128.49,409.415 L 128.562,409.424 L 128.562,409.012 L 128.49,409.006 Z M 128.62,409.018 L 128.62,409.427 L 128.691,409.381 L 128.953,409.205 L 128.953,409.466 L 129.024,409.474 L 129.024,409.064 L 128.953,409.111 L 128.691,409.288 L 128.691,409.027 L 128.62,409.018 Z M 129.082,409.069 L 129.082,409.481 L 129.285,409.502 C 129.313,409.505 129.339,409.503 129.362,409.494 C 129.388,409.487 129.409,409.475 129.427,409.457 C 129.446,409.44 129.46,409.421 129.471,409.398 C 129.481,409.374 129.487,409.347 129.487,409.318 C 129.487,409.293 129.482,409.27 129.475,409.246 C 129.465,409.223 129.453,409.201 129.439,409.182 C 129.437,409.18 129.435,409.177 129.434,409.175 C 129.432,409.173 129.429,409.17 129.427,409.167 C 129.409,409.146 129.388,409.131 129.362,409.116 C 129.339,409.103 129.313,409.095 129.285,409.092 L 129.082,409.069 Z M 129.545,409.12 L 129.545,409.531 L 129.619,409.537 L 129.619,409.128 L 129.545,409.12 Z M 129.155,409.15 L 129.285,409.164 C 129.303,409.167 129.319,409.173 129.335,409.18 C 129.351,409.189 129.365,409.199 129.376,409.212 C 129.389,409.225 129.397,409.242 129.405,409.258 C 129.411,409.276 129.414,409.293 129.414,409.31 C 129.414,409.329 129.411,409.345 129.405,409.361 C 129.397,409.376 129.389,409.389 129.376,409.4 C 129.365,409.412 129.351,409.419 129.335,409.424 C 129.319,409.428 129.303,409.43 129.285,409.428 L 129.155,409.414 L 129.155,409.15 Z M 129.86,409.155 L 129.688,409.474 L 129.652,409.542 L 129.733,409.55 L 129.769,409.482 L 129.86,409.316 L 129.947,409.502 L 129.984,409.579 L 130.065,409.587 L 130.028,409.509 L 129.86,409.155 Z M 130.101,409.18 L 130.101,409.591 L 130.173,409.599 L 130.173,409.188 L 130.101,409.18 Z M 130.232,409.194 L 130.232,409.605 L 130.434,409.626 C 130.46,409.629 130.487,409.626 130.512,409.619 C 130.537,409.613 130.557,409.6 130.576,409.583 C 130.595,409.566 130.609,409.545 130.619,409.522 C 130.63,409.498 130.634,409.473 130.634,409.443 C 130.634,409.419 130.632,409.394 130.623,409.371 C 130.614,409.347 130.603,409.326 130.587,409.306 C 130.585,409.304 130.583,409.302 130.582,409.3 C 130.58,409.297 130.578,409.294 130.575,409.293 C 130.556,409.272 130.537,409.255 130.512,409.241 C 130.487,409.227 130.46,409.22 130.434,409.216 L 130.232,409.194 Z M 130.818,409.275 C 130.793,409.283 130.77,409.294 130.752,409.311 C 130.734,409.328 130.72,409.348 130.71,409.373 C 130.7,409.396 130.694,409.422 130.694,409.45 L 130.694,409.655 L 130.765,409.663 L 130.765,409.457 C 130.765,409.439 130.769,409.423 130.776,409.408 C 130.782,409.393 130.793,409.381 130.805,409.369 C 130.817,409.358 130.83,409.349 130.847,409.345 C 130.86,409.34 130.878,409.337 130.896,409.34 C 130.914,409.342 130.931,409.347 130.947,409.356 C 130.963,409.365 130.976,409.376 130.989,409.389 C 131,409.402 131.008,409.417 131.016,409.434 C 131.023,409.451 131.027,409.468 131.027,409.487 L 131.027,409.691 L 131.099,409.699 L 131.099,409.494 C 131.099,409.466 131.093,409.438 131.083,409.413 C 131.072,409.387 131.058,409.363 131.04,409.342 C 131.021,409.322 130.999,409.306 130.974,409.291 C 130.951,409.279 130.925,409.27 130.896,409.267 C 130.867,409.264 130.842,409.267 130.818,409.275 Z M 130.302,409.276 L 130.434,409.29 C 130.45,409.291 130.466,409.296 130.484,409.306 C 130.499,409.314 130.513,409.324 130.525,409.337 C 130.537,409.352 130.545,409.367 130.553,409.384 C 130.559,409.4 130.563,409.417 130.563,409.435 C 130.563,409.453 130.559,409.471 130.553,409.486 C 130.545,409.502 130.537,409.515 130.525,409.524 C 130.513,409.535 130.499,409.542 130.484,409.548 C 130.466,409.554 130.45,409.555 130.434,409.554 L 130.302,409.539 L 130.302,409.276 Z M 131.134,409.293 L 131.17,409.371 L 131.339,409.725 L 131.511,409.407 L 131.547,409.336 L 131.466,409.329 L 131.429,409.399 L 131.339,409.563 L 131.252,409.38 L 131.215,409.302 L 131.134,409.293 Z M 131.682,409.356 C 131.671,409.358 131.662,409.359 131.654,409.362 C 131.641,409.368 131.63,409.375 131.62,409.385 C 131.609,409.393 131.602,409.404 131.596,409.416 C 131.591,409.425 131.589,409.433 131.586,409.442 C 131.583,409.451 131.583,409.462 131.583,409.473 L 131.583,409.751 L 131.654,409.759 L 131.654,409.474 C 131.655,409.465 131.658,409.456 131.662,409.451 C 131.667,409.443 131.672,409.438 131.681,409.434 C 131.687,409.431 131.696,409.428 131.704,409.428 L 131.916,409.451 L 131.916,409.379 L 131.71,409.356 C 131.7,409.355 131.691,409.355 131.682,409.356 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 126.287,415.733 L 126.285,417.786 L 126.624,417.82 L 126.626,416.772 L 126.904,417.075 L 127.156,417.35 L 127.684,417.928 L 128.186,417.979 L 127.357,417.072 L 128.181,415.926 L 127.763,415.885 L 127.106,416.797 L 126.626,416.276 L 126.626,415.769 L 126.287,415.733 Z M 128.354,415.945 L 128.529,416.328 L 129.32,418.095 L 130.117,416.491 L 130.291,416.142 L 129.911,416.103 L 129.737,416.452 L 129.322,417.289 L 128.906,416.367 L 128.734,415.984 L 128.354,415.945 Z M 130.461,416.158 L 130.465,416.159 L 130.725,416.552 L 131.19,417.255 L 131.406,417.576 L 131.664,417.968 L 130.458,417.844 L 130.457,418.211 L 131.926,418.359 L 132.35,418.404 L 132.088,418.01 L 131.617,417.298 L 131.404,416.977 L 131.148,416.595 L 132.361,416.718 L 132.362,416.351 L 130.892,416.203 L 130.891,416.203 L 130.461,416.158 Z M 132.939,416.455 C 132.877,416.477 132.822,416.51 132.777,416.558 C 132.729,416.603 132.693,416.658 132.667,416.722 C 132.64,416.786 132.628,416.857 132.627,416.933 L 132.625,417.878 C 132.625,417.955 132.638,418.027 132.664,418.096 C 132.691,418.165 132.726,418.227 132.774,418.283 C 132.82,418.339 132.874,418.384 132.936,418.418 C 132.997,418.454 133.064,418.475 133.135,418.483 L 134.521,418.624 L 134.521,418.257 L 133.135,418.116 C 133.102,418.113 133.074,418.101 133.048,418.082 C 133.022,418.062 133.001,418.037 132.985,418.008 C 132.97,417.979 132.963,417.946 132.963,417.911 L 132.963,417.72 L 134.183,417.846 L 134.184,417.479 L 132.963,417.355 L 132.963,416.968 C 132.963,416.933 132.971,416.903 132.987,416.876 C 133.003,416.848 133.023,416.828 133.049,416.814 C 133.075,416.799 133.103,416.795 133.137,416.797 L 134.523,416.938 L 134.523,416.572 L 133.137,416.431 C 133.068,416.424 133,416.432 132.939,416.455 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 128.291,414.643 L 128.291,415.08 C 128.291,415.104 128.294,415.125 128.303,415.145 C 128.31,415.164 128.322,415.184 128.336,415.201 C 128.35,415.217 128.368,415.229 128.388,415.24 C 128.407,415.25 128.427,415.257 128.45,415.259 L 128.883,415.305 L 128.883,415.199 L 128.45,415.152 C 128.44,415.151 128.431,415.148 128.422,415.142 C 128.414,415.136 128.408,415.129 128.403,415.12 C 128.398,415.112 128.396,415.103 128.396,415.094 L 128.396,415.036 L 128.776,415.076 L 128.776,414.969 L 128.396,414.929 L 128.396,414.655 L 128.291,414.643 Z M 128.969,414.714 L 128.968,415.152 C 128.968,415.174 128.972,415.197 128.981,415.217 C 128.988,415.236 128.999,415.254 129.013,415.271 C 129.028,415.287 129.047,415.301 129.065,415.312 C 129.084,415.322 129.104,415.328 129.127,415.332 L 129.559,415.377 L 129.56,415.269 L 129.128,415.225 C 129.117,415.222 129.108,415.22 129.1,415.215 C 129.091,415.208 129.086,415.201 129.08,415.192 C 129.076,415.183 129.073,415.173 129.073,415.163 L 129.073,415.109 L 129.454,415.148 L 129.454,415.042 L 129.073,415.002 L 129.073,414.725 L 128.969,414.714 Z M 129.647,414.787 L 129.645,415.386 L 130.018,415.426 C 130.041,415.428 130.061,415.426 130.079,415.42 C 130.098,415.414 130.116,415.403 130.13,415.39 L 130.13,415.388 C 130.146,415.375 130.157,415.36 130.167,415.341 C 130.174,415.322 130.178,415.301 130.178,415.28 C 130.178,415.257 130.174,415.236 130.167,415.217 C 130.159,415.197 130.147,415.178 130.134,415.163 C 130.119,415.147 130.104,415.133 130.085,415.124 C 130.071,415.114 130.056,415.109 130.04,415.106 C 130.038,415.106 130.036,415.106 130.035,415.105 L 130.035,415.104 L 129.751,415.073 L 129.752,414.799 L 129.647,414.787 Z M 130.262,414.849 L 130.262,415.028 C 130.262,415.039 130.263,415.05 130.266,415.062 C 130.268,415.073 130.272,415.087 130.276,415.098 C 130.285,415.119 130.297,415.138 130.311,415.155 C 130.327,415.173 130.344,415.188 130.366,415.201 C 130.385,415.21 130.407,415.218 130.431,415.222 L 130.684,415.248 L 130.686,415.248 C 130.699,415.251 130.71,415.256 130.718,415.263 C 130.728,415.27 130.735,415.28 130.741,415.292 C 130.746,415.301 130.749,415.313 130.749,415.326 C 130.749,415.338 130.746,415.35 130.739,415.36 C 130.733,415.369 130.726,415.377 130.715,415.383 C 130.705,415.388 130.693,415.39 130.679,415.388 L 130.263,415.345 L 130.263,415.452 L 130.679,415.495 C 130.705,415.497 130.728,415.495 130.748,415.488 C 130.769,415.482 130.786,415.471 130.804,415.456 C 130.82,415.442 130.833,415.426 130.841,415.404 C 130.85,415.384 130.854,415.362 130.855,415.337 C 130.855,415.325 130.854,415.313 130.851,415.3 C 130.848,415.288 130.846,415.277 130.841,415.266 C 130.836,415.254 130.832,415.245 130.826,415.236 C 130.82,415.227 130.813,415.218 130.805,415.21 C 130.79,415.191 130.771,415.176 130.751,415.164 C 130.731,415.153 130.71,415.146 130.685,415.142 L 130.683,415.142 C 130.682,415.142 130.681,415.142 130.679,415.141 L 130.431,415.116 C 130.419,415.113 130.408,415.109 130.399,415.101 C 130.389,415.094 130.382,415.084 130.377,415.073 C 130.371,415.062 130.37,415.052 130.37,415.04 L 130.37,414.97 L 130.852,415.02 L 130.853,414.912 L 130.435,414.868 L 130.262,414.849 Z M 131.352,414.967 L 131.351,415.563 L 131.457,415.493 L 131.839,415.236 L 131.838,415.617 L 131.944,415.628 L 131.945,415.029 L 131.839,415.101 L 131.457,415.358 L 131.458,414.978 L 131.352,414.967 Z M 132.029,415.039 L 132.029,415.639 L 132.403,415.678 C 132.423,415.681 132.444,415.679 132.464,415.67 C 132.484,415.666 132.5,415.655 132.514,415.642 C 132.529,415.628 132.54,415.613 132.548,415.594 C 132.557,415.575 132.561,415.554 132.561,415.533 C 132.561,415.51 132.557,415.489 132.549,415.468 C 132.541,415.449 132.531,415.431 132.516,415.415 C 132.503,415.398 132.487,415.386 132.469,415.375 C 132.455,415.366 132.438,415.36 132.422,415.356 L 132.508,415.195 L 132.562,415.095 L 132.444,415.082 L 132.39,415.183 L 132.331,415.288 L 132.33,415.293 C 132.32,415.309 132.308,415.32 132.292,415.327 C 132.277,415.335 132.259,415.338 132.24,415.336 L 132.135,415.325 L 132.136,415.048 L 132.029,415.039 Z M 129.751,415.178 L 130.02,415.208 C 130.022,415.208 130.027,415.209 130.031,415.21 C 130.034,415.212 130.038,415.213 130.041,415.216 L 130.041,415.216 C 130.051,415.221 130.06,415.229 130.064,415.238 C 130.071,415.248 130.073,415.257 130.073,415.268 C 130.073,415.279 130.071,415.286 130.067,415.293 C 130.064,415.298 130.06,415.304 130.058,415.307 C 130.053,415.31 130.049,415.313 130.043,415.315 C 130.036,415.319 130.028,415.319 130.02,415.319 L 129.751,415.288 L 129.751,415.178 Z M 132.135,415.431 L 132.403,415.46 C 132.406,415.46 132.409,415.461 132.414,415.461 C 132.417,415.464 132.421,415.465 132.423,415.468 C 132.435,415.473 132.441,415.481 132.447,415.489 C 132.455,415.5 132.457,415.51 132.457,415.52 C 132.456,415.532 132.455,415.539 132.449,415.545 C 132.446,415.552 132.444,415.556 132.44,415.559 C 132.436,415.562 132.431,415.565 132.426,415.568 C 132.418,415.57 132.411,415.571 132.403,415.57 L 132.135,415.542 L 132.135,415.431 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 126.405,413.447 L 126.404,413.845 L 126.646,413.87 C 126.66,413.873 126.675,413.87 126.686,413.866 C 126.698,413.861 126.71,413.856 126.72,413.846 L 126.72,413.846 C 126.73,413.836 126.737,413.827 126.742,413.815 C 126.747,413.802 126.751,413.789 126.751,413.774 C 126.751,413.757 126.748,413.744 126.743,413.731 C 126.738,413.718 126.732,413.707 126.723,413.695 C 126.712,413.685 126.702,413.675 126.69,413.67 C 126.68,413.664 126.671,413.659 126.66,413.659 C 126.659,413.659 126.658,413.657 126.658,413.657 L 126.658,413.657 L 126.472,413.637 L 126.474,413.455 L 126.405,413.447 Z M 126.805,413.487 L 126.804,413.886 L 127.049,413.912 C 127.064,413.912 127.077,413.912 127.088,413.907 C 127.101,413.903 127.11,413.897 127.121,413.887 C 127.13,413.879 127.137,413.868 127.144,413.856 C 127.148,413.844 127.151,413.83 127.151,413.815 C 127.151,413.801 127.148,413.787 127.145,413.774 C 127.138,413.759 127.131,413.748 127.122,413.737 C 127.112,413.726 127.104,413.718 127.091,413.711 C 127.082,413.705 127.072,413.701 127.062,413.699 L 127.116,413.591 L 127.151,413.523 L 127.076,413.515 L 127.039,413.582 L 127.003,413.654 L 127.001,413.657 C 126.995,413.668 126.987,413.674 126.977,413.68 C 126.966,413.685 126.955,413.686 126.943,413.685 L 126.873,413.678 L 126.873,413.494 L 126.805,413.487 Z M 127.311,413.557 C 127.289,413.564 127.269,413.577 127.251,413.592 C 127.232,413.609 127.219,413.629 127.209,413.651 C 127.2,413.675 127.194,413.701 127.194,413.729 C 127.194,413.756 127.2,413.783 127.208,413.807 C 127.219,413.832 127.232,413.854 127.251,413.874 C 127.267,413.895 127.289,413.912 127.31,413.924 C 127.334,413.937 127.359,413.944 127.387,413.947 C 127.413,413.95 127.439,413.947 127.462,413.939 C 127.484,413.931 127.506,413.92 127.523,413.904 C 127.541,413.887 127.555,413.867 127.564,413.844 C 127.574,413.821 127.579,413.796 127.579,413.769 C 127.579,413.74 127.574,413.714 127.564,413.688 C 127.555,413.664 127.542,413.642 127.523,413.621 C 127.506,413.602 127.484,413.584 127.463,413.572 C 127.439,413.559 127.413,413.551 127.387,413.55 L 127.348,413.55 C 127.335,413.551 127.323,413.553 127.311,413.557 Z M 127.778,413.589 L 127.778,413.917 L 127.621,413.9 L 127.621,413.97 L 128.004,414.012 L 128.004,413.94 L 127.848,413.924 L 127.849,413.596 L 127.778,413.589 Z M 127.387,413.62 C 127.403,413.621 127.42,413.627 127.435,413.635 C 127.451,413.644 127.464,413.654 127.474,413.667 C 127.484,413.68 127.495,413.694 127.502,413.711 C 127.508,413.725 127.51,413.743 127.51,413.761 C 127.51,413.779 127.508,413.795 127.501,413.809 C 127.495,413.824 127.484,413.837 127.474,413.847 C 127.463,413.858 127.45,413.866 127.434,413.87 C 127.42,413.876 127.403,413.878 127.387,413.876 C 127.369,413.874 127.353,413.869 127.338,413.86 C 127.323,413.853 127.31,413.842 127.298,413.83 C 127.288,413.816 127.279,413.803 127.272,413.785 C 127.267,413.77 127.263,413.753 127.263,413.736 C 127.263,413.718 127.267,413.701 127.272,413.686 C 127.279,413.672 127.289,413.659 127.299,413.648 C 127.31,413.638 127.324,413.63 127.338,413.625 C 127.353,413.621 127.37,413.618 127.387,413.62 Z M 128.123,413.634 C 128.113,413.637 128.103,413.644 128.091,413.654 C 128.083,413.663 128.075,413.673 128.071,413.685 C 128.065,413.698 128.062,413.712 128.062,413.726 L 128.062,413.911 C 128.062,413.925 128.064,413.939 128.069,413.952 C 128.075,413.965 128.082,413.977 128.091,413.99 C 128.101,414 128.112,414.008 128.123,414.015 C 128.136,414.022 128.149,414.028 128.165,414.028 L 128.446,414.057 L 128.446,413.987 L 128.165,413.957 C 128.159,413.956 128.152,413.954 128.146,413.95 C 128.142,413.946 128.137,413.941 128.135,413.936 C 128.131,413.93 128.129,413.923 128.129,413.917 L 128.129,413.88 L 128.377,413.906 L 128.377,413.834 L 128.129,413.809 L 128.13,413.734 C 128.13,413.726 128.131,413.721 128.135,413.716 C 128.138,413.711 128.142,413.707 128.147,413.705 C 128.154,413.701 128.159,413.699 128.165,413.701 L 128.446,413.731 L 128.446,413.659 L 128.165,413.63 C 128.15,413.628 128.137,413.63 128.123,413.634 Z M 128.613,413.692 C 128.589,413.699 128.57,413.712 128.552,413.727 C 128.534,413.744 128.52,413.764 128.511,413.788 C 128.501,413.81 128.496,413.835 128.496,413.862 C 128.496,413.891 128.501,413.917 128.511,413.941 C 128.519,413.966 128.534,413.99 128.552,414.009 C 128.57,414.03 128.589,414.046 128.613,414.059 C 128.636,414.071 128.661,414.079 128.688,414.082 L 128.879,414.103 L 128.879,414.031 L 128.688,414.011 C 128.671,414.009 128.654,414.004 128.64,413.996 C 128.625,413.989 128.611,413.977 128.6,413.963 C 128.588,413.95 128.581,413.938 128.573,413.921 C 128.568,413.906 128.564,413.888 128.564,413.87 C 128.564,413.853 128.568,413.836 128.574,413.821 C 128.581,413.807 128.588,413.795 128.601,413.783 C 128.612,413.774 128.627,413.765 128.64,413.759 C 128.654,413.755 128.671,413.753 128.688,413.755 L 128.88,413.775 L 128.88,413.705 L 128.688,413.684 L 128.649,413.684 C 128.637,413.685 128.625,413.688 128.613,413.692 Z M 126.472,413.708 L 126.647,413.725 C 126.651,413.725 126.653,413.726 126.656,413.727 C 126.658,413.727 126.659,413.729 126.662,413.731 C 126.668,413.735 126.673,413.738 126.677,413.745 C 126.68,413.751 126.682,413.757 126.682,413.766 C 126.682,413.772 126.68,413.778 126.678,413.782 C 126.677,413.787 126.674,413.789 126.671,413.791 C 126.67,413.794 126.667,413.796 126.663,413.797 C 126.658,413.799 126.654,413.8 126.647,413.799 L 126.472,413.782 L 126.472,413.708 Z M 129.093,413.725 L 129.093,414.054 L 128.935,414.037 L 128.935,414.109 L 129.32,414.148 L 129.32,414.076 L 129.163,414.06 L 129.163,413.733 L 129.093,413.725 Z M 126.873,413.748 L 127.049,413.767 C 127.051,413.767 127.053,413.769 127.056,413.769 C 127.058,413.77 127.06,413.77 127.064,413.771 C 127.069,413.776 127.074,413.78 127.078,413.788 C 127.082,413.793 127.084,413.8 127.084,413.807 C 127.084,413.814 127.082,413.819 127.08,413.823 C 127.078,413.828 127.076,413.83 127.073,413.832 C 127.071,413.834 127.067,413.836 127.065,413.838 C 127.06,413.84 127.054,413.841 127.049,413.84 L 126.873,413.821 L 126.873,413.748 Z M 129.376,413.755 L 129.375,414.153 L 129.445,414.161 L 129.446,413.764 L 129.376,413.755 Z M 129.673,413.787 L 129.512,414.098 L 129.477,414.163 L 129.554,414.171 L 129.589,414.105 L 129.673,413.943 L 129.757,414.122 L 129.793,414.196 L 129.87,414.206 L 129.834,414.131 L 129.673,413.787 Z M 129.968,413.825 C 129.956,413.83 129.945,413.835 129.936,413.844 C 129.926,413.853 129.918,413.864 129.913,413.876 C 129.907,413.889 129.904,413.903 129.904,413.917 L 129.904,414.101 C 129.904,414.116 129.906,414.13 129.912,414.143 C 129.918,414.157 129.925,414.169 129.935,414.179 C 129.944,414.189 129.955,414.2 129.968,414.207 C 129.979,414.214 129.994,414.218 130.008,414.22 L 130.288,414.248 L 130.288,414.176 L 130.008,414.148 C 130,414.148 129.995,414.144 129.989,414.141 C 129.984,414.138 129.981,414.133 129.977,414.127 C 129.974,414.122 129.972,414.115 129.972,414.109 L 129.972,414.071 L 130.221,414.098 L 130.221,414.027 L 129.973,414.001 L 129.973,413.925 C 129.973,413.918 129.975,413.912 129.977,413.907 C 129.981,413.902 129.984,413.897 129.99,413.895 C 129.995,413.893 130.001,413.891 130.008,413.893 L 130.289,413.921 L 130.289,413.849 L 130.008,413.821 C 129.994,413.819 129.98,413.821 129.968,413.825 Z M 130.611,413.882 L 130.61,414.28 L 130.854,414.306 C 130.868,414.307 130.881,414.306 130.894,414.301 C 130.907,414.297 130.918,414.29 130.927,414.282 C 130.937,414.273 130.944,414.262 130.95,414.25 C 130.954,414.238 130.957,414.224 130.957,414.209 C 130.957,414.194 130.955,414.18 130.951,414.167 C 130.945,414.154 130.938,414.142 130.929,414.132 C 130.92,414.122 130.911,414.112 130.897,414.106 C 130.889,414.1 130.877,414.096 130.867,414.095 L 130.924,413.985 L 130.958,413.918 L 130.88,413.911 L 130.847,413.977 L 130.809,414.047 L 130.809,414.052 C 130.802,414.06 130.793,414.068 130.782,414.073 C 130.771,414.078 130.761,414.08 130.75,414.079 L 130.679,414.072 L 130.679,413.889 L 130.611,413.882 Z M 131.077,413.94 C 131.066,413.944 131.054,413.95 131.045,413.96 C 131.035,413.969 131.028,413.978 131.023,413.991 C 131.017,414.004 131.015,414.018 131.015,414.032 L 131.015,414.217 C 131.015,414.231 131.016,414.245 131.022,414.258 C 131.028,414.272 131.035,414.284 131.045,414.295 C 131.054,414.306 131.065,414.315 131.077,414.323 C 131.09,414.329 131.103,414.333 131.117,414.334 L 131.398,414.363 L 131.398,414.292 L 131.117,414.262 C 131.111,414.262 131.105,414.26 131.099,414.256 C 131.095,414.253 131.091,414.248 131.086,414.242 C 131.084,414.236 131.082,414.23 131.082,414.223 L 131.082,414.186 L 131.33,414.212 L 131.33,414.14 L 131.083,414.115 L 131.083,414.041 C 131.083,414.033 131.085,414.028 131.087,414.022 C 131.091,414.017 131.095,414.014 131.099,414.01 C 131.105,414.008 131.112,414.007 131.117,414.007 L 131.399,414.036 L 131.399,413.964 L 131.118,413.936 C 131.104,413.935 131.09,413.937 131.077,413.94 Z M 131.529,413.989 C 131.514,413.994 131.501,414.002 131.49,414.011 C 131.479,414.021 131.471,414.034 131.464,414.048 C 131.458,414.063 131.454,414.079 131.454,414.097 L 131.524,414.104 C 131.524,414.094 131.525,414.084 131.531,414.076 C 131.535,414.069 131.541,414.062 131.549,414.059 C 131.557,414.055 131.564,414.054 131.577,414.054 L 131.698,414.066 C 131.707,414.068 131.715,414.071 131.724,414.076 C 131.731,414.083 131.738,414.089 131.742,414.099 C 131.747,414.108 131.749,414.118 131.749,414.127 C 131.749,414.138 131.747,414.146 131.742,414.153 C 131.738,414.162 131.731,414.166 131.724,414.17 C 131.715,414.175 131.707,414.176 131.698,414.176 L 131.557,414.162 L 131.538,414.162 C 131.531,414.163 131.524,414.163 131.518,414.164 C 131.506,414.17 131.497,414.176 131.485,414.183 C 131.482,414.189 131.475,414.194 131.473,414.2 C 131.466,414.209 131.462,414.218 131.459,414.228 C 131.455,414.237 131.454,414.248 131.454,414.259 L 131.454,414.261 C 131.454,414.275 131.457,414.29 131.462,414.304 C 131.467,414.319 131.474,414.33 131.485,414.34 C 131.495,414.351 131.505,414.36 131.518,414.366 C 131.529,414.374 131.543,414.377 131.557,414.379 L 131.713,414.396 C 131.727,414.397 131.741,414.396 131.754,414.391 C 131.766,414.388 131.777,414.38 131.788,414.372 C 131.797,414.363 131.805,414.352 131.81,414.34 C 131.816,414.328 131.817,414.315 131.817,414.299 L 131.817,414.297 L 131.749,414.288 L 131.749,414.29 C 131.749,414.298 131.747,414.304 131.744,414.309 C 131.74,414.315 131.736,414.319 131.732,414.322 C 131.726,414.324 131.72,414.325 131.713,414.325 L 131.557,414.307 C 131.551,414.307 131.544,414.305 131.539,414.3 C 131.535,414.297 131.531,414.292 131.526,414.286 C 131.524,414.28 131.523,414.273 131.523,414.267 L 131.523,414.265 C 131.523,414.258 131.524,414.254 131.526,414.248 C 131.531,414.242 131.535,414.238 131.54,414.236 C 131.544,414.233 131.551,414.232 131.557,414.233 L 131.698,414.247 L 131.723,414.247 C 131.73,414.246 131.738,414.245 131.746,414.241 C 131.762,414.236 131.775,414.228 131.786,414.217 C 131.788,414.216 131.788,414.216 131.789,414.214 C 131.789,414.214 131.789,414.213 131.79,414.212 C 131.799,414.202 131.806,414.189 131.81,414.176 C 131.816,414.163 131.818,414.15 131.818,414.135 C 131.818,414.118 131.815,414.1 131.809,414.084 C 131.803,414.069 131.794,414.054 131.783,414.042 C 131.77,414.029 131.758,414.019 131.743,414.01 C 131.729,414.003 131.713,413.997 131.698,413.996 L 131.577,413.982 C 131.558,413.981 131.543,413.982 131.529,413.989 Z M 131.874,414.015 L 131.873,414.412 L 132.116,414.438 C 132.132,414.44 132.145,414.438 132.156,414.434 C 132.169,414.43 132.18,414.422 132.19,414.414 L 132.19,414.414 C 132.199,414.404 132.207,414.393 132.212,414.38 C 132.216,414.368 132.22,414.355 132.22,414.34 C 132.22,414.325 132.217,414.311 132.212,414.298 C 132.208,414.285 132.201,414.273 132.191,414.262 C 132.182,414.252 132.172,414.243 132.159,414.236 C 132.151,414.231 132.141,414.228 132.131,414.225 C 132.13,414.225 132.128,414.224 132.127,414.224 L 132.127,414.223 L 131.944,414.205 L 131.944,414.022 L 131.874,414.015 Z M 132.276,414.056 L 132.275,414.454 L 132.343,414.461 L 132.345,414.063 L 132.276,414.056 Z M 132.399,414.066 L 132.398,414.466 L 132.642,414.49 C 132.656,414.493 132.669,414.491 132.683,414.486 C 132.695,414.482 132.705,414.476 132.715,414.467 C 132.725,414.458 132.732,414.448 132.737,414.435 C 132.742,414.422 132.745,414.409 132.745,414.395 C 132.745,414.38 132.742,414.365 132.738,414.353 C 132.732,414.339 132.726,414.328 132.717,414.318 C 132.707,414.306 132.697,414.298 132.685,414.29 C 132.675,414.285 132.665,414.281 132.655,414.279 L 132.71,414.17 L 132.745,414.104 L 132.669,414.096 L 132.633,414.163 L 132.597,414.233 L 132.595,414.236 C 132.589,414.246 132.581,414.254 132.571,414.258 C 132.56,414.264 132.548,414.266 132.537,414.265 L 132.469,414.257 L 132.469,414.073 L 132.399,414.066 Z M 132.778,414.109 L 132.815,414.183 L 132.976,414.526 L 133.137,414.217 L 133.173,414.15 L 133.095,414.14 L 133.061,414.209 L 132.976,414.37 L 132.891,414.19 L 132.855,414.117 L 132.778,414.109 Z M 130.679,414.143 L 130.854,414.162 C 130.857,414.163 130.86,414.163 130.861,414.163 C 130.863,414.163 130.866,414.164 130.868,414.166 C 130.874,414.17 130.879,414.175 130.884,414.181 C 130.887,414.188 130.89,414.194 130.89,414.202 C 130.89,414.209 130.889,414.215 130.886,414.219 C 130.884,414.222 130.88,414.227 130.879,414.228 C 130.876,414.23 130.873,414.231 130.87,414.233 C 130.866,414.233 130.865,414.234 130.861,414.235 L 130.854,414.235 L 130.679,414.217 L 130.679,414.143 Z M 133.363,414.168 L 133.363,414.496 L 133.204,414.48 L 133.204,414.551 L 133.59,414.59 L 133.59,414.519 L 133.431,414.502 L 133.432,414.175 L 133.363,414.168 Z M 133.749,414.224 C 133.726,414.232 133.707,414.245 133.688,414.26 C 133.672,414.277 133.657,414.296 133.646,414.32 C 133.636,414.343 133.631,414.367 133.631,414.396 C 133.631,414.422 133.636,414.449 133.646,414.474 C 133.656,414.499 133.671,414.522 133.688,414.543 C 133.706,414.563 133.726,414.578 133.749,414.591 C 133.772,414.604 133.798,414.612 133.824,414.615 C 133.852,414.617 133.875,414.615 133.899,414.607 C 133.922,414.6 133.944,414.587 133.961,414.57 C 133.978,414.554 133.991,414.535 134.002,414.511 C 134.012,414.487 134.017,414.463 134.017,414.435 C 134.017,414.408 134.012,414.381 134.003,414.356 C 133.991,414.332 133.978,414.309 133.961,414.288 C 133.945,414.269 133.923,414.253 133.9,414.24 C 133.876,414.228 133.852,414.22 133.825,414.217 L 133.786,414.217 C 133.773,414.219 133.762,414.221 133.749,414.224 Z M 134.059,414.24 L 134.058,414.637 L 134.3,414.663 C 134.315,414.664 134.329,414.662 134.342,414.658 C 134.354,414.655 134.365,414.648 134.375,414.639 C 134.385,414.63 134.391,414.62 134.397,414.608 C 134.402,414.595 134.404,414.581 134.404,414.567 C 134.404,414.552 134.402,414.538 134.397,414.525 C 134.392,414.512 134.385,414.499 134.376,414.488 C 134.367,414.478 134.357,414.47 134.346,414.462 C 134.334,414.457 134.325,414.454 134.313,414.452 L 134.371,414.343 L 134.405,414.274 L 134.328,414.267 L 134.294,414.336 L 134.256,414.406 L 134.254,414.409 C 134.249,414.419 134.241,414.428 134.23,414.432 C 134.22,414.436 134.208,414.438 134.196,414.437 L 134.127,414.431 L 134.127,414.247 L 134.059,414.24 Z M 131.942,414.274 L 132.116,414.293 C 132.119,414.293 132.123,414.294 132.125,414.295 C 132.126,414.296 132.13,414.296 132.132,414.298 L 132.132,414.298 C 132.138,414.302 132.143,414.307 132.146,414.314 C 132.151,414.321 132.151,414.327 132.152,414.334 C 132.151,414.34 132.151,414.346 132.149,414.351 C 132.146,414.354 132.145,414.357 132.141,414.359 C 132.139,414.362 132.137,414.363 132.132,414.364 C 132.128,414.366 132.124,414.367 132.116,414.366 L 131.942,414.349 L 131.942,414.274 Z M 133.825,414.286 C 133.842,414.288 133.858,414.294 133.873,414.303 C 133.888,414.311 133.901,414.322 133.912,414.334 C 133.924,414.347 133.933,414.362 133.939,414.377 C 133.946,414.394 133.948,414.41 133.948,414.429 C 133.948,414.447 133.946,414.462 133.939,414.477 C 133.933,414.493 133.923,414.505 133.911,414.515 C 133.901,414.525 133.888,414.533 133.873,414.538 C 133.858,414.544 133.842,414.545 133.824,414.544 C 133.807,414.542 133.791,414.537 133.777,414.528 C 133.762,414.521 133.748,414.51 133.736,414.497 C 133.725,414.484 133.717,414.47 133.71,414.454 C 133.704,414.437 133.701,414.42 133.701,414.403 C 133.701,414.384 133.704,414.368 133.71,414.354 C 133.717,414.339 133.725,414.327 133.736,414.317 C 133.748,414.306 133.762,414.298 133.778,414.293 C 133.792,414.286 133.807,414.285 133.825,414.286 Z M 132.469,414.329 L 132.642,414.347 C 132.645,414.347 132.647,414.348 132.649,414.349 C 132.651,414.351 132.654,414.351 132.656,414.352 C 132.662,414.356 132.667,414.361 132.671,414.366 C 132.675,414.374 132.677,414.38 132.677,414.387 C 132.677,414.394 132.675,414.399 132.674,414.403 C 132.671,414.407 132.669,414.41 132.666,414.412 C 132.664,414.415 132.661,414.416 132.656,414.418 C 132.653,414.419 132.647,414.42 132.642,414.42 L 132.469,414.402 L 132.469,414.329 Z M 134.127,414.5 L 134.3,414.519 C 134.304,414.519 134.307,414.52 134.309,414.521 C 134.311,414.522 134.313,414.522 134.315,414.523 C 134.321,414.527 134.326,414.532 134.332,414.538 C 134.334,414.545 134.336,414.551 134.336,414.559 C 134.336,414.565 134.334,414.57 134.333,414.576 C 134.332,414.579 134.328,414.582 134.325,414.583 C 134.323,414.586 134.32,414.588 134.316,414.59 C 134.312,414.592 134.307,414.592 134.3,414.592 L 134.127,414.575 L 134.127,414.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 121.535,426.778 L 121.361,426.938 L 138.769,428.074 L 138.858,428.036 C 138.888,428.025 138.916,427.997 138.916,427.952 L 138.916,427.909 L 121.535,426.778 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 121.361,426.938 L 121.36,403.487 L 121.449,403.403 L 121.535,403.416 L 121.535,426.776 L 121.361,426.938 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--NATURAL_SAND, .KN95_NR_small_individuals--NATURAL_SAND {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.437 -349.11 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(30.079 321.64)'%3E%3Cstop offset='0' stop-color='%23d2af8a'/%3E%3Cstop offset='1' stop-color='%23f5d1aa'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.92' gradientTransform='translate(26.54 322.255)'%3E%3Cstop offset='0' stop-color='%2399826a'/%3E%3Cstop offset='1' stop-color='%23d1b291'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.1' gradientTransform='translate(30.073 341.623)'%3E%3Cstop offset='0' stop-color='%23b69b7e'/%3E%3Cstop offset='1' stop-color='%23d4b593'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.229' gradientTransform='translate(25.4 343.678)'%3E%3Cstop offset='0' stop-color='%23947e67'/%3E%3Cstop offset='1' stop-color='%23b69b7e'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(38.392 343.494) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c1a586'/%3E%3Cstop offset='1' stop-color='%23d9b997'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.247 331.382) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b4997d'/%3E%3Cstop offset='1' stop-color='%23d1b291'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.166 332.381) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.166,319.226 L 27.166,342.713 L 44.613,343.832 C 44.625,343.818 44.635,343.799 44.635,343.774 L 44.635,321.593 L 27.166,319.226 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.166,319.226 L 23.702,322.588 L 23.701,344.61 L 27.166,342.713 L 27.166,319.226 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.166,342.713 L 23.701,344.61 L 40.633,345.539 L 44.577,343.858 C 44.59,343.853 44.603,343.845 44.613,343.832 L 27.166,342.713 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.079,342.444 L 23.699,344.333 L 23.698,344.61 L 27.079,342.759 L 27.079,342.444 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.207,324.828 L 34.207,325.237 L 34.279,325.246 L 34.279,324.835 L 34.207,324.828 Z M 34.337,324.842 L 34.337,325.249 L 34.409,325.202 L 34.671,325.027 L 34.671,325.287 L 34.742,325.297 L 34.742,324.886 L 34.671,324.934 L 34.409,325.109 L 34.409,324.849 L 34.337,324.842 Z M 34.8,324.892 L 34.8,325.302 L 35.003,325.324 C 35.031,325.327 35.057,325.325 35.08,325.316 C 35.105,325.309 35.127,325.297 35.146,325.28 C 35.164,325.263 35.178,325.242 35.188,325.22 C 35.199,325.196 35.205,325.17 35.205,325.141 C 35.205,325.115 35.201,325.092 35.192,325.068 C 35.183,325.046 35.171,325.023 35.156,325.004 C 35.155,325.002 35.153,324.999 35.151,324.997 C 35.149,324.995 35.148,324.992 35.144,324.99 C 35.127,324.969 35.105,324.952 35.08,324.939 C 35.058,324.925 35.032,324.917 35.003,324.914 L 34.8,324.892 Z M 35.262,324.943 L 35.262,325.352 L 35.336,325.359 L 35.336,324.951 L 35.262,324.943 Z M 34.872,324.972 L 35.003,324.986 C 35.02,324.99 35.037,324.995 35.052,325.003 C 35.069,325.01 35.082,325.022 35.094,325.035 C 35.105,325.048 35.116,325.063 35.123,325.08 C 35.129,325.098 35.132,325.115 35.133,325.132 C 35.132,325.152 35.129,325.168 35.123,325.183 C 35.116,325.198 35.105,325.211 35.094,325.222 C 35.082,325.233 35.069,325.241 35.052,325.246 C 35.037,325.25 35.02,325.252 35.003,325.25 L 34.872,325.236 L 34.872,324.972 Z M 35.577,324.977 L 35.406,325.296 L 35.369,325.364 L 35.451,325.373 L 35.487,325.304 L 35.577,325.138 L 35.665,325.324 L 35.701,325.4 L 35.782,325.409 L 35.745,325.332 L 35.577,324.977 Z M 35.818,325.003 L 35.818,325.413 L 35.891,325.421 L 35.891,325.01 L 35.818,325.003 Z M 35.949,325.017 L 35.949,325.427 L 36.151,325.448 C 36.179,325.451 36.205,325.448 36.23,325.441 C 36.254,325.434 36.275,325.422 36.293,325.405 C 36.313,325.389 36.326,325.366 36.337,325.344 C 36.348,325.32 36.353,325.295 36.353,325.266 C 36.353,325.241 36.349,325.216 36.341,325.194 C 36.332,325.17 36.321,325.148 36.305,325.128 C 36.303,325.126 36.301,325.124 36.299,325.122 C 36.298,325.119 36.296,325.117 36.292,325.115 C 36.274,325.094 36.254,325.076 36.23,325.063 C 36.205,325.05 36.179,325.042 36.151,325.038 L 35.949,325.017 Z M 36.537,325.097 C 36.511,325.105 36.489,325.117 36.471,325.133 C 36.452,325.152 36.438,325.171 36.427,325.194 C 36.418,325.218 36.412,325.244 36.412,325.273 L 36.412,325.476 L 36.483,325.486 L 36.483,325.281 C 36.483,325.262 36.487,325.246 36.493,325.23 C 36.5,325.216 36.51,325.202 36.523,325.192 C 36.535,325.181 36.548,325.172 36.564,325.168 C 36.579,325.163 36.595,325.16 36.614,325.163 C 36.632,325.165 36.649,325.17 36.664,325.179 C 36.68,325.186 36.694,325.198 36.706,325.211 C 36.717,325.224 36.727,325.239 36.733,325.256 C 36.741,325.274 36.744,325.29 36.744,325.309 L 36.744,325.513 L 36.817,325.521 L 36.817,325.316 C 36.817,325.287 36.811,325.261 36.801,325.235 C 36.789,325.209 36.776,325.185 36.756,325.165 C 36.739,325.144 36.717,325.127 36.692,325.113 C 36.669,325.101 36.642,325.093 36.614,325.089 C 36.585,325.086 36.56,325.089 36.537,325.097 Z M 36.02,325.098 L 36.151,325.112 C 36.168,325.113 36.184,325.119 36.201,325.127 C 36.217,325.136 36.231,325.146 36.243,325.16 C 36.255,325.174 36.264,325.189 36.27,325.206 C 36.277,325.222 36.28,325.239 36.281,325.257 C 36.28,325.275 36.277,325.293 36.27,325.308 C 36.264,325.324 36.255,325.337 36.243,325.346 C 36.231,325.357 36.217,325.364 36.201,325.37 C 36.184,325.377 36.168,325.377 36.151,325.376 L 36.02,325.361 L 36.02,325.098 Z M 36.852,325.115 L 36.888,325.193 L 37.057,325.547 L 37.228,325.229 L 37.264,325.159 L 37.184,325.152 L 37.147,325.22 L 37.057,325.386 L 36.97,325.201 L 36.932,325.124 L 36.852,325.115 Z M 37.399,325.179 C 37.388,325.18 37.38,325.181 37.371,325.184 C 37.358,325.19 37.347,325.197 37.337,325.207 C 37.328,325.216 37.319,325.226 37.313,325.238 C 37.309,325.247 37.306,325.255 37.304,325.265 C 37.301,325.274 37.3,325.284 37.3,325.295 L 37.3,325.573 L 37.371,325.581 L 37.371,325.296 C 37.373,325.287 37.375,325.279 37.38,325.274 C 37.384,325.266 37.389,325.261 37.397,325.257 C 37.405,325.252 37.414,325.25 37.421,325.25 L 37.634,325.274 L 37.634,325.2 L 37.428,325.177 C 37.418,325.177 37.408,325.177 37.399,325.179 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.005,331.557 L 32.003,333.607 L 32.341,333.644 L 32.343,332.594 L 32.622,332.898 L 32.873,333.172 L 33.401,333.75 L 33.904,333.801 L 33.075,332.893 L 33.899,331.748 L 33.481,331.707 L 32.824,332.619 L 32.343,332.098 L 32.343,331.591 L 32.005,331.557 Z M 34.071,331.767 L 34.245,332.15 L 35.038,333.917 L 35.835,332.313 L 36.008,331.963 L 35.63,331.925 L 35.456,332.274 L 35.039,333.112 L 34.624,332.189 L 34.452,331.806 L 34.071,331.767 Z M 36.18,331.98 L 36.182,331.981 L 36.443,332.374 L 36.908,333.077 L 37.124,333.398 L 37.382,333.79 L 36.175,333.666 L 36.175,334.033 L 37.643,334.181 L 38.068,334.226 L 37.805,333.832 L 37.334,333.12 L 37.122,332.799 L 36.866,332.418 L 38.079,332.541 L 38.08,332.173 L 36.611,332.025 L 36.607,332.025 L 36.18,331.98 Z M 38.655,332.276 C 38.595,332.299 38.54,332.334 38.493,332.379 C 38.447,332.424 38.41,332.479 38.384,332.544 C 38.358,332.608 38.345,332.679 38.344,332.755 L 38.343,333.699 C 38.343,333.777 38.355,333.848 38.382,333.918 C 38.409,333.988 38.444,334.049 38.492,334.106 C 38.538,334.161 38.592,334.207 38.654,334.24 C 38.715,334.276 38.782,334.297 38.853,334.304 L 40.238,334.446 L 40.238,334.079 L 38.853,333.938 C 38.82,333.935 38.791,333.924 38.765,333.904 C 38.739,333.885 38.718,333.859 38.703,333.831 C 38.687,333.8 38.68,333.768 38.68,333.733 L 38.68,333.543 L 39.9,333.667 L 39.9,333.301 L 38.68,333.177 L 38.68,332.79 C 38.68,332.755 38.688,332.724 38.705,332.698 C 38.72,332.672 38.741,332.649 38.767,332.636 C 38.793,332.622 38.821,332.617 38.855,332.619 L 40.24,332.76 L 40.241,332.395 L 38.855,332.252 C 38.784,332.247 38.718,332.253 38.655,332.276 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.008,330.465 L 34.008,330.903 C 34.008,330.926 34.013,330.947 34.02,330.967 C 34.028,330.986 34.039,331.007 34.054,331.023 C 34.069,331.038 34.085,331.051 34.105,331.062 C 34.125,331.072 34.145,331.078 34.167,331.081 L 34.6,331.128 L 34.6,331.021 L 34.167,330.974 C 34.158,330.973 34.149,330.969 34.14,330.964 C 34.132,330.958 34.127,330.951 34.121,330.943 C 34.116,330.934 34.114,330.925 34.114,330.916 L 34.114,330.858 L 34.495,330.898 L 34.495,330.792 L 34.114,330.751 L 34.114,330.477 L 34.008,330.465 Z M 34.686,330.536 L 34.686,330.974 C 34.686,330.997 34.69,331.019 34.698,331.038 C 34.705,331.059 34.716,331.077 34.731,331.093 C 34.746,331.11 34.763,331.123 34.782,331.135 C 34.801,331.144 34.821,331.15 34.845,331.154 L 35.277,331.199 L 35.278,331.091 L 34.845,331.046 C 34.835,331.045 34.826,331.042 34.818,331.036 C 34.81,331.031 34.804,331.023 34.799,331.014 C 34.794,331.006 34.792,330.995 34.792,330.985 L 34.792,330.93 L 35.172,330.97 L 35.172,330.864 L 34.791,330.823 L 34.792,330.547 L 34.686,330.536 Z M 35.363,330.609 L 35.362,331.209 L 35.736,331.248 C 35.758,331.25 35.779,331.248 35.797,331.242 C 35.817,331.236 35.833,331.226 35.848,331.212 L 35.849,331.21 C 35.865,331.198 35.875,331.182 35.884,331.163 C 35.891,331.144 35.897,331.124 35.897,331.102 C 35.897,331.079 35.891,331.059 35.885,331.039 C 35.876,331.019 35.866,331.001 35.851,330.985 C 35.838,330.969 35.821,330.955 35.803,330.945 C 35.789,330.936 35.774,330.93 35.757,330.928 C 35.756,330.928 35.754,330.928 35.753,330.927 L 35.753,330.926 L 35.469,330.896 L 35.469,330.62 L 35.363,330.609 Z M 35.98,330.672 L 35.98,330.85 C 35.98,330.861 35.981,330.872 35.983,330.884 C 35.986,330.897 35.99,330.909 35.993,330.92 C 36.002,330.941 36.014,330.961 36.03,330.977 C 36.045,330.995 36.062,331.011 36.083,331.022 C 36.103,331.033 36.124,331.04 36.148,331.044 L 36.401,331.07 L 36.404,331.07 C 36.416,331.073 36.427,331.078 36.437,331.085 C 36.446,331.093 36.453,331.102 36.458,331.114 C 36.464,331.123 36.466,331.135 36.466,331.148 C 36.466,331.161 36.463,331.172 36.457,331.182 C 36.451,331.191 36.444,331.199 36.433,331.204 C 36.422,331.21 36.411,331.212 36.397,331.21 L 35.981,331.167 L 35.981,331.274 L 36.397,331.317 C 36.422,331.32 36.446,331.317 36.466,331.31 C 36.486,331.303 36.504,331.293 36.522,331.278 C 36.538,331.264 36.55,331.247 36.558,331.227 C 36.568,331.207 36.572,331.184 36.572,331.159 C 36.572,331.147 36.571,331.135 36.569,331.123 C 36.566,331.111 36.563,331.099 36.557,331.088 C 36.555,331.077 36.55,331.067 36.543,331.058 C 36.538,331.049 36.531,331.04 36.524,331.032 C 36.508,331.013 36.489,330.999 36.469,330.986 C 36.448,330.975 36.427,330.968 36.403,330.964 L 36.401,330.964 C 36.4,330.964 36.399,330.964 36.397,330.963 L 36.148,330.937 C 36.136,330.935 36.126,330.93 36.117,330.922 C 36.107,330.916 36.099,330.907 36.094,330.896 C 36.089,330.884 36.087,330.874 36.087,330.862 L 36.087,330.793 L 36.57,330.842 L 36.57,330.735 L 36.153,330.69 L 35.98,330.672 Z M 37.07,330.789 L 37.07,331.386 L 37.175,331.315 L 37.556,331.058 L 37.556,331.44 L 37.661,331.451 L 37.662,330.851 L 37.556,330.922 L 37.175,331.179 L 37.175,330.8 L 37.07,330.789 Z M 37.747,330.861 L 37.746,331.461 L 38.12,331.5 C 38.141,331.503 38.162,331.501 38.182,331.493 C 38.202,331.487 38.218,331.477 38.232,331.464 C 38.246,331.451 38.258,331.435 38.266,331.416 C 38.274,331.397 38.279,331.376 38.279,331.355 C 38.279,331.333 38.274,331.311 38.267,331.29 C 38.259,331.271 38.248,331.253 38.234,331.237 C 38.221,331.221 38.204,331.208 38.187,331.197 C 38.171,331.187 38.156,331.182 38.14,331.178 L 38.226,331.019 L 38.279,330.917 L 38.161,330.904 L 38.107,331.006 L 38.05,331.111 L 38.047,331.116 C 38.038,331.131 38.026,331.142 38.009,331.149 C 37.995,331.157 37.977,331.16 37.957,331.157 L 37.853,331.147 L 37.854,330.871 L 37.747,330.861 Z M 35.469,331.001 L 35.737,331.03 C 35.74,331.03 35.743,331.032 35.749,331.032 C 35.752,331.034 35.755,331.035 35.759,331.038 L 35.759,331.038 C 35.769,331.043 35.777,331.051 35.782,331.06 C 35.788,331.069 35.791,331.079 35.791,331.089 C 35.791,331.101 35.789,331.11 35.785,331.115 C 35.782,331.122 35.778,331.127 35.775,331.129 C 35.771,331.132 35.767,331.135 35.76,331.137 C 35.754,331.141 35.745,331.142 35.737,331.141 L 35.469,331.111 L 35.469,331.001 Z M 37.853,331.253 L 38.12,331.281 C 38.124,331.283 38.127,331.283 38.131,331.284 C 38.135,331.286 38.138,331.288 38.141,331.29 C 38.151,331.295 38.159,331.303 38.164,331.311 C 38.17,331.322 38.175,331.333 38.175,331.343 C 38.173,331.354 38.171,331.361 38.167,331.368 C 38.163,331.374 38.161,331.378 38.157,331.38 C 38.154,331.384 38.15,331.387 38.143,331.39 C 38.137,331.392 38.129,331.393 38.12,331.392 L 37.852,331.364 L 37.853,331.253 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.122,329.27 L 32.122,329.667 L 32.364,329.694 C 32.379,329.695 32.392,329.694 32.405,329.689 C 32.416,329.684 32.428,329.679 32.438,329.668 L 32.438,329.667 C 32.448,329.658 32.455,329.649 32.46,329.637 C 32.465,329.624 32.469,329.61 32.469,329.596 C 32.469,329.581 32.466,329.567 32.461,329.553 C 32.456,329.54 32.45,329.529 32.44,329.518 C 32.431,329.507 32.419,329.497 32.408,329.491 C 32.399,329.486 32.389,329.482 32.379,329.481 C 32.377,329.481 32.376,329.48 32.375,329.48 L 32.375,329.48 L 32.191,329.46 L 32.191,329.277 L 32.122,329.27 Z M 32.522,329.309 L 32.522,329.708 L 32.766,329.734 C 32.781,329.734 32.794,329.734 32.806,329.729 C 32.818,329.724 32.829,329.719 32.838,329.71 C 32.848,329.7 32.855,329.69 32.862,329.679 C 32.866,329.665 32.869,329.652 32.87,329.637 C 32.869,329.623 32.866,329.609 32.863,329.596 C 32.855,329.583 32.849,329.572 32.84,329.559 C 32.831,329.548 32.821,329.54 32.809,329.533 C 32.799,329.527 32.79,329.522 32.78,329.521 L 32.834,329.413 L 32.87,329.347 L 32.793,329.337 L 32.757,329.405 L 32.72,329.476 L 32.718,329.48 C 32.713,329.489 32.704,329.496 32.695,329.501 C 32.683,329.507 32.673,329.508 32.661,329.507 L 32.592,329.499 L 32.592,329.316 L 32.522,329.309 Z M 33.029,329.379 C 33.007,329.386 32.986,329.399 32.969,329.414 C 32.95,329.431 32.936,329.451 32.928,329.474 C 32.917,329.497 32.913,329.522 32.911,329.551 C 32.913,329.578 32.917,329.605 32.927,329.629 C 32.936,329.654 32.95,329.677 32.967,329.697 C 32.986,329.716 33.006,329.734 33.029,329.746 C 33.052,329.759 33.076,329.766 33.104,329.77 C 33.13,329.772 33.155,329.77 33.18,329.761 C 33.201,329.753 33.223,329.742 33.24,329.725 C 33.258,329.709 33.272,329.69 33.281,329.665 C 33.291,329.643 33.296,329.618 33.296,329.59 C 33.296,329.563 33.291,329.536 33.281,329.51 C 33.272,329.486 33.258,329.465 33.241,329.443 C 33.224,329.424 33.201,329.406 33.18,329.395 C 33.155,329.382 33.131,329.373 33.105,329.372 L 33.066,329.373 C 33.053,329.373 33.041,329.375 33.029,329.379 Z M 33.496,329.411 L 33.496,329.739 L 33.339,329.722 L 33.339,329.793 L 33.722,329.834 L 33.722,329.762 L 33.567,329.746 L 33.567,329.418 L 33.496,329.411 Z M 33.105,329.442 C 33.122,329.443 33.138,329.449 33.153,329.457 C 33.168,329.466 33.181,329.476 33.191,329.489 C 33.202,329.501 33.213,329.517 33.219,329.533 C 33.225,329.547 33.229,329.566 33.229,329.585 C 33.229,329.6 33.225,329.617 33.219,329.631 C 33.213,329.646 33.202,329.659 33.191,329.669 C 33.18,329.681 33.167,329.689 33.153,329.694 C 33.137,329.698 33.122,329.7 33.104,329.698 C 33.087,329.697 33.07,329.692 33.056,329.683 C 33.041,329.677 33.027,329.664 33.016,329.652 C 33.006,329.638 32.997,329.624 32.99,329.607 C 32.985,329.592 32.98,329.575 32.98,329.558 C 32.98,329.54 32.985,329.522 32.99,329.508 C 32.997,329.495 33.006,329.482 33.017,329.471 C 33.028,329.461 33.041,329.453 33.056,329.447 C 33.07,329.442 33.088,329.44 33.105,329.442 Z M 33.841,329.457 C 33.831,329.46 33.819,329.467 33.81,329.476 C 33.8,329.485 33.793,329.496 33.787,329.508 C 33.782,329.521 33.781,329.534 33.781,329.548 L 33.78,329.733 C 33.781,329.747 33.781,329.761 33.787,329.774 C 33.793,329.788 33.8,329.799 33.81,329.812 C 33.819,329.823 33.829,329.831 33.841,329.838 C 33.854,329.844 33.868,329.849 33.882,329.85 L 34.164,329.879 L 34.164,329.81 L 33.882,329.779 C 33.877,329.778 33.87,329.776 33.864,329.772 C 33.86,329.768 33.855,329.763 33.852,329.758 C 33.849,329.752 33.847,329.746 33.847,329.739 L 33.847,329.702 L 34.096,329.728 L 34.096,329.656 L 33.847,329.631 L 33.848,329.556 C 33.848,329.548 33.849,329.543 33.852,329.538 C 33.855,329.533 33.86,329.529 33.864,329.527 C 33.87,329.522 33.878,329.522 33.882,329.522 L 34.164,329.553 L 34.164,329.482 L 33.883,329.453 C 33.868,329.45 33.855,329.453 33.841,329.457 Z M 34.33,329.514 C 34.307,329.521 34.288,329.534 34.27,329.55 C 34.252,329.567 34.238,329.586 34.228,329.609 C 34.219,329.632 34.213,329.657 34.213,329.685 C 34.213,329.713 34.219,329.739 34.228,329.763 C 34.238,329.789 34.252,329.812 34.27,329.832 C 34.288,329.852 34.307,329.868 34.33,329.881 C 34.354,329.895 34.379,329.902 34.406,329.905 L 34.598,329.924 L 34.598,329.853 L 34.406,329.833 C 34.388,329.831 34.373,329.825 34.357,329.818 C 34.343,329.811 34.329,329.799 34.317,329.786 C 34.307,329.773 34.297,329.76 34.291,329.744 C 34.286,329.728 34.282,329.71 34.282,329.694 C 34.282,329.676 34.286,329.657 34.291,329.644 C 34.297,329.629 34.307,329.616 34.318,329.605 C 34.329,329.596 34.343,329.587 34.358,329.583 C 34.373,329.577 34.388,329.575 34.406,329.577 L 34.598,329.598 L 34.598,329.527 L 34.406,329.506 L 34.367,329.506 C 34.355,329.507 34.343,329.509 34.33,329.514 Z M 32.191,329.53 L 32.365,329.547 C 32.367,329.547 32.371,329.548 32.373,329.549 C 32.375,329.55 32.377,329.551 32.38,329.553 C 32.386,329.557 32.391,329.56 32.395,329.568 C 32.399,329.574 32.399,329.581 32.399,329.588 C 32.399,329.594 32.399,329.6 32.397,329.604 C 32.394,329.609 32.392,329.612 32.39,329.613 C 32.387,329.615 32.384,329.618 32.38,329.619 C 32.376,329.621 32.372,329.622 32.365,329.621 L 32.191,329.604 L 32.191,329.53 Z M 34.811,329.547 L 34.811,329.876 L 34.653,329.858 L 34.653,329.931 L 35.038,329.971 L 35.038,329.899 L 34.88,329.881 L 34.88,329.555 L 34.811,329.547 Z M 32.592,329.572 L 32.766,329.589 C 32.767,329.589 32.771,329.59 32.774,329.591 C 32.776,329.591 32.778,329.592 32.781,329.594 C 32.787,329.598 32.792,329.602 32.796,329.609 C 32.799,329.615 32.801,329.622 32.801,329.63 C 32.801,329.636 32.799,329.641 32.798,329.645 C 32.796,329.65 32.793,329.652 32.791,329.654 C 32.789,329.656 32.785,329.657 32.782,329.66 C 32.778,329.662 32.772,329.663 32.766,329.662 L 32.592,329.644 L 32.592,329.572 Z M 35.093,329.577 L 35.092,329.975 L 35.162,329.982 L 35.162,329.586 L 35.093,329.577 Z M 35.392,329.609 L 35.23,329.92 L 35.193,329.986 L 35.271,329.993 L 35.308,329.927 L 35.391,329.765 L 35.475,329.945 L 35.51,330.019 L 35.587,330.028 L 35.552,329.953 L 35.392,329.609 Z M 35.685,329.647 C 35.673,329.652 35.663,329.657 35.653,329.666 C 35.644,329.677 35.636,329.687 35.631,329.698 C 35.625,329.711 35.621,329.724 35.621,329.739 L 35.621,329.923 C 35.621,329.938 35.624,329.952 35.63,329.965 C 35.634,329.979 35.643,329.99 35.653,330.001 C 35.662,330.012 35.673,330.023 35.685,330.029 C 35.697,330.036 35.71,330.039 35.725,330.042 L 36.006,330.07 L 36.006,329.998 L 35.725,329.971 C 35.717,329.97 35.712,329.967 35.707,329.963 C 35.702,329.96 35.698,329.955 35.695,329.948 C 35.691,329.944 35.69,329.937 35.69,329.931 L 35.69,329.892 L 35.939,329.92 L 35.939,329.848 L 35.691,329.823 L 35.691,329.747 C 35.691,329.74 35.692,329.734 35.696,329.729 C 35.698,329.724 35.702,329.72 35.708,329.718 C 35.712,329.715 35.718,329.713 35.726,329.714 L 36.007,329.744 L 36.007,329.671 L 35.726,329.643 C 35.711,329.641 35.697,329.643 35.685,329.647 Z M 36.33,329.705 L 36.328,330.102 L 36.571,330.129 C 36.585,330.13 36.599,330.129 36.612,330.124 C 36.624,330.12 36.636,330.112 36.646,330.104 C 36.655,330.095 36.662,330.083 36.668,330.072 C 36.672,330.059 36.675,330.046 36.675,330.031 C 36.675,330.017 36.672,330.002 36.668,329.989 C 36.663,329.976 36.656,329.964 36.647,329.954 C 36.638,329.945 36.627,329.935 36.614,329.928 C 36.606,329.922 36.595,329.919 36.585,329.916 L 36.641,329.808 L 36.675,329.74 L 36.598,329.733 L 36.564,329.799 L 36.527,329.87 L 36.525,329.873 C 36.519,329.882 36.51,329.89 36.499,329.896 C 36.49,329.901 36.479,329.903 36.467,329.902 L 36.397,329.895 L 36.397,329.711 L 36.33,329.705 Z M 36.795,329.762 C 36.782,329.766 36.771,329.773 36.763,329.781 C 36.753,329.791 36.746,329.801 36.741,329.813 C 36.735,329.825 36.731,329.84 36.731,329.855 L 36.731,330.038 C 36.731,330.053 36.735,330.067 36.74,330.08 C 36.745,330.094 36.752,330.106 36.763,330.118 C 36.771,330.129 36.782,330.137 36.795,330.145 C 36.807,330.15 36.82,330.155 36.834,330.156 L 37.117,330.185 L 37.117,330.115 L 36.834,330.085 C 36.829,330.083 36.822,330.082 36.817,330.078 C 36.814,330.075 36.808,330.07 36.805,330.064 C 36.802,330.057 36.8,330.052 36.8,330.045 L 36.8,330.009 L 37.047,330.034 L 37.047,329.962 L 36.801,329.937 L 36.801,329.863 C 36.801,329.855 36.802,329.85 36.805,329.844 C 36.808,329.839 36.814,329.835 36.817,329.832 C 36.823,329.83 36.829,329.829 36.834,329.829 L 37.118,329.858 L 37.118,329.787 L 36.835,329.758 C 36.821,329.757 36.808,329.759 36.795,329.762 Z M 37.246,329.811 C 37.232,329.815 37.22,329.824 37.208,329.833 C 37.196,329.844 37.189,329.857 37.181,329.87 C 37.175,329.885 37.171,329.902 37.171,329.919 L 37.242,329.925 C 37.242,329.915 37.244,329.906 37.247,329.899 C 37.253,329.89 37.259,329.884 37.266,329.881 C 37.275,329.877 37.282,329.876 37.294,329.876 L 37.415,329.889 C 37.424,329.889 37.434,329.895 37.442,329.899 C 37.448,329.906 37.455,329.912 37.46,329.922 C 37.465,329.93 37.467,329.939 37.467,329.949 C 37.467,329.96 37.465,329.969 37.46,329.975 C 37.455,329.984 37.448,329.988 37.442,329.992 C 37.433,329.997 37.424,329.998 37.415,329.998 L 37.275,329.984 L 37.255,329.984 C 37.247,329.985 37.242,329.986 37.236,329.986 C 37.223,329.991 37.214,329.998 37.203,330.006 C 37.199,330.012 37.194,330.016 37.189,330.023 C 37.184,330.031 37.179,330.039 37.176,330.05 C 37.173,330.059 37.171,330.07 37.171,330.081 L 37.171,330.083 C 37.171,330.097 37.175,330.112 37.179,330.126 C 37.185,330.14 37.192,330.152 37.202,330.162 C 37.213,330.173 37.222,330.182 37.234,330.188 C 37.247,330.196 37.26,330.199 37.275,330.201 L 37.431,330.217 C 37.445,330.219 37.458,330.217 37.471,330.213 C 37.484,330.21 37.495,330.202 37.504,330.194 C 37.514,330.185 37.522,330.174 37.527,330.162 C 37.533,330.15 37.535,330.137 37.535,330.122 L 37.535,330.12 L 37.466,330.11 L 37.466,330.112 C 37.466,330.121 37.465,330.126 37.461,330.132 C 37.458,330.137 37.454,330.141 37.448,330.144 C 37.444,330.146 37.438,330.148 37.431,330.147 L 37.275,330.131 C 37.268,330.13 37.262,330.127 37.257,330.123 C 37.253,330.12 37.247,330.115 37.244,330.108 C 37.242,330.102 37.241,330.096 37.241,330.089 L 37.241,330.087 C 37.241,330.08 37.242,330.076 37.244,330.07 C 37.247,330.064 37.253,330.06 37.257,330.057 C 37.262,330.056 37.268,330.054 37.275,330.055 L 37.415,330.069 L 37.44,330.069 C 37.447,330.068 37.456,330.067 37.463,330.063 C 37.479,330.057 37.492,330.05 37.504,330.038 C 37.504,330.038 37.505,330.038 37.506,330.036 C 37.506,330.036 37.506,330.035 37.508,330.034 C 37.517,330.024 37.524,330.012 37.528,329.998 C 37.534,329.986 37.536,329.971 37.536,329.957 C 37.536,329.939 37.533,329.922 37.526,329.906 C 37.521,329.89 37.512,329.876 37.5,329.864 C 37.488,329.851 37.476,329.84 37.461,329.832 C 37.447,329.825 37.431,329.819 37.415,329.818 L 37.294,329.806 C 37.277,329.804 37.26,329.806 37.246,329.811 Z M 37.592,329.837 L 37.59,330.236 L 37.834,330.26 C 37.848,330.262 37.861,330.26 37.873,330.256 C 37.886,330.252 37.897,330.245 37.908,330.237 L 37.908,330.237 C 37.917,330.227 37.924,330.214 37.93,330.202 C 37.934,330.19 37.937,330.177 37.937,330.162 C 37.937,330.148 37.936,330.135 37.93,330.122 C 37.925,330.106 37.918,330.095 37.91,330.083 C 37.9,330.073 37.891,330.065 37.878,330.058 C 37.869,330.053 37.859,330.049 37.848,330.047 C 37.847,330.047 37.846,330.046 37.845,330.046 L 37.845,330.046 L 37.66,330.026 L 37.66,329.844 L 37.592,329.837 Z M 37.994,329.878 L 37.993,330.277 L 38.06,330.283 L 38.061,329.885 L 37.994,329.878 Z M 38.118,329.889 L 38.117,330.288 L 38.359,330.312 C 38.374,330.315 38.387,330.313 38.401,330.308 C 38.413,330.305 38.422,330.297 38.433,330.29 C 38.442,330.28 38.449,330.27 38.454,330.258 C 38.46,330.245 38.462,330.232 38.463,330.216 C 38.462,330.202 38.46,330.187 38.455,330.175 C 38.45,330.161 38.443,330.149 38.435,330.139 C 38.426,330.129 38.415,330.121 38.403,330.112 C 38.392,330.106 38.382,330.103 38.373,330.101 L 38.428,329.992 L 38.463,329.925 L 38.386,329.918 L 38.35,329.985 L 38.315,330.056 L 38.312,330.058 C 38.306,330.069 38.299,330.076 38.288,330.08 C 38.278,330.086 38.266,330.088 38.254,330.087 L 38.186,330.08 L 38.186,329.896 L 38.118,329.889 Z M 38.497,329.931 L 38.532,330.006 L 38.692,330.348 L 38.855,330.038 L 38.891,329.971 L 38.813,329.962 L 38.778,330.031 L 38.692,330.192 L 38.608,330.013 L 38.574,329.938 L 38.497,329.931 Z M 36.397,329.965 L 36.572,329.984 C 36.575,329.985 36.577,329.985 36.579,329.986 C 36.582,329.986 36.583,329.986 36.585,329.988 C 36.592,329.992 36.597,329.997 36.602,330.004 C 36.605,330.011 36.607,330.017 36.607,330.025 C 36.607,330.031 36.606,330.037 36.603,330.04 C 36.601,330.044 36.598,330.048 36.596,330.049 C 36.593,330.052 36.59,330.053 36.588,330.055 C 36.584,330.056 36.582,330.056 36.58,330.057 L 36.571,330.057 L 36.397,330.038 L 36.397,329.965 Z M 39.081,329.99 L 39.081,330.318 L 38.923,330.302 L 38.922,330.373 L 39.307,330.412 L 39.307,330.343 L 39.149,330.324 L 39.15,329.997 L 39.081,329.99 Z M 39.467,330.046 C 39.443,330.054 39.424,330.067 39.406,330.082 C 39.39,330.099 39.375,330.12 39.364,330.142 C 39.355,330.164 39.349,330.189 39.349,330.217 C 39.349,330.245 39.354,330.271 39.364,330.296 C 39.374,330.321 39.389,330.345 39.406,330.364 C 39.424,330.384 39.443,330.4 39.467,330.413 C 39.491,330.426 39.516,330.434 39.542,330.437 C 39.57,330.438 39.593,330.437 39.617,330.429 C 39.64,330.421 39.661,330.41 39.679,330.392 C 39.696,330.376 39.709,330.358 39.719,330.333 C 39.73,330.31 39.734,330.285 39.735,330.258 C 39.734,330.231 39.73,330.203 39.719,330.178 C 39.709,330.154 39.696,330.131 39.679,330.11 C 39.662,330.091 39.641,330.075 39.617,330.062 C 39.594,330.05 39.57,330.042 39.543,330.038 L 39.505,330.038 C 39.491,330.04 39.48,330.043 39.467,330.046 Z M 39.777,330.062 L 39.776,330.46 L 40.019,330.485 C 40.032,330.486 40.046,330.485 40.059,330.48 C 40.072,330.477 40.083,330.47 40.093,330.462 C 40.102,330.453 40.109,330.441 40.114,330.429 C 40.119,330.418 40.122,330.403 40.122,330.388 C 40.122,330.373 40.119,330.361 40.115,330.348 C 40.11,330.335 40.104,330.321 40.093,330.31 C 40.085,330.3 40.074,330.292 40.063,330.284 C 40.053,330.279 40.042,330.276 40.031,330.273 L 40.088,330.165 L 40.122,330.096 L 40.045,330.089 L 40.011,330.158 L 39.973,330.229 L 39.972,330.232 C 39.966,330.241 39.958,330.249 39.948,330.254 C 39.938,330.258 39.925,330.26 39.913,330.259 L 39.845,330.253 L 39.845,330.069 L 39.777,330.062 Z M 37.66,330.096 L 37.834,330.116 C 37.836,330.116 37.84,330.116 37.843,330.118 C 37.845,330.119 37.847,330.12 37.849,330.121 L 37.849,330.122 C 37.855,330.124 37.86,330.13 37.864,330.136 C 37.868,330.143 37.869,330.148 37.87,330.157 C 37.869,330.162 37.869,330.168 37.867,330.172 C 37.863,330.176 37.861,330.18 37.86,330.181 C 37.857,330.183 37.854,330.185 37.85,330.186 C 37.846,330.188 37.84,330.189 37.834,330.188 L 37.66,330.171 L 37.66,330.096 Z M 39.543,330.109 C 39.56,330.11 39.576,330.116 39.59,330.125 C 39.605,330.134 39.618,330.144 39.63,330.157 C 39.642,330.17 39.65,330.184 39.656,330.199 C 39.664,330.215 39.666,330.234 39.666,330.251 C 39.666,330.269 39.664,330.284 39.656,330.298 C 39.65,330.315 39.641,330.328 39.629,330.338 C 39.618,330.348 39.605,330.357 39.59,330.361 C 39.576,330.366 39.559,330.367 39.542,330.366 C 39.525,330.363 39.509,330.359 39.493,330.351 C 39.48,330.344 39.466,330.331 39.454,330.32 C 39.442,330.305 39.434,330.292 39.428,330.276 C 39.422,330.26 39.419,330.244 39.418,330.226 C 39.419,330.206 39.422,330.19 39.428,330.176 C 39.434,330.161 39.442,330.148 39.454,330.139 C 39.466,330.129 39.48,330.121 39.493,330.116 C 39.509,330.109 39.525,330.107 39.543,330.109 Z M 38.186,330.15 L 38.359,330.17 C 38.362,330.17 38.363,330.17 38.367,330.172 C 38.369,330.172 38.371,330.173 38.374,330.173 C 38.38,330.178 38.385,330.183 38.388,330.188 C 38.392,330.196 38.395,330.202 38.395,330.209 C 38.395,330.215 38.392,330.222 38.391,330.226 C 38.388,330.23 38.386,330.233 38.384,330.236 C 38.382,330.238 38.378,330.238 38.375,330.24 C 38.37,330.242 38.364,330.243 38.359,330.243 L 38.186,330.225 L 38.186,330.15 Z M 39.845,330.322 L 40.019,330.343 C 40.022,330.343 40.024,330.343 40.026,330.344 C 40.029,330.345 40.03,330.345 40.032,330.347 C 40.039,330.349 40.044,330.355 40.049,330.361 C 40.053,330.367 40.055,330.373 40.055,330.381 C 40.054,330.387 40.053,330.393 40.051,330.397 C 40.049,330.401 40.045,330.404 40.042,330.405 C 40.041,330.408 40.037,330.41 40.034,330.412 C 40.03,330.414 40.025,330.414 40.019,330.414 L 39.845,330.397 L 39.845,330.322 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.252,342.6 L 27.079,342.761 L 44.487,343.896 L 44.577,343.858 C 44.606,343.847 44.635,343.82 44.635,343.774 L 44.635,343.731 L 27.252,342.6 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.079,342.761 L 27.078,319.31 L 27.166,319.226 L 27.252,319.238 L 27.252,342.6 L 27.079,342.761 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--MAROON, .KN95_NR_small_individuals--MAROON {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='300.281 -517.464 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.301' y2='19.846' gradientTransform='translate(312.924 489.994)'%3E%3Cstop offset='0' stop-color='%236d0a0a'/%3E%3Cstop offset='1' stop-color='%23900d0d'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.353' y2='19.919' gradientTransform='translate(309.385 490.61)'%3E%3Cstop offset='0' stop-color='%235a0808'/%3E%3Cstop offset='1' stop-color='%237a0b0b'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(312.918 509.976)'%3E%3Cstop offset='0' stop-color='%236d0a0a'/%3E%3Cstop offset='1' stop-color='%237d0b0b'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.23' gradientTransform='translate(308.243 512.033)'%3E%3Cstop offset='0' stop-color='%23580808'/%3E%3Cstop offset='1' stop-color='%236d0a0a'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.009' y2='-0.164' gradientTransform='translate(321.237 511.848) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23700a0a'/%3E%3Cstop offset='1' stop-color='%23810c0c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(310.092 499.736) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%236b0a0a'/%3E%3Cstop offset='1' stop-color='%237a0b0b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(317.01 500.735) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 310.01,487.579 L 310.01,511.066 L 327.457,512.185 C 327.47,512.171 327.48,512.152 327.48,512.128 L 327.48,489.947 L 310.01,487.579 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 310.01,487.579 L 306.547,490.942 L 306.545,512.963 L 310.01,511.066 L 310.01,487.579 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 310.01,511.066 L 306.545,512.963 L 323.477,513.893 L 327.42,512.212 C 327.434,512.207 327.447,512.197 327.457,512.185 L 310.01,511.066 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 309.923,510.798 L 306.544,512.687 L 306.543,512.963 L 309.923,511.112 L 309.923,510.798 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 317.052,493.181 L 317.052,493.592 L 317.124,493.6 L 317.124,493.189 L 317.052,493.181 Z M 317.181,493.195 L 317.181,493.604 L 317.254,493.555 L 317.515,493.381 L 317.515,493.642 L 317.587,493.65 L 317.587,493.239 L 317.515,493.289 L 317.254,493.463 L 317.254,493.203 L 317.181,493.195 Z M 317.644,493.245 L 317.644,493.656 L 317.846,493.677 C 317.876,493.681 317.902,493.678 317.925,493.669 C 317.949,493.663 317.97,493.65 317.991,493.633 C 318.009,493.616 318.023,493.597 318.033,493.573 C 318.043,493.549 318.049,493.523 318.049,493.496 C 318.049,493.469 318.044,493.445 318.037,493.422 C 318.028,493.399 318.016,493.378 318.001,493.358 C 317.999,493.355 317.997,493.353 317.996,493.351 C 317.994,493.348 317.992,493.346 317.989,493.343 C 317.97,493.322 317.949,493.306 317.925,493.293 C 317.903,493.28 317.877,493.271 317.846,493.268 L 317.644,493.245 Z M 318.107,493.296 L 318.107,493.707 L 318.18,493.714 L 318.18,493.304 L 318.107,493.296 Z M 317.715,493.326 L 317.846,493.34 C 317.864,493.343 317.881,493.348 317.897,493.356 C 317.914,493.366 317.927,493.377 317.938,493.39 C 317.95,493.402 317.959,493.418 317.967,493.433 C 317.973,493.451 317.976,493.468 317.977,493.487 C 317.976,493.505 317.973,493.521 317.967,493.536 C 317.959,493.553 317.95,493.565 317.938,493.575 C 317.927,493.587 317.914,493.595 317.897,493.6 C 317.881,493.605 317.864,493.606 317.846,493.605 L 317.715,493.591 L 317.715,493.326 Z M 318.42,493.33 L 318.251,493.649 L 318.214,493.719 L 318.295,493.726 L 318.331,493.656 L 318.42,493.492 L 318.509,493.677 L 318.546,493.753 L 318.626,493.763 L 318.59,493.685 L 318.42,493.33 Z M 318.664,493.356 L 318.664,493.766 L 318.735,493.774 L 318.735,493.365 L 318.664,493.356 Z M 318.794,493.372 L 318.794,493.78 L 318.995,493.802 C 319.023,493.806 319.049,493.802 319.074,493.795 C 319.099,493.787 319.119,493.775 319.138,493.758 C 319.156,493.742 319.17,493.721 319.18,493.698 C 319.192,493.674 319.198,493.649 319.198,493.619 C 319.198,493.595 319.194,493.57 319.184,493.547 C 319.176,493.523 319.165,493.502 319.148,493.483 C 319.147,493.481 319.145,493.478 319.143,493.476 C 319.142,493.472 319.141,493.47 319.137,493.468 C 319.119,493.448 319.099,493.43 319.074,493.417 C 319.049,493.404 319.023,493.396 318.995,493.392 L 318.794,493.372 Z M 319.38,493.451 C 319.355,493.457 319.333,493.47 319.316,493.488 C 319.296,493.505 319.282,493.524 319.272,493.547 C 319.261,493.572 319.256,493.599 319.256,493.626 L 319.256,493.831 L 319.328,493.839 L 319.328,493.634 C 319.328,493.615 319.331,493.599 319.339,493.583 C 319.344,493.569 319.355,493.555 319.367,493.546 C 319.379,493.534 319.392,493.526 319.407,493.521 C 319.423,493.516 319.44,493.514 319.458,493.516 C 319.476,493.519 319.492,493.523 319.508,493.532 C 319.525,493.54 319.539,493.552 319.551,493.565 C 319.562,493.578 319.571,493.593 319.578,493.611 C 319.584,493.626 319.588,493.644 319.588,493.663 L 319.588,493.867 L 319.662,493.875 L 319.662,493.669 C 319.662,493.642 319.656,493.615 319.645,493.589 C 319.633,493.562 319.619,493.539 319.6,493.519 C 319.582,493.498 319.562,493.482 319.537,493.467 C 319.513,493.455 319.486,493.446 319.458,493.443 C 319.429,493.44 319.404,493.443 319.38,493.451 Z M 318.865,493.451 L 318.995,493.465 C 319.013,493.467 319.029,493.472 319.045,493.482 C 319.061,493.49 319.075,493.501 319.088,493.514 C 319.1,493.528 319.108,493.542 319.116,493.559 C 319.122,493.575 319.125,493.593 319.126,493.612 C 319.125,493.629 319.122,493.647 319.116,493.662 C 319.108,493.677 319.1,493.689 319.088,493.702 C 319.075,493.711 319.061,493.719 319.045,493.724 C 319.029,493.73 319.013,493.731 318.995,493.729 L 318.865,493.715 L 318.865,493.451 Z M 319.696,493.468 L 319.732,493.547 L 319.902,493.901 L 320.072,493.583 L 320.11,493.514 L 320.028,493.505 L 319.992,493.573 L 319.902,493.74 L 319.813,493.554 L 319.777,493.478 L 319.696,493.468 Z M 320.244,493.532 C 320.233,493.533 320.224,493.534 320.216,493.538 C 320.203,493.544 320.192,493.551 320.181,493.56 C 320.171,493.57 320.163,493.579 320.156,493.592 C 320.153,493.601 320.15,493.61 320.147,493.618 C 320.145,493.628 320.144,493.637 320.144,493.649 L 320.144,493.928 L 320.216,493.935 L 320.216,493.649 C 320.217,493.64 320.22,493.632 320.225,493.626 C 320.229,493.619 320.234,493.615 320.243,493.612 C 320.249,493.606 320.258,493.605 320.265,493.605 L 320.478,493.626 L 320.478,493.553 L 320.272,493.531 C 320.262,493.53 320.252,493.531 320.244,493.532 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 314.849,499.91 L 314.846,501.961 L 315.185,501.997 L 315.187,500.948 L 315.467,501.252 L 315.718,501.525 L 316.246,502.104 L 316.748,502.155 L 315.92,501.247 L 316.743,500.103 L 316.326,500.06 L 315.669,500.972 L 315.187,500.453 L 315.187,499.944 L 314.849,499.91 Z M 316.916,500.121 L 317.089,500.505 L 317.883,502.27 L 318.68,500.667 L 318.852,500.318 L 318.475,500.279 L 318.3,500.628 L 317.884,501.466 L 317.469,500.544 L 317.296,500.16 L 316.916,500.121 Z M 319.025,500.335 L 319.027,500.335 L 319.287,500.727 L 319.753,501.431 L 319.968,501.752 L 320.227,502.144 L 319.02,502.02 L 319.02,502.385 L 320.487,502.536 L 320.912,502.578 L 320.65,502.185 L 320.179,501.474 L 319.967,501.152 L 319.71,500.772 L 320.923,500.894 L 320.924,500.526 L 319.455,500.379 L 319.452,500.379 L 319.025,500.335 Z M 321.5,500.629 C 321.44,500.654 321.383,500.687 321.338,500.733 C 321.292,500.779 321.254,500.834 321.229,500.898 C 321.203,500.962 321.19,501.033 321.189,501.109 L 321.188,502.053 C 321.188,502.13 321.2,502.204 321.227,502.272 C 321.253,502.342 321.288,502.403 321.337,502.46 C 321.382,502.514 321.437,502.56 321.498,502.594 C 321.56,502.63 321.627,502.651 321.697,502.659 L 323.083,502.799 L 323.083,502.434 L 321.697,502.292 C 321.665,502.287 321.636,502.277 321.609,502.258 C 321.583,502.238 321.563,502.214 321.548,502.184 C 321.532,502.154 321.524,502.122 321.524,502.087 L 321.524,501.896 L 322.744,502.021 L 322.745,501.655 L 321.524,501.532 L 321.524,501.144 C 321.524,501.108 321.534,501.079 321.549,501.053 C 321.566,501.025 321.585,501.004 321.61,500.99 C 321.638,500.976 321.666,500.97 321.698,500.972 L 323.085,501.114 L 323.086,500.748 L 321.698,500.606 C 321.629,500.601 321.563,500.607 321.5,500.629 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 316.853,498.819 L 316.853,499.257 C 316.853,499.279 316.856,499.3 316.864,499.322 C 316.872,499.342 316.884,499.361 316.899,499.376 C 316.914,499.392 316.93,499.405 316.949,499.416 C 316.968,499.426 316.99,499.433 317.012,499.436 L 317.445,499.481 L 317.445,499.375 L 317.012,499.329 C 317.003,499.327 316.993,499.324 316.985,499.317 C 316.976,499.311 316.97,499.305 316.965,499.297 C 316.96,499.287 316.958,499.279 316.958,499.268 L 316.958,499.213 L 317.34,499.252 L 317.34,499.145 L 316.957,499.105 L 316.958,498.831 L 316.853,498.819 Z M 317.53,498.892 L 317.529,499.329 C 317.529,499.35 317.534,499.372 317.543,499.392 C 317.55,499.413 317.561,499.43 317.576,499.447 C 317.591,499.464 317.608,499.477 317.626,499.488 C 317.645,499.498 317.666,499.505 317.69,499.507 L 318.122,499.552 L 318.122,499.446 L 317.69,499.4 C 317.68,499.398 317.671,499.395 317.663,499.39 C 317.654,499.383 317.647,499.376 317.642,499.368 C 317.638,499.359 317.636,499.35 317.636,499.34 L 317.636,499.284 L 318.017,499.325 L 318.017,499.218 L 317.635,499.176 L 317.636,498.902 L 317.53,498.892 Z M 318.209,498.963 L 318.207,499.563 L 318.581,499.602 C 318.602,499.604 318.623,499.602 318.641,499.595 C 318.661,499.589 318.678,499.58 318.693,499.567 L 318.693,499.565 C 318.708,499.551 318.719,499.536 318.728,499.517 C 318.735,499.498 318.741,499.479 318.741,499.456 C 318.741,499.434 318.735,499.413 318.729,499.393 C 318.72,499.373 318.709,499.355 318.697,499.339 C 318.682,499.324 318.666,499.309 318.648,499.298 C 318.632,499.29 318.618,499.284 318.601,499.281 C 318.6,499.281 318.599,499.281 318.597,499.28 L 318.597,499.279 L 318.314,499.249 L 318.314,498.974 L 318.209,498.963 Z M 318.824,499.026 L 318.824,499.202 C 318.824,499.216 318.825,499.227 318.827,499.239 C 318.83,499.25 318.833,499.262 318.837,499.273 C 318.846,499.295 318.858,499.314 318.875,499.331 C 318.89,499.35 318.907,499.364 318.927,499.376 C 318.946,499.386 318.968,499.393 318.993,499.397 L 319.246,499.424 L 319.249,499.424 C 319.26,499.427 319.271,499.433 319.28,499.44 C 319.29,499.447 319.297,499.456 319.304,499.467 C 319.309,499.477 319.31,499.489 319.31,499.501 C 319.31,499.514 319.308,499.525 319.301,499.536 C 319.295,499.545 319.288,499.552 319.277,499.558 C 319.266,499.564 319.255,499.566 319.242,499.565 L 318.825,499.52 L 318.825,499.627 L 319.241,499.672 C 319.266,499.674 319.29,499.672 319.31,499.665 C 319.331,499.658 319.349,499.647 319.366,499.632 C 319.381,499.618 319.394,499.601 319.403,499.581 C 319.412,499.561 319.417,499.537 319.417,499.512 C 319.417,499.5 319.416,499.488 319.413,499.477 C 319.41,499.465 319.406,499.453 319.401,499.442 C 319.398,499.43 319.393,499.421 319.387,499.412 C 319.381,499.403 319.374,499.393 319.367,499.385 C 319.353,499.367 319.334,499.352 319.314,499.341 C 319.292,499.329 319.272,499.323 319.248,499.317 L 319.245,499.317 C 319.245,499.317 319.243,499.317 319.242,499.317 L 318.993,499.291 C 318.981,499.289 318.97,499.284 318.961,499.276 C 318.951,499.269 318.943,499.26 318.938,499.249 C 318.933,499.239 318.931,499.228 318.931,499.216 L 318.931,499.146 L 319.415,499.195 L 319.415,499.088 L 318.998,499.044 L 318.824,499.026 Z M 319.914,499.143 L 319.914,499.739 L 320.02,499.67 L 320.4,499.412 L 320.4,499.794 L 320.505,499.804 L 320.506,499.205 L 320.4,499.276 L 320.02,499.532 L 320.02,499.154 L 319.914,499.143 Z M 320.591,499.215 L 320.59,499.815 L 320.965,499.853 C 320.986,499.856 321.007,499.854 321.026,499.847 C 321.046,499.84 321.062,499.83 321.078,499.817 C 321.091,499.805 321.103,499.789 321.111,499.77 C 321.119,499.75 321.123,499.73 321.124,499.708 C 321.124,499.686 321.119,499.666 321.111,499.644 C 321.104,499.625 321.093,499.607 321.079,499.591 C 321.065,499.575 321.049,499.562 321.031,499.551 C 321.017,499.543 321.001,499.536 320.985,499.531 L 321.071,499.372 L 321.124,499.271 L 321.006,499.258 L 320.951,499.359 L 320.894,499.466 L 320.892,499.47 C 320.883,499.485 320.871,499.496 320.854,499.503 C 320.839,499.511 320.82,499.513 320.801,499.511 L 320.697,499.5 L 320.697,499.226 L 320.591,499.215 Z M 318.314,499.355 L 318.582,499.383 C 318.585,499.383 318.588,499.384 318.593,499.385 C 318.597,499.388 318.6,499.389 318.603,499.391 L 318.603,499.391 C 318.613,499.396 318.621,499.404 318.626,499.414 C 318.632,499.422 318.634,499.434 318.634,499.444 C 318.634,499.455 318.632,499.462 318.629,499.469 C 318.625,499.475 318.622,499.48 318.619,499.483 C 318.615,499.485 318.61,499.488 318.604,499.491 C 318.599,499.493 318.59,499.494 318.582,499.493 L 318.314,499.466 L 318.314,499.355 Z M 320.697,499.607 L 320.965,499.635 C 320.969,499.636 320.972,499.636 320.976,499.638 C 320.98,499.64 320.983,499.641 320.986,499.642 C 320.996,499.648 321.004,499.658 321.008,499.667 C 321.016,499.676 321.019,499.686 321.019,499.697 C 321.018,499.707 321.017,499.715 321.012,499.721 C 321.008,499.728 321.006,499.731 321.002,499.734 C 320.999,499.737 320.994,499.741 320.988,499.743 C 320.981,499.745 320.974,499.747 320.965,499.745 L 320.696,499.718 L 320.697,499.607 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 314.966,497.623 L 314.965,498.021 L 315.208,498.046 C 315.224,498.047 315.237,498.046 315.25,498.042 C 315.261,498.038 315.273,498.033 315.282,498.022 L 315.282,498.021 C 315.292,498.013 315.299,498.003 315.304,497.99 C 315.309,497.977 315.313,497.964 315.313,497.949 C 315.313,497.935 315.309,497.92 315.305,497.907 C 315.3,497.894 315.293,497.882 315.283,497.871 C 315.275,497.86 315.264,497.852 315.253,497.845 C 315.243,497.839 315.233,497.835 315.224,497.834 C 315.221,497.834 315.219,497.833 315.219,497.833 L 315.219,497.833 L 315.036,497.814 L 315.036,497.631 L 314.966,497.623 Z M 315.367,497.663 L 315.366,498.061 L 315.61,498.087 C 315.625,498.088 315.638,498.087 315.65,498.083 C 315.664,498.078 315.674,498.072 315.683,498.063 C 315.693,498.054 315.7,498.044 315.707,498.033 C 315.711,498.02 315.714,498.006 315.714,497.991 C 315.714,497.976 315.711,497.962 315.708,497.949 C 315.7,497.936 315.694,497.925 315.685,497.914 C 315.676,497.903 315.666,497.894 315.653,497.887 C 315.643,497.88 315.634,497.876 315.624,497.874 L 315.678,497.767 L 315.714,497.7 L 315.637,497.691 L 315.602,497.757 L 315.566,497.83 L 315.564,497.833 C 315.558,497.843 315.548,497.85 315.539,497.854 C 315.527,497.86 315.517,497.861 315.505,497.86 L 315.435,497.853 L 315.435,497.671 L 315.367,497.663 Z M 315.873,497.732 C 315.851,497.74 315.831,497.753 315.814,497.768 C 315.795,497.786 315.781,497.806 315.771,497.827 C 315.761,497.852 315.756,497.876 315.754,497.904 C 315.756,497.932 315.761,497.958 315.771,497.981 C 315.781,498.008 315.795,498.031 315.812,498.051 C 315.83,498.07 315.85,498.087 315.872,498.099 C 315.897,498.113 315.921,498.121 315.948,498.124 C 315.974,498.126 316,498.124 316.024,498.116 C 316.045,498.106 316.067,498.096 316.084,498.078 C 316.102,498.062 316.117,498.044 316.126,498.02 C 316.135,497.996 316.141,497.97 316.141,497.943 C 316.141,497.916 316.136,497.891 316.126,497.864 C 316.117,497.839 316.102,497.819 316.084,497.798 C 316.068,497.778 316.047,497.76 316.024,497.748 C 316,497.736 315.975,497.728 315.949,497.724 L 315.91,497.725 C 315.897,497.727 315.886,497.729 315.873,497.732 Z M 316.341,497.765 L 316.341,498.092 L 316.182,498.076 L 316.182,498.147 L 316.567,498.188 L 316.567,498.117 L 316.411,498.099 L 316.411,497.771 L 316.341,497.765 Z M 315.949,497.796 C 315.966,497.798 315.981,497.803 315.998,497.811 C 316.013,497.82 316.026,497.83 316.036,497.843 C 316.047,497.854 316.056,497.87 316.063,497.887 C 316.069,497.903 316.073,497.919 316.073,497.937 C 316.073,497.954 316.069,497.97 316.063,497.985 C 316.056,498.001 316.047,498.014 316.036,498.024 C 316.025,498.034 316.012,498.042 315.997,498.046 C 315.981,498.052 315.966,498.053 315.948,498.052 C 315.932,498.051 315.915,498.046 315.901,498.037 C 315.886,498.029 315.871,498.019 315.86,498.006 C 315.85,497.992 315.841,497.979 315.834,497.961 C 315.83,497.945 315.825,497.929 315.825,497.912 C 315.825,497.894 315.83,497.876 315.834,497.861 C 315.841,497.847 315.85,497.835 315.861,497.825 C 315.872,497.814 315.887,497.806 315.901,497.801 C 315.915,497.796 315.933,497.795 315.949,497.796 Z M 316.686,497.81 C 316.676,497.814 316.664,497.82 316.653,497.83 C 316.644,497.839 316.637,497.848 316.631,497.861 C 316.627,497.873 316.624,497.888 316.624,497.903 L 316.624,498.086 C 316.624,498.1 316.625,498.116 316.631,498.129 C 316.637,498.142 316.644,498.154 316.653,498.165 C 316.664,498.176 316.674,498.184 316.686,498.191 C 316.699,498.197 316.713,498.202 316.727,498.204 L 317.008,498.234 L 317.008,498.162 L 316.727,498.133 C 316.721,498.131 316.715,498.13 316.709,498.126 C 316.704,498.123 316.7,498.118 316.696,498.112 C 316.694,498.104 316.692,498.099 316.692,498.092 L 316.692,498.056 L 316.94,498.081 L 316.94,498.01 L 316.692,497.984 L 316.693,497.911 C 316.693,497.903 316.694,497.898 316.697,497.892 C 316.7,497.887 316.705,497.882 316.709,497.879 C 316.715,497.876 316.721,497.876 316.727,497.876 L 317.009,497.906 L 317.009,497.835 L 316.728,497.806 C 316.713,497.804 316.7,497.806 316.686,497.81 Z M 317.174,497.867 C 317.152,497.875 317.132,497.888 317.115,497.904 C 317.095,497.92 317.082,497.94 317.072,497.962 C 317.063,497.986 317.057,498.012 317.057,498.039 C 317.057,498.066 317.063,498.092 317.072,498.118 C 317.081,498.143 317.095,498.165 317.115,498.186 C 317.132,498.205 317.152,498.222 317.174,498.235 C 317.198,498.248 317.224,498.255 317.251,498.259 L 317.442,498.278 L 317.442,498.206 L 317.251,498.187 C 317.233,498.185 317.217,498.179 317.201,498.171 C 317.187,498.164 317.173,498.154 317.161,498.14 C 317.152,498.128 317.143,498.115 317.135,498.097 C 317.13,498.081 317.127,498.064 317.127,498.046 C 317.127,498.029 317.13,498.012 317.136,497.996 C 317.143,497.981 317.152,497.969 317.162,497.959 C 317.173,497.949 317.187,497.941 317.202,497.936 C 317.217,497.93 317.233,497.929 317.251,497.93 L 317.443,497.951 L 317.443,497.879 L 317.251,497.859 L 317.212,497.859 C 317.199,497.86 317.187,497.863 317.174,497.867 Z M 315.036,497.884 L 315.209,497.902 C 315.212,497.903 315.215,497.903 315.217,497.904 C 315.219,497.904 315.221,497.905 315.225,497.907 C 315.23,497.911 315.236,497.915 315.24,497.922 C 315.243,497.928 315.244,497.935 315.244,497.942 C 315.244,497.948 315.243,497.954 315.241,497.957 C 315.239,497.962 315.237,497.966 315.235,497.967 C 315.232,497.968 315.229,497.97 315.225,497.972 C 315.219,497.975 315.216,497.975 315.209,497.975 L 315.036,497.957 L 315.036,497.884 Z M 317.656,497.903 L 317.656,498.229 L 317.497,498.212 L 317.497,498.285 L 317.883,498.324 L 317.883,498.253 L 317.724,498.235 L 317.724,497.91 L 317.656,497.903 Z M 315.435,497.925 L 315.61,497.943 C 315.612,497.943 315.615,497.943 315.617,497.944 C 315.62,497.944 315.622,497.946 315.625,497.947 C 315.63,497.951 315.636,497.956 315.64,497.962 C 315.643,497.968 315.645,497.975 315.645,497.982 C 315.645,497.99 315.643,497.994 315.642,498 C 315.64,498.004 315.637,498.007 315.634,498.008 C 315.632,498.01 315.629,498.012 315.626,498.014 C 315.621,498.016 315.616,498.017 315.61,498.016 L 315.435,497.998 L 315.435,497.925 Z M 317.937,497.93 L 317.936,498.329 L 318.006,498.337 L 318.007,497.938 L 317.937,497.93 Z M 318.237,497.962 L 318.074,498.272 L 318.038,498.34 L 318.116,498.348 L 318.152,498.28 L 318.236,498.119 L 318.32,498.298 L 318.355,498.373 L 318.432,498.382 L 318.396,498.305 L 318.237,497.962 Z M 318.529,498.001 C 318.517,498.006 318.507,498.012 318.497,498.021 C 318.488,498.029 318.479,498.04 318.476,498.053 C 318.47,498.064 318.466,498.078 318.466,498.092 L 318.466,498.277 C 318.466,498.291 318.469,498.304 318.475,498.318 C 318.479,498.332 318.487,498.344 318.497,498.356 C 318.506,498.366 318.516,498.376 318.529,498.382 C 318.542,498.389 318.555,498.393 318.57,498.395 L 318.85,498.424 L 318.85,498.353 L 318.57,498.324 C 318.563,498.323 318.556,498.32 318.552,498.317 C 318.547,498.313 318.543,498.309 318.54,498.302 C 318.536,498.297 318.535,498.291 318.535,498.285 L 318.535,498.247 L 318.783,498.272 L 318.783,498.202 L 318.536,498.176 L 318.536,498.1 C 318.536,498.093 318.537,498.088 318.541,498.083 C 318.543,498.078 318.547,498.072 318.553,498.071 C 318.557,498.068 318.563,498.066 318.571,498.067 L 318.851,498.097 L 318.851,498.026 L 318.571,497.996 C 318.556,497.994 318.542,497.996 318.529,498.001 Z M 319.173,498.059 L 319.172,498.456 L 319.416,498.483 C 319.43,498.484 319.444,498.483 319.457,498.478 C 319.47,498.473 319.479,498.467 319.49,498.459 C 319.499,498.449 319.505,498.439 319.512,498.426 C 319.516,498.413 319.518,498.4 319.518,498.385 C 319.518,498.37 319.516,498.356 319.512,498.343 C 319.507,498.33 319.5,498.317 319.491,498.308 C 319.482,498.298 319.472,498.288 319.459,498.282 C 319.451,498.276 319.439,498.272 319.429,498.27 L 319.485,498.162 L 319.519,498.093 L 319.442,498.086 L 319.407,498.154 L 319.372,498.224 L 319.37,498.227 C 319.363,498.237 319.355,498.245 319.344,498.25 C 319.335,498.254 319.323,498.257 319.312,498.256 L 319.241,498.248 L 319.242,498.065 L 319.173,498.059 Z M 319.64,498.117 C 319.627,498.12 319.615,498.128 319.607,498.136 C 319.597,498.144 319.59,498.155 319.584,498.167 C 319.58,498.179 319.576,498.194 319.576,498.208 L 319.576,498.392 C 319.576,498.407 319.579,498.42 319.584,498.433 C 319.589,498.448 319.597,498.46 319.607,498.472 C 319.615,498.483 319.626,498.491 319.64,498.498 C 319.652,498.504 319.665,498.509 319.679,498.51 L 319.961,498.538 L 319.961,498.468 L 319.679,498.44 C 319.674,498.439 319.667,498.435 319.662,498.431 C 319.658,498.428 319.653,498.423 319.65,498.418 C 319.646,498.411 319.645,498.406 319.645,498.398 L 319.645,498.363 L 319.892,498.387 L 319.892,498.316 L 319.645,498.291 L 319.645,498.216 C 319.645,498.208 319.647,498.203 319.65,498.197 C 319.653,498.193 319.658,498.189 319.663,498.186 C 319.667,498.183 319.674,498.182 319.679,498.182 L 319.961,498.212 L 319.961,498.141 L 319.68,498.112 C 319.666,498.111 319.652,498.113 319.64,498.117 Z M 320.091,498.164 C 320.078,498.169 320.064,498.177 320.052,498.187 C 320.04,498.196 320.033,498.21 320.025,498.225 C 320.02,498.239 320.016,498.255 320.016,498.272 L 320.087,498.279 C 320.087,498.269 320.089,498.259 320.092,498.253 C 320.098,498.245 320.104,498.239 320.111,498.235 C 320.119,498.231 320.127,498.23 320.138,498.23 L 320.259,498.243 C 320.268,498.244 320.278,498.248 320.285,498.253 C 320.291,498.259 320.3,498.265 320.304,498.275 C 320.31,498.284 320.312,498.292 320.312,498.303 C 320.312,498.313 320.31,498.322 320.304,498.33 C 320.3,498.338 320.291,498.343 320.285,498.348 C 320.277,498.351 320.268,498.353 320.259,498.352 L 320.119,498.338 L 320.1,498.338 C 320.092,498.338 320.087,498.34 320.08,498.342 C 320.067,498.345 320.058,498.352 320.047,498.36 C 320.044,498.364 320.038,498.369 320.033,498.376 C 320.028,498.384 320.024,498.393 320.021,498.403 C 320.018,498.413 320.016,498.424 320.016,498.434 L 320.016,498.437 C 320.016,498.453 320.02,498.466 320.024,498.479 C 320.029,498.493 320.036,498.505 320.046,498.516 C 320.057,498.527 320.066,498.536 320.08,498.542 C 320.091,498.55 320.105,498.554 320.119,498.555 L 320.276,498.572 C 320.289,498.574 320.304,498.572 320.316,498.568 C 320.329,498.563 320.34,498.557 320.349,498.549 C 320.358,498.538 320.367,498.528 320.371,498.516 C 320.377,498.504 320.379,498.491 320.379,498.475 L 320.379,498.473 L 320.311,498.465 L 320.311,498.467 C 320.311,498.474 320.31,498.479 320.306,498.485 C 320.303,498.491 320.299,498.494 320.292,498.498 C 320.288,498.499 320.282,498.501 320.276,498.5 L 320.119,498.485 C 320.113,498.484 320.106,498.481 320.102,498.477 C 320.098,498.473 320.092,498.468 320.089,498.462 C 320.087,498.457 320.085,498.451 320.085,498.444 L 320.085,498.441 C 320.085,498.433 320.087,498.429 320.089,498.423 C 320.092,498.418 320.098,498.414 320.102,498.411 C 320.106,498.409 320.113,498.407 320.119,498.408 L 320.259,498.422 L 320.284,498.422 C 320.291,498.42 320.301,498.42 320.308,498.417 C 320.324,498.411 320.337,498.403 320.348,498.392 C 320.349,498.392 320.35,498.391 320.351,498.389 C 320.351,498.388 320.351,498.388 320.353,498.387 C 320.361,498.377 320.368,498.366 320.372,498.353 C 320.378,498.34 320.38,498.324 320.38,498.31 C 320.38,498.292 320.377,498.276 320.37,498.259 C 320.365,498.245 320.356,498.23 320.345,498.219 C 320.333,498.205 320.321,498.194 320.305,498.186 C 320.291,498.179 320.276,498.173 320.259,498.171 L 320.138,498.159 C 320.121,498.157 320.105,498.159 320.091,498.164 Z M 320.437,498.191 L 320.435,498.588 L 320.678,498.614 C 320.693,498.615 320.705,498.614 320.717,498.609 C 320.73,498.606 320.742,498.599 320.753,498.589 L 320.753,498.589 C 320.762,498.58 320.769,498.569 320.775,498.557 C 320.779,498.543 320.782,498.53 320.782,498.516 C 320.782,498.501 320.78,498.487 320.775,498.475 C 320.77,498.46 320.763,498.449 320.755,498.439 C 320.744,498.427 320.734,498.419 320.721,498.412 C 320.713,498.407 320.703,498.403 320.692,498.401 C 320.691,498.401 320.69,498.4 320.689,498.4 L 320.689,498.4 L 320.504,498.381 L 320.504,498.197 L 320.437,498.191 Z M 320.838,498.232 L 320.837,498.63 L 320.904,498.636 L 320.905,498.239 L 320.838,498.232 Z M 320.962,498.243 L 320.962,498.641 L 321.204,498.666 C 321.219,498.669 321.232,498.667 321.245,498.663 C 321.256,498.66 321.266,498.651 321.277,498.643 C 321.286,498.633 321.294,498.623 321.299,498.611 C 321.305,498.599 321.307,498.586 321.308,498.57 C 321.307,498.556 321.305,498.542 321.299,498.529 C 321.294,498.516 321.287,498.503 321.278,498.492 C 321.269,498.483 321.259,498.474 321.246,498.466 C 321.237,498.46 321.227,498.458 321.218,498.454 L 321.272,498.348 L 321.308,498.279 L 321.231,498.271 L 321.195,498.34 L 321.158,498.409 L 321.156,498.412 C 321.15,498.421 321.143,498.429 321.132,498.433 C 321.123,498.44 321.111,498.442 321.099,498.441 L 321.03,498.433 L 321.03,498.25 L 320.962,498.243 Z M 321.342,498.285 L 321.376,498.359 L 321.537,498.702 L 321.698,498.392 L 321.736,498.324 L 321.658,498.317 L 321.622,498.384 L 321.537,498.545 L 321.453,498.367 L 321.418,498.291 L 321.342,498.285 Z M 319.241,498.318 L 319.417,498.338 C 319.42,498.338 319.422,498.34 319.424,498.34 C 319.426,498.34 319.428,498.342 319.43,498.343 C 319.437,498.346 319.442,498.351 319.447,498.357 C 319.45,498.364 319.452,498.37 319.452,498.379 C 319.452,498.384 319.451,498.39 319.448,498.394 C 319.446,498.398 319.442,498.401 319.441,498.403 C 319.439,498.406 319.435,498.407 319.433,498.408 C 319.429,498.409 319.426,498.409 319.425,498.41 L 319.416,498.41 L 319.241,498.392 L 319.241,498.318 Z M 321.925,498.344 L 321.925,498.673 L 321.767,498.655 L 321.767,498.726 L 322.151,498.766 L 322.151,498.697 L 321.994,498.679 L 321.994,498.351 L 321.925,498.344 Z M 322.312,498.4 C 322.288,498.407 322.268,498.42 322.25,498.435 C 322.234,498.453 322.219,498.473 322.208,498.496 C 322.2,498.517 322.194,498.543 322.194,498.572 C 322.194,498.599 322.198,498.625 322.208,498.649 C 322.219,498.676 322.233,498.698 322.25,498.717 C 322.267,498.738 322.288,498.754 322.311,498.767 C 322.335,498.78 322.36,498.789 322.385,498.791 C 322.415,498.793 322.438,498.791 322.46,498.783 C 322.484,498.776 322.506,498.763 322.524,498.745 C 322.541,498.73 322.554,498.711 322.563,498.687 C 322.574,498.665 322.578,498.639 322.579,498.611 C 322.578,498.584 322.574,498.557 322.564,498.531 C 322.554,498.507 322.541,498.485 322.524,498.464 C 322.507,498.446 322.485,498.428 322.462,498.416 C 322.439,498.403 322.415,498.395 322.387,498.392 L 322.348,498.392 C 322.336,498.394 322.325,498.396 322.312,498.4 Z M 322.621,498.416 L 322.621,498.813 L 322.864,498.839 C 322.877,498.84 322.891,498.838 322.903,498.834 C 322.916,498.83 322.927,498.824 322.937,498.816 C 322.947,498.807 322.954,498.796 322.958,498.783 C 322.964,498.771 322.967,498.756 322.967,498.742 C 322.967,498.728 322.964,498.715 322.96,498.701 C 322.955,498.687 322.949,498.676 322.937,498.665 C 322.929,498.653 322.918,498.645 322.907,498.638 C 322.896,498.633 322.887,498.629 322.876,498.627 L 322.932,498.518 L 322.967,498.451 L 322.89,498.444 L 322.856,498.511 L 322.817,498.582 L 322.816,498.585 C 322.809,498.595 322.802,498.602 322.792,498.608 C 322.782,498.612 322.77,498.614 322.757,498.612 L 322.689,498.607 L 322.689,498.422 L 322.621,498.416 Z M 320.504,498.451 L 320.679,498.469 C 320.681,498.47 320.684,498.47 320.687,498.472 C 320.689,498.472 320.691,498.473 320.693,498.474 L 320.693,498.475 C 320.698,498.479 320.704,498.484 320.708,498.49 C 320.712,498.496 320.713,498.503 320.714,498.511 C 320.713,498.516 320.713,498.522 320.71,498.525 C 320.707,498.53 320.705,498.533 320.704,498.535 C 320.701,498.536 320.698,498.538 320.694,498.54 C 320.69,498.542 320.685,498.543 320.679,498.542 L 320.504,498.524 L 320.504,498.451 Z M 322.387,498.463 C 322.405,498.465 322.42,498.47 322.434,498.479 C 322.449,498.486 322.463,498.498 322.473,498.511 C 322.485,498.523 322.494,498.538 322.5,498.554 C 322.509,498.569 322.511,498.587 322.511,498.605 C 322.511,498.621 322.508,498.638 322.5,498.652 C 322.494,498.669 322.485,498.682 322.473,498.692 C 322.462,498.702 322.449,498.71 322.434,498.715 C 322.42,498.719 322.404,498.72 322.385,498.719 C 322.369,498.717 322.353,498.711 322.338,498.705 C 322.325,498.698 322.311,498.685 322.299,498.674 C 322.287,498.66 322.278,498.645 322.272,498.629 C 322.266,498.613 322.263,498.597 322.262,498.58 C 322.263,498.561 322.266,498.543 322.272,498.529 C 322.278,498.515 322.287,498.503 322.299,498.492 C 322.311,498.483 322.325,498.474 322.339,498.469 C 322.353,498.463 322.369,498.461 322.387,498.463 Z M 321.03,498.504 L 321.204,498.523 C 321.208,498.523 321.209,498.524 321.211,498.525 C 321.214,498.525 321.216,498.526 321.219,498.527 C 321.226,498.53 321.23,498.536 321.233,498.542 C 321.237,498.55 321.239,498.556 321.239,498.563 C 321.239,498.569 321.237,498.576 321.235,498.58 C 321.233,498.583 321.231,498.586 321.229,498.588 C 321.227,498.591 321.223,498.592 321.219,498.594 C 321.215,498.595 321.209,498.595 321.204,498.595 L 321.03,498.578 L 321.03,498.504 Z M 322.689,498.677 L 322.864,498.697 C 322.867,498.697 322.868,498.697 322.871,498.698 C 322.873,498.698 322.875,498.698 322.877,498.7 C 322.884,498.704 322.889,498.709 322.892,498.715 C 322.896,498.72 322.898,498.727 322.898,498.735 C 322.898,498.741 322.896,498.745 322.894,498.75 C 322.892,498.754 322.89,498.757 322.888,498.759 C 322.886,498.762 322.882,498.763 322.879,498.765 C 322.875,498.768 322.87,498.768 322.864,498.768 L 322.689,498.75 L 322.689,498.677 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 310.097,510.954 L 309.923,511.114 L 327.331,512.25 L 327.42,512.211 C 327.449,512.201 327.48,512.173 327.48,512.128 L 327.48,512.085 L 310.097,510.954 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 309.923,511.114 L 309.922,487.663 L 310.01,487.579 L 310.097,487.592 L 310.097,510.953 L 309.923,511.114 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--LIGHT_BLUSH, .KN95_NR_small_individuals--LIGHT_BLUSH {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.436 -391.199 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(30.078 363.728)'%3E%3Cstop offset='0' stop-color='%23cbb5b1'/%3E%3Cstop offset='1' stop-color='%23ecdbd8'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.921' gradientTransform='translate(26.539 364.344)'%3E%3Cstop offset='0' stop-color='%23938987'/%3E%3Cstop offset='1' stop-color='%23cabcb9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.101' gradientTransform='translate(30.072 383.712)'%3E%3Cstop offset='0' stop-color='%23b0a4a2'/%3E%3Cstop offset='1' stop-color='%23cdbfbc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.23' gradientTransform='translate(25.399 385.768)'%3E%3Cstop offset='0' stop-color='%238f8583'/%3E%3Cstop offset='1' stop-color='%23b0a4a2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(38.391 385.583) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b9acaa'/%3E%3Cstop offset='1' stop-color='%23d1c3c0'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.246 373.472) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23aea2a0'/%3E%3Cstop offset='1' stop-color='%23cabcb9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.165 374.47) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.165,361.315 L 27.165,384.801 L 44.612,385.92 C 44.624,385.906 44.634,385.886 44.634,385.862 L 44.634,363.681 L 27.165,361.315 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.165,361.315 L 23.701,364.677 L 23.7,386.699 L 27.165,384.801 L 27.165,361.315 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.165,384.801 L 23.7,386.699 L 40.632,387.628 L 44.576,385.948 C 44.589,385.942 44.602,385.933 44.612,385.92 L 27.165,384.801 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.078,384.532 L 23.698,386.422 L 23.697,386.699 L 27.078,384.848 L 27.078,384.532 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.206,366.916 L 34.206,367.327 L 34.278,367.335 L 34.278,366.924 L 34.206,366.916 Z M 34.336,366.93 L 34.336,367.339 L 34.408,367.291 L 34.67,367.116 L 34.67,367.376 L 34.741,367.386 L 34.741,366.975 L 34.67,367.023 L 34.408,367.198 L 34.408,366.939 L 34.336,366.93 Z M 34.799,366.98 L 34.799,367.391 L 35.002,367.413 C 35.03,367.417 35.056,367.414 35.079,367.405 C 35.104,367.399 35.126,367.386 35.145,367.367 C 35.163,367.351 35.177,367.332 35.187,367.309 C 35.198,367.285 35.204,367.258 35.204,367.23 C 35.204,367.205 35.2,367.18 35.191,367.158 C 35.182,367.134 35.17,367.112 35.155,367.094 C 35.154,367.09 35.152,367.088 35.15,367.086 C 35.148,367.084 35.147,367.081 35.143,367.079 C 35.126,367.057 35.104,367.041 35.079,367.028 C 35.057,367.015 35.031,367.006 35.002,367.003 L 34.799,366.98 Z M 35.261,367.03 L 35.261,367.442 L 35.335,367.448 L 35.335,367.039 L 35.261,367.03 Z M 34.871,367.062 L 35.002,367.076 C 35.019,367.078 35.036,367.084 35.051,367.092 C 35.068,367.1 35.081,367.111 35.093,367.125 C 35.104,367.137 35.115,367.152 35.122,367.169 C 35.128,367.187 35.131,367.204 35.132,367.221 C 35.131,367.24 35.128,367.256 35.122,367.272 C 35.115,367.288 35.104,367.301 35.093,367.311 C 35.081,367.322 35.068,367.33 35.051,367.335 C 35.036,367.34 35.019,367.341 35.002,367.34 L 34.871,367.326 L 34.871,367.062 Z M 35.576,367.066 L 35.405,367.385 L 35.368,367.453 L 35.45,367.461 L 35.486,367.392 L 35.576,367.227 L 35.664,367.412 L 35.7,367.489 L 35.781,367.499 L 35.744,367.42 L 35.576,367.066 Z M 35.817,367.092 L 35.817,367.502 L 35.89,367.51 L 35.89,367.099 L 35.817,367.092 Z M 35.948,367.107 L 35.948,367.516 L 36.15,367.538 C 36.178,367.54 36.204,367.538 36.229,367.531 C 36.253,367.523 36.274,367.51 36.292,367.494 C 36.312,367.476 36.325,367.456 36.336,367.433 C 36.347,367.41 36.352,367.385 36.352,367.354 C 36.352,367.33 36.348,367.306 36.34,367.283 C 36.331,367.258 36.32,367.237 36.304,367.218 C 36.302,367.216 36.3,367.213 36.298,367.211 C 36.297,367.208 36.295,367.206 36.291,367.204 C 36.273,367.184 36.253,367.166 36.229,367.152 C 36.204,367.139 36.178,367.131 36.15,367.127 L 35.948,367.107 Z M 36.536,367.186 C 36.51,367.193 36.488,367.206 36.47,367.223 C 36.451,367.24 36.437,367.259 36.426,367.283 C 36.417,367.308 36.411,367.334 36.411,367.361 L 36.411,367.566 L 36.482,367.574 L 36.482,367.368 C 36.482,367.35 36.486,367.334 36.492,367.319 C 36.499,367.304 36.509,367.291 36.522,367.281 C 36.534,367.27 36.547,367.261 36.563,367.256 C 36.578,367.251 36.594,367.249 36.613,367.251 C 36.631,367.253 36.648,367.258 36.663,367.268 C 36.679,367.276 36.693,367.287 36.705,367.301 C 36.716,367.313 36.726,367.328 36.732,367.345 C 36.74,367.361 36.743,367.38 36.743,367.399 L 36.743,367.603 L 36.816,367.611 L 36.816,367.405 C 36.816,367.376 36.81,367.35 36.8,367.324 C 36.788,367.298 36.775,367.275 36.755,367.253 C 36.738,367.233 36.716,367.217 36.691,367.203 C 36.668,367.19 36.641,367.181 36.613,367.178 C 36.584,367.176 36.559,367.178 36.536,367.186 Z M 36.019,367.187 L 36.15,367.201 C 36.167,367.203 36.183,367.208 36.2,367.217 C 36.216,367.225 36.23,367.236 36.242,367.249 C 36.254,367.262 36.263,367.278 36.269,367.295 C 36.276,367.311 36.279,367.328 36.28,367.347 C 36.279,367.364 36.276,367.383 36.269,367.398 C 36.263,367.412 36.254,367.425 36.242,367.436 C 36.23,367.446 36.216,367.454 36.2,367.459 C 36.183,367.465 36.167,367.466 36.15,367.464 L 36.019,367.45 L 36.019,367.187 Z M 36.851,367.204 L 36.887,367.283 L 37.056,367.636 L 37.227,367.319 L 37.263,367.248 L 37.183,367.24 L 37.146,367.309 L 37.056,367.475 L 36.969,367.289 L 36.931,367.213 L 36.851,367.204 Z M 37.398,367.268 C 37.387,367.269 37.379,367.27 37.37,367.274 C 37.357,367.28 37.346,367.287 37.336,367.296 C 37.327,367.305 37.318,367.315 37.312,367.327 C 37.308,367.335 37.305,367.345 37.303,367.353 C 37.3,367.363 37.299,367.372 37.299,367.385 L 37.299,367.662 L 37.37,367.669 L 37.37,367.385 C 37.372,367.376 37.374,367.367 37.379,367.361 C 37.383,367.354 37.388,367.35 37.396,367.346 C 37.404,367.341 37.413,367.34 37.42,367.34 L 37.633,367.361 L 37.633,367.289 L 37.427,367.266 C 37.417,367.265 37.407,367.266 37.398,367.268 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.004,373.645 L 32.002,375.697 L 32.34,375.732 L 32.342,374.684 L 32.621,374.986 L 32.872,375.261 L 33.4,375.839 L 33.903,375.891 L 33.074,374.982 L 33.898,373.838 L 33.48,373.796 L 32.823,374.708 L 32.342,374.188 L 32.342,373.68 L 32.004,373.645 Z M 34.07,373.855 L 34.244,374.24 L 35.037,376.006 L 35.834,374.402 L 36.007,374.053 L 35.629,374.015 L 35.455,374.363 L 35.038,375.201 L 34.623,374.278 L 34.451,373.896 L 34.07,373.855 Z M 36.179,374.07 L 36.181,374.07 L 36.442,374.462 L 36.907,375.166 L 37.123,375.487 L 37.381,375.88 L 36.174,375.755 L 36.174,376.121 L 37.642,376.271 L 38.067,376.314 L 37.804,375.921 L 37.333,375.21 L 37.121,374.888 L 36.865,374.506 L 38.078,374.629 L 38.079,374.262 L 36.61,374.114 L 36.606,374.114 L 36.179,374.07 Z M 38.654,374.366 C 38.594,374.389 38.539,374.422 38.492,374.468 C 38.446,374.513 38.409,374.569 38.383,374.633 C 38.357,374.697 38.344,374.769 38.343,374.844 L 38.342,375.789 C 38.342,375.865 38.354,375.938 38.381,376.007 C 38.408,376.076 38.443,376.139 38.491,376.195 C 38.537,376.25 38.591,376.295 38.653,376.33 C 38.714,376.365 38.781,376.386 38.852,376.394 L 40.237,376.534 L 40.237,376.169 L 38.852,376.027 C 38.819,376.023 38.79,376.013 38.764,375.993 C 38.738,375.973 38.717,375.948 38.702,375.92 C 38.686,375.89 38.679,375.856 38.679,375.822 L 38.679,375.631 L 39.899,375.756 L 39.899,375.39 L 38.679,375.266 L 38.679,374.879 C 38.679,374.843 38.687,374.815 38.704,374.788 C 38.719,374.76 38.74,374.738 38.766,374.725 C 38.792,374.711 38.82,374.706 38.854,374.708 L 40.239,374.849 L 40.24,374.484 L 38.854,374.342 C 38.783,374.336 38.717,374.343 38.654,374.366 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.007,372.554 L 34.007,372.991 C 34.007,373.015 34.012,373.036 34.019,373.056 C 34.027,373.077 34.038,373.096 34.053,373.111 C 34.068,373.128 34.084,373.141 34.104,373.151 C 34.124,373.161 34.144,373.168 34.166,373.17 L 34.599,373.216 L 34.599,373.11 L 34.166,373.064 C 34.157,373.062 34.148,373.059 34.139,373.053 C 34.131,373.047 34.126,373.04 34.12,373.032 C 34.115,373.023 34.113,373.014 34.113,373.004 L 34.113,372.948 L 34.494,372.987 L 34.494,372.88 L 34.113,372.84 L 34.113,372.566 L 34.007,372.554 Z M 34.685,372.626 L 34.685,373.064 C 34.685,373.085 34.689,373.107 34.697,373.128 C 34.704,373.148 34.715,373.166 34.73,373.182 C 34.745,373.199 34.762,373.212 34.781,373.222 C 34.8,373.234 34.82,373.24 34.844,373.242 L 35.276,373.287 L 35.277,373.181 L 34.844,373.136 C 34.834,373.134 34.825,373.131 34.817,373.125 C 34.809,373.119 34.803,373.111 34.798,373.103 C 34.793,373.094 34.791,373.085 34.791,373.074 L 34.791,373.02 L 35.171,373.059 L 35.171,372.953 L 34.79,372.912 L 34.791,372.637 L 34.685,372.626 Z M 35.362,372.698 L 35.361,373.298 L 35.735,373.338 C 35.757,373.339 35.778,373.338 35.796,373.33 C 35.816,373.324 35.832,373.314 35.847,373.302 L 35.848,373.3 C 35.864,373.286 35.874,373.271 35.883,373.253 C 35.89,373.234 35.896,373.213 35.896,373.19 C 35.896,373.169 35.89,373.148 35.884,373.129 C 35.875,373.107 35.865,373.09 35.85,373.073 C 35.837,373.058 35.82,373.045 35.802,373.034 C 35.788,373.025 35.773,373.02 35.756,373.016 C 35.755,373.016 35.753,373.016 35.752,373.016 L 35.752,373.015 L 35.468,372.983 L 35.468,372.71 L 35.362,372.698 Z M 35.979,372.761 L 35.979,372.938 C 35.979,372.95 35.98,372.962 35.982,372.974 C 35.985,372.985 35.989,372.997 35.992,373.009 C 36.001,373.031 36.013,373.049 36.029,373.066 C 36.044,373.085 36.061,373.099 36.082,373.111 C 36.102,373.122 36.123,373.129 36.147,373.132 L 36.4,373.159 L 36.403,373.159 C 36.415,373.163 36.426,373.168 36.436,373.175 C 36.445,373.182 36.452,373.19 36.457,373.202 C 36.463,373.212 36.465,373.224 36.465,373.237 C 36.465,373.249 36.462,373.261 36.456,373.271 C 36.45,373.28 36.443,373.287 36.432,373.293 C 36.421,373.298 36.41,373.301 36.396,373.3 L 35.98,373.256 L 35.98,373.363 L 36.396,373.406 C 36.421,373.408 36.445,373.406 36.465,373.4 C 36.485,373.393 36.503,373.382 36.521,373.368 C 36.537,373.354 36.549,373.337 36.557,373.315 C 36.567,373.296 36.571,373.273 36.571,373.248 C 36.571,373.236 36.57,373.224 36.568,373.212 C 36.565,373.2 36.562,373.188 36.556,373.177 C 36.554,373.166 36.549,373.157 36.542,373.147 C 36.537,373.138 36.53,373.129 36.523,373.121 C 36.507,373.103 36.488,373.087 36.468,373.076 C 36.447,373.064 36.426,373.057 36.402,373.053 L 36.4,373.053 C 36.399,373.053 36.398,373.053 36.396,373.053 L 36.147,373.027 C 36.135,373.024 36.125,373.02 36.116,373.012 C 36.106,373.005 36.098,372.995 36.093,372.983 C 36.088,372.974 36.086,372.963 36.086,372.951 L 36.086,372.88 L 36.569,372.931 L 36.569,372.824 L 36.152,372.779 L 35.979,372.761 Z M 37.069,372.878 L 37.069,373.474 L 37.174,373.404 L 37.555,373.147 L 37.555,373.528 L 37.66,373.538 L 37.661,372.941 L 37.555,373.012 L 37.174,373.268 L 37.174,372.889 L 37.069,372.878 Z M 37.746,372.95 L 37.745,373.55 L 38.119,373.589 C 38.14,373.592 38.161,373.589 38.181,373.583 C 38.201,373.576 38.217,373.566 38.231,373.552 C 38.245,373.539 38.257,373.524 38.265,373.505 C 38.273,373.486 38.278,373.466 38.278,373.443 C 38.278,373.421 38.273,373.401 38.266,373.38 C 38.258,373.361 38.247,373.342 38.233,373.326 C 38.22,373.31 38.203,373.297 38.186,373.285 C 38.17,373.278 38.155,373.271 38.139,373.267 L 38.225,373.106 L 38.278,373.007 L 38.16,372.993 L 38.106,373.094 L 38.049,373.201 L 38.046,373.205 C 38.037,373.22 38.025,373.232 38.008,373.239 C 37.994,373.247 37.976,373.248 37.956,373.247 L 37.852,373.236 L 37.853,372.96 L 37.746,372.95 Z M 35.468,373.09 L 35.736,373.119 C 35.739,373.119 35.742,373.12 35.748,373.121 C 35.751,373.123 35.754,373.125 35.758,373.126 L 35.758,373.126 C 35.768,373.132 35.776,373.139 35.781,373.15 C 35.787,373.158 35.79,373.169 35.79,373.179 C 35.79,373.189 35.788,373.197 35.784,373.203 C 35.781,373.21 35.777,373.214 35.774,373.217 C 35.77,373.22 35.766,373.224 35.759,373.226 C 35.753,373.229 35.744,373.23 35.736,373.229 L 35.468,373.201 L 35.468,373.09 Z M 37.852,373.342 L 38.119,373.37 C 38.123,373.371 38.126,373.372 38.13,373.373 C 38.134,373.376 38.137,373.377 38.14,373.378 C 38.15,373.383 38.158,373.393 38.163,373.402 C 38.169,373.411 38.174,373.421 38.174,373.432 C 38.172,373.441 38.17,373.45 38.166,373.457 C 38.162,373.463 38.16,373.467 38.156,373.47 C 38.153,373.473 38.149,373.476 38.142,373.479 C 38.136,373.481 38.128,373.482 38.119,373.481 L 37.851,373.454 L 37.852,373.342 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.121,371.359 L 32.121,371.756 L 32.363,371.781 C 32.378,371.782 32.391,371.781 32.404,371.777 C 32.415,371.773 32.427,371.767 32.437,371.757 L 32.437,371.756 C 32.447,371.748 32.454,371.737 32.459,371.726 C 32.464,371.713 32.468,371.7 32.468,371.685 C 32.468,371.669 32.465,371.655 32.46,371.642 C 32.455,371.629 32.449,371.618 32.439,371.607 C 32.43,371.595 32.418,371.588 32.407,371.581 C 32.398,371.575 32.388,371.57 32.378,371.568 C 32.376,371.568 32.375,371.568 32.374,371.568 L 32.374,371.568 L 32.19,371.549 L 32.19,371.367 L 32.121,371.359 Z M 32.521,371.399 L 32.521,371.797 L 32.765,371.823 C 32.78,371.824 32.793,371.823 32.805,371.819 C 32.817,371.814 32.828,371.808 32.837,371.799 C 32.847,371.79 32.854,371.779 32.861,371.767 C 32.865,371.755 32.868,371.741 32.869,371.727 C 32.868,371.712 32.865,371.698 32.862,371.685 C 32.854,371.671 32.848,371.659 32.839,371.649 C 32.83,371.638 32.82,371.628 32.808,371.622 C 32.798,371.616 32.789,371.612 32.779,371.61 L 32.833,371.503 L 32.869,371.434 L 32.792,371.426 L 32.756,371.493 L 32.719,371.565 L 32.717,371.568 C 32.712,371.579 32.703,371.586 32.694,371.59 C 32.682,371.595 32.672,371.597 32.66,371.595 L 32.591,371.589 L 32.591,371.406 L 32.521,371.399 Z M 33.028,371.468 C 33.006,371.476 32.985,371.489 32.968,371.504 C 32.949,371.521 32.935,371.541 32.927,371.562 C 32.916,371.588 32.912,371.612 32.91,371.639 C 32.912,371.666 32.916,371.693 32.926,371.717 C 32.935,371.743 32.949,371.766 32.966,371.785 C 32.985,371.806 33.005,371.823 33.028,371.835 C 33.051,371.848 33.075,371.856 33.103,371.859 C 33.129,371.861 33.154,371.859 33.179,371.85 C 33.2,371.842 33.222,371.832 33.239,371.814 C 33.257,371.798 33.271,371.779 33.28,371.755 C 33.29,371.732 33.295,371.706 33.295,371.678 C 33.295,371.651 33.29,371.625 33.28,371.6 C 33.271,371.575 33.257,371.554 33.24,371.533 C 33.223,371.512 33.2,371.496 33.179,371.484 C 33.154,371.471 33.13,371.464 33.104,371.46 L 33.065,371.461 C 33.052,371.462 33.04,371.465 33.028,371.468 Z M 33.495,371.501 L 33.495,371.827 L 33.338,371.812 L 33.338,371.882 L 33.721,371.924 L 33.721,371.852 L 33.566,371.835 L 33.566,371.507 L 33.495,371.501 Z M 33.104,371.531 C 33.121,371.533 33.137,371.538 33.152,371.546 C 33.167,371.555 33.18,371.565 33.19,371.578 C 33.201,371.59 33.212,371.605 33.218,371.622 C 33.224,371.637 33.228,371.654 33.228,371.672 C 33.228,371.691 33.224,371.705 33.218,371.721 C 33.212,371.736 33.201,371.749 33.19,371.758 C 33.179,371.768 33.166,371.777 33.152,371.781 C 33.136,371.786 33.121,371.788 33.103,371.786 C 33.086,371.785 33.069,371.781 33.055,371.771 C 33.04,371.765 33.026,371.754 33.015,371.741 C 33.005,371.728 32.996,371.715 32.989,371.697 C 32.984,371.681 32.979,371.664 32.979,371.647 C 32.979,371.628 32.984,371.612 32.989,371.597 C 32.996,371.583 33.005,371.57 33.016,371.559 C 33.027,371.549 33.04,371.541 33.055,371.536 C 33.069,371.531 33.087,371.53 33.104,371.531 Z M 33.84,371.544 C 33.83,371.549 33.818,371.555 33.809,371.565 C 33.799,371.575 33.792,371.584 33.786,371.597 C 33.781,371.609 33.78,371.623 33.78,371.638 L 33.779,371.822 C 33.78,371.835 33.78,371.85 33.786,371.864 C 33.792,371.877 33.799,371.889 33.809,371.901 C 33.818,371.912 33.828,371.919 33.84,371.927 C 33.853,371.933 33.867,371.938 33.881,371.94 L 34.163,371.968 L 34.163,371.897 L 33.881,371.867 C 33.876,371.866 33.869,371.865 33.863,371.861 C 33.859,371.858 33.854,371.852 33.851,371.847 C 33.848,371.84 33.846,371.834 33.846,371.827 L 33.846,371.791 L 34.095,371.817 L 34.095,371.745 L 33.846,371.719 L 33.847,371.645 C 33.847,371.638 33.848,371.633 33.851,371.627 C 33.854,371.622 33.859,371.618 33.863,371.615 C 33.869,371.612 33.877,371.611 33.881,371.612 L 34.163,371.641 L 34.163,371.57 L 33.882,371.541 C 33.867,371.54 33.854,371.541 33.84,371.544 Z M 34.329,371.602 C 34.306,371.61 34.287,371.623 34.269,371.639 C 34.251,371.655 34.237,371.675 34.227,371.698 C 34.218,371.722 34.212,371.747 34.212,371.774 C 34.212,371.801 34.218,371.828 34.227,371.852 C 34.237,371.878 34.251,371.901 34.269,371.922 C 34.287,371.941 34.306,371.957 34.329,371.97 C 34.353,371.982 34.378,371.99 34.405,371.993 L 34.597,372.014 L 34.597,371.942 L 34.405,371.923 C 34.387,371.92 34.372,371.915 34.356,371.907 C 34.342,371.899 34.328,371.889 34.316,371.875 C 34.306,371.862 34.296,371.849 34.29,371.833 C 34.285,371.816 34.281,371.8 34.281,371.781 C 34.281,371.764 34.285,371.747 34.29,371.732 C 34.296,371.717 34.306,371.704 34.317,371.695 C 34.328,371.685 34.342,371.676 34.357,371.671 C 34.372,371.665 34.387,371.664 34.405,371.665 L 34.597,371.686 L 34.597,371.615 L 34.405,371.595 L 34.366,371.595 C 34.354,371.595 34.342,371.599 34.329,371.602 Z M 32.19,371.62 L 32.364,371.636 C 32.366,371.637 32.37,371.638 32.372,371.638 C 32.374,371.639 32.376,371.64 32.379,371.642 C 32.385,371.646 32.39,371.65 32.394,371.657 C 32.398,371.663 32.398,371.669 32.398,371.677 C 32.398,371.684 32.398,371.69 32.396,371.693 C 32.393,371.698 32.391,371.701 32.389,371.702 C 32.386,371.704 32.383,371.706 32.379,371.708 C 32.375,371.71 32.371,371.711 32.364,371.71 L 32.19,371.692 L 32.19,371.62 Z M 34.81,371.637 L 34.81,371.964 L 34.652,371.948 L 34.652,372.02 L 35.037,372.059 L 35.037,371.988 L 34.879,371.97 L 34.879,371.644 L 34.81,371.637 Z M 32.591,371.659 L 32.765,371.677 C 32.766,371.678 32.77,371.678 32.773,371.68 C 32.775,371.68 32.777,371.682 32.78,371.683 C 32.786,371.687 32.791,371.691 32.795,371.698 C 32.798,371.704 32.8,371.711 32.8,371.718 C 32.8,371.725 32.798,371.73 32.797,371.734 C 32.795,371.739 32.792,371.742 32.79,371.743 C 32.788,371.745 32.784,371.747 32.781,371.749 C 32.777,371.751 32.771,371.752 32.765,371.751 L 32.591,371.733 L 32.591,371.659 Z M 35.092,371.665 L 35.091,372.064 L 35.161,372.072 L 35.161,371.673 L 35.092,371.665 Z M 35.391,371.698 L 35.229,372.007 L 35.192,372.075 L 35.27,372.083 L 35.307,372.016 L 35.39,371.854 L 35.474,372.034 L 35.509,372.107 L 35.586,372.116 L 35.551,372.041 L 35.391,371.698 Z M 35.684,371.736 C 35.672,371.741 35.662,371.747 35.652,371.755 C 35.643,371.765 35.635,371.775 35.63,371.787 C 35.624,371.8 35.62,371.814 35.62,371.828 L 35.62,372.013 C 35.62,372.027 35.623,372.04 35.629,372.053 C 35.633,372.067 35.642,372.079 35.652,372.091 C 35.661,372.101 35.672,372.111 35.684,372.117 C 35.696,372.125 35.709,372.129 35.724,372.13 L 36.005,372.159 L 36.005,372.088 L 35.724,372.059 C 35.716,372.059 35.711,372.056 35.706,372.053 C 35.701,372.049 35.697,372.044 35.694,372.038 C 35.69,372.033 35.689,372.027 35.689,372.02 L 35.689,371.981 L 35.938,372.007 L 35.938,371.938 L 35.69,371.912 L 35.69,371.835 C 35.69,371.828 35.691,371.824 35.695,371.819 C 35.697,371.814 35.701,371.808 35.707,371.807 C 35.711,371.803 35.717,371.802 35.725,371.803 L 36.006,371.833 L 36.006,371.76 L 35.725,371.732 C 35.71,371.73 35.696,371.732 35.684,371.736 Z M 36.329,371.794 L 36.327,372.191 L 36.57,372.217 C 36.584,372.218 36.598,372.217 36.611,372.213 C 36.623,372.208 36.635,372.201 36.645,372.193 C 36.654,372.184 36.661,372.173 36.667,372.161 C 36.671,372.149 36.674,372.136 36.674,372.121 C 36.674,372.105 36.671,372.091 36.667,372.078 C 36.662,372.065 36.655,372.053 36.646,372.043 C 36.637,372.034 36.626,372.024 36.613,372.018 C 36.605,372.012 36.594,372.007 36.584,372.005 L 36.64,371.896 L 36.674,371.828 L 36.597,371.822 L 36.563,371.889 L 36.526,371.959 L 36.524,371.962 C 36.518,371.972 36.509,371.98 36.498,371.984 C 36.489,371.989 36.478,371.991 36.466,371.991 L 36.396,371.983 L 36.396,371.801 L 36.329,371.794 Z M 36.794,371.852 C 36.781,371.855 36.77,371.862 36.762,371.871 C 36.752,371.879 36.745,371.89 36.74,371.903 C 36.734,371.915 36.73,371.929 36.73,371.943 L 36.73,372.128 C 36.73,372.142 36.734,372.156 36.739,372.169 C 36.744,372.182 36.751,372.195 36.762,372.207 C 36.77,372.217 36.781,372.225 36.794,372.234 C 36.806,372.24 36.819,372.245 36.833,372.246 L 37.116,372.274 L 37.116,372.203 L 36.833,372.174 C 36.828,372.173 36.821,372.171 36.816,372.167 C 36.813,372.164 36.807,372.158 36.804,372.153 C 36.801,372.147 36.799,372.141 36.799,372.134 L 36.799,372.097 L 37.046,372.123 L 37.046,372.051 L 36.8,372.027 L 36.8,371.951 C 36.8,371.944 36.801,371.939 36.804,371.933 C 36.807,371.928 36.813,371.925 36.816,371.922 C 36.822,371.918 36.828,371.918 36.833,371.918 L 37.117,371.948 L 37.117,371.876 L 36.834,371.847 C 36.82,371.846 36.807,371.848 36.794,371.852 Z M 37.245,371.899 C 37.231,371.904 37.219,371.913 37.207,371.923 C 37.195,371.932 37.188,371.946 37.18,371.959 C 37.174,371.974 37.17,371.99 37.17,372.007 L 37.241,372.015 C 37.241,372.004 37.243,371.994 37.246,371.988 C 37.252,371.98 37.258,371.974 37.265,371.97 C 37.274,371.966 37.281,371.965 37.293,371.965 L 37.414,371.978 C 37.423,371.979 37.433,371.982 37.441,371.988 C 37.447,371.994 37.454,372 37.459,372.009 C 37.464,372.02 37.466,372.027 37.466,372.039 C 37.466,372.049 37.464,372.058 37.459,372.065 C 37.454,372.073 37.447,372.078 37.441,372.082 C 37.432,372.086 37.423,372.088 37.414,372.086 L 37.274,372.073 L 37.254,372.073 C 37.246,372.073 37.241,372.075 37.235,372.076 C 37.222,372.08 37.213,372.086 37.202,372.094 C 37.198,372.099 37.193,372.104 37.188,372.111 C 37.183,372.118 37.178,372.129 37.175,372.139 C 37.172,372.149 37.17,372.159 37.17,372.17 L 37.17,372.173 C 37.17,372.187 37.174,372.201 37.178,372.214 C 37.184,372.228 37.191,372.24 37.201,372.252 C 37.212,372.263 37.221,372.272 37.233,372.278 C 37.246,372.285 37.259,372.289 37.274,372.29 L 37.43,372.306 C 37.444,372.308 37.457,372.306 37.47,372.303 C 37.483,372.298 37.494,372.291 37.503,372.284 C 37.513,372.274 37.521,372.264 37.526,372.252 C 37.532,372.24 37.534,372.225 37.534,372.21 L 37.534,372.208 L 37.465,372.2 L 37.465,372.201 C 37.465,372.208 37.464,372.214 37.46,372.22 C 37.457,372.225 37.453,372.229 37.447,372.234 C 37.443,372.235 37.437,372.237 37.43,372.235 L 37.274,372.219 C 37.267,372.218 37.261,372.215 37.256,372.212 C 37.252,372.208 37.246,372.203 37.243,372.197 C 37.241,372.192 37.24,372.185 37.24,372.179 L 37.24,372.176 C 37.24,372.169 37.241,372.165 37.243,372.158 C 37.246,372.153 37.252,372.15 37.256,372.147 C 37.261,372.144 37.267,372.143 37.274,372.143 L 37.414,372.158 L 37.439,372.158 C 37.446,372.156 37.455,372.156 37.462,372.153 C 37.478,372.147 37.491,372.139 37.503,372.128 C 37.503,372.127 37.504,372.126 37.505,372.125 C 37.505,372.124 37.505,372.124 37.507,372.123 C 37.516,372.112 37.523,372.101 37.527,372.088 C 37.533,372.075 37.535,372.06 37.535,372.046 C 37.535,372.027 37.532,372.012 37.525,371.994 C 37.52,371.98 37.511,371.965 37.499,371.953 C 37.487,371.941 37.475,371.93 37.46,371.922 C 37.446,371.915 37.43,371.909 37.414,371.907 L 37.293,371.893 C 37.276,371.891 37.259,371.893 37.245,371.899 Z M 37.591,371.926 L 37.589,372.323 L 37.833,372.35 C 37.847,372.351 37.86,372.35 37.872,372.344 C 37.885,372.34 37.896,372.334 37.907,372.324 L 37.907,372.324 C 37.916,372.315 37.923,372.304 37.929,372.291 C 37.933,372.279 37.936,372.266 37.936,372.252 C 37.936,372.237 37.935,372.222 37.929,372.209 C 37.924,372.195 37.917,372.184 37.909,372.173 C 37.899,372.163 37.89,372.154 37.877,372.148 C 37.868,372.142 37.858,372.139 37.847,372.137 C 37.846,372.137 37.845,372.136 37.844,372.136 L 37.844,372.135 L 37.659,372.115 L 37.659,371.933 L 37.591,371.926 Z M 37.993,371.967 L 37.992,372.365 L 38.059,372.372 L 38.06,371.974 L 37.993,371.967 Z M 38.117,371.978 L 38.116,372.377 L 38.358,372.401 C 38.373,372.404 38.386,372.401 38.4,372.398 C 38.412,372.395 38.421,372.387 38.432,372.379 C 38.441,372.369 38.448,372.359 38.453,372.347 C 38.459,372.334 38.461,372.32 38.462,372.305 C 38.461,372.291 38.459,372.277 38.454,372.265 C 38.449,372.251 38.442,372.239 38.434,372.227 C 38.425,372.218 38.414,372.208 38.402,372.201 C 38.391,372.195 38.381,372.192 38.372,372.189 L 38.427,372.082 L 38.462,372.015 L 38.385,372.006 L 38.349,372.074 L 38.314,372.144 L 38.311,372.148 C 38.305,372.157 38.298,372.165 38.287,372.169 C 38.277,372.175 38.265,372.177 38.253,372.176 L 38.185,372.169 L 38.185,371.985 L 38.117,371.978 Z M 38.496,372.02 L 38.531,372.093 L 38.691,372.437 L 38.854,372.128 L 38.89,372.06 L 38.812,372.052 L 38.777,372.118 L 38.691,372.281 L 38.607,372.101 L 38.573,372.027 L 38.496,372.02 Z M 36.396,372.053 L 36.571,372.073 C 36.574,372.073 36.576,372.074 36.578,372.075 C 36.581,372.075 36.582,372.076 36.584,372.077 C 36.591,372.081 36.596,372.086 36.601,372.092 C 36.604,372.099 36.606,372.105 36.606,372.114 C 36.606,372.118 36.605,372.126 36.602,372.129 C 36.6,372.134 36.597,372.137 36.595,372.139 C 36.592,372.141 36.589,372.142 36.587,372.143 C 36.583,372.144 36.581,372.145 36.579,372.146 L 36.57,372.146 L 36.396,372.128 L 36.396,372.053 Z M 39.08,372.079 L 39.08,372.408 L 38.922,372.391 L 38.921,372.462 L 39.306,372.502 L 39.306,372.431 L 39.148,372.414 L 39.149,372.086 L 39.08,372.079 Z M 39.466,372.136 C 39.442,372.143 39.423,372.156 39.405,372.171 C 39.389,372.188 39.374,372.207 39.363,372.232 C 39.354,372.253 39.348,372.279 39.348,372.306 C 39.348,372.334 39.353,372.361 39.363,372.385 C 39.373,372.41 39.388,372.433 39.405,372.453 C 39.423,372.473 39.442,372.49 39.466,372.503 C 39.49,372.515 39.515,372.524 39.541,372.525 C 39.569,372.528 39.592,372.525 39.616,372.518 C 39.639,372.511 39.66,372.498 39.678,372.481 C 39.695,372.466 39.708,372.446 39.718,372.422 C 39.729,372.399 39.733,372.374 39.734,372.347 C 39.733,372.318 39.729,372.291 39.718,372.267 C 39.708,372.242 39.695,372.22 39.678,372.199 C 39.661,372.181 39.64,372.164 39.616,372.151 C 39.593,372.139 39.569,372.13 39.542,372.128 L 39.504,372.128 C 39.49,372.129 39.479,372.132 39.466,372.136 Z M 39.776,372.151 L 39.775,372.548 L 40.018,372.575 C 40.031,372.575 40.045,372.574 40.058,372.569 C 40.071,372.566 40.082,372.558 40.092,372.551 C 40.101,372.541 40.108,372.53 40.113,372.518 C 40.118,372.506 40.121,372.492 40.121,372.478 C 40.121,372.464 40.118,372.449 40.114,372.436 C 40.109,372.422 40.103,372.411 40.092,372.4 C 40.084,372.389 40.073,372.381 40.062,372.374 C 40.052,372.368 40.041,372.364 40.03,372.363 L 40.087,372.253 L 40.121,372.186 L 40.044,372.179 L 40.01,372.247 L 39.972,372.317 L 39.971,372.319 C 39.965,372.33 39.957,372.337 39.947,372.343 C 39.937,372.348 39.924,372.35 39.912,372.348 L 39.844,372.342 L 39.844,372.158 L 39.776,372.151 Z M 37.659,372.186 L 37.833,372.204 C 37.835,372.205 37.839,372.205 37.842,372.207 C 37.844,372.207 37.846,372.207 37.848,372.208 L 37.848,372.209 C 37.854,372.214 37.859,372.218 37.863,372.225 C 37.867,372.232 37.868,372.239 37.869,372.247 C 37.868,372.252 37.868,372.258 37.866,372.261 C 37.862,372.266 37.86,372.268 37.859,372.271 C 37.856,372.272 37.853,372.274 37.849,372.276 C 37.845,372.278 37.839,372.278 37.833,372.278 L 37.659,372.26 L 37.659,372.186 Z M 39.542,372.198 C 39.559,372.2 39.575,372.205 39.589,372.214 C 39.604,372.221 39.617,372.234 39.629,372.247 C 39.641,372.259 39.649,372.273 39.655,372.289 C 39.663,372.304 39.665,372.322 39.665,372.339 C 39.665,372.357 39.663,372.374 39.655,372.388 C 39.649,372.404 39.64,372.416 39.628,372.427 C 39.617,372.437 39.604,372.445 39.589,372.449 C 39.575,372.455 39.558,372.456 39.541,372.455 C 39.524,372.453 39.508,372.446 39.492,372.439 C 39.479,372.432 39.465,372.42 39.453,372.408 C 39.441,372.395 39.433,372.381 39.427,372.365 C 39.421,372.349 39.418,372.331 39.417,372.315 C 39.418,372.296 39.421,372.279 39.427,372.265 C 39.433,372.25 39.441,372.239 39.453,372.227 C 39.465,372.217 39.479,372.208 39.492,372.204 C 39.508,372.198 39.524,372.196 39.542,372.198 Z M 38.185,372.24 L 38.358,372.259 C 38.361,372.259 38.362,372.259 38.366,372.261 C 38.368,372.261 38.37,372.262 38.373,372.263 C 38.379,372.266 38.384,372.272 38.387,372.278 C 38.391,372.285 38.394,372.291 38.394,372.298 C 38.394,372.304 38.391,372.311 38.39,372.315 C 38.387,372.317 38.385,372.321 38.383,372.323 C 38.381,372.326 38.377,372.327 38.374,372.329 C 38.369,372.33 38.363,372.33 38.358,372.33 L 38.185,372.313 L 38.185,372.24 Z M 39.844,372.411 L 40.018,372.431 C 40.021,372.431 40.023,372.432 40.025,372.432 C 40.028,372.433 40.029,372.433 40.031,372.434 C 40.038,372.439 40.043,372.443 40.048,372.449 C 40.052,372.456 40.054,372.463 40.054,372.471 C 40.053,372.477 40.052,372.481 40.05,372.486 C 40.048,372.49 40.044,372.492 40.041,372.495 C 40.04,372.498 40.036,372.499 40.033,372.501 C 40.029,372.504 40.024,372.504 40.018,372.504 L 39.844,372.486 L 39.844,372.411 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.251,384.688 L 27.078,384.85 L 44.486,385.984 L 44.576,385.947 C 44.605,385.936 44.634,385.909 44.634,385.862 L 44.634,385.82 L 27.251,384.688 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.078,384.85 L 27.077,361.398 L 27.165,361.315 L 27.251,361.327 L 27.251,384.688 L 27.078,384.85 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--FUCHSIA, .KN95_NR_small_individuals--FUCHSIA {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='206.001 -475.375 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.847' gradientTransform='translate(218.643 447.904)'%3E%3Cstop offset='0' stop-color='%23c21060'/%3E%3Cstop offset='1' stop-color='%23ff1581'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.92' gradientTransform='translate(215.104 448.519)'%3E%3Cstop offset='0' stop-color='%239f0d4f'/%3E%3Cstop offset='1' stop-color='%23d8126b'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.1' gradientTransform='translate(218.637 467.888)'%3E%3Cstop offset='0' stop-color='%23c0105f'/%3E%3Cstop offset='1' stop-color='%23de126e'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.229' gradientTransform='translate(213.963 469.943)'%3E%3Cstop offset='0' stop-color='%239c0d4d'/%3E%3Cstop offset='1' stop-color='%23c0105f'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.01' y2='-0.163' gradientTransform='translate(226.957 469.758) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c61062'/%3E%3Cstop offset='1' stop-color='%23e41371'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(215.811 457.647) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bd105e'/%3E%3Cstop offset='1' stop-color='%23d8126b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(222.73 458.646) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 215.73,445.49 L 215.73,468.976 L 233.178,470.097 C 233.19,470.082 233.198,470.063 233.198,470.039 L 233.198,447.858 L 215.73,445.49 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 215.73,445.49 L 212.266,448.853 L 212.264,470.875 L 215.73,468.976 L 215.73,445.49 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 215.73,468.976 L 212.264,470.875 L 229.196,471.803 L 233.14,470.123 C 233.154,470.117 233.167,470.109 233.178,470.097 L 215.73,468.976 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 215.643,468.709 L 212.263,470.598 L 212.263,470.875 L 215.643,469.024 L 215.643,468.709 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 222.772,451.092 L 222.772,451.502 L 222.843,451.51 L 222.843,451.099 L 222.772,451.092 Z M 222.902,451.106 L 222.902,451.513 L 222.973,451.467 L 223.235,451.291 L 223.235,451.551 L 223.307,451.561 L 223.307,451.151 L 223.235,451.198 L 222.973,451.374 L 222.973,451.113 L 222.902,451.106 Z M 223.364,451.156 L 223.364,451.567 L 223.566,451.589 C 223.594,451.591 223.621,451.589 223.644,451.581 C 223.67,451.573 223.69,451.561 223.709,451.543 C 223.728,451.526 223.742,451.507 223.752,451.484 C 223.763,451.461 223.769,451.433 223.769,451.405 C 223.769,451.38 223.764,451.356 223.756,451.332 C 223.747,451.309 223.735,451.287 223.72,451.269 C 223.718,451.266 223.716,451.263 223.715,451.261 C 223.714,451.259 223.711,451.256 223.708,451.255 C 223.69,451.233 223.67,451.216 223.644,451.203 C 223.621,451.19 223.595,451.181 223.566,451.178 L 223.364,451.156 Z M 223.827,451.206 L 223.827,451.617 L 223.9,451.623 L 223.9,451.215 L 223.827,451.206 Z M 223.437,451.236 L 223.566,451.251 C 223.584,451.254 223.6,451.259 223.617,451.268 C 223.632,451.275 223.646,451.287 223.657,451.3 C 223.67,451.313 223.679,451.327 223.686,451.345 C 223.693,451.362 223.696,451.379 223.696,451.397 C 223.696,451.416 223.693,451.431 223.686,451.446 C 223.679,451.463 223.67,451.476 223.657,451.486 C 223.646,451.497 223.632,451.505 223.617,451.51 C 223.6,451.515 223.584,451.517 223.566,451.514 L 223.437,451.5 L 223.437,451.236 Z M 224.141,451.242 L 223.97,451.559 L 223.933,451.629 L 224.015,451.636 L 224.051,451.568 L 224.141,451.403 L 224.229,451.588 L 224.265,451.664 L 224.347,451.674 L 224.31,451.596 L 224.141,451.242 Z M 224.382,451.268 L 224.382,451.677 L 224.455,451.685 L 224.455,451.275 L 224.382,451.268 Z M 224.513,451.281 L 224.513,451.691 L 224.715,451.713 C 224.742,451.715 224.769,451.713 224.794,451.706 C 224.818,451.699 224.838,451.686 224.857,451.668 C 224.877,451.652 224.891,451.631 224.901,451.609 C 224.912,451.585 224.916,451.558 224.916,451.53 C 224.916,451.505 224.913,451.481 224.904,451.458 C 224.896,451.433 224.884,451.412 224.869,451.393 C 224.867,451.39 224.865,451.388 224.864,451.386 C 224.862,451.384 224.859,451.381 224.857,451.379 C 224.838,451.358 224.818,451.341 224.794,451.327 C 224.769,451.314 224.742,451.306 224.715,451.303 L 224.513,451.281 Z M 225.1,451.362 C 225.075,451.369 225.052,451.381 225.034,451.397 C 225.017,451.415 225.002,451.435 224.993,451.459 C 224.981,451.482 224.975,451.509 224.975,451.536 L 224.975,451.741 L 225.047,451.749 L 225.047,451.544 C 225.047,451.525 225.051,451.51 225.058,451.494 C 225.063,451.48 225.074,451.467 225.087,451.456 C 225.098,451.444 225.112,451.436 225.128,451.431 C 225.142,451.427 225.16,451.423 225.178,451.427 C 225.196,451.429 225.213,451.433 225.228,451.442 C 225.245,451.451 225.257,451.462 225.27,451.476 C 225.282,451.488 225.29,451.504 225.297,451.52 C 225.304,451.537 225.309,451.554 225.309,451.573 L 225.309,451.777 L 225.38,451.786 L 225.38,451.581 C 225.38,451.551 225.375,451.525 225.364,451.5 C 225.354,451.473 225.34,451.449 225.321,451.429 C 225.303,451.409 225.281,451.391 225.256,451.378 C 225.232,451.365 225.206,451.357 225.178,451.353 C 225.149,451.351 225.124,451.353 225.1,451.362 Z M 224.584,451.362 L 224.715,451.377 C 224.732,451.378 224.748,451.384 224.766,451.391 C 224.781,451.4 224.795,451.41 224.806,451.423 C 224.819,451.437 224.827,451.454 224.835,451.47 C 224.84,451.486 224.844,451.504 224.844,451.521 C 224.844,451.539 224.84,451.557 224.835,451.572 C 224.827,451.588 224.819,451.601 224.806,451.611 C 224.795,451.622 224.781,451.629 224.766,451.635 C 224.748,451.641 224.732,451.642 224.715,451.639 L 224.584,451.625 L 224.584,451.362 Z M 225.416,451.379 L 225.452,451.457 L 225.621,451.811 L 225.793,451.494 L 225.828,451.423 L 225.748,451.416 L 225.711,451.485 L 225.621,451.65 L 225.534,451.465 L 225.496,451.388 L 225.416,451.379 Z M 225.963,451.442 C 225.952,451.443 225.943,451.445 225.935,451.448 C 225.923,451.455 225.911,451.462 225.901,451.472 C 225.891,451.481 225.884,451.49 225.877,451.502 C 225.872,451.511 225.871,451.52 225.867,451.528 C 225.865,451.538 225.865,451.547 225.865,451.558 L 225.865,451.837 L 225.935,451.845 L 225.935,451.559 C 225.936,451.551 225.94,451.543 225.944,451.537 C 225.948,451.53 225.954,451.525 225.961,451.521 C 225.969,451.517 225.978,451.515 225.986,451.514 L 226.198,451.537 L 226.198,451.465 L 225.993,451.442 C 225.981,451.441 225.972,451.442 225.963,451.442 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 220.569,457.82 L 220.566,459.873 L 220.906,459.907 L 220.907,458.859 L 221.186,459.162 L 221.437,459.437 L 221.965,460.014 L 222.469,460.066 L 221.639,459.157 L 222.463,458.013 L 222.045,457.972 L 221.388,458.884 L 220.907,458.362 L 220.907,457.855 L 220.569,457.82 Z M 222.636,458.031 L 222.81,458.415 L 223.602,460.182 L 224.399,458.578 L 224.573,458.228 L 224.194,458.19 L 224.019,458.538 L 223.604,459.375 L 223.188,458.453 L 223.016,458.072 L 222.636,458.031 Z M 224.744,458.246 L 224.747,458.246 L 225.007,458.638 L 225.472,459.342 L 225.687,459.663 L 225.946,460.055 L 224.739,459.93 L 224.739,460.297 L 226.207,460.447 L 226.633,460.489 L 226.37,460.097 L 225.899,459.384 L 225.685,459.063 L 225.43,458.682 L 226.643,458.805 L 226.644,458.438 L 225.174,458.29 L 225.172,458.29 L 224.744,458.246 Z M 227.22,458.541 C 227.158,458.564 227.104,458.598 227.058,458.644 C 227.01,458.689 226.975,458.744 226.948,458.808 C 226.922,458.872 226.909,458.943 226.909,459.02 L 226.907,459.964 C 226.907,460.04 226.92,460.113 226.946,460.183 C 226.973,460.252 227.008,460.314 227.056,460.37 C 227.102,460.425 227.156,460.471 227.218,460.505 C 227.279,460.54 227.346,460.562 227.417,460.569 L 228.802,460.709 L 228.802,460.344 L 227.417,460.203 C 227.383,460.199 227.355,460.189 227.33,460.169 C 227.303,460.149 227.283,460.124 227.267,460.096 C 227.252,460.065 227.245,460.032 227.245,459.998 L 227.245,459.807 L 228.464,459.931 L 228.465,459.565 L 227.245,459.441 L 227.245,459.053 C 227.245,459.019 227.253,458.989 227.268,458.963 C 227.285,458.936 227.305,458.914 227.33,458.901 C 227.357,458.886 227.385,458.882 227.419,458.884 L 228.804,459.025 L 228.805,458.659 L 227.419,458.517 C 227.349,458.511 227.282,458.518 227.22,458.541 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 222.572,456.729 L 222.572,457.167 C 222.572,457.19 222.576,457.211 222.584,457.232 C 222.592,457.252 222.604,457.271 222.618,457.287 C 222.632,457.304 222.649,457.316 222.669,457.327 C 222.688,457.336 222.709,457.343 222.732,457.346 L 223.165,457.392 L 223.165,457.285 L 222.732,457.239 C 222.721,457.238 222.713,457.234 222.704,457.229 C 222.696,457.223 222.69,457.216 222.685,457.207 C 222.68,457.198 222.678,457.189 222.678,457.179 L 222.678,457.123 L 223.058,457.162 L 223.058,457.056 L 222.677,457.015 L 222.678,456.741 L 222.572,456.729 Z M 223.25,456.801 L 223.25,457.239 C 223.25,457.261 223.254,457.283 223.262,457.304 C 223.269,457.323 223.281,457.342 223.295,457.358 C 223.309,457.374 223.328,457.387 223.347,457.398 C 223.366,457.409 223.385,457.415 223.409,457.418 L 223.841,457.463 L 223.842,457.356 L 223.409,457.311 C 223.399,457.31 223.39,457.306 223.382,457.301 C 223.373,457.294 223.367,457.287 223.362,457.278 C 223.357,457.27 223.356,457.26 223.356,457.25 L 223.356,457.195 L 223.736,457.234 L 223.736,457.129 L 223.355,457.088 L 223.356,456.813 L 223.25,456.801 Z M 223.928,456.873 L 223.927,457.473 L 224.3,457.512 C 224.322,457.514 224.343,457.512 224.361,457.505 C 224.38,457.5 224.398,457.49 224.412,457.477 L 224.412,457.475 C 224.428,457.462 224.439,457.446 224.448,457.427 C 224.456,457.409 224.46,457.388 224.46,457.367 C 224.46,457.344 224.456,457.323 224.449,457.304 C 224.44,457.283 224.43,457.264 224.415,457.249 C 224.401,457.233 224.386,457.22 224.367,457.21 C 224.353,457.2 224.338,457.195 224.322,457.192 C 224.32,457.192 224.319,457.192 224.317,457.192 L 224.317,457.19 L 224.032,457.159 L 224.033,456.885 L 223.928,456.873 Z M 224.544,456.935 L 224.544,457.114 C 224.544,457.126 224.545,457.137 224.547,457.148 C 224.549,457.161 224.554,457.173 224.557,457.183 C 224.567,457.207 224.579,457.225 224.593,457.242 C 224.609,457.26 224.625,457.274 224.647,457.286 C 224.667,457.297 224.689,457.304 224.712,457.308 L 224.965,457.336 L 224.968,457.336 C 224.98,457.338 224.992,457.343 225,457.349 C 225.01,457.357 225.017,457.367 225.022,457.378 C 225.028,457.387 225.03,457.4 225.03,457.412 C 225.03,457.425 225.027,457.436 225.021,457.446 C 225.015,457.456 225.007,457.463 224.997,457.469 C 224.987,457.474 224.974,457.477 224.961,457.475 L 224.545,457.432 L 224.545,457.538 L 224.96,457.581 C 224.987,457.584 225.01,457.581 225.03,457.574 C 225.051,457.568 225.069,457.557 225.086,457.543 C 225.102,457.53 225.115,457.511 225.122,457.49 C 225.131,457.471 225.135,457.448 225.136,457.423 C 225.136,457.412 225.135,457.398 225.132,457.387 C 225.13,457.374 225.127,457.363 225.122,457.353 C 225.118,457.342 225.113,457.332 225.107,457.323 C 225.102,457.314 225.095,457.304 225.087,457.297 C 225.071,457.277 225.053,457.263 225.033,457.251 C 225.012,457.239 224.993,457.232 224.967,457.229 L 224.964,457.229 C 224.964,457.229 224.962,457.229 224.961,457.228 L 224.712,457.201 C 224.701,457.2 224.69,457.195 224.681,457.188 C 224.67,457.18 224.664,457.17 224.658,457.159 C 224.653,457.148 224.651,457.138 224.651,457.126 L 224.651,457.056 L 225.134,457.106 L 225.135,456.999 L 224.716,456.954 L 224.544,456.935 Z M 225.634,457.053 L 225.632,457.65 L 225.738,457.58 L 226.12,457.323 L 226.12,457.703 L 226.226,457.714 L 226.226,457.116 L 226.12,457.188 L 225.738,457.444 L 225.74,457.064 L 225.634,457.053 Z M 226.31,457.125 L 226.31,457.724 L 226.684,457.764 C 226.705,457.768 226.726,457.765 226.745,457.758 C 226.766,457.751 226.782,457.742 226.796,457.728 C 226.81,457.715 226.822,457.7 226.831,457.68 C 226.838,457.661 226.842,457.64 226.843,457.619 C 226.843,457.596 226.838,457.576 226.831,457.555 C 226.823,457.536 226.812,457.517 226.798,457.501 C 226.785,457.485 226.768,457.472 226.751,457.461 C 226.735,457.452 226.72,457.446 226.704,457.443 L 226.79,457.282 L 226.844,457.181 L 226.725,457.168 L 226.671,457.27 L 226.613,457.375 L 226.611,457.38 C 226.602,457.395 226.59,457.407 226.574,457.413 C 226.558,457.422 226.541,457.424 226.521,457.422 L 226.417,457.412 L 226.417,457.135 L 226.31,457.125 Z M 224.032,457.264 L 224.301,457.293 C 224.304,457.293 224.308,457.295 224.313,457.297 C 224.316,457.298 224.32,457.299 224.323,457.303 L 224.323,457.303 C 224.333,457.308 224.341,457.315 224.346,457.325 C 224.353,457.334 224.354,457.344 224.354,457.355 C 224.354,457.365 224.353,457.373 224.349,457.379 C 224.346,457.385 224.343,457.39 224.34,457.393 C 224.335,457.395 224.33,457.398 224.324,457.401 C 224.319,457.404 224.31,457.405 224.301,457.404 L 224.032,457.375 L 224.032,457.264 Z M 226.417,457.517 L 226.684,457.546 C 226.687,457.547 226.691,457.548 226.696,457.549 C 226.699,457.55 226.702,457.552 226.705,457.554 C 226.716,457.56 226.723,457.568 226.729,457.576 C 226.735,457.586 226.739,457.596 226.739,457.607 C 226.738,457.617 226.735,457.625 226.731,457.633 C 226.728,457.639 226.725,457.642 226.722,457.646 C 226.718,457.648 226.713,457.652 226.707,457.654 C 226.7,457.657 226.694,457.658 226.684,457.657 L 226.416,457.629 L 226.417,457.517 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 220.686,455.535 L 220.685,455.932 L 220.928,455.957 C 220.942,455.958 220.957,455.957 220.969,455.953 C 220.98,455.947 220.992,455.942 221.001,455.933 L 221.002,455.932 C 221.012,455.923 221.019,455.913 221.024,455.901 C 221.03,455.889 221.032,455.875 221.032,455.859 C 221.032,455.844 221.03,455.831 221.024,455.818 C 221.02,455.805 221.013,455.793 221.004,455.782 C 220.994,455.771 220.983,455.762 220.971,455.756 C 220.962,455.749 220.952,455.745 220.942,455.744 C 220.941,455.744 220.939,455.743 220.939,455.743 L 220.939,455.743 L 220.755,455.724 L 220.755,455.542 L 220.686,455.535 Z M 221.087,455.574 L 221.086,455.971 L 221.329,455.999 C 221.346,455.999 221.358,455.999 221.37,455.994 C 221.383,455.989 221.393,455.983 221.403,455.974 C 221.412,455.964 221.418,455.954 221.426,455.942 C 221.43,455.93 221.432,455.916 221.433,455.903 C 221.432,455.888 221.43,455.873 221.427,455.859 C 221.419,455.846 221.413,455.835 221.404,455.824 C 221.394,455.812 221.385,455.804 221.373,455.798 C 221.364,455.792 221.354,455.787 221.344,455.786 L 221.397,455.677 L 221.433,455.61 L 221.357,455.602 L 221.32,455.669 L 221.285,455.741 L 221.283,455.743 C 221.277,455.755 221.268,455.761 221.258,455.766 C 221.248,455.771 221.237,455.773 221.225,455.771 L 221.155,455.764 L 221.155,455.581 L 221.087,455.574 Z M 221.592,455.644 C 221.571,455.651 221.55,455.664 221.532,455.679 C 221.513,455.696 221.5,455.716 221.491,455.737 C 221.481,455.762 221.476,455.787 221.475,455.815 C 221.476,455.842 221.481,455.869 221.49,455.893 C 221.5,455.918 221.513,455.941 221.532,455.96 C 221.549,455.981 221.571,455.999 221.592,456.01 C 221.616,456.023 221.641,456.032 221.669,456.034 C 221.694,456.036 221.72,456.034 221.744,456.025 C 221.765,456.018 221.787,456.007 221.804,455.99 C 221.822,455.974 221.836,455.954 221.845,455.93 C 221.855,455.908 221.861,455.882 221.861,455.854 C 221.861,455.826 221.855,455.8 221.845,455.775 C 221.836,455.75 221.823,455.728 221.804,455.709 C 221.788,455.688 221.766,455.671 221.744,455.659 C 221.72,455.646 221.694,455.637 221.669,455.635 L 221.629,455.636 C 221.617,455.637 221.605,455.639 221.592,455.644 Z M 222.06,455.676 L 222.06,456.003 L 221.902,455.987 L 221.902,456.057 L 222.286,456.098 L 222.286,456.026 L 222.13,456.01 L 222.131,455.683 L 222.06,455.676 Z M 221.669,455.707 C 221.685,455.709 221.701,455.713 221.716,455.722 C 221.733,455.73 221.745,455.741 221.755,455.754 C 221.766,455.766 221.777,455.78 221.783,455.798 C 221.789,455.812 221.793,455.83 221.793,455.847 C 221.793,455.865 221.789,455.881 221.783,455.896 C 221.777,455.91 221.766,455.923 221.755,455.934 C 221.745,455.944 221.732,455.953 221.716,455.957 C 221.701,455.961 221.685,455.964 221.669,455.961 C 221.651,455.96 221.635,455.956 221.619,455.947 C 221.605,455.94 221.591,455.928 221.58,455.916 C 221.57,455.903 221.561,455.89 221.554,455.872 C 221.548,455.856 221.545,455.839 221.545,455.823 C 221.545,455.804 221.548,455.787 221.554,455.773 C 221.561,455.759 221.571,455.745 221.581,455.734 C 221.591,455.724 221.605,455.716 221.619,455.711 C 221.635,455.707 221.652,455.705 221.669,455.707 Z M 222.406,455.72 C 222.394,455.724 222.384,455.731 222.373,455.741 C 222.364,455.748 222.357,455.76 222.352,455.772 C 222.346,455.785 222.344,455.799 222.344,455.812 L 222.344,455.998 C 222.344,456.011 222.346,456.025 222.351,456.038 C 222.357,456.052 222.364,456.064 222.373,456.075 C 222.383,456.087 222.393,456.095 222.406,456.102 C 222.418,456.109 222.431,456.114 222.446,456.115 L 222.727,456.143 L 222.727,456.073 L 222.446,456.043 C 222.441,456.042 222.433,456.04 222.428,456.036 C 222.423,456.033 222.418,456.027 222.416,456.023 C 222.412,456.016 222.41,456.01 222.41,456.003 L 222.41,455.966 L 222.659,455.993 L 222.659,455.921 L 222.41,455.895 L 222.412,455.821 C 222.412,455.812 222.412,455.808 222.417,455.802 C 222.419,455.798 222.424,455.793 222.429,455.791 C 222.436,455.787 222.441,455.786 222.446,455.787 L 222.729,455.817 L 222.729,455.745 L 222.447,455.716 C 222.432,455.715 222.418,455.716 222.406,455.72 Z M 222.895,455.778 C 222.87,455.786 222.851,455.799 222.834,455.814 C 222.816,455.831 222.802,455.85 222.792,455.874 C 222.783,455.897 222.777,455.922 222.777,455.949 C 222.777,455.977 222.783,456.004 222.792,456.028 C 222.801,456.052 222.816,456.075 222.834,456.097 C 222.851,456.116 222.87,456.133 222.895,456.146 C 222.918,456.158 222.943,456.166 222.969,456.168 L 223.161,456.188 L 223.161,456.117 L 222.969,456.098 C 222.953,456.096 222.936,456.09 222.921,456.083 C 222.907,456.075 222.893,456.064 222.882,456.051 C 222.87,456.038 222.862,456.025 222.855,456.008 C 222.849,455.992 222.845,455.974 222.845,455.957 C 222.845,455.94 222.849,455.922 222.856,455.908 C 222.862,455.893 222.87,455.88 222.882,455.871 C 222.894,455.859 222.908,455.851 222.922,455.846 C 222.936,455.841 222.953,455.839 222.97,455.841 L 223.161,455.861 L 223.161,455.791 L 222.97,455.771 L 222.932,455.771 C 222.919,455.771 222.907,455.774 222.895,455.778 Z M 220.755,455.795 L 220.929,455.812 C 220.932,455.812 220.935,455.812 220.937,455.813 C 220.939,455.814 220.941,455.816 220.944,455.818 C 220.949,455.822 220.955,455.825 220.959,455.832 C 220.962,455.838 220.964,455.844 220.964,455.851 C 220.964,455.858 220.962,455.865 220.96,455.869 C 220.958,455.873 220.956,455.877 220.954,455.877 C 220.951,455.88 220.948,455.882 220.945,455.883 C 220.939,455.885 220.936,455.886 220.929,455.885 L 220.755,455.868 L 220.755,455.795 Z M 223.375,455.812 L 223.375,456.14 L 223.218,456.123 L 223.218,456.195 L 223.602,456.235 L 223.602,456.162 L 223.444,456.146 L 223.444,455.82 L 223.375,455.812 Z M 221.155,455.835 L 221.329,455.852 C 221.333,455.853 221.334,455.854 221.338,455.855 C 221.34,455.855 221.343,455.857 221.346,455.857 C 221.351,455.861 221.356,455.867 221.36,455.874 C 221.364,455.879 221.365,455.886 221.365,455.894 C 221.365,455.901 221.364,455.905 221.362,455.909 C 221.36,455.914 221.357,455.917 221.354,455.919 C 221.352,455.921 221.349,455.922 221.346,455.924 C 221.342,455.927 221.336,455.927 221.329,455.927 L 221.155,455.909 L 221.155,455.835 Z M 223.657,455.841 L 223.657,456.239 L 223.727,456.247 L 223.727,455.849 L 223.657,455.841 Z M 223.956,455.873 L 223.794,456.183 L 223.759,456.25 L 223.836,456.258 L 223.871,456.191 L 223.955,456.029 L 224.039,456.209 L 224.075,456.283 L 224.152,456.291 L 224.116,456.217 L 223.956,455.873 Z M 224.25,455.911 C 224.238,455.916 224.226,455.922 224.218,455.931 C 224.207,455.94 224.198,455.95 224.195,455.962 C 224.189,455.975 224.185,455.989 224.185,456.004 L 224.185,456.187 C 224.185,456.202 224.188,456.216 224.194,456.229 C 224.198,456.243 224.207,456.255 224.217,456.266 C 224.225,456.276 224.237,456.286 224.249,456.292 C 224.261,456.3 224.276,456.304 224.289,456.306 L 224.57,456.335 L 224.57,456.263 L 224.289,456.235 C 224.282,456.234 224.276,456.232 224.27,456.227 C 224.266,456.224 224.263,456.219 224.258,456.213 C 224.256,456.208 224.254,456.201 224.254,456.195 L 224.254,456.157 L 224.502,456.183 L 224.502,456.113 L 224.255,456.088 L 224.255,456.011 C 224.255,456.004 224.257,455.999 224.259,455.994 C 224.263,455.989 224.266,455.984 224.272,455.982 C 224.277,455.979 224.282,455.978 224.29,455.978 L 224.571,456.008 L 224.571,455.935 L 224.29,455.908 C 224.276,455.906 224.262,455.908 224.25,455.911 Z M 224.893,455.968 L 224.893,456.367 L 225.135,456.393 C 225.15,456.393 225.163,456.393 225.175,456.388 C 225.188,456.384 225.2,456.377 225.209,456.369 C 225.219,456.36 225.225,456.348 225.232,456.336 C 225.236,456.324 225.238,456.31 225.238,456.296 C 225.238,456.281 225.237,456.266 225.232,456.253 C 225.227,456.24 225.22,456.229 225.211,456.219 C 225.202,456.209 225.193,456.2 225.179,456.192 C 225.17,456.186 225.159,456.182 225.149,456.18 L 225.206,456.071 L 225.239,456.004 L 225.161,455.998 L 225.128,456.064 L 225.092,456.135 L 225.09,456.137 C 225.084,456.148 225.074,456.155 225.063,456.16 C 225.054,456.165 225.043,456.167 225.031,456.167 L 224.96,456.159 L 224.961,455.976 L 224.893,455.968 Z M 225.359,456.026 C 225.347,456.031 225.335,456.038 225.327,456.046 C 225.317,456.055 225.31,456.065 225.304,456.077 C 225.298,456.09 225.296,456.104 225.296,456.119 L 225.296,456.302 C 225.296,456.317 225.298,456.332 225.304,456.345 C 225.309,456.358 225.317,456.371 225.327,456.382 C 225.335,456.393 225.346,456.4 225.359,456.408 C 225.371,456.415 225.385,456.42 225.398,456.42 L 225.68,456.449 L 225.68,456.379 L 225.398,456.349 C 225.393,456.348 225.386,456.347 225.38,456.342 C 225.377,456.34 225.373,456.334 225.369,456.329 C 225.366,456.322 225.364,456.316 225.364,456.31 L 225.364,456.272 L 225.612,456.297 L 225.612,456.226 L 225.364,456.201 L 225.364,456.127 C 225.364,456.12 225.366,456.115 225.369,456.109 C 225.373,456.103 225.377,456.1 225.382,456.097 C 225.386,456.094 225.393,456.094 225.398,456.094 L 225.681,456.122 L 225.681,456.051 L 225.399,456.023 C 225.385,456.022 225.372,456.023 225.359,456.026 Z M 225.81,456.075 C 225.796,456.079 225.783,456.089 225.772,456.098 C 225.761,456.108 225.753,456.122 225.745,456.135 C 225.74,456.149 225.735,456.166 225.735,456.183 L 225.806,456.189 C 225.806,456.18 225.807,456.17 225.812,456.162 C 225.817,456.155 225.823,456.148 225.831,456.146 C 225.838,456.141 225.846,456.141 225.858,456.141 L 225.979,456.153 C 225.989,456.154 225.997,456.158 226.006,456.162 C 226.012,456.169 226.019,456.175 226.024,456.185 C 226.028,456.195 226.032,456.203 226.032,456.214 C 226.032,456.224 226.028,456.233 226.024,456.24 C 226.019,456.248 226.012,456.253 226.006,456.257 C 225.996,456.261 225.989,456.263 225.979,456.262 L 225.838,456.248 L 225.819,456.248 C 225.812,456.249 225.806,456.25 225.8,456.251 C 225.787,456.256 225.778,456.262 225.768,456.27 C 225.764,456.275 225.758,456.28 225.754,456.286 C 225.748,456.294 225.744,456.304 225.741,456.315 C 225.737,456.323 225.735,456.335 225.735,456.346 L 225.735,456.348 C 225.735,456.362 225.738,456.376 225.744,456.39 C 225.748,456.404 225.756,456.416 225.767,456.426 C 225.777,456.438 225.787,456.447 225.8,456.452 C 225.811,456.46 225.825,456.464 225.838,456.465 L 225.995,456.482 C 226.009,456.483 226.023,456.482 226.035,456.477 C 226.048,456.474 226.058,456.467 226.069,456.459 C 226.078,456.449 226.086,456.439 226.091,456.426 C 226.097,456.415 226.099,456.4 226.099,456.385 L 226.099,456.384 L 226.031,456.375 L 226.031,456.377 C 226.031,456.384 226.028,456.39 226.026,456.395 C 226.022,456.4 226.019,456.405 226.013,456.408 C 226.008,456.41 226.002,456.411 225.995,456.41 L 225.838,456.394 C 225.832,456.393 225.825,456.391 225.82,456.386 C 225.817,456.384 225.812,456.379 225.808,456.373 C 225.806,456.367 225.805,456.361 225.805,456.354 L 225.805,456.351 C 225.805,456.345 225.806,456.34 225.808,456.334 C 225.812,456.329 225.817,456.325 225.822,456.322 C 225.825,456.32 225.832,456.319 225.838,456.319 L 225.979,456.334 L 226.004,456.334 C 226.012,456.332 226.02,456.331 226.027,456.329 C 226.044,456.322 226.057,456.315 226.067,456.302 C 226.069,456.302 226.07,456.301 226.07,456.3 C 226.07,456.299 226.07,456.298 226.071,456.297 C 226.081,456.288 226.087,456.276 226.092,456.263 C 226.098,456.25 226.1,456.235 226.1,456.222 C 226.1,456.203 226.097,456.186 226.09,456.17 C 226.085,456.155 226.076,456.141 226.064,456.129 C 226.052,456.116 226.04,456.105 226.025,456.097 C 226.01,456.09 225.995,456.084 225.979,456.083 L 225.858,456.069 C 225.84,456.067 225.825,456.069 225.81,456.075 Z M 226.156,456.102 L 226.154,456.499 L 226.398,456.523 C 226.413,456.526 226.426,456.523 226.438,456.519 C 226.451,456.515 226.461,456.509 226.472,456.5 L 226.472,456.5 C 226.481,456.49 226.489,456.479 226.494,456.467 C 226.498,456.455 226.501,456.441 226.501,456.426 C 226.501,456.412 226.499,456.398 226.494,456.385 C 226.49,456.371 226.483,456.36 226.473,456.348 C 226.464,456.338 226.454,456.329 226.441,456.323 C 226.432,456.317 226.423,456.314 226.413,456.312 C 226.411,456.312 226.41,456.31 226.409,456.31 L 226.409,456.31 L 226.225,456.29 L 226.225,456.109 L 226.156,456.102 Z M 226.558,456.142 L 226.557,456.541 L 226.624,456.548 L 226.626,456.149 L 226.558,456.142 Z M 226.681,456.154 L 226.681,456.552 L 226.923,456.576 C 226.938,456.58 226.951,456.577 226.965,456.573 C 226.976,456.57 226.987,456.562 226.997,456.554 C 227.007,456.544 227.013,456.535 227.019,456.522 C 227.024,456.509 227.026,456.496 227.026,456.481 C 227.026,456.466 227.024,456.452 227.02,456.439 C 227.013,456.426 227.007,456.414 226.999,456.403 C 226.989,456.393 226.978,456.384 226.967,456.376 C 226.957,456.371 226.947,456.367 226.937,456.365 L 226.993,456.257 L 227.026,456.189 L 226.95,456.181 L 226.915,456.25 L 226.878,456.32 L 226.877,456.323 C 226.871,456.333 226.863,456.341 226.852,456.345 C 226.842,456.35 226.831,456.353 226.819,456.351 L 226.75,456.344 L 226.75,456.16 L 226.681,456.154 Z M 227.06,456.195 L 227.097,456.269 L 227.257,456.612 L 227.419,456.302 L 227.455,456.235 L 227.377,456.227 L 227.342,456.294 L 227.257,456.457 L 227.173,456.277 L 227.137,456.203 L 227.06,456.195 Z M 224.96,456.229 L 225.135,456.248 C 225.139,456.249 225.141,456.25 225.143,456.25 C 225.145,456.25 225.148,456.251 225.15,456.252 C 225.155,456.257 225.161,456.261 225.166,456.268 C 225.169,456.274 225.171,456.281 225.171,456.289 C 225.171,456.294 225.17,456.3 225.167,456.305 C 225.165,456.31 225.161,456.313 225.16,456.314 C 225.158,456.316 225.154,456.317 225.152,456.319 C 225.148,456.32 225.146,456.321 225.144,456.322 L 225.135,456.322 L 224.96,456.302 L 224.96,456.229 Z M 227.646,456.255 L 227.646,456.583 L 227.486,456.567 L 227.486,456.637 L 227.872,456.677 L 227.872,456.606 L 227.713,456.589 L 227.713,456.261 L 227.646,456.255 Z M 228.031,456.31 C 228.007,456.319 227.988,456.331 227.97,456.347 C 227.954,456.362 227.938,456.383 227.928,456.406 C 227.919,456.428 227.913,456.454 227.913,456.482 C 227.913,456.509 227.918,456.536 227.928,456.561 C 227.938,456.586 227.953,456.609 227.97,456.628 C 227.988,456.649 228.007,456.664 228.03,456.677 C 228.054,456.69 228.08,456.698 228.105,456.701 C 228.133,456.703 228.157,456.701 228.181,456.694 C 228.204,456.685 228.226,456.674 228.243,456.657 C 228.259,456.64 228.273,456.62 228.284,456.598 C 228.294,456.574 228.298,456.549 228.299,456.522 C 228.298,456.494 228.294,456.467 228.285,456.443 C 228.273,456.418 228.259,456.395 228.243,456.374 C 228.227,456.356 228.205,456.34 228.182,456.327 C 228.158,456.315 228.134,456.306 228.107,456.302 L 228.068,456.302 C 228.055,456.305 228.044,456.308 228.031,456.31 Z M 228.341,456.327 L 228.34,456.723 L 228.583,456.749 C 228.596,456.75 228.61,456.749 228.623,456.745 C 228.636,456.741 228.647,456.734 228.657,456.726 C 228.666,456.716 228.672,456.706 228.678,456.694 C 228.684,456.682 228.685,456.668 228.685,456.653 C 228.685,456.639 228.684,456.625 228.679,456.611 C 228.674,456.598 228.668,456.586 228.657,456.574 C 228.648,456.565 228.638,456.556 228.627,456.548 C 228.616,456.543 228.607,456.54 228.595,456.538 L 228.653,456.429 L 228.686,456.361 L 228.609,456.354 L 228.575,456.423 L 228.537,456.492 L 228.536,456.496 C 228.53,456.505 228.523,456.513 228.511,456.517 C 228.502,456.522 228.49,456.523 228.477,456.522 L 228.409,456.516 L 228.409,456.334 L 228.341,456.327 Z M 226.224,456.361 L 226.398,456.38 C 226.4,456.38 226.404,456.38 226.407,456.382 C 226.408,456.382 226.411,456.383 226.413,456.384 L 226.413,456.385 C 226.419,456.388 226.425,456.393 226.428,456.399 C 226.432,456.406 226.433,456.412 226.434,456.422 C 226.433,456.426 226.432,456.433 226.43,456.437 C 226.427,456.441 226.426,456.444 226.423,456.446 C 226.42,456.448 226.419,456.449 226.414,456.451 C 226.41,456.452 226.406,456.453 226.398,456.452 L 226.224,456.435 L 226.224,456.361 Z M 228.107,456.374 C 228.123,456.375 228.139,456.38 228.154,456.389 C 228.168,456.397 228.183,456.408 228.194,456.422 C 228.205,456.434 228.214,456.449 228.22,456.464 C 228.228,456.48 228.23,456.497 228.23,456.515 C 228.23,456.533 228.227,456.548 228.22,456.563 C 228.214,456.58 228.205,456.592 228.194,456.601 C 228.182,456.612 228.168,456.62 228.154,456.625 C 228.139,456.63 228.123,456.631 228.105,456.63 C 228.089,456.627 228.072,456.622 228.058,456.615 C 228.044,456.607 228.03,456.596 228.019,456.584 C 228.007,456.57 227.998,456.556 227.993,456.541 C 227.986,456.523 227.983,456.507 227.983,456.49 C 227.983,456.471 227.986,456.455 227.993,456.44 C 227.998,456.426 228.007,456.412 228.019,456.403 C 228.03,456.393 228.044,456.384 228.058,456.38 C 228.073,456.374 228.089,456.372 228.107,456.374 Z M 226.75,456.415 L 226.923,456.434 C 226.926,456.434 226.929,456.435 226.93,456.436 C 226.933,456.437 226.935,456.438 226.938,456.439 C 226.944,456.442 226.949,456.448 226.953,456.452 C 226.957,456.46 226.959,456.466 226.959,456.473 C 226.959,456.48 226.957,456.486 226.955,456.49 C 226.953,456.493 226.95,456.496 226.948,456.499 C 226.945,456.501 226.942,456.503 226.938,456.504 C 226.935,456.506 226.929,456.506 226.923,456.506 L 226.75,456.489 L 226.75,456.415 Z M 228.409,456.587 L 228.583,456.606 C 228.586,456.606 228.588,456.607 228.59,456.607 C 228.593,456.609 228.594,456.609 228.596,456.61 C 228.603,456.613 228.608,456.619 228.613,456.625 C 228.616,456.631 228.618,456.639 228.618,456.646 C 228.618,456.652 228.616,456.657 228.615,456.662 C 228.613,456.665 228.609,456.668 228.607,456.671 C 228.605,456.673 228.601,456.674 228.598,456.676 C 228.594,456.679 228.589,456.679 228.583,456.679 L 228.409,456.661 L 228.409,456.587 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 215.817,468.864 L 215.643,469.026 L 233.051,470.16 L 233.14,470.123 C 233.17,470.112 233.198,470.084 233.198,470.039 L 233.198,469.996 L 215.817,468.864 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 215.643,469.026 L 215.642,445.574 L 215.73,445.489 L 215.817,445.503 L 215.817,468.863 L 215.643,469.026 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--FORREST_PINE, .KN95_NR_small_individuals--FORREST_PINE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='300.282 -475.376 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.301' y2='19.846' gradientTransform='translate(312.925 447.905)'%3E%3Cstop offset='0' stop-color='%2318350f'/%3E%3Cstop offset='1' stop-color='%231f4413'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.353' y2='19.92' gradientTransform='translate(309.386 448.52)'%3E%3Cstop offset='0' stop-color='%2313290b'/%3E%3Cstop offset='1' stop-color='%231a3a10'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(312.919 467.888)'%3E%3Cstop offset='0' stop-color='%2318340e'/%3E%3Cstop offset='1' stop-color='%231a3a10'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.229' gradientTransform='translate(308.244 469.944)'%3E%3Cstop offset='0' stop-color='%2313290b'/%3E%3Cstop offset='1' stop-color='%2318340e'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.009' y2='-0.163' gradientTransform='translate(321.238 469.758) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2318350f'/%3E%3Cstop offset='1' stop-color='%231b3c10'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(310.093 457.647) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2318340e'/%3E%3Cstop offset='1' stop-color='%231a3a10'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(317.011 458.647) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 310.011,445.491 L 310.011,468.976 L 327.458,470.097 C 327.471,470.082 327.481,470.063 327.481,470.039 L 327.481,447.858 L 310.011,445.491 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 310.011,445.491 L 306.548,448.854 L 306.546,470.875 L 310.011,468.976 L 310.011,445.491 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 310.011,468.976 L 306.546,470.875 L 323.478,471.803 L 327.421,470.124 C 327.435,470.118 327.448,470.11 327.458,470.097 L 310.011,468.976 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 309.924,468.709 L 306.545,470.598 L 306.544,470.875 L 309.924,469.025 L 309.924,468.709 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 317.053,451.092 L 317.053,451.503 L 317.125,451.511 L 317.125,451.1 L 317.053,451.092 Z M 317.182,451.107 L 317.182,451.514 L 317.255,451.468 L 317.516,451.292 L 317.516,451.552 L 317.588,451.56 L 317.588,451.151 L 317.516,451.199 L 317.255,451.374 L 317.255,451.114 L 317.182,451.107 Z M 317.645,451.157 L 317.645,451.567 L 317.847,451.59 C 317.877,451.592 317.903,451.59 317.926,451.582 C 317.95,451.574 317.971,451.562 317.992,451.544 C 318.01,451.527 318.024,451.508 318.034,451.485 C 318.044,451.461 318.05,451.434 318.05,451.406 C 318.05,451.381 318.045,451.357 318.038,451.333 C 318.029,451.31 318.017,451.288 318.002,451.269 C 318,451.267 317.998,451.264 317.997,451.262 C 317.995,451.26 317.993,451.257 317.99,451.256 C 317.971,451.234 317.95,451.217 317.926,451.204 C 317.904,451.191 317.878,451.182 317.847,451.179 L 317.645,451.157 Z M 318.108,451.207 L 318.108,451.617 L 318.181,451.624 L 318.181,451.216 L 318.108,451.207 Z M 317.716,451.237 L 317.847,451.251 C 317.865,451.255 317.882,451.26 317.898,451.269 C 317.915,451.276 317.928,451.288 317.939,451.301 C 317.951,451.314 317.96,451.328 317.968,451.346 C 317.974,451.363 317.977,451.38 317.978,451.398 C 317.977,451.417 317.974,451.432 317.968,451.447 C 317.96,451.464 317.951,451.476 317.939,451.487 C 317.928,451.498 317.915,451.506 317.898,451.511 C 317.882,451.516 317.865,451.517 317.847,451.515 L 317.716,451.501 L 317.716,451.237 Z M 318.421,451.243 L 318.252,451.559 L 318.215,451.63 L 318.296,451.637 L 318.332,451.569 L 318.421,451.404 L 318.51,451.589 L 318.547,451.664 L 318.627,451.675 L 318.591,451.597 L 318.421,451.243 Z M 318.665,451.269 L 318.665,451.678 L 318.736,451.686 L 318.736,451.275 L 318.665,451.269 Z M 318.795,451.282 L 318.795,451.692 L 318.996,451.714 C 319.024,451.716 319.05,451.714 319.075,451.707 C 319.1,451.699 319.12,451.686 319.139,451.669 C 319.157,451.653 319.171,451.632 319.181,451.609 C 319.193,451.585 319.199,451.559 319.199,451.531 C 319.199,451.506 319.195,451.482 319.185,451.459 C 319.177,451.434 319.166,451.413 319.149,451.393 C 319.148,451.391 319.146,451.389 319.144,451.387 C 319.143,451.385 319.142,451.382 319.138,451.38 C 319.12,451.359 319.1,451.342 319.075,451.327 C 319.05,451.315 319.024,451.307 318.996,451.303 L 318.795,451.282 Z M 319.381,451.362 C 319.356,451.37 319.334,451.382 319.317,451.398 C 319.297,451.416 319.283,451.436 319.273,451.46 C 319.262,451.483 319.257,451.509 319.257,451.537 L 319.257,451.741 L 319.329,451.75 L 319.329,451.545 C 319.329,451.526 319.332,451.51 319.34,451.495 C 319.345,451.481 319.356,451.468 319.368,451.457 C 319.38,451.445 319.393,451.437 319.408,451.432 C 319.424,451.427 319.441,451.424 319.459,451.427 C 319.477,451.43 319.493,451.434 319.509,451.443 C 319.526,451.45 319.54,451.463 319.552,451.476 C 319.563,451.489 319.572,451.505 319.579,451.521 C 319.585,451.538 319.589,451.555 319.589,451.574 L 319.589,451.778 L 319.663,451.786 L 319.663,451.582 C 319.663,451.552 319.657,451.526 319.646,451.5 C 319.634,451.474 319.62,451.449 319.601,451.43 C 319.583,451.409 319.563,451.392 319.538,451.379 C 319.514,451.366 319.487,451.358 319.459,451.353 C 319.43,451.352 319.405,451.353 319.381,451.362 Z M 318.866,451.363 L 318.996,451.377 C 319.014,451.379 319.03,451.384 319.046,451.392 C 319.062,451.401 319.076,451.411 319.089,451.424 C 319.101,451.438 319.109,451.454 319.117,451.471 C 319.123,451.487 319.126,451.505 319.127,451.522 C 319.126,451.54 319.123,451.558 319.117,451.573 C 319.109,451.589 319.101,451.601 319.089,451.612 C 319.076,451.623 319.062,451.63 319.046,451.636 C 319.03,451.641 319.014,451.642 318.996,451.64 L 318.866,451.626 L 318.866,451.363 Z M 319.697,451.38 L 319.733,451.458 L 319.903,451.812 L 320.073,451.495 L 320.111,451.424 L 320.029,451.417 L 319.993,451.485 L 319.903,451.65 L 319.814,451.466 L 319.778,451.389 L 319.697,451.38 Z M 320.245,451.443 C 320.234,451.444 320.225,451.446 320.217,451.449 C 320.204,451.456 320.193,451.463 320.182,451.473 C 320.172,451.482 320.164,451.491 320.157,451.503 C 320.154,451.512 320.151,451.521 320.148,451.529 C 320.146,451.539 320.145,451.548 320.145,451.559 L 320.145,451.838 L 320.217,451.846 L 320.217,451.559 C 320.218,451.552 320.221,451.543 320.226,451.538 C 320.23,451.531 320.235,451.526 320.244,451.522 C 320.25,451.518 320.259,451.516 320.266,451.515 L 320.479,451.538 L 320.479,451.466 L 320.273,451.443 C 320.263,451.441 320.253,451.442 320.245,451.443 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 314.85,457.821 L 314.847,459.874 L 315.186,459.907 L 315.188,458.86 L 315.468,459.163 L 315.719,459.437 L 316.247,460.015 L 316.749,460.067 L 315.921,459.158 L 316.744,458.014 L 316.327,457.972 L 315.67,458.885 L 315.188,458.363 L 315.188,457.856 L 314.85,457.821 Z M 316.917,458.032 L 317.09,458.416 L 317.884,460.182 L 318.681,458.578 L 318.853,458.228 L 318.476,458.191 L 318.301,458.539 L 317.885,459.376 L 317.47,458.453 L 317.297,458.072 L 316.917,458.032 Z M 319.026,458.247 L 319.028,458.247 L 319.288,458.639 L 319.754,459.342 L 319.969,459.663 L 320.228,460.055 L 319.021,459.931 L 319.021,460.298 L 320.488,460.447 L 320.913,460.489 L 320.651,460.097 L 320.18,459.384 L 319.968,459.064 L 319.711,458.683 L 320.924,458.806 L 320.925,458.439 L 319.456,458.291 L 319.453,458.291 L 319.026,458.247 Z M 321.501,458.542 C 321.441,458.564 321.384,458.598 321.339,458.645 C 321.293,458.69 321.255,458.744 321.23,458.809 C 321.204,458.873 321.191,458.943 321.19,459.021 L 321.189,459.964 C 321.189,460.041 321.201,460.114 321.228,460.184 C 321.254,460.253 321.289,460.314 321.338,460.37 C 321.383,460.426 321.438,460.471 321.499,460.506 C 321.561,460.541 321.628,460.562 321.698,460.57 L 323.084,460.71 L 323.084,460.344 L 321.698,460.203 C 321.666,460.2 321.637,460.189 321.61,460.17 C 321.584,460.15 321.564,460.125 321.549,460.096 C 321.533,460.066 321.525,460.033 321.525,459.998 L 321.525,459.808 L 322.745,459.931 L 322.746,459.566 L 321.525,459.442 L 321.525,459.054 C 321.525,459.02 321.535,458.99 321.55,458.964 C 321.567,458.936 321.586,458.915 321.611,458.901 C 321.639,458.887 321.667,458.882 321.699,458.885 L 323.086,459.025 L 323.087,458.66 L 321.699,458.518 C 321.63,458.512 321.564,458.519 321.501,458.542 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 316.854,456.73 L 316.854,457.168 C 316.854,457.191 316.857,457.212 316.865,457.232 C 316.873,457.253 316.885,457.272 316.9,457.287 C 316.915,457.304 316.931,457.317 316.95,457.328 C 316.969,457.337 316.991,457.344 317.013,457.346 L 317.446,457.393 L 317.446,457.285 L 317.013,457.24 C 317.004,457.239 316.994,457.235 316.986,457.229 C 316.977,457.223 316.971,457.217 316.966,457.208 C 316.961,457.199 316.959,457.189 316.959,457.179 L 316.959,457.124 L 317.341,457.162 L 317.341,457.056 L 316.958,457.016 L 316.959,456.742 L 316.854,456.73 Z M 317.531,456.802 L 317.53,457.24 C 317.53,457.261 317.535,457.284 317.544,457.304 C 317.551,457.324 317.562,457.343 317.577,457.359 C 317.592,457.375 317.609,457.388 317.627,457.399 C 317.646,457.41 317.667,457.416 317.691,457.419 L 318.123,457.464 L 318.123,457.356 L 317.691,457.311 C 317.681,457.311 317.672,457.307 317.664,457.302 C 317.655,457.295 317.648,457.287 317.643,457.278 C 317.639,457.271 317.637,457.261 317.637,457.251 L 317.637,457.196 L 318.018,457.235 L 318.018,457.129 L 317.636,457.088 L 317.637,456.813 L 317.531,456.802 Z M 318.21,456.874 L 318.208,457.474 L 318.582,457.512 C 318.603,457.515 318.624,457.512 318.642,457.506 C 318.662,457.5 318.679,457.49 318.694,457.478 L 318.694,457.476 C 318.709,457.462 318.72,457.447 318.729,457.428 C 318.736,457.41 318.742,457.388 318.742,457.367 C 318.742,457.344 318.736,457.324 318.73,457.305 C 318.721,457.284 318.71,457.265 318.698,457.25 C 318.683,457.234 318.667,457.221 318.649,457.211 C 318.633,457.201 318.619,457.196 318.602,457.193 C 318.601,457.193 318.6,457.193 318.598,457.193 L 318.598,457.191 L 318.315,457.16 L 318.315,456.886 L 318.21,456.874 Z M 318.825,456.936 L 318.825,457.115 C 318.825,457.127 318.826,457.137 318.828,457.149 C 318.831,457.161 318.834,457.174 318.838,457.184 C 318.847,457.208 318.859,457.226 318.876,457.243 C 318.891,457.261 318.908,457.275 318.928,457.286 C 318.947,457.298 318.969,457.305 318.994,457.309 L 319.247,457.336 L 319.25,457.336 C 319.261,457.339 319.272,457.343 319.281,457.35 C 319.291,457.358 319.298,457.367 319.305,457.378 C 319.31,457.388 319.311,457.4 319.311,457.413 C 319.311,457.426 319.309,457.437 319.302,457.447 C 319.296,457.456 319.289,457.464 319.278,457.47 C 319.267,457.475 319.256,457.477 319.243,457.476 L 318.826,457.433 L 318.826,457.539 L 319.242,457.582 C 319.267,457.585 319.291,457.582 319.311,457.575 C 319.332,457.569 319.35,457.558 319.367,457.543 C 319.382,457.531 319.395,457.511 319.404,457.491 C 319.413,457.472 319.418,457.449 319.418,457.424 C 319.418,457.412 319.417,457.399 319.414,457.388 C 319.411,457.375 319.407,457.363 319.402,457.353 C 319.399,457.343 319.394,457.332 319.388,457.324 C 319.382,457.314 319.375,457.305 319.368,457.296 C 319.354,457.278 319.335,457.263 319.315,457.252 C 319.293,457.24 319.273,457.233 319.249,457.229 L 319.246,457.229 C 319.246,457.229 319.244,457.229 319.243,457.228 L 318.994,457.202 C 318.982,457.201 318.971,457.196 318.962,457.188 C 318.952,457.181 318.944,457.171 318.939,457.16 C 318.934,457.149 318.932,457.138 318.932,457.127 L 318.932,457.057 L 319.416,457.106 L 319.416,457 L 318.999,456.955 L 318.825,456.936 Z M 319.915,457.053 L 319.915,457.651 L 320.021,457.581 L 320.401,457.324 L 320.401,457.704 L 320.506,457.714 L 320.507,457.117 L 320.401,457.188 L 320.021,457.444 L 320.021,457.065 L 319.915,457.053 Z M 320.592,457.126 L 320.591,457.725 L 320.966,457.765 C 320.987,457.768 321.008,457.766 321.027,457.758 C 321.047,457.752 321.063,457.743 321.079,457.729 C 321.092,457.716 321.104,457.7 321.112,457.68 C 321.12,457.662 321.124,457.641 321.125,457.62 C 321.125,457.597 321.12,457.576 321.112,457.556 C 321.105,457.537 321.094,457.518 321.08,457.502 C 321.066,457.486 321.05,457.473 321.032,457.461 C 321.018,457.453 321.002,457.447 320.986,457.444 L 321.072,457.283 L 321.125,457.182 L 321.007,457.169 L 320.952,457.271 L 320.895,457.376 L 320.893,457.381 C 320.884,457.395 320.872,457.408 320.855,457.414 C 320.84,457.422 320.821,457.425 320.802,457.423 L 320.698,457.412 L 320.698,457.136 L 320.592,457.126 Z M 318.315,457.265 L 318.583,457.294 C 318.586,457.294 318.589,457.295 318.594,457.298 C 318.598,457.299 318.601,457.3 318.604,457.303 L 318.604,457.303 C 318.614,457.309 318.622,457.316 318.627,457.326 C 318.633,457.335 318.635,457.344 318.635,457.356 C 318.635,457.365 318.633,457.374 318.63,457.38 C 318.626,457.386 318.623,457.391 318.62,457.394 C 318.616,457.396 318.611,457.399 318.605,457.401 C 318.6,457.405 318.591,457.406 318.583,457.405 L 318.315,457.376 L 318.315,457.265 Z M 320.698,457.518 L 320.966,457.547 C 320.97,457.547 320.973,457.548 320.977,457.55 C 320.981,457.551 320.984,457.553 320.987,457.555 C 320.997,457.56 321.005,457.569 321.009,457.577 C 321.017,457.587 321.02,457.597 321.02,457.608 C 321.019,457.618 321.018,457.626 321.013,457.634 C 321.009,457.64 321.007,457.643 321.003,457.647 C 321,457.649 320.995,457.653 320.989,457.654 C 320.982,457.658 320.975,457.659 320.966,457.658 L 320.697,457.629 L 320.698,457.518 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 314.967,455.536 L 314.966,455.932 L 315.209,455.957 C 315.225,455.959 315.238,455.957 315.251,455.954 C 315.262,455.948 315.274,455.942 315.283,455.933 L 315.283,455.933 C 315.293,455.923 315.3,455.914 315.305,455.902 C 315.31,455.889 315.314,455.876 315.314,455.86 C 315.314,455.845 315.31,455.832 315.306,455.819 C 315.301,455.806 315.294,455.794 315.284,455.783 C 315.276,455.772 315.265,455.763 315.254,455.757 C 315.244,455.749 315.234,455.746 315.225,455.745 C 315.222,455.745 315.22,455.744 315.22,455.744 L 315.22,455.744 L 315.037,455.724 L 315.037,455.542 L 314.967,455.536 Z M 315.368,455.574 L 315.367,455.972 L 315.611,455.999 C 315.626,456 315.639,455.999 315.651,455.995 C 315.665,455.99 315.675,455.984 315.684,455.975 C 315.694,455.965 315.701,455.955 315.708,455.942 C 315.712,455.931 315.715,455.917 315.715,455.904 C 315.715,455.888 315.712,455.874 315.709,455.86 C 315.701,455.847 315.695,455.836 315.686,455.825 C 315.677,455.813 315.667,455.805 315.654,455.798 C 315.644,455.793 315.635,455.787 315.625,455.786 L 315.679,455.678 L 315.715,455.611 L 315.638,455.603 L 315.603,455.67 L 315.567,455.741 L 315.565,455.744 C 315.559,455.756 315.549,455.762 315.54,455.767 C 315.528,455.772 315.518,455.774 315.506,455.772 L 315.436,455.765 L 315.436,455.582 L 315.368,455.574 Z M 315.874,455.644 C 315.852,455.652 315.832,455.665 315.815,455.68 C 315.796,455.697 315.782,455.716 315.772,455.738 C 315.762,455.763 315.757,455.787 315.755,455.815 C 315.757,455.843 315.762,455.87 315.772,455.894 C 315.782,455.919 315.796,455.942 315.813,455.961 C 315.831,455.982 315.851,455.999 315.873,456.011 C 315.898,456.024 315.922,456.032 315.949,456.034 C 315.975,456.037 316.001,456.034 316.025,456.026 C 316.046,456.019 316.068,456.007 316.085,455.99 C 316.103,455.974 316.118,455.955 316.127,455.931 C 316.136,455.908 316.142,455.883 316.142,455.854 C 316.142,455.827 316.137,455.8 316.127,455.775 C 316.118,455.75 316.103,455.729 316.085,455.709 C 316.069,455.689 316.048,455.672 316.025,455.66 C 316.001,455.647 315.976,455.638 315.95,455.636 L 315.911,455.637 C 315.898,455.638 315.887,455.639 315.874,455.644 Z M 316.342,455.677 L 316.342,456.004 L 316.183,455.988 L 316.183,456.058 L 316.568,456.099 L 316.568,456.027 L 316.412,456.011 L 316.412,455.684 L 316.342,455.677 Z M 315.95,455.707 C 315.967,455.709 315.982,455.714 315.999,455.723 C 316.014,455.73 316.027,455.741 316.037,455.755 C 316.048,455.767 316.057,455.781 316.064,455.798 C 316.07,455.813 316.074,455.83 316.074,455.848 C 316.074,455.866 316.07,455.882 316.064,455.897 C 316.057,455.911 316.048,455.924 316.037,455.935 C 316.026,455.945 316.013,455.954 315.998,455.957 C 315.982,455.962 315.967,455.964 315.949,455.962 C 315.933,455.961 315.916,455.956 315.902,455.948 C 315.887,455.941 315.872,455.929 315.861,455.917 C 315.851,455.904 315.842,455.891 315.835,455.873 C 315.831,455.856 315.826,455.839 315.826,455.823 C 315.826,455.805 315.831,455.787 315.835,455.774 C 315.842,455.76 315.851,455.746 315.862,455.735 C 315.873,455.725 315.888,455.717 315.902,455.712 C 315.916,455.708 315.934,455.706 315.95,455.707 Z M 316.687,455.721 C 316.677,455.724 316.665,455.731 316.654,455.741 C 316.645,455.749 316.638,455.761 316.632,455.773 C 316.628,455.785 316.625,455.799 316.625,455.813 L 316.625,455.998 C 316.625,456.012 316.626,456.026 316.632,456.039 C 316.638,456.053 316.645,456.065 316.654,456.076 C 316.665,456.088 316.675,456.096 316.687,456.103 C 316.7,456.11 316.714,456.114 316.728,456.116 L 317.009,456.144 L 317.009,456.073 L 316.728,456.044 C 316.722,456.042 316.716,456.04 316.71,456.037 C 316.705,456.033 316.701,456.028 316.697,456.023 C 316.695,456.017 316.693,456.01 316.693,456.004 L 316.693,455.967 L 316.941,455.994 L 316.941,455.922 L 316.693,455.896 L 316.694,455.821 C 316.694,455.813 316.695,455.808 316.698,455.803 C 316.701,455.798 316.706,455.794 316.71,455.791 C 316.716,455.787 316.722,455.787 316.728,455.787 L 317.01,455.817 L 317.01,455.746 L 316.729,455.717 C 316.714,455.716 316.701,455.717 316.687,455.721 Z M 317.175,455.779 C 317.153,455.787 317.133,455.799 317.116,455.815 C 317.096,455.832 317.083,455.851 317.073,455.874 C 317.064,455.897 317.058,455.923 317.058,455.95 C 317.058,455.977 317.064,456.005 317.073,456.029 C 317.082,456.053 317.096,456.076 317.116,456.098 C 317.133,456.117 317.153,456.133 317.175,456.146 C 317.199,456.158 317.225,456.166 317.252,456.169 L 317.443,456.188 L 317.443,456.118 L 317.252,456.098 C 317.234,456.097 317.218,456.091 317.202,456.082 C 317.188,456.075 317.174,456.065 317.162,456.052 C 317.153,456.039 317.144,456.025 317.136,456.008 C 317.131,455.992 317.128,455.975 317.128,455.957 C 317.128,455.94 317.131,455.923 317.137,455.909 C 317.144,455.894 317.153,455.881 317.163,455.872 C 317.174,455.86 317.188,455.852 317.203,455.847 C 317.218,455.841 317.234,455.839 317.252,455.841 L 317.444,455.862 L 317.444,455.791 L 317.252,455.772 L 317.213,455.772 C 317.2,455.772 317.188,455.775 317.175,455.779 Z M 315.037,455.796 L 315.21,455.813 C 315.213,455.813 315.216,455.813 315.218,455.814 C 315.22,455.815 315.222,455.816 315.226,455.818 C 315.231,455.822 315.237,455.826 315.241,455.832 C 315.244,455.839 315.245,455.845 315.245,455.852 C 315.245,455.859 315.244,455.865 315.242,455.87 C 315.24,455.874 315.238,455.877 315.236,455.878 C 315.233,455.881 315.23,455.883 315.226,455.884 C 315.22,455.886 315.217,455.887 315.21,455.886 L 315.037,455.868 L 315.037,455.796 Z M 317.657,455.813 L 317.657,456.14 L 317.498,456.123 L 317.498,456.196 L 317.884,456.235 L 317.884,456.163 L 317.725,456.147 L 317.725,455.82 L 317.657,455.813 Z M 315.436,455.836 L 315.611,455.853 C 315.613,455.854 315.616,455.854 315.618,455.855 C 315.621,455.856 315.623,455.857 315.626,455.858 C 315.631,455.862 315.637,455.867 315.641,455.874 C 315.644,455.88 315.646,455.887 315.646,455.895 C 315.646,455.901 315.644,455.906 315.643,455.91 C 315.641,455.915 315.638,455.918 315.635,455.92 C 315.633,455.922 315.63,455.923 315.627,455.924 C 315.622,455.928 315.617,455.928 315.611,455.928 L 315.436,455.909 L 315.436,455.836 Z M 317.938,455.841 L 317.937,456.239 L 318.007,456.248 L 318.008,455.849 L 317.938,455.841 Z M 318.238,455.874 L 318.075,456.184 L 318.039,456.251 L 318.117,456.258 L 318.153,456.191 L 318.237,456.03 L 318.321,456.21 L 318.356,456.284 L 318.433,456.291 L 318.397,456.218 L 318.238,455.874 Z M 318.53,455.912 C 318.518,455.917 318.508,455.923 318.498,455.931 C 318.489,455.941 318.48,455.951 318.477,455.963 C 318.471,455.975 318.467,455.99 318.467,456.005 L 318.467,456.187 C 318.467,456.203 318.47,456.217 318.476,456.23 C 318.48,456.244 318.488,456.256 318.498,456.266 C 318.507,456.277 318.517,456.287 318.53,456.293 C 318.543,456.3 318.556,456.305 318.571,456.307 L 318.851,456.336 L 318.851,456.264 L 318.571,456.235 C 318.564,456.235 318.557,456.232 318.553,456.228 C 318.548,456.225 318.544,456.22 318.541,456.214 C 318.537,456.209 318.536,456.202 318.536,456.196 L 318.536,456.158 L 318.784,456.184 L 318.784,456.114 L 318.537,456.088 L 318.537,456.012 C 318.537,456.005 318.538,456 318.542,455.995 C 318.544,455.989 318.548,455.985 318.554,455.982 C 318.558,455.98 318.564,455.979 318.572,455.979 L 318.852,456.008 L 318.852,455.936 L 318.572,455.908 C 318.557,455.907 318.543,455.908 318.53,455.912 Z M 319.174,455.969 L 319.173,456.368 L 319.417,456.394 C 319.431,456.394 319.445,456.394 319.458,456.388 C 319.471,456.385 319.48,456.378 319.491,456.369 C 319.5,456.361 319.506,456.349 319.513,456.337 C 319.517,456.324 319.519,456.311 319.519,456.297 C 319.519,456.281 319.517,456.267 319.513,456.254 C 319.508,456.241 319.501,456.23 319.492,456.22 C 319.483,456.21 319.473,456.2 319.46,456.193 C 319.452,456.187 319.44,456.182 319.43,456.181 L 319.486,456.072 L 319.52,456.005 L 319.443,455.998 L 319.408,456.065 L 319.373,456.135 L 319.371,456.138 C 319.364,456.148 319.356,456.155 319.345,456.161 C 319.336,456.165 319.324,456.168 319.313,456.167 L 319.242,456.159 L 319.243,455.976 L 319.174,455.969 Z M 319.641,456.027 C 319.628,456.031 319.616,456.039 319.608,456.047 C 319.598,456.055 319.591,456.065 319.585,456.077 C 319.581,456.091 319.577,456.105 319.577,456.12 L 319.577,456.303 C 319.577,456.318 319.58,456.332 319.585,456.346 C 319.59,456.359 319.598,456.371 319.608,456.382 C 319.616,456.394 319.627,456.401 319.641,456.409 C 319.653,456.416 319.666,456.421 319.68,456.421 L 319.962,456.45 L 319.962,456.38 L 319.68,456.349 C 319.675,456.349 319.668,456.348 319.663,456.343 C 319.659,456.34 319.654,456.335 319.651,456.33 C 319.647,456.323 319.646,456.317 319.646,456.311 L 319.646,456.273 L 319.893,456.298 L 319.893,456.227 L 319.646,456.202 L 319.646,456.128 C 319.646,456.121 319.648,456.115 319.651,456.11 C 319.654,456.104 319.659,456.101 319.664,456.098 C 319.668,456.095 319.675,456.095 319.68,456.095 L 319.962,456.123 L 319.962,456.052 L 319.681,456.023 C 319.667,456.022 319.653,456.024 319.641,456.027 Z M 320.092,456.075 C 320.079,456.079 320.065,456.089 320.053,456.098 C 320.041,456.108 320.034,456.122 320.026,456.136 C 320.021,456.15 320.017,456.166 320.017,456.184 L 320.088,456.19 C 320.088,456.181 320.09,456.171 320.093,456.163 C 320.099,456.156 320.105,456.149 320.112,456.146 C 320.12,456.142 320.128,456.141 320.139,456.142 L 320.26,456.154 C 320.269,456.155 320.279,456.158 320.286,456.163 C 320.292,456.17 320.301,456.176 320.305,456.186 C 320.311,456.196 320.313,456.204 320.313,456.214 C 320.313,456.225 320.311,456.233 320.305,456.241 C 320.301,456.249 320.292,456.254 320.286,456.258 C 320.278,456.262 320.269,456.264 320.26,456.263 L 320.12,456.249 L 320.101,456.249 C 320.093,456.249 320.088,456.251 320.081,456.252 C 320.068,456.256 320.059,456.263 320.048,456.271 C 320.045,456.276 320.039,456.28 320.034,456.287 C 320.029,456.295 320.025,456.305 320.022,456.315 C 320.019,456.324 320.017,456.336 320.017,456.346 L 320.017,456.349 C 320.017,456.363 320.021,456.377 320.025,456.391 C 320.03,456.404 320.037,456.416 320.047,456.427 C 320.058,456.439 320.067,456.447 320.081,456.453 C 320.092,456.461 320.106,456.465 320.12,456.466 L 320.277,456.483 C 320.29,456.484 320.305,456.483 320.317,456.478 C 320.33,456.475 320.341,456.468 320.35,456.459 C 320.359,456.45 320.368,456.44 320.372,456.427 C 320.378,456.415 320.38,456.401 320.38,456.386 L 320.38,456.385 L 320.312,456.376 L 320.312,456.378 C 320.312,456.385 320.311,456.391 320.307,456.396 C 320.304,456.401 320.3,456.405 320.293,456.409 C 320.289,456.411 320.283,456.412 320.277,456.411 L 320.12,456.395 C 320.114,456.394 320.107,456.391 320.103,456.387 C 320.099,456.385 320.093,456.38 320.09,456.374 C 320.088,456.368 320.086,456.362 320.086,456.355 L 320.086,456.352 C 320.086,456.346 320.088,456.341 320.09,456.335 C 320.093,456.33 320.099,456.325 320.103,456.323 C 320.107,456.321 320.114,456.32 320.12,456.32 L 320.26,456.334 L 320.285,456.334 C 320.292,456.333 320.302,456.331 320.309,456.33 C 320.325,456.323 320.338,456.315 320.349,456.303 C 320.35,456.303 320.351,456.301 320.352,456.3 C 320.352,456.299 320.352,456.299 320.354,456.298 C 320.362,456.288 320.369,456.277 320.373,456.264 C 320.379,456.251 320.381,456.236 320.381,456.222 C 320.381,456.204 320.378,456.187 320.371,456.171 C 320.366,456.156 320.357,456.142 320.346,456.13 C 320.334,456.117 320.322,456.106 320.306,456.098 C 320.292,456.091 320.277,456.085 320.26,456.082 L 320.139,456.07 C 320.122,456.068 320.106,456.07 320.092,456.075 Z M 320.438,456.102 L 320.436,456.5 L 320.679,456.524 C 320.694,456.527 320.706,456.524 320.718,456.52 C 320.731,456.516 320.743,456.51 320.754,456.501 L 320.754,456.501 C 320.763,456.491 320.77,456.479 320.776,456.468 C 320.78,456.455 320.783,456.442 320.783,456.427 C 320.783,456.412 320.781,456.398 320.776,456.386 C 320.771,456.372 320.764,456.361 320.756,456.349 C 320.745,456.339 320.735,456.33 320.722,456.323 C 320.714,456.318 320.704,456.315 320.693,456.312 C 320.692,456.312 320.691,456.311 320.69,456.311 L 320.69,456.311 L 320.505,456.291 L 320.505,456.109 L 320.438,456.102 Z M 320.839,456.143 L 320.838,456.542 L 320.905,456.549 L 320.906,456.15 L 320.839,456.143 Z M 320.963,456.155 L 320.963,456.553 L 321.205,456.577 C 321.22,456.581 321.233,456.578 321.246,456.574 C 321.257,456.57 321.267,456.562 321.278,456.555 C 321.287,456.545 321.295,456.536 321.3,456.522 C 321.306,456.51 321.308,456.497 321.309,456.481 C 321.308,456.467 321.306,456.453 321.3,456.44 C 321.295,456.427 321.288,456.413 321.279,456.404 C 321.27,456.394 321.26,456.385 321.247,456.377 C 321.238,456.372 321.228,456.368 321.219,456.365 L 321.273,456.258 L 321.309,456.19 L 321.232,456.182 L 321.196,456.251 L 321.159,456.321 L 321.157,456.323 C 321.151,456.333 321.144,456.342 321.133,456.346 C 321.124,456.351 321.112,456.354 321.1,456.352 L 321.031,456.345 L 321.031,456.161 L 320.963,456.155 Z M 321.343,456.196 L 321.377,456.27 L 321.538,456.613 L 321.699,456.303 L 321.737,456.236 L 321.659,456.228 L 321.623,456.295 L 321.538,456.457 L 321.454,456.278 L 321.419,456.204 L 321.343,456.196 Z M 319.242,456.23 L 319.418,456.249 C 319.421,456.249 319.423,456.251 319.425,456.251 C 319.427,456.251 319.429,456.252 319.431,456.253 C 319.438,456.257 319.443,456.262 319.448,456.268 C 319.451,456.275 319.453,456.281 319.453,456.29 C 319.453,456.295 319.452,456.301 319.449,456.305 C 319.447,456.311 319.443,456.313 319.442,456.315 C 319.44,456.317 319.436,456.318 319.434,456.32 C 319.43,456.321 319.427,456.322 319.426,456.322 L 319.417,456.322 L 319.242,456.303 L 319.242,456.23 Z M 321.926,456.255 L 321.926,456.583 L 321.768,456.568 L 321.768,456.638 L 322.152,456.678 L 322.152,456.607 L 321.995,456.589 L 321.995,456.262 L 321.926,456.255 Z M 322.313,456.311 C 322.289,456.32 322.269,456.331 322.251,456.348 C 322.235,456.363 322.22,456.384 322.209,456.407 C 322.201,456.429 322.195,456.455 322.195,456.483 C 322.195,456.51 322.199,456.536 322.209,456.562 C 322.22,456.587 322.234,456.61 322.251,456.629 C 322.268,456.649 322.289,456.665 322.312,456.678 C 322.336,456.691 322.361,456.699 322.386,456.702 C 322.416,456.704 322.439,456.702 322.461,456.694 C 322.485,456.686 322.507,456.674 322.525,456.657 C 322.542,456.641 322.555,456.621 322.564,456.598 C 322.575,456.575 322.579,456.549 322.58,456.522 C 322.579,456.495 322.575,456.468 322.565,456.444 C 322.555,456.419 322.542,456.396 322.525,456.375 C 322.508,456.356 322.486,456.34 322.463,456.328 C 322.44,456.315 322.416,456.307 322.388,456.303 L 322.349,456.303 C 322.337,456.305 322.326,456.309 322.313,456.311 Z M 322.622,456.328 L 322.622,456.724 L 322.865,456.75 C 322.878,456.75 322.892,456.75 322.904,456.746 C 322.917,456.742 322.928,456.735 322.938,456.727 C 322.948,456.717 322.955,456.706 322.959,456.695 C 322.965,456.682 322.968,456.669 322.968,456.654 C 322.968,456.64 322.965,456.626 322.961,456.612 C 322.956,456.599 322.95,456.587 322.938,456.575 C 322.93,456.566 322.919,456.556 322.908,456.549 C 322.897,456.544 322.888,456.54 322.877,456.538 L 322.933,456.43 L 322.968,456.362 L 322.891,456.355 L 322.857,456.423 L 322.818,456.492 L 322.817,456.496 C 322.81,456.505 322.803,456.513 322.793,456.518 C 322.783,456.523 322.771,456.524 322.758,456.523 L 322.69,456.517 L 322.69,456.334 L 322.622,456.328 Z M 320.505,456.362 L 320.68,456.38 C 320.682,456.381 320.685,456.381 320.688,456.382 C 320.69,456.383 320.692,456.384 320.694,456.385 L 320.694,456.386 C 320.699,456.389 320.705,456.394 320.709,456.4 C 320.713,456.407 320.714,456.413 320.715,456.422 C 320.714,456.427 320.714,456.434 320.711,456.437 C 320.708,456.442 320.706,456.445 320.705,456.446 C 320.702,456.449 320.699,456.45 320.695,456.452 C 320.691,456.453 320.686,456.454 320.68,456.453 L 320.505,456.436 L 320.505,456.362 Z M 322.388,456.375 C 322.406,456.376 322.421,456.381 322.435,456.389 C 322.45,456.398 322.464,456.409 322.474,456.422 C 322.486,456.435 322.495,456.449 322.501,456.465 C 322.51,456.481 322.512,456.497 322.512,456.515 C 322.512,456.534 322.509,456.549 322.501,456.564 C 322.495,456.58 322.486,456.592 322.474,456.602 C 322.463,456.613 322.45,456.621 322.435,456.626 C 322.421,456.63 322.405,456.631 322.386,456.63 C 322.37,456.627 322.354,456.623 322.339,456.615 C 322.326,456.608 322.312,456.597 322.3,456.585 C 322.288,456.571 322.279,456.556 322.273,456.541 C 322.267,456.523 322.264,456.508 322.263,456.491 C 322.264,456.472 322.267,456.455 322.273,456.44 C 322.279,456.426 322.288,456.413 322.3,456.403 C 322.312,456.394 322.326,456.385 322.34,456.38 C 322.354,456.375 322.37,456.372 322.388,456.375 Z M 321.031,456.416 L 321.205,456.435 C 321.209,456.435 321.21,456.436 321.212,456.437 C 321.215,456.437 321.217,456.438 321.22,456.439 C 321.227,456.443 321.231,456.448 321.234,456.453 C 321.238,456.461 321.24,456.467 321.24,456.474 C 321.24,456.481 321.238,456.487 321.236,456.491 C 321.234,456.494 321.232,456.497 321.23,456.5 C 321.228,456.502 321.224,456.504 321.22,456.505 C 321.216,456.506 321.21,456.507 321.205,456.507 L 321.031,456.489 L 321.031,456.416 Z M 322.69,456.588 L 322.865,456.607 C 322.868,456.607 322.869,456.607 322.872,456.608 C 322.874,456.61 322.876,456.61 322.878,456.611 C 322.885,456.614 322.89,456.62 322.893,456.626 C 322.897,456.631 322.899,456.639 322.899,456.646 C 322.899,456.653 322.897,456.658 322.895,456.662 C 322.893,456.666 322.891,456.669 322.889,456.671 C 322.887,456.673 322.883,456.675 322.88,456.677 C 322.876,456.679 322.871,456.68 322.865,456.679 L 322.69,456.662 L 322.69,456.588 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 310.098,468.865 L 309.924,469.026 L 327.332,470.16 L 327.421,470.123 C 327.45,470.112 327.481,470.084 327.481,470.039 L 327.481,469.996 L 310.098,468.865 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 309.924,469.026 L 309.923,445.575 L 310.011,445.49 L 310.098,445.504 L 310.098,468.864 L 309.924,469.026 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--ESPRESSO, .KN95_NR_small_individuals--ESPRESSO {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.433 -517.463 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.846' gradientTransform='translate(30.075 489.993)'%3E%3Cstop offset='0' stop-color='%232e2926'/%3E%3Cstop offset='1' stop-color='%233c3631'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.919' gradientTransform='translate(26.536 490.609)'%3E%3Cstop offset='0' stop-color='%2326221f'/%3E%3Cstop offset='1' stop-color='%23332e2a'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.101' gradientTransform='translate(30.069 509.975)'%3E%3Cstop offset='0' stop-color='%232d2925'/%3E%3Cstop offset='1' stop-color='%23342f2b'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.23' gradientTransform='translate(25.396 512.032)'%3E%3Cstop offset='0' stop-color='%2324201e'/%3E%3Cstop offset='1' stop-color='%232d2925'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(38.388 511.847) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%232f2a27'/%3E%3Cstop offset='1' stop-color='%2335302c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.243 499.735) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%232c2824'/%3E%3Cstop offset='1' stop-color='%23332e2a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.162 500.734) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.162,487.578 L 27.162,511.065 L 44.609,512.184 C 44.621,512.17 44.631,512.151 44.631,512.127 L 44.631,489.946 L 27.162,487.578 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.162,487.578 L 23.698,490.941 L 23.697,512.962 L 27.162,511.065 L 27.162,487.578 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.162,511.065 L 23.697,512.962 L 40.629,513.892 L 44.573,512.211 C 44.586,512.206 44.599,512.196 44.609,512.184 L 27.162,511.065 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.075,510.797 L 23.695,512.686 L 23.694,512.962 L 27.075,511.111 L 27.075,510.797 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.203,493.18 L 34.203,493.591 L 34.275,493.599 L 34.275,493.188 L 34.203,493.18 Z M 34.333,493.194 L 34.333,493.603 L 34.405,493.554 L 34.667,493.38 L 34.667,493.641 L 34.738,493.649 L 34.738,493.238 L 34.667,493.288 L 34.405,493.462 L 34.405,493.202 L 34.333,493.194 Z M 34.796,493.244 L 34.796,493.655 L 34.999,493.676 C 35.027,493.68 35.053,493.677 35.076,493.668 C 35.101,493.662 35.123,493.649 35.142,493.632 C 35.16,493.615 35.174,493.596 35.184,493.572 C 35.195,493.548 35.201,493.522 35.201,493.495 C 35.201,493.468 35.197,493.444 35.188,493.421 C 35.179,493.398 35.167,493.377 35.152,493.357 C 35.151,493.354 35.149,493.352 35.147,493.35 C 35.145,493.347 35.144,493.345 35.14,493.342 C 35.123,493.321 35.101,493.305 35.076,493.292 C 35.054,493.279 35.028,493.27 34.999,493.267 L 34.796,493.244 Z M 35.258,493.295 L 35.258,493.706 L 35.332,493.713 L 35.332,493.303 L 35.258,493.295 Z M 34.868,493.325 L 34.999,493.339 C 35.016,493.342 35.033,493.347 35.048,493.355 C 35.065,493.365 35.078,493.376 35.09,493.389 C 35.101,493.401 35.112,493.417 35.119,493.432 C 35.125,493.45 35.128,493.467 35.129,493.486 C 35.128,493.504 35.125,493.52 35.119,493.535 C 35.112,493.552 35.101,493.564 35.09,493.574 C 35.078,493.586 35.065,493.594 35.048,493.599 C 35.033,493.604 35.016,493.605 34.999,493.604 L 34.868,493.59 L 34.868,493.325 Z M 35.573,493.329 L 35.402,493.648 L 35.365,493.718 L 35.447,493.725 L 35.483,493.655 L 35.573,493.491 L 35.661,493.676 L 35.697,493.752 L 35.778,493.762 L 35.741,493.684 L 35.573,493.329 Z M 35.814,493.355 L 35.814,493.765 L 35.887,493.773 L 35.887,493.364 L 35.814,493.355 Z M 35.945,493.371 L 35.945,493.779 L 36.147,493.801 C 36.175,493.805 36.201,493.801 36.226,493.794 C 36.25,493.786 36.271,493.774 36.289,493.757 C 36.309,493.741 36.322,493.72 36.333,493.697 C 36.344,493.673 36.349,493.648 36.349,493.618 C 36.349,493.594 36.345,493.569 36.337,493.546 C 36.328,493.522 36.317,493.501 36.301,493.482 C 36.299,493.48 36.297,493.477 36.295,493.475 C 36.294,493.471 36.292,493.469 36.288,493.467 C 36.27,493.447 36.25,493.429 36.226,493.416 C 36.201,493.403 36.175,493.395 36.147,493.391 L 35.945,493.371 Z M 36.533,493.45 C 36.507,493.456 36.485,493.469 36.467,493.487 C 36.448,493.504 36.434,493.523 36.423,493.546 C 36.414,493.571 36.408,493.598 36.408,493.625 L 36.408,493.83 L 36.479,493.838 L 36.479,493.633 C 36.479,493.614 36.483,493.598 36.489,493.582 C 36.496,493.568 36.506,493.554 36.519,493.545 C 36.531,493.533 36.544,493.525 36.56,493.52 C 36.575,493.515 36.591,493.513 36.61,493.515 C 36.628,493.518 36.645,493.522 36.66,493.531 C 36.676,493.539 36.69,493.551 36.702,493.564 C 36.713,493.577 36.723,493.592 36.729,493.61 C 36.737,493.625 36.74,493.643 36.74,493.662 L 36.74,493.866 L 36.813,493.874 L 36.813,493.668 C 36.813,493.641 36.807,493.614 36.797,493.588 C 36.785,493.561 36.772,493.538 36.752,493.518 C 36.735,493.497 36.713,493.481 36.688,493.466 C 36.665,493.454 36.638,493.445 36.61,493.442 C 36.581,493.439 36.556,493.442 36.533,493.45 Z M 36.016,493.45 L 36.147,493.464 C 36.164,493.466 36.18,493.471 36.197,493.481 C 36.213,493.489 36.227,493.5 36.239,493.513 C 36.251,493.527 36.26,493.541 36.266,493.558 C 36.273,493.574 36.276,493.592 36.277,493.611 C 36.276,493.628 36.273,493.646 36.266,493.661 C 36.26,493.676 36.251,493.688 36.239,493.701 C 36.227,493.71 36.213,493.718 36.197,493.723 C 36.18,493.729 36.164,493.73 36.147,493.728 L 36.016,493.714 L 36.016,493.45 Z M 36.848,493.467 L 36.884,493.546 L 37.053,493.9 L 37.224,493.582 L 37.26,493.513 L 37.18,493.504 L 37.143,493.572 L 37.053,493.739 L 36.966,493.553 L 36.928,493.477 L 36.848,493.467 Z M 37.395,493.531 C 37.384,493.532 37.376,493.533 37.367,493.537 C 37.354,493.543 37.343,493.55 37.333,493.559 C 37.324,493.569 37.315,493.578 37.309,493.591 C 37.305,493.6 37.302,493.609 37.3,493.617 C 37.297,493.627 37.296,493.636 37.296,493.648 L 37.296,493.927 L 37.367,493.934 L 37.367,493.648 C 37.369,493.639 37.371,493.631 37.376,493.625 C 37.38,493.618 37.385,493.614 37.393,493.611 C 37.401,493.605 37.41,493.604 37.417,493.604 L 37.63,493.625 L 37.63,493.552 L 37.424,493.53 C 37.414,493.529 37.404,493.53 37.395,493.531 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.001,499.909 L 31.999,501.96 L 32.337,501.996 L 32.339,500.947 L 32.618,501.251 L 32.869,501.524 L 33.397,502.103 L 33.9,502.154 L 33.071,501.246 L 33.895,500.102 L 33.477,500.059 L 32.82,500.971 L 32.339,500.452 L 32.339,499.943 L 32.001,499.909 Z M 34.067,500.12 L 34.241,500.504 L 35.034,502.269 L 35.831,500.666 L 36.004,500.317 L 35.626,500.278 L 35.452,500.627 L 35.035,501.465 L 34.62,500.543 L 34.448,500.159 L 34.067,500.12 Z M 36.176,500.334 L 36.178,500.334 L 36.439,500.726 L 36.904,501.43 L 37.12,501.751 L 37.378,502.143 L 36.171,502.019 L 36.171,502.384 L 37.639,502.535 L 38.064,502.577 L 37.801,502.184 L 37.33,501.473 L 37.118,501.151 L 36.862,500.771 L 38.075,500.893 L 38.076,500.525 L 36.607,500.378 L 36.603,500.378 L 36.176,500.334 Z M 38.651,500.628 C 38.591,500.653 38.536,500.686 38.489,500.732 C 38.443,500.778 38.406,500.833 38.38,500.897 C 38.354,500.961 38.341,501.032 38.34,501.108 L 38.339,502.052 C 38.339,502.129 38.351,502.203 38.378,502.271 C 38.405,502.341 38.44,502.402 38.488,502.459 C 38.534,502.513 38.588,502.559 38.65,502.593 C 38.711,502.629 38.778,502.65 38.849,502.658 L 40.234,502.798 L 40.234,502.433 L 38.849,502.291 C 38.816,502.286 38.787,502.276 38.761,502.257 C 38.735,502.237 38.714,502.213 38.699,502.183 C 38.683,502.153 38.676,502.121 38.676,502.086 L 38.676,501.895 L 39.896,502.02 L 39.896,501.654 L 38.676,501.531 L 38.676,501.143 C 38.676,501.107 38.684,501.078 38.701,501.052 C 38.716,501.024 38.737,501.003 38.763,500.989 C 38.789,500.975 38.817,500.969 38.851,500.971 L 40.236,501.113 L 40.237,500.747 L 38.851,500.605 C 38.78,500.6 38.714,500.606 38.651,500.628 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.004,498.818 L 34.004,499.256 C 34.004,499.278 34.009,499.299 34.016,499.321 C 34.024,499.341 34.035,499.36 34.05,499.375 C 34.065,499.391 34.081,499.404 34.101,499.415 C 34.121,499.425 34.141,499.432 34.163,499.435 L 34.596,499.48 L 34.596,499.374 L 34.163,499.328 C 34.154,499.326 34.145,499.323 34.136,499.316 C 34.128,499.31 34.123,499.304 34.117,499.296 C 34.112,499.286 34.11,499.278 34.11,499.267 L 34.11,499.212 L 34.491,499.251 L 34.491,499.144 L 34.11,499.104 L 34.11,498.83 L 34.004,498.818 Z M 34.682,498.891 L 34.682,499.328 C 34.682,499.349 34.686,499.371 34.694,499.391 C 34.701,499.412 34.712,499.429 34.727,499.446 C 34.742,499.463 34.759,499.476 34.778,499.487 C 34.797,499.497 34.817,499.504 34.841,499.506 L 35.273,499.551 L 35.274,499.445 L 34.841,499.399 C 34.831,499.397 34.822,499.394 34.814,499.389 C 34.806,499.382 34.8,499.375 34.795,499.367 C 34.79,499.358 34.788,499.349 34.788,499.339 L 34.788,499.283 L 35.168,499.324 L 35.168,499.217 L 34.787,499.175 L 34.788,498.901 L 34.682,498.891 Z M 35.359,498.962 L 35.358,499.562 L 35.732,499.601 C 35.754,499.603 35.775,499.601 35.793,499.594 C 35.813,499.588 35.829,499.579 35.844,499.566 L 35.845,499.564 C 35.861,499.55 35.871,499.535 35.88,499.516 C 35.887,499.497 35.893,499.478 35.893,499.455 C 35.893,499.433 35.887,499.412 35.881,499.392 C 35.872,499.372 35.862,499.354 35.847,499.338 C 35.834,499.323 35.817,499.308 35.799,499.297 C 35.785,499.289 35.77,499.283 35.753,499.28 C 35.752,499.28 35.75,499.28 35.749,499.279 L 35.749,499.278 L 35.465,499.248 L 35.465,498.973 L 35.359,498.962 Z M 35.976,499.025 L 35.976,499.201 C 35.976,499.215 35.977,499.226 35.979,499.238 C 35.982,499.249 35.986,499.261 35.989,499.272 C 35.998,499.294 36.01,499.313 36.026,499.33 C 36.041,499.349 36.058,499.363 36.079,499.375 C 36.099,499.385 36.12,499.392 36.144,499.396 L 36.397,499.423 L 36.4,499.423 C 36.412,499.426 36.423,499.432 36.433,499.439 C 36.442,499.446 36.449,499.455 36.454,499.466 C 36.46,499.476 36.462,499.488 36.462,499.5 C 36.462,499.513 36.459,499.524 36.453,499.535 C 36.447,499.544 36.44,499.551 36.429,499.557 C 36.418,499.563 36.407,499.565 36.393,499.564 L 35.977,499.519 L 35.977,499.626 L 36.393,499.671 C 36.418,499.673 36.442,499.671 36.462,499.664 C 36.482,499.657 36.5,499.646 36.518,499.631 C 36.534,499.617 36.546,499.6 36.554,499.58 C 36.564,499.56 36.568,499.536 36.568,499.511 C 36.568,499.499 36.567,499.487 36.565,499.476 C 36.562,499.464 36.559,499.452 36.553,499.441 C 36.551,499.429 36.546,499.42 36.539,499.411 C 36.534,499.402 36.527,499.392 36.52,499.384 C 36.504,499.366 36.485,499.351 36.465,499.34 C 36.444,499.328 36.423,499.322 36.399,499.316 L 36.397,499.316 C 36.396,499.316 36.395,499.316 36.393,499.316 L 36.144,499.29 C 36.132,499.288 36.122,499.283 36.113,499.275 C 36.103,499.268 36.095,499.259 36.09,499.248 C 36.085,499.238 36.083,499.227 36.083,499.215 L 36.083,499.145 L 36.566,499.194 L 36.566,499.087 L 36.149,499.043 L 35.976,499.025 Z M 37.066,499.142 L 37.066,499.738 L 37.171,499.669 L 37.552,499.411 L 37.552,499.793 L 37.657,499.803 L 37.658,499.204 L 37.552,499.275 L 37.171,499.531 L 37.171,499.153 L 37.066,499.142 Z M 37.743,499.214 L 37.742,499.814 L 38.116,499.852 C 38.137,499.855 38.158,499.853 38.178,499.846 C 38.198,499.839 38.214,499.829 38.228,499.816 C 38.242,499.804 38.254,499.788 38.262,499.769 C 38.27,499.749 38.275,499.729 38.275,499.707 C 38.275,499.685 38.27,499.665 38.263,499.643 C 38.255,499.624 38.244,499.606 38.23,499.59 C 38.217,499.574 38.2,499.561 38.183,499.55 C 38.167,499.542 38.152,499.535 38.136,499.53 L 38.222,499.371 L 38.275,499.27 L 38.157,499.257 L 38.103,499.358 L 38.046,499.465 L 38.043,499.469 C 38.034,499.484 38.022,499.495 38.005,499.502 C 37.991,499.51 37.973,499.512 37.953,499.51 L 37.849,499.499 L 37.85,499.225 L 37.743,499.214 Z M 35.465,499.354 L 35.733,499.382 C 35.736,499.382 35.739,499.383 35.745,499.384 C 35.748,499.387 35.751,499.388 35.755,499.39 L 35.755,499.39 C 35.765,499.395 35.773,499.403 35.778,499.413 C 35.784,499.421 35.787,499.433 35.787,499.443 C 35.787,499.454 35.785,499.461 35.781,499.468 C 35.778,499.474 35.774,499.479 35.771,499.482 C 35.767,499.484 35.763,499.487 35.756,499.49 C 35.75,499.492 35.741,499.493 35.733,499.492 L 35.465,499.465 L 35.465,499.354 Z M 37.849,499.606 L 38.116,499.634 C 38.12,499.635 38.123,499.635 38.127,499.637 C 38.131,499.639 38.134,499.64 38.137,499.641 C 38.147,499.647 38.155,499.657 38.16,499.666 C 38.166,499.675 38.171,499.685 38.171,499.696 C 38.169,499.706 38.167,499.714 38.163,499.72 C 38.159,499.727 38.157,499.73 38.153,499.733 C 38.15,499.736 38.146,499.74 38.139,499.742 C 38.133,499.744 38.125,499.746 38.116,499.744 L 37.848,499.717 L 37.849,499.606 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.118,497.622 L 32.118,498.02 L 32.36,498.045 C 32.375,498.046 32.388,498.045 32.401,498.041 C 32.412,498.037 32.424,498.032 32.434,498.022 L 32.434,498.02 C 32.444,498.012 32.451,498.002 32.456,497.989 C 32.461,497.976 32.465,497.963 32.465,497.948 C 32.465,497.934 32.462,497.919 32.457,497.906 C 32.452,497.893 32.446,497.881 32.436,497.87 C 32.427,497.859 32.415,497.851 32.404,497.844 C 32.395,497.838 32.385,497.834 32.375,497.833 C 32.373,497.833 32.372,497.832 32.371,497.832 L 32.371,497.832 L 32.187,497.813 L 32.187,497.63 L 32.118,497.622 Z M 32.518,497.662 L 32.518,498.06 L 32.762,498.086 C 32.777,498.087 32.79,498.086 32.802,498.082 C 32.814,498.077 32.825,498.071 32.834,498.062 C 32.844,498.053 32.851,498.043 32.858,498.032 C 32.862,498.019 32.865,498.005 32.866,497.99 C 32.865,497.975 32.862,497.961 32.859,497.948 C 32.851,497.935 32.845,497.924 32.836,497.913 C 32.827,497.902 32.817,497.893 32.805,497.886 C 32.795,497.879 32.786,497.875 32.776,497.873 L 32.83,497.766 L 32.866,497.699 L 32.789,497.69 L 32.753,497.756 L 32.716,497.829 L 32.714,497.832 C 32.709,497.842 32.7,497.849 32.691,497.853 C 32.679,497.859 32.669,497.86 32.657,497.859 L 32.588,497.852 L 32.588,497.67 L 32.518,497.662 Z M 33.025,497.731 C 33.003,497.739 32.982,497.752 32.965,497.767 C 32.946,497.785 32.932,497.805 32.924,497.826 C 32.913,497.851 32.909,497.875 32.907,497.903 C 32.909,497.931 32.913,497.957 32.923,497.98 C 32.932,498.007 32.946,498.03 32.963,498.05 C 32.982,498.069 33.002,498.086 33.025,498.098 C 33.048,498.112 33.072,498.12 33.1,498.123 C 33.126,498.125 33.151,498.123 33.176,498.115 C 33.197,498.105 33.219,498.095 33.236,498.077 C 33.254,498.061 33.268,498.043 33.277,498.019 C 33.287,497.995 33.292,497.969 33.292,497.942 C 33.292,497.915 33.287,497.89 33.277,497.863 C 33.268,497.838 33.254,497.818 33.237,497.797 C 33.22,497.777 33.197,497.759 33.176,497.747 C 33.151,497.735 33.127,497.727 33.101,497.723 L 33.062,497.724 C 33.049,497.726 33.037,497.728 33.025,497.731 Z M 33.492,497.764 L 33.492,498.091 L 33.335,498.075 L 33.335,498.146 L 33.718,498.187 L 33.718,498.116 L 33.563,498.098 L 33.563,497.77 L 33.492,497.764 Z M 33.101,497.795 C 33.118,497.797 33.134,497.802 33.149,497.81 C 33.164,497.819 33.177,497.829 33.187,497.842 C 33.198,497.853 33.209,497.869 33.215,497.886 C 33.221,497.902 33.225,497.918 33.225,497.936 C 33.225,497.953 33.221,497.969 33.215,497.984 C 33.209,498 33.198,498.013 33.187,498.023 C 33.176,498.033 33.163,498.041 33.149,498.045 C 33.133,498.051 33.118,498.052 33.1,498.051 C 33.083,498.05 33.066,498.045 33.052,498.036 C 33.037,498.028 33.023,498.018 33.012,498.005 C 33.002,497.991 32.993,497.978 32.986,497.96 C 32.981,497.944 32.976,497.928 32.976,497.911 C 32.976,497.893 32.981,497.875 32.986,497.86 C 32.993,497.846 33.002,497.834 33.013,497.824 C 33.024,497.813 33.037,497.805 33.052,497.8 C 33.066,497.795 33.084,497.794 33.101,497.795 Z M 33.837,497.809 C 33.827,497.813 33.815,497.819 33.806,497.829 C 33.796,497.838 33.789,497.847 33.783,497.86 C 33.778,497.872 33.777,497.887 33.777,497.902 L 33.776,498.085 C 33.777,498.099 33.777,498.115 33.783,498.128 C 33.789,498.141 33.796,498.153 33.806,498.164 C 33.815,498.175 33.825,498.183 33.837,498.19 C 33.85,498.196 33.864,498.201 33.878,498.203 L 34.16,498.233 L 34.16,498.161 L 33.878,498.132 C 33.873,498.13 33.866,498.129 33.86,498.125 C 33.856,498.122 33.851,498.117 33.848,498.111 C 33.845,498.103 33.843,498.098 33.843,498.091 L 33.843,498.055 L 34.092,498.08 L 34.092,498.009 L 33.843,497.983 L 33.844,497.91 C 33.844,497.902 33.845,497.897 33.848,497.891 C 33.851,497.886 33.856,497.881 33.86,497.878 C 33.866,497.875 33.874,497.875 33.878,497.875 L 34.16,497.905 L 34.16,497.834 L 33.879,497.805 C 33.864,497.803 33.851,497.805 33.837,497.809 Z M 34.326,497.866 C 34.303,497.874 34.284,497.887 34.266,497.903 C 34.248,497.919 34.234,497.939 34.224,497.961 C 34.215,497.985 34.209,498.011 34.209,498.038 C 34.209,498.065 34.215,498.091 34.224,498.117 C 34.234,498.142 34.248,498.164 34.266,498.185 C 34.284,498.204 34.303,498.221 34.326,498.234 C 34.35,498.247 34.375,498.254 34.402,498.258 L 34.594,498.277 L 34.594,498.205 L 34.402,498.186 C 34.384,498.184 34.369,498.178 34.353,498.17 C 34.339,498.163 34.325,498.153 34.313,498.139 C 34.303,498.127 34.293,498.114 34.287,498.096 C 34.282,498.08 34.278,498.063 34.278,498.045 C 34.278,498.028 34.282,498.011 34.287,497.995 C 34.293,497.98 34.303,497.968 34.314,497.958 C 34.325,497.948 34.339,497.94 34.354,497.935 C 34.369,497.929 34.384,497.928 34.402,497.929 L 34.594,497.95 L 34.594,497.878 L 34.402,497.858 L 34.363,497.858 C 34.351,497.859 34.339,497.862 34.326,497.866 Z M 32.187,497.883 L 32.361,497.901 C 32.363,497.902 32.367,497.902 32.369,497.903 C 32.371,497.903 32.373,497.904 32.376,497.906 C 32.382,497.91 32.387,497.914 32.391,497.921 C 32.395,497.927 32.395,497.934 32.395,497.941 C 32.395,497.947 32.395,497.953 32.393,497.956 C 32.39,497.961 32.388,497.965 32.386,497.966 C 32.383,497.967 32.38,497.969 32.376,497.971 C 32.372,497.974 32.368,497.974 32.361,497.974 L 32.187,497.956 L 32.187,497.883 Z M 34.807,497.902 L 34.807,498.228 L 34.649,498.211 L 34.649,498.284 L 35.034,498.323 L 35.034,498.252 L 34.876,498.234 L 34.876,497.909 L 34.807,497.902 Z M 32.588,497.924 L 32.762,497.942 C 32.763,497.942 32.767,497.942 32.77,497.943 C 32.772,497.943 32.774,497.945 32.777,497.946 C 32.783,497.95 32.788,497.955 32.792,497.961 C 32.795,497.967 32.797,497.974 32.797,497.981 C 32.797,497.989 32.795,497.993 32.794,497.999 C 32.792,498.003 32.789,498.006 32.787,498.007 C 32.785,498.009 32.781,498.011 32.778,498.013 C 32.774,498.015 32.768,498.016 32.762,498.015 L 32.588,497.997 L 32.588,497.924 Z M 35.089,497.929 L 35.088,498.328 L 35.158,498.336 L 35.158,497.937 L 35.089,497.929 Z M 35.388,497.961 L 35.226,498.271 L 35.189,498.339 L 35.267,498.347 L 35.304,498.279 L 35.387,498.118 L 35.471,498.297 L 35.506,498.372 L 35.583,498.381 L 35.548,498.304 L 35.388,497.961 Z M 35.681,498 C 35.669,498.005 35.659,498.011 35.649,498.02 C 35.64,498.028 35.632,498.039 35.627,498.052 C 35.621,498.063 35.617,498.077 35.617,498.091 L 35.617,498.276 C 35.617,498.29 35.62,498.303 35.626,498.317 C 35.63,498.331 35.639,498.343 35.649,498.355 C 35.658,498.365 35.669,498.375 35.681,498.381 C 35.693,498.388 35.706,498.392 35.721,498.394 L 36.002,498.423 L 36.002,498.352 L 35.721,498.323 C 35.713,498.322 35.708,498.319 35.703,498.316 C 35.698,498.312 35.694,498.308 35.691,498.301 C 35.687,498.296 35.686,498.29 35.686,498.284 L 35.686,498.246 L 35.935,498.271 L 35.935,498.201 L 35.687,498.175 L 35.687,498.099 C 35.687,498.092 35.688,498.087 35.692,498.082 C 35.694,498.077 35.698,498.071 35.704,498.07 C 35.708,498.067 35.714,498.065 35.722,498.066 L 36.003,498.096 L 36.003,498.025 L 35.722,497.995 C 35.707,497.993 35.693,497.995 35.681,498 Z M 36.326,498.058 L 36.324,498.455 L 36.567,498.482 C 36.581,498.483 36.595,498.482 36.608,498.477 C 36.62,498.472 36.632,498.466 36.642,498.458 C 36.651,498.448 36.658,498.438 36.664,498.425 C 36.668,498.412 36.671,498.399 36.671,498.384 C 36.671,498.369 36.668,498.355 36.664,498.342 C 36.659,498.329 36.652,498.316 36.643,498.307 C 36.634,498.297 36.623,498.287 36.61,498.281 C 36.602,498.275 36.591,498.271 36.581,498.269 L 36.637,498.161 L 36.671,498.092 L 36.594,498.085 L 36.56,498.153 L 36.523,498.223 L 36.521,498.226 C 36.515,498.236 36.506,498.244 36.495,498.249 C 36.486,498.253 36.475,498.256 36.463,498.255 L 36.393,498.247 L 36.393,498.064 L 36.326,498.058 Z M 36.791,498.116 C 36.778,498.119 36.767,498.127 36.759,498.135 C 36.749,498.143 36.742,498.154 36.737,498.166 C 36.731,498.178 36.727,498.193 36.727,498.207 L 36.727,498.391 C 36.727,498.406 36.731,498.419 36.736,498.432 C 36.741,498.447 36.748,498.459 36.759,498.471 C 36.767,498.482 36.778,498.49 36.791,498.497 C 36.803,498.503 36.816,498.508 36.83,498.509 L 37.113,498.537 L 37.113,498.467 L 36.83,498.439 C 36.825,498.438 36.818,498.434 36.813,498.43 C 36.81,498.427 36.804,498.422 36.801,498.417 C 36.798,498.41 36.796,498.405 36.796,498.397 L 36.796,498.362 L 37.043,498.386 L 37.043,498.315 L 36.797,498.29 L 36.797,498.215 C 36.797,498.207 36.798,498.202 36.801,498.196 C 36.804,498.192 36.81,498.188 36.813,498.185 C 36.819,498.182 36.825,498.181 36.83,498.181 L 37.114,498.211 L 37.114,498.14 L 36.831,498.111 C 36.817,498.11 36.804,498.112 36.791,498.116 Z M 37.242,498.163 C 37.228,498.168 37.216,498.176 37.204,498.186 C 37.192,498.195 37.185,498.209 37.177,498.224 C 37.171,498.238 37.167,498.254 37.167,498.271 L 37.238,498.278 C 37.238,498.268 37.24,498.258 37.243,498.252 C 37.249,498.244 37.255,498.238 37.262,498.234 C 37.271,498.23 37.278,498.229 37.29,498.229 L 37.411,498.242 C 37.42,498.243 37.43,498.247 37.438,498.252 C 37.444,498.258 37.451,498.264 37.456,498.274 C 37.461,498.283 37.463,498.291 37.463,498.302 C 37.463,498.312 37.461,498.321 37.456,498.329 C 37.451,498.337 37.444,498.342 37.438,498.347 C 37.429,498.35 37.42,498.352 37.411,498.351 L 37.271,498.337 L 37.251,498.337 C 37.243,498.337 37.238,498.339 37.232,498.341 C 37.219,498.344 37.21,498.351 37.199,498.359 C 37.195,498.363 37.19,498.368 37.185,498.375 C 37.18,498.383 37.175,498.392 37.172,498.402 C 37.169,498.412 37.167,498.423 37.167,498.433 L 37.167,498.436 C 37.167,498.452 37.171,498.465 37.175,498.478 C 37.181,498.492 37.188,498.504 37.198,498.515 C 37.209,498.526 37.218,498.535 37.23,498.541 C 37.243,498.549 37.256,498.553 37.271,498.554 L 37.427,498.571 C 37.441,498.573 37.454,498.571 37.467,498.567 C 37.48,498.562 37.491,498.556 37.5,498.548 C 37.51,498.537 37.518,498.527 37.523,498.515 C 37.529,498.503 37.531,498.49 37.531,498.474 L 37.531,498.472 L 37.462,498.464 L 37.462,498.466 C 37.462,498.473 37.461,498.478 37.457,498.484 C 37.454,498.49 37.45,498.493 37.444,498.497 C 37.44,498.498 37.434,498.5 37.427,498.499 L 37.271,498.484 C 37.264,498.483 37.258,498.48 37.253,498.476 C 37.249,498.472 37.243,498.467 37.24,498.461 C 37.238,498.456 37.237,498.45 37.237,498.443 L 37.237,498.44 C 37.237,498.432 37.238,498.428 37.24,498.422 C 37.243,498.417 37.249,498.413 37.253,498.41 C 37.258,498.408 37.264,498.406 37.271,498.407 L 37.411,498.421 L 37.436,498.421 C 37.443,498.419 37.452,498.419 37.459,498.416 C 37.475,498.41 37.488,498.402 37.5,498.391 C 37.5,498.391 37.501,498.39 37.502,498.388 C 37.502,498.387 37.502,498.387 37.504,498.386 C 37.513,498.376 37.52,498.365 37.524,498.352 C 37.53,498.339 37.532,498.323 37.532,498.309 C 37.532,498.291 37.529,498.275 37.522,498.258 C 37.517,498.244 37.508,498.229 37.496,498.218 C 37.484,498.204 37.472,498.193 37.457,498.185 C 37.443,498.178 37.427,498.172 37.411,498.17 L 37.29,498.158 C 37.273,498.156 37.256,498.158 37.242,498.163 Z M 37.588,498.19 L 37.586,498.587 L 37.83,498.613 C 37.844,498.614 37.857,498.613 37.869,498.608 C 37.882,498.605 37.893,498.598 37.904,498.588 L 37.904,498.588 C 37.913,498.579 37.92,498.568 37.926,498.556 C 37.93,498.542 37.933,498.529 37.933,498.515 C 37.933,498.5 37.932,498.486 37.926,498.474 C 37.921,498.459 37.914,498.448 37.906,498.438 C 37.896,498.426 37.887,498.418 37.874,498.411 C 37.865,498.406 37.855,498.402 37.844,498.4 C 37.843,498.4 37.842,498.399 37.841,498.399 L 37.841,498.399 L 37.656,498.38 L 37.656,498.196 L 37.588,498.19 Z M 37.99,498.231 L 37.989,498.629 L 38.056,498.635 L 38.057,498.238 L 37.99,498.231 Z M 38.114,498.242 L 38.113,498.64 L 38.355,498.665 C 38.37,498.668 38.383,498.666 38.397,498.662 C 38.409,498.659 38.418,498.65 38.429,498.642 C 38.438,498.632 38.445,498.622 38.45,498.61 C 38.456,498.598 38.458,498.585 38.459,498.569 C 38.458,498.555 38.456,498.541 38.451,498.528 C 38.446,498.515 38.439,498.502 38.431,498.491 C 38.422,498.482 38.411,498.473 38.399,498.465 C 38.388,498.459 38.378,498.457 38.369,498.453 L 38.424,498.347 L 38.459,498.278 L 38.382,498.27 L 38.346,498.339 L 38.311,498.408 L 38.308,498.411 C 38.302,498.42 38.295,498.428 38.284,498.432 C 38.274,498.439 38.262,498.441 38.25,498.44 L 38.182,498.432 L 38.182,498.249 L 38.114,498.242 Z M 38.493,498.284 L 38.528,498.358 L 38.688,498.701 L 38.851,498.391 L 38.887,498.323 L 38.809,498.316 L 38.774,498.383 L 38.688,498.544 L 38.604,498.366 L 38.57,498.29 L 38.493,498.284 Z M 36.393,498.317 L 36.568,498.337 C 36.571,498.337 36.573,498.339 36.575,498.339 C 36.578,498.339 36.579,498.341 36.581,498.342 C 36.588,498.345 36.593,498.35 36.598,498.356 C 36.601,498.363 36.603,498.369 36.603,498.378 C 36.603,498.383 36.602,498.389 36.599,498.393 C 36.597,498.397 36.594,498.4 36.592,498.402 C 36.589,498.405 36.586,498.406 36.584,498.407 C 36.58,498.408 36.578,498.408 36.576,498.409 L 36.567,498.409 L 36.393,498.391 L 36.393,498.317 Z M 39.077,498.343 L 39.077,498.672 L 38.919,498.654 L 38.918,498.725 L 39.303,498.765 L 39.303,498.696 L 39.145,498.678 L 39.146,498.35 L 39.077,498.343 Z M 39.463,498.399 C 39.439,498.406 39.42,498.419 39.402,498.434 C 39.386,498.452 39.371,498.472 39.36,498.495 C 39.351,498.516 39.345,498.542 39.345,498.571 C 39.345,498.598 39.35,498.624 39.36,498.648 C 39.37,498.675 39.385,498.697 39.402,498.716 C 39.42,498.737 39.439,498.753 39.463,498.766 C 39.487,498.779 39.512,498.788 39.538,498.79 C 39.566,498.792 39.589,498.79 39.613,498.782 C 39.636,498.775 39.657,498.762 39.675,498.744 C 39.692,498.729 39.705,498.71 39.715,498.686 C 39.726,498.664 39.73,498.638 39.731,498.61 C 39.73,498.583 39.726,498.556 39.715,498.53 C 39.705,498.506 39.692,498.484 39.675,498.463 C 39.658,498.445 39.637,498.427 39.613,498.415 C 39.59,498.402 39.566,498.394 39.539,498.391 L 39.501,498.391 C 39.487,498.393 39.476,498.395 39.463,498.399 Z M 39.773,498.415 L 39.772,498.812 L 40.015,498.838 C 40.028,498.839 40.042,498.837 40.055,498.833 C 40.068,498.829 40.079,498.823 40.089,498.815 C 40.098,498.806 40.105,498.795 40.11,498.782 C 40.115,498.77 40.118,498.755 40.118,498.741 C 40.118,498.727 40.115,498.714 40.111,498.7 C 40.106,498.686 40.1,498.675 40.089,498.664 C 40.081,498.652 40.07,498.644 40.059,498.637 C 40.049,498.632 40.038,498.628 40.027,498.626 L 40.084,498.517 L 40.118,498.45 L 40.041,498.443 L 40.007,498.51 L 39.969,498.581 L 39.968,498.584 C 39.962,498.594 39.954,498.601 39.944,498.607 C 39.934,498.611 39.921,498.613 39.909,498.611 L 39.841,498.606 L 39.841,498.421 L 39.773,498.415 Z M 37.656,498.45 L 37.83,498.468 C 37.832,498.469 37.836,498.469 37.839,498.471 C 37.841,498.471 37.843,498.472 37.845,498.473 L 37.845,498.474 C 37.851,498.478 37.856,498.483 37.86,498.489 C 37.864,498.495 37.865,498.502 37.866,498.51 C 37.865,498.515 37.865,498.521 37.863,498.524 C 37.859,498.529 37.857,498.532 37.856,498.534 C 37.853,498.535 37.85,498.537 37.846,498.539 C 37.842,498.541 37.836,498.542 37.83,498.541 L 37.656,498.523 L 37.656,498.45 Z M 39.539,498.462 C 39.556,498.464 39.572,498.469 39.586,498.478 C 39.601,498.485 39.614,498.497 39.626,498.51 C 39.638,498.523 39.646,498.537 39.652,498.553 C 39.66,498.568 39.662,498.586 39.662,498.604 C 39.662,498.62 39.66,498.637 39.652,498.651 C 39.646,498.668 39.637,498.681 39.625,498.691 C 39.614,498.701 39.601,498.709 39.586,498.714 C 39.572,498.718 39.555,498.719 39.538,498.718 C 39.521,498.716 39.505,498.71 39.489,498.704 C 39.476,498.697 39.462,498.684 39.45,498.673 C 39.438,498.659 39.43,498.644 39.424,498.628 C 39.418,498.612 39.415,498.596 39.414,498.579 C 39.415,498.56 39.418,498.542 39.424,498.528 C 39.43,498.514 39.438,498.502 39.45,498.491 C 39.462,498.482 39.476,498.473 39.489,498.468 C 39.505,498.462 39.521,498.46 39.539,498.462 Z M 38.182,498.503 L 38.355,498.523 C 38.358,498.523 38.359,498.523 38.363,498.524 C 38.365,498.524 38.367,498.525 38.37,498.526 C 38.376,498.529 38.381,498.535 38.384,498.541 C 38.388,498.549 38.391,498.555 38.391,498.562 C 38.391,498.568 38.388,498.575 38.387,498.579 C 38.384,498.582 38.382,498.585 38.38,498.587 C 38.378,498.59 38.374,498.591 38.371,498.593 C 38.366,498.594 38.36,498.594 38.355,498.594 L 38.182,498.577 L 38.182,498.503 Z M 39.841,498.676 L 40.015,498.696 C 40.018,498.696 40.02,498.696 40.022,498.697 C 40.025,498.697 40.026,498.697 40.028,498.699 C 40.035,498.703 40.04,498.708 40.045,498.714 C 40.049,498.719 40.051,498.726 40.051,498.734 C 40.05,498.74 40.049,498.744 40.047,498.749 C 40.045,498.753 40.041,498.756 40.038,498.758 C 40.037,498.761 40.033,498.762 40.03,498.764 C 40.026,498.767 40.021,498.767 40.015,498.767 L 39.841,498.749 L 39.841,498.676 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.248,510.953 L 27.075,511.113 L 44.483,512.249 L 44.573,512.21 C 44.602,512.2 44.631,512.172 44.631,512.127 L 44.631,512.084 L 27.248,510.953 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.075,511.113 L 27.074,487.662 L 27.162,487.578 L 27.248,487.591 L 27.248,510.952 L 27.075,511.113 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--DOVE_GREY, .KN95_NR_small_individuals--DOVE_GREY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='111.72 -391.2 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.303' y2='19.847' gradientTransform='translate(124.362 363.729)'%3E%3Cstop offset='0' stop-color='%23807979'/%3E%3Cstop offset='1' stop-color='%23ababab'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.921' gradientTransform='translate(120.823 364.345)'%3E%3Cstop offset='0' stop-color='%236a6a6a'/%3E%3Cstop offset='1' stop-color='%23929292'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(124.356 383.713)'%3E%3Cstop offset='0' stop-color='%237f7f7f'/%3E%3Cstop offset='1' stop-color='%23949494'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.118' y2='-0.23' gradientTransform='translate(119.682 385.769)'%3E%3Cstop offset='0' stop-color='%23686868'/%3E%3Cstop offset='1' stop-color='%237f7f7f'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(132.676 385.584) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23878787'/%3E%3Cstop offset='1' stop-color='%23989898'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.164' y2='0' gradientTransform='translate(121.531 373.473) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%237f7f7f'/%3E%3Cstop offset='1' stop-color='%23929292'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(128.449 374.471) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 121.45,361.316 L 121.45,384.802 L 138.897,385.921 C 138.909,385.907 138.917,385.887 138.917,385.863 L 138.917,363.682 L 121.45,361.316 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 121.45,361.316 L 117.986,364.678 L 117.983,386.7 L 121.45,384.802 L 121.45,361.316 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 121.45,384.802 L 117.983,386.7 L 134.916,387.629 L 138.859,385.949 C 138.873,385.943 138.886,385.934 138.897,385.921 L 121.45,384.802 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 121.362,384.533 L 117.983,386.423 L 117.982,386.7 L 121.362,384.849 L 121.362,384.533 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 128.491,366.917 L 128.491,367.328 L 128.563,367.336 L 128.563,366.925 L 128.491,366.917 Z M 128.621,366.931 L 128.621,367.34 L 128.692,367.292 L 128.954,367.117 L 128.954,367.377 L 129.025,367.387 L 129.025,366.976 L 128.954,367.024 L 128.692,367.199 L 128.692,366.94 L 128.621,366.931 Z M 129.083,366.981 L 129.083,367.392 L 129.286,367.414 C 129.314,367.417 129.34,367.415 129.363,367.406 C 129.389,367.4 129.41,367.387 129.428,367.368 C 129.447,367.352 129.461,367.333 129.472,367.31 C 129.482,367.286 129.488,367.258 129.488,367.231 C 129.488,367.206 129.483,367.181 129.476,367.159 C 129.466,367.135 129.454,367.113 129.44,367.095 C 129.438,367.091 129.436,367.089 129.435,367.087 C 129.433,367.085 129.43,367.082 129.428,367.08 C 129.41,367.058 129.389,367.042 129.363,367.029 C 129.34,367.016 129.314,367.007 129.286,367.004 L 129.083,366.981 Z M 129.546,367.031 L 129.546,367.443 L 129.62,367.449 L 129.62,367.04 L 129.546,367.031 Z M 129.156,367.063 L 129.286,367.077 C 129.304,367.079 129.32,367.085 129.336,367.093 C 129.352,367.101 129.366,367.112 129.377,367.125 C 129.39,367.138 129.398,367.153 129.406,367.17 C 129.412,367.188 129.415,367.205 129.415,367.222 C 129.415,367.241 129.412,367.257 129.406,367.273 C 129.398,367.289 129.39,367.302 129.377,367.312 C 129.366,367.323 129.352,367.33 129.336,367.336 C 129.32,367.341 129.304,367.342 129.286,367.34 L 129.156,367.326 L 129.156,367.063 Z M 129.861,367.067 L 129.689,367.386 L 129.653,367.454 L 129.734,367.462 L 129.77,367.393 L 129.861,367.228 L 129.948,367.413 L 129.985,367.49 L 130.066,367.5 L 130.029,367.421 L 129.861,367.067 Z M 130.102,367.093 L 130.102,367.503 L 130.174,367.511 L 130.174,367.1 L 130.102,367.093 Z M 130.233,367.108 L 130.233,367.516 L 130.435,367.539 C 130.461,367.541 130.488,367.539 130.513,367.531 C 130.538,367.524 130.558,367.511 130.577,367.495 C 130.596,367.477 130.61,367.457 130.62,367.434 C 130.631,367.411 130.635,367.386 130.635,367.355 C 130.635,367.33 130.633,367.307 130.624,367.284 C 130.615,367.258 130.604,367.238 130.588,367.219 C 130.586,367.216 130.584,367.214 130.583,367.212 C 130.581,367.209 130.579,367.206 130.576,367.205 C 130.557,367.185 130.538,367.167 130.513,367.153 C 130.488,367.14 130.461,367.132 130.435,367.128 L 130.233,367.108 Z M 130.819,367.187 C 130.794,367.194 130.771,367.206 130.753,367.224 C 130.735,367.241 130.721,367.26 130.711,367.284 C 130.701,367.309 130.695,367.335 130.695,367.362 L 130.695,367.567 L 130.766,367.575 L 130.766,367.369 C 130.766,367.351 130.77,367.335 130.777,367.32 C 130.783,367.305 130.794,367.292 130.806,367.282 C 130.818,367.271 130.831,367.262 130.848,367.257 C 130.861,367.252 130.879,367.25 130.897,367.252 C 130.915,367.254 130.932,367.258 130.948,367.269 C 130.964,367.277 130.977,367.288 130.99,367.302 C 131.001,367.314 131.009,367.329 131.017,367.346 C 131.024,367.362 131.028,367.381 131.028,367.4 L 131.028,367.604 L 131.1,367.612 L 131.1,367.406 C 131.1,367.377 131.094,367.351 131.084,367.325 C 131.073,367.299 131.059,367.276 131.041,367.254 C 131.022,367.234 131,367.218 130.975,367.204 C 130.952,367.191 130.926,367.182 130.897,367.179 C 130.868,367.177 130.843,367.179 130.819,367.187 Z M 130.303,367.188 L 130.435,367.202 C 130.451,367.204 130.467,367.209 130.485,367.218 C 130.5,367.225 130.514,367.237 130.526,367.25 C 130.538,367.263 130.546,367.279 130.554,367.296 C 130.56,367.312 130.564,367.329 130.564,367.348 C 130.564,367.365 130.56,367.383 130.554,367.399 C 130.546,367.413 130.538,367.426 130.526,367.437 C 130.514,367.447 130.5,367.455 130.485,367.46 C 130.467,367.466 130.451,367.467 130.435,367.465 L 130.303,367.451 L 130.303,367.188 Z M 131.135,367.205 L 131.171,367.283 L 131.34,367.637 L 131.512,367.32 L 131.548,367.249 L 131.467,367.241 L 131.43,367.31 L 131.34,367.476 L 131.253,367.29 L 131.216,367.214 L 131.135,367.205 Z M 131.683,367.269 C 131.672,367.27 131.663,367.271 131.655,367.275 C 131.642,367.281 131.631,367.288 131.621,367.297 C 131.61,367.306 131.603,367.316 131.597,367.328 C 131.592,367.336 131.59,367.346 131.587,367.354 C 131.584,367.364 131.584,367.373 131.584,367.386 L 131.584,367.663 L 131.655,367.67 L 131.655,367.386 C 131.656,367.377 131.659,367.368 131.663,367.362 C 131.668,367.355 131.673,367.351 131.682,367.347 C 131.688,367.342 131.697,367.341 131.705,367.34 L 131.917,367.362 L 131.917,367.29 L 131.711,367.267 C 131.701,367.266 131.692,367.267 131.683,367.269 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 126.288,373.646 L 126.286,375.698 L 126.625,375.733 L 126.627,374.685 L 126.905,374.987 L 127.157,375.262 L 127.685,375.84 L 128.187,375.892 L 127.358,374.983 L 128.182,373.839 L 127.764,373.797 L 127.107,374.709 L 126.627,374.189 L 126.627,373.681 L 126.288,373.646 Z M 128.355,373.856 L 128.53,374.241 L 129.321,376.007 L 130.118,374.403 L 130.292,374.054 L 129.912,374.016 L 129.738,374.364 L 129.323,375.202 L 128.907,374.279 L 128.735,373.897 L 128.355,373.856 Z M 130.462,374.071 L 130.466,374.071 L 130.726,374.463 L 131.191,375.167 L 131.407,375.488 L 131.665,375.881 L 130.459,375.756 L 130.458,376.122 L 131.927,376.272 L 132.351,376.315 L 132.089,375.922 L 131.618,375.211 L 131.405,374.889 L 131.149,374.507 L 132.362,374.63 L 132.363,374.263 L 130.893,374.115 L 130.892,374.115 L 130.462,374.071 Z M 132.94,374.367 C 132.878,374.39 132.823,374.423 132.778,374.469 C 132.73,374.514 132.694,374.57 132.668,374.634 C 132.641,374.698 132.629,374.77 132.628,374.845 L 132.626,375.79 C 132.626,375.866 132.639,375.939 132.665,376.008 C 132.692,376.077 132.727,376.14 132.775,376.196 C 132.821,376.251 132.875,376.296 132.937,376.331 C 132.998,376.366 133.065,376.387 133.136,376.395 L 134.522,376.535 L 134.522,376.17 L 133.136,376.028 C 133.103,376.024 133.075,376.014 133.049,375.994 C 133.023,375.974 133.002,375.949 132.986,375.92 C 132.971,375.891 132.964,375.857 132.964,375.823 L 132.964,375.632 L 134.184,375.757 L 134.185,375.391 L 132.964,375.267 L 132.964,374.88 C 132.964,374.844 132.972,374.816 132.988,374.789 C 133.004,374.761 133.024,374.739 133.05,374.726 C 133.076,374.712 133.104,374.707 133.138,374.709 L 134.524,374.85 L 134.524,374.485 L 133.138,374.343 C 133.069,374.337 133.001,374.344 132.94,374.367 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 128.292,372.555 L 128.292,372.992 C 128.292,373.016 128.295,373.037 128.304,373.057 C 128.311,373.078 128.323,373.097 128.337,373.112 C 128.351,373.129 128.369,373.142 128.389,373.152 C 128.408,373.162 128.428,373.169 128.451,373.171 L 128.884,373.217 L 128.884,373.111 L 128.451,373.065 C 128.441,373.063 128.432,373.06 128.423,373.054 C 128.415,373.048 128.409,373.041 128.404,373.033 C 128.399,373.024 128.397,373.015 128.397,373.005 L 128.397,372.949 L 128.777,372.988 L 128.777,372.881 L 128.397,372.841 L 128.397,372.567 L 128.292,372.555 Z M 128.97,372.627 L 128.969,373.065 C 128.969,373.086 128.973,373.108 128.982,373.129 C 128.989,373.149 129,373.167 129.014,373.183 C 129.029,373.2 129.048,373.213 129.066,373.223 C 129.085,373.235 129.105,373.241 129.128,373.243 L 129.56,373.288 L 129.561,373.182 L 129.129,373.137 C 129.118,373.135 129.109,373.132 129.101,373.126 C 129.092,373.12 129.087,373.112 129.081,373.104 C 129.077,373.095 129.074,373.086 129.074,373.075 L 129.074,373.021 L 129.455,373.06 L 129.455,372.954 L 129.074,372.913 L 129.074,372.637 L 128.97,372.627 Z M 129.648,372.699 L 129.646,373.299 L 130.019,373.339 C 130.042,373.34 130.062,373.339 130.08,373.331 C 130.099,373.325 130.117,373.315 130.131,373.303 L 130.131,373.3 C 130.147,373.287 130.158,373.272 130.168,373.253 C 130.175,373.235 130.179,373.214 130.179,373.191 C 130.179,373.17 130.175,373.149 130.168,373.129 C 130.16,373.108 130.148,373.091 130.135,373.074 C 130.12,373.059 130.105,373.046 130.086,373.035 C 130.072,373.026 130.057,373.021 130.041,373.017 C 130.039,373.017 130.037,373.017 130.036,373.017 L 130.036,373.016 L 129.752,372.984 L 129.753,372.711 L 129.648,372.699 Z M 130.263,372.761 L 130.263,372.939 C 130.263,372.951 130.264,372.963 130.267,372.975 C 130.269,372.986 130.273,372.998 130.277,373.009 C 130.286,373.032 130.298,373.05 130.312,373.067 C 130.328,373.086 130.345,373.1 130.367,373.112 C 130.386,373.123 130.408,373.13 130.432,373.133 L 130.685,373.16 L 130.687,373.16 C 130.7,373.164 130.711,373.169 130.719,373.176 C 130.729,373.183 130.736,373.191 130.742,373.203 C 130.747,373.213 130.75,373.225 130.75,373.238 C 130.75,373.25 130.747,373.262 130.74,373.272 C 130.734,373.281 130.727,373.288 130.716,373.294 C 130.706,373.299 130.694,373.302 130.68,373.3 L 130.264,373.257 L 130.264,373.364 L 130.68,373.407 C 130.706,373.409 130.729,373.407 130.749,373.401 C 130.77,373.394 130.787,373.383 130.805,373.369 C 130.821,373.355 130.834,373.338 130.842,373.316 C 130.851,373.297 130.855,373.274 130.856,373.249 C 130.856,373.237 130.855,373.225 130.852,373.213 C 130.849,373.2 130.847,373.189 130.842,373.178 C 130.837,373.167 130.833,373.158 130.827,373.148 C 130.821,373.139 130.814,373.13 130.806,373.122 C 130.791,373.104 130.772,373.088 130.752,373.076 C 130.732,373.065 130.711,373.058 130.686,373.054 L 130.684,373.054 C 130.683,373.054 130.682,373.054 130.68,373.054 L 130.432,373.028 C 130.42,373.025 130.409,373.021 130.4,373.013 C 130.39,373.006 130.383,372.996 130.378,372.984 C 130.372,372.975 130.371,372.964 130.371,372.952 L 130.371,372.881 L 130.853,372.932 L 130.854,372.825 L 130.436,372.78 L 130.263,372.761 Z M 131.353,372.879 L 131.352,373.475 L 131.458,373.405 L 131.84,373.148 L 131.839,373.529 L 131.945,373.539 L 131.946,372.942 L 131.84,373.013 L 131.458,373.269 L 131.459,372.89 L 131.353,372.879 Z M 132.03,372.951 L 132.03,373.551 L 132.404,373.59 C 132.424,373.592 132.445,373.59 132.465,373.583 C 132.485,373.577 132.501,373.567 132.515,373.553 C 132.53,373.54 132.541,373.525 132.549,373.506 C 132.558,373.487 132.562,373.467 132.562,373.444 C 132.562,373.422 132.558,373.401 132.55,373.381 C 132.542,373.362 132.532,373.343 132.517,373.327 C 132.504,373.311 132.488,373.298 132.47,373.286 C 132.456,373.279 132.439,373.272 132.423,373.268 L 132.509,373.107 L 132.563,373.008 L 132.445,372.994 L 132.391,373.095 L 132.332,373.202 L 132.331,373.206 C 132.321,373.221 132.309,373.233 132.293,373.24 C 132.278,373.248 132.26,373.249 132.241,373.248 L 132.136,373.237 L 132.137,372.961 L 132.03,372.951 Z M 129.752,373.091 L 130.021,373.119 C 130.023,373.119 130.028,373.121 130.032,373.122 C 130.035,373.124 130.039,373.126 130.042,373.127 L 130.042,373.127 C 130.052,373.133 130.061,373.14 130.065,373.151 C 130.072,373.159 130.074,373.17 130.074,373.18 C 130.074,373.19 130.072,373.198 130.068,373.204 C 130.065,373.211 130.061,373.215 130.059,373.218 C 130.054,373.221 130.05,373.225 130.044,373.227 C 130.037,373.23 130.029,373.231 130.021,373.23 L 129.752,373.202 L 129.752,373.091 Z M 132.136,373.343 L 132.404,373.371 C 132.407,373.372 132.41,373.373 132.415,373.374 C 132.418,373.377 132.422,373.377 132.424,373.379 C 132.436,373.384 132.442,373.394 132.448,373.403 C 132.456,373.412 132.458,373.422 132.458,373.433 C 132.457,373.442 132.456,373.451 132.45,373.458 C 132.447,373.464 132.445,373.468 132.441,373.471 C 132.437,373.474 132.432,373.477 132.427,373.48 C 132.419,373.482 132.412,373.483 132.404,373.482 L 132.136,373.455 L 132.136,373.343 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 126.406,371.36 L 126.405,371.757 L 126.647,371.782 C 126.661,371.783 126.676,371.782 126.687,371.778 C 126.699,371.773 126.711,371.768 126.721,371.758 L 126.721,371.757 C 126.731,371.749 126.738,371.738 126.743,371.727 C 126.748,371.714 126.752,371.701 126.752,371.686 C 126.752,371.67 126.749,371.656 126.744,371.643 C 126.739,371.63 126.733,371.619 126.724,371.608 C 126.713,371.596 126.703,371.588 126.691,371.582 C 126.681,371.576 126.672,371.571 126.661,371.569 C 126.66,371.569 126.659,371.569 126.659,371.569 L 126.659,371.569 L 126.473,371.549 L 126.475,371.368 L 126.406,371.36 Z M 126.806,371.4 L 126.805,371.797 L 127.05,371.824 C 127.065,371.825 127.078,371.824 127.089,371.82 C 127.102,371.815 127.111,371.809 127.122,371.8 C 127.131,371.791 127.138,371.78 127.145,371.768 C 127.149,371.756 127.152,371.742 127.152,371.728 C 127.152,371.713 127.149,371.699 127.146,371.686 C 127.139,371.672 127.132,371.66 127.123,371.65 C 127.113,371.639 127.105,371.629 127.092,371.623 C 127.083,371.617 127.073,371.613 127.063,371.611 L 127.117,371.504 L 127.152,371.435 L 127.077,371.427 L 127.04,371.494 L 127.004,371.566 L 127.002,371.569 C 126.996,371.58 126.988,371.587 126.978,371.591 C 126.967,371.596 126.956,371.598 126.944,371.596 L 126.874,371.59 L 126.874,371.407 L 126.806,371.4 Z M 127.312,371.469 C 127.29,371.477 127.27,371.49 127.252,371.505 C 127.233,371.522 127.22,371.542 127.21,371.563 C 127.201,371.588 127.195,371.613 127.195,371.64 C 127.195,371.667 127.201,371.694 127.209,371.718 C 127.22,371.744 127.233,371.767 127.252,371.786 C 127.268,371.807 127.29,371.824 127.311,371.836 C 127.335,371.849 127.36,371.857 127.388,371.86 C 127.414,371.862 127.44,371.86 127.463,371.851 C 127.485,371.843 127.507,371.833 127.524,371.815 C 127.542,371.799 127.556,371.78 127.565,371.756 C 127.575,371.733 127.58,371.707 127.58,371.679 C 127.58,371.652 127.575,371.626 127.565,371.601 C 127.556,371.576 127.543,371.554 127.524,371.534 C 127.507,371.513 127.485,371.497 127.464,371.485 C 127.44,371.472 127.414,371.464 127.388,371.461 L 127.349,371.462 C 127.336,371.463 127.324,371.466 127.312,371.469 Z M 127.779,371.502 L 127.779,371.828 L 127.622,371.812 L 127.622,371.883 L 128.005,371.925 L 128.005,371.853 L 127.849,371.836 L 127.85,371.508 L 127.779,371.502 Z M 127.388,371.532 C 127.404,371.534 127.421,371.539 127.436,371.547 C 127.452,371.556 127.465,371.566 127.475,371.579 C 127.485,371.591 127.496,371.606 127.503,371.623 C 127.509,371.638 127.511,371.655 127.511,371.672 C 127.511,371.692 127.509,371.706 127.502,371.722 C 127.496,371.737 127.485,371.75 127.475,371.759 C 127.464,371.769 127.451,371.778 127.435,371.782 C 127.421,371.787 127.404,371.789 127.388,371.787 C 127.37,371.786 127.354,371.782 127.339,371.772 C 127.324,371.766 127.311,371.754 127.299,371.742 C 127.289,371.729 127.28,371.716 127.273,371.698 C 127.268,371.682 127.264,371.665 127.264,371.648 C 127.264,371.629 127.268,371.613 127.273,371.598 C 127.28,371.584 127.29,371.571 127.3,371.56 C 127.311,371.55 127.325,371.542 127.339,371.537 C 127.354,371.532 127.371,371.531 127.388,371.532 Z M 128.124,371.545 C 128.114,371.549 128.104,371.556 128.092,371.566 C 128.084,371.576 128.076,371.585 128.072,371.597 C 128.066,371.61 128.063,371.624 128.063,371.639 L 128.063,371.823 C 128.063,371.836 128.065,371.851 128.07,371.864 C 128.076,371.878 128.083,371.89 128.092,371.902 C 128.102,371.912 128.113,371.92 128.124,371.928 C 128.137,371.934 128.15,371.939 128.166,371.941 L 128.447,371.969 L 128.447,371.898 L 128.166,371.868 C 128.16,371.867 128.153,371.866 128.147,371.862 C 128.143,371.859 128.138,371.853 128.136,371.848 C 128.132,371.841 128.13,371.835 128.13,371.828 L 128.13,371.792 L 128.378,371.818 L 128.378,371.746 L 128.13,371.72 L 128.131,371.646 C 128.131,371.639 128.132,371.634 128.136,371.628 C 128.139,371.623 128.143,371.619 128.148,371.616 C 128.155,371.613 128.16,371.612 128.166,371.613 L 128.447,371.642 L 128.447,371.571 L 128.166,371.542 C 128.151,371.541 128.138,371.542 128.124,371.545 Z M 128.614,371.603 C 128.59,371.611 128.571,371.624 128.553,371.64 C 128.535,371.656 128.521,371.676 128.512,371.699 C 128.502,371.723 128.497,371.748 128.497,371.775 C 128.497,371.802 128.502,371.829 128.512,371.853 C 128.52,371.879 128.535,371.902 128.553,371.922 C 128.571,371.942 128.59,371.958 128.614,371.971 C 128.637,371.983 128.662,371.991 128.689,371.994 L 128.88,372.015 L 128.88,371.943 L 128.689,371.924 C 128.672,371.921 128.655,371.916 128.641,371.908 C 128.626,371.9 128.612,371.89 128.601,371.876 C 128.589,371.863 128.582,371.85 128.574,371.834 C 128.569,371.817 128.565,371.801 128.565,371.782 C 128.565,371.765 128.569,371.748 128.575,371.733 C 128.582,371.718 128.589,371.705 128.602,371.696 C 128.613,371.686 128.628,371.677 128.641,371.672 C 128.655,371.666 128.672,371.665 128.689,371.666 L 128.881,371.687 L 128.881,371.616 L 128.689,371.596 L 128.65,371.596 C 128.638,371.596 128.626,371.6 128.614,371.603 Z M 126.473,371.621 L 126.648,371.637 C 126.652,371.638 126.654,371.639 126.657,371.639 C 126.659,371.64 126.66,371.641 126.663,371.643 C 126.669,371.647 126.674,371.651 126.678,371.658 C 126.681,371.663 126.683,371.67 126.683,371.678 C 126.683,371.685 126.681,371.691 126.679,371.694 C 126.678,371.699 126.675,371.702 126.672,371.703 C 126.671,371.705 126.668,371.707 126.664,371.709 C 126.659,371.711 126.655,371.712 126.648,371.711 L 126.473,371.693 L 126.473,371.621 Z M 129.094,371.638 L 129.094,371.965 L 128.936,371.949 L 128.936,372.021 L 129.321,372.06 L 129.321,371.988 L 129.164,371.971 L 129.164,371.645 L 129.094,371.638 Z M 126.874,371.66 L 127.05,371.678 C 127.052,371.679 127.054,371.679 127.057,371.681 C 127.059,371.681 127.061,371.683 127.065,371.684 C 127.07,371.688 127.075,371.692 127.079,371.699 C 127.083,371.705 127.085,371.712 127.085,371.719 C 127.085,371.726 127.083,371.731 127.081,371.735 C 127.079,371.74 127.077,371.743 127.074,371.744 C 127.072,371.746 127.068,371.748 127.066,371.75 C 127.061,371.752 127.055,371.753 127.05,371.752 L 126.874,371.734 L 126.874,371.66 Z M 129.377,371.666 L 129.376,372.065 L 129.446,372.073 L 129.447,371.674 L 129.377,371.666 Z M 129.674,371.699 L 129.513,372.008 L 129.478,372.076 L 129.555,372.084 L 129.59,372.017 L 129.674,371.854 L 129.758,372.035 L 129.794,372.108 L 129.871,372.117 L 129.835,372.042 L 129.674,371.699 Z M 129.969,371.737 C 129.957,371.742 129.946,371.748 129.937,371.756 C 129.927,371.766 129.919,371.776 129.914,371.788 C 129.908,371.801 129.905,371.815 129.905,371.829 L 129.905,372.014 C 129.905,372.028 129.907,372.041 129.913,372.054 C 129.919,372.068 129.926,372.08 129.936,372.092 C 129.945,372.102 129.956,372.111 129.969,372.118 C 129.98,372.126 129.995,372.13 130.009,372.131 L 130.289,372.16 L 130.289,372.088 L 130.009,372.06 C 130.001,372.06 129.996,372.057 129.99,372.054 C 129.985,372.05 129.982,372.045 129.978,372.039 C 129.975,372.034 129.973,372.028 129.973,372.021 L 129.973,371.982 L 130.222,372.008 L 130.222,371.939 L 129.974,371.913 L 129.974,371.836 C 129.974,371.829 129.976,371.825 129.978,371.82 C 129.982,371.815 129.985,371.809 129.991,371.807 C 129.996,371.804 130.002,371.803 130.009,371.804 L 130.29,371.834 L 130.29,371.761 L 130.009,371.733 C 129.995,371.731 129.981,371.733 129.969,371.737 Z M 130.612,371.795 L 130.611,372.192 L 130.855,372.218 C 130.869,372.219 130.882,372.218 130.895,372.214 C 130.908,372.209 130.919,372.202 130.928,372.194 C 130.938,372.185 130.945,372.174 130.951,372.162 C 130.955,372.15 130.958,372.137 130.958,372.122 C 130.958,372.106 130.956,372.092 130.952,372.079 C 130.946,372.066 130.939,372.054 130.93,372.044 C 130.921,372.035 130.912,372.025 130.898,372.019 C 130.89,372.013 130.878,372.008 130.868,372.006 L 130.925,371.897 L 130.959,371.829 L 130.881,371.823 L 130.848,371.89 L 130.81,371.96 L 130.81,371.963 C 130.803,371.973 130.794,371.981 130.783,371.985 C 130.772,371.99 130.762,371.992 130.751,371.992 L 130.68,371.984 L 130.68,371.802 L 130.612,371.795 Z M 131.078,371.853 C 131.067,371.856 131.055,371.863 131.046,371.872 C 131.036,371.88 131.029,371.891 131.024,371.904 C 131.018,371.916 131.016,371.93 131.016,371.944 L 131.016,372.129 C 131.016,372.143 131.017,372.157 131.023,372.17 C 131.029,372.183 131.036,372.196 131.046,372.208 C 131.055,372.218 131.066,372.226 131.078,372.235 C 131.091,372.241 131.104,372.246 131.118,372.246 L 131.399,372.275 L 131.399,372.204 L 131.118,372.175 C 131.112,372.174 131.106,372.172 131.1,372.168 C 131.096,372.165 131.092,372.159 131.087,372.154 C 131.085,372.148 131.083,372.142 131.083,372.135 L 131.083,372.098 L 131.331,372.124 L 131.331,372.052 L 131.084,372.028 L 131.084,371.952 C 131.084,371.945 131.086,371.94 131.088,371.934 C 131.092,371.929 131.096,371.926 131.1,371.923 C 131.106,371.919 131.113,371.919 131.118,371.919 L 131.4,371.949 L 131.4,371.877 L 131.119,371.848 C 131.105,371.847 131.091,371.849 131.078,371.853 Z M 131.53,371.9 C 131.515,371.905 131.502,371.914 131.491,371.924 C 131.48,371.933 131.472,371.947 131.465,371.96 C 131.459,371.975 131.455,371.991 131.455,372.008 L 131.525,372.016 C 131.525,372.005 131.526,371.995 131.532,371.988 C 131.536,371.981 131.542,371.975 131.55,371.971 C 131.558,371.967 131.565,371.966 131.578,371.966 L 131.699,371.978 C 131.708,371.98 131.716,371.983 131.725,371.988 C 131.732,371.995 131.739,372.001 131.743,372.01 C 131.748,372.021 131.75,372.028 131.75,372.04 C 131.75,372.05 131.748,372.059 131.743,372.066 C 131.739,372.074 131.732,372.079 131.725,372.083 C 131.716,372.087 131.708,372.088 131.699,372.087 L 131.558,372.074 L 131.539,372.074 C 131.532,372.074 131.525,372.076 131.519,372.077 C 131.507,372.081 131.498,372.087 131.486,372.095 C 131.483,372.1 131.476,372.105 131.474,372.111 C 131.467,372.119 131.463,372.13 131.46,372.14 C 131.456,372.15 131.455,372.16 131.455,372.171 L 131.455,372.174 C 131.455,372.188 131.458,372.202 131.463,372.215 C 131.468,372.229 131.475,372.241 131.486,372.253 C 131.496,372.264 131.506,372.273 131.519,372.279 C 131.53,372.286 131.544,372.289 131.558,372.291 L 131.714,372.307 C 131.728,372.309 131.742,372.307 131.755,372.303 C 131.767,372.299 131.778,372.292 131.789,372.285 C 131.798,372.275 131.806,372.265 131.811,372.253 C 131.817,372.241 131.818,372.226 131.818,372.211 L 131.818,372.209 L 131.75,372.201 L 131.75,372.202 C 131.75,372.209 131.748,372.215 131.745,372.221 C 131.741,372.226 131.737,372.23 131.733,372.235 C 131.727,372.236 131.721,372.237 131.714,372.236 L 131.558,372.22 C 131.552,372.219 131.545,372.216 131.54,372.213 C 131.536,372.209 131.532,372.204 131.527,372.198 C 131.525,372.193 131.524,372.186 131.524,372.18 L 131.524,372.177 C 131.524,372.17 131.525,372.166 131.527,372.159 C 131.532,372.154 131.536,372.151 131.541,372.148 C 131.545,372.145 131.552,372.144 131.558,372.144 L 131.699,372.159 L 131.724,372.159 C 131.731,372.157 131.739,372.157 131.747,372.154 C 131.763,372.148 131.776,372.14 131.787,372.129 C 131.789,372.128 131.789,372.127 131.79,372.126 C 131.79,372.125 131.79,372.125 131.791,372.124 C 131.8,372.113 131.807,372.102 131.811,372.088 C 131.817,372.076 131.819,372.061 131.819,372.047 C 131.819,372.028 131.816,372.013 131.81,371.995 C 131.804,371.981 131.795,371.966 131.784,371.954 C 131.771,371.942 131.759,371.931 131.744,371.923 C 131.73,371.916 131.714,371.91 131.699,371.908 L 131.578,371.894 C 131.559,371.892 131.544,371.894 131.53,371.9 Z M 131.875,371.927 L 131.874,372.324 L 132.117,372.351 C 132.133,372.352 132.146,372.351 132.157,372.345 C 132.17,372.341 132.181,372.335 132.191,372.325 L 132.191,372.325 C 132.2,372.316 132.208,372.305 132.213,372.292 C 132.217,372.28 132.221,372.267 132.221,372.253 C 132.221,372.238 132.218,372.223 132.213,372.21 C 132.209,372.196 132.202,372.185 132.192,372.174 C 132.183,372.164 132.173,372.155 132.16,372.149 C 132.152,372.143 132.142,372.14 132.132,372.137 C 132.131,372.137 132.129,372.137 132.128,372.137 L 132.128,372.136 L 131.945,372.116 L 131.945,371.934 L 131.875,371.927 Z M 132.277,371.968 L 132.276,372.366 L 132.344,372.373 L 132.346,371.975 L 132.277,371.968 Z M 132.4,371.979 L 132.399,372.378 L 132.643,372.402 C 132.657,372.405 132.67,372.402 132.684,372.399 C 132.696,372.396 132.706,372.388 132.716,372.379 C 132.726,372.37 132.733,372.36 132.738,372.348 C 132.743,372.335 132.746,372.321 132.746,372.306 C 132.746,372.292 132.743,372.278 132.739,372.266 C 132.733,372.252 132.727,372.24 132.718,372.228 C 132.708,372.219 132.698,372.209 132.686,372.202 C 132.676,372.196 132.666,372.193 132.656,372.19 L 132.711,372.083 L 132.746,372.016 L 132.67,372.007 L 132.634,372.075 L 132.598,372.145 L 132.596,372.149 C 132.59,372.158 132.582,372.166 132.572,372.17 C 132.561,372.176 132.549,372.178 132.538,372.177 L 132.47,372.17 L 132.47,371.986 L 132.4,371.979 Z M 132.779,372.021 L 132.816,372.094 L 132.977,372.438 L 133.138,372.129 L 133.174,372.061 L 133.096,372.053 L 133.062,372.119 L 132.977,372.282 L 132.892,372.102 L 132.856,372.028 L 132.779,372.021 Z M 130.68,372.054 L 130.855,372.074 C 130.858,372.074 130.861,372.075 130.862,372.076 C 130.864,372.076 130.867,372.077 130.869,372.078 C 130.875,372.082 130.88,372.087 130.885,372.093 C 130.888,372.1 130.891,372.106 130.891,372.115 C 130.891,372.119 130.89,372.127 130.887,372.13 C 130.885,372.135 130.881,372.138 130.88,372.14 C 130.877,372.142 130.874,372.143 130.871,372.144 C 130.867,372.145 130.866,372.146 130.862,372.147 L 130.855,372.147 L 130.68,372.129 L 130.68,372.054 Z M 133.364,372.08 L 133.364,372.409 L 133.205,372.392 L 133.205,372.463 L 133.591,372.503 L 133.591,372.432 L 133.432,372.415 L 133.433,372.087 L 133.364,372.08 Z M 133.75,372.137 C 133.727,372.144 133.708,372.157 133.689,372.172 C 133.673,372.189 133.658,372.208 133.647,372.233 C 133.637,372.254 133.632,372.28 133.632,372.307 C 133.632,372.335 133.637,372.362 133.647,372.386 C 133.657,372.411 133.672,372.434 133.689,372.454 C 133.707,372.474 133.727,372.491 133.75,372.504 C 133.773,372.516 133.799,372.525 133.825,372.526 C 133.853,372.529 133.876,372.526 133.9,372.519 C 133.923,372.512 133.945,372.499 133.962,372.482 C 133.979,372.467 133.992,372.446 134.003,372.423 C 134.013,372.4 134.018,372.375 134.018,372.348 C 134.018,372.319 134.013,372.292 134.004,372.268 C 133.992,372.243 133.979,372.221 133.962,372.2 C 133.946,372.182 133.924,372.165 133.901,372.152 C 133.877,372.14 133.853,372.131 133.826,372.129 L 133.787,372.129 C 133.774,372.13 133.763,372.133 133.75,372.137 Z M 134.06,372.152 L 134.059,372.549 L 134.301,372.576 C 134.316,372.576 134.33,372.575 134.343,372.57 C 134.355,372.567 134.366,372.559 134.376,372.551 C 134.386,372.542 134.392,372.531 134.398,372.519 C 134.403,372.507 134.405,372.493 134.405,372.479 C 134.405,372.465 134.403,372.45 134.398,372.436 C 134.393,372.423 134.386,372.412 134.377,372.401 C 134.368,372.39 134.358,372.382 134.347,372.375 C 134.335,372.369 134.326,372.365 134.314,372.364 L 134.372,372.254 L 134.406,372.187 L 134.329,372.179 L 134.295,372.248 L 134.257,372.318 L 134.255,372.32 C 134.25,372.331 134.242,372.338 134.231,372.344 C 134.221,372.349 134.209,372.351 134.197,372.349 L 134.128,372.343 L 134.128,372.159 L 134.06,372.152 Z M 131.943,372.187 L 132.117,372.205 C 132.12,372.206 132.124,372.206 132.126,372.208 C 132.127,372.208 132.131,372.208 132.133,372.209 L 132.133,372.21 C 132.139,372.215 132.144,372.219 132.147,372.226 C 132.152,372.233 132.152,372.24 132.153,372.247 C 132.152,372.253 132.152,372.259 132.15,372.262 C 132.147,372.267 132.146,372.269 132.142,372.272 C 132.14,372.273 132.138,372.275 132.133,372.277 C 132.129,372.279 132.125,372.279 132.117,372.279 L 131.943,372.26 L 131.943,372.187 Z M 133.826,372.199 C 133.843,372.201 133.859,372.206 133.874,372.215 C 133.889,372.222 133.902,372.235 133.913,372.247 C 133.925,372.26 133.934,372.274 133.94,372.289 C 133.947,372.305 133.949,372.322 133.949,372.34 C 133.949,372.358 133.947,372.375 133.94,372.389 C 133.934,372.405 133.924,372.417 133.912,372.427 C 133.902,372.438 133.889,372.446 133.874,372.45 C 133.859,372.456 133.843,372.457 133.825,372.456 C 133.808,372.454 133.792,372.447 133.778,372.44 C 133.763,372.433 133.749,372.421 133.737,372.409 C 133.726,372.396 133.718,372.382 133.711,372.366 C 133.705,372.35 133.702,372.332 133.702,372.316 C 133.702,372.297 133.705,372.28 133.711,372.266 C 133.718,372.251 133.726,372.24 133.737,372.228 C 133.749,372.218 133.763,372.209 133.779,372.205 C 133.793,372.199 133.808,372.197 133.826,372.199 Z M 132.47,372.241 L 132.643,372.26 C 132.646,372.26 132.648,372.26 132.65,372.262 C 132.652,372.262 132.655,372.263 132.657,372.264 C 132.663,372.267 132.668,372.273 132.672,372.279 C 132.676,372.286 132.678,372.292 132.678,372.299 C 132.678,372.305 132.676,372.312 132.675,372.316 C 132.672,372.318 132.67,372.322 132.667,372.324 C 132.665,372.327 132.662,372.328 132.657,372.33 C 132.654,372.331 132.648,372.331 132.643,372.331 L 132.47,372.314 L 132.47,372.241 Z M 134.128,372.412 L 134.301,372.432 C 134.305,372.432 134.308,372.433 134.31,372.433 C 134.312,372.434 134.314,372.434 134.316,372.435 C 134.322,372.44 134.327,372.444 134.333,372.45 C 134.335,372.457 134.337,372.464 134.337,372.472 C 134.337,372.478 134.335,372.482 134.334,372.487 C 134.333,372.491 134.329,372.493 134.326,372.496 C 134.324,372.499 134.321,372.5 134.317,372.502 C 134.313,372.504 134.308,372.505 134.301,372.504 L 134.128,372.487 L 134.128,372.412 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 121.536,384.689 L 121.362,384.851 L 138.77,385.985 L 138.859,385.947 C 138.889,385.937 138.917,385.91 138.917,385.863 L 138.917,385.821 L 121.536,384.689 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 121.362,384.851 L 121.361,361.399 L 121.45,361.316 L 121.536,361.328 L 121.536,384.689 L 121.362,384.851 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--CITRUS_ORANGE, .KN95_NR_small_individuals--CITRUS_ORANGE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='111.717 -517.464 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.303' y2='19.846' gradientTransform='translate(124.359 489.994)'%3E%3Cstop offset='0' stop-color='%23cd4f00'/%3E%3Cstop offset='1' stop-color='%23ff6200'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.352' y2='19.919' gradientTransform='translate(120.82 490.61)'%3E%3Cstop offset='0' stop-color='%23a03e00'/%3E%3Cstop offset='1' stop-color='%23d85300'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(124.353 509.976)'%3E%3Cstop offset='0' stop-color='%23bf4900'/%3E%3Cstop offset='1' stop-color='%23dd5500'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.118' y2='-0.23' gradientTransform='translate(119.679 512.033)'%3E%3Cstop offset='0' stop-color='%239a3b00'/%3E%3Cstop offset='1' stop-color='%23bf4900'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.164' gradientTransform='translate(132.673 511.848) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c74c00'/%3E%3Cstop offset='1' stop-color='%23e35700'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.164' y2='0' gradientTransform='translate(121.528 499.736) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bc4800'/%3E%3Cstop offset='1' stop-color='%23d85300'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(128.446 500.735) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 121.447,487.579 L 121.447,511.066 L 138.894,512.185 C 138.906,512.171 138.914,512.152 138.914,512.128 L 138.914,489.947 L 121.447,487.579 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 121.447,487.579 L 117.983,490.942 L 117.98,512.963 L 121.447,511.066 L 121.447,487.579 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 121.447,511.066 L 117.98,512.963 L 134.913,513.893 L 138.856,512.212 C 138.87,512.207 138.883,512.197 138.894,512.185 L 121.447,511.066 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 121.359,510.798 L 117.98,512.687 L 117.979,512.963 L 121.359,511.112 L 121.359,510.798 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 128.488,493.181 L 128.488,493.592 L 128.56,493.6 L 128.56,493.189 L 128.488,493.181 Z M 128.618,493.195 L 128.618,493.604 L 128.689,493.555 L 128.951,493.381 L 128.951,493.641 L 129.022,493.65 L 129.022,493.239 L 128.951,493.289 L 128.689,493.463 L 128.689,493.203 L 128.618,493.195 Z M 129.08,493.245 L 129.08,493.656 L 129.283,493.677 C 129.311,493.681 129.337,493.678 129.36,493.669 C 129.386,493.663 129.407,493.65 129.425,493.633 C 129.444,493.616 129.458,493.597 129.469,493.573 C 129.479,493.549 129.485,493.523 129.485,493.496 C 129.485,493.469 129.48,493.445 129.473,493.422 C 129.463,493.399 129.451,493.378 129.437,493.358 C 129.435,493.355 129.433,493.353 129.432,493.351 C 129.43,493.348 129.427,493.346 129.425,493.343 C 129.407,493.322 129.386,493.306 129.36,493.293 C 129.337,493.28 129.311,493.271 129.283,493.268 L 129.08,493.245 Z M 129.543,493.296 L 129.543,493.707 L 129.617,493.714 L 129.617,493.304 L 129.543,493.296 Z M 129.153,493.326 L 129.283,493.34 C 129.301,493.343 129.317,493.348 129.333,493.356 C 129.349,493.366 129.363,493.377 129.374,493.39 C 129.387,493.402 129.395,493.418 129.403,493.433 C 129.409,493.451 129.412,493.468 129.412,493.487 C 129.412,493.505 129.409,493.521 129.403,493.536 C 129.395,493.553 129.387,493.565 129.374,493.575 C 129.363,493.587 129.349,493.595 129.333,493.6 C 129.317,493.605 129.301,493.606 129.283,493.605 L 129.153,493.591 L 129.153,493.326 Z M 129.858,493.33 L 129.686,493.649 L 129.65,493.719 L 129.731,493.726 L 129.767,493.656 L 129.858,493.492 L 129.945,493.677 L 129.982,493.753 L 130.063,493.763 L 130.026,493.685 L 129.858,493.33 Z M 130.099,493.356 L 130.099,493.766 L 130.171,493.774 L 130.171,493.365 L 130.099,493.356 Z M 130.23,493.372 L 130.23,493.78 L 130.432,493.802 C 130.458,493.806 130.485,493.802 130.51,493.795 C 130.535,493.787 130.555,493.774 130.574,493.758 C 130.593,493.742 130.607,493.721 130.617,493.698 C 130.628,493.674 130.632,493.649 130.632,493.619 C 130.632,493.595 130.63,493.57 130.621,493.547 C 130.612,493.523 130.601,493.502 130.585,493.483 C 130.583,493.481 130.581,493.478 130.58,493.476 C 130.578,493.472 130.576,493.47 130.573,493.468 C 130.554,493.448 130.535,493.43 130.51,493.417 C 130.485,493.404 130.458,493.396 130.432,493.392 L 130.23,493.372 Z M 130.816,493.451 C 130.791,493.457 130.768,493.47 130.75,493.488 C 130.732,493.505 130.718,493.524 130.708,493.547 C 130.698,493.572 130.692,493.599 130.692,493.626 L 130.692,493.831 L 130.763,493.839 L 130.763,493.634 C 130.763,493.615 130.767,493.599 130.774,493.583 C 130.78,493.569 130.791,493.555 130.803,493.546 C 130.815,493.534 130.828,493.526 130.845,493.521 C 130.858,493.516 130.876,493.514 130.894,493.516 C 130.912,493.519 130.929,493.523 130.945,493.532 C 130.961,493.54 130.974,493.552 130.987,493.565 C 130.998,493.578 131.006,493.593 131.014,493.611 C 131.021,493.626 131.025,493.644 131.025,493.663 L 131.025,493.867 L 131.097,493.875 L 131.097,493.669 C 131.097,493.641 131.091,493.615 131.081,493.589 C 131.07,493.562 131.056,493.539 131.038,493.519 C 131.019,493.498 130.997,493.482 130.972,493.467 C 130.949,493.455 130.923,493.446 130.894,493.443 C 130.865,493.44 130.84,493.443 130.816,493.451 Z M 130.3,493.451 L 130.432,493.465 C 130.448,493.467 130.464,493.472 130.482,493.482 C 130.497,493.49 130.511,493.501 130.523,493.514 C 130.535,493.528 130.543,493.542 130.551,493.559 C 130.557,493.575 130.561,493.593 130.561,493.612 C 130.561,493.629 130.557,493.647 130.551,493.662 C 130.543,493.677 130.535,493.689 130.523,493.702 C 130.511,493.711 130.497,493.719 130.482,493.724 C 130.464,493.73 130.448,493.731 130.432,493.729 L 130.3,493.715 L 130.3,493.451 Z M 131.132,493.468 L 131.168,493.547 L 131.337,493.901 L 131.509,493.583 L 131.545,493.514 L 131.464,493.505 L 131.427,493.573 L 131.337,493.74 L 131.25,493.554 L 131.213,493.478 L 131.132,493.468 Z M 131.68,493.532 C 131.669,493.533 131.66,493.534 131.652,493.538 C 131.639,493.544 131.628,493.551 131.618,493.56 C 131.607,493.57 131.6,493.579 131.594,493.592 C 131.589,493.601 131.587,493.61 131.584,493.618 C 131.581,493.628 131.581,493.637 131.581,493.649 L 131.581,493.928 L 131.652,493.935 L 131.652,493.649 C 131.653,493.64 131.656,493.632 131.66,493.626 C 131.665,493.619 131.67,493.615 131.679,493.612 C 131.685,493.606 131.694,493.605 131.702,493.605 L 131.914,493.626 L 131.914,493.553 L 131.708,493.531 C 131.698,493.53 131.689,493.531 131.68,493.532 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 126.285,499.91 L 126.283,501.961 L 126.622,501.997 L 126.624,500.948 L 126.902,501.252 L 127.154,501.525 L 127.682,502.104 L 128.184,502.155 L 127.355,501.247 L 128.179,500.103 L 127.761,500.06 L 127.104,500.972 L 126.624,500.453 L 126.624,499.944 L 126.285,499.91 Z M 128.352,500.121 L 128.527,500.505 L 129.318,502.27 L 130.115,500.667 L 130.289,500.318 L 129.909,500.279 L 129.735,500.628 L 129.32,501.466 L 128.904,500.544 L 128.732,500.16 L 128.352,500.121 Z M 130.459,500.335 L 130.463,500.335 L 130.723,500.727 L 131.188,501.431 L 131.404,501.752 L 131.662,502.144 L 130.456,502.02 L 130.455,502.385 L 131.924,502.536 L 132.348,502.578 L 132.086,502.185 L 131.615,501.474 L 131.402,501.152 L 131.146,500.772 L 132.359,500.894 L 132.36,500.526 L 130.89,500.379 L 130.889,500.379 L 130.459,500.335 Z M 132.937,500.629 C 132.875,500.654 132.82,500.687 132.775,500.733 C 132.727,500.779 132.691,500.834 132.665,500.898 C 132.638,500.962 132.626,501.033 132.625,501.109 L 132.623,502.053 C 132.623,502.13 132.636,502.204 132.662,502.272 C 132.689,502.342 132.724,502.403 132.772,502.46 C 132.818,502.514 132.872,502.56 132.934,502.594 C 132.995,502.63 133.062,502.651 133.133,502.659 L 134.519,502.799 L 134.519,502.434 L 133.133,502.292 C 133.1,502.287 133.072,502.277 133.046,502.258 C 133.02,502.238 132.999,502.214 132.983,502.184 C 132.968,502.154 132.961,502.122 132.961,502.087 L 132.961,501.896 L 134.181,502.021 L 134.182,501.655 L 132.961,501.532 L 132.961,501.144 C 132.961,501.108 132.969,501.079 132.985,501.053 C 133.001,501.025 133.021,501.004 133.047,500.99 C 133.073,500.976 133.101,500.97 133.135,500.972 L 134.521,501.114 L 134.521,500.748 L 133.135,500.606 C 133.066,500.601 132.998,500.607 132.937,500.629 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 128.289,498.819 L 128.289,499.257 C 128.289,499.279 128.292,499.3 128.301,499.322 C 128.308,499.342 128.32,499.361 128.334,499.376 C 128.348,499.392 128.366,499.405 128.386,499.416 C 128.405,499.426 128.425,499.433 128.448,499.436 L 128.881,499.481 L 128.881,499.375 L 128.448,499.329 C 128.438,499.327 128.429,499.324 128.42,499.317 C 128.412,499.311 128.406,499.305 128.401,499.297 C 128.396,499.287 128.394,499.279 128.394,499.268 L 128.394,499.213 L 128.774,499.252 L 128.774,499.145 L 128.394,499.105 L 128.394,498.831 L 128.289,498.819 Z M 128.967,498.892 L 128.966,499.329 C 128.966,499.35 128.97,499.372 128.979,499.392 C 128.986,499.413 128.997,499.43 129.011,499.447 C 129.026,499.464 129.045,499.477 129.063,499.488 C 129.082,499.498 129.102,499.505 129.125,499.507 L 129.557,499.552 L 129.558,499.446 L 129.126,499.4 C 129.115,499.398 129.106,499.395 129.098,499.39 C 129.089,499.383 129.084,499.376 129.078,499.368 C 129.074,499.359 129.071,499.35 129.071,499.34 L 129.071,499.284 L 129.452,499.325 L 129.452,499.218 L 129.071,499.176 L 129.071,498.902 L 128.967,498.892 Z M 129.645,498.963 L 129.643,499.563 L 130.016,499.602 C 130.039,499.604 130.059,499.602 130.077,499.595 C 130.096,499.589 130.114,499.58 130.128,499.567 L 130.128,499.565 C 130.144,499.551 130.155,499.536 130.165,499.517 C 130.172,499.498 130.176,499.478 130.176,499.456 C 130.176,499.434 130.172,499.413 130.165,499.393 C 130.157,499.373 130.145,499.355 130.132,499.339 C 130.117,499.324 130.102,499.309 130.083,499.298 C 130.069,499.29 130.054,499.284 130.038,499.281 C 130.036,499.281 130.034,499.281 130.033,499.28 L 130.033,499.279 L 129.749,499.249 L 129.75,498.974 L 129.645,498.963 Z M 130.26,499.026 L 130.26,499.202 C 130.26,499.216 130.261,499.227 130.264,499.239 C 130.266,499.25 130.27,499.262 130.274,499.273 C 130.283,499.295 130.295,499.314 130.309,499.331 C 130.325,499.35 130.342,499.364 130.364,499.376 C 130.383,499.386 130.405,499.393 130.429,499.397 L 130.682,499.424 L 130.684,499.424 C 130.697,499.427 130.708,499.433 130.716,499.44 C 130.726,499.447 130.733,499.456 130.739,499.467 C 130.744,499.477 130.747,499.489 130.747,499.501 C 130.747,499.514 130.744,499.525 130.737,499.536 C 130.731,499.545 130.724,499.552 130.713,499.558 C 130.703,499.564 130.691,499.566 130.677,499.565 L 130.261,499.52 L 130.261,499.627 L 130.677,499.672 C 130.703,499.674 130.726,499.672 130.746,499.665 C 130.767,499.658 130.784,499.647 130.802,499.632 C 130.818,499.618 130.831,499.601 130.839,499.581 C 130.848,499.561 130.852,499.537 130.853,499.512 C 130.853,499.5 130.852,499.488 130.849,499.477 C 130.846,499.465 130.844,499.453 130.839,499.442 C 130.834,499.43 130.83,499.421 130.824,499.412 C 130.818,499.403 130.811,499.393 130.803,499.385 C 130.788,499.367 130.769,499.352 130.749,499.341 C 130.729,499.329 130.708,499.323 130.683,499.317 L 130.681,499.317 C 130.68,499.317 130.679,499.317 130.677,499.317 L 130.429,499.291 C 130.417,499.289 130.406,499.284 130.397,499.276 C 130.387,499.269 130.38,499.26 130.375,499.249 C 130.369,499.239 130.368,499.228 130.368,499.216 L 130.368,499.146 L 130.85,499.195 L 130.851,499.088 L 130.433,499.044 L 130.26,499.026 Z M 131.35,499.143 L 131.349,499.739 L 131.455,499.67 L 131.837,499.412 L 131.836,499.794 L 131.942,499.804 L 131.943,499.205 L 131.837,499.276 L 131.455,499.532 L 131.456,499.154 L 131.35,499.143 Z M 132.027,499.215 L 132.027,499.815 L 132.401,499.853 C 132.421,499.856 132.442,499.854 132.462,499.847 C 132.482,499.84 132.498,499.83 132.512,499.817 C 132.527,499.805 132.538,499.789 132.546,499.77 C 132.555,499.75 132.559,499.73 132.559,499.708 C 132.559,499.686 132.555,499.666 132.547,499.644 C 132.539,499.625 132.529,499.607 132.514,499.591 C 132.501,499.575 132.485,499.562 132.467,499.551 C 132.453,499.543 132.436,499.536 132.42,499.531 L 132.506,499.372 L 132.56,499.271 L 132.442,499.258 L 132.388,499.359 L 132.329,499.466 L 132.328,499.47 C 132.318,499.485 132.306,499.496 132.29,499.503 C 132.275,499.511 132.257,499.513 132.238,499.511 L 132.133,499.5 L 132.134,499.226 L 132.027,499.215 Z M 129.749,499.355 L 130.018,499.383 C 130.02,499.383 130.025,499.384 130.029,499.385 C 130.032,499.388 130.036,499.389 130.039,499.391 L 130.039,499.391 C 130.049,499.396 130.058,499.404 130.062,499.414 C 130.069,499.422 130.071,499.434 130.071,499.444 C 130.071,499.455 130.069,499.462 130.065,499.469 C 130.062,499.475 130.058,499.48 130.056,499.483 C 130.051,499.485 130.047,499.488 130.041,499.491 C 130.034,499.493 130.026,499.494 130.018,499.493 L 129.749,499.466 L 129.749,499.355 Z M 132.133,499.607 L 132.401,499.634 C 132.404,499.636 132.407,499.636 132.412,499.638 C 132.415,499.64 132.419,499.641 132.421,499.642 C 132.433,499.648 132.439,499.658 132.445,499.667 C 132.453,499.676 132.455,499.686 132.455,499.697 C 132.454,499.707 132.453,499.715 132.447,499.721 C 132.444,499.728 132.442,499.731 132.438,499.734 C 132.434,499.737 132.429,499.741 132.424,499.743 C 132.416,499.745 132.409,499.747 132.401,499.745 L 132.133,499.718 L 132.133,499.607 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 126.403,497.623 L 126.402,498.021 L 126.644,498.046 C 126.658,498.047 126.673,498.046 126.684,498.042 C 126.696,498.038 126.708,498.033 126.718,498.022 L 126.718,498.021 C 126.728,498.013 126.735,498.003 126.74,497.99 C 126.745,497.977 126.749,497.964 126.749,497.949 C 126.749,497.935 126.746,497.92 126.741,497.907 C 126.736,497.894 126.73,497.882 126.721,497.871 C 126.71,497.86 126.7,497.852 126.688,497.845 C 126.678,497.839 126.669,497.835 126.658,497.834 C 126.657,497.834 126.656,497.833 126.656,497.833 L 126.656,497.833 L 126.47,497.814 L 126.472,497.631 L 126.403,497.623 Z M 126.803,497.663 L 126.802,498.061 L 127.047,498.087 C 127.062,498.088 127.075,498.087 127.086,498.083 C 127.099,498.078 127.108,498.072 127.119,498.063 C 127.128,498.054 127.135,498.044 127.142,498.033 C 127.146,498.02 127.149,498.006 127.149,497.991 C 127.149,497.976 127.146,497.962 127.143,497.949 C 127.136,497.936 127.129,497.925 127.12,497.914 C 127.11,497.903 127.102,497.894 127.089,497.887 C 127.08,497.88 127.07,497.876 127.06,497.874 L 127.114,497.767 L 127.149,497.7 L 127.074,497.691 L 127.037,497.757 L 127.001,497.83 L 126.999,497.833 C 126.993,497.843 126.985,497.85 126.975,497.854 C 126.964,497.86 126.953,497.861 126.941,497.86 L 126.871,497.853 L 126.871,497.671 L 126.803,497.663 Z M 127.309,497.732 C 127.287,497.74 127.267,497.753 127.249,497.768 C 127.23,497.786 127.217,497.806 127.207,497.827 C 127.198,497.852 127.192,497.876 127.192,497.904 C 127.192,497.932 127.198,497.958 127.206,497.981 C 127.217,498.008 127.23,498.031 127.249,498.051 C 127.265,498.07 127.287,498.087 127.308,498.099 C 127.332,498.113 127.357,498.121 127.385,498.124 C 127.411,498.126 127.437,498.124 127.46,498.116 C 127.482,498.106 127.504,498.096 127.521,498.078 C 127.539,498.062 127.553,498.044 127.562,498.02 C 127.572,497.996 127.577,497.97 127.577,497.943 C 127.577,497.916 127.572,497.891 127.562,497.864 C 127.553,497.839 127.54,497.819 127.521,497.798 C 127.504,497.778 127.482,497.76 127.461,497.748 C 127.437,497.736 127.411,497.728 127.385,497.724 L 127.346,497.725 C 127.333,497.727 127.321,497.729 127.309,497.732 Z M 127.776,497.765 L 127.776,498.092 L 127.619,498.076 L 127.619,498.147 L 128.002,498.188 L 128.002,498.117 L 127.846,498.099 L 127.847,497.771 L 127.776,497.765 Z M 127.385,497.796 C 127.401,497.798 127.418,497.803 127.433,497.811 C 127.449,497.82 127.462,497.83 127.472,497.843 C 127.482,497.854 127.493,497.87 127.5,497.887 C 127.506,497.903 127.508,497.919 127.508,497.937 C 127.508,497.954 127.506,497.97 127.499,497.985 C 127.493,498.001 127.482,498.014 127.472,498.024 C 127.461,498.034 127.448,498.042 127.432,498.046 C 127.418,498.052 127.401,498.053 127.385,498.052 C 127.367,498.051 127.351,498.046 127.336,498.037 C 127.321,498.029 127.308,498.019 127.296,498.006 C 127.286,497.992 127.277,497.979 127.27,497.961 C 127.265,497.945 127.261,497.929 127.261,497.912 C 127.261,497.894 127.265,497.876 127.27,497.861 C 127.277,497.847 127.287,497.835 127.297,497.825 C 127.308,497.814 127.322,497.806 127.336,497.801 C 127.351,497.796 127.368,497.795 127.385,497.796 Z M 128.121,497.81 C 128.111,497.814 128.101,497.82 128.089,497.83 C 128.081,497.839 128.073,497.848 128.069,497.861 C 128.063,497.873 128.06,497.888 128.06,497.903 L 128.06,498.086 C 128.06,498.1 128.062,498.116 128.067,498.129 C 128.073,498.142 128.08,498.154 128.089,498.165 C 128.099,498.176 128.11,498.184 128.121,498.191 C 128.134,498.197 128.147,498.202 128.163,498.204 L 128.444,498.234 L 128.444,498.162 L 128.163,498.133 C 128.157,498.131 128.15,498.13 128.144,498.126 C 128.14,498.123 128.135,498.118 128.133,498.112 C 128.129,498.104 128.127,498.099 128.127,498.092 L 128.127,498.056 L 128.375,498.081 L 128.375,498.01 L 128.127,497.984 L 128.128,497.911 C 128.128,497.903 128.129,497.898 128.133,497.892 C 128.136,497.887 128.14,497.882 128.145,497.879 C 128.152,497.876 128.157,497.876 128.163,497.876 L 128.444,497.906 L 128.444,497.835 L 128.163,497.806 C 128.148,497.804 128.135,497.806 128.121,497.81 Z M 128.611,497.867 C 128.587,497.875 128.568,497.888 128.55,497.904 C 128.532,497.92 128.518,497.94 128.509,497.962 C 128.499,497.986 128.494,498.012 128.494,498.039 C 128.494,498.066 128.499,498.092 128.509,498.118 C 128.517,498.143 128.532,498.165 128.55,498.186 C 128.568,498.205 128.587,498.222 128.611,498.235 C 128.634,498.248 128.659,498.255 128.686,498.259 L 128.877,498.278 L 128.877,498.206 L 128.686,498.187 C 128.669,498.185 128.652,498.179 128.638,498.171 C 128.623,498.164 128.609,498.154 128.598,498.14 C 128.586,498.128 128.579,498.115 128.571,498.097 C 128.566,498.081 128.562,498.064 128.562,498.046 C 128.562,498.029 128.566,498.012 128.572,497.996 C 128.579,497.981 128.586,497.969 128.599,497.959 C 128.61,497.949 128.625,497.941 128.638,497.936 C 128.652,497.93 128.669,497.929 128.686,497.93 L 128.878,497.951 L 128.878,497.879 L 128.686,497.859 L 128.647,497.859 C 128.635,497.86 128.623,497.863 128.611,497.867 Z M 126.47,497.884 L 126.645,497.902 C 126.649,497.903 126.651,497.903 126.654,497.904 C 126.656,497.904 126.657,497.905 126.66,497.907 C 126.666,497.911 126.671,497.915 126.675,497.922 C 126.678,497.928 126.68,497.935 126.68,497.942 C 126.68,497.948 126.678,497.954 126.676,497.957 C 126.675,497.962 126.672,497.966 126.669,497.967 C 126.668,497.968 126.665,497.97 126.661,497.972 C 126.656,497.975 126.652,497.975 126.645,497.975 L 126.47,497.957 L 126.47,497.884 Z M 129.091,497.903 L 129.091,498.229 L 128.933,498.212 L 128.933,498.285 L 129.318,498.324 L 129.318,498.253 L 129.161,498.235 L 129.161,497.91 L 129.091,497.903 Z M 126.871,497.925 L 127.047,497.943 C 127.049,497.943 127.051,497.943 127.054,497.944 C 127.056,497.944 127.058,497.946 127.062,497.947 C 127.067,497.951 127.072,497.956 127.076,497.962 C 127.08,497.968 127.082,497.975 127.082,497.982 C 127.082,497.99 127.08,497.994 127.078,498 C 127.076,498.004 127.074,498.007 127.071,498.008 C 127.069,498.01 127.065,498.012 127.063,498.014 C 127.058,498.016 127.052,498.017 127.047,498.016 L 126.871,497.998 L 126.871,497.925 Z M 129.374,497.93 L 129.373,498.329 L 129.443,498.337 L 129.444,497.938 L 129.374,497.93 Z M 129.671,497.962 L 129.51,498.272 L 129.475,498.34 L 129.552,498.348 L 129.587,498.28 L 129.671,498.119 L 129.755,498.298 L 129.791,498.373 L 129.868,498.382 L 129.832,498.305 L 129.671,497.962 Z M 129.966,498.001 C 129.954,498.006 129.943,498.012 129.934,498.021 C 129.924,498.029 129.916,498.04 129.911,498.053 C 129.905,498.064 129.902,498.078 129.902,498.092 L 129.902,498.277 C 129.902,498.291 129.904,498.304 129.91,498.318 C 129.916,498.332 129.923,498.344 129.933,498.356 C 129.942,498.366 129.953,498.376 129.966,498.382 C 129.977,498.389 129.992,498.393 130.006,498.395 L 130.286,498.424 L 130.286,498.353 L 130.006,498.324 C 129.998,498.323 129.993,498.32 129.987,498.317 C 129.982,498.313 129.979,498.309 129.975,498.302 C 129.972,498.297 129.97,498.291 129.97,498.285 L 129.97,498.247 L 130.219,498.272 L 130.219,498.202 L 129.971,498.176 L 129.971,498.1 C 129.971,498.093 129.973,498.088 129.975,498.083 C 129.979,498.078 129.982,498.072 129.988,498.071 C 129.993,498.068 129.999,498.066 130.006,498.067 L 130.287,498.097 L 130.287,498.026 L 130.006,497.996 C 129.992,497.994 129.978,497.996 129.966,498.001 Z M 130.609,498.059 L 130.608,498.456 L 130.852,498.483 C 130.866,498.484 130.879,498.483 130.892,498.478 C 130.905,498.473 130.916,498.467 130.925,498.459 C 130.935,498.449 130.942,498.439 130.948,498.426 C 130.952,498.413 130.955,498.4 130.955,498.385 C 130.955,498.37 130.953,498.356 130.949,498.343 C 130.943,498.33 130.936,498.317 130.927,498.308 C 130.918,498.298 130.909,498.288 130.895,498.282 C 130.887,498.276 130.875,498.272 130.865,498.27 L 130.922,498.162 L 130.956,498.093 L 130.878,498.086 L 130.845,498.154 L 130.807,498.224 L 130.807,498.227 C 130.8,498.237 130.791,498.245 130.78,498.25 C 130.769,498.254 130.759,498.257 130.748,498.256 L 130.677,498.248 L 130.677,498.065 L 130.609,498.059 Z M 131.075,498.117 C 131.064,498.12 131.052,498.128 131.043,498.136 C 131.033,498.144 131.026,498.155 131.021,498.167 C 131.015,498.179 131.013,498.194 131.013,498.207 L 131.013,498.392 C 131.013,498.407 131.014,498.42 131.02,498.433 C 131.026,498.448 131.033,498.46 131.043,498.472 C 131.052,498.483 131.063,498.491 131.075,498.498 C 131.088,498.504 131.101,498.509 131.115,498.51 L 131.396,498.538 L 131.396,498.468 L 131.115,498.44 C 131.109,498.439 131.103,498.435 131.097,498.431 C 131.093,498.428 131.089,498.423 131.084,498.418 C 131.082,498.411 131.08,498.406 131.08,498.398 L 131.08,498.363 L 131.328,498.387 L 131.328,498.316 L 131.081,498.291 L 131.081,498.216 C 131.081,498.208 131.083,498.203 131.085,498.197 C 131.089,498.193 131.093,498.189 131.097,498.186 C 131.103,498.183 131.11,498.182 131.115,498.182 L 131.397,498.212 L 131.397,498.141 L 131.116,498.112 C 131.102,498.111 131.088,498.113 131.075,498.117 Z M 131.527,498.164 C 131.512,498.169 131.499,498.177 131.488,498.187 C 131.477,498.196 131.469,498.21 131.462,498.225 C 131.456,498.239 131.452,498.255 131.452,498.272 L 131.522,498.279 C 131.522,498.269 131.523,498.259 131.529,498.253 C 131.533,498.245 131.539,498.239 131.547,498.235 C 131.555,498.231 131.562,498.23 131.575,498.23 L 131.696,498.243 C 131.705,498.244 131.713,498.248 131.722,498.253 C 131.729,498.259 131.736,498.265 131.74,498.275 C 131.745,498.284 131.747,498.292 131.747,498.303 C 131.747,498.313 131.745,498.322 131.74,498.33 C 131.736,498.338 131.729,498.343 131.722,498.348 C 131.713,498.351 131.705,498.353 131.696,498.352 L 131.555,498.338 L 131.536,498.338 C 131.529,498.338 131.522,498.34 131.516,498.342 C 131.504,498.345 131.495,498.352 131.483,498.36 C 131.48,498.364 131.473,498.369 131.471,498.376 C 131.464,498.384 131.46,498.393 131.457,498.403 C 131.453,498.413 131.452,498.424 131.452,498.434 L 131.452,498.437 C 131.452,498.453 131.455,498.466 131.46,498.479 C 131.465,498.493 131.472,498.505 131.483,498.516 C 131.493,498.527 131.503,498.536 131.516,498.542 C 131.527,498.55 131.541,498.554 131.555,498.555 L 131.711,498.572 C 131.725,498.574 131.739,498.572 131.752,498.568 C 131.764,498.563 131.775,498.557 131.786,498.549 C 131.795,498.538 131.803,498.528 131.808,498.516 C 131.814,498.504 131.815,498.491 131.815,498.475 L 131.815,498.473 L 131.747,498.465 L 131.747,498.467 C 131.747,498.474 131.745,498.479 131.742,498.485 C 131.738,498.491 131.734,498.494 131.73,498.498 C 131.724,498.499 131.718,498.501 131.711,498.5 L 131.555,498.485 C 131.549,498.484 131.542,498.481 131.537,498.477 C 131.533,498.473 131.529,498.468 131.524,498.462 C 131.522,498.457 131.521,498.451 131.521,498.444 L 131.521,498.441 C 131.521,498.433 131.522,498.429 131.524,498.423 C 131.529,498.418 131.533,498.414 131.538,498.411 C 131.542,498.409 131.549,498.407 131.555,498.408 L 131.696,498.422 L 131.721,498.422 C 131.728,498.42 131.736,498.42 131.744,498.417 C 131.76,498.411 131.773,498.403 131.784,498.392 C 131.786,498.392 131.786,498.391 131.787,498.389 C 131.787,498.388 131.787,498.388 131.788,498.387 C 131.797,498.377 131.804,498.366 131.808,498.353 C 131.814,498.34 131.816,498.324 131.816,498.31 C 131.816,498.292 131.813,498.276 131.807,498.259 C 131.801,498.245 131.792,498.23 131.781,498.219 C 131.768,498.205 131.756,498.194 131.741,498.186 C 131.727,498.179 131.711,498.173 131.696,498.171 L 131.575,498.159 C 131.556,498.157 131.541,498.159 131.527,498.164 Z M 131.872,498.191 L 131.871,498.588 L 132.114,498.614 C 132.13,498.615 132.143,498.614 132.154,498.609 C 132.167,498.606 132.178,498.599 132.188,498.589 L 132.188,498.589 C 132.197,498.58 132.205,498.569 132.21,498.557 C 132.214,498.543 132.218,498.53 132.218,498.516 C 132.218,498.501 132.215,498.487 132.21,498.475 C 132.206,498.46 132.199,498.449 132.189,498.439 C 132.18,498.427 132.17,498.419 132.157,498.412 C 132.149,498.407 132.139,498.403 132.129,498.401 C 132.128,498.401 132.126,498.4 132.125,498.4 L 132.125,498.4 L 131.942,498.381 L 131.942,498.197 L 131.872,498.191 Z M 132.274,498.232 L 132.273,498.63 L 132.341,498.636 L 132.343,498.239 L 132.274,498.232 Z M 132.397,498.243 L 132.396,498.641 L 132.64,498.666 C 132.654,498.669 132.667,498.667 132.681,498.663 C 132.693,498.66 132.703,498.651 132.713,498.643 C 132.723,498.633 132.73,498.623 132.735,498.611 C 132.74,498.599 132.743,498.586 132.743,498.57 C 132.743,498.556 132.74,498.542 132.736,498.529 C 132.73,498.516 132.724,498.503 132.715,498.492 C 132.705,498.483 132.695,498.474 132.683,498.466 C 132.673,498.46 132.663,498.458 132.653,498.454 L 132.708,498.348 L 132.743,498.279 L 132.667,498.271 L 132.631,498.34 L 132.595,498.409 L 132.593,498.412 C 132.587,498.421 132.579,498.429 132.569,498.433 C 132.558,498.44 132.546,498.442 132.535,498.441 L 132.467,498.433 L 132.467,498.25 L 132.397,498.243 Z M 132.776,498.285 L 132.813,498.359 L 132.974,498.702 L 133.135,498.392 L 133.171,498.324 L 133.093,498.317 L 133.059,498.384 L 132.974,498.545 L 132.889,498.367 L 132.853,498.291 L 132.776,498.285 Z M 130.677,498.318 L 130.852,498.338 C 130.855,498.338 130.858,498.34 130.859,498.34 C 130.861,498.34 130.864,498.342 130.866,498.343 C 130.872,498.346 130.877,498.351 130.882,498.357 C 130.885,498.364 130.888,498.37 130.888,498.379 C 130.888,498.384 130.887,498.39 130.884,498.394 C 130.882,498.398 130.878,498.401 130.877,498.403 C 130.874,498.406 130.871,498.407 130.868,498.408 C 130.864,498.409 130.863,498.409 130.859,498.41 L 130.852,498.41 L 130.677,498.392 L 130.677,498.318 Z M 133.361,498.344 L 133.361,498.673 L 133.202,498.655 L 133.202,498.726 L 133.588,498.766 L 133.588,498.697 L 133.429,498.679 L 133.43,498.351 L 133.361,498.344 Z M 133.747,498.4 C 133.724,498.407 133.705,498.42 133.686,498.435 C 133.67,498.453 133.655,498.473 133.644,498.496 C 133.634,498.517 133.629,498.543 133.629,498.572 C 133.629,498.599 133.634,498.625 133.644,498.649 C 133.654,498.676 133.669,498.698 133.686,498.717 C 133.704,498.737 133.724,498.754 133.747,498.767 C 133.77,498.78 133.796,498.789 133.822,498.791 C 133.85,498.793 133.873,498.791 133.897,498.783 C 133.92,498.776 133.942,498.763 133.959,498.745 C 133.976,498.73 133.989,498.711 134,498.687 C 134.01,498.665 134.015,498.639 134.015,498.611 C 134.015,498.584 134.01,498.557 134.001,498.531 C 133.989,498.507 133.976,498.485 133.959,498.464 C 133.943,498.446 133.921,498.428 133.898,498.416 C 133.874,498.403 133.85,498.395 133.823,498.392 L 133.784,498.392 C 133.771,498.394 133.76,498.396 133.747,498.4 Z M 134.057,498.416 L 134.056,498.813 L 134.298,498.839 C 134.313,498.84 134.327,498.838 134.34,498.834 C 134.352,498.83 134.363,498.824 134.373,498.816 C 134.383,498.807 134.389,498.796 134.395,498.783 C 134.4,498.771 134.402,498.756 134.402,498.742 C 134.402,498.728 134.4,498.715 134.395,498.701 C 134.39,498.687 134.383,498.676 134.374,498.665 C 134.365,498.653 134.355,498.645 134.344,498.638 C 134.332,498.633 134.323,498.629 134.311,498.627 L 134.369,498.518 L 134.403,498.451 L 134.326,498.444 L 134.292,498.511 L 134.254,498.582 L 134.252,498.585 C 134.247,498.595 134.239,498.602 134.228,498.608 C 134.218,498.612 134.206,498.614 134.194,498.612 L 134.125,498.607 L 134.125,498.422 L 134.057,498.416 Z M 131.94,498.451 L 132.114,498.469 C 132.117,498.47 132.121,498.47 132.123,498.472 C 132.124,498.472 132.128,498.473 132.13,498.474 L 132.13,498.475 C 132.136,498.479 132.141,498.484 132.144,498.49 C 132.149,498.496 132.149,498.503 132.15,498.511 C 132.149,498.516 132.149,498.522 132.147,498.525 C 132.144,498.53 132.143,498.533 132.139,498.535 C 132.137,498.536 132.135,498.538 132.13,498.54 C 132.126,498.542 132.122,498.543 132.114,498.542 L 131.94,498.524 L 131.94,498.451 Z M 133.823,498.463 C 133.84,498.465 133.856,498.47 133.871,498.479 C 133.886,498.486 133.899,498.498 133.91,498.511 C 133.922,498.523 133.931,498.538 133.937,498.554 C 133.944,498.569 133.946,498.587 133.946,498.604 C 133.946,498.621 133.944,498.638 133.937,498.652 C 133.931,498.669 133.921,498.682 133.909,498.692 C 133.899,498.702 133.886,498.71 133.871,498.715 C 133.856,498.719 133.84,498.72 133.822,498.719 C 133.805,498.717 133.789,498.711 133.775,498.705 C 133.76,498.698 133.746,498.685 133.734,498.674 C 133.723,498.66 133.715,498.645 133.708,498.629 C 133.702,498.613 133.699,498.597 133.699,498.58 C 133.699,498.561 133.702,498.543 133.708,498.529 C 133.715,498.515 133.723,498.503 133.734,498.492 C 133.746,498.483 133.76,498.474 133.776,498.469 C 133.79,498.463 133.805,498.461 133.823,498.463 Z M 132.467,498.504 L 132.64,498.523 C 132.643,498.523 132.645,498.524 132.647,498.525 C 132.649,498.525 132.652,498.526 132.654,498.527 C 132.66,498.53 132.665,498.536 132.669,498.542 C 132.673,498.55 132.675,498.556 132.675,498.563 C 132.675,498.569 132.673,498.576 132.672,498.58 C 132.669,498.583 132.667,498.586 132.664,498.588 C 132.662,498.591 132.659,498.592 132.654,498.594 C 132.651,498.595 132.645,498.595 132.64,498.595 L 132.467,498.578 L 132.467,498.504 Z M 134.125,498.677 L 134.298,498.697 C 134.302,498.697 134.305,498.697 134.307,498.698 C 134.309,498.698 134.311,498.698 134.313,498.7 C 134.319,498.704 134.324,498.709 134.33,498.715 C 134.332,498.72 134.334,498.727 134.334,498.735 C 134.334,498.741 134.332,498.745 134.331,498.75 C 134.33,498.754 134.326,498.757 134.323,498.759 C 134.321,498.762 134.318,498.763 134.314,498.765 C 134.31,498.768 134.305,498.768 134.298,498.768 L 134.125,498.75 L 134.125,498.677 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 121.533,510.954 L 121.359,511.114 L 138.767,512.25 L 138.856,512.211 C 138.886,512.201 138.914,512.173 138.914,512.128 L 138.914,512.085 L 121.533,510.954 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 121.359,511.114 L 121.358,487.663 L 121.447,487.579 L 121.533,487.592 L 121.533,510.953 L 121.359,511.114 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--CHAMPAGNE, .KN95_NR_small_individuals--CHAMPAGNE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='17.435 -433.287 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.302' y2='19.848' gradientTransform='translate(30.077 405.816)'%3E%3Cstop offset='0' stop-color='%23dad2c3'/%3E%3Cstop offset='1' stop-color='%23fffaf0'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.351' y2='19.921' gradientTransform='translate(26.538 406.431)'%3E%3Cstop offset='0' stop-color='%239f9c96'/%3E%3Cstop offset='1' stop-color='%23d9d5cc'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.573' y2='2.1' gradientTransform='translate(30.071 425.8)'%3E%3Cstop offset='0' stop-color='%23bdb9b2'/%3E%3Cstop offset='1' stop-color='%23dedad1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.12' y2='-0.228' gradientTransform='translate(25.398 427.855)'%3E%3Cstop offset='0' stop-color='%239b9892'/%3E%3Cstop offset='1' stop-color='%23bdb9b2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.011' y2='-0.165' gradientTransform='translate(38.39 427.672) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c9c5bd'/%3E%3Cstop offset='1' stop-color='%23e2ded5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(27.245 415.559) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23bcb8b1'/%3E%3Cstop offset='1' stop-color='%23d9d5cc'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(34.164 416.558) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 27.164,403.403 L 27.164,426.89 L 44.611,428.009 C 44.623,427.995 44.633,427.974 44.633,427.951 L 44.633,405.77 L 27.164,403.403 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 27.164,403.403 L 23.7,406.765 L 23.699,428.787 L 27.164,426.89 L 27.164,403.403 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 27.164,426.89 L 23.699,428.787 L 40.631,429.715 L 44.575,428.035 C 44.588,428.03 44.601,428.022 44.611,428.009 L 27.164,426.89 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 27.077,426.621 L 23.697,428.51 L 23.696,428.787 L 27.077,426.936 L 27.077,426.621 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 34.205,409.005 L 34.205,409.414 L 34.277,409.423 L 34.277,409.011 L 34.205,409.005 Z M 34.335,409.017 L 34.335,409.426 L 34.407,409.38 L 34.669,409.204 L 34.669,409.465 L 34.74,409.473 L 34.74,409.063 L 34.669,409.11 L 34.407,409.287 L 34.407,409.026 L 34.335,409.017 Z M 34.798,409.068 L 34.798,409.48 L 35.001,409.501 C 35.029,409.504 35.055,409.502 35.078,409.493 C 35.103,409.486 35.125,409.474 35.144,409.456 C 35.162,409.439 35.176,409.42 35.186,409.397 C 35.197,409.373 35.203,409.346 35.203,409.318 C 35.203,409.292 35.199,409.269 35.19,409.245 C 35.181,409.222 35.169,409.2 35.154,409.181 C 35.153,409.179 35.151,409.176 35.149,409.174 C 35.147,409.172 35.146,409.169 35.142,409.166 C 35.125,409.145 35.103,409.13 35.078,409.115 C 35.056,409.103 35.03,409.094 35.001,409.091 L 34.798,409.068 Z M 35.26,409.119 L 35.26,409.53 L 35.334,409.536 L 35.334,409.127 L 35.26,409.119 Z M 34.87,409.149 L 35.001,409.163 C 35.018,409.166 35.035,409.172 35.05,409.18 C 35.067,409.188 35.08,409.198 35.092,409.211 C 35.103,409.224 35.114,409.241 35.121,409.257 C 35.127,409.275 35.13,409.292 35.131,409.309 C 35.13,409.328 35.127,409.344 35.121,409.36 C 35.114,409.376 35.103,409.388 35.092,409.399 C 35.08,409.411 35.067,409.418 35.05,409.423 C 35.035,409.428 35.018,409.429 35.001,409.427 L 34.87,409.413 L 34.87,409.149 Z M 35.575,409.154 L 35.404,409.473 L 35.367,409.541 L 35.449,409.549 L 35.485,409.481 L 35.575,409.315 L 35.663,409.501 L 35.699,409.578 L 35.78,409.586 L 35.743,409.508 L 35.575,409.154 Z M 35.816,409.18 L 35.816,409.59 L 35.889,409.598 L 35.889,409.187 L 35.816,409.18 Z M 35.947,409.194 L 35.947,409.604 L 36.149,409.625 C 36.177,409.628 36.203,409.625 36.228,409.618 C 36.252,409.612 36.273,409.599 36.291,409.582 C 36.311,409.565 36.324,409.544 36.335,409.521 C 36.346,409.497 36.351,409.472 36.351,409.443 C 36.351,409.418 36.347,409.393 36.339,409.371 C 36.33,409.346 36.319,409.325 36.303,409.305 C 36.301,409.303 36.299,409.301 36.297,409.299 C 36.296,409.296 36.294,409.293 36.29,409.292 C 36.272,409.271 36.252,409.254 36.228,409.24 C 36.203,409.226 36.177,409.219 36.149,409.215 L 35.947,409.194 Z M 36.535,409.274 C 36.509,409.282 36.487,409.293 36.469,409.31 C 36.45,409.327 36.436,409.347 36.425,409.372 C 36.416,409.395 36.41,409.421 36.41,409.449 L 36.41,409.654 L 36.481,409.662 L 36.481,409.456 C 36.481,409.438 36.485,409.422 36.491,409.407 C 36.498,409.392 36.508,409.38 36.521,409.368 C 36.533,409.357 36.546,409.348 36.562,409.344 C 36.577,409.339 36.593,409.336 36.612,409.339 C 36.63,409.341 36.647,409.346 36.662,409.355 C 36.678,409.364 36.692,409.375 36.704,409.388 C 36.715,409.401 36.725,409.416 36.731,409.433 C 36.739,409.45 36.742,409.467 36.742,409.486 L 36.742,409.69 L 36.815,409.698 L 36.815,409.493 C 36.815,409.465 36.809,409.437 36.799,409.412 C 36.787,409.386 36.774,409.362 36.754,409.341 C 36.737,409.321 36.715,409.305 36.69,409.29 C 36.667,409.278 36.64,409.269 36.612,409.266 C 36.583,409.263 36.558,409.266 36.535,409.274 Z M 36.018,409.275 L 36.149,409.289 C 36.166,409.29 36.182,409.295 36.199,409.305 C 36.215,409.313 36.229,409.323 36.241,409.336 C 36.253,409.351 36.262,409.366 36.268,409.383 C 36.275,409.399 36.278,409.416 36.279,409.434 C 36.278,409.452 36.275,409.47 36.268,409.486 C 36.262,409.501 36.253,409.514 36.241,409.523 C 36.229,409.534 36.215,409.541 36.199,409.547 C 36.182,409.553 36.166,409.554 36.149,409.553 L 36.018,409.538 L 36.018,409.275 Z M 36.85,409.292 L 36.886,409.37 L 37.055,409.724 L 37.226,409.406 L 37.262,409.335 L 37.182,409.328 L 37.145,409.398 L 37.055,409.562 L 36.968,409.379 L 36.93,409.301 L 36.85,409.292 Z M 37.397,409.355 C 37.386,409.357 37.378,409.358 37.369,409.362 C 37.356,409.367 37.345,409.374 37.335,409.384 C 37.326,409.392 37.317,409.403 37.311,409.415 C 37.307,409.424 37.304,409.432 37.302,409.441 C 37.299,409.45 37.298,409.461 37.298,409.472 L 37.298,409.75 L 37.369,409.758 L 37.369,409.473 C 37.371,409.464 37.373,409.455 37.378,409.45 C 37.382,409.443 37.387,409.437 37.395,409.433 C 37.403,409.43 37.412,409.428 37.419,409.427 L 37.632,409.45 L 37.632,409.378 L 37.426,409.355 C 37.416,409.354 37.406,409.354 37.397,409.355 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 32.003,415.732 L 32.001,417.785 L 32.339,417.819 L 32.341,416.771 L 32.62,417.074 L 32.871,417.349 L 33.399,417.927 L 33.902,417.978 L 33.073,417.071 L 33.897,415.925 L 33.479,415.884 L 32.822,416.796 L 32.341,416.275 L 32.341,415.768 L 32.003,415.732 Z M 34.069,415.944 L 34.243,416.327 L 35.036,418.094 L 35.833,416.49 L 36.006,416.141 L 35.628,416.102 L 35.454,416.451 L 35.037,417.288 L 34.622,416.366 L 34.45,415.983 L 34.069,415.944 Z M 36.178,416.157 L 36.18,416.158 L 36.441,416.551 L 36.906,417.254 L 37.122,417.575 L 37.38,417.967 L 36.173,417.843 L 36.173,418.21 L 37.641,418.358 L 38.066,418.403 L 37.803,418.009 L 37.332,417.297 L 37.12,416.976 L 36.864,416.594 L 38.077,416.717 L 38.078,416.35 L 36.609,416.202 L 36.605,416.202 L 36.178,416.157 Z M 38.653,416.454 C 38.593,416.477 38.538,416.51 38.491,416.557 C 38.445,416.602 38.408,416.657 38.382,416.721 C 38.356,416.785 38.343,416.856 38.342,416.932 L 38.341,417.877 C 38.341,417.954 38.353,418.026 38.38,418.095 C 38.407,418.164 38.442,418.226 38.49,418.282 C 38.536,418.339 38.59,418.383 38.652,418.417 C 38.713,418.453 38.78,418.474 38.851,418.482 L 40.236,418.623 L 40.236,418.257 L 38.851,418.115 C 38.818,418.112 38.789,418.1 38.763,418.081 C 38.737,418.061 38.716,418.036 38.701,418.007 C 38.685,417.978 38.678,417.945 38.678,417.91 L 38.678,417.719 L 39.898,417.845 L 39.898,417.478 L 38.678,417.354 L 38.678,416.967 C 38.678,416.932 38.686,416.902 38.703,416.875 C 38.718,416.847 38.739,416.827 38.765,416.813 C 38.791,416.798 38.819,416.794 38.853,416.796 L 40.238,416.937 L 40.239,416.571 L 38.853,416.43 C 38.782,416.423 38.716,416.431 38.653,416.454 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 34.006,414.642 L 34.006,415.079 C 34.006,415.103 34.011,415.124 34.018,415.144 C 34.026,415.164 34.037,415.183 34.052,415.2 C 34.067,415.216 34.083,415.228 34.103,415.239 C 34.123,415.249 34.143,415.256 34.165,415.258 L 34.598,415.304 L 34.598,415.198 L 34.165,415.151 C 34.156,415.15 34.147,415.147 34.138,415.141 C 34.13,415.135 34.125,415.128 34.119,415.119 C 34.114,415.111 34.112,415.102 34.112,415.093 L 34.112,415.035 L 34.493,415.075 L 34.493,414.968 L 34.112,414.928 L 34.112,414.654 L 34.006,414.642 Z M 34.684,414.713 L 34.684,415.151 C 34.684,415.173 34.688,415.196 34.696,415.216 C 34.703,415.235 34.714,415.253 34.729,415.27 C 34.744,415.286 34.761,415.3 34.78,415.311 C 34.799,415.321 34.819,415.327 34.843,415.331 L 35.275,415.376 L 35.276,415.268 L 34.843,415.224 C 34.833,415.222 34.824,415.219 34.816,415.214 C 34.808,415.208 34.802,415.2 34.797,415.191 C 34.792,415.182 34.79,415.172 34.79,415.162 L 34.79,415.108 L 35.17,415.147 L 35.17,415.041 L 34.789,415.001 L 34.79,414.724 L 34.684,414.713 Z M 35.361,414.786 L 35.36,415.385 L 35.734,415.425 C 35.756,415.427 35.777,415.425 35.795,415.419 C 35.815,415.413 35.831,415.402 35.846,415.389 L 35.847,415.387 C 35.863,415.374 35.873,415.359 35.882,415.34 C 35.889,415.321 35.895,415.3 35.895,415.279 C 35.895,415.256 35.889,415.235 35.883,415.216 C 35.874,415.196 35.864,415.177 35.849,415.162 C 35.836,415.146 35.819,415.132 35.801,415.123 C 35.787,415.113 35.772,415.108 35.755,415.105 C 35.754,415.105 35.752,415.105 35.751,415.104 L 35.751,415.103 L 35.467,415.072 L 35.467,414.798 L 35.361,414.786 Z M 35.978,414.848 L 35.978,415.027 C 35.978,415.038 35.979,415.049 35.981,415.061 C 35.984,415.073 35.988,415.086 35.991,415.097 C 36,415.118 36.012,415.137 36.028,415.155 C 36.043,415.172 36.06,415.187 36.081,415.2 C 36.101,415.209 36.122,415.217 36.146,415.221 L 36.399,415.247 L 36.402,415.247 C 36.414,415.25 36.425,415.255 36.435,415.262 C 36.444,415.269 36.451,415.279 36.456,415.291 C 36.462,415.3 36.464,415.312 36.464,415.325 C 36.464,415.337 36.461,415.349 36.455,415.359 C 36.449,415.368 36.442,415.376 36.431,415.382 C 36.42,415.387 36.409,415.389 36.395,415.387 L 35.979,415.344 L 35.979,415.451 L 36.395,415.494 C 36.42,415.496 36.444,415.494 36.464,415.487 C 36.484,415.481 36.502,415.47 36.52,415.456 C 36.536,415.441 36.548,415.425 36.556,415.403 C 36.566,415.383 36.57,415.361 36.57,415.336 C 36.57,415.324 36.569,415.312 36.567,415.299 C 36.564,415.287 36.561,415.276 36.555,415.265 C 36.553,415.253 36.548,415.244 36.541,415.235 C 36.536,415.226 36.529,415.217 36.522,415.209 C 36.506,415.19 36.487,415.175 36.467,415.163 C 36.446,415.152 36.425,415.145 36.401,415.141 L 36.399,415.141 C 36.398,415.141 36.397,415.141 36.395,415.141 L 36.146,415.115 C 36.134,415.112 36.124,415.108 36.115,415.1 C 36.105,415.093 36.097,415.083 36.092,415.072 C 36.087,415.061 36.085,415.051 36.085,415.039 L 36.085,414.969 L 36.568,415.019 L 36.568,414.911 L 36.151,414.867 L 35.978,414.848 Z M 37.068,414.966 L 37.068,415.562 L 37.173,415.492 L 37.554,415.235 L 37.554,415.616 L 37.659,415.627 L 37.66,415.028 L 37.554,415.1 L 37.173,415.357 L 37.173,414.977 L 37.068,414.966 Z M 37.745,415.038 L 37.744,415.638 L 38.118,415.677 C 38.139,415.68 38.16,415.678 38.18,415.669 C 38.2,415.665 38.216,415.654 38.23,415.641 C 38.244,415.627 38.256,415.612 38.264,415.593 C 38.272,415.574 38.277,415.553 38.277,415.532 C 38.277,415.509 38.272,415.488 38.265,415.467 C 38.257,415.448 38.246,415.43 38.232,415.414 C 38.219,415.398 38.202,415.385 38.185,415.374 C 38.169,415.365 38.154,415.359 38.138,415.356 L 38.224,415.194 L 38.277,415.094 L 38.159,415.081 L 38.105,415.182 L 38.048,415.288 L 38.045,415.292 C 38.036,415.308 38.024,415.319 38.007,415.326 C 37.993,415.334 37.975,415.337 37.955,415.335 L 37.851,415.324 L 37.852,415.047 L 37.745,415.038 Z M 35.467,415.177 L 35.735,415.207 C 35.738,415.207 35.741,415.208 35.747,415.209 C 35.75,415.211 35.753,415.213 35.757,415.215 L 35.757,415.215 C 35.767,415.22 35.775,415.228 35.78,415.237 C 35.786,415.247 35.789,415.256 35.789,415.267 C 35.789,415.278 35.787,415.285 35.783,415.292 C 35.78,415.298 35.776,415.303 35.773,415.306 C 35.769,415.309 35.765,415.312 35.758,415.314 C 35.752,415.318 35.743,415.318 35.735,415.318 L 35.467,415.288 L 35.467,415.177 Z M 37.851,415.43 L 38.118,415.459 C 38.122,415.459 38.125,415.46 38.129,415.46 C 38.133,415.463 38.136,415.464 38.139,415.467 C 38.149,415.472 38.157,415.48 38.162,415.489 C 38.168,415.499 38.173,415.509 38.173,415.519 C 38.171,415.531 38.169,415.538 38.165,415.544 C 38.161,415.551 38.159,415.555 38.155,415.558 C 38.152,415.561 38.148,415.564 38.141,415.567 C 38.135,415.569 38.127,415.57 38.118,415.569 L 37.85,415.541 L 37.851,415.43 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 32.12,413.446 L 32.12,413.844 L 32.362,413.869 C 32.377,413.872 32.39,413.869 32.403,413.865 C 32.414,413.86 32.426,413.855 32.436,413.845 L 32.436,413.845 C 32.446,413.835 32.453,413.826 32.458,413.814 C 32.463,413.801 32.467,413.788 32.467,413.773 C 32.467,413.756 32.464,413.743 32.459,413.73 C 32.454,413.717 32.448,413.706 32.438,413.695 C 32.429,413.684 32.417,413.674 32.406,413.669 C 32.397,413.663 32.387,413.658 32.377,413.658 C 32.375,413.658 32.374,413.656 32.373,413.656 L 32.373,413.656 L 32.189,413.636 L 32.189,413.454 L 32.12,413.446 Z M 32.52,413.486 L 32.52,413.885 L 32.764,413.911 C 32.779,413.911 32.792,413.911 32.804,413.906 C 32.816,413.902 32.827,413.896 32.836,413.886 C 32.846,413.878 32.853,413.867 32.86,413.855 C 32.864,413.843 32.867,413.829 32.868,413.814 C 32.867,413.8 32.864,413.786 32.861,413.773 C 32.853,413.758 32.847,413.747 32.838,413.736 C 32.829,413.725 32.819,413.717 32.807,413.71 C 32.797,413.704 32.788,413.7 32.778,413.698 L 32.832,413.59 L 32.868,413.522 L 32.791,413.514 L 32.755,413.581 L 32.718,413.653 L 32.716,413.656 C 32.711,413.667 32.702,413.673 32.693,413.679 C 32.681,413.684 32.671,413.685 32.659,413.684 L 32.59,413.677 L 32.59,413.494 L 32.52,413.486 Z M 33.027,413.556 C 33.005,413.563 32.984,413.576 32.967,413.591 C 32.948,413.608 32.934,413.628 32.926,413.65 C 32.915,413.674 32.911,413.7 32.909,413.728 C 32.911,413.755 32.915,413.782 32.925,413.806 C 32.934,413.831 32.948,413.853 32.965,413.873 C 32.984,413.894 33.004,413.911 33.027,413.923 C 33.05,413.936 33.074,413.943 33.102,413.946 C 33.128,413.949 33.153,413.946 33.178,413.938 C 33.199,413.93 33.221,413.919 33.238,413.903 C 33.256,413.886 33.27,413.866 33.279,413.843 C 33.289,413.82 33.294,413.795 33.294,413.768 C 33.294,413.739 33.289,413.713 33.279,413.687 C 33.27,413.663 33.256,413.641 33.239,413.62 C 33.222,413.601 33.199,413.583 33.178,413.571 C 33.153,413.558 33.129,413.55 33.103,413.549 L 33.064,413.549 C 33.051,413.55 33.039,413.552 33.027,413.556 Z M 33.494,413.588 L 33.494,413.916 L 33.337,413.899 L 33.337,413.969 L 33.72,414.011 L 33.72,413.939 L 33.565,413.923 L 33.565,413.595 L 33.494,413.588 Z M 33.103,413.619 C 33.12,413.62 33.136,413.626 33.151,413.634 C 33.166,413.643 33.179,413.653 33.189,413.666 C 33.2,413.679 33.211,413.693 33.217,413.71 C 33.223,413.724 33.227,413.743 33.227,413.76 C 33.227,413.778 33.223,413.794 33.217,413.809 C 33.211,413.823 33.2,413.836 33.189,413.846 C 33.178,413.857 33.165,413.865 33.151,413.869 C 33.135,413.875 33.12,413.877 33.102,413.875 C 33.085,413.873 33.068,413.868 33.054,413.859 C 33.039,413.852 33.025,413.841 33.014,413.829 C 33.004,413.815 32.995,413.802 32.988,413.784 C 32.983,413.769 32.978,413.752 32.978,413.735 C 32.978,413.717 32.983,413.7 32.988,413.685 C 32.995,413.671 33.004,413.658 33.015,413.647 C 33.026,413.637 33.039,413.629 33.054,413.624 C 33.068,413.62 33.086,413.617 33.103,413.619 Z M 33.839,413.633 C 33.829,413.636 33.817,413.643 33.808,413.653 C 33.798,413.662 33.791,413.672 33.785,413.684 C 33.78,413.697 33.779,413.711 33.779,413.725 L 33.778,413.91 C 33.779,413.924 33.779,413.938 33.785,413.951 C 33.791,413.964 33.798,413.976 33.808,413.989 C 33.817,413.999 33.827,414.007 33.839,414.014 C 33.852,414.021 33.866,414.027 33.88,414.027 L 34.162,414.056 L 34.162,413.986 L 33.88,413.956 C 33.875,413.955 33.868,413.953 33.862,413.949 C 33.858,413.945 33.853,413.94 33.85,413.935 C 33.847,413.929 33.845,413.922 33.845,413.916 L 33.845,413.879 L 34.094,413.905 L 34.094,413.833 L 33.845,413.808 L 33.846,413.733 C 33.846,413.725 33.847,413.72 33.85,413.715 C 33.853,413.71 33.858,413.706 33.862,413.704 C 33.868,413.7 33.876,413.699 33.88,413.7 L 34.162,413.73 L 34.162,413.658 L 33.881,413.629 C 33.866,413.627 33.853,413.629 33.839,413.633 Z M 34.328,413.691 C 34.305,413.698 34.286,413.711 34.268,413.726 C 34.25,413.743 34.236,413.763 34.226,413.787 C 34.217,413.809 34.211,413.834 34.211,413.861 C 34.211,413.89 34.217,413.916 34.226,413.94 C 34.236,413.965 34.25,413.989 34.268,414.008 C 34.286,414.029 34.305,414.045 34.328,414.058 C 34.352,414.07 34.377,414.078 34.404,414.081 L 34.596,414.102 L 34.596,414.03 L 34.404,414.01 C 34.386,414.008 34.371,414.003 34.355,413.995 C 34.341,413.988 34.327,413.976 34.315,413.962 C 34.305,413.949 34.295,413.937 34.289,413.92 C 34.284,413.905 34.28,413.887 34.28,413.869 C 34.28,413.852 34.284,413.835 34.289,413.82 C 34.295,413.806 34.305,413.794 34.316,413.782 C 34.327,413.773 34.341,413.764 34.356,413.758 C 34.371,413.754 34.386,413.752 34.404,413.754 L 34.596,413.774 L 34.596,413.704 L 34.404,413.683 L 34.365,413.683 C 34.353,413.684 34.341,413.687 34.328,413.691 Z M 32.189,413.707 L 32.363,413.724 C 32.365,413.724 32.369,413.725 32.371,413.726 C 32.373,413.726 32.375,413.728 32.378,413.73 C 32.384,413.734 32.389,413.737 32.393,413.744 C 32.397,413.75 32.397,413.756 32.397,413.765 C 32.397,413.771 32.397,413.777 32.395,413.781 C 32.392,413.786 32.39,413.788 32.388,413.79 C 32.385,413.793 32.382,413.795 32.378,413.796 C 32.374,413.798 32.37,413.799 32.363,413.798 L 32.189,413.781 L 32.189,413.707 Z M 34.809,413.724 L 34.809,414.053 L 34.651,414.036 L 34.651,414.108 L 35.036,414.148 L 35.036,414.075 L 34.878,414.059 L 34.878,413.732 L 34.809,413.724 Z M 32.59,413.747 L 32.764,413.766 C 32.765,413.767 32.769,413.768 32.772,413.768 C 32.774,413.769 32.776,413.769 32.779,413.77 C 32.785,413.775 32.79,413.779 32.794,413.787 C 32.797,413.792 32.799,413.799 32.799,413.806 C 32.799,413.813 32.797,413.818 32.796,413.822 C 32.794,413.827 32.791,413.829 32.789,413.831 C 32.787,413.833 32.783,413.835 32.78,413.837 C 32.776,413.839 32.77,413.84 32.764,413.839 L 32.59,413.82 L 32.59,413.747 Z M 35.091,413.754 L 35.09,414.152 L 35.16,414.16 L 35.16,413.763 L 35.091,413.754 Z M 35.39,413.786 L 35.228,414.097 L 35.191,414.162 L 35.269,414.17 L 35.306,414.104 L 35.389,413.942 L 35.473,414.121 L 35.508,414.195 L 35.585,414.205 L 35.55,414.13 L 35.39,413.786 Z M 35.683,413.824 C 35.671,413.829 35.661,413.834 35.651,413.843 C 35.642,413.852 35.634,413.863 35.629,413.875 C 35.623,413.888 35.619,413.902 35.619,413.916 L 35.619,414.1 C 35.619,414.115 35.622,414.129 35.628,414.142 C 35.632,414.156 35.641,414.168 35.651,414.178 C 35.66,414.188 35.671,414.199 35.683,414.206 C 35.695,414.213 35.708,414.217 35.723,414.219 L 36.004,414.247 L 36.004,414.175 L 35.723,414.148 C 35.715,414.147 35.71,414.143 35.705,414.14 C 35.7,414.137 35.696,414.132 35.693,414.126 C 35.689,414.121 35.688,414.114 35.688,414.108 L 35.688,414.07 L 35.937,414.097 L 35.937,414.026 L 35.689,414.001 L 35.689,413.924 C 35.689,413.917 35.69,413.911 35.694,413.906 C 35.696,413.901 35.7,413.896 35.706,413.894 C 35.71,413.892 35.716,413.891 35.724,413.892 L 36.005,413.92 L 36.005,413.848 L 35.724,413.82 C 35.709,413.819 35.695,413.82 35.683,413.824 Z M 36.328,413.881 L 36.326,414.279 L 36.569,414.305 C 36.583,414.306 36.597,414.305 36.61,414.3 C 36.622,414.296 36.634,414.289 36.644,414.281 C 36.653,414.272 36.66,414.261 36.666,414.249 C 36.67,414.237 36.673,414.223 36.673,414.208 C 36.673,414.193 36.67,414.179 36.666,414.166 C 36.661,414.153 36.654,414.141 36.645,414.131 C 36.636,414.121 36.625,414.111 36.612,414.105 C 36.604,414.099 36.593,414.095 36.583,414.094 L 36.639,413.984 L 36.673,413.917 L 36.596,413.91 L 36.562,413.976 L 36.525,414.046 L 36.523,414.051 C 36.517,414.059 36.508,414.067 36.497,414.072 C 36.488,414.077 36.477,414.079 36.465,414.078 L 36.395,414.071 L 36.395,413.888 L 36.328,413.881 Z M 36.793,413.939 C 36.78,413.943 36.769,413.949 36.761,413.959 C 36.751,413.968 36.744,413.977 36.739,413.991 C 36.733,414.003 36.729,414.017 36.729,414.031 L 36.729,414.216 C 36.729,414.23 36.733,414.244 36.738,414.258 C 36.743,414.271 36.75,414.283 36.761,414.294 C 36.769,414.305 36.78,414.314 36.793,414.322 C 36.805,414.328 36.818,414.332 36.832,414.333 L 37.115,414.362 L 37.115,414.291 L 36.832,414.261 C 36.827,414.261 36.82,414.259 36.815,414.255 C 36.812,414.252 36.806,414.247 36.803,414.241 C 36.8,414.235 36.798,414.229 36.798,414.222 L 36.798,414.185 L 37.045,414.211 L 37.045,414.139 L 36.799,414.114 L 36.799,414.04 C 36.799,414.032 36.8,414.027 36.803,414.021 C 36.806,414.016 36.812,414.013 36.815,414.01 C 36.821,414.007 36.827,414.006 36.832,414.006 L 37.116,414.035 L 37.116,413.963 L 36.833,413.935 C 36.819,413.934 36.806,413.936 36.793,413.939 Z M 37.244,413.988 C 37.23,413.993 37.218,414.001 37.206,414.01 C 37.194,414.02 37.187,414.034 37.179,414.047 C 37.173,414.062 37.169,414.078 37.169,414.096 L 37.24,414.103 C 37.24,414.093 37.242,414.083 37.245,414.075 C 37.251,414.068 37.257,414.061 37.264,414.058 C 37.273,414.054 37.28,414.053 37.292,414.053 L 37.413,414.065 C 37.422,414.067 37.432,414.07 37.44,414.075 C 37.446,414.082 37.453,414.088 37.458,414.098 C 37.463,414.107 37.465,414.117 37.465,414.126 C 37.465,414.137 37.463,414.145 37.458,414.152 C 37.453,414.161 37.446,414.165 37.44,414.169 C 37.431,414.174 37.422,414.175 37.413,414.175 L 37.273,414.161 L 37.253,414.161 C 37.245,414.162 37.24,414.162 37.234,414.163 C 37.221,414.169 37.212,414.175 37.201,414.182 C 37.197,414.188 37.192,414.193 37.187,414.199 C 37.182,414.208 37.177,414.217 37.174,414.227 C 37.171,414.236 37.169,414.247 37.169,414.258 L 37.169,414.26 C 37.169,414.274 37.173,414.289 37.177,414.303 C 37.183,414.318 37.19,414.329 37.2,414.339 C 37.211,414.35 37.22,414.359 37.232,414.365 C 37.245,414.373 37.258,414.376 37.273,414.378 L 37.429,414.395 C 37.443,414.396 37.456,414.395 37.469,414.39 C 37.482,414.387 37.493,414.379 37.502,414.371 C 37.512,414.362 37.52,414.351 37.525,414.339 C 37.531,414.327 37.533,414.314 37.533,414.298 L 37.533,414.296 L 37.464,414.287 L 37.464,414.289 C 37.464,414.297 37.463,414.303 37.459,414.308 C 37.456,414.314 37.452,414.318 37.446,414.321 C 37.442,414.323 37.436,414.324 37.429,414.324 L 37.273,414.306 C 37.266,414.306 37.26,414.304 37.255,414.299 C 37.251,414.296 37.245,414.291 37.242,414.285 C 37.24,414.279 37.239,414.272 37.239,414.267 L 37.239,414.264 C 37.239,414.258 37.24,414.253 37.242,414.247 C 37.245,414.241 37.251,414.237 37.255,414.235 C 37.26,414.232 37.266,414.231 37.273,414.232 L 37.413,414.246 L 37.438,414.246 C 37.445,414.245 37.454,414.244 37.461,414.24 C 37.477,414.235 37.49,414.227 37.502,414.216 C 37.502,414.215 37.503,414.215 37.504,414.213 C 37.504,414.213 37.504,414.212 37.506,414.211 C 37.515,414.201 37.522,414.188 37.526,414.175 C 37.532,414.162 37.534,414.149 37.534,414.134 C 37.534,414.117 37.531,414.099 37.524,414.083 C 37.519,414.068 37.51,414.053 37.498,414.041 C 37.486,414.028 37.474,414.018 37.459,414.01 C 37.445,414.002 37.429,413.996 37.413,413.995 L 37.292,413.981 C 37.275,413.98 37.258,413.981 37.244,413.988 Z M 37.59,414.014 L 37.588,414.411 L 37.832,414.437 C 37.846,414.44 37.859,414.437 37.871,414.433 C 37.884,414.429 37.895,414.421 37.906,414.413 L 37.906,414.413 C 37.915,414.403 37.922,414.392 37.928,414.379 C 37.932,414.368 37.935,414.354 37.935,414.339 C 37.935,414.325 37.934,414.31 37.928,414.297 C 37.923,414.284 37.916,414.272 37.908,414.261 C 37.898,414.251 37.889,414.242 37.876,414.235 C 37.867,414.23 37.857,414.227 37.846,414.224 C 37.845,414.224 37.844,414.223 37.843,414.223 L 37.843,414.222 L 37.658,414.204 L 37.658,414.021 L 37.59,414.014 Z M 37.992,414.055 L 37.991,414.453 L 38.058,414.46 L 38.059,414.062 L 37.992,414.055 Z M 38.116,414.065 L 38.115,414.465 L 38.357,414.489 C 38.372,414.492 38.385,414.49 38.399,414.485 C 38.411,414.482 38.42,414.475 38.431,414.466 C 38.44,414.457 38.447,414.447 38.452,414.434 C 38.458,414.421 38.46,414.408 38.461,414.394 C 38.46,414.379 38.458,414.364 38.453,414.352 C 38.448,414.338 38.441,414.327 38.433,414.317 C 38.424,414.305 38.413,414.297 38.401,414.289 C 38.39,414.284 38.38,414.28 38.371,414.278 L 38.426,414.169 L 38.461,414.103 L 38.384,414.095 L 38.348,414.162 L 38.313,414.232 L 38.31,414.235 C 38.304,414.245 38.297,414.253 38.286,414.258 C 38.276,414.263 38.264,414.265 38.252,414.264 L 38.184,414.256 L 38.184,414.072 L 38.116,414.065 Z M 38.495,414.108 L 38.53,414.182 L 38.69,414.525 L 38.853,414.216 L 38.889,414.149 L 38.811,414.139 L 38.776,414.208 L 38.69,414.369 L 38.606,414.189 L 38.572,414.116 L 38.495,414.108 Z M 36.395,414.142 L 36.57,414.161 C 36.573,414.162 36.575,414.162 36.577,414.162 C 36.58,414.162 36.581,414.163 36.583,414.165 C 36.59,414.169 36.595,414.174 36.6,414.18 C 36.603,414.187 36.605,414.193 36.605,414.201 C 36.605,414.208 36.604,414.214 36.601,414.218 C 36.599,414.221 36.596,414.226 36.594,414.227 C 36.591,414.229 36.588,414.23 36.586,414.232 C 36.582,414.232 36.58,414.233 36.578,414.234 L 36.569,414.234 L 36.395,414.216 L 36.395,414.142 Z M 39.079,414.167 L 39.079,414.495 L 38.921,414.479 L 38.92,414.55 L 39.305,414.589 L 39.305,414.518 L 39.147,414.501 L 39.148,414.174 L 39.079,414.167 Z M 39.465,414.223 C 39.441,414.231 39.422,414.244 39.404,414.259 C 39.388,414.276 39.373,414.295 39.362,414.319 C 39.353,414.342 39.347,414.366 39.347,414.395 C 39.347,414.421 39.352,414.449 39.362,414.473 C 39.372,414.498 39.387,414.521 39.404,414.542 C 39.422,414.562 39.441,414.577 39.465,414.59 C 39.489,414.603 39.514,414.611 39.54,414.614 C 39.568,414.616 39.591,414.614 39.615,414.606 C 39.638,414.599 39.659,414.586 39.677,414.569 C 39.694,414.553 39.707,414.534 39.717,414.51 C 39.728,414.486 39.732,414.462 39.733,414.434 C 39.732,414.407 39.728,414.38 39.717,414.355 C 39.707,414.331 39.694,414.308 39.677,414.287 C 39.66,414.268 39.639,414.252 39.615,414.239 C 39.592,414.227 39.568,414.219 39.541,414.216 L 39.503,414.216 C 39.489,414.218 39.478,414.22 39.465,414.223 Z M 39.775,414.239 L 39.774,414.636 L 40.017,414.662 C 40.03,414.663 40.044,414.661 40.057,414.657 C 40.07,414.654 40.081,414.647 40.091,414.638 C 40.1,414.629 40.107,414.619 40.112,414.607 C 40.117,414.594 40.12,414.58 40.12,414.566 C 40.12,414.551 40.117,414.537 40.113,414.524 C 40.108,414.511 40.102,414.498 40.091,414.487 C 40.083,414.477 40.072,414.469 40.061,414.461 C 40.051,414.456 40.04,414.453 40.029,414.451 L 40.086,414.342 L 40.12,414.273 L 40.043,414.266 L 40.009,414.335 L 39.971,414.405 L 39.97,414.408 C 39.964,414.418 39.956,414.427 39.946,414.431 C 39.936,414.435 39.923,414.437 39.911,414.436 L 39.843,414.43 L 39.843,414.246 L 39.775,414.239 Z M 37.658,414.273 L 37.832,414.292 C 37.834,414.292 37.838,414.293 37.841,414.294 C 37.843,414.295 37.845,414.295 37.847,414.297 L 37.847,414.297 C 37.853,414.301 37.858,414.306 37.862,414.313 C 37.866,414.32 37.867,414.326 37.868,414.334 C 37.867,414.339 37.867,414.345 37.865,414.35 C 37.861,414.353 37.859,414.356 37.858,414.358 C 37.855,414.361 37.852,414.362 37.848,414.363 C 37.844,414.365 37.838,414.366 37.832,414.365 L 37.658,414.348 L 37.658,414.273 Z M 39.541,414.285 C 39.558,414.287 39.574,414.293 39.588,414.302 C 39.603,414.31 39.616,414.321 39.628,414.334 C 39.64,414.346 39.648,414.361 39.654,414.376 C 39.662,414.393 39.664,414.409 39.664,414.428 C 39.664,414.446 39.662,414.461 39.654,414.476 C 39.648,414.492 39.639,414.504 39.627,414.514 C 39.616,414.524 39.603,414.532 39.588,414.537 C 39.574,414.543 39.557,414.544 39.54,414.543 C 39.523,414.541 39.507,414.536 39.491,414.527 C 39.478,414.52 39.464,414.509 39.452,414.496 C 39.44,414.483 39.432,414.469 39.426,414.453 C 39.42,414.436 39.417,414.419 39.416,414.402 C 39.417,414.383 39.42,414.368 39.426,414.353 C 39.432,414.338 39.44,414.326 39.452,414.316 C 39.464,414.305 39.478,414.297 39.491,414.292 C 39.507,414.285 39.523,414.284 39.541,414.285 Z M 38.184,414.328 L 38.357,414.346 C 38.36,414.346 38.361,414.347 38.365,414.349 C 38.367,414.35 38.369,414.35 38.372,414.351 C 38.378,414.355 38.383,414.36 38.386,414.365 C 38.39,414.373 38.393,414.379 38.393,414.386 C 38.393,414.393 38.39,414.398 38.389,414.402 C 38.386,414.406 38.384,414.409 38.382,414.411 C 38.38,414.414 38.376,414.415 38.373,414.417 C 38.368,414.418 38.362,414.419 38.357,414.419 L 38.184,414.401 L 38.184,414.328 Z M 39.843,414.499 L 40.017,414.518 C 40.02,414.518 40.022,414.519 40.024,414.52 C 40.027,414.521 40.028,414.521 40.03,414.522 C 40.037,414.526 40.042,414.531 40.047,414.537 C 40.051,414.544 40.053,414.55 40.053,414.558 C 40.052,414.564 40.051,414.569 40.049,414.575 C 40.047,414.578 40.043,414.581 40.04,414.582 C 40.039,414.585 40.035,414.587 40.032,414.589 C 40.028,414.591 40.023,414.592 40.017,414.591 L 39.843,414.574 L 39.843,414.499 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 27.25,426.777 L 27.077,426.937 L 44.485,428.072 L 44.575,428.035 C 44.604,428.023 44.633,427.996 44.633,427.951 L 44.633,427.908 L 27.25,426.777 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 27.077,426.937 L 27.076,403.486 L 27.164,403.402 L 27.25,403.415 L 27.25,426.775 L 27.077,426.937 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.PPF2_NR_small_individuals--SWEET_PEA, .KN95_NR_small_individuals--SWEET_PEA {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='33.458pt' height='33.458pt' viewBox='300.283 -433.288 33.458 33.458'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='12.301' y2='19.848' gradientTransform='translate(312.926 405.817)'%3E%3Cstop offset='0' stop-color='%237baaa6'/%3E%3Cstop offset='1' stop-color='%23a1dfda'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-1.353' y2='19.921' gradientTransform='translate(309.387 406.432)'%3E%3Cstop offset='0' stop-color='%23648b88'/%3E%3Cstop offset='1' stop-color='%238abfbb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='7.572' y2='2.101' gradientTransform='translate(312.92 425.801)'%3E%3Cstop offset='0' stop-color='%2376a4a1'/%3E%3Cstop offset='1' stop-color='%238dc3bf'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.119' y2='-0.229' gradientTransform='translate(308.245 427.857)'%3E%3Cstop offset='0' stop-color='%23628885'/%3E%3Cstop offset='1' stop-color='%2376a4a1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.009' y2='-0.164' gradientTransform='translate(321.239 427.673) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%237eafab'/%3E%3Cstop offset='1' stop-color='%2390c7c3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.163' y2='0' gradientTransform='translate(310.094 415.56) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2376a4a1'/%3E%3Cstop offset='1' stop-color='%238abfbb'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke-linecap='round' stroke='none'%3E%3Crect x='-16.728' y='-16.728' width='33.457' height='33.457' transform='translate(317.012 416.559) rotate(90)' stroke-width='0.114'/%3E%3Cg id='Group_1'%3E%3Cg id='Group_2'%3E%3Cpath d='M 310.012,403.404 L 310.012,426.891 L 327.459,428.01 C 327.472,427.996 327.482,427.976 327.482,427.952 L 327.482,405.771 L 310.012,403.404 Z' stroke-width='2.303' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 310.012,403.404 L 306.549,406.766 L 306.547,428.788 L 310.012,426.891 L 310.012,403.404 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 310.012,426.891 L 306.547,428.788 L 323.479,429.716 L 327.422,428.036 C 327.436,428.031 327.449,428.023 327.459,428.01 L 310.012,426.891 Z' stroke-width='0.295' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 309.925,426.622 L 306.546,428.511 L 306.545,428.788 L 309.925,426.938 L 309.925,426.622 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill-rule='nonzero' stroke-width='0.849' fill='%23ffffff'%3E%3Cg id='Group_4'%3E%3Cpath d='M 317.054,409.006 L 317.054,409.415 L 317.126,409.424 L 317.126,409.013 L 317.054,409.006 Z M 317.183,409.018 L 317.183,409.428 L 317.256,409.381 L 317.517,409.205 L 317.517,409.466 L 317.589,409.475 L 317.589,409.064 L 317.517,409.112 L 317.256,409.288 L 317.256,409.028 L 317.183,409.018 Z M 317.646,409.07 L 317.646,409.481 L 317.848,409.502 C 317.878,409.505 317.904,409.503 317.927,409.495 C 317.951,409.487 317.972,409.476 317.993,409.457 C 318.011,409.441 318.025,409.421 318.035,409.398 C 318.045,409.374 318.051,409.347 318.051,409.319 C 318.051,409.294 318.046,409.27 318.039,409.247 C 318.03,409.223 318.018,409.201 318.003,409.182 C 318.001,409.18 317.999,409.177 317.998,409.175 C 317.996,409.173 317.994,409.17 317.991,409.167 C 317.972,409.147 317.951,409.131 317.927,409.116 C 317.905,409.104 317.879,409.095 317.848,409.092 L 317.646,409.07 Z M 318.109,409.12 L 318.109,409.531 L 318.182,409.537 L 318.182,409.128 L 318.109,409.12 Z M 317.717,409.15 L 317.848,409.164 C 317.866,409.167 317.883,409.173 317.899,409.181 C 317.916,409.189 317.929,409.199 317.94,409.213 C 317.952,409.226 317.961,409.242 317.969,409.258 C 317.975,409.276 317.978,409.293 317.979,409.31 C 317.978,409.329 317.975,409.345 317.969,409.361 C 317.961,409.377 317.952,409.389 317.94,409.4 C 317.929,409.412 317.916,409.419 317.899,409.424 C 317.883,409.429 317.866,409.43 317.848,409.428 L 317.717,409.414 L 317.717,409.15 Z M 318.422,409.155 L 318.253,409.474 L 318.216,409.542 L 318.297,409.55 L 318.333,409.482 L 318.422,409.316 L 318.511,409.502 L 318.548,409.579 L 318.628,409.587 L 318.592,409.509 L 318.422,409.155 Z M 318.666,409.181 L 318.666,409.591 L 318.737,409.599 L 318.737,409.188 L 318.666,409.181 Z M 318.796,409.195 L 318.796,409.605 L 318.997,409.627 C 319.025,409.629 319.051,409.627 319.076,409.619 C 319.101,409.613 319.121,409.6 319.14,409.583 C 319.158,409.566 319.172,409.545 319.182,409.522 C 319.194,409.498 319.2,409.473 319.2,409.444 C 319.2,409.419 319.196,409.395 319.186,409.372 C 319.178,409.347 319.167,409.327 319.15,409.306 C 319.149,409.304 319.147,409.302 319.145,409.3 C 319.144,409.297 319.143,409.295 319.139,409.293 C 319.121,409.272 319.101,409.255 319.076,409.241 C 319.051,409.228 319.025,409.22 318.997,409.217 L 318.796,409.195 Z M 319.382,409.275 C 319.357,409.283 319.335,409.295 319.318,409.312 C 319.298,409.328 319.284,409.348 319.274,409.373 C 319.263,409.396 319.258,409.422 319.258,409.451 L 319.258,409.655 L 319.33,409.663 L 319.33,409.457 C 319.33,409.439 319.333,409.423 319.341,409.408 C 319.346,409.393 319.357,409.381 319.369,409.37 C 319.381,409.358 319.394,409.351 319.409,409.345 C 319.425,409.34 319.442,409.338 319.46,409.34 C 319.478,409.342 319.494,409.347 319.51,409.356 C 319.527,409.365 319.541,409.376 319.553,409.389 C 319.564,409.402 319.573,409.418 319.58,409.434 C 319.586,409.451 319.59,409.468 319.59,409.487 L 319.59,409.691 L 319.664,409.7 L 319.664,409.495 C 319.664,409.466 319.658,409.438 319.647,409.413 C 319.635,409.387 319.621,409.363 319.602,409.342 C 319.584,409.322 319.564,409.306 319.539,409.291 C 319.515,409.28 319.488,409.271 319.46,409.267 C 319.431,409.264 319.406,409.267 319.382,409.275 Z M 318.867,409.276 L 318.997,409.29 C 319.015,409.291 319.031,409.296 319.047,409.306 C 319.063,409.314 319.077,409.324 319.09,409.338 C 319.102,409.352 319.11,409.367 319.118,409.384 C 319.124,409.4 319.127,409.418 319.128,409.436 C 319.127,409.453 319.124,409.471 319.118,409.487 C 319.11,409.502 319.102,409.515 319.09,409.524 C 319.077,409.535 319.063,409.543 319.047,409.548 C 319.031,409.554 319.015,409.555 318.997,409.554 L 318.867,409.539 L 318.867,409.276 Z M 319.698,409.293 L 319.734,409.371 L 319.904,409.725 L 320.074,409.407 L 320.112,409.337 L 320.03,409.329 L 319.994,409.399 L 319.904,409.563 L 319.815,409.38 L 319.779,409.302 L 319.698,409.293 Z M 320.246,409.356 C 320.235,409.358 320.226,409.359 320.218,409.363 C 320.205,409.368 320.194,409.375 320.183,409.386 C 320.173,409.394 320.165,409.404 320.158,409.416 C 320.155,409.425 320.152,409.433 320.149,409.443 C 320.147,409.452 320.146,409.463 320.146,409.473 L 320.146,409.751 L 320.218,409.759 L 320.218,409.474 C 320.219,409.465 320.222,409.456 320.227,409.451 C 320.231,409.444 320.236,409.438 320.245,409.434 C 320.251,409.431 320.26,409.429 320.267,409.428 L 320.48,409.451 L 320.48,409.379 L 320.274,409.356 C 320.264,409.355 320.254,409.355 320.246,409.356 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cg id='Group_7'%3E%3Cpath d='M 314.851,415.733 L 314.848,417.786 L 315.187,417.82 L 315.189,416.772 L 315.469,417.075 L 315.72,417.351 L 316.248,417.928 L 316.75,417.979 L 315.922,417.072 L 316.745,415.927 L 316.328,415.885 L 315.671,416.797 L 315.189,416.277 L 315.189,415.769 L 314.851,415.733 Z M 316.918,415.945 L 317.091,416.329 L 317.885,418.095 L 318.682,416.491 L 318.854,416.142 L 318.477,416.104 L 318.302,416.452 L 317.886,417.289 L 317.471,416.367 L 317.298,415.984 L 316.918,415.945 Z M 319.027,416.158 L 319.029,416.159 L 319.289,416.552 L 319.755,417.255 L 319.97,417.576 L 320.229,417.968 L 319.022,417.844 L 319.022,418.211 L 320.489,418.359 L 320.914,418.404 L 320.652,418.01 L 320.181,417.298 L 319.969,416.978 L 319.712,416.596 L 320.925,416.719 L 320.926,416.352 L 319.457,416.204 L 319.454,416.204 L 319.027,416.158 Z M 321.502,416.455 C 321.442,416.478 321.385,416.511 321.34,416.558 C 321.294,416.603 321.256,416.658 321.231,416.722 C 321.205,416.786 321.192,416.858 321.191,416.933 L 321.19,417.878 C 321.19,417.955 321.202,418.027 321.229,418.096 C 321.255,418.165 321.29,418.227 321.339,418.283 C 321.384,418.34 321.439,418.384 321.5,418.418 C 321.562,418.454 321.629,418.475 321.699,418.483 L 323.085,418.624 L 323.085,418.258 L 321.699,418.116 C 321.667,418.113 321.638,418.101 321.611,418.082 C 321.585,418.062 321.565,418.037 321.55,418.009 C 321.534,417.979 321.526,417.946 321.526,417.911 L 321.526,417.72 L 322.746,417.846 L 322.747,417.479 L 321.526,417.355 L 321.526,416.968 C 321.526,416.933 321.536,416.903 321.551,416.877 C 321.568,416.848 321.587,416.828 321.612,416.814 C 321.64,416.8 321.668,416.795 321.7,416.797 L 323.087,416.938 L 323.088,416.572 L 321.7,416.431 C 321.631,416.424 321.565,416.432 321.502,416.455 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 316.855,414.643 L 316.855,415.08 C 316.855,415.104 316.858,415.125 316.866,415.145 C 316.874,415.165 316.886,415.184 316.901,415.201 C 316.916,415.217 316.932,415.23 316.951,415.241 C 316.97,415.25 316.992,415.257 317.014,415.259 L 317.447,415.307 L 317.447,415.199 L 317.014,415.152 C 317.005,415.151 316.995,415.148 316.987,415.142 C 316.978,415.136 316.972,415.13 316.967,415.121 C 316.962,415.112 316.96,415.103 316.96,415.094 L 316.96,415.036 L 317.342,415.076 L 317.342,414.969 L 316.959,414.93 L 316.96,414.655 L 316.855,414.643 Z M 317.532,414.715 L 317.531,415.152 C 317.531,415.174 317.536,415.197 317.545,415.217 C 317.552,415.236 317.563,415.255 317.578,415.271 C 317.593,415.288 317.61,415.301 317.628,415.313 C 317.647,415.323 317.668,415.328 317.692,415.332 L 318.124,415.377 L 318.124,415.269 L 317.692,415.225 C 317.682,415.223 317.673,415.22 317.665,415.215 C 317.656,415.209 317.649,415.201 317.644,415.192 C 317.64,415.183 317.638,415.174 317.638,415.164 L 317.638,415.109 L 318.019,415.148 L 318.019,415.042 L 317.637,415.002 L 317.638,414.725 L 317.532,414.715 Z M 318.211,414.787 L 318.209,415.387 L 318.583,415.426 C 318.604,415.428 318.625,415.426 318.643,415.42 C 318.663,415.414 318.68,415.403 318.695,415.39 L 318.695,415.389 C 318.71,415.375 318.721,415.36 318.73,415.341 C 318.737,415.323 318.743,415.301 318.743,415.28 C 318.743,415.257 318.737,415.236 318.731,415.217 C 318.722,415.197 318.711,415.179 318.699,415.163 C 318.684,415.147 318.668,415.133 318.65,415.124 C 318.634,415.114 318.62,415.109 318.603,415.106 C 318.602,415.106 318.601,415.106 318.599,415.105 L 318.599,415.104 L 318.316,415.073 L 318.316,414.799 L 318.211,414.787 Z M 318.826,414.849 L 318.826,415.028 C 318.826,415.04 318.827,415.05 318.829,415.063 C 318.832,415.074 318.835,415.087 318.839,415.098 C 318.848,415.12 318.86,415.138 318.877,415.156 C 318.892,415.174 318.909,415.189 318.929,415.201 C 318.948,415.21 318.97,415.218 318.995,415.222 L 319.248,415.248 L 319.251,415.248 C 319.262,415.251 319.273,415.256 319.282,415.264 C 319.292,415.27 319.299,415.28 319.306,415.292 C 319.311,415.301 319.312,415.313 319.312,415.326 C 319.312,415.338 319.31,415.35 319.303,415.36 C 319.297,415.369 319.29,415.377 319.279,415.383 C 319.268,415.388 319.257,415.39 319.244,415.389 L 318.827,415.345 L 318.827,415.452 L 319.243,415.495 C 319.268,415.498 319.292,415.495 319.312,415.489 C 319.333,415.482 319.351,415.471 319.368,415.457 C 319.383,415.442 319.396,415.426 319.405,415.404 C 319.414,415.384 319.419,415.362 319.419,415.337 C 319.419,415.325 319.418,415.313 319.415,415.3 C 319.412,415.288 319.408,415.277 319.403,415.266 C 319.4,415.255 319.395,415.246 319.389,415.236 C 319.383,415.227 319.376,415.218 319.369,415.21 C 319.355,415.191 319.336,415.176 319.316,415.164 C 319.294,415.153 319.274,415.146 319.25,415.142 L 319.247,415.142 C 319.247,415.142 319.245,415.142 319.244,415.142 L 318.995,415.116 C 318.983,415.113 318.972,415.109 318.963,415.101 C 318.953,415.094 318.945,415.084 318.94,415.073 C 318.935,415.063 318.933,415.052 318.933,415.041 L 318.933,414.97 L 319.417,415.02 L 319.417,414.912 L 319,414.868 L 318.826,414.849 Z M 319.916,414.967 L 319.916,415.564 L 320.022,415.493 L 320.402,415.236 L 320.402,415.617 L 320.507,415.628 L 320.508,415.03 L 320.402,415.101 L 320.022,415.358 L 320.022,414.978 L 319.916,414.967 Z M 320.593,415.039 L 320.592,415.639 L 320.967,415.679 C 320.988,415.681 321.009,415.679 321.028,415.671 C 321.048,415.666 321.064,415.655 321.08,415.642 C 321.093,415.628 321.105,415.613 321.113,415.594 C 321.121,415.575 321.125,415.555 321.126,415.533 C 321.126,415.51 321.121,415.489 321.113,415.468 C 321.106,415.449 321.095,415.431 321.081,415.415 C 321.067,415.399 321.051,415.386 321.033,415.375 C 321.019,415.366 321.003,415.36 320.987,415.357 L 321.073,415.197 L 321.126,415.095 L 321.008,415.082 L 320.953,415.183 L 320.896,415.289 L 320.894,415.293 C 320.885,415.309 320.873,415.321 320.856,415.327 C 320.841,415.335 320.822,415.338 320.803,415.336 L 320.699,415.325 L 320.699,415.049 L 320.593,415.039 Z M 318.316,415.179 L 318.584,415.208 C 318.587,415.208 318.59,415.209 318.595,415.21 C 318.599,415.212 318.602,415.214 318.605,415.216 L 318.605,415.216 C 318.615,415.222 318.623,415.229 318.628,415.238 C 318.634,415.248 318.636,415.257 318.636,415.268 C 318.636,415.279 318.634,415.286 318.631,415.293 C 318.627,415.299 318.624,415.304 318.621,415.307 C 318.617,415.31 318.612,415.313 318.606,415.315 C 318.601,415.319 318.592,415.319 318.584,415.319 L 318.316,415.289 L 318.316,415.179 Z M 320.699,415.431 L 320.967,415.46 C 320.971,415.46 320.974,415.461 320.978,415.461 C 320.982,415.465 320.985,415.466 320.988,415.468 C 320.998,415.473 321.006,415.481 321.01,415.49 C 321.018,415.5 321.021,415.51 321.021,415.521 C 321.02,415.533 321.019,415.539 321.014,415.546 C 321.01,415.552 321.008,415.557 321.004,415.559 C 321.001,415.562 320.996,415.565 320.99,415.568 C 320.983,415.571 320.976,415.571 320.967,415.571 L 320.698,415.542 L 320.699,415.431 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_10' fill-rule='nonzero' stroke-width='0.834' fill='%23ffffff'%3E%3Cg id='Group_11'%3E%3Cpath d='M 314.968,413.447 L 314.967,413.845 L 315.21,413.87 C 315.226,413.873 315.239,413.87 315.252,413.866 C 315.263,413.861 315.275,413.856 315.284,413.846 L 315.284,413.846 C 315.294,413.836 315.301,413.827 315.306,413.815 C 315.311,413.802 315.315,413.789 315.315,413.775 C 315.315,413.757 315.311,413.744 315.307,413.731 C 315.302,413.718 315.295,413.707 315.285,413.696 C 315.277,413.685 315.266,413.676 315.255,413.67 C 315.245,413.664 315.235,413.659 315.226,413.659 C 315.223,413.659 315.221,413.657 315.221,413.657 L 315.221,413.657 L 315.038,413.637 L 315.038,413.455 L 314.968,413.447 Z M 315.369,413.487 L 315.368,413.886 L 315.612,413.912 C 315.627,413.912 315.64,413.912 315.652,413.908 C 315.666,413.903 315.676,413.897 315.685,413.887 C 315.695,413.879 315.702,413.868 315.709,413.856 C 315.713,413.844 315.716,413.83 315.716,413.815 C 315.716,413.801 315.713,413.787 315.71,413.775 C 315.702,413.76 315.696,413.748 315.687,413.737 C 315.678,413.727 315.668,413.718 315.655,413.711 C 315.645,413.705 315.636,413.701 315.626,413.699 L 315.68,413.591 L 315.716,413.523 L 315.639,413.515 L 315.604,413.582 L 315.568,413.654 L 315.566,413.657 C 315.56,413.668 315.55,413.675 315.541,413.68 C 315.529,413.685 315.519,413.686 315.507,413.685 L 315.437,413.678 L 315.437,413.495 L 315.369,413.487 Z M 315.875,413.557 C 315.853,413.564 315.833,413.577 315.816,413.593 C 315.797,413.609 315.783,413.629 315.773,413.653 C 315.763,413.676 315.758,413.701 315.756,413.729 C 315.758,413.756 315.763,413.783 315.773,413.807 C 315.783,413.832 315.797,413.854 315.814,413.875 C 315.832,413.895 315.852,413.912 315.874,413.925 C 315.899,413.937 315.923,413.944 315.95,413.947 C 315.976,413.95 316.002,413.947 316.026,413.939 C 316.047,413.931 316.069,413.92 316.086,413.904 C 316.104,413.887 316.119,413.867 316.128,413.844 C 316.137,413.821 316.143,413.796 316.143,413.769 C 316.143,413.74 316.138,413.714 316.128,413.688 C 316.119,413.665 316.104,413.642 316.086,413.621 C 316.07,413.602 316.049,413.585 316.026,413.572 C 316.002,413.56 315.977,413.552 315.951,413.55 L 315.912,413.551 C 315.899,413.551 315.888,413.553 315.875,413.557 Z M 316.343,413.589 L 316.343,413.917 L 316.184,413.9 L 316.184,413.97 L 316.569,414.012 L 316.569,413.94 L 316.413,413.925 L 316.413,413.596 L 316.343,413.589 Z M 315.951,413.62 C 315.968,413.621 315.983,413.628 316,413.635 C 316.015,413.644 316.028,413.654 316.038,413.667 C 316.049,413.68 316.058,413.694 316.065,413.711 C 316.071,413.726 316.075,413.744 316.075,413.761 C 316.075,413.779 316.071,413.795 316.065,413.81 C 316.058,413.824 316.049,413.837 316.038,413.847 C 316.027,413.858 316.014,413.866 315.999,413.87 C 315.983,413.876 315.968,413.878 315.95,413.876 C 315.934,413.875 315.917,413.869 315.903,413.86 C 315.888,413.853 315.873,413.843 315.862,413.83 C 315.852,413.816 315.843,413.803 315.836,413.786 C 315.832,413.77 315.827,413.753 315.827,413.736 C 315.827,413.718 315.832,413.701 315.836,413.686 C 315.843,413.672 315.852,413.659 315.863,413.648 C 315.874,413.638 315.889,413.63 315.903,413.625 C 315.917,413.621 315.935,413.619 315.951,413.62 Z M 316.688,413.634 C 316.678,413.637 316.666,413.644 316.655,413.654 C 316.646,413.663 316.639,413.673 316.633,413.686 C 316.629,413.699 316.626,413.712 316.626,413.727 L 316.626,413.911 C 316.626,413.925 316.627,413.939 316.633,413.952 C 316.639,413.966 316.646,413.977 316.655,413.99 C 316.666,414.001 316.676,414.009 316.688,414.015 C 316.701,414.022 316.715,414.028 316.729,414.028 L 317.01,414.057 L 317.01,413.987 L 316.729,413.957 C 316.723,413.956 316.717,413.954 316.711,413.95 C 316.706,413.946 316.702,413.941 316.698,413.936 C 316.696,413.93 316.694,413.924 316.694,413.917 L 316.694,413.88 L 316.942,413.906 L 316.942,413.834 L 316.694,413.809 L 316.695,413.734 C 316.695,413.727 316.696,413.721 316.699,413.716 C 316.702,413.711 316.707,413.707 316.711,413.705 C 316.717,413.701 316.723,413.7 316.729,413.701 L 317.011,413.731 L 317.011,413.659 L 316.73,413.63 C 316.715,413.628 316.702,413.63 316.688,413.634 Z M 317.176,413.692 C 317.154,413.699 317.134,413.712 317.117,413.728 C 317.097,413.744 317.084,413.764 317.074,413.788 C 317.065,413.81 317.059,413.835 317.059,413.862 C 317.059,413.891 317.065,413.918 317.074,413.942 C 317.083,413.967 317.097,413.99 317.117,414.01 C 317.134,414.03 317.154,414.046 317.176,414.059 C 317.2,414.071 317.226,414.079 317.253,414.082 L 317.444,414.103 L 317.444,414.031 L 317.253,414.011 C 317.235,414.009 317.219,414.004 317.203,413.996 C 317.189,413.99 317.175,413.977 317.163,413.963 C 317.154,413.951 317.145,413.938 317.137,413.921 C 317.132,413.906 317.129,413.888 317.129,413.87 C 317.129,413.853 317.132,413.836 317.138,413.821 C 317.145,413.807 317.154,413.795 317.164,413.784 C 317.175,413.775 317.189,413.766 317.204,413.76 C 317.219,413.755 317.235,413.753 317.253,413.755 L 317.445,413.776 L 317.445,413.705 L 317.253,413.685 L 317.214,413.685 C 317.201,413.685 317.189,413.688 317.176,413.692 Z M 315.038,413.709 L 315.211,413.725 C 315.214,413.726 315.217,413.727 315.219,413.727 C 315.221,413.728 315.223,413.729 315.227,413.731 C 315.232,413.735 315.238,413.738 315.242,413.745 C 315.245,413.751 315.246,413.757 315.246,413.767 C 315.246,413.772 315.245,413.778 315.243,413.782 C 315.241,413.787 315.239,413.789 315.237,413.791 C 315.234,413.794 315.231,413.796 315.227,413.797 C 315.221,413.799 315.218,413.801 315.211,413.799 L 315.038,413.782 L 315.038,413.709 Z M 317.658,413.726 L 317.658,414.054 L 317.499,414.037 L 317.499,414.109 L 317.885,414.149 L 317.885,414.076 L 317.726,414.06 L 317.726,413.733 L 317.658,413.726 Z M 315.437,413.748 L 315.612,413.767 C 315.614,413.768 315.617,413.769 315.619,413.769 C 315.622,413.77 315.624,413.77 315.627,413.771 C 315.632,413.777 315.638,413.78 315.642,413.788 C 315.645,413.793 315.647,413.801 315.647,413.808 C 315.647,413.814 315.645,413.819 315.644,413.823 C 315.642,413.828 315.639,413.83 315.636,413.833 C 315.634,413.834 315.631,413.836 315.628,413.838 C 315.623,413.84 315.618,413.841 315.612,413.84 L 315.437,413.821 L 315.437,413.748 Z M 317.939,413.755 L 317.938,414.153 L 318.008,414.161 L 318.009,413.764 L 317.939,413.755 Z M 318.239,413.787 L 318.076,414.098 L 318.04,414.163 L 318.118,414.171 L 318.154,414.105 L 318.238,413.943 L 318.322,414.123 L 318.357,414.196 L 318.434,414.206 L 318.398,414.131 L 318.239,413.787 Z M 318.531,413.825 C 318.519,413.83 318.509,413.835 318.499,413.844 C 318.49,413.853 318.481,413.864 318.478,413.877 C 318.472,413.889 318.468,413.903 318.468,413.918 L 318.468,414.101 C 318.468,414.116 318.471,414.13 318.477,414.144 C 318.481,414.157 318.489,414.169 318.499,414.18 C 318.508,414.19 318.518,414.2 318.531,414.207 C 318.544,414.215 318.557,414.218 318.572,414.22 L 318.852,414.248 L 318.852,414.176 L 318.572,414.149 C 318.565,414.148 318.558,414.144 318.554,414.142 C 318.549,414.138 318.545,414.133 318.542,414.127 C 318.538,414.122 318.537,414.116 318.537,414.109 L 318.537,414.071 L 318.785,414.098 L 318.785,414.027 L 318.538,414.002 L 318.538,413.925 C 318.538,413.918 318.539,413.912 318.543,413.908 C 318.545,413.902 318.549,413.897 318.555,413.895 C 318.559,413.893 318.565,413.892 318.573,413.893 L 318.853,413.921 L 318.853,413.849 L 318.573,413.821 C 318.558,413.82 318.544,413.821 318.531,413.825 Z M 319.175,413.882 L 319.174,414.28 L 319.418,414.306 C 319.432,414.307 319.446,414.306 319.459,414.301 C 319.472,414.297 319.481,414.291 319.492,414.282 C 319.501,414.273 319.507,414.262 319.514,414.25 C 319.518,414.238 319.52,414.225 319.52,414.21 C 319.52,414.194 319.518,414.181 319.514,414.168 C 319.509,414.154 319.502,414.143 319.493,414.132 C 319.484,414.123 319.474,414.112 319.461,414.106 C 319.453,414.101 319.441,414.096 319.431,414.095 L 319.487,413.986 L 319.521,413.918 L 319.444,413.911 L 319.409,413.977 L 319.374,414.047 L 319.372,414.052 C 319.365,414.06 319.357,414.068 319.346,414.073 C 319.337,414.078 319.325,414.08 319.314,414.079 L 319.243,414.072 L 319.244,413.889 L 319.175,413.882 Z M 319.642,413.94 C 319.629,413.944 319.617,413.951 319.609,413.96 C 319.599,413.969 319.592,413.978 319.586,413.992 C 319.582,414.004 319.578,414.018 319.578,414.033 L 319.578,414.217 C 319.578,414.231 319.581,414.245 319.586,414.259 C 319.591,414.272 319.599,414.284 319.609,414.295 C 319.617,414.306 319.628,414.315 319.642,414.323 C 319.654,414.329 319.667,414.334 319.681,414.334 L 319.963,414.363 L 319.963,414.292 L 319.681,414.262 C 319.676,414.262 319.669,414.26 319.664,414.256 C 319.66,414.253 319.655,414.248 319.652,414.243 C 319.648,414.236 319.647,414.23 319.647,414.223 L 319.647,414.186 L 319.894,414.212 L 319.894,414.14 L 319.647,414.116 L 319.647,414.041 C 319.647,414.034 319.649,414.028 319.652,414.022 C 319.655,414.018 319.66,414.014 319.665,414.011 C 319.669,414.008 319.676,414.007 319.681,414.007 L 319.963,414.036 L 319.963,413.965 L 319.682,413.936 C 319.668,413.935 319.654,413.937 319.642,413.94 Z M 320.093,413.99 C 320.08,413.994 320.066,414.002 320.054,414.011 C 320.042,414.021 320.035,414.035 320.027,414.048 C 320.022,414.063 320.018,414.079 320.018,414.097 L 320.089,414.104 C 320.089,414.094 320.091,414.084 320.094,414.076 C 320.1,414.069 320.106,414.062 320.113,414.059 C 320.121,414.055 320.129,414.054 320.14,414.054 L 320.261,414.066 C 320.27,414.068 320.28,414.071 320.287,414.076 C 320.293,414.083 320.302,414.089 320.306,414.099 C 320.312,414.109 320.314,414.118 320.314,414.127 C 320.314,414.138 320.312,414.146 320.306,414.153 C 320.302,414.162 320.293,414.167 320.287,414.17 C 320.279,414.176 320.27,414.176 320.261,414.176 L 320.121,414.162 L 320.102,414.162 C 320.094,414.163 320.089,414.163 320.082,414.165 C 320.069,414.17 320.06,414.176 320.049,414.183 C 320.046,414.189 320.04,414.194 320.035,414.2 C 320.03,414.209 320.026,414.218 320.023,414.228 C 320.02,414.237 320.018,414.248 320.018,414.259 L 320.018,414.261 C 320.018,414.276 320.022,414.29 320.026,414.304 C 320.031,414.319 320.038,414.33 320.048,414.34 C 320.059,414.351 320.068,414.36 320.082,414.367 C 320.093,414.374 320.107,414.377 320.121,414.379 L 320.278,414.396 C 320.291,414.397 320.306,414.396 320.318,414.391 C 320.331,414.388 320.342,414.381 320.351,414.372 C 320.36,414.363 320.369,414.352 320.373,414.34 C 320.379,414.328 320.381,414.315 320.381,414.299 L 320.381,414.297 L 320.313,414.288 L 320.313,414.291 C 320.313,414.298 320.312,414.304 320.308,414.309 C 320.305,414.315 320.301,414.319 320.294,414.322 C 320.29,414.325 320.284,414.325 320.278,414.325 L 320.121,414.308 C 320.115,414.307 320.108,414.305 320.104,414.301 C 320.1,414.297 320.094,414.292 320.091,414.286 C 320.089,414.281 320.087,414.273 320.087,414.268 L 320.087,414.265 C 320.087,414.259 320.089,414.254 320.091,414.248 C 320.094,414.243 320.1,414.238 320.104,414.236 C 320.108,414.234 320.115,414.233 320.121,414.233 L 320.261,414.248 L 320.286,414.248 C 320.293,414.246 320.303,414.245 320.31,414.242 C 320.326,414.236 320.339,414.228 320.35,414.217 C 320.351,414.216 320.352,414.216 320.353,414.215 C 320.353,414.214 320.353,414.213 320.355,414.212 C 320.363,414.202 320.37,414.19 320.374,414.176 C 320.38,414.163 320.382,414.15 320.382,414.135 C 320.382,414.118 320.379,414.101 320.372,414.084 C 320.367,414.069 320.358,414.054 320.347,414.042 C 320.335,414.029 320.323,414.019 320.307,414.011 C 320.293,414.003 320.278,413.997 320.261,413.996 L 320.14,413.982 C 320.123,413.981 320.107,413.982 320.093,413.99 Z M 320.439,414.015 L 320.437,414.412 L 320.68,414.439 C 320.695,414.441 320.707,414.439 320.719,414.434 C 320.732,414.43 320.744,414.423 320.755,414.414 L 320.755,414.414 C 320.764,414.404 320.771,414.393 320.777,414.381 C 320.781,414.369 320.784,414.355 320.784,414.34 C 320.784,414.326 320.782,414.311 320.777,414.299 C 320.772,414.285 320.765,414.273 320.757,414.262 C 320.746,414.252 320.736,414.243 320.723,414.236 C 320.715,414.231 320.705,414.228 320.694,414.225 C 320.693,414.225 320.692,414.225 320.691,414.225 L 320.691,414.224 L 320.506,414.205 L 320.506,414.022 L 320.439,414.015 Z M 320.84,414.057 L 320.839,414.454 L 320.906,414.461 L 320.907,414.063 L 320.84,414.057 Z M 320.964,414.067 L 320.964,414.467 L 321.206,414.491 C 321.221,414.493 321.234,414.491 321.247,414.486 C 321.258,414.483 321.268,414.476 321.279,414.468 C 321.288,414.458 321.296,414.448 321.301,414.435 C 321.307,414.423 321.309,414.409 321.31,414.395 C 321.309,414.38 321.307,414.366 321.301,414.353 C 321.296,414.339 321.289,414.328 321.28,414.318 C 321.271,414.306 321.261,414.298 321.248,414.29 C 321.239,414.285 321.229,414.282 321.22,414.279 L 321.274,414.17 L 321.31,414.104 L 321.233,414.096 L 321.197,414.163 L 321.16,414.234 L 321.158,414.236 C 321.152,414.247 321.145,414.254 321.134,414.259 C 321.125,414.264 321.113,414.267 321.101,414.265 L 321.032,414.258 L 321.032,414.073 L 320.964,414.067 Z M 321.344,414.109 L 321.378,414.183 L 321.539,414.526 L 321.7,414.217 L 321.738,414.15 L 321.66,414.14 L 321.624,414.209 L 321.539,414.37 L 321.455,414.19 L 321.42,414.117 L 321.344,414.109 Z M 319.243,414.144 L 319.419,414.162 C 319.422,414.163 319.424,414.163 319.426,414.163 C 319.428,414.163 319.43,414.165 319.432,414.166 C 319.439,414.17 319.444,414.176 319.449,414.182 C 319.452,414.188 319.454,414.194 319.454,414.202 C 319.454,414.209 319.453,414.216 319.45,414.219 C 319.448,414.223 319.444,414.227 319.443,414.228 C 319.441,414.23 319.437,414.231 319.435,414.233 C 319.431,414.234 319.428,414.235 319.427,414.235 L 319.418,414.235 L 319.243,414.217 L 319.243,414.144 Z M 321.927,414.168 L 321.927,414.496 L 321.769,414.48 L 321.769,414.551 L 322.153,414.591 L 322.153,414.519 L 321.996,414.502 L 321.996,414.176 L 321.927,414.168 Z M 322.314,414.225 C 322.29,414.233 322.27,414.245 322.252,414.26 C 322.236,414.277 322.221,414.296 322.21,414.32 C 322.202,414.343 322.196,414.368 322.196,414.396 C 322.196,414.423 322.2,414.45 322.21,414.474 C 322.221,414.499 322.235,414.522 322.252,414.543 C 322.269,414.563 322.29,414.578 322.313,414.592 C 322.337,414.605 322.362,414.612 322.387,414.615 C 322.417,414.617 322.44,414.615 322.462,414.607 C 322.486,414.6 322.508,414.587 322.526,414.57 C 322.543,414.554 322.556,414.535 322.565,414.511 C 322.576,414.487 322.58,414.463 322.581,414.435 C 322.58,414.408 322.576,414.382 322.566,414.357 C 322.556,414.332 322.543,414.309 322.526,414.288 C 322.509,414.269 322.487,414.253 322.464,414.24 C 322.441,414.228 322.417,414.22 322.389,414.217 L 322.35,414.217 C 322.338,414.219 322.327,414.221 322.314,414.225 Z M 322.623,414.24 L 322.623,414.637 L 322.866,414.664 C 322.879,414.664 322.893,414.662 322.905,414.659 C 322.918,414.655 322.929,414.648 322.939,414.64 C 322.949,414.63 322.956,414.62 322.96,414.608 C 322.966,414.595 322.969,414.582 322.969,414.567 C 322.969,414.552 322.966,414.539 322.962,414.525 C 322.957,414.512 322.951,414.5 322.939,414.488 C 322.931,414.478 322.92,414.47 322.909,414.462 C 322.898,414.457 322.889,414.454 322.878,414.452 L 322.934,414.343 L 322.969,414.275 L 322.892,414.267 L 322.858,414.336 L 322.819,414.406 L 322.818,414.409 C 322.811,414.419 322.804,414.428 322.794,414.432 C 322.784,414.436 322.772,414.439 322.759,414.437 L 322.691,414.431 L 322.691,414.248 L 322.623,414.24 Z M 320.506,414.275 L 320.681,414.293 C 320.683,414.293 320.686,414.294 320.689,414.295 C 320.691,414.296 320.693,414.296 320.695,414.298 L 320.695,414.299 C 320.7,414.302 320.706,414.307 320.71,414.315 C 320.714,414.321 320.715,414.327 320.716,414.335 C 320.715,414.34 320.715,414.347 320.712,414.351 C 320.709,414.354 320.707,414.357 320.706,414.359 C 320.703,414.362 320.7,414.363 320.696,414.364 C 320.692,414.367 320.687,414.367 320.681,414.367 L 320.506,414.349 L 320.506,414.275 Z M 322.389,414.286 C 322.407,414.288 322.422,414.294 322.436,414.303 C 322.451,414.311 322.465,414.322 322.475,414.335 C 322.487,414.348 322.496,414.362 322.502,414.377 C 322.511,414.394 322.513,414.41 322.513,414.429 C 322.513,414.447 322.51,414.462 322.502,414.477 C 322.496,414.493 322.487,414.505 322.475,414.515 C 322.464,414.525 322.451,414.535 322.436,414.539 C 322.422,414.544 322.406,414.545 322.387,414.544 C 322.371,414.542 322.355,414.537 322.34,414.528 C 322.327,414.521 322.313,414.51 322.301,414.497 C 322.289,414.484 322.28,414.47 322.274,414.454 C 322.268,414.438 322.265,414.42 322.264,414.403 C 322.265,414.384 322.268,414.369 322.274,414.354 C 322.28,414.339 322.289,414.327 322.301,414.317 C 322.313,414.306 322.327,414.298 322.341,414.293 C 322.355,414.286 322.371,414.285 322.389,414.286 Z M 321.032,414.329 L 321.206,414.348 C 321.21,414.348 321.211,414.349 321.213,414.35 C 321.216,414.351 321.218,414.351 321.221,414.352 C 321.228,414.356 321.232,414.361 321.235,414.367 C 321.239,414.374 321.241,414.38 321.241,414.387 C 321.241,414.394 321.239,414.4 321.237,414.403 C 321.235,414.407 321.233,414.41 321.231,414.412 C 321.229,414.415 321.225,414.416 321.221,414.418 C 321.217,414.419 321.211,414.42 321.206,414.42 L 321.032,414.402 L 321.032,414.329 Z M 322.691,414.5 L 322.866,414.519 C 322.869,414.519 322.87,414.52 322.873,414.521 C 322.875,414.522 322.877,414.522 322.879,414.524 C 322.886,414.527 322.891,414.532 322.894,414.539 C 322.898,414.545 322.9,414.551 322.9,414.559 C 322.9,414.565 322.898,414.57 322.896,414.576 C 322.894,414.579 322.892,414.583 322.89,414.583 C 322.888,414.586 322.884,414.588 322.881,414.59 C 322.877,414.592 322.872,414.593 322.866,414.592 L 322.691,414.575 L 322.691,414.5 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 310.099,426.778 L 309.925,426.938 L 327.333,428.074 L 327.422,428.036 C 327.451,428.025 327.482,427.997 327.482,427.952 L 327.482,427.909 L 310.099,426.778 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 309.925,426.938 L 309.924,403.487 L 310.012,403.403 L 310.099,403.416 L 310.099,426.776 L 309.925,426.938 Z' stroke-width='1.654' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.KAZE_MINI_small_individuals {
  margin-top: 2rem;
  width: 4rem;
  height: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.KAZE_MINI_small_individuals--VARIETY_BUNDLE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='265.301 -3355.14 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='53.299' y2='0' gradientTransform='translate(279.002 3296.48) rotate(24.2521) skewX(-5.5107)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23f4f4f4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='75.734' y2='0' gradientTransform='translate(375.592 3287.08) rotate(-173.798) skewX(0.616673)'%3E%3Cstop offset='0' stop-color='%23e7e7e7'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='3.027' y2='0' gradientTransform='translate(266.987 3299.78) rotate(3.12419) skewX(0.321866)'%3E%3Cstop offset='0' stop-color='%23f0f0f0'/%3E%3Cstop offset='1' stop-color='%23e5e5e5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.411' y2='0' gradientTransform='translate(350.418 3293.68) rotate(90) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23ececec'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.407' y2='0' gradientTransform='translate(269.821 3306.12) rotate(10.3174) skewX(-2.50076) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23e6e6e6'/%3E%3Cstop offset='1' stop-color='%23d3d3d3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.77' y2='0' gradientTransform='translate(371.348 3306.36) rotate(-148.539) skewX(-6.29143) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23ebebeb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_6' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.294' y2='0' gradientTransform='translate(380.2 3285.08) rotate(173.574) skewX(1.70407)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23d5d5d5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_7' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.357' y2='0' gradientTransform='translate(271.066 3286.78) rotate(-4.16545) skewX(1.09457)'%3E%3Cstop offset='0' stop-color='%23c9c9c9'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(323.629 3296.81) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1'%3E%3Cpath d='M 271.237,3294.25 L 266.526,3316.11 L 365.41,3315.35 L 381.558,3294.91 L 381.631,3294.82 C 381.751,3294.65 381.836,3294.47 381.889,3294.25 L 271.237,3294.25 Z' stroke-width='0.259' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.161' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cpath d='M 318.06,3304.67 L 317.219,3304.68 L 315.461,3305.61 L 314.705,3305.17 L 314.929,3304.69 L 314.245,3304.69 L 313.352,3306.61 L 314.032,3306.61 L 314.488,3305.63 L 314.927,3305.89 L 315.324,3306.12 L 316.147,3306.6 L 317.148,3306.6 L 315.856,3305.84 L 318.06,3304.67 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 322.183,3304.66 L 321.421,3304.66 L 320.898,3305.01 L 319.657,3305.84 L 319.234,3305.01 L 319.054,3304.67 L 318.289,3304.67 L 318.471,3305.02 L 319.285,3306.59 L 321.661,3305.01 L 322.183,3304.66 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 326.329,3304.64 L 323.39,3304.65 L 323.385,3304.65 L 322.525,3304.66 L 322.53,3304.66 L 322.876,3305 L 323.492,3305.61 L 323.776,3305.89 L 324.116,3306.23 L 321.715,3306.24 L 321.545,3306.58 L 324.455,3306.56 L 325.299,3306.56 L 324.956,3306.22 L 324.343,3305.61 L 324.059,3305.33 L 323.722,3305 L 326.147,3304.99 L 326.329,3304.64 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 330.649,3304.63 L 327.882,3304.64 C 327.74,3304.64 327.599,3304.65 327.461,3304.68 C 327.324,3304.71 327.196,3304.74 327.078,3304.79 C 326.959,3304.84 326.857,3304.9 326.773,3304.96 C 326.686,3305.02 326.624,3305.09 326.585,3305.16 L 326.116,3306.05 C 326.076,3306.11 326.068,3306.18 326.088,3306.24 C 326.107,3306.3 326.148,3306.36 326.218,3306.41 C 326.282,3306.45 326.371,3306.49 326.48,3306.51 C 326.586,3306.54 326.713,3306.55 326.852,3306.55 L 329.592,3306.54 L 329.778,3306.2 L 327.034,3306.21 C 326.97,3306.21 326.916,3306.21 326.874,3306.19 C 326.83,3306.18 326.8,3306.15 326.782,3306.13 C 326.767,3306.1 326.767,3306.07 326.782,3306.04 L 326.877,3305.86 L 329.3,3305.85 L 329.488,3305.51 L 327.059,3305.52 L 327.255,3305.16 C 327.274,3305.13 327.307,3305.1 327.35,3305.07 C 327.395,3305.05 327.448,3305.02 327.508,3305.01 C 327.569,3304.99 327.631,3304.98 327.696,3304.98 L 330.457,3304.97 L 330.649,3304.63 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 269.883,3277.51 L 271.23,3294.25 L 381.89,3294.25 C 381.986,3293.86 381.975,3293.4 381.875,3292.89 L 381.649,3291.37 L 379.579,3277.51 L 269.883,3277.51 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 269.883,3277.51 L 265.302,3299.17 L 266.526,3316.11 L 271.244,3294.25 L 269.883,3277.51 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 271.199,3293.87 L 271.23,3294.25 L 381.89,3294.25 C 381.92,3294.13 381.939,3294 381.95,3293.87 L 271.199,3293.87 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_4' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.046' fill='%23000000'%3E%3Cpath d='M 323.17,3278.86 L 323.17,3280.02 L 323.402,3280.02 L 323.402,3279.43 L 323.595,3279.58 L 323.768,3279.72 L 324.131,3280.02 L 324.476,3280.02 L 323.906,3279.56 L 324.471,3278.86 L 324.183,3278.86 L 323.733,3279.41 L 323.402,3279.15 L 323.402,3278.86 L 323.17,3278.86 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 324.549,3278.86 L 324.669,3279.07 L 325.215,3280.02 L 325.762,3279.07 L 325.881,3278.86 L 325.62,3278.86 L 325.5,3279.07 L 325.215,3279.57 L 324.93,3279.07 L 324.811,3278.86 L 324.549,3278.86 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 325.999,3278.86 L 326.179,3279.07 L 326.5,3279.44 L 326.647,3279.61 L 326.825,3279.81 L 325.997,3279.81 L 325.997,3280.02 L 327.298,3280.02 L 327.117,3279.81 L 326.792,3279.44 L 326.646,3279.27 L 326.47,3279.07 L 327.303,3279.07 L 327.303,3278.86 L 325.999,3278.86 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 327.7,3278.89 C 327.659,3278.9 327.621,3278.92 327.589,3278.95 C 327.557,3278.98 327.533,3279.01 327.514,3279.05 C 327.496,3279.09 327.487,3279.13 327.487,3279.17 L 327.487,3279.71 C 327.487,3279.75 327.496,3279.79 327.514,3279.83 C 327.533,3279.87 327.557,3279.9 327.589,3279.93 C 327.621,3279.96 327.659,3279.98 327.7,3279.99 C 327.743,3280.01 327.788,3280.02 327.837,3280.02 L 328.79,3280.02 L 328.79,3279.81 L 327.837,3279.81 C 327.815,3279.81 327.795,3279.81 327.777,3279.8 C 327.759,3279.79 327.745,3279.78 327.735,3279.76 C 327.722,3279.74 327.718,3279.73 327.718,3279.71 L 327.718,3279.6 L 328.557,3279.6 L 328.557,3279.39 L 327.718,3279.39 L 327.718,3279.17 C 327.718,3279.15 327.722,3279.14 327.735,3279.12 C 327.745,3279.11 327.759,3279.09 327.777,3279.08 C 327.795,3279.07 327.815,3279.07 327.837,3279.07 L 328.79,3279.07 L 328.79,3278.86 L 327.837,3278.86 C 327.788,3278.86 327.743,3278.87 327.7,3278.89 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cpath d='M 272.293,3294.25 L 267.376,3316.11 L 267.72,3316.11 L 272.748,3294.25 L 272.293,3294.25 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 380.17,3294.24 L 363.639,3315.37 L 364.209,3315.36 L 380.934,3294.25 L 380.17,3294.24 Z' stroke-width='0.298' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 378.68,3277.51 L 381.119,3293.87 L 381.563,3293.87 L 379.167,3277.51 L 378.68,3277.51 Z' stroke-width='0.143' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_6)'/%3E%3Cpath d='M 270.286,3277.51 L 271.663,3293.87 L 272.107,3293.87 L 270.776,3277.51 L 270.286,3277.51 Z' stroke-width='0.143' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_7)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_MINI_small_individuals--MONO {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='637.999 -3041.4 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='72.269' y2='0' gradientTransform='translate(682.076 2951.59) rotate(53.596) skewX(-8.88364)'%3E%3Cstop offset='0' stop-color='%23c6b9b5'/%3E%3Cstop offset='1' stop-color='%23ece4df'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='58.57' y2='0' gradientTransform='translate(669.739 2953.4) rotate(94.6184) skewX(1.35098)'%3E%3Cstop offset='0' stop-color='%23b2a6a3'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.109' y2='0' gradientTransform='translate(682.055 3010.16) rotate(13.1253) skewX(-5.1414)'%3E%3Cstop offset='0' stop-color='%23c5b8b4'/%3E%3Cstop offset='1' stop-color='%23d1c3bf'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.791' y2='0' gradientTransform='translate(665.76 3016.19) rotate(-121.721) skewX(-8.15213)'%3E%3Cstop offset='0' stop-color='%23a09592'/%3E%3Cstop offset='1' stop-color='%23beb1ae'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.48' y2='0' gradientTransform='translate(711.06 3015.64) rotate(-85.7019) skewX(1.28529) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c1b4b0'/%3E%3Cstop offset='1' stop-color='%23c6b9b5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.571' y2='0' gradientTransform='translate(672.205 2980.15) rotate(180) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23b8aca8'/%3E%3Cstop offset='1' stop-color='%23bfb2af'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(696.327 2983.08) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 671.919,2944.52 L 671.919,3013.35 L 732.75,3016.63 C 732.793,3016.59 732.825,3016.53 732.825,3016.46 L 732.825,2951.46 L 671.919,2944.52 Z' stroke-width='8.031' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 671.919,2944.52 L 659.844,2954.38 L 659.838,3018.91 L 671.919,3013.35 L 671.919,2944.52 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 671.919,3013.35 L 659.838,3018.91 L 718.872,3021.64 L 732.62,3016.71 C 732.667,3016.69 732.714,3016.67 732.75,3016.63 L 671.919,3013.35 Z' stroke-width='1.028' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 671.616,3012.56 L 659.833,3018.1 L 659.831,3018.91 L 671.616,3013.49 L 671.616,3012.56 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_1' fill='%23000000' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.906'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 688.79,2982.5 L 688.782,2989.65 L 689.962,2989.77 L 689.969,2986.12 L 690.943,2987.18 L 691.82,2988.13 L 693.66,2990.15 L 695.412,2990.33 L 692.522,2987.16 L 695.395,2983.17 L 693.937,2983.02 L 691.645,2986.2 L 689.971,2984.39 L 689.971,2982.62 L 688.79,2982.5 Z M 695.997,2983.23 L 696.603,2984.57 L 699.365,2990.73 L 702.146,2985.14 L 702.749,2983.92 L 701.429,2983.79 L 700.82,2985 L 699.37,2987.92 L 697.923,2984.7 L 697.321,2983.37 L 695.997,2983.23 Z M 703.347,2983.98 L 703.357,2983.98 L 704.264,2985.35 L 705.885,2987.8 L 706.636,2988.92 L 707.538,2990.29 L 703.331,2989.86 L 703.329,2991.13 L 708.447,2991.65 L 709.929,2991.8 L 709.016,2990.43 L 707.373,2987.95 L 706.63,2986.83 L 705.736,2985.5 L 709.967,2985.93 L 709.968,2984.65 L 704.849,2984.13 L 704.841,2984.13 L 703.347,2983.98 Z M 711.979,2985.01 C 711.766,2985.09 711.573,2985.21 711.416,2985.37 C 711.25,2985.53 711.122,2985.72 711.035,2985.94 C 710.942,2986.17 710.896,2986.41 710.894,2986.68 L 710.888,2989.97 C 710.888,2990.24 710.933,2990.49 711.026,2990.73 C 711.116,2990.98 711.241,2991.19 711.409,2991.39 C 711.567,2991.58 711.758,2991.74 711.971,2991.86 C 712.186,2991.98 712.418,2992.05 712.665,2992.08 L 717.497,2992.57 L 717.497,2991.3 L 712.665,2990.8 C 712.552,2990.79 712.452,2990.75 712.36,2990.68 C 712.269,2990.62 712.201,2990.53 712.145,2990.43 C 712.091,2990.32 712.065,2990.21 712.065,2990.09 L 712.065,2989.43 L 716.318,2989.86 L 716.32,2988.58 L 712.065,2988.15 L 712.065,2986.8 C 712.065,2986.68 712.095,2986.57 712.15,2986.48 C 712.207,2986.39 712.275,2986.31 712.365,2986.26 C 712.459,2986.21 712.556,2986.2 712.671,2986.2 L 717.503,2986.7 L 717.506,2985.42 L 712.671,2984.93 C 712.429,2984.91 712.197,2984.93 711.979,2985.01 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 672.22,3013.02 L 671.616,3013.49 L 732.31,3016.82 L 732.62,3016.71 C 732.722,3016.68 732.825,3016.6 732.825,3016.46 L 732.825,3016.34 L 672.22,3013.02 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 671.616,3013.49 L 671.613,2944.76 L 671.919,2944.52 L 672.22,2944.56 L 672.22,3013.02 L 671.616,3013.49 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cg id='Group_4' fill='%23000000' fill-rule='nonzero'%3E%3Cg id='Group_5'%3E%3Cpath d='M 700.37,2979.18 L 700.37,2981.24 L 700.736,2981 L 701.394,2980.55 L 702.05,2981.13 L 702.415,2981.45 L 702.415,2979.38 L 702.05,2979.35 L 702.05,2980.66 L 701.691,2980.35 L 701.394,2980.09 L 701.095,2980.29 L 700.736,2980.53 L 700.736,2979.21 L 700.37,2979.18 Z M 702.708,2979.41 L 702.708,2981.48 L 703.074,2981.52 L 703.074,2979.45 L 702.708,2979.41 Z M 703.368,2979.48 L 703.368,2981.54 L 703.732,2981.3 L 705.049,2980.41 L 705.049,2981.72 L 705.413,2981.75 L 705.413,2979.69 L 705.049,2979.93 L 703.732,2980.82 L 703.732,2979.52 L 703.368,2979.48 Z M 705.706,2979.72 L 705.706,2981.79 L 706.072,2981.82 L 706.072,2979.76 L 705.706,2979.72 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.248'%3E%3Crect x='-2.636' y='-2.484' width='5.272' height='4.968' transform='translate(699.895 2953) rotate(90) skewX(-6.56028)' fill='%23000000'/%3E%3Crect x='-2.637' y='-2.484' width='5.275' height='4.969' transform='translate(706.353 2953.75) rotate(90) skewX(-6.55843)' fill='%23ece4df'/%3E%3C/g%3E%3Cg id='Group_8' fill='%23000000' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.053'%3E%3Cg id='Group_9'%3E%3Cpath d='M 696.551,2957.96 L 696.519,2959.48 L 696.747,2959.51 L 697.205,2958.61 L 697.615,2959.61 L 697.842,2959.63 L 697.873,2958.11 L 697.646,2958.09 L 697.625,2959.1 L 697.295,2958.32 L 697.126,2958.3 L 696.758,2959 L 696.778,2957.99 L 696.551,2957.96 Z M 698.529,2958.22 C 698.464,2958.24 698.407,2958.27 698.357,2958.31 C 698.32,2958.34 698.291,2958.38 698.269,2958.42 C 698.247,2958.45 698.232,2958.49 698.222,2958.54 C 698.211,2958.59 698.204,2958.64 698.201,2958.7 C 698.196,2958.76 698.194,2958.83 698.193,2958.91 C 698.192,2958.99 698.191,2959.06 698.192,2959.12 C 698.193,2959.18 698.197,2959.24 698.206,2959.29 C 698.214,2959.34 698.229,2959.38 698.248,2959.42 C 698.268,2959.47 698.296,2959.51 698.332,2959.55 C 698.379,2959.6 698.434,2959.65 698.498,2959.68 C 698.561,2959.72 698.634,2959.74 698.716,2959.75 C 698.798,2959.76 698.871,2959.75 698.935,2959.73 C 699,2959.71 699.057,2959.68 699.107,2959.64 C 699.144,2959.61 699.173,2959.57 699.195,2959.53 C 699.216,2959.49 699.232,2959.45 699.242,2959.41 C 699.253,2959.36 699.26,2959.3 699.263,2959.24 C 699.267,2959.18 699.269,2959.12 699.271,2959.03 C 699.272,2958.96 699.274,2958.89 699.272,2958.83 C 699.271,2958.76 699.267,2958.71 699.257,2958.66 C 699.249,2958.61 699.235,2958.57 699.216,2958.52 C 699.196,2958.48 699.168,2958.44 699.132,2958.4 C 699.085,2958.34 699.029,2958.3 698.967,2958.27 C 698.903,2958.23 698.83,2958.21 698.748,2958.2 C 698.667,2958.19 698.592,2958.2 698.529,2958.22 Z M 699.625,2958.31 L 699.592,2959.84 L 699.801,2959.86 L 700.517,2958.87 L 700.493,2959.94 L 700.72,2959.96 L 700.753,2958.45 L 700.544,2958.42 L 699.828,2959.41 L 699.852,2958.34 L 699.625,2958.31 Z M 698.744,2958.41 C 698.789,2958.41 698.83,2958.42 698.867,2958.45 C 698.904,2958.47 698.937,2958.49 698.965,2958.53 C 698.983,2958.55 698.998,2958.57 699.01,2958.6 C 699.021,2958.62 699.029,2958.65 699.034,2958.69 C 699.04,2958.72 699.043,2958.77 699.044,2958.82 C 699.045,2958.87 699.045,2958.93 699.043,2959.01 C 699.042,2959.09 699.04,2959.15 699.036,2959.2 C 699.033,2959.25 699.028,2959.29 699.021,2959.33 C 699.014,2959.36 699.005,2959.39 698.992,2959.41 C 698.981,2959.44 698.964,2959.46 698.946,2959.47 C 698.916,2959.5 698.883,2959.52 698.845,2959.53 C 698.807,2959.54 698.765,2959.55 698.72,2959.54 C 698.675,2959.54 698.633,2959.52 698.596,2959.5 C 698.559,2959.48 698.526,2959.45 698.499,2959.42 C 698.481,2959.4 698.466,2959.38 698.456,2959.35 C 698.444,2959.33 698.436,2959.3 698.43,2959.26 C 698.425,2959.22 698.421,2959.18 698.42,2959.13 C 698.419,2959.08 698.419,2959.01 698.42,2958.94 C 698.422,2958.86 698.425,2958.8 698.428,2958.75 C 698.431,2958.7 698.436,2958.66 698.443,2958.62 C 698.451,2958.59 698.46,2958.56 698.472,2958.54 C 698.485,2958.51 698.5,2958.49 698.518,2958.48 C 698.547,2958.45 698.581,2958.43 698.619,2958.42 C 698.657,2958.4 698.698,2958.4 698.744,2958.41 Z M 701.411,2958.55 C 701.346,2958.57 701.289,2958.6 701.239,2958.64 C 701.202,2958.68 701.173,2958.71 701.151,2958.75 C 701.129,2958.79 701.114,2958.83 701.104,2958.87 C 701.093,2958.92 701.086,2958.97 701.083,2959.03 C 701.08,2959.1 701.076,2959.17 701.075,2959.24 C 701.074,2959.32 701.073,2959.39 701.074,2959.45 C 701.075,2959.52 701.08,2959.57 701.088,2959.62 C 701.097,2959.67 701.111,2959.71 701.13,2959.76 C 701.15,2959.8 701.178,2959.84 701.214,2959.88 C 701.261,2959.93 701.317,2959.98 701.38,2960.01 C 701.443,2960.05 701.516,2960.07 701.598,2960.08 C 701.68,2960.09 701.754,2960.08 701.817,2960.07 C 701.882,2960.05 701.939,2960.01 701.989,2959.97 C 702.026,2959.94 702.055,2959.9 702.077,2959.87 C 702.099,2959.83 702.114,2959.79 702.124,2959.74 C 702.135,2959.69 702.142,2959.64 702.145,2959.58 C 702.149,2959.52 702.152,2959.45 702.153,2959.37 C 702.154,2959.29 702.156,2959.22 702.154,2959.16 C 702.153,2959.1 702.149,2959.04 702.141,2958.99 C 702.131,2958.94 702.117,2958.9 702.098,2958.86 C 702.078,2958.81 702.05,2958.77 702.014,2958.73 C 701.967,2958.68 701.911,2958.63 701.849,2958.6 C 701.785,2958.57 701.712,2958.54 701.63,2958.53 C 701.549,2958.53 701.475,2958.53 701.411,2958.55 Z M 701.626,2958.74 C 701.671,2958.74 701.712,2958.76 701.749,2958.78 C 701.787,2958.8 701.82,2958.83 701.848,2958.86 C 701.866,2958.88 701.88,2958.9 701.892,2958.93 C 701.903,2958.95 701.911,2958.99 701.917,2959.02 C 701.922,2959.06 701.925,2959.1 701.926,2959.15 C 701.927,2959.2 701.927,2959.27 701.925,2959.34 C 701.924,2959.42 701.922,2959.48 701.918,2959.53 C 701.916,2959.58 701.91,2959.63 701.903,2959.66 C 701.896,2959.7 701.887,2959.72 701.874,2959.75 C 701.863,2959.77 701.846,2959.79 701.828,2959.81 C 701.798,2959.83 701.765,2959.85 701.727,2959.86 C 701.689,2959.88 701.647,2959.88 701.602,2959.88 C 701.557,2959.87 701.516,2959.86 701.479,2959.84 C 701.441,2959.82 701.409,2959.79 701.381,2959.76 C 701.363,2959.73 701.348,2959.71 701.338,2959.68 C 701.326,2959.66 701.318,2959.63 701.312,2959.59 C 701.307,2959.56 701.303,2959.51 701.302,2959.46 C 701.301,2959.41 701.301,2959.35 701.302,2959.27 C 701.304,2959.2 701.307,2959.13 701.31,2959.08 C 701.314,2959.03 701.318,2958.99 701.326,2958.95 C 701.333,2958.92 701.342,2958.89 701.354,2958.87 C 701.367,2958.85 701.382,2958.83 701.4,2958.81 C 701.429,2958.78 701.463,2958.76 701.501,2958.75 C 701.539,2958.74 701.581,2958.73 701.626,2958.74 Z M 703.204,2958.74 C 703.141,2958.74 703.084,2958.76 703.03,2958.78 C 702.976,2958.8 702.925,2958.84 702.875,2958.88 L 703.021,2959.05 C 703.078,2959 703.137,2958.97 703.201,2958.95 C 703.264,2958.94 703.335,2958.93 703.41,2958.94 C 703.51,2958.96 703.586,2958.99 703.638,2959.03 C 703.69,2959.08 703.716,2959.14 703.715,2959.22 C 703.715,2959.25 703.709,2959.28 703.7,2959.3 C 703.689,2959.33 703.674,2959.35 703.652,2959.37 C 703.634,2959.38 703.611,2959.39 703.584,2959.4 C 703.557,2959.41 703.525,2959.41 703.487,2959.41 L 703.309,2959.42 C 703.248,2959.42 703.194,2959.43 703.146,2959.44 C 703.099,2959.46 703.058,2959.48 703.024,2959.51 C 702.987,2959.54 702.958,2959.57 702.939,2959.62 C 702.919,2959.67 702.909,2959.72 702.907,2959.78 C 702.905,2959.87 702.924,2959.95 702.963,2960.03 C 703.001,2960.1 703.058,2960.15 703.132,2960.2 C 703.205,2960.25 703.294,2960.28 703.399,2960.29 C 703.466,2960.3 703.526,2960.3 703.58,2960.29 C 703.635,2960.28 703.686,2960.27 703.733,2960.25 C 703.78,2960.23 703.825,2960.2 703.868,2960.17 L 703.729,2960.01 C 703.681,2960.05 703.629,2960.07 703.575,2960.08 C 703.519,2960.09 703.459,2960.09 703.395,2960.09 C 703.336,2960.08 703.286,2960.06 703.247,2960.04 C 703.206,2960.01 703.176,2959.98 703.156,2959.94 C 703.137,2959.91 703.128,2959.86 703.128,2959.82 C 703.129,2959.79 703.133,2959.76 703.141,2959.74 C 703.151,2959.72 703.166,2959.7 703.185,2959.68 C 703.204,2959.67 703.226,2959.66 703.253,2959.65 C 703.278,2959.64 703.311,2959.63 703.351,2959.63 L 703.531,2959.63 C 703.577,2959.62 703.616,2959.62 703.65,2959.62 C 703.684,2959.61 703.714,2959.6 703.74,2959.59 C 703.766,2959.58 703.79,2959.56 703.812,2959.55 C 703.853,2959.51 703.884,2959.47 703.906,2959.42 C 703.927,2959.37 703.938,2959.31 703.94,2959.25 C 703.941,2959.15 703.92,2959.07 703.876,2959 C 703.832,2958.93 703.769,2958.87 703.689,2958.83 C 703.609,2958.78 703.517,2958.75 703.41,2958.74 C 703.335,2958.73 703.267,2958.73 703.204,2958.74 Z M 704.255,2958.85 L 704.222,2960.37 L 705.18,2960.48 L 705.185,2960.27 L 704.454,2960.19 L 704.463,2959.74 L 705.086,2959.82 L 705.091,2959.61 L 704.468,2959.54 L 704.477,2959.08 L 705.208,2959.17 L 705.213,2958.96 L 704.255,2958.85 Z M 705.524,2959 L 705.493,2960.52 L 706.073,2960.58 C 706.168,2960.59 706.252,2960.59 706.321,2960.55 C 706.392,2960.53 706.446,2960.48 706.486,2960.42 C 706.525,2960.36 706.546,2960.28 706.548,2960.19 C 706.549,2960.12 706.537,2960.05 706.512,2960 C 706.487,2959.94 706.452,2959.89 706.408,2959.85 C 706.364,2959.81 706.314,2959.78 706.257,2959.76 L 706.617,2959.12 L 706.351,2959.09 L 706.022,2959.7 L 705.739,2959.66 L 705.751,2959.02 L 705.524,2959 Z M 706.903,2959.16 L 706.871,2960.68 L 707.098,2960.7 L 707.13,2959.18 L 706.903,2959.16 Z M 707.522,2959.23 L 707.491,2960.75 L 708.449,2960.86 L 708.453,2960.65 L 707.723,2960.57 L 707.732,2960.12 L 708.355,2960.2 L 708.359,2959.99 L 707.736,2959.92 L 707.746,2959.46 L 708.476,2959.55 L 708.48,2959.34 L 707.522,2959.23 Z M 708.984,2959.4 C 708.922,2959.41 708.864,2959.42 708.811,2959.45 C 708.756,2959.47 708.705,2959.5 708.655,2959.55 L 708.802,2959.72 C 708.858,2959.67 708.917,2959.64 708.981,2959.62 C 709.046,2959.61 709.115,2959.6 709.19,2959.61 C 709.29,2959.63 709.367,2959.65 709.419,2959.7 C 709.471,2959.75 709.496,2959.81 709.495,2959.88 C 709.495,2959.92 709.489,2959.95 709.48,2959.97 C 709.47,2960 709.455,2960.02 709.434,2960.03 C 709.414,2960.05 709.391,2960.06 709.364,2960.07 C 709.338,2960.08 709.305,2960.08 709.268,2960.08 L 709.09,2960.09 C 709.028,2960.09 708.974,2960.1 708.926,2960.11 C 708.879,2960.12 708.838,2960.15 708.805,2960.17 C 708.768,2960.2 708.739,2960.24 708.719,2960.29 C 708.699,2960.34 708.689,2960.39 708.688,2960.45 C 708.687,2960.54 708.705,2960.62 708.743,2960.69 C 708.782,2960.76 708.838,2960.82 708.912,2960.87 C 708.987,2960.91 709.076,2960.94 709.18,2960.95 C 709.246,2960.96 709.306,2960.96 709.361,2960.96 C 709.415,2960.95 709.466,2960.94 709.514,2960.92 C 709.56,2960.9 709.605,2960.87 709.649,2960.84 L 709.509,2960.67 C 709.462,2960.71 709.411,2960.74 709.355,2960.75 C 709.299,2960.76 709.239,2960.76 709.175,2960.75 C 709.116,2960.75 709.067,2960.73 709.027,2960.71 C 708.987,2960.68 708.956,2960.65 708.937,2960.61 C 708.917,2960.57 708.908,2960.53 708.908,2960.49 C 708.909,2960.46 708.914,2960.43 708.923,2960.41 C 708.931,2960.39 708.946,2960.37 708.966,2960.35 C 708.984,2960.34 709.007,2960.32 709.033,2960.32 C 709.058,2960.31 709.091,2960.3 709.131,2960.3 L 709.312,2960.29 C 709.357,2960.29 709.397,2960.29 709.43,2960.28 C 709.465,2960.28 709.494,2960.27 709.521,2960.26 C 709.546,2960.24 709.57,2960.23 709.592,2960.21 C 709.633,2960.18 709.664,2960.14 709.686,2960.09 C 709.707,2960.04 709.719,2959.98 709.721,2959.92 C 709.722,2959.82 709.7,2959.74 709.656,2959.67 C 709.612,2959.6 709.55,2959.54 709.47,2959.49 C 709.39,2959.45 709.297,2959.42 709.19,2959.41 C 709.116,2959.4 709.047,2959.4 708.984,2959.4 Z M 705.734,2959.86 L 706.071,2959.9 C 706.122,2959.9 706.166,2959.92 706.204,2959.94 C 706.241,2959.97 706.27,2959.99 706.291,2960.03 C 706.312,2960.07 706.321,2960.12 706.321,2960.17 C 706.319,2960.22 706.307,2960.26 706.285,2960.29 C 706.263,2960.32 706.233,2960.35 706.195,2960.36 C 706.157,2960.38 706.112,2960.38 706.061,2960.38 L 705.723,2960.34 L 705.734,2959.86 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_MINI_small_individuals--FONDANT {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='763.358 -3041.4 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='70.603' y2='0' gradientTransform='translate(807.763 2952.32) rotate(53.5966) skewX(-8.8827)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='57.221' y2='0' gradientTransform='translate(795.711 2954.08) rotate(94.617) skewX(1.34926)'%3E%3Cstop offset='0' stop-color='%239b7844'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.482' y2='0' gradientTransform='translate(807.743 3009.53) rotate(13.1258) skewX(-5.14168)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.771' y2='0' gradientTransform='translate(791.822 3015.42) rotate(-121.651) skewX(-8.12589)'%3E%3Cstop offset='0' stop-color='%238b6c3d'/%3E%3Cstop offset='1' stop-color='%23a58048'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.468' y2='0' gradientTransform='translate(836.079 3014.89) rotate(-85.47) skewX(1.45807) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23a8824a'/%3E%3Cstop offset='1' stop-color='%23ac864c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.558' y2='0' gradientTransform='translate(798.12 2980.22) rotate(180) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23a07c46'/%3E%3Cstop offset='1' stop-color='%23a68149'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(821.686 2983.08) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 797.842,2945.41 L 797.842,3012.65 L 857.269,3015.86 C 857.31,3015.82 857.342,3015.76 857.342,3015.69 L 857.342,2952.18 L 797.842,2945.41 Z' stroke-width='7.846' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 797.842,2945.41 L 786.043,2955.03 L 786.038,3018.09 L 797.842,3012.65 L 797.842,2945.41 Z' stroke-width='5.632' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 797.842,3012.65 L 786.038,3018.09 L 843.711,3020.75 L 857.142,3015.93 C 857.188,3015.92 857.234,3015.9 857.269,3015.86 L 797.842,3012.65 Z' stroke-width='1.005' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 797.543,3011.88 L 786.034,3017.3 L 786.031,3018.09 L 797.543,3012.79 L 797.543,3011.88 Z' stroke-width='5.632' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.839' fill='%23ffffff'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 814.322,2982.51 L 814.315,2989.5 L 815.469,2989.62 L 815.473,2986.05 L 816.425,2987.08 L 817.282,2988.02 L 819.08,2989.98 L 820.793,2990.16 L 817.97,2987.07 L 820.774,2983.17 L 819.351,2983.02 L 817.112,2986.13 L 815.476,2984.36 L 815.476,2982.63 L 814.322,2982.51 Z M 821.363,2983.23 L 821.956,2984.54 L 824.654,2990.55 L 827.371,2985.09 L 827.96,2983.9 L 826.67,2983.77 L 826.075,2984.96 L 824.659,2987.81 L 823.245,2984.67 L 822.657,2983.36 L 821.363,2983.23 Z M 828.544,2983.96 L 828.553,2983.96 L 829.44,2985.3 L 831.024,2987.69 L 831.757,2988.78 L 832.64,2990.12 L 828.53,2989.7 L 828.528,2990.95 L 833.527,2991.46 L 834.973,2991.6 L 834.081,2990.26 L 832.477,2987.84 L 831.751,2986.74 L 830.879,2985.45 L 835.01,2985.87 L 835.012,2984.61 L 830.01,2984.11 L 830.004,2984.11 L 828.544,2983.96 Z M 836.978,2984.96 C 836.769,2985.05 836.58,2985.16 836.426,2985.32 C 836.265,2985.47 836.139,2985.66 836.054,2985.88 C 835.964,2986.1 835.92,2986.34 835.918,2986.6 L 835.911,2989.81 C 835.911,2990.07 835.955,2990.32 836.047,2990.56 C 836.134,2990.79 836.256,2991 836.422,2991.2 C 836.573,2991.38 836.762,2991.54 836.969,2991.65 C 837.18,2991.78 837.405,2991.85 837.647,2991.87 L 842.368,2992.35 L 842.368,2991.11 L 837.647,2990.63 C 837.536,2990.61 837.44,2990.58 837.35,2990.51 C 837.261,2990.44 837.194,2990.36 837.139,2990.26 C 837.086,2990.16 837.061,2990.04 837.061,2989.93 L 837.061,2989.28 L 841.217,2989.7 L 841.219,2988.46 L 837.061,2988.03 L 837.061,2986.71 C 837.061,2986.59 837.09,2986.49 837.143,2986.4 C 837.201,2986.31 837.267,2986.24 837.355,2986.19 C 837.444,2986.14 837.541,2986.13 837.654,2986.13 L 842.375,2986.61 L 842.378,2985.37 L 837.654,2984.88 C 837.417,2984.86 837.189,2984.89 836.978,2984.96 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 798.134,3012.33 L 797.543,3012.79 L 856.839,3016.04 L 857.142,3015.93 C 857.243,3015.9 857.342,3015.82 857.342,3015.69 L 857.342,3015.57 L 798.134,3012.33 Z' stroke-width='5.632' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 797.543,3012.79 L 797.541,2945.65 L 797.842,2945.41 L 798.134,2945.44 L 798.134,3012.33 L 797.543,3012.79 Z' stroke-width='5.632' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cg id='Group_4' fill-rule='nonzero' fill='%23ffffff'%3E%3Cg id='Group_5'%3E%3Cpath d='M 824.981,2978.78 L 824.981,2981.22 L 825.413,2980.93 L 826.19,2980.41 L 826.965,2981.09 L 827.394,2981.47 L 827.394,2979.02 L 826.965,2978.98 L 826.965,2980.54 L 826.539,2980.17 L 826.19,2979.86 L 825.836,2980.1 L 825.413,2980.38 L 825.413,2978.82 L 824.981,2978.78 Z M 827.742,2979.06 L 827.742,2981.51 L 828.174,2981.55 L 828.174,2979.11 L 827.742,2979.06 Z M 828.521,2979.14 L 828.521,2981.57 L 828.953,2981.28 L 830.507,2980.23 L 830.507,2981.78 L 830.934,2981.83 L 830.934,2979.39 L 830.507,2979.68 L 828.953,2980.72 L 828.953,2979.18 L 828.521,2979.14 Z M 831.282,2979.42 L 831.282,2981.86 L 831.714,2981.91 L 831.714,2979.46 L 831.282,2979.42 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.244'%3E%3Crect x='-2.578' y='-2.43' width='5.157' height='4.86' transform='translate(815.694 2952.62) rotate(90) skewX(-6.37495)' fill='%23003660'/%3E%3Crect x='-2.578' y='-2.428' width='5.157' height='4.857' transform='translate(822.009 2953.32) rotate(90) skewX(-6.37863)' fill='%23cf3400'/%3E%3Crect x='-2.578' y='-2.43' width='5.157' height='4.86' transform='translate(828.325 2954.03) rotate(90) skewX(-6.37495)' fill='%23bf0000'/%3E%3Crect x='-2.578' y='-2.43' width='5.157' height='4.86' transform='translate(834.642 2954.73) rotate(90) skewX(-6.37495)' fill='%2393170b'/%3E%3Crect x='-2.579' y='-2.429' width='5.159' height='4.859' transform='translate(840.957 2955.44) rotate(90) skewX(-6.39326)' fill='%23114700'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.037' fill='%23ffffff'%3E%3Cg id='Group_9'%3E%3Cpath d='M 819.131,2958.34 L 819.131,2959.31 C 819.131,2959.36 819.142,2959.41 819.158,2959.45 C 819.177,2959.5 819.202,2959.54 819.234,2959.58 C 819.266,2959.62 819.303,2959.64 819.347,2959.67 C 819.388,2959.69 819.434,2959.7 819.485,2959.71 L 820.448,2959.8 L 820.448,2959.56 L 819.487,2959.47 C 819.464,2959.47 819.445,2959.46 819.427,2959.45 C 819.409,2959.43 819.393,2959.42 819.383,2959.4 C 819.372,2959.38 819.365,2959.36 819.365,2959.34 L 819.365,2959.21 L 820.211,2959.3 L 820.211,2959.06 L 819.365,2958.97 L 819.365,2958.36 L 819.131,2958.34 Z M 820.827,2958.56 C 820.749,2958.58 820.678,2958.63 820.618,2958.68 C 820.558,2958.74 820.51,2958.8 820.475,2958.88 C 820.443,2958.96 820.425,2959.04 820.425,2959.13 C 820.425,2959.22 820.443,2959.32 820.475,2959.4 C 820.51,2959.48 820.558,2959.56 820.618,2959.63 C 820.678,2959.69 820.749,2959.74 820.827,2959.79 C 820.907,2959.83 820.993,2959.86 821.082,2959.86 C 821.174,2959.88 821.259,2959.86 821.34,2959.84 C 821.418,2959.81 821.489,2959.77 821.549,2959.72 C 821.609,2959.66 821.657,2959.6 821.689,2959.52 C 821.724,2959.44 821.74,2959.36 821.742,2959.26 C 821.74,2959.17 821.724,2959.08 821.689,2959 C 821.657,2958.92 821.609,2958.84 821.549,2958.77 C 821.489,2958.71 821.418,2958.65 821.34,2958.61 C 821.259,2958.57 821.174,2958.54 821.082,2958.53 C 820.993,2958.52 820.907,2958.53 820.827,2958.56 Z M 821.884,2958.61 L 821.884,2959.94 L 822.121,2959.78 L 822.967,2959.2 L 822.967,2960.05 L 823.202,2960.07 L 823.202,2958.74 L 822.967,2958.9 L 822.121,2959.48 L 822.121,2958.64 L 821.884,2958.61 Z M 821.082,2958.77 C 821.142,2958.78 821.197,2958.79 821.248,2958.82 C 821.298,2958.85 821.342,2958.88 821.383,2958.92 C 821.422,2958.97 821.45,2959.02 821.473,2959.07 C 821.494,2959.13 821.505,2959.18 821.507,2959.24 C 821.505,2959.3 821.494,2959.35 821.473,2959.41 C 821.45,2959.45 821.422,2959.5 821.383,2959.53 C 821.342,2959.57 821.298,2959.6 821.248,2959.61 C 821.197,2959.63 821.142,2959.63 821.082,2959.63 C 821.025,2959.62 820.97,2959.61 820.919,2959.58 C 820.866,2959.55 820.822,2959.51 820.783,2959.47 C 820.744,2959.43 820.714,2959.38 820.691,2959.33 C 820.671,2959.27 820.659,2959.22 820.659,2959.16 C 820.659,2959.1 820.671,2959.04 820.691,2958.99 C 820.714,2958.95 820.744,2958.9 820.783,2958.87 C 820.822,2958.83 820.866,2958.8 820.919,2958.79 C 820.97,2958.77 821.025,2958.77 821.082,2958.77 Z M 823.39,2958.76 L 823.39,2960.09 L 824.05,2960.16 L 824.048,2960.16 C 824.139,2960.17 824.225,2960.16 824.303,2960.13 C 824.383,2960.11 824.452,2960.06 824.514,2960.01 C 824.574,2959.95 824.62,2959.89 824.654,2959.81 C 824.689,2959.74 824.705,2959.65 824.707,2959.56 C 824.705,2959.48 824.691,2959.4 824.666,2959.32 C 824.638,2959.24 824.599,2959.17 824.551,2959.11 C 824.544,2959.1 824.537,2959.1 824.533,2959.09 C 824.526,2959.08 824.519,2959.07 824.512,2959.07 C 824.452,2959 824.383,2958.95 824.303,2958.9 C 824.225,2958.86 824.142,2958.84 824.05,2958.83 L 823.39,2958.76 Z M 824.657,2958.89 L 824.776,2959.13 L 825.328,2960.28 L 825.88,2959.24 L 825.999,2959.02 L 825.735,2958.99 L 825.615,2959.22 L 825.328,2959.76 L 825.038,2959.16 L 824.919,2958.91 L 824.657,2958.89 Z M 823.625,2959.02 L 824.048,2959.06 C 824.105,2959.07 824.162,2959.08 824.211,2959.11 C 824.264,2959.14 824.307,2959.17 824.346,2959.22 C 824.385,2959.26 824.415,2959.31 824.436,2959.36 C 824.459,2959.42 824.47,2959.47 824.473,2959.53 C 824.47,2959.59 824.459,2959.65 824.436,2959.7 C 824.415,2959.74 824.385,2959.79 824.346,2959.82 C 824.307,2959.86 824.264,2959.88 824.211,2959.9 C 824.162,2959.92 824.105,2959.92 824.048,2959.92 L 823.625,2959.88 L 823.625,2959.02 Z M 826.114,2959.03 L 826.114,2960.36 L 826.349,2960.2 L 827.194,2959.62 L 827.194,2960.47 L 827.429,2960.49 L 827.429,2959.16 L 827.194,2959.32 L 826.349,2959.89 L 826.349,2959.05 L 826.114,2959.03 Z M 828.16,2959.23 L 828.16,2960.32 L 827.62,2960.27 L 827.62,2960.51 L 828.935,2960.64 L 828.935,2960.4 L 828.394,2960.35 L 828.394,2959.26 L 828.16,2959.23 Z M 830.298,2959.47 C 830.247,2959.49 830.203,2959.51 830.164,2959.55 C 830.125,2959.59 830.098,2959.63 830.075,2959.68 C 830.054,2959.72 830.043,2959.78 830.043,2959.84 L 830.277,2959.86 C 830.277,2959.83 830.286,2959.8 830.302,2959.77 C 830.318,2959.74 830.341,2959.72 830.367,2959.71 C 830.394,2959.7 830.424,2959.69 830.459,2959.69 L 830.87,2959.74 C 830.905,2959.74 830.934,2959.75 830.962,2959.77 C 830.99,2959.79 831.013,2959.81 831.026,2959.84 C 831.043,2959.87 831.052,2959.9 831.054,2959.94 C 831.052,2959.97 831.043,2960 831.026,2960.03 C 831.013,2960.05 830.99,2960.07 830.962,2960.09 C 830.934,2960.1 830.905,2960.1 830.87,2960.1 L 830.397,2960.05 C 830.348,2960.05 830.302,2960.05 830.261,2960.07 C 830.22,2960.08 830.183,2960.1 830.148,2960.13 C 830.132,2960.15 830.118,2960.17 830.102,2960.18 C 830.084,2960.21 830.07,2960.24 830.059,2960.27 C 830.047,2960.31 830.043,2960.34 830.043,2960.38 L 830.043,2960.39 C 830.043,2960.44 830.052,2960.49 830.07,2960.53 C 830.089,2960.58 830.114,2960.62 830.146,2960.65 C 830.178,2960.69 830.215,2960.72 830.256,2960.74 C 830.3,2960.76 830.346,2960.78 830.397,2960.78 L 830.93,2960.84 L 831.001,2960.83 C 831.024,2960.83 831.047,2960.83 831.068,2960.82 C 831.111,2960.81 831.148,2960.78 831.183,2960.76 C 831.213,2960.73 831.238,2960.69 831.256,2960.65 C 831.275,2960.61 831.286,2960.56 831.286,2960.51 L 831.286,2960.5 L 831.052,2960.48 L 831.052,2960.49 C 831.049,2960.51 831.045,2960.53 831.036,2960.55 C 831.022,2960.56 831.008,2960.58 830.992,2960.59 C 830.971,2960.59 830.951,2960.6 830.93,2960.6 L 830.397,2960.54 C 830.374,2960.54 830.353,2960.53 830.337,2960.52 C 830.318,2960.51 830.302,2960.49 830.293,2960.47 C 830.282,2960.45 830.275,2960.43 830.275,2960.41 L 830.275,2960.4 C 830.275,2960.38 830.282,2960.36 830.293,2960.34 C 830.302,2960.33 830.318,2960.31 830.337,2960.3 C 830.353,2960.29 830.374,2960.29 830.397,2960.29 L 830.87,2960.34 C 830.93,2960.35 830.99,2960.34 831.04,2960.32 C 831.093,2960.3 831.139,2960.27 831.176,2960.23 C 831.18,2960.23 831.183,2960.22 831.185,2960.22 C 831.187,2960.22 831.187,2960.22 831.19,2960.21 C 831.222,2960.18 831.245,2960.15 831.261,2960.1 C 831.277,2960.06 831.286,2960.01 831.286,2959.96 C 831.286,2959.9 831.275,2959.84 831.254,2959.79 C 831.231,2959.74 831.201,2959.69 831.164,2959.65 C 831.125,2959.61 831.082,2959.57 831.033,2959.55 C 830.98,2959.52 830.928,2959.5 830.87,2959.5 L 830.459,2959.46 C 830.401,2959.45 830.346,2959.45 830.298,2959.47 Z M 831.691,2959.61 C 831.649,2959.62 831.613,2959.64 831.58,2959.67 C 831.546,2959.7 831.521,2959.74 831.505,2959.78 C 831.486,2959.82 831.475,2959.86 831.475,2959.92 L 831.475,2960.53 C 831.475,2960.58 831.486,2960.63 831.505,2960.67 C 831.521,2960.72 831.546,2960.76 831.58,2960.8 C 831.613,2960.83 831.649,2960.86 831.691,2960.88 C 831.734,2960.91 831.78,2960.92 831.829,2960.92 L 832.792,2961.02 L 832.792,2960.78 L 831.829,2960.68 C 831.808,2960.68 831.787,2960.68 831.769,2960.66 C 831.753,2960.65 831.737,2960.64 831.725,2960.62 C 831.714,2960.6 831.709,2960.58 831.709,2960.55 L 831.709,2960.43 L 832.557,2960.51 L 832.557,2960.28 L 831.709,2960.19 L 831.709,2959.94 C 831.709,2959.92 831.714,2959.9 831.725,2959.88 C 831.737,2959.86 831.753,2959.85 831.769,2959.84 C 831.787,2959.83 831.808,2959.83 831.829,2959.83 L 832.792,2959.92 L 832.792,2959.68 L 831.829,2959.59 L 831.757,2959.59 C 831.734,2959.6 831.711,2959.6 831.691,2959.61 Z M 832.978,2959.7 L 832.978,2961.03 L 833.81,2961.12 C 833.858,2961.12 833.904,2961.12 833.948,2961.1 C 833.992,2961.09 834.029,2961.06 834.058,2961.04 C 834.093,2961.01 834.118,2960.97 834.137,2960.93 C 834.153,2960.89 834.164,2960.84 834.164,2960.79 C 834.164,2960.74 834.155,2960.7 834.137,2960.65 C 834.121,2960.61 834.095,2960.57 834.063,2960.53 C 834.033,2960.5 833.996,2960.47 833.955,2960.45 C 833.925,2960.43 833.891,2960.41 833.856,2960.41 L 834.042,2960.04 L 834.164,2959.82 L 833.9,2959.79 L 833.778,2960.02 L 833.654,2960.26 L 833.647,2960.27 C 833.626,2960.3 833.599,2960.32 833.564,2960.34 C 833.53,2960.36 833.493,2960.37 833.449,2960.36 L 833.213,2960.34 L 833.213,2959.72 L 832.978,2959.7 Z M 834.355,2959.84 L 834.355,2961.17 L 834.589,2961.2 L 834.589,2959.86 L 834.355,2959.84 Z M 834.994,2959.93 C 834.953,2959.95 834.914,2959.97 834.884,2960 C 834.849,2960.03 834.824,2960.06 834.808,2960.11 C 834.789,2960.15 834.778,2960.19 834.778,2960.24 L 834.778,2960.86 C 834.778,2960.91 834.789,2960.95 834.808,2961 C 834.824,2961.04 834.849,2961.08 834.884,2961.12 C 834.914,2961.16 834.953,2961.19 834.994,2961.21 C 835.038,2961.23 835.084,2961.25 835.132,2961.25 L 836.095,2961.34 L 836.095,2961.11 L 835.132,2961.01 C 835.111,2961.01 835.091,2961 835.072,2960.99 C 835.056,2960.98 835.04,2960.96 835.029,2960.94 C 835.017,2960.92 835.015,2960.9 835.012,2960.88 L 835.012,2960.75 L 835.861,2960.84 L 835.861,2960.6 L 835.012,2960.51 L 835.012,2960.26 C 835.015,2960.24 835.017,2960.22 835.029,2960.2 C 835.04,2960.19 835.056,2960.18 835.072,2960.17 C 835.091,2960.16 835.111,2960.15 835.132,2960.16 L 836.095,2960.25 L 836.095,2960.01 L 835.132,2959.92 C 835.084,2959.91 835.038,2959.92 834.994,2959.93 Z M 836.539,2960.09 C 836.49,2960.11 836.445,2960.13 836.405,2960.17 C 836.369,2960.2 836.339,2960.24 836.318,2960.29 C 836.295,2960.34 836.286,2960.39 836.286,2960.45 L 836.52,2960.47 C 836.52,2960.44 836.53,2960.41 836.546,2960.38 C 836.559,2960.36 836.582,2960.34 836.61,2960.32 C 836.638,2960.31 836.665,2960.31 836.702,2960.31 L 837.113,2960.35 C 837.146,2960.35 837.178,2960.37 837.205,2960.39 C 837.231,2960.4 837.251,2960.43 837.27,2960.45 C 837.286,2960.49 837.295,2960.52 837.295,2960.55 C 837.295,2960.58 837.286,2960.61 837.27,2960.64 C 837.251,2960.67 837.231,2960.68 837.205,2960.7 C 837.178,2960.72 837.146,2960.72 837.113,2960.72 L 836.64,2960.67 C 836.589,2960.66 836.546,2960.67 836.504,2960.68 C 836.461,2960.7 836.426,2960.72 836.392,2960.75 C 836.376,2960.76 836.362,2960.78 836.346,2960.8 C 836.327,2960.83 836.313,2960.86 836.3,2960.89 C 836.291,2960.92 836.286,2960.96 836.286,2960.99 L 836.286,2961 C 836.286,2961.05 836.295,2961.1 836.313,2961.15 C 836.332,2961.19 836.357,2961.23 836.387,2961.27 C 836.422,2961.3 836.458,2961.33 836.5,2961.36 C 836.543,2961.38 836.589,2961.39 836.64,2961.4 L 837.173,2961.45 L 837.242,2961.45 C 837.265,2961.45 837.288,2961.44 837.311,2961.44 C 837.355,2961.42 837.392,2961.4 837.424,2961.37 C 837.456,2961.34 837.481,2961.31 837.5,2961.26 C 837.518,2961.22 837.53,2961.18 837.53,2961.13 L 837.53,2961.12 L 837.295,2961.09 L 837.295,2961.1 C 837.293,2961.12 837.288,2961.15 837.277,2961.16 C 837.265,2961.18 837.251,2961.19 837.233,2961.2 C 837.215,2961.21 837.194,2961.21 837.173,2961.21 L 836.64,2961.16 C 836.617,2961.16 836.596,2961.15 836.578,2961.14 C 836.559,2961.12 836.546,2961.11 836.534,2961.09 C 836.525,2961.07 836.518,2961.05 836.518,2961.03 L 836.518,2961.02 C 836.518,2960.99 836.525,2960.97 836.534,2960.96 C 836.546,2960.94 836.559,2960.93 836.578,2960.92 C 836.596,2960.91 836.617,2960.9 836.64,2960.91 L 837.113,2960.95 L 837.201,2960.95 C 837.231,2960.95 837.256,2960.94 837.284,2960.93 C 837.336,2960.92 837.382,2960.89 837.419,2960.85 C 837.421,2960.84 837.426,2960.84 837.426,2960.84 C 837.428,2960.84 837.431,2960.83 837.433,2960.83 C 837.465,2960.8 837.488,2960.76 837.504,2960.72 C 837.52,2960.67 837.53,2960.63 837.53,2960.58 C 837.527,2960.51 837.516,2960.46 837.495,2960.41 C 837.474,2960.35 837.444,2960.31 837.405,2960.26 C 837.369,2960.22 837.325,2960.19 837.274,2960.16 C 837.224,2960.13 837.169,2960.12 837.113,2960.11 L 836.702,2960.07 C 836.645,2960.07 836.589,2960.07 836.539,2960.09 Z M 833.213,2960.57 L 833.81,2960.63 C 833.819,2960.63 833.826,2960.64 833.835,2960.64 C 833.842,2960.64 833.852,2960.65 833.858,2960.65 C 833.881,2960.66 833.898,2960.68 833.909,2960.7 C 833.923,2960.72 833.93,2960.74 833.93,2960.77 C 833.927,2960.79 833.925,2960.81 833.916,2960.82 C 833.909,2960.83 833.902,2960.85 833.895,2960.85 C 833.886,2960.86 833.877,2960.87 833.861,2960.87 C 833.847,2960.88 833.831,2960.88 833.81,2960.88 L 833.213,2960.82 L 833.213,2960.57 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_MINI_small_individuals--EYE_CANDY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='513.01 -3041.4 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='72.269' y2='0' gradientTransform='translate(557.086 2951.59) rotate(53.596) skewX(-8.88364)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='58.57' y2='0' gradientTransform='translate(544.749 2953.4) rotate(94.6184) skewX(1.35098)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.109' y2='0' gradientTransform='translate(557.065 3010.16) rotate(13.1253) skewX(-5.1414)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.791' y2='0' gradientTransform='translate(540.77 3016.19) rotate(-121.721) skewX(-8.15213)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.48' y2='0' gradientTransform='translate(586.07 3015.64) rotate(-85.7019) skewX(1.28529) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.571' y2='0' gradientTransform='translate(547.215 2980.15) rotate(180) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(571.338 2983.08) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 546.929,2944.52 L 546.929,3013.35 L 607.76,3016.63 C 607.803,3016.59 607.835,3016.53 607.835,3016.46 L 607.835,2951.46 L 546.929,2944.52 Z' stroke-width='8.031' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 546.929,2944.52 L 534.854,2954.38 L 534.848,3018.91 L 546.929,3013.35 L 546.929,2944.52 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 546.929,3013.35 L 534.848,3018.91 L 593.882,3021.64 L 607.63,3016.71 C 607.677,3016.69 607.724,3016.67 607.76,3016.63 L 546.929,3013.35 Z' stroke-width='1.028' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 546.626,3012.56 L 534.843,3018.1 L 534.841,3018.91 L 546.626,3013.49 L 546.626,3012.56 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.906' fill='%23000000'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 563.8,2982.5 L 563.792,2989.65 L 564.972,2989.77 L 564.979,2986.12 L 565.953,2987.18 L 566.83,2988.13 L 568.67,2990.15 L 570.422,2990.33 L 567.532,2987.16 L 570.405,2983.17 L 568.947,2983.02 L 566.655,2986.2 L 564.981,2984.39 L 564.981,2982.62 L 563.8,2982.5 Z M 571.007,2983.23 L 571.613,2984.57 L 574.375,2990.73 L 577.156,2985.14 L 577.759,2983.92 L 576.439,2983.79 L 575.83,2985 L 574.38,2987.92 L 572.933,2984.7 L 572.331,2983.37 L 571.007,2983.23 Z M 578.357,2983.98 L 578.367,2983.98 L 579.274,2985.35 L 580.895,2987.8 L 581.646,2988.92 L 582.548,2990.29 L 578.341,2989.86 L 578.339,2991.13 L 583.457,2991.65 L 584.939,2991.8 L 584.026,2990.43 L 582.383,2987.95 L 581.64,2986.83 L 580.746,2985.5 L 584.977,2985.93 L 584.978,2984.65 L 579.859,2984.13 L 579.851,2984.13 L 578.357,2983.98 Z M 586.989,2985.01 C 586.776,2985.09 586.583,2985.21 586.426,2985.37 C 586.26,2985.53 586.132,2985.72 586.045,2985.94 C 585.952,2986.17 585.906,2986.41 585.904,2986.68 L 585.898,2989.97 C 585.898,2990.24 585.943,2990.49 586.036,2990.73 C 586.126,2990.98 586.251,2991.19 586.419,2991.39 C 586.577,2991.58 586.768,2991.74 586.981,2991.86 C 587.196,2991.98 587.428,2992.05 587.675,2992.08 L 592.507,2992.57 L 592.507,2991.3 L 587.675,2990.8 C 587.562,2990.79 587.462,2990.75 587.37,2990.68 C 587.279,2990.62 587.211,2990.53 587.155,2990.43 C 587.101,2990.32 587.075,2990.21 587.075,2990.09 L 587.075,2989.43 L 591.328,2989.86 L 591.33,2988.58 L 587.075,2988.15 L 587.075,2986.8 C 587.075,2986.68 587.105,2986.57 587.16,2986.48 C 587.217,2986.39 587.285,2986.31 587.375,2986.26 C 587.469,2986.21 587.566,2986.2 587.681,2986.2 L 592.513,2986.7 L 592.516,2985.42 L 587.681,2984.93 C 587.439,2984.91 587.207,2984.93 586.989,2985.01 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 547.23,3013.02 L 546.626,3013.49 L 607.32,3016.82 L 607.63,3016.71 C 607.732,3016.68 607.835,3016.6 607.835,3016.46 L 607.835,3016.34 L 547.23,3013.02 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 546.626,3013.49 L 546.623,2944.76 L 546.929,2944.52 L 547.23,2944.56 L 547.23,3013.02 L 546.626,3013.49 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cg id='Group_4' fill-rule='nonzero' fill='%23000000'%3E%3Cg id='Group_5'%3E%3Cpath d='M 575.38,2979.18 L 575.38,2981.24 L 575.746,2981 L 576.404,2980.55 L 577.06,2981.13 L 577.425,2981.45 L 577.425,2979.38 L 577.06,2979.35 L 577.06,2980.66 L 576.701,2980.35 L 576.404,2980.09 L 576.105,2980.29 L 575.746,2980.53 L 575.746,2979.21 L 575.38,2979.18 Z M 577.718,2979.41 L 577.718,2981.48 L 578.084,2981.52 L 578.084,2979.45 L 577.718,2979.41 Z M 578.378,2979.48 L 578.378,2981.54 L 578.742,2981.3 L 580.059,2980.41 L 580.059,2981.72 L 580.423,2981.75 L 580.423,2979.69 L 580.059,2979.93 L 578.742,2980.82 L 578.742,2979.52 L 578.378,2979.48 Z M 580.716,2979.72 L 580.716,2981.79 L 581.082,2981.82 L 581.082,2979.76 L 580.716,2979.72 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.248'%3E%3Crect x='-2.64' y='-2.488' width='5.28' height='4.976' transform='translate(565.2 2951.91) rotate(90) skewX(-6.54919)' fill='%231880d9'/%3E%3Crect x='-2.639' y='-2.486' width='5.279' height='4.973' transform='translate(571.665 2952.65) rotate(90) skewX(-6.55288)' fill='%2313a875'/%3E%3Crect x='-2.64' y='-2.488' width='5.28' height='4.976' transform='translate(578.129 2953.39) rotate(90) skewX(-6.54919)' fill='%2387c74c'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(584.597 2954.13) rotate(90) skewX(-6.55103)' fill='%23fc5f9b'/%3E%3Crect x='-2.639' y='-2.487' width='5.279' height='4.975' transform='translate(591.061 2954.87) rotate(90) skewX(-6.55103)' fill='%234f34de'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.053' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 568.793,2957.65 L 568.761,2959.18 L 569.72,2959.28 L 569.724,2959.08 L 568.993,2958.99 L 569.002,2958.55 L 569.626,2958.62 L 569.63,2958.41 L 569.006,2958.34 L 569.016,2957.89 L 569.747,2957.97 L 569.752,2957.76 L 568.793,2957.65 Z M 570.327,2957.83 L 570.315,2958.45 L 569.847,2959.3 L 570.095,2959.33 L 570.424,2958.69 L 570.724,2959.4 L 570.972,2959.42 L 570.542,2958.48 L 570.555,2957.85 L 570.327,2957.83 Z M 571.211,2957.93 L 571.18,2959.45 L 572.139,2959.55 L 572.143,2959.35 L 571.412,2959.27 L 571.421,2958.82 L 572.045,2958.89 L 572.048,2958.69 L 571.424,2958.62 L 571.435,2958.16 L 572.165,2958.24 L 572.17,2958.03 L 571.211,2957.93 Z M 573.253,2958.18 C 573.189,2958.2 573.132,2958.23 573.083,2958.28 C 573.045,2958.31 573.017,2958.35 572.996,2958.38 C 572.974,2958.42 572.957,2958.46 572.947,2958.51 C 572.936,2958.56 572.93,2958.61 572.926,2958.67 C 572.921,2958.73 572.919,2958.8 572.918,2958.88 C 572.916,2958.96 572.916,2959.03 572.917,2959.09 C 572.918,2959.15 572.923,2959.21 572.932,2959.26 C 572.94,2959.3 572.954,2959.35 572.975,2959.39 C 572.994,2959.43 573.021,2959.48 573.057,2959.52 C 573.105,2959.57 573.159,2959.62 573.223,2959.65 C 573.287,2959.68 573.36,2959.7 573.441,2959.72 C 573.534,2959.72 573.617,2959.72 573.693,2959.69 C 573.767,2959.66 573.829,2959.62 573.88,2959.55 C 573.931,2959.49 573.966,2959.41 573.987,2959.31 L 573.755,2959.28 C 573.742,2959.33 573.723,2959.38 573.695,2959.41 C 573.668,2959.45 573.633,2959.48 573.592,2959.49 C 573.55,2959.51 573.501,2959.52 573.446,2959.51 C 573.4,2959.51 573.359,2959.49 573.323,2959.47 C 573.286,2959.45 573.253,2959.42 573.226,2959.39 C 573.208,2959.37 573.193,2959.35 573.181,2959.32 C 573.17,2959.3 573.161,2959.26 573.156,2959.23 C 573.15,2959.19 573.146,2959.15 573.145,2959.1 C 573.144,2959.05 573.144,2958.98 573.145,2958.91 C 573.148,2958.83 573.15,2958.77 573.153,2958.72 C 573.157,2958.67 573.161,2958.62 573.17,2958.59 C 573.177,2958.55 573.186,2958.53 573.199,2958.5 C 573.211,2958.48 573.226,2958.46 573.246,2958.44 C 573.274,2958.41 573.308,2958.4 573.345,2958.38 C 573.383,2958.37 573.424,2958.37 573.47,2958.37 C 573.524,2958.38 573.573,2958.4 573.615,2958.42 C 573.655,2958.45 573.689,2958.48 573.716,2958.53 C 573.742,2958.57 573.761,2958.62 573.771,2958.67 L 574,2958.7 C 573.984,2958.59 573.951,2958.5 573.904,2958.43 C 573.855,2958.36 573.795,2958.3 573.722,2958.25 C 573.649,2958.21 573.565,2958.18 573.473,2958.17 C 573.391,2958.16 573.318,2958.16 573.253,2958.18 Z M 574.112,2958.25 L 574.631,2959.84 L 574.815,2959.86 L 575.396,2958.4 L 575.154,2958.37 L 575.045,2958.66 L 574.452,2958.6 L 574.355,2958.28 L 574.112,2958.25 Z M 575.611,2958.42 L 575.578,2959.94 L 575.787,2959.97 L 576.504,2958.98 L 576.482,2960.04 L 576.709,2960.07 L 576.74,2958.55 L 576.531,2958.53 L 575.816,2959.52 L 575.838,2958.45 L 575.611,2958.42 Z M 577.133,2958.59 L 577.102,2960.11 L 577.628,2960.17 C 577.722,2960.18 577.804,2960.18 577.873,2960.16 C 577.944,2960.13 578.005,2960.09 578.059,2960.03 C 578.096,2959.99 578.122,2959.94 578.14,2959.88 C 578.157,2959.83 578.169,2959.77 578.175,2959.7 C 578.18,2959.63 578.183,2959.56 578.184,2959.47 C 578.186,2959.39 578.186,2959.32 578.184,2959.25 C 578.182,2959.18 578.172,2959.11 578.157,2959.05 C 578.142,2959 578.118,2958.94 578.082,2958.89 C 578.032,2958.82 577.972,2958.76 577.903,2958.73 C 577.835,2958.69 577.754,2958.66 577.661,2958.65 L 577.133,2958.59 Z M 574.516,2958.8 L 574.977,2958.85 L 574.735,2959.5 L 574.516,2958.8 Z M 578.771,2958.78 L 578.758,2959.4 L 578.291,2960.25 L 578.539,2960.28 L 578.867,2959.64 L 579.167,2960.35 L 579.415,2960.38 L 578.985,2959.43 L 578.998,2958.8 L 578.771,2958.78 Z M 577.357,2958.82 L 577.631,2958.85 C 577.685,2958.86 577.733,2958.87 577.776,2958.9 C 577.819,2958.92 577.855,2958.95 577.886,2958.99 C 577.909,2959.02 577.926,2959.06 577.937,2959.1 C 577.948,2959.14 577.954,2959.19 577.957,2959.25 C 577.959,2959.3 577.959,2959.37 577.957,2959.45 C 577.955,2959.52 577.953,2959.59 577.948,2959.65 C 577.944,2959.7 577.936,2959.75 577.923,2959.79 C 577.91,2959.83 577.892,2959.87 577.867,2959.89 C 577.835,2959.92 577.797,2959.95 577.754,2959.96 C 577.71,2959.97 577.662,2959.97 577.608,2959.97 L 577.334,2959.93 L 577.357,2958.82 Z M 580.352,2958.96 C 580.291,2958.97 580.232,2958.98 580.179,2959.01 C 580.124,2959.03 580.073,2959.06 580.023,2959.11 L 580.17,2959.27 C 580.226,2959.23 580.285,2959.19 580.35,2959.18 C 580.414,2959.17 580.483,2959.16 580.559,2959.17 C 580.659,2959.18 580.735,2959.21 580.787,2959.26 C 580.84,2959.3 580.865,2959.37 580.865,2959.44 C 580.864,2959.48 580.859,2959.51 580.849,2959.53 C 580.84,2959.56 580.823,2959.58 580.802,2959.59 C 580.783,2959.61 580.759,2959.62 580.733,2959.63 C 580.706,2959.63 580.674,2959.64 580.637,2959.64 L 580.458,2959.65 C 580.397,2959.65 580.342,2959.66 580.294,2959.67 C 580.247,2959.68 580.206,2959.71 580.173,2959.73 C 580.136,2959.76 580.107,2959.8 580.087,2959.85 C 580.067,2959.9 580.057,2959.95 580.056,2960.02 C 580.054,2960.1 580.073,2960.18 580.111,2960.25 C 580.15,2960.33 580.206,2960.38 580.281,2960.43 C 580.355,2960.47 580.444,2960.5 580.548,2960.52 C 580.615,2960.52 580.675,2960.52 580.729,2960.52 C 580.785,2960.51 580.835,2960.5 580.882,2960.48 C 580.929,2960.46 580.974,2960.43 581.018,2960.4 L 580.878,2960.23 C 580.83,2960.27 580.779,2960.3 580.724,2960.31 C 580.668,2960.32 580.608,2960.32 580.544,2960.31 C 580.485,2960.31 580.435,2960.29 580.395,2960.27 C 580.355,2960.24 580.325,2960.21 580.305,2960.17 C 580.285,2960.14 580.276,2960.09 580.277,2960.05 C 580.277,2960.02 580.282,2959.99 580.291,2959.97 C 580.299,2959.95 580.314,2959.93 580.334,2959.91 C 580.354,2959.9 580.376,2959.89 580.401,2959.88 C 580.427,2959.87 580.46,2959.86 580.501,2959.86 L 580.681,2959.85 C 580.726,2959.85 580.765,2959.85 580.799,2959.84 C 580.834,2959.84 580.864,2959.83 580.889,2959.82 C 580.915,2959.8 580.939,2959.79 580.961,2959.77 C 581.002,2959.74 581.033,2959.7 581.055,2959.65 C 581.076,2959.6 581.088,2959.54 581.09,2959.47 C 581.091,2959.38 581.069,2959.3 581.025,2959.22 C 580.981,2959.15 580.918,2959.1 580.838,2959.05 C 580.758,2959.01 580.666,2958.98 580.559,2958.97 C 580.485,2958.96 580.415,2958.96 580.352,2958.96 Z M 581.404,2959.07 L 581.373,2960.6 L 581.6,2960.62 L 581.632,2959.1 L 581.404,2959.07 Z M 582.025,2959.14 L 581.992,2960.67 L 582.951,2960.77 L 582.956,2960.57 L 582.224,2960.48 L 582.233,2960.04 L 582.857,2960.11 L 582.862,2959.91 L 582.238,2959.83 L 582.247,2959.38 L 582.979,2959.46 L 582.984,2959.25 L 582.025,2959.14 Z M 583.296,2959.29 L 583.264,2960.81 L 583.845,2960.87 C 583.94,2960.88 584.024,2960.87 584.093,2960.84 C 584.164,2960.81 584.219,2960.77 584.258,2960.71 C 584.298,2960.64 584.318,2960.57 584.321,2960.48 C 584.322,2960.41 584.309,2960.34 584.285,2960.29 C 584.259,2960.23 584.225,2960.18 584.18,2960.14 C 584.136,2960.1 584.087,2960.07 584.03,2960.05 L 584.389,2959.41 L 584.124,2959.38 L 583.794,2959.99 L 583.509,2959.95 L 583.523,2959.31 L 583.296,2959.29 Z M 584.676,2959.44 L 584.644,2960.97 L 584.872,2960.99 L 584.903,2959.47 L 584.676,2959.44 Z M 585.296,2959.51 L 585.265,2961.03 L 586.224,2961.14 L 586.227,2960.93 L 585.497,2960.85 L 585.506,2960.41 L 586.13,2960.48 L 586.133,2960.27 L 585.509,2960.2 L 585.519,2959.74 L 586.25,2959.83 L 586.255,2959.62 L 585.296,2959.51 Z M 586.76,2959.68 C 586.697,2959.69 586.639,2959.7 586.586,2959.73 C 586.531,2959.75 586.48,2959.78 586.43,2959.83 L 586.577,2960 C 586.633,2959.95 586.692,2959.92 586.756,2959.9 C 586.821,2959.89 586.891,2959.88 586.966,2959.89 C 587.066,2959.9 587.142,2959.93 587.194,2959.98 C 587.247,2960.03 587.272,2960.09 587.271,2960.16 C 587.271,2960.2 587.265,2960.23 587.256,2960.25 C 587.245,2960.28 587.23,2960.3 587.209,2960.32 C 587.19,2960.33 587.167,2960.34 587.14,2960.35 C 587.113,2960.36 587.081,2960.36 587.042,2960.36 L 586.865,2960.37 C 586.804,2960.37 586.749,2960.38 586.702,2960.39 C 586.654,2960.41 586.613,2960.43 586.58,2960.46 C 586.543,2960.49 586.514,2960.52 586.494,2960.57 C 586.474,2960.62 586.464,2960.67 586.463,2960.74 C 586.461,2960.83 586.48,2960.9 586.518,2960.97 C 586.557,2961.05 586.613,2961.1 586.688,2961.15 C 586.762,2961.2 586.85,2961.22 586.956,2961.24 C 587.022,2961.24 587.082,2961.24 587.136,2961.24 C 587.191,2961.23 587.242,2961.22 587.289,2961.2 C 587.336,2961.18 587.381,2961.15 587.425,2961.12 L 587.285,2960.96 C 587.237,2960.99 587.186,2961.02 587.131,2961.03 C 587.075,2961.04 587.015,2961.04 586.951,2961.03 C 586.892,2961.03 586.842,2961.01 586.802,2960.99 C 586.762,2960.96 586.732,2960.93 586.712,2960.89 C 586.692,2960.86 586.683,2960.81 586.683,2960.77 C 586.684,2960.74 586.689,2960.72 586.698,2960.69 C 586.706,2960.67 586.721,2960.65 586.741,2960.63 C 586.76,2960.62 586.782,2960.61 586.808,2960.6 C 586.834,2960.59 586.866,2960.59 586.907,2960.58 L 587.088,2960.58 C 587.133,2960.57 587.172,2960.57 587.206,2960.56 C 587.241,2960.56 587.27,2960.55 587.296,2960.54 C 587.322,2960.53 587.346,2960.51 587.368,2960.49 C 587.409,2960.46 587.44,2960.42 587.462,2960.37 C 587.483,2960.32 587.495,2960.26 587.497,2960.19 C 587.498,2960.1 587.476,2960.02 587.432,2959.95 C 587.388,2959.88 587.325,2959.82 587.245,2959.77 C 587.165,2959.73 587.073,2959.7 586.966,2959.69 C 586.892,2959.68 586.822,2959.68 586.76,2959.68 Z M 583.506,2960.15 L 583.843,2960.19 C 583.894,2960.2 583.938,2960.21 583.976,2960.23 C 584.013,2960.26 584.042,2960.28 584.063,2960.32 C 584.084,2960.36 584.093,2960.41 584.093,2960.45 C 584.091,2960.51 584.08,2960.55 584.058,2960.58 C 584.036,2960.61 584.005,2960.64 583.967,2960.65 C 583.929,2960.67 583.884,2960.67 583.833,2960.67 L 583.495,2960.63 L 583.506,2960.15 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_MINI_small_individuals--ELEMENTS {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='18.437 -3041.4 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='72.268' y2='0' gradientTransform='translate(59.029 2951.59) rotate(53.5966) skewX(-8.883)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='58.57' y2='0' gradientTransform='translate(46.691 2953.4) rotate(94.6174) skewX(1.34995)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='27.109' y2='0' gradientTransform='translate(59.007 3010.16) rotate(13.1253) skewX(-5.13674)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.789' y2='0' gradientTransform='translate(42.712 3016.18) rotate(-121.698) skewX(-8.12856)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.479' y2='0' gradientTransform='translate(88.012 3015.64) rotate(-85.5738) skewX(1.41868) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.57' y2='0' gradientTransform='translate(49.157 2980.15) rotate(180) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(76.765 2983.07) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 48.873,2944.52 L 48.873,3013.35 L 109.702,3016.63 C 109.745,3016.59 109.777,3016.53 109.777,3016.46 L 109.777,2951.46 L 48.873,2944.52 Z' stroke-width='8.031' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 48.873,2944.52 L 36.797,2954.37 L 36.79,3018.91 L 48.873,3013.35 L 48.873,2944.52 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 48.873,3013.35 L 36.79,3018.91 L 95.824,3021.63 L 109.572,3016.71 C 109.619,3016.69 109.666,3016.67 109.702,3016.63 L 48.873,3013.35 Z' stroke-width='1.028' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 48.568,3012.56 L 36.787,3018.1 L 36.784,3018.91 L 48.568,3013.49 L 48.568,3012.56 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.906' fill='%23000000'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 65.743,2982.5 L 65.734,2989.65 L 66.915,2989.77 L 66.921,2986.12 L 67.896,2987.18 L 68.772,2988.13 L 70.613,2990.15 L 72.364,2990.33 L 69.475,2987.16 L 72.347,2983.17 L 70.89,2983.02 L 68.597,2986.2 L 66.923,2984.39 L 66.923,2982.62 L 65.743,2982.5 Z M 72.95,2983.23 L 73.556,2984.57 L 76.318,2990.73 L 79.099,2985.14 L 79.701,2983.92 L 78.382,2983.79 L 77.774,2985 L 76.322,2987.92 L 74.875,2984.7 L 74.273,2983.37 L 72.95,2983.23 Z M 80.299,2983.98 L 80.31,2983.98 L 81.216,2985.35 L 82.838,2987.8 L 83.589,2988.92 L 84.491,2990.29 L 80.284,2989.85 L 80.282,2991.13 L 85.4,2991.65 L 86.881,2991.8 L 85.968,2990.43 L 84.325,2987.95 L 83.582,2986.83 L 82.689,2985.5 L 86.919,2985.93 L 86.921,2984.65 L 81.802,2984.13 L 81.792,2984.13 L 80.299,2983.98 Z M 88.932,2985.01 C 88.719,2985.09 88.525,2985.21 88.368,2985.37 C 88.202,2985.53 88.074,2985.72 87.988,2985.94 C 87.894,2986.17 87.848,2986.41 87.847,2986.68 L 87.84,2989.97 C 87.84,2990.24 87.885,2990.49 87.978,2990.73 C 88.068,2990.97 88.194,2991.19 88.361,2991.39 C 88.519,2991.58 88.71,2991.74 88.923,2991.86 C 89.139,2991.98 89.37,2992.05 89.617,2992.08 L 94.449,2992.57 L 94.449,2991.3 L 89.617,2990.8 C 89.504,2990.79 89.405,2990.75 89.313,2990.68 C 89.222,2990.62 89.153,2990.53 89.098,2990.43 C 89.043,2990.32 89.017,2990.21 89.017,2990.09 L 89.017,2989.42 L 93.271,2989.86 L 93.273,2988.58 L 89.017,2988.15 L 89.017,2986.8 C 89.017,2986.68 89.047,2986.57 89.102,2986.48 C 89.16,2986.39 89.228,2986.31 89.317,2986.26 C 89.41,2986.21 89.509,2986.2 89.623,2986.2 L 94.456,2986.7 L 94.458,2985.42 L 89.623,2984.93 C 89.381,2984.91 89.149,2984.93 88.932,2985.01 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='2.906' fill='%23000000'%3E%3Cg id='Group_5'%3E%3Cpath d='M 66.151,2974.53 L 66.149,2975.91 L 66.994,2976 C 67.045,2976.01 67.096,2976 67.136,2975.99 C 67.177,2975.97 67.219,2975.95 67.249,2975.92 L 67.251,2975.92 C 67.287,2975.88 67.311,2975.85 67.33,2975.81 C 67.347,2975.76 67.359,2975.71 67.359,2975.66 C 67.359,2975.61 67.349,2975.56 67.332,2975.52 C 67.315,2975.47 67.292,2975.43 67.257,2975.39 C 67.228,2975.35 67.189,2975.32 67.149,2975.3 C 67.115,2975.28 67.081,2975.26 67.045,2975.26 C 67.04,2975.26 67.036,2975.26 67.034,2975.26 L 67.034,2975.26 L 66.391,2975.19 L 66.394,2974.55 L 66.151,2974.53 Z M 67.549,2974.67 L 67.547,2976.05 L 68.396,2976.15 C 68.449,2976.15 68.493,2976.15 68.536,2976.13 C 68.581,2976.11 68.615,2976.09 68.649,2976.06 C 68.683,2976.03 68.707,2975.99 68.732,2975.95 C 68.747,2975.91 68.755,2975.86 68.758,2975.81 C 68.755,2975.76 68.747,2975.71 68.734,2975.66 C 68.709,2975.62 68.688,2975.58 68.655,2975.54 C 68.621,2975.5 68.589,2975.47 68.547,2975.45 C 68.513,2975.43 68.479,2975.41 68.444,2975.4 L 68.634,2975.03 L 68.758,2974.79 L 68.491,2974.76 L 68.366,2974.99 L 68.238,2975.25 L 68.232,2975.26 C 68.211,2975.29 68.181,2975.32 68.147,2975.33 C 68.108,2975.35 68.072,2975.36 68.03,2975.35 L 67.787,2975.33 L 67.787,2974.69 L 67.549,2974.67 Z M 69.313,2974.91 C 69.236,2974.93 69.164,2974.98 69.104,2975.03 C 69.038,2975.09 68.989,2975.16 68.957,2975.24 C 68.923,2975.32 68.906,2975.41 68.902,2975.51 C 68.906,2975.6 68.923,2975.69 68.956,2975.78 C 68.989,2975.87 69.038,2975.95 69.102,2976.01 C 69.162,2976.09 69.234,2976.15 69.311,2976.19 C 69.394,2976.23 69.481,2976.26 69.574,2976.27 C 69.666,2976.28 69.756,2976.27 69.839,2976.24 C 69.915,2976.21 69.99,2976.17 70.049,2976.11 C 70.113,2976.06 70.162,2975.99 70.194,2975.91 C 70.228,2975.83 70.247,2975.74 70.247,2975.64 C 70.247,2975.55 70.23,2975.45 70.194,2975.37 C 70.162,2975.28 70.115,2975.21 70.052,2975.13 C 69.992,2975.06 69.917,2975 69.841,2974.96 C 69.756,2974.92 69.668,2974.89 69.577,2974.88 L 69.442,2974.88 C 69.396,2974.89 69.355,2974.89 69.313,2974.91 Z M 70.943,2975.02 L 70.94,2976.16 L 70.391,2976.1 L 70.391,2976.35 L 71.73,2976.49 L 71.73,2976.24 L 71.185,2976.19 L 71.187,2975.04 L 70.943,2975.02 Z M 69.577,2975.13 C 69.634,2975.13 69.692,2975.15 69.745,2975.18 C 69.8,2975.21 69.845,2975.25 69.881,2975.29 C 69.92,2975.33 69.951,2975.39 69.977,2975.45 C 69.995,2975.5 70.009,2975.56 70.009,2975.62 C 70.009,2975.68 69.995,2975.74 69.974,2975.79 C 69.951,2975.84 69.92,2975.89 69.881,2975.92 C 69.842,2975.96 69.798,2975.99 69.743,2976 C 69.689,2976.02 69.634,2976.03 69.574,2976.02 C 69.517,2976.01 69.459,2976 69.407,2975.97 C 69.355,2975.94 69.306,2975.9 69.268,2975.86 C 69.232,2975.81 69.201,2975.76 69.177,2975.7 C 69.16,2975.65 69.147,2975.59 69.147,2975.53 C 69.147,2975.47 69.16,2975.41 69.177,2975.36 C 69.201,2975.31 69.234,2975.26 69.271,2975.23 C 69.308,2975.19 69.357,2975.16 69.407,2975.15 C 69.459,2975.13 69.519,2975.12 69.577,2975.13 Z M 72.148,2975.18 C 72.109,2975.19 72.071,2975.21 72.034,2975.25 C 72.003,2975.28 71.977,2975.31 71.958,2975.36 C 71.941,2975.4 71.932,2975.45 71.932,2975.5 L 71.93,2976.14 C 71.932,2976.19 71.936,2976.24 71.955,2976.29 C 71.977,2976.33 72.001,2976.37 72.034,2976.41 C 72.068,2976.45 72.105,2976.48 72.148,2976.51 C 72.192,2976.53 72.239,2976.55 72.288,2976.55 L 73.271,2976.65 L 73.271,2976.41 L 72.288,2976.3 C 72.266,2976.3 72.245,2976.29 72.226,2976.28 C 72.211,2976.27 72.194,2976.25 72.183,2976.23 C 72.173,2976.21 72.167,2976.18 72.167,2976.16 L 72.167,2976.03 L 73.03,2976.12 L 73.03,2975.88 L 72.167,2975.78 L 72.171,2975.53 C 72.171,2975.5 72.173,2975.48 72.185,2975.46 C 72.196,2975.45 72.213,2975.43 72.229,2975.42 C 72.25,2975.41 72.269,2975.41 72.288,2975.41 L 73.273,2975.51 L 73.273,2975.26 L 72.29,2975.16 C 72.241,2975.16 72.194,2975.16 72.148,2975.18 Z M 73.849,2975.38 C 73.77,2975.4 73.703,2975.45 73.641,2975.5 C 73.577,2975.56 73.528,2975.63 73.494,2975.71 C 73.46,2975.79 73.441,2975.88 73.441,2975.97 C 73.441,2976.07 73.46,2976.16 73.494,2976.25 C 73.526,2976.34 73.575,2976.41 73.641,2976.49 C 73.703,2976.56 73.77,2976.61 73.849,2976.66 C 73.932,2976.7 74.02,2976.73 74.114,2976.74 L 74.781,2976.81 L 74.781,2976.56 L 74.114,2976.49 C 74.054,2976.48 73.996,2976.47 73.945,2976.44 C 73.894,2976.41 73.845,2976.37 73.805,2976.33 C 73.768,2976.28 73.739,2976.24 73.714,2976.18 C 73.697,2976.12 73.681,2976.06 73.681,2976 C 73.681,2975.94 73.697,2975.88 73.716,2975.83 C 73.739,2975.78 73.768,2975.73 73.807,2975.7 C 73.848,2975.66 73.896,2975.63 73.947,2975.62 C 73.996,2975.6 74.054,2975.59 74.116,2975.6 L 74.784,2975.67 L 74.784,2975.42 L 74.116,2975.35 L 73.979,2975.35 C 73.934,2975.35 73.894,2975.36 73.849,2975.38 Z M 66.391,2975.43 L 66.998,2975.49 C 67.008,2975.5 67.019,2975.5 67.025,2975.5 C 67.034,2975.5 67.04,2975.51 67.05,2975.51 C 67.07,2975.53 67.089,2975.54 67.104,2975.57 C 67.115,2975.59 67.119,2975.61 67.119,2975.64 C 67.119,2975.66 67.115,2975.68 67.108,2975.69 C 67.102,2975.71 67.091,2975.72 67.085,2975.72 C 67.077,2975.73 67.066,2975.74 67.053,2975.74 C 67.036,2975.75 67.021,2975.76 66.998,2975.75 L 66.391,2975.69 L 66.391,2975.43 Z M 75.526,2975.5 L 75.526,2976.64 L 74.975,2976.58 L 74.975,2976.83 L 76.318,2976.97 L 76.318,2976.72 L 75.767,2976.66 L 75.767,2975.52 L 75.526,2975.5 Z M 67.787,2975.58 L 68.396,2975.64 C 68.404,2975.64 68.413,2975.64 68.421,2975.64 C 68.432,2975.65 68.438,2975.65 68.449,2975.66 C 68.468,2975.67 68.485,2975.68 68.5,2975.71 C 68.513,2975.73 68.519,2975.76 68.519,2975.78 C 68.519,2975.8 68.513,2975.82 68.506,2975.84 C 68.5,2975.85 68.491,2975.86 68.481,2975.87 C 68.474,2975.88 68.462,2975.88 68.453,2975.89 C 68.436,2975.9 68.415,2975.9 68.396,2975.9 L 67.787,2975.83 L 67.787,2975.58 Z M 76.509,2975.6 L 76.507,2976.99 L 76.752,2977.01 L 76.754,2975.63 L 76.509,2975.6 Z M 77.553,2975.71 L 76.988,2976.79 L 76.863,2977.02 L 77.133,2977.05 L 77.256,2976.82 L 77.55,2976.25 L 77.842,2976.88 L 77.967,2977.14 L 78.233,2977.17 L 78.11,2976.91 L 77.553,2975.71 Z M 78.575,2975.84 C 78.532,2975.86 78.495,2975.88 78.463,2975.91 C 78.428,2975.94 78.401,2975.98 78.386,2976.02 C 78.365,2976.06 78.355,2976.11 78.355,2976.16 L 78.355,2976.8 C 78.355,2976.86 78.363,2976.9 78.384,2976.95 C 78.399,2977 78.426,2977.04 78.461,2977.08 C 78.492,2977.12 78.531,2977.15 78.573,2977.17 C 78.616,2977.2 78.665,2977.21 78.716,2977.22 L 79.693,2977.32 L 79.693,2977.07 L 78.716,2976.97 C 78.688,2976.97 78.669,2976.96 78.65,2976.95 C 78.633,2976.93 78.621,2976.92 78.608,2976.89 C 78.597,2976.88 78.59,2976.85 78.59,2976.83 L 78.59,2976.7 L 79.459,2976.79 L 79.459,2976.54 L 78.592,2976.45 L 78.592,2976.19 C 78.592,2976.17 78.6,2976.15 78.61,2976.13 C 78.621,2976.11 78.633,2976.09 78.654,2976.09 C 78.671,2976.08 78.691,2976.07 78.718,2976.07 L 79.695,2976.18 L 79.695,2975.93 L 78.718,2975.83 C 78.667,2975.82 78.618,2975.83 78.575,2975.84 Z M 80.818,2976.04 L 80.816,2977.43 L 81.663,2977.52 C 81.714,2977.53 81.761,2977.52 81.805,2977.5 C 81.851,2977.49 81.886,2977.47 81.92,2977.44 C 81.955,2977.4 81.978,2977.37 81.999,2977.32 C 82.014,2977.28 82.025,2977.23 82.025,2977.18 C 82.025,2977.13 82.016,2977.08 82.001,2977.04 C 81.982,2976.99 81.959,2976.95 81.927,2976.91 C 81.895,2976.88 81.861,2976.84 81.816,2976.82 C 81.786,2976.8 81.746,2976.79 81.712,2976.78 L 81.908,2976.4 L 82.027,2976.17 L 81.757,2976.14 L 81.638,2976.37 L 81.51,2976.62 L 81.503,2976.63 C 81.482,2976.66 81.453,2976.69 81.414,2976.71 C 81.38,2976.73 81.342,2976.73 81.302,2976.73 L 81.057,2976.7 L 81.059,2976.07 L 80.818,2976.04 Z M 82.444,2976.24 C 82.401,2976.26 82.361,2976.28 82.331,2976.31 C 82.297,2976.34 82.272,2976.38 82.253,2976.42 C 82.235,2976.47 82.224,2976.51 82.224,2976.57 L 82.224,2977.21 C 82.224,2977.26 82.234,2977.31 82.251,2977.35 C 82.269,2977.4 82.295,2977.44 82.328,2977.48 C 82.361,2977.52 82.399,2977.55 82.442,2977.58 C 82.487,2977.6 82.533,2977.61 82.583,2977.62 L 83.563,2977.72 L 83.563,2977.47 L 82.583,2977.37 C 82.563,2977.37 82.54,2977.36 82.521,2977.35 C 82.508,2977.33 82.491,2977.32 82.479,2977.3 C 82.468,2977.28 82.461,2977.25 82.461,2977.23 L 82.461,2977.1 L 83.325,2977.19 L 83.325,2976.94 L 82.463,2976.85 L 82.463,2976.59 C 82.463,2976.57 82.469,2976.55 82.48,2976.53 C 82.491,2976.51 82.508,2976.5 82.523,2976.49 C 82.542,2976.48 82.565,2976.48 82.583,2976.48 L 83.565,2976.58 L 83.565,2976.33 L 82.584,2976.23 C 82.535,2976.23 82.489,2976.23 82.444,2976.24 Z M 84.017,2976.41 C 83.968,2976.43 83.923,2976.46 83.883,2976.49 C 83.842,2976.53 83.815,2976.57 83.789,2976.62 C 83.772,2976.67 83.757,2976.73 83.757,2976.79 L 84.002,2976.81 C 84.002,2976.78 84.008,2976.74 84.023,2976.72 C 84.04,2976.69 84.061,2976.67 84.089,2976.66 C 84.116,2976.65 84.145,2976.64 84.182,2976.64 L 84.604,2976.68 C 84.637,2976.69 84.668,2976.7 84.697,2976.72 C 84.72,2976.74 84.747,2976.76 84.761,2976.8 C 84.778,2976.83 84.787,2976.86 84.787,2976.9 C 84.787,2976.93 84.778,2976.96 84.761,2976.99 C 84.747,2977.02 84.72,2977.03 84.697,2977.05 C 84.666,2977.06 84.637,2977.07 84.604,2977.07 L 84.116,2977.02 L 84.049,2977.02 C 84.023,2977.02 84.002,2977.02 83.981,2977.03 C 83.938,2977.04 83.904,2977.07 83.865,2977.09 C 83.853,2977.11 83.831,2977.13 83.818,2977.15 C 83.797,2977.18 83.784,2977.21 83.774,2977.25 C 83.763,2977.28 83.757,2977.32 83.757,2977.36 L 83.757,2977.36 C 83.757,2977.42 83.767,2977.46 83.784,2977.51 C 83.802,2977.56 83.827,2977.6 83.864,2977.64 C 83.9,2977.68 83.934,2977.71 83.978,2977.73 C 84.018,2977.76 84.068,2977.77 84.116,2977.78 L 84.661,2977.83 C 84.71,2977.84 84.757,2977.83 84.801,2977.82 C 84.847,2977.8 84.884,2977.78 84.921,2977.75 C 84.951,2977.72 84.978,2977.68 84.995,2977.64 C 85.017,2977.6 85.023,2977.55 85.023,2977.5 L 85.023,2977.49 L 84.785,2977.46 L 84.785,2977.47 C 84.785,2977.49 84.778,2977.51 84.768,2977.53 C 84.755,2977.55 84.742,2977.56 84.723,2977.57 C 84.706,2977.58 84.685,2977.59 84.661,2977.58 L 84.116,2977.53 C 84.095,2977.53 84.072,2977.51 84.055,2977.5 C 84.04,2977.49 84.023,2977.47 84.01,2977.45 C 84.002,2977.43 83.997,2977.41 83.997,2977.39 L 83.997,2977.38 C 83.997,2977.35 84.002,2977.34 84.01,2977.32 C 84.023,2977.3 84.04,2977.28 84.057,2977.28 C 84.072,2977.26 84.095,2977.26 84.116,2977.26 L 84.604,2977.31 L 84.693,2977.31 C 84.718,2977.31 84.749,2977.3 84.774,2977.3 C 84.832,2977.28 84.876,2977.25 84.914,2977.21 C 84.921,2977.2 84.923,2977.2 84.925,2977.2 C 84.927,2977.2 84.927,2977.19 84.932,2977.19 C 84.959,2977.16 84.983,2977.12 84.997,2977.07 C 85.018,2977.02 85.025,2976.97 85.025,2976.92 C 85.025,2976.86 85.015,2976.8 84.994,2976.74 C 84.974,2976.69 84.94,2976.64 84.903,2976.6 C 84.861,2976.55 84.819,2976.52 84.766,2976.49 C 84.715,2976.46 84.661,2976.44 84.604,2976.44 L 84.182,2976.39 C 84.122,2976.39 84.068,2976.39 84.017,2976.41 Z M 85.223,2976.5 L 85.217,2977.89 L 86.066,2977.98 C 86.116,2977.99 86.161,2977.98 86.204,2977.96 C 86.249,2977.95 86.287,2977.93 86.325,2977.9 L 86.325,2977.9 C 86.355,2977.86 86.382,2977.82 86.402,2977.78 C 86.417,2977.74 86.428,2977.69 86.428,2977.64 C 86.428,2977.59 86.421,2977.54 86.402,2977.49 C 86.385,2977.45 86.361,2977.4 86.33,2977.37 C 86.296,2977.33 86.261,2977.3 86.217,2977.28 C 86.187,2977.26 86.151,2977.24 86.114,2977.24 C 86.111,2977.24 86.106,2977.23 86.104,2977.23 L 86.104,2977.23 L 85.461,2977.17 L 85.461,2976.53 L 85.223,2976.5 Z M 86.624,2976.65 L 86.621,2978.04 L 86.855,2978.06 L 86.859,2976.67 L 86.624,2976.65 Z M 87.053,2976.69 L 87.051,2978.08 L 87.898,2978.16 C 87.949,2978.17 87.996,2978.16 88.04,2978.15 C 88.083,2978.14 88.116,2978.11 88.153,2978.08 C 88.187,2978.05 88.21,2978.01 88.23,2977.97 C 88.249,2977.93 88.257,2977.88 88.259,2977.83 C 88.257,2977.78 88.249,2977.73 88.232,2977.68 C 88.213,2977.64 88.189,2977.59 88.159,2977.56 C 88.128,2977.52 88.09,2977.49 88.047,2977.46 C 88.014,2977.45 87.981,2977.43 87.947,2977.42 L 88.138,2977.05 L 88.259,2976.81 L 87.993,2976.78 L 87.868,2977.02 L 87.741,2977.26 L 87.734,2977.28 C 87.713,2977.31 87.685,2977.34 87.649,2977.35 C 87.615,2977.37 87.574,2977.38 87.534,2977.38 L 87.293,2977.35 L 87.293,2976.71 L 87.053,2976.69 Z M 88.377,2976.83 L 88.5,2977.09 L 89.061,2978.29 L 89.623,2977.21 L 89.751,2976.97 L 89.48,2976.94 L 89.357,2977.18 L 89.061,2977.74 L 88.769,2977.12 L 88.645,2976.86 L 88.377,2976.83 Z M 81.057,2976.95 L 81.665,2977.02 C 81.676,2977.02 81.684,2977.02 81.691,2977.02 C 81.699,2977.02 81.708,2977.03 81.714,2977.03 C 81.735,2977.05 81.755,2977.06 81.771,2977.09 C 81.782,2977.11 81.791,2977.13 81.791,2977.16 C 81.791,2977.18 81.786,2977.2 81.776,2977.21 C 81.769,2977.23 81.757,2977.24 81.75,2977.24 C 81.742,2977.25 81.731,2977.26 81.721,2977.26 C 81.71,2977.26 81.701,2977.27 81.693,2977.27 L 81.663,2977.27 L 81.057,2977.21 L 81.057,2976.95 Z M 90.413,2977.04 L 90.413,2978.18 L 89.862,2978.13 L 89.86,2978.37 L 91.203,2978.51 L 91.203,2978.27 L 90.651,2978.2 L 90.653,2977.06 L 90.413,2977.04 Z M 91.76,2977.23 C 91.679,2977.26 91.611,2977.3 91.547,2977.36 C 91.488,2977.42 91.438,2977.49 91.4,2977.57 C 91.368,2977.65 91.349,2977.73 91.349,2977.83 C 91.349,2977.93 91.366,2978.02 91.4,2978.1 C 91.436,2978.19 91.486,2978.28 91.547,2978.34 C 91.609,2978.41 91.677,2978.47 91.758,2978.51 C 91.843,2978.56 91.93,2978.59 92.019,2978.6 C 92.117,2978.6 92.2,2978.6 92.281,2978.57 C 92.362,2978.54 92.437,2978.5 92.498,2978.44 C 92.558,2978.38 92.605,2978.32 92.639,2978.23 C 92.675,2978.15 92.692,2978.07 92.694,2977.97 C 92.692,2977.88 92.675,2977.78 92.641,2977.69 C 92.605,2977.61 92.558,2977.53 92.498,2977.46 C 92.441,2977.39 92.364,2977.33 92.283,2977.29 C 92.202,2977.25 92.119,2977.22 92.024,2977.21 L 91.888,2977.21 C 91.845,2977.21 91.805,2977.22 91.76,2977.23 Z M 92.839,2977.29 L 92.836,2978.68 L 93.684,2978.76 C 93.733,2978.77 93.779,2978.76 93.824,2978.75 C 93.869,2978.73 93.907,2978.71 93.941,2978.68 C 93.975,2978.65 93.998,2978.61 94.015,2978.57 C 94.034,2978.53 94.044,2978.48 94.044,2978.43 C 94.044,2978.38 94.034,2978.33 94.02,2978.28 C 94.001,2978.24 93.98,2978.2 93.943,2978.16 C 93.913,2978.12 93.875,2978.09 93.837,2978.06 C 93.799,2978.04 93.766,2978.03 93.728,2978.03 L 93.926,2977.65 L 94.045,2977.41 L 93.777,2977.39 L 93.658,2977.62 L 93.523,2977.87 L 93.52,2977.88 C 93.498,2977.91 93.473,2977.94 93.435,2977.96 C 93.398,2977.97 93.36,2977.98 93.315,2977.97 L 93.078,2977.95 L 93.078,2977.31 L 92.839,2977.29 Z M 85.459,2977.41 L 86.068,2977.47 C 86.076,2977.48 86.087,2977.48 86.095,2977.48 C 86.101,2977.49 86.111,2977.49 86.119,2977.49 L 86.119,2977.49 C 86.138,2977.51 86.157,2977.53 86.17,2977.55 C 86.184,2977.57 86.189,2977.59 86.192,2977.62 C 86.189,2977.64 86.187,2977.66 86.178,2977.67 C 86.168,2977.69 86.161,2977.7 86.153,2977.7 C 86.145,2977.71 86.136,2977.72 86.121,2977.72 C 86.106,2977.73 86.091,2977.73 86.068,2977.73 L 85.459,2977.67 L 85.459,2977.41 Z M 92.024,2977.45 C 92.084,2977.46 92.138,2977.48 92.19,2977.51 C 92.24,2977.54 92.287,2977.57 92.326,2977.62 C 92.366,2977.66 92.398,2977.72 92.42,2977.77 C 92.447,2977.83 92.454,2977.89 92.454,2977.95 C 92.454,2978.01 92.445,2978.06 92.42,2978.11 C 92.398,2978.17 92.364,2978.22 92.323,2978.25 C 92.286,2978.28 92.24,2978.32 92.19,2978.33 C 92.138,2978.35 92.081,2978.35 92.019,2978.35 C 91.96,2978.34 91.904,2978.32 91.853,2978.3 C 91.805,2978.27 91.756,2978.23 91.715,2978.19 C 91.675,2978.14 91.645,2978.09 91.623,2978.03 C 91.6,2977.98 91.592,2977.92 91.59,2977.86 C 91.592,2977.79 91.6,2977.74 91.623,2977.68 C 91.645,2977.63 91.675,2977.59 91.715,2977.55 C 91.756,2977.52 91.805,2977.49 91.856,2977.47 C 91.907,2977.45 91.96,2977.45 92.024,2977.45 Z M 87.293,2977.6 L 87.898,2977.66 C 87.908,2977.66 87.915,2977.67 87.923,2977.67 C 87.931,2977.67 87.941,2977.67 87.949,2977.68 C 87.972,2977.69 87.989,2977.71 88,2977.73 C 88.014,2977.76 88.022,2977.78 88.022,2977.8 C 88.022,2977.83 88.014,2977.85 88.009,2977.86 C 88,2977.87 87.993,2977.88 87.985,2977.89 C 87.977,2977.9 87.966,2977.9 87.951,2977.91 C 87.939,2977.92 87.917,2977.92 87.898,2977.92 L 87.293,2977.86 L 87.293,2977.6 Z M 93.078,2978.2 L 93.684,2978.27 C 93.695,2978.27 93.703,2978.27 93.711,2978.27 C 93.719,2978.28 93.726,2978.28 93.733,2978.28 C 93.756,2978.29 93.773,2978.31 93.788,2978.33 C 93.799,2978.35 93.805,2978.37 93.805,2978.4 C 93.802,2978.42 93.799,2978.44 93.794,2978.46 C 93.788,2978.47 93.777,2978.48 93.768,2978.49 C 93.762,2978.5 93.749,2978.5 93.737,2978.51 C 93.724,2978.52 93.707,2978.52 93.684,2978.52 L 93.078,2978.45 L 93.078,2978.2 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 49.172,3013.02 L 48.568,3013.49 L 109.262,3016.82 L 109.572,3016.71 C 109.675,3016.68 109.777,3016.6 109.777,3016.46 L 109.777,3016.34 L 49.172,3013.02 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 48.568,3013.49 L 48.566,2944.76 L 48.873,2944.52 L 49.172,2944.56 L 49.172,3013.02 L 48.568,3013.49 Z' stroke-width='5.765' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(67.147 2951.91) rotate(90) skewX(-6.52072)' fill='%2339332f' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Crect x='-2.638' y='-2.485' width='5.277' height='4.97' transform='translate(73.611 2952.64) rotate(90) skewX(-6.5244)' fill='%23b6b6b3' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Crect x='-2.641' y='-2.486' width='5.282' height='4.973' transform='translate(80.076 2953.38) rotate(90) skewX(-6.52072)' fill='%23dcd5c6' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Crect x='-2.638' y='-2.487' width='5.277' height='4.975' transform='translate(86.542 2954.12) rotate(90) skewX(-6.48673)' fill='%23ccb7b3' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(93.007 2954.86) rotate(90) skewX(-6.52072)' fill='%23d8b590' stroke-width='0.249' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Cg id='Group_6' fill-rule='nonzero' stroke-linejoin='round' stroke-linecap='round' stroke-width='0.334' fill='%23000000'%3E%3Cpath d='M 69.689,2957.61 C 69.644,2957.63 69.604,2957.65 69.571,2957.68 C 69.536,2957.71 69.511,2957.75 69.492,2957.79 C 69.472,2957.84 69.461,2957.89 69.461,2957.94 L 69.461,2958.59 C 69.461,2958.64 69.472,2958.69 69.492,2958.74 C 69.511,2958.78 69.536,2958.83 69.571,2958.87 C 69.604,2958.91 69.644,2958.94 69.689,2958.96 C 69.735,2958.98 69.783,2959 69.834,2959.01 L 70.849,2959.12 L 70.849,2958.86 L 69.834,2958.76 C 69.81,2958.75 69.789,2958.74 69.77,2958.73 C 69.751,2958.72 69.737,2958.7 69.726,2958.68 C 69.715,2958.66 69.708,2958.64 69.708,2958.61 L 69.708,2958.48 L 70.6,2958.58 L 70.6,2958.33 L 69.708,2958.23 L 69.708,2957.97 C 69.708,2957.94 69.715,2957.92 69.726,2957.9 C 69.737,2957.88 69.751,2957.87 69.77,2957.86 C 69.789,2957.85 69.81,2957.85 69.834,2957.85 L 70.849,2957.96 L 70.849,2957.71 L 69.834,2957.6 C 69.783,2957.59 69.735,2957.6 69.689,2957.61 Z M 71.294,2957.8 C 71.249,2957.82 71.211,2957.84 71.174,2957.87 C 71.141,2957.9 71.112,2957.94 71.091,2957.99 C 71.077,2958.01 71.066,2958.04 71.058,2958.07 C 71.051,2958.11 71.047,2958.14 71.047,2958.18 L 71.047,2959.14 L 71.294,2959.16 L 71.294,2958.18 C 71.298,2958.15 71.309,2958.12 71.324,2958.1 C 71.341,2958.08 71.359,2958.06 71.383,2958.05 C 71.407,2958.03 71.434,2958.03 71.464,2958.03 L 72.192,2958.1 L 72.192,2957.85 L 71.488,2957.78 L 71.386,2957.78 C 71.354,2957.78 71.324,2957.79 71.294,2957.8 Z M 72.617,2957.93 C 72.573,2957.94 72.534,2957.97 72.5,2958 C 72.466,2958.03 72.439,2958.06 72.42,2958.11 C 72.401,2958.15 72.392,2958.2 72.39,2958.25 L 72.39,2958.9 C 72.392,2958.95 72.401,2959 72.42,2959.05 C 72.439,2959.1 72.466,2959.14 72.5,2959.18 C 72.534,2959.22 72.573,2959.25 72.617,2959.28 C 72.664,2959.3 72.711,2959.32 72.765,2959.32 L 73.778,2959.43 L 73.778,2959.18 L 72.765,2959.07 C 72.741,2959.07 72.719,2959.06 72.7,2959.05 C 72.682,2959.03 72.667,2959.01 72.653,2958.99 C 72.643,2958.97 72.637,2958.95 72.637,2958.93 L 72.637,2958.8 L 73.531,2958.89 L 73.531,2958.64 L 72.637,2958.55 L 72.637,2958.28 C 72.637,2958.26 72.643,2958.23 72.653,2958.22 C 72.667,2958.2 72.682,2958.19 72.7,2958.17 C 72.719,2958.17 72.741,2958.16 72.765,2958.16 L 73.778,2958.27 L 73.778,2958.02 L 72.765,2957.91 L 72.688,2957.91 C 72.664,2957.92 72.641,2957.92 72.617,2957.93 Z M 73.975,2958.04 L 73.975,2959.45 L 74.224,2959.28 L 74.671,2958.98 L 75.118,2959.38 L 75.365,2959.6 L 75.365,2958.19 L 75.118,2958.16 L 75.118,2959.06 L 74.873,2958.85 L 74.671,2958.67 L 74.468,2958.8 L 74.224,2958.97 L 74.224,2958.07 L 73.975,2958.04 Z M 75.792,2958.27 C 75.747,2958.28 75.707,2958.31 75.673,2958.34 C 75.639,2958.37 75.614,2958.4 75.595,2958.45 C 75.575,2958.49 75.564,2958.54 75.564,2958.59 L 75.564,2959.24 C 75.564,2959.29 75.575,2959.34 75.595,2959.39 C 75.614,2959.44 75.639,2959.48 75.673,2959.52 C 75.707,2959.56 75.747,2959.59 75.792,2959.62 C 75.837,2959.64 75.886,2959.66 75.936,2959.66 L 76.952,2959.77 L 76.952,2959.52 L 75.936,2959.41 C 75.913,2959.41 75.892,2959.4 75.873,2959.39 C 75.853,2959.37 75.84,2959.36 75.829,2959.34 C 75.818,2959.31 75.811,2959.29 75.811,2959.27 L 75.811,2959.14 L 76.703,2959.23 L 76.703,2958.98 L 75.811,2958.89 L 75.811,2958.62 C 75.811,2958.6 75.818,2958.58 75.829,2958.56 C 75.84,2958.54 75.853,2958.53 75.873,2958.51 C 75.892,2958.51 75.913,2958.5 75.936,2958.5 L 76.952,2958.62 L 76.952,2958.36 L 75.936,2958.25 L 75.861,2958.25 C 75.837,2958.26 75.813,2958.26 75.792,2958.27 Z M 77.15,2958.38 L 77.15,2959.79 L 77.397,2959.62 L 78.291,2959.02 L 78.291,2959.92 L 78.54,2959.94 L 78.54,2958.53 L 78.291,2958.7 L 77.397,2959.3 L 77.397,2958.41 L 77.15,2958.38 Z M 79.306,2958.61 L 79.306,2959.77 L 78.737,2959.71 L 78.737,2959.96 L 80.125,2960.11 L 80.125,2959.86 L 79.555,2959.8 L 79.555,2958.64 L 79.306,2958.61 Z M 80.592,2958.79 C 80.54,2958.8 80.495,2958.83 80.455,2958.87 C 80.414,2958.91 80.382,2958.95 80.361,2959 C 80.337,2959.05 80.326,2959.11 80.324,2959.17 L 80.573,2959.2 C 80.573,2959.16 80.582,2959.13 80.6,2959.1 C 80.616,2959.07 80.64,2959.05 80.667,2959.04 C 80.697,2959.02 80.729,2959.02 80.763,2959.02 L 81.199,2959.07 C 81.233,2959.07 81.268,2959.09 81.295,2959.11 C 81.325,2959.13 81.349,2959.15 81.365,2959.18 C 81.383,2959.22 81.391,2959.25 81.391,2959.28 C 81.391,2959.32 81.383,2959.35 81.365,2959.38 C 81.349,2959.4 81.325,2959.43 81.295,2959.44 C 81.268,2959.45 81.233,2959.46 81.199,2959.45 L 80.699,2959.4 C 80.648,2959.4 80.6,2959.4 80.557,2959.42 C 80.511,2959.43 80.471,2959.45 80.44,2959.48 C 80.42,2959.5 80.406,2959.51 80.39,2959.54 C 80.369,2959.56 80.355,2959.59 80.342,2959.63 C 80.331,2959.67 80.324,2959.7 80.324,2959.74 L 80.324,2959.75 C 80.326,2959.81 80.336,2959.86 80.355,2959.9 C 80.374,2959.95 80.401,2959.99 80.436,2960.03 C 80.469,2960.07 80.508,2960.11 80.552,2960.13 C 80.597,2960.15 80.646,2960.17 80.699,2960.17 L 81.263,2960.23 C 81.314,2960.24 81.363,2960.23 81.408,2960.22 C 81.453,2960.2 81.493,2960.18 81.527,2960.15 C 81.561,2960.12 81.589,2960.08 81.607,2960.04 C 81.627,2959.99 81.638,2959.94 81.638,2959.89 L 81.638,2959.89 L 81.389,2959.86 L 81.389,2959.87 C 81.389,2959.89 81.383,2959.91 81.372,2959.93 C 81.361,2959.95 81.344,2959.96 81.327,2959.97 C 81.308,2959.98 81.287,2959.98 81.263,2959.98 L 80.699,2959.92 C 80.675,2959.92 80.654,2959.91 80.635,2959.9 C 80.616,2959.88 80.602,2959.86 80.589,2959.84 C 80.578,2959.82 80.571,2959.8 80.571,2959.78 L 80.571,2959.77 C 80.571,2959.74 80.578,2959.72 80.589,2959.71 C 80.602,2959.69 80.616,2959.68 80.635,2959.67 C 80.654,2959.66 80.675,2959.65 80.699,2959.65 L 81.199,2959.71 L 81.291,2959.71 C 81.321,2959.7 81.35,2959.7 81.378,2959.69 C 81.433,2959.67 81.482,2959.64 81.523,2959.6 C 81.524,2959.59 81.527,2959.59 81.529,2959.59 C 81.534,2959.59 81.536,2959.58 81.537,2959.58 C 81.57,2959.55 81.593,2959.5 81.61,2959.46 C 81.629,2959.41 81.638,2959.36 81.638,2959.31 C 81.638,2959.25 81.625,2959.19 81.604,2959.13 C 81.58,2959.08 81.548,2959.03 81.508,2958.98 C 81.469,2958.94 81.423,2958.9 81.37,2958.87 C 81.316,2958.84 81.259,2958.82 81.199,2958.82 L 80.763,2958.77 C 80.704,2958.76 80.646,2958.77 80.592,2958.79 Z M 83.072,2959.05 C 83.018,2959.07 82.972,2959.1 82.933,2959.13 C 82.893,2959.17 82.861,2959.21 82.838,2959.26 C 82.817,2959.32 82.804,2959.37 82.804,2959.44 L 83.053,2959.46 C 83.053,2959.43 83.061,2959.39 83.078,2959.37 C 83.096,2959.34 83.119,2959.32 83.146,2959.31 C 83.177,2959.29 83.208,2959.28 83.242,2959.29 L 83.679,2959.34 C 83.713,2959.34 83.744,2959.35 83.774,2959.37 C 83.804,2959.39 83.825,2959.42 83.844,2959.45 C 83.861,2959.48 83.869,2959.51 83.869,2959.55 C 83.869,2959.59 83.861,2959.62 83.844,2959.65 C 83.825,2959.67 83.804,2959.69 83.774,2959.71 C 83.744,2959.72 83.713,2959.72 83.679,2959.72 L 83.178,2959.67 C 83.127,2959.67 83.078,2959.67 83.036,2959.68 C 82.992,2959.7 82.951,2959.72 82.916,2959.75 C 82.899,2959.76 82.884,2959.78 82.87,2959.8 C 82.849,2959.83 82.833,2959.86 82.82,2959.9 C 82.81,2959.93 82.804,2959.97 82.804,2960.01 L 82.804,2960.02 C 82.804,2960.07 82.814,2960.12 82.833,2960.17 C 82.852,2960.22 82.88,2960.26 82.914,2960.3 C 82.949,2960.34 82.986,2960.37 83.032,2960.39 C 83.076,2960.42 83.125,2960.43 83.178,2960.44 L 83.74,2960.5 C 83.793,2960.5 83.842,2960.5 83.887,2960.48 C 83.931,2960.47 83.971,2960.45 84.006,2960.42 C 84.04,2960.39 84.068,2960.35 84.087,2960.3 C 84.106,2960.26 84.116,2960.21 84.116,2960.16 L 84.116,2960.15 L 83.867,2960.12 L 83.867,2960.13 C 83.867,2960.16 83.861,2960.18 83.851,2960.19 C 83.84,2960.21 83.823,2960.23 83.804,2960.24 C 83.784,2960.24 83.763,2960.25 83.74,2960.24 L 83.178,2960.19 C 83.155,2960.18 83.133,2960.18 83.115,2960.16 C 83.096,2960.15 83.078,2960.13 83.067,2960.11 C 83.057,2960.09 83.05,2960.07 83.05,2960.04 L 83.05,2960.03 C 83.05,2960.01 83.057,2959.99 83.067,2959.97 C 83.078,2959.95 83.096,2959.94 83.115,2959.93 C 83.133,2959.92 83.155,2959.92 83.178,2959.92 L 83.679,2959.97 L 83.77,2959.97 C 83.8,2959.97 83.829,2959.96 83.857,2959.95 C 83.912,2959.93 83.961,2959.9 84.002,2959.86 C 84.004,2959.86 84.006,2959.86 84.008,2959.86 C 84.01,2959.85 84.014,2959.85 84.017,2959.85 C 84.049,2959.81 84.072,2959.77 84.089,2959.72 C 84.106,2959.68 84.116,2959.63 84.116,2959.57 C 84.114,2959.51 84.104,2959.45 84.08,2959.4 C 84.059,2959.35 84.028,2959.29 83.987,2959.25 C 83.947,2959.2 83.902,2959.17 83.848,2959.14 C 83.795,2959.11 83.738,2959.09 83.679,2959.09 L 83.242,2959.04 C 83.182,2959.03 83.125,2959.04 83.072,2959.05 Z M 84.544,2959.21 C 84.5,2959.22 84.461,2959.24 84.427,2959.28 C 84.393,2959.31 84.366,2959.35 84.346,2959.39 C 84.327,2959.43 84.317,2959.48 84.317,2959.53 L 84.317,2960.18 C 84.317,2960.23 84.327,2960.28 84.346,2960.33 C 84.366,2960.38 84.393,2960.42 84.427,2960.46 C 84.461,2960.5 84.5,2960.53 84.544,2960.56 C 84.589,2960.58 84.637,2960.6 84.691,2960.6 L 85.704,2960.71 L 85.704,2960.46 L 84.691,2960.35 C 84.668,2960.35 84.646,2960.34 84.627,2960.33 C 84.608,2960.31 84.591,2960.3 84.581,2960.27 C 84.57,2960.26 84.564,2960.23 84.564,2960.21 L 84.564,2960.08 L 85.457,2960.18 L 85.457,2959.92 L 84.564,2959.83 L 84.564,2959.56 C 84.564,2959.54 84.57,2959.51 84.581,2959.5 C 84.591,2959.48 84.608,2959.46 84.627,2959.45 C 84.646,2959.45 84.668,2959.44 84.691,2959.45 L 85.704,2959.55 L 85.704,2959.3 L 84.691,2959.19 C 84.637,2959.19 84.589,2959.19 84.544,2959.21 Z M 85.9,2959.32 L 85.9,2960.73 L 86.777,2960.82 C 86.83,2960.83 86.879,2960.82 86.923,2960.81 C 86.967,2960.79 87.006,2960.77 87.04,2960.74 C 87.075,2960.71 87.102,2960.67 87.121,2960.63 C 87.14,2960.58 87.15,2960.54 87.15,2960.48 C 87.15,2960.43 87.14,2960.38 87.123,2960.34 C 87.104,2960.29 87.079,2960.25 87.046,2960.21 C 87.013,2960.17 86.975,2960.14 86.932,2960.11 C 86.898,2960.09 86.863,2960.08 86.825,2960.07 L 87.023,2959.69 L 87.15,2959.45 L 86.872,2959.42 L 86.745,2959.66 L 86.613,2959.91 L 86.606,2959.92 C 86.585,2959.96 86.555,2959.98 86.519,2960 C 86.483,2960.02 86.442,2960.02 86.396,2960.02 L 86.149,2959.99 L 86.149,2959.35 L 85.9,2959.32 Z M 87.349,2959.48 L 87.349,2960.89 L 87.598,2960.92 L 87.598,2959.51 L 87.349,2959.48 Z M 88.025,2959.58 C 87.981,2959.6 87.941,2959.62 87.907,2959.65 C 87.872,2959.68 87.847,2959.72 87.827,2959.76 C 87.808,2959.81 87.798,2959.85 87.798,2959.91 L 87.798,2960.55 C 87.798,2960.61 87.808,2960.66 87.827,2960.7 C 87.847,2960.75 87.872,2960.8 87.907,2960.84 C 87.941,2960.88 87.981,2960.91 88.025,2960.93 C 88.07,2960.96 88.119,2960.97 88.17,2960.97 L 89.185,2961.09 L 89.185,2960.83 L 88.17,2960.72 C 88.147,2960.72 88.126,2960.71 88.106,2960.7 C 88.087,2960.68 88.072,2960.67 88.062,2960.65 C 88.049,2960.63 88.045,2960.6 88.043,2960.58 L 88.043,2960.45 L 88.936,2960.55 L 88.936,2960.3 L 88.043,2960.2 L 88.043,2959.93 C 88.045,2959.91 88.049,2959.89 88.062,2959.87 C 88.072,2959.85 88.087,2959.84 88.106,2959.83 C 88.126,2959.82 88.147,2959.82 88.17,2959.82 L 89.185,2959.93 L 89.185,2959.68 L 88.17,2959.57 C 88.119,2959.56 88.07,2959.57 88.025,2959.58 Z M 89.652,2959.76 C 89.6,2959.78 89.553,2959.81 89.513,2959.84 C 89.472,2959.88 89.44,2959.92 89.419,2959.97 C 89.396,2960.02 89.386,2960.08 89.386,2960.14 L 89.632,2960.17 C 89.632,2960.13 89.641,2960.1 89.657,2960.07 C 89.675,2960.05 89.698,2960.03 89.727,2960.01 C 89.756,2960 89.787,2959.99 89.824,2960 L 90.258,2960.04 C 90.294,2960.05 90.326,2960.06 90.353,2960.08 C 90.383,2960.1 90.406,2960.13 90.423,2960.16 C 90.441,2960.19 90.449,2960.22 90.449,2960.26 C 90.449,2960.29 90.441,2960.33 90.423,2960.35 C 90.406,2960.38 90.383,2960.4 90.353,2960.41 C 90.326,2960.43 90.294,2960.43 90.258,2960.43 L 89.758,2960.38 C 89.706,2960.37 89.66,2960.38 89.615,2960.39 C 89.571,2960.4 89.532,2960.43 89.498,2960.45 C 89.479,2960.47 89.464,2960.49 89.449,2960.51 C 89.43,2960.54 89.413,2960.57 89.402,2960.6 C 89.389,2960.64 89.386,2960.68 89.386,2960.72 L 89.386,2960.72 C 89.386,2960.78 89.394,2960.83 89.413,2960.88 C 89.432,2960.92 89.459,2960.97 89.494,2961.01 C 89.528,2961.05 89.566,2961.07 89.613,2961.1 C 89.657,2961.13 89.706,2961.14 89.758,2961.14 L 90.321,2961.21 C 90.373,2961.21 90.422,2961.21 90.466,2961.19 C 90.511,2961.18 90.551,2961.16 90.586,2961.12 C 90.62,2961.09 90.647,2961.05 90.667,2961.01 C 90.686,2960.97 90.696,2960.92 90.696,2960.87 L 90.696,2960.86 L 90.447,2960.83 L 90.447,2960.84 C 90.447,2960.86 90.443,2960.88 90.43,2960.9 C 90.42,2960.92 90.404,2960.93 90.385,2960.94 C 90.366,2960.95 90.345,2960.96 90.321,2960.95 L 89.758,2960.89 C 89.735,2960.89 89.713,2960.88 89.694,2960.87 C 89.675,2960.86 89.66,2960.84 89.647,2960.82 C 89.636,2960.8 89.631,2960.77 89.631,2960.75 L 89.631,2960.74 C 89.631,2960.72 89.636,2960.7 89.647,2960.68 C 89.66,2960.66 89.675,2960.65 89.694,2960.64 C 89.713,2960.63 89.735,2960.62 89.758,2960.63 L 90.258,2960.68 C 90.321,2960.69 90.383,2960.68 90.439,2960.66 C 90.493,2960.64 90.541,2960.61 90.581,2960.57 C 90.584,2960.57 90.587,2960.57 90.589,2960.56 C 90.592,2960.56 90.594,2960.56 90.596,2960.56 C 90.628,2960.52 90.651,2960.48 90.67,2960.43 C 90.688,2960.39 90.696,2960.34 90.696,2960.28 C 90.696,2960.22 90.683,2960.16 90.662,2960.11 C 90.639,2960.05 90.607,2960 90.568,2959.96 C 90.527,2959.91 90.481,2959.87 90.428,2959.85 C 90.375,2959.82 90.319,2959.8 90.258,2959.79 L 89.824,2959.74 C 89.762,2959.74 89.704,2959.74 89.652,2959.76 Z M 86.149,2960.24 L 86.777,2960.31 C 86.788,2960.31 86.796,2960.32 86.804,2960.32 C 86.812,2960.32 86.821,2960.33 86.83,2960.33 C 86.853,2960.35 86.87,2960.36 86.882,2960.39 C 86.898,2960.4 86.904,2960.43 86.904,2960.45 C 86.904,2960.48 86.9,2960.5 86.892,2960.51 C 86.882,2960.53 86.874,2960.54 86.866,2960.55 C 86.859,2960.55 86.847,2960.56 86.832,2960.56 C 86.823,2960.57 86.814,2960.57 86.806,2960.57 L 86.777,2960.57 L 86.149,2960.5 L 86.149,2960.24 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 77.322,2979.18 L 77.322,2981.24 L 77.688,2981 L 78.345,2980.55 L 79.003,2981.13 L 79.367,2981.45 L 79.367,2979.38 L 79.003,2979.35 L 79.003,2980.66 L 78.644,2980.35 L 78.345,2980.09 L 78.048,2980.29 L 77.688,2980.53 L 77.688,2979.21 L 77.322,2979.18 Z M 79.66,2979.41 L 79.66,2981.48 L 80.027,2981.52 L 80.027,2979.45 L 79.66,2979.41 Z M 80.32,2979.48 L 80.32,2981.54 L 80.685,2981.29 L 82.001,2980.4 L 82.001,2981.72 L 82.365,2981.75 L 82.365,2979.69 L 82.001,2979.93 L 80.685,2980.82 L 80.685,2979.52 L 80.32,2979.48 Z M 82.659,2979.72 L 82.659,2981.78 L 83.025,2981.82 L 83.025,2979.76 L 82.659,2979.72 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.KAZE_LIGHT_small_individuals {
  width: 4rem;
  height: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.KAZE_LIGHT_small_individuals--VARIETY_BUNDLE {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='117.047pt' height='116.655pt' viewBox='14.757 -3355.14 117.047 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='58.604' y2='0' gradientTransform='translate(28.502 3295.43) rotate(33.6879) skewX(12.5617)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23f4f4f4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='76.512' y2='0' gradientTransform='translate(125.417 3281.48) rotate(-170.864) skewX(5.35446)'%3E%3Cstop offset='0' stop-color='%23e7e7e7'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='3.042' y2='0' gradientTransform='translate(16.446 3300.33) rotate(4.61822) skewX(2.75461)'%3E%3Cstop offset='0' stop-color='%23f0f0f0'/%3E%3Cstop offset='1' stop-color='%23e5e5e5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.613' y2='0' gradientTransform='translate(100.161 3291.28) rotate(90) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23ececec'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.412' y2='0' gradientTransform='translate(19.294 3309.75) rotate(15.0478) skewX(6.00835) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23e6e6e6'/%3E%3Cstop offset='1' stop-color='%23d3d3d3'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.891' y2='0' gradientTransform='translate(121.16 3310.1) rotate(-137.955) skewX(14.2506) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23ebebeb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_6' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.299' y2='0' gradientTransform='translate(130.042 3278.51) rotate(170.789) skewX(-3.57412)'%3E%3Cstop offset='0' stop-color='%23eaeaea'/%3E%3Cstop offset='1' stop-color='%23d5d5d5'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_7' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.358' y2='0' gradientTransform='translate(20.539 3281.03) rotate(-5.91709) skewX(-2.2571)'%3E%3Cstop offset='0' stop-color='%23c9c9c9'/%3E%3Cstop offset='1' stop-color='%23e1e1e1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(73.281 3296.81) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cpath d='M 20.712,3292.12 L 15.984,3324.58 L 115.203,3323.45 L 131.402,3293.1 L 131.476,3292.97 C 131.599,3292.72 131.685,3292.43 131.735,3292.12 L 20.712,3292.12 Z' stroke-width='0.343' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cg id='Group_1' fill='%23000000' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.213'%3E%3Cg id='Group_2'%3E%3Cpath d='M 65.94,3307.59 L 64.831,3307.6 L 62.52,3308.98 L 61.519,3308.32 L 61.814,3307.61 L 60.91,3307.61 L 59.737,3310.47 L 60.63,3310.47 L 61.234,3309.01 L 61.81,3309.39 L 62.334,3309.74 L 63.42,3310.45 L 64.737,3310.45 L 63.037,3309.32 L 65.94,3307.59 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 71.376,3307.57 L 70.369,3307.57 L 69.679,3308.09 L 68.046,3309.32 L 67.488,3308.1 L 67.249,3307.59 L 66.243,3307.59 L 66.483,3308.11 L 67.557,3310.43 L 70.688,3308.09 L 71.376,3307.57 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 76.838,3307.55 L 72.966,3307.57 L 72.958,3307.57 L 71.825,3307.57 L 71.833,3307.57 L 72.287,3308.08 L 73.101,3308.99 L 73.472,3309.4 L 73.923,3309.9 L 70.757,3309.91 L 70.531,3310.42 L 74.369,3310.4 L 75.482,3310.39 L 75.033,3309.89 L 74.223,3308.98 L 73.849,3308.57 L 73.404,3308.08 L 76.598,3308.06 L 76.838,3307.55 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 82.529,3307.53 L 78.888,3307.54 C 78.695,3307.54 78.512,3307.56 78.33,3307.6 C 78.147,3307.64 77.98,3307.7 77.825,3307.77 C 77.669,3307.84 77.531,3307.92 77.424,3308.02 C 77.311,3308.11 77.226,3308.21 77.177,3308.32 L 76.557,3309.63 C 76.506,3309.73 76.494,3309.83 76.52,3309.92 C 76.546,3310.01 76.601,3310.1 76.691,3310.17 C 76.778,3310.23 76.89,3310.29 77.036,3310.33 C 77.177,3310.36 77.343,3310.38 77.531,3310.38 L 81.138,3310.36 L 81.384,3309.86 L 77.77,3309.88 C 77.682,3309.88 77.613,3309.87 77.555,3309.85 C 77.503,3309.82 77.458,3309.79 77.437,3309.75 C 77.416,3309.71 77.416,3309.67 77.437,3309.62 L 77.559,3309.36 L 80.754,3309.34 L 81.001,3308.84 L 77.797,3308.85 L 78.054,3308.32 C 78.082,3308.27 78.13,3308.22 78.181,3308.18 C 78.241,3308.14 78.314,3308.11 78.393,3308.09 C 78.474,3308.07 78.552,3308.05 78.642,3308.05 L 82.276,3308.04 L 82.529,3307.53 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 19.451,3269.04 L 20.704,3292.12 L 131.735,3292.12 C 131.833,3291.54 131.823,3290.86 131.724,3290.1 L 131.495,3287.83 L 129.598,3269.04 L 19.451,3269.04 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 19.099,3269.04 L 14.757,3299.42 L 15.984,3324.58 L 20.721,3292.12 L 19.453,3269.04 L 19.099,3269.04 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 20.674,3291.54 L 20.704,3292.12 L 131.735,3292.12 C 131.767,3291.94 131.789,3291.75 131.798,3291.54 L 20.674,3291.54 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_3' fill='%23000000' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.059'%3E%3Cg id='Group_4'%3E%3Cpath d='M 72.679,3270.93 L 72.679,3272.65 L 72.983,3272.65 L 72.983,3271.77 L 73.24,3272 L 73.466,3272.21 L 73.947,3272.65 L 74.4,3272.65 L 73.646,3271.96 L 74.392,3270.93 L 74.014,3270.93 L 73.42,3271.75 L 72.983,3271.35 L 72.983,3270.93 L 72.679,3270.93 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 74.495,3270.93 L 74.655,3271.24 L 75.375,3272.65 L 76.096,3271.24 L 76.252,3270.93 L 75.907,3270.93 L 75.749,3271.24 L 75.375,3271.97 L 75,3271.24 L 74.84,3270.93 L 74.495,3270.93 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 76.406,3270.93 L 76.641,3271.24 L 77.065,3271.78 L 77.26,3272.03 L 77.494,3272.34 L 76.403,3272.34 L 76.403,3272.65 L 78.118,3272.65 L 77.878,3272.34 L 77.452,3271.78 L 77.26,3271.53 L 77.027,3271.24 L 78.127,3271.24 L 78.127,3270.93 L 76.406,3270.93 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 78.647,3270.96 C 78.597,3270.99 78.544,3271.02 78.5,3271.06 C 78.457,3271.11 78.426,3271.15 78.403,3271.21 C 78.381,3271.27 78.365,3271.33 78.365,3271.39 L 78.365,3272.18 C 78.365,3272.24 78.381,3272.31 78.403,3272.36 C 78.426,3272.42 78.457,3272.47 78.5,3272.51 C 78.544,3272.55 78.597,3272.59 78.647,3272.61 C 78.703,3272.63 78.767,3272.65 78.828,3272.65 L 80.085,3272.65 L 80.085,3272.34 L 78.828,3272.34 C 78.799,3272.34 78.772,3272.33 78.749,3272.32 C 78.725,3272.3 78.708,3272.28 78.695,3272.26 C 78.678,3272.24 78.671,3272.21 78.671,3272.18 L 78.671,3272.02 L 79.778,3272.02 L 79.778,3271.72 L 78.671,3271.72 L 78.671,3271.39 C 78.671,3271.36 78.678,3271.33 78.695,3271.31 C 78.708,3271.29 78.725,3271.27 78.749,3271.26 C 78.772,3271.24 78.799,3271.24 78.828,3271.24 L 80.085,3271.24 L 80.085,3270.93 L 78.828,3270.93 C 78.767,3270.93 78.703,3270.94 78.647,3270.96 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 21.771,3292.12 L 16.838,3324.58 L 17.184,3324.57 L 22.23,3292.12 L 21.771,3292.12 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 130.012,3292.1 L 113.426,3323.47 L 113.999,3323.46 L 130.776,3292.12 L 130.012,3292.1 Z' stroke-width='0.395' stroke-linejoin='miter' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cpath d='M 128.695,3269.04 L 130.963,3291.54 L 131.407,3291.54 L 129.182,3269.04 L 128.695,3269.04 Z' stroke-width='0.189' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_6)'/%3E%3Cpath d='M 19.859,3269.04 L 21.137,3291.55 L 21.584,3291.55 L 20.346,3269.04 L 19.859,3269.04 Z' stroke-width='0.189' stroke-linejoin='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_7)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_LIGHT_small_individuals--MONO {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='637.998 -3194.63 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='29.519' y2='82.215' gradientTransform='translate(692.559 3107.07)'%3E%3Cstop offset='0' stop-color='%23ddceca'/%3E%3Cstop offset='1' stop-color='%23f0eae4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-5.044' y2='47.162' gradientTransform='translate(679.229 3109.39)'%3E%3Cstop offset='0' stop-color='%23b8afad'/%3E%3Cstop offset='1' stop-color='%23e3d8d6'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.616' y2='0' gradientTransform='translate(681.895 3143.77) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23beb5b3'/%3E%3Cstop offset='1' stop-color='%23c5bcb9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.051' y2='8.082' gradientTransform='translate(694.444 3182.74)'%3E%3Cstop offset='0' stop-color='%23cbc1bf'/%3E%3Cstop offset='1' stop-color='%23d8cecb'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.039' y2='-0.616' gradientTransform='translate(723.866 3189.39) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c7bebb'/%3E%3Cstop offset='1' stop-color='%23ccc2c0'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.446' y2='-0.865' gradientTransform='translate(674.93 3190.09)'%3E%3Cstop offset='0' stop-color='%23a59d9b'/%3E%3Cstop offset='1' stop-color='%23c4bbb8'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 681.585,3077.98 L 681.585,3186.44 L 722.078,3189.04 L 722.078,3083.47 L 681.585,3077.98 Z' stroke-width='8.676' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 681.585,3077.98 L 670.588,3088.66 L 670.588,3171.62 C 670.588,3171.9 670.583,3172.19 670.574,3172.47 L 670.576,3172.47 L 670.585,3172.46 L 670.588,3191.62 C 670.588,3191.9 670.583,3192.19 670.574,3192.47 L 670.576,3192.47 L 681.585,3186.44 L 681.585,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 681.585,3077.98 L 681.256,3078.3 L 681.256,3186.63 L 681.912,3186.02 L 681.912,3078.03 L 681.585,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cg id='Group_1' fill='%23000000' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='3.14'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 689.474,3133.62 L 689.468,3139.78 L 690.486,3139.89 L 690.491,3136.74 L 691.332,3137.65 L 692.088,3138.47 L 693.677,3140.21 L 695.187,3140.37 L 692.693,3137.64 L 695.171,3134.2 L 693.913,3134.07 L 691.936,3136.81 L 690.493,3135.24 L 690.493,3133.72 L 689.474,3133.62 Z M 695.69,3134.25 L 696.214,3135.4 L 698.596,3140.71 L 700.994,3135.89 L 701.513,3134.84 L 700.375,3134.73 L 699.849,3135.77 L 698.598,3138.29 L 697.355,3135.52 L 696.831,3134.37 L 695.69,3134.25 Z M 702.028,3134.89 L 702.04,3134.9 L 702.819,3136.07 L 704.219,3138.19 L 704.867,3139.15 L 705.644,3140.33 L 702.017,3139.96 L 702.014,3141.06 L 706.428,3141.51 L 707.706,3141.64 L 706.918,3140.46 L 705.499,3138.32 L 704.86,3137.35 L 704.09,3136.21 L 707.738,3136.57 L 707.741,3135.47 L 703.325,3135.03 L 703.315,3135.03 L 702.028,3134.89 Z M 709.474,3135.78 C 709.29,3135.85 709.124,3135.95 708.989,3136.09 C 708.844,3136.22 708.736,3136.39 708.658,3136.59 C 708.58,3136.78 708.54,3136.99 708.538,3137.22 L 708.531,3140.06 C 708.531,3140.29 708.57,3140.51 708.651,3140.72 C 708.729,3140.93 708.835,3141.11 708.982,3141.28 C 709.117,3141.45 709.283,3141.58 709.467,3141.69 C 709.653,3141.79 709.853,3141.86 710.065,3141.88 L 714.232,3142.3 L 714.232,3141.2 L 710.065,3140.78 C 709.966,3140.76 709.883,3140.73 709.803,3140.68 C 709.724,3140.62 709.665,3140.54 709.616,3140.45 C 709.568,3140.37 709.547,3140.27 709.547,3140.16 L 709.547,3139.59 L 713.216,3139.96 L 713.218,3138.86 L 709.547,3138.49 L 709.547,3137.32 C 709.547,3137.22 709.573,3137.13 709.619,3137.05 C 709.669,3136.97 709.729,3136.91 709.807,3136.86 C 709.888,3136.82 709.97,3136.81 710.069,3136.81 L 714.237,3137.24 L 714.239,3136.14 L 710.069,3135.71 C 709.86,3135.69 709.662,3135.71 709.474,3135.78 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' fill='%23000000' fill-rule='nonzero'%3E%3Cg id='Group_5'%3E%3Cpath d='M 698.267,3130.63 C 698.226,3130.63 698.185,3130.64 698.145,3130.66 C 698.09,3130.68 698.04,3130.71 697.996,3130.75 C 697.95,3130.79 697.916,3130.84 697.888,3130.89 C 697.87,3130.93 697.853,3130.97 697.844,3131.01 C 697.835,3131.05 697.831,3131.1 697.828,3131.14 L 697.828,3132.37 L 698.148,3132.41 L 698.148,3131.14 C 698.155,3131.11 698.166,3131.07 698.187,3131.04 C 698.208,3131.01 698.233,3130.99 698.263,3130.97 C 698.295,3130.96 698.329,3130.95 698.366,3130.95 L 699.304,3131.04 L 699.304,3130.72 L 698.396,3130.62 C 698.352,3130.62 698.309,3130.62 698.267,3130.63 Z M 699.559,3130.74 L 699.559,3132.55 L 699.879,3132.59 L 699.879,3130.78 L 699.559,3130.74 Z M 700.683,3130.93 C 700.575,3130.97 700.481,3131.02 700.398,3131.1 C 700.318,3131.17 700.253,3131.26 700.207,3131.36 C 700.161,3131.47 700.138,3131.58 700.136,3131.71 C 700.138,3131.83 700.161,3131.95 700.207,3132.07 C 700.253,3132.18 700.318,3132.28 700.398,3132.37 C 700.481,3132.47 700.575,3132.54 700.683,3132.6 C 700.791,3132.66 700.906,3132.69 701.03,3132.7 L 701.927,3132.8 L 701.927,3132.47 L 701.03,3132.38 C 700.952,3132.37 700.876,3132.35 700.807,3132.31 C 700.738,3132.28 700.676,3132.23 700.626,3132.17 C 700.573,3132.11 700.532,3132.05 700.502,3131.97 C 700.472,3131.9 700.456,3131.82 700.456,3131.74 C 700.456,3131.66 700.472,3131.59 700.502,3131.52 C 700.532,3131.45 700.573,3131.4 700.626,3131.35 C 700.676,3131.3 700.738,3131.26 700.807,3131.24 C 700.876,3131.22 700.952,3131.21 701.03,3131.22 L 701.607,3131.28 L 701.607,3131.63 L 701.03,3131.57 L 701.03,3131.89 L 701.927,3131.98 L 701.927,3130.99 L 701.03,3130.9 L 700.849,3130.9 C 700.791,3130.9 700.736,3130.91 700.683,3130.93 Z M 702.18,3131.02 L 702.18,3132.83 L 702.499,3132.86 L 702.499,3132.2 L 703.651,3132.32 L 703.651,3132.98 L 703.971,3133.01 L 703.971,3131.2 L 703.651,3131.17 L 703.651,3132 L 702.499,3131.88 L 702.499,3131.05 L 702.18,3131.02 Z M 704.959,3131.3 L 704.959,3132.79 L 704.226,3132.71 L 704.226,3133.04 L 706.012,3133.22 L 706.012,3132.9 L 705.279,3132.82 L 705.279,3131.34 L 704.959,3131.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 681.585,3186.44 L 670.581,3192.47 L 709.651,3194.63 L 722.078,3189.35 L 722.078,3189.04 L 681.585,3186.44 Z' stroke-width='1.11' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 681.912,3186.02 L 681.256,3186.63 L 722.078,3189.29 L 722.078,3188.63 L 681.912,3186.02 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 681.256,3185.43 L 670.585,3191.4 L 670.588,3191.62 C 670.588,3191.9 670.583,3192.19 670.574,3192.47 L 681.256,3186.62 L 681.256,3185.43 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Ctext xml:space='preserve' transform='translate(693.057 3105.78) scale(1 -1)' kerning='auto' stroke-linecap='round' stroke-linejoin='round' fill='%23000000' font-family='DIN Pro Medium' stroke-width='0.046' font-size='1.833'/%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.214'%3E%3Crect x='-2.276' y='-2.143' width='4.552' height='4.287' transform='translate(699.046 3096.72) rotate(90) skewX(-7.19943)' fill='%23000000'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(704.62 3097.42) rotate(90) skewX(-7.19473)' fill='%23ffffff'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.046' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 696.159,3100.97 L 696.131,3102.28 L 696.328,3102.3 L 696.723,3101.54 L 697.077,3102.4 L 697.273,3102.42 L 697.3,3101.11 L 697.104,3101.09 L 697.086,3101.96 L 696.801,3101.29 L 696.655,3101.27 L 696.337,3101.87 L 696.355,3100.99 L 696.159,3100.97 Z M 697.866,3101.21 C 697.81,3101.22 697.761,3101.25 697.718,3101.29 C 697.686,3101.31 697.661,3101.34 697.642,3101.38 C 697.623,3101.41 697.61,3101.45 697.601,3101.49 C 697.592,3101.53 697.586,3101.57 697.583,3101.62 C 697.579,3101.68 697.577,3101.74 697.576,3101.8 C 697.575,3101.87 697.574,3101.93 697.575,3101.99 C 697.576,3102.04 697.58,3102.09 697.587,3102.13 C 697.594,3102.17 697.607,3102.21 697.624,3102.25 C 697.641,3102.28 697.665,3102.32 697.696,3102.36 C 697.737,3102.4 697.784,3102.44 697.839,3102.47 C 697.894,3102.5 697.957,3102.52 698.028,3102.53 C 698.098,3102.54 698.161,3102.53 698.217,3102.52 C 698.273,3102.5 698.322,3102.48 698.365,3102.44 C 698.397,3102.41 698.422,3102.38 698.441,3102.35 C 698.459,3102.32 698.473,3102.28 698.482,3102.24 C 698.491,3102.2 698.497,3102.16 698.5,3102.1 C 698.503,3102.05 698.505,3101.99 698.507,3101.92 C 698.508,3101.85 698.509,3101.79 698.508,3101.74 C 698.507,3101.69 698.503,3101.64 698.495,3101.6 C 698.488,3101.56 698.476,3101.52 698.459,3101.48 C 698.442,3101.44 698.418,3101.41 698.387,3101.37 C 698.346,3101.32 698.298,3101.28 698.244,3101.26 C 698.189,3101.22 698.126,3101.21 698.055,3101.2 C 697.985,3101.19 697.921,3101.19 697.866,3101.21 Z M 698.812,3101.3 L 698.784,3102.62 L 698.964,3102.64 L 699.582,3101.79 L 699.562,3102.71 L 699.758,3102.74 L 699.786,3101.43 L 699.606,3101.4 L 698.988,3102.25 L 699.008,3101.33 L 698.812,3101.3 Z M 698.052,3101.37 C 698.091,3101.38 698.126,3101.39 698.158,3101.41 C 698.19,3101.43 698.218,3101.45 698.243,3101.48 C 698.258,3101.5 698.271,3101.52 698.281,3101.54 C 698.291,3101.56 698.298,3101.59 698.302,3101.62 C 698.307,3101.65 698.31,3101.69 698.311,3101.73 C 698.312,3101.78 698.312,3101.83 698.31,3101.9 C 698.309,3101.96 698.307,3102.02 698.304,3102.06 C 698.301,3102.11 698.297,3102.14 698.291,3102.17 C 698.285,3102.2 698.277,3102.23 698.266,3102.25 C 698.256,3102.26 698.242,3102.28 698.226,3102.3 C 698.2,3102.32 698.172,3102.34 698.139,3102.35 C 698.106,3102.36 698.07,3102.36 698.031,3102.35 C 697.992,3102.35 697.956,3102.34 697.924,3102.32 C 697.892,3102.3 697.864,3102.28 697.84,3102.25 C 697.825,3102.23 697.812,3102.21 697.803,3102.19 C 697.793,3102.16 697.786,3102.14 697.781,3102.11 C 697.776,3102.08 697.773,3102.04 697.772,3101.99 C 697.771,3101.95 697.771,3101.89 697.772,3101.83 C 697.774,3101.76 697.776,3101.71 697.779,3101.67 C 697.782,3101.62 697.786,3101.59 697.792,3101.56 C 697.799,3101.53 697.807,3101.5 697.817,3101.48 C 697.828,3101.46 697.841,3101.45 697.857,3101.43 C 697.882,3101.41 697.911,3101.39 697.944,3101.38 C 697.977,3101.37 698.012,3101.37 698.052,3101.37 Z M 700.354,3101.52 C 700.298,3101.54 700.249,3101.56 700.206,3101.6 C 700.174,3101.63 700.149,3101.66 700.13,3101.69 C 700.111,3101.72 700.098,3101.76 700.089,3101.8 C 700.08,3101.84 700.074,3101.89 700.071,3101.94 C 700.068,3101.99 700.065,3102.05 700.064,3102.12 C 700.063,3102.19 700.062,3102.25 700.063,3102.3 C 700.064,3102.35 700.068,3102.4 700.075,3102.44 C 700.083,3102.49 700.095,3102.53 700.112,3102.56 C 700.129,3102.6 700.153,3102.64 700.184,3102.67 C 700.225,3102.72 700.273,3102.76 700.327,3102.79 C 700.382,3102.82 700.445,3102.84 700.516,3102.85 C 700.586,3102.85 700.65,3102.85 700.705,3102.84 C 700.761,3102.82 700.81,3102.79 700.853,3102.76 C 700.885,3102.73 700.91,3102.7 700.929,3102.67 C 700.948,3102.63 700.961,3102.6 700.97,3102.56 C 700.979,3102.52 700.985,3102.47 700.988,3102.42 C 700.991,3102.37 700.994,3102.31 700.995,3102.24 C 700.996,3102.17 700.997,3102.11 700.996,3102.06 C 700.995,3102 700.991,3101.96 700.984,3101.91 C 700.976,3101.87 700.964,3101.83 700.947,3101.8 C 700.93,3101.76 700.906,3101.72 700.875,3101.69 C 700.834,3101.64 700.786,3101.6 700.732,3101.57 C 700.677,3101.54 700.614,3101.52 700.543,3101.51 C 700.473,3101.5 700.409,3101.51 700.354,3101.52 Z M 700.54,3101.69 C 700.579,3101.69 700.614,3101.7 700.646,3101.72 C 700.679,3101.74 700.707,3101.77 700.731,3101.8 C 700.747,3101.81 700.759,3101.83 700.769,3101.86 C 700.779,3101.88 700.786,3101.91 700.791,3101.93 C 700.795,3101.97 700.798,3102 700.799,3102.05 C 700.8,3102.09 700.8,3102.15 700.798,3102.21 C 700.797,3102.28 700.795,3102.33 700.792,3102.38 C 700.79,3102.42 700.785,3102.46 700.779,3102.49 C 700.773,3102.52 700.765,3102.54 700.754,3102.56 C 700.744,3102.58 700.73,3102.6 700.714,3102.61 C 700.688,3102.64 700.66,3102.65 700.627,3102.66 C 700.594,3102.67 700.558,3102.67 700.519,3102.67 C 700.48,3102.66 700.445,3102.65 700.413,3102.63 C 700.38,3102.62 700.352,3102.59 700.328,3102.56 C 700.313,3102.54 700.3,3102.52 700.291,3102.5 C 700.281,3102.48 700.274,3102.45 700.269,3102.42 C 700.264,3102.39 700.261,3102.35 700.26,3102.31 C 700.259,3102.26 700.259,3102.21 700.26,3102.14 C 700.262,3102.08 700.264,3102.03 700.267,3101.98 C 700.27,3101.94 700.274,3101.9 700.281,3101.87 C 700.287,3101.84 700.295,3101.82 700.305,3101.8 C 700.316,3101.78 700.329,3101.76 700.345,3101.75 C 700.37,3101.72 700.399,3101.71 700.432,3101.7 C 700.465,3101.69 700.501,3101.68 700.54,3101.69 Z M 701.902,3101.7 C 701.848,3101.7 701.798,3101.72 701.752,3101.74 C 701.705,3101.76 701.661,3101.78 701.618,3101.82 L 701.744,3101.97 C 701.793,3101.93 701.844,3101.9 701.899,3101.89 C 701.954,3101.88 702.015,3101.87 702.08,3101.88 C 702.166,3101.9 702.232,3101.92 702.277,3101.96 C 702.322,3102 702.344,3102.06 702.343,3102.12 C 702.343,3102.15 702.338,3102.18 702.33,3102.2 C 702.321,3102.22 702.308,3102.24 702.289,3102.25 C 702.273,3102.26 702.253,3102.27 702.23,3102.28 C 702.207,3102.28 702.179,3102.29 702.146,3102.29 L 701.993,3102.29 C 701.94,3102.29 701.893,3102.3 701.852,3102.31 C 701.811,3102.32 701.776,3102.34 701.747,3102.36 C 701.715,3102.39 701.69,3102.42 701.673,3102.46 C 701.656,3102.5 701.647,3102.55 701.646,3102.6 C 701.644,3102.68 701.66,3102.75 701.694,3102.81 C 701.727,3102.87 701.776,3102.92 701.84,3102.96 C 701.903,3103 701.98,3103.03 702.07,3103.04 C 702.128,3103.05 702.18,3103.05 702.227,3103.05 C 702.274,3103.04 702.318,3103.03 702.359,3103.01 C 702.399,3103 702.438,3102.97 702.475,3102.94 L 702.355,3102.8 C 702.314,3102.84 702.269,3102.86 702.222,3102.87 C 702.174,3102.88 702.122,3102.88 702.067,3102.87 C 702.016,3102.86 701.973,3102.85 701.939,3102.83 C 701.904,3102.8 701.878,3102.78 701.861,3102.74 C 701.844,3102.71 701.836,3102.67 701.836,3102.63 C 701.837,3102.61 701.841,3102.59 701.848,3102.57 C 701.856,3102.55 701.869,3102.53 701.886,3102.52 C 701.902,3102.51 701.921,3102.5 701.944,3102.49 C 701.966,3102.48 701.994,3102.48 702.029,3102.48 L 702.184,3102.47 C 702.224,3102.47 702.258,3102.47 702.287,3102.46 C 702.316,3102.46 702.342,3102.45 702.365,3102.44 C 702.387,3102.43 702.408,3102.42 702.427,3102.41 C 702.462,3102.38 702.489,3102.34 702.508,3102.3 C 702.526,3102.26 702.536,3102.21 702.537,3102.15 C 702.538,3102.07 702.52,3102 702.482,3101.93 C 702.444,3101.87 702.39,3101.82 702.321,3101.78 C 702.252,3101.74 702.172,3101.72 702.08,3101.71 C 702.015,3101.7 701.956,3101.7 701.902,3101.7 Z M 702.809,3101.81 L 702.781,3103.12 L 703.608,3103.23 L 703.612,3103.05 L 702.981,3102.97 L 702.989,3102.58 L 703.527,3102.65 L 703.531,3102.48 L 702.993,3102.41 L 703.001,3102.01 L 703.632,3102.09 L 703.636,3101.91 L 702.809,3101.81 Z M 703.905,3101.95 L 703.878,3103.26 L 704.379,3103.32 C 704.461,3103.33 704.533,3103.33 704.593,3103.3 C 704.654,3103.28 704.701,3103.24 704.735,3103.18 C 704.769,3103.13 704.787,3103.07 704.789,3102.99 C 704.79,3102.93 704.779,3102.87 704.758,3102.82 C 704.736,3102.77 704.706,3102.73 704.668,3102.69 C 704.63,3102.66 704.587,3102.63 704.538,3102.61 L 704.848,3102.07 L 704.619,3102.04 L 704.335,3102.56 L 704.09,3102.53 L 704.101,3101.97 L 703.905,3101.95 Z M 705.095,3102.1 L 705.068,3103.41 L 705.264,3103.44 L 705.291,3102.12 L 705.095,3102.1 Z M 705.63,3102.17 L 705.603,3103.48 L 706.43,3103.58 L 706.433,3103.41 L 705.803,3103.33 L 705.811,3102.94 L 706.349,3103.01 L 706.352,3102.83 L 705.814,3102.76 L 705.823,3102.37 L 706.453,3102.45 L 706.457,3102.27 L 705.63,3102.17 Z M 706.892,3102.33 C 706.838,3102.34 706.788,3102.35 706.742,3102.37 C 706.695,3102.39 706.651,3102.42 706.608,3102.45 L 706.735,3102.6 C 706.783,3102.56 706.834,3102.53 706.889,3102.52 C 706.945,3102.51 707.005,3102.51 707.07,3102.51 C 707.156,3102.53 707.222,3102.55 707.267,3102.59 C 707.312,3102.63 707.334,3102.69 707.333,3102.75 C 707.333,3102.78 707.328,3102.81 707.32,3102.83 C 707.311,3102.85 707.298,3102.87 707.28,3102.88 C 707.263,3102.89 707.243,3102.9 707.22,3102.91 C 707.197,3102.92 707.169,3102.92 707.137,3102.92 L 706.983,3102.92 C 706.93,3102.92 706.883,3102.93 706.842,3102.94 C 706.801,3102.95 706.766,3102.97 706.737,3103 C 706.705,3103.02 706.68,3103.05 706.663,3103.1 C 706.646,3103.14 706.637,3103.18 706.636,3103.24 C 706.635,3103.31 706.651,3103.38 706.684,3103.44 C 706.717,3103.51 706.766,3103.56 706.83,3103.6 C 706.894,3103.64 706.971,3103.66 707.061,3103.67 C 707.118,3103.68 707.17,3103.68 707.217,3103.68 C 707.264,3103.67 707.308,3103.66 707.349,3103.65 C 707.389,3103.63 707.428,3103.61 707.466,3103.58 L 707.345,3103.43 C 707.304,3103.47 707.26,3103.49 707.212,3103.5 C 707.164,3103.51 707.112,3103.51 707.057,3103.5 C 707.006,3103.49 706.963,3103.48 706.929,3103.46 C 706.894,3103.44 706.868,3103.41 706.851,3103.38 C 706.834,3103.34 706.826,3103.31 706.826,3103.27 C 706.827,3103.24 706.831,3103.22 706.839,3103.2 C 706.846,3103.18 706.859,3103.16 706.876,3103.15 C 706.892,3103.14 706.912,3103.13 706.934,3103.12 C 706.956,3103.11 706.984,3103.11 707.019,3103.11 L 707.175,3103.11 C 707.214,3103.1 707.248,3103.1 707.277,3103.1 C 707.307,3103.09 707.332,3103.08 707.355,3103.07 C 707.377,3103.07 707.398,3103.05 707.417,3103.04 C 707.452,3103.01 707.479,3102.97 707.498,3102.93 C 707.516,3102.89 707.526,3102.84 707.528,3102.78 C 707.529,3102.7 707.51,3102.63 707.472,3102.57 C 707.434,3102.51 707.38,3102.45 707.311,3102.42 C 707.242,3102.38 707.162,3102.35 707.07,3102.34 C 707.006,3102.33 706.946,3102.33 706.892,3102.33 Z M 704.086,3102.7 L 704.377,3102.73 C 704.421,3102.74 704.459,3102.75 704.492,3102.77 C 704.524,3102.79 704.549,3102.82 704.567,3102.85 C 704.585,3102.88 704.593,3102.92 704.593,3102.97 C 704.591,3103.01 704.581,3103.04 704.562,3103.07 C 704.543,3103.1 704.517,3103.12 704.484,3103.13 C 704.451,3103.15 704.412,3103.15 704.368,3103.14 L 704.077,3103.11 L 704.086,3102.7 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(696.326 3136.31) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_LIGHT_small_individuals--FONDANT {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='763.357 -3194.63 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='54.402' y2='78.71' gradientTransform='translate(817.919 3107.07)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-5.043' y2='47.161' gradientTransform='translate(804.589 3109.39)'%3E%3Cstop offset='0' stop-color='%23836538'/%3E%3Cstop offset='1' stop-color='%23b68d50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.616' y2='0' gradientTransform='translate(807.256 3143.77) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%2387683a'/%3E%3Cstop offset='1' stop-color='%238c6c3c'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.05' y2='8.082' gradientTransform='translate(819.804 3182.74)'%3E%3Cstop offset='0' stop-color='%2391703e'/%3E%3Cstop offset='1' stop-color='%23a47f47'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.039' y2='-0.616' gradientTransform='translate(849.226 3189.39) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%238e6e3d'/%3E%3Cstop offset='1' stop-color='%2392713e'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.445' y2='-0.864' gradientTransform='translate(800.29 3190.08)'%3E%3Cstop offset='0' stop-color='%23765b32'/%3E%3Cstop offset='1' stop-color='%238c6c3c'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='none'%3E%3Cg id='Group_1'%3E%3Cpath d='M 806.945,3077.99 L 806.945,3186.44 L 847.437,3189.04 L 847.437,3083.47 L 806.945,3077.99 Z' stroke-width='8.675' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 806.945,3077.99 L 795.948,3088.66 L 795.948,3171.62 C 795.948,3171.9 795.944,3172.19 795.934,3172.47 L 795.937,3172.47 L 795.946,3172.46 L 795.948,3191.62 C 795.948,3191.9 795.944,3192.18 795.934,3192.47 L 795.937,3192.47 L 806.945,3186.44 L 806.945,3077.99 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 806.945,3077.98 L 806.617,3078.3 L 806.617,3186.63 L 807.272,3186.02 L 807.272,3078.03 L 806.945,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='3.14' fill='%23ffffff'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 814.834,3133.62 L 814.828,3139.79 L 815.846,3139.89 L 815.851,3136.74 L 816.692,3137.65 L 817.448,3138.47 L 819.037,3140.21 L 820.547,3140.37 L 818.053,3137.64 L 820.531,3134.2 L 819.273,3134.07 L 817.296,3136.81 L 815.853,3135.25 L 815.853,3133.72 L 814.834,3133.62 Z M 821.05,3134.25 L 821.574,3135.4 L 823.956,3140.71 L 826.353,3135.89 L 826.873,3134.84 L 825.735,3134.73 L 825.209,3135.78 L 823.958,3138.29 L 822.714,3135.52 L 822.19,3134.37 L 821.05,3134.25 Z M 827.388,3134.89 L 827.399,3134.9 L 828.179,3136.07 L 829.578,3138.19 L 830.227,3139.15 L 831.004,3140.33 L 827.376,3139.96 L 827.374,3141.06 L 831.788,3141.51 L 833.066,3141.64 L 832.277,3140.46 L 830.859,3138.32 L 830.22,3137.35 L 829.45,3136.21 L 833.098,3136.57 L 833.1,3135.47 L 828.684,3135.03 L 828.675,3135.03 L 827.388,3134.89 Z M 834.833,3135.78 C 834.649,3135.85 834.484,3135.95 834.348,3136.09 C 834.203,3136.22 834.095,3136.39 834.017,3136.59 C 833.939,3136.78 833.9,3136.99 833.898,3137.22 L 833.891,3140.06 C 833.891,3140.29 833.93,3140.51 834.01,3140.72 C 834.089,3140.93 834.194,3141.11 834.341,3141.28 C 834.477,3141.45 834.643,3141.58 834.826,3141.69 C 835.013,3141.79 835.213,3141.86 835.424,3141.88 L 839.592,3142.3 L 839.592,3141.2 L 835.424,3140.78 C 835.325,3140.76 835.243,3140.73 835.162,3140.68 C 835.084,3140.62 835.024,3140.54 834.976,3140.45 C 834.928,3140.37 834.907,3140.27 834.907,3140.16 L 834.907,3139.59 L 838.576,3139.96 L 838.578,3138.86 L 834.907,3138.49 L 834.907,3137.32 C 834.907,3137.22 834.932,3137.13 834.978,3137.05 C 835.029,3136.97 835.089,3136.91 835.167,3136.86 C 835.247,3136.82 835.33,3136.81 835.429,3136.81 L 839.596,3137.24 L 839.599,3136.14 L 835.429,3135.71 C 835.22,3135.69 835.022,3135.71 834.833,3135.78 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cpath d='M 823.627,3130.63 C 823.586,3130.63 823.544,3130.64 823.505,3130.66 C 823.45,3130.68 823.4,3130.71 823.356,3130.75 C 823.31,3130.79 823.275,3130.84 823.248,3130.89 C 823.229,3130.93 823.213,3130.97 823.204,3131.01 C 823.195,3131.05 823.19,3131.1 823.188,3131.14 L 823.188,3132.38 L 823.508,3132.41 L 823.508,3131.14 C 823.514,3131.11 823.526,3131.07 823.547,3131.04 C 823.567,3131.01 823.593,3130.99 823.622,3130.97 C 823.655,3130.96 823.689,3130.95 823.726,3130.95 L 824.664,3131.04 L 824.664,3130.72 L 823.756,3130.62 C 823.712,3130.62 823.668,3130.62 823.627,3130.63 Z M 824.919,3130.74 L 824.919,3132.55 L 825.238,3132.59 L 825.238,3130.78 L 824.919,3130.74 Z M 826.043,3130.93 C 825.935,3130.97 825.841,3131.02 825.758,3131.1 C 825.678,3131.17 825.613,3131.26 825.567,3131.36 C 825.521,3131.47 825.498,3131.58 825.496,3131.71 C 825.498,3131.84 825.521,3131.95 825.567,3132.07 C 825.613,3132.18 825.678,3132.28 825.758,3132.38 C 825.841,3132.47 825.935,3132.54 826.043,3132.6 C 826.151,3132.66 826.266,3132.69 826.39,3132.71 L 827.287,3132.8 L 827.287,3132.48 L 826.39,3132.38 C 826.312,3132.37 826.236,3132.35 826.167,3132.31 C 826.098,3132.28 826.036,3132.23 825.986,3132.17 C 825.933,3132.11 825.891,3132.05 825.861,3131.97 C 825.832,3131.9 825.815,3131.82 825.815,3131.74 C 825.815,3131.66 825.832,3131.59 825.861,3131.52 C 825.891,3131.45 825.933,3131.4 825.986,3131.35 C 826.036,3131.3 826.098,3131.26 826.167,3131.24 C 826.236,3131.22 826.312,3131.21 826.39,3131.22 L 826.967,3131.28 L 826.967,3131.63 L 826.39,3131.57 L 826.39,3131.89 L 827.287,3131.98 L 827.287,3130.99 L 826.39,3130.9 L 826.209,3130.9 C 826.151,3130.9 826.096,3130.91 826.043,3130.93 Z M 827.54,3131.02 L 827.54,3132.83 L 827.859,3132.86 L 827.859,3132.2 L 829.011,3132.32 L 829.011,3132.98 L 829.33,3133.01 L 829.33,3131.2 L 829.011,3131.17 L 829.011,3132 L 827.859,3131.88 L 827.859,3131.05 L 827.54,3131.02 Z M 830.319,3131.3 L 830.319,3132.79 L 829.585,3132.71 L 829.585,3133.04 L 831.371,3133.22 L 831.371,3132.9 L 830.638,3132.82 L 830.638,3131.34 L 830.319,3131.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 806.945,3186.44 L 795.941,3192.47 L 835.01,3194.63 L 847.437,3189.35 L 847.437,3189.04 L 806.945,3186.44 Z' stroke-width='1.11' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 807.272,3186.02 L 806.617,3186.63 L 847.437,3189.29 L 847.437,3188.63 L 807.272,3186.02 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 806.617,3185.43 L 795.946,3191.4 L 795.948,3191.62 C 795.948,3191.9 795.944,3192.18 795.934,3192.47 L 806.617,3186.62 L 806.617,3185.43 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Cg id='Group_7' stroke-linecap='round'%3E%3Cg id='Group_8' stroke-linejoin='miter' stroke-width='0.269'%3E%3Crect x='-2.276' y='-2.144' width='4.553' height='4.289' transform='translate(816.039 3095.81) rotate(90) skewX(-7.19708)' fill='%23003660'/%3E%3Crect x='-2.276' y='-2.143' width='4.552' height='4.287' transform='translate(821.611 3096.51) rotate(90) skewX(-7.19943)' fill='%23cf3400'/%3E%3Crect x='-2.276' y='-2.144' width='4.552' height='4.289' transform='translate(827.186 3097.22) rotate(90) skewX(-7.19708)' fill='%23bf0000'/%3E%3Crect x='-2.276' y='-2.144' width='4.553' height='4.289' transform='translate(832.762 3097.92) rotate(90) skewX(-7.19708)' fill='%2393170b'/%3E%3Crect x='-2.276' y='-2.144' width='4.553' height='4.289' transform='translate(838.337 3098.62) rotate(90) skewX(-7.19708)' fill='%23114700'/%3E%3C/g%3E%3Cg id='Group_9' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.041' fill='%23ffffff'%3E%3Cg id='Group_10'%3E%3Cpath d='M 819.071,3100.91 L 819.071,3101.76 C 819.071,3101.81 819.08,3101.85 819.096,3101.89 C 819.112,3101.93 819.135,3101.97 819.163,3102 C 819.191,3102.03 819.225,3102.06 819.262,3102.08 C 819.299,3102.1 819.34,3102.11 819.384,3102.12 L 820.234,3102.21 L 820.234,3102 L 819.386,3101.91 C 819.365,3101.91 819.349,3101.9 819.333,3101.89 C 819.317,3101.87 819.303,3101.86 819.294,3101.84 C 819.285,3101.83 819.28,3101.81 819.28,3101.79 L 819.28,3101.68 L 820.027,3101.76 L 820.027,3101.55 L 819.278,3101.47 L 819.278,3100.93 L 819.071,3100.91 Z M 820.57,3101.12 C 820.499,3101.14 820.436,3101.18 820.384,3101.23 C 820.331,3101.27 820.289,3101.33 820.259,3101.4 C 820.23,3101.47 820.213,3101.54 820.213,3101.62 C 820.213,3101.7 820.23,3101.78 820.259,3101.86 C 820.289,3101.93 820.331,3102 820.384,3102.06 C 820.436,3102.12 820.499,3102.17 820.57,3102.2 C 820.639,3102.24 820.715,3102.27 820.795,3102.28 C 820.876,3102.28 820.951,3102.28 821.02,3102.26 C 821.089,3102.23 821.154,3102.2 821.207,3102.15 C 821.259,3102.1 821.301,3102.05 821.331,3101.98 C 821.361,3101.91 821.374,3101.84 821.377,3101.75 C 821.374,3101.67 821.361,3101.59 821.331,3101.52 C 821.301,3101.45 821.259,3101.38 821.207,3101.32 C 821.154,3101.26 821.089,3101.21 821.02,3101.17 C 820.951,3101.13 820.876,3101.11 820.795,3101.1 C 820.715,3101.09 820.639,3101.1 820.57,3101.12 Z M 821.503,3101.18 L 821.503,3102.35 L 821.71,3102.21 L 822.457,3101.71 L 822.457,3102.46 L 822.664,3102.48 L 822.664,3101.31 L 822.457,3101.45 L 821.71,3101.94 L 821.71,3101.2 L 821.503,3101.18 Z M 820.795,3101.31 C 820.846,3101.32 820.896,3101.33 820.94,3101.35 C 820.986,3101.38 821.025,3101.41 821.059,3101.45 C 821.094,3101.49 821.119,3101.53 821.14,3101.58 C 821.158,3101.63 821.167,3101.68 821.17,3101.73 C 821.167,3101.78 821.158,3101.83 821.14,3101.87 C 821.119,3101.92 821.094,3101.95 821.059,3101.98 C 821.025,3102.02 820.986,3102.04 820.94,3102.05 C 820.896,3102.07 820.846,3102.07 820.795,3102.07 C 820.744,3102.06 820.694,3102.05 820.65,3102.02 C 820.604,3101.99 820.565,3101.96 820.531,3101.93 C 820.496,3101.89 820.471,3101.85 820.45,3101.8 C 820.432,3101.75 820.42,3101.7 820.42,3101.65 C 820.42,3101.59 820.432,3101.54 820.45,3101.5 C 820.471,3101.46 820.496,3101.42 820.531,3101.39 C 820.565,3101.36 820.604,3101.34 820.65,3101.32 C 820.694,3101.31 820.744,3101.3 820.795,3101.31 Z M 822.832,3101.33 L 822.832,3102.51 L 823.413,3102.57 L 823.411,3102.57 C 823.491,3102.58 823.567,3102.57 823.636,3102.55 C 823.708,3102.53 823.77,3102.49 823.822,3102.45 C 823.875,3102.4 823.917,3102.34 823.947,3102.27 C 823.976,3102.21 823.99,3102.13 823.993,3102.05 C 823.99,3101.98 823.981,3101.91 823.956,3101.84 C 823.933,3101.77 823.898,3101.71 823.855,3101.66 C 823.85,3101.65 823.845,3101.64 823.839,3101.63 C 823.834,3101.63 823.827,3101.62 823.82,3101.61 C 823.77,3101.55 823.708,3101.51 823.636,3101.47 C 823.567,3101.43 823.494,3101.4 823.413,3101.4 L 822.832,3101.33 Z M 823.949,3101.45 L 824.055,3101.68 L 824.542,3102.7 L 825.027,3101.79 L 825.135,3101.59 L 824.901,3101.56 L 824.795,3101.76 L 824.542,3102.24 L 824.287,3101.7 L 824.181,3101.48 L 823.949,3101.45 Z M 823.036,3101.56 L 823.411,3101.6 C 823.464,3101.61 823.512,3101.63 823.556,3101.65 C 823.602,3101.67 823.641,3101.7 823.675,3101.74 C 823.71,3101.78 823.735,3101.83 823.754,3101.87 C 823.774,3101.92 823.783,3101.97 823.786,3102.03 C 823.783,3102.08 823.774,3102.13 823.754,3102.17 C 823.735,3102.21 823.71,3102.25 823.675,3102.28 C 823.641,3102.31 823.602,3102.33 823.556,3102.35 C 823.512,3102.36 823.464,3102.37 823.411,3102.36 L 823.036,3102.32 L 823.036,3101.56 Z M 825.236,3101.6 L 825.236,3102.77 L 825.443,3102.64 L 826.19,3102.14 L 826.19,3102.88 L 826.397,3102.91 L 826.397,3101.73 L 826.19,3101.87 L 825.443,3102.37 L 825.443,3101.63 L 825.236,3101.6 Z M 827.041,3101.8 L 827.041,3102.77 L 826.563,3102.72 L 826.563,3102.93 L 827.726,3103.06 L 827.726,3102.85 L 827.248,3102.8 L 827.248,3101.83 L 827.041,3101.8 Z M 828.928,3102.05 C 828.882,3102.06 828.845,3102.08 828.808,3102.11 C 828.776,3102.14 828.751,3102.18 828.73,3102.22 C 828.712,3102.26 828.703,3102.31 828.703,3102.36 L 828.91,3102.39 C 828.91,3102.36 828.919,3102.33 828.933,3102.31 C 828.946,3102.28 828.965,3102.27 828.99,3102.26 C 829.013,3102.24 829.038,3102.24 829.07,3102.24 L 829.434,3102.28 C 829.464,3102.29 829.491,3102.3 829.514,3102.32 C 829.537,3102.33 829.558,3102.35 829.572,3102.38 C 829.585,3102.41 829.592,3102.43 829.595,3102.46 C 829.592,3102.49 829.585,3102.52 829.572,3102.54 C 829.558,3102.57 829.537,3102.58 829.514,3102.6 C 829.491,3102.61 829.464,3102.61 829.434,3102.61 L 829.015,3102.56 C 828.974,3102.55 828.933,3102.56 828.896,3102.57 C 828.859,3102.58 828.827,3102.6 828.797,3102.63 C 828.781,3102.64 828.769,3102.66 828.756,3102.67 C 828.739,3102.69 828.728,3102.72 828.716,3102.75 C 828.707,3102.78 828.703,3102.81 828.703,3102.85 L 828.703,3102.85 C 828.703,3102.89 828.71,3102.93 828.728,3102.98 C 828.744,3103.02 828.765,3103.06 828.792,3103.08 C 828.822,3103.12 828.854,3103.14 828.891,3103.17 C 828.93,3103.19 828.972,3103.2 829.015,3103.2 L 829.487,3103.26 L 829.549,3103.26 C 829.569,3103.26 829.59,3103.25 829.608,3103.24 C 829.645,3103.23 829.68,3103.22 829.709,3103.19 C 829.737,3103.16 829.758,3103.13 829.774,3103.1 C 829.792,3103.06 829.799,3103.02 829.799,3102.97 L 829.799,3102.97 L 829.592,3102.94 L 829.592,3102.95 C 829.592,3102.97 829.588,3102.99 829.578,3103 C 829.567,3103.02 829.555,3103.03 829.539,3103.04 C 829.523,3103.05 829.505,3103.05 829.487,3103.05 L 829.015,3102.99 C 828.995,3102.99 828.976,3102.98 828.962,3102.97 C 828.946,3102.96 828.933,3102.94 828.923,3102.93 C 828.914,3102.91 828.91,3102.89 828.91,3102.87 L 828.91,3102.87 C 828.91,3102.85 828.914,3102.83 828.923,3102.81 C 828.933,3102.8 828.946,3102.79 828.962,3102.78 C 828.976,3102.77 828.995,3102.77 829.015,3102.77 L 829.434,3102.82 C 829.487,3102.82 829.537,3102.82 829.583,3102.8 C 829.629,3102.79 829.67,3102.76 829.703,3102.73 C 829.707,3102.73 829.709,3102.72 829.709,3102.72 C 829.712,3102.72 829.714,3102.72 829.716,3102.71 C 829.744,3102.68 829.765,3102.65 829.778,3102.61 C 829.792,3102.57 829.799,3102.53 829.799,3102.49 C 829.799,3102.44 829.79,3102.39 829.772,3102.34 C 829.753,3102.29 829.726,3102.25 829.691,3102.21 C 829.659,3102.17 829.62,3102.14 829.576,3102.12 C 829.53,3102.1 829.484,3102.08 829.434,3102.07 L 829.07,3102.03 C 829.018,3102.03 828.972,3102.03 828.928,3102.05 Z M 830.158,3102.18 C 830.121,3102.19 830.089,3102.21 830.059,3102.24 C 830.029,3102.26 830.008,3102.3 829.992,3102.33 C 829.976,3102.37 829.967,3102.41 829.967,3102.45 L 829.967,3102.99 C 829.967,3103.04 829.976,3103.08 829.992,3103.12 C 830.008,3103.16 830.029,3103.2 830.059,3103.23 C 830.089,3103.26 830.121,3103.29 830.158,3103.31 C 830.197,3103.33 830.236,3103.34 830.28,3103.35 L 831.128,3103.44 L 831.128,3103.23 L 830.28,3103.14 C 830.261,3103.14 830.243,3103.13 830.227,3103.12 C 830.211,3103.11 830.199,3103.09 830.188,3103.07 C 830.178,3103.06 830.174,3103.04 830.174,3103.02 L 830.174,3102.91 L 830.921,3102.99 L 830.921,3102.78 L 830.174,3102.7 L 830.174,3102.47 C 830.174,3102.45 830.178,3102.44 830.188,3102.42 C 830.199,3102.41 830.211,3102.4 830.227,3102.39 C 830.243,3102.38 830.261,3102.38 830.28,3102.38 L 831.128,3102.47 L 831.128,3102.26 L 830.28,3102.17 L 830.218,3102.17 C 830.197,3102.17 830.176,3102.17 830.158,3102.18 Z M 831.293,3102.28 L 831.293,3103.46 L 832.027,3103.54 C 832.07,3103.54 832.112,3103.54 832.148,3103.53 C 832.188,3103.52 832.22,3103.5 832.247,3103.47 C 832.277,3103.45 832.3,3103.42 832.316,3103.38 C 832.33,3103.34 832.339,3103.3 832.339,3103.26 C 832.339,3103.22 832.332,3103.18 832.316,3103.14 C 832.3,3103.1 832.279,3103.06 832.252,3103.03 C 832.224,3103 832.192,3102.97 832.155,3102.95 C 832.128,3102.93 832.1,3102.92 832.068,3102.91 L 832.233,3102.6 L 832.339,3102.4 L 832.107,3102.37 L 832.001,3102.57 L 831.891,3102.78 L 831.884,3102.79 C 831.866,3102.82 831.84,3102.84 831.811,3102.86 C 831.781,3102.87 831.746,3102.87 831.709,3102.87 L 831.5,3102.85 L 831.5,3102.31 L 831.293,3102.28 Z M 832.509,3102.42 L 832.509,3103.6 L 832.716,3103.62 L 832.716,3102.45 L 832.509,3102.42 Z M 833.073,3102.51 C 833.036,3102.52 833.001,3102.54 832.974,3102.57 C 832.946,3102.59 832.923,3102.63 832.909,3102.66 C 832.891,3102.7 832.882,3102.74 832.882,3102.78 L 832.882,3103.32 C 832.882,3103.37 832.891,3103.41 832.909,3103.45 C 832.923,3103.49 832.946,3103.53 832.974,3103.56 C 833.001,3103.59 833.036,3103.62 833.073,3103.64 C 833.112,3103.66 833.153,3103.67 833.194,3103.68 L 834.045,3103.77 L 834.045,3103.56 L 833.194,3103.47 C 833.176,3103.46 833.158,3103.45 833.141,3103.45 C 833.128,3103.43 833.114,3103.42 833.102,3103.4 C 833.093,3103.38 833.091,3103.37 833.089,3103.34 L 833.089,3103.24 L 833.838,3103.32 L 833.838,3103.11 L 833.089,3103.03 L 833.089,3102.8 C 833.091,3102.78 833.093,3102.77 833.102,3102.75 C 833.114,3102.74 833.128,3102.73 833.141,3102.72 C 833.158,3102.71 833.176,3102.71 833.194,3102.71 L 834.045,3102.8 L 834.045,3102.6 L 833.194,3102.5 C 833.153,3102.49 833.112,3102.5 833.073,3102.51 Z M 834.438,3102.67 C 834.392,3102.68 834.353,3102.7 834.318,3102.74 C 834.286,3102.76 834.261,3102.8 834.24,3102.85 C 834.222,3102.89 834.213,3102.93 834.213,3102.99 L 834.42,3103.01 C 834.42,3102.98 834.429,3102.95 834.443,3102.93 C 834.454,3102.91 834.475,3102.89 834.5,3102.88 C 834.523,3102.87 834.548,3102.86 834.58,3102.86 L 834.944,3102.91 C 834.974,3102.91 835.001,3102.92 835.024,3102.94 C 835.047,3102.95 835.066,3102.98 835.082,3103 C 835.095,3103.03 835.102,3103.06 835.102,3103.08 C 835.102,3103.12 835.095,3103.14 835.082,3103.16 C 835.066,3103.19 835.047,3103.2 835.024,3103.22 C 835.001,3103.23 834.974,3103.23 834.944,3103.23 L 834.525,3103.18 C 834.482,3103.18 834.443,3103.18 834.406,3103.19 C 834.367,3103.2 834.337,3103.22 834.307,3103.24 C 834.291,3103.26 834.279,3103.28 834.266,3103.29 C 834.249,3103.32 834.238,3103.34 834.226,3103.37 C 834.217,3103.4 834.213,3103.43 834.213,3103.47 L 834.213,3103.47 C 834.213,3103.52 834.22,3103.56 834.238,3103.6 C 834.254,3103.64 834.275,3103.68 834.302,3103.71 C 834.332,3103.74 834.364,3103.76 834.401,3103.79 C 834.44,3103.81 834.482,3103.82 834.525,3103.83 L 834.997,3103.88 L 835.056,3103.88 C 835.077,3103.88 835.098,3103.87 835.118,3103.87 C 835.155,3103.85 835.19,3103.84 835.217,3103.81 C 835.247,3103.78 835.268,3103.75 835.284,3103.72 C 835.3,3103.68 835.309,3103.64 835.309,3103.6 L 835.309,3103.59 L 835.102,3103.57 L 835.102,3103.57 C 835.1,3103.59 835.098,3103.61 835.089,3103.63 C 835.077,3103.64 835.063,3103.65 835.049,3103.66 C 835.033,3103.67 835.015,3103.67 834.997,3103.67 L 834.525,3103.61 C 834.505,3103.61 834.486,3103.6 834.472,3103.59 C 834.454,3103.58 834.443,3103.57 834.433,3103.55 C 834.424,3103.53 834.42,3103.51 834.42,3103.49 L 834.42,3103.49 C 834.42,3103.47 834.424,3103.45 834.433,3103.44 C 834.443,3103.42 834.454,3103.41 834.472,3103.4 C 834.486,3103.39 834.505,3103.39 834.525,3103.39 L 834.944,3103.44 L 835.02,3103.44 C 835.047,3103.44 835.07,3103.43 835.093,3103.42 C 835.139,3103.41 835.18,3103.38 835.213,3103.35 C 835.215,3103.35 835.22,3103.34 835.22,3103.34 C 835.222,3103.34 835.224,3103.34 835.226,3103.34 C 835.254,3103.31 835.272,3103.27 835.288,3103.23 C 835.302,3103.2 835.309,3103.15 835.309,3103.11 C 835.309,3103.06 835.3,3103.01 835.282,3102.96 C 835.263,3102.91 835.236,3102.87 835.201,3102.83 C 835.169,3102.8 835.13,3102.76 835.084,3102.74 C 835.04,3102.72 834.992,3102.7 834.944,3102.7 L 834.58,3102.66 C 834.528,3102.65 834.482,3102.66 834.438,3102.67 Z M 831.5,3103.06 L 832.027,3103.12 C 832.036,3103.12 832.043,3103.12 832.05,3103.12 C 832.056,3103.12 832.063,3103.13 832.07,3103.13 C 832.091,3103.14 832.105,3103.16 832.116,3103.17 C 832.128,3103.19 832.135,3103.21 832.135,3103.24 C 832.132,3103.26 832.128,3103.27 832.121,3103.28 C 832.116,3103.29 832.109,3103.3 832.102,3103.31 C 832.096,3103.32 832.086,3103.32 832.073,3103.33 C 832.061,3103.33 832.045,3103.33 832.027,3103.33 L 831.5,3103.27 L 831.5,3103.06 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(821.685 3136.31) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_LIGHT_small_individuals--EYE_CANDY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='513.009 -3194.63 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='29.519' y2='82.215' gradientTransform='translate(567.57 3107.07)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-5.044' y2='47.162' gradientTransform='translate(554.24 3109.39)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.616' y2='0' gradientTransform='translate(556.906 3143.77) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.051' y2='8.082' gradientTransform='translate(569.455 3182.74)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.039' y2='-0.616' gradientTransform='translate(598.877 3189.39) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.446' y2='-0.865' gradientTransform='translate(549.941 3190.09)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 556.596,3077.98 L 556.596,3186.44 L 597.089,3189.04 L 597.089,3083.47 L 556.596,3077.98 Z' stroke-width='8.676' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 556.596,3077.98 L 545.599,3088.66 L 545.599,3171.62 C 545.599,3171.9 545.594,3172.19 545.585,3172.47 L 545.587,3172.47 L 545.596,3172.46 L 545.599,3191.62 C 545.599,3191.9 545.594,3192.19 545.585,3192.47 L 545.587,3192.47 L 556.596,3186.44 L 556.596,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 556.596,3077.98 L 556.267,3078.3 L 556.267,3186.63 L 556.923,3186.02 L 556.923,3078.03 L 556.596,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='3.14' fill='%23000000'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 564.485,3133.62 L 564.479,3139.78 L 565.497,3139.89 L 565.502,3136.74 L 566.343,3137.65 L 567.099,3138.47 L 568.688,3140.21 L 570.198,3140.37 L 567.704,3137.64 L 570.182,3134.2 L 568.924,3134.07 L 566.947,3136.81 L 565.504,3135.24 L 565.504,3133.72 L 564.485,3133.62 Z M 570.701,3134.25 L 571.225,3135.4 L 573.607,3140.71 L 576.005,3135.89 L 576.524,3134.84 L 575.386,3134.73 L 574.86,3135.77 L 573.609,3138.29 L 572.366,3135.52 L 571.842,3134.37 L 570.701,3134.25 Z M 577.039,3134.89 L 577.051,3134.9 L 577.83,3136.07 L 579.23,3138.19 L 579.878,3139.15 L 580.655,3140.33 L 577.028,3139.96 L 577.025,3141.06 L 581.439,3141.51 L 582.717,3141.64 L 581.929,3140.46 L 580.51,3138.32 L 579.871,3137.35 L 579.101,3136.21 L 582.749,3136.57 L 582.752,3135.47 L 578.336,3135.03 L 578.326,3135.03 L 577.039,3134.89 Z M 584.485,3135.78 C 584.301,3135.85 584.135,3135.95 584,3136.09 C 583.855,3136.22 583.747,3136.39 583.669,3136.59 C 583.591,3136.78 583.551,3136.99 583.549,3137.22 L 583.542,3140.06 C 583.542,3140.29 583.581,3140.51 583.662,3140.72 C 583.74,3140.93 583.846,3141.11 583.993,3141.28 C 584.128,3141.45 584.294,3141.58 584.478,3141.69 C 584.664,3141.79 584.864,3141.86 585.076,3141.88 L 589.243,3142.3 L 589.243,3141.2 L 585.076,3140.78 C 584.977,3140.76 584.894,3140.73 584.814,3140.68 C 584.735,3140.62 584.676,3140.54 584.627,3140.45 C 584.579,3140.37 584.558,3140.27 584.558,3140.16 L 584.558,3139.59 L 588.227,3139.96 L 588.229,3138.86 L 584.558,3138.49 L 584.558,3137.32 C 584.558,3137.22 584.584,3137.13 584.63,3137.05 C 584.68,3136.97 584.74,3136.91 584.818,3136.86 C 584.899,3136.82 584.981,3136.81 585.08,3136.81 L 589.248,3137.24 L 589.25,3136.14 L 585.08,3135.71 C 584.871,3135.69 584.673,3135.71 584.485,3135.78 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' fill-rule='nonzero' fill='%23000000'%3E%3Cg id='Group_5'%3E%3Cpath d='M 573.278,3130.63 C 573.237,3130.63 573.196,3130.64 573.156,3130.66 C 573.101,3130.68 573.051,3130.71 573.007,3130.75 C 572.961,3130.79 572.927,3130.84 572.899,3130.89 C 572.881,3130.93 572.864,3130.97 572.855,3131.01 C 572.846,3131.05 572.842,3131.1 572.839,3131.14 L 572.839,3132.37 L 573.159,3132.41 L 573.159,3131.14 C 573.166,3131.11 573.177,3131.07 573.198,3131.04 C 573.219,3131.01 573.244,3130.99 573.274,3130.97 C 573.306,3130.96 573.34,3130.95 573.377,3130.95 L 574.315,3131.04 L 574.315,3130.72 L 573.407,3130.62 C 573.363,3130.62 573.32,3130.62 573.278,3130.63 Z M 574.57,3130.74 L 574.57,3132.55 L 574.89,3132.59 L 574.89,3130.78 L 574.57,3130.74 Z M 575.694,3130.93 C 575.586,3130.97 575.492,3131.02 575.409,3131.1 C 575.329,3131.17 575.264,3131.26 575.218,3131.36 C 575.172,3131.47 575.149,3131.58 575.147,3131.71 C 575.149,3131.83 575.172,3131.95 575.218,3132.07 C 575.264,3132.18 575.329,3132.28 575.409,3132.37 C 575.492,3132.47 575.586,3132.54 575.694,3132.6 C 575.802,3132.66 575.917,3132.69 576.041,3132.7 L 576.938,3132.8 L 576.938,3132.47 L 576.041,3132.38 C 575.963,3132.37 575.887,3132.35 575.818,3132.31 C 575.749,3132.28 575.687,3132.23 575.637,3132.17 C 575.584,3132.11 575.543,3132.05 575.513,3131.97 C 575.483,3131.9 575.467,3131.82 575.467,3131.74 C 575.467,3131.66 575.483,3131.59 575.513,3131.52 C 575.543,3131.45 575.584,3131.4 575.637,3131.35 C 575.687,3131.3 575.749,3131.26 575.818,3131.24 C 575.887,3131.22 575.963,3131.21 576.041,3131.22 L 576.618,3131.28 L 576.618,3131.63 L 576.041,3131.57 L 576.041,3131.89 L 576.938,3131.98 L 576.938,3130.99 L 576.041,3130.9 L 575.86,3130.9 C 575.802,3130.9 575.747,3130.91 575.694,3130.93 Z M 577.191,3131.02 L 577.191,3132.83 L 577.51,3132.86 L 577.51,3132.2 L 578.662,3132.32 L 578.662,3132.98 L 578.982,3133.01 L 578.982,3131.2 L 578.662,3131.17 L 578.662,3132 L 577.51,3131.88 L 577.51,3131.05 L 577.191,3131.02 Z M 579.97,3131.3 L 579.97,3132.79 L 579.237,3132.71 L 579.237,3133.04 L 581.023,3133.22 L 581.023,3132.9 L 580.29,3132.82 L 580.29,3131.34 L 579.97,3131.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 556.596,3186.44 L 545.592,3192.47 L 584.662,3194.63 L 597.089,3189.35 L 597.089,3189.04 L 556.596,3186.44 Z' stroke-width='1.11' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 556.923,3186.02 L 556.267,3186.63 L 597.089,3189.29 L 597.089,3188.63 L 556.923,3186.02 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 556.267,3185.43 L 545.596,3191.4 L 545.599,3191.62 C 545.599,3191.9 545.594,3192.19 545.585,3192.47 L 556.267,3186.62 L 556.267,3185.43 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3Ctext xml:space='preserve' transform='translate(568.068 3105.78) scale(1 -1)' kerning='auto' stroke-linecap='round' stroke-linejoin='round' fill='%23000000' font-family='DIN Pro Medium' stroke-width='0.046' font-size='1.833'/%3E%3Cg id='Group_6' stroke-linecap='round'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.214'%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(565.69 3095.81) rotate(90) skewX(-7.19473)' fill='%231880d9'/%3E%3Crect x='-2.276' y='-2.143' width='4.552' height='4.287' transform='translate(571.265 3096.51) rotate(90) skewX(-7.19943)' fill='%2313a875'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(576.839 3097.21) rotate(90) skewX(-7.19473)' fill='%2387c74c'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(582.416 3097.92) rotate(90) skewX(-7.19473)' fill='%23fc5f9b'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(587.99 3098.62) rotate(90) skewX(-7.19473)' fill='%234f34de'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.046' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 568.788,3100.8 L 568.76,3102.11 L 569.587,3102.22 L 569.591,3102.04 L 568.96,3101.96 L 568.968,3101.58 L 569.506,3101.64 L 569.51,3101.47 L 568.972,3101.4 L 568.98,3101 L 569.611,3101.08 L 569.615,3100.9 L 568.788,3100.8 Z M 570.111,3100.97 L 570.1,3101.51 L 569.697,3102.23 L 569.911,3102.26 L 570.194,3101.71 L 570.453,3102.32 L 570.667,3102.35 L 570.296,3101.53 L 570.307,3100.99 L 570.111,3100.97 Z M 570.873,3101.06 L 570.846,3102.37 L 571.673,3102.47 L 571.677,3102.3 L 571.046,3102.22 L 571.054,3101.83 L 571.592,3101.9 L 571.595,3101.72 L 571.057,3101.66 L 571.066,3101.26 L 571.696,3101.34 L 571.7,3101.16 L 570.873,3101.06 Z M 572.634,3101.3 C 572.579,3101.32 572.53,3101.34 572.487,3101.38 C 572.455,3101.41 572.43,3101.44 572.412,3101.47 C 572.393,3101.5 572.379,3101.54 572.37,3101.58 C 572.361,3101.62 572.355,3101.67 572.352,3101.72 C 572.348,3101.77 572.346,3101.83 572.345,3101.9 C 572.343,3101.97 572.343,3102.03 572.344,3102.08 C 572.345,3102.13 572.349,3102.18 572.357,3102.22 C 572.364,3102.27 572.376,3102.31 572.394,3102.34 C 572.411,3102.38 572.434,3102.42 572.465,3102.45 C 572.506,3102.5 572.553,3102.54 572.608,3102.57 C 572.663,3102.6 572.726,3102.62 572.796,3102.62 C 572.876,3102.63 572.948,3102.63 573.013,3102.6 C 573.077,3102.58 573.131,3102.54 573.175,3102.49 C 573.219,3102.43 573.249,3102.36 573.267,3102.28 L 573.067,3102.25 C 573.056,3102.3 573.039,3102.33 573.015,3102.37 C 572.992,3102.4 572.962,3102.42 572.926,3102.43 C 572.89,3102.45 572.848,3102.45 572.8,3102.45 C 572.761,3102.44 572.725,3102.43 572.694,3102.41 C 572.662,3102.4 572.634,3102.37 572.611,3102.34 C 572.595,3102.32 572.582,3102.3 572.572,3102.28 C 572.562,3102.26 572.555,3102.23 572.55,3102.2 C 572.545,3102.17 572.542,3102.13 572.541,3102.09 C 572.54,3102.04 572.54,3101.99 572.541,3101.92 C 572.543,3101.86 572.545,3101.81 572.548,3101.76 C 572.551,3101.72 572.555,3101.68 572.562,3101.65 C 572.568,3101.62 572.576,3101.6 572.587,3101.58 C 572.598,3101.56 572.611,3101.54 572.628,3101.52 C 572.652,3101.5 572.681,3101.49 572.713,3101.47 C 572.746,3101.47 572.781,3101.46 572.821,3101.47 C 572.868,3101.47 572.91,3101.49 572.946,3101.51 C 572.981,3101.53 573.01,3101.57 573.033,3101.6 C 573.056,3101.64 573.072,3101.68 573.081,3101.73 L 573.278,3101.75 C 573.264,3101.66 573.236,3101.59 573.195,3101.52 C 573.153,3101.45 573.101,3101.4 573.038,3101.36 C 572.975,3101.33 572.903,3101.3 572.824,3101.29 C 572.753,3101.28 572.69,3101.28 572.634,3101.3 Z M 573.375,3101.37 L 573.822,3102.74 L 573.981,3102.76 L 574.482,3101.51 L 574.273,3101.48 L 574.179,3101.73 L 573.668,3101.67 L 573.584,3101.4 L 573.375,3101.37 Z M 574.667,3101.53 L 574.639,3102.84 L 574.819,3102.86 L 575.437,3102.02 L 575.418,3102.94 L 575.614,3102.96 L 575.641,3101.65 L 575.461,3101.63 L 574.844,3102.48 L 574.863,3101.55 L 574.667,3101.53 Z M 575.98,3101.69 L 575.953,3103 L 576.407,3103.06 C 576.488,3103.07 576.558,3103.07 576.618,3103.05 C 576.679,3103.03 576.732,3102.99 576.778,3102.94 C 576.81,3102.91 576.833,3102.86 576.848,3102.82 C 576.863,3102.77 576.873,3102.72 576.878,3102.66 C 576.883,3102.6 576.885,3102.53 576.886,3102.46 C 576.888,3102.39 576.888,3102.33 576.886,3102.27 C 576.884,3102.21 576.876,3102.15 576.863,3102.1 C 576.85,3102.05 576.829,3102 576.798,3101.96 C 576.755,3101.9 576.703,3101.85 576.644,3101.82 C 576.585,3101.78 576.515,3101.76 576.435,3101.75 L 575.98,3101.69 Z M 573.723,3101.85 L 574.121,3101.9 L 573.912,3102.45 L 573.723,3101.85 Z M 577.392,3101.87 L 577.381,3102.41 L 576.978,3103.13 L 577.192,3103.16 L 577.475,3102.62 L 577.734,3103.22 L 577.948,3103.25 L 577.577,3102.43 L 577.588,3101.89 L 577.392,3101.87 Z M 576.173,3101.89 L 576.409,3101.92 C 576.456,3101.93 576.497,3101.94 576.534,3101.96 C 576.571,3101.98 576.602,3102.01 576.629,3102.04 C 576.649,3102.07 576.664,3102.1 576.673,3102.14 C 576.683,3102.17 576.688,3102.22 576.69,3102.27 C 576.692,3102.32 576.692,3102.37 576.69,3102.44 C 576.689,3102.5 576.687,3102.56 576.683,3102.61 C 576.679,3102.66 576.672,3102.7 576.661,3102.74 C 576.65,3102.77 576.634,3102.8 576.613,3102.82 C 576.585,3102.85 576.552,3102.87 576.515,3102.88 C 576.477,3102.89 576.436,3102.89 576.389,3102.88 L 576.153,3102.85 L 576.173,3101.89 Z M 578.756,3102.04 C 578.703,3102.05 578.652,3102.06 578.606,3102.08 C 578.559,3102.1 578.515,3102.13 578.472,3102.16 L 578.599,3102.31 C 578.647,3102.27 578.698,3102.24 578.754,3102.23 C 578.809,3102.22 578.869,3102.22 578.934,3102.22 C 579.02,3102.24 579.086,3102.26 579.131,3102.3 C 579.176,3102.34 579.198,3102.4 579.198,3102.46 C 579.197,3102.49 579.193,3102.52 579.184,3102.54 C 579.176,3102.56 579.162,3102.58 579.144,3102.59 C 579.127,3102.6 579.107,3102.61 579.084,3102.62 C 579.061,3102.63 579.033,3102.63 579.001,3102.63 L 578.847,3102.63 C 578.794,3102.63 578.747,3102.64 578.706,3102.65 C 578.665,3102.66 578.63,3102.68 578.601,3102.71 C 578.569,3102.73 578.544,3102.76 578.527,3102.81 C 578.51,3102.85 578.501,3102.89 578.5,3102.95 C 578.499,3103.02 578.515,3103.09 578.548,3103.15 C 578.581,3103.22 578.63,3103.27 578.694,3103.31 C 578.758,3103.35 578.835,3103.37 578.925,3103.38 C 578.982,3103.39 579.034,3103.39 579.081,3103.39 C 579.129,3103.38 579.172,3103.37 579.213,3103.36 C 579.253,3103.34 579.292,3103.32 579.33,3103.28 L 579.209,3103.14 C 579.168,3103.18 579.124,3103.2 579.076,3103.21 C 579.028,3103.22 578.976,3103.22 578.921,3103.21 C 578.87,3103.2 578.827,3103.19 578.793,3103.17 C 578.758,3103.15 578.732,3103.12 578.715,3103.09 C 578.698,3103.05 578.69,3103.02 578.691,3102.98 C 578.691,3102.95 578.695,3102.93 578.703,3102.91 C 578.71,3102.89 578.723,3102.87 578.74,3102.86 C 578.757,3102.85 578.776,3102.84 578.798,3102.83 C 578.82,3102.83 578.849,3102.82 578.884,3102.82 L 579.039,3102.81 C 579.078,3102.81 579.112,3102.81 579.141,3102.81 C 579.171,3102.8 579.197,3102.79 579.219,3102.78 C 579.241,3102.77 579.262,3102.76 579.281,3102.75 C 579.316,3102.72 579.343,3102.68 579.362,3102.64 C 579.38,3102.6 579.39,3102.55 579.392,3102.49 C 579.393,3102.41 579.374,3102.34 579.336,3102.28 C 579.298,3102.21 579.244,3102.16 579.175,3102.12 C 579.106,3102.09 579.026,3102.06 578.934,3102.05 C 578.87,3102.04 578.81,3102.04 578.756,3102.04 Z M 579.663,3102.15 L 579.636,3103.46 L 579.832,3103.49 L 579.859,3102.17 L 579.663,3102.15 Z M 580.198,3102.22 L 580.17,3103.53 L 580.997,3103.63 L 581.001,3103.45 L 580.37,3103.37 L 580.378,3102.99 L 580.916,3103.06 L 580.92,3102.88 L 580.382,3102.81 L 580.39,3102.42 L 581.021,3102.5 L 581.025,3102.32 L 580.198,3102.22 Z M 581.294,3102.35 L 581.267,3103.66 L 581.768,3103.72 C 581.85,3103.73 581.922,3103.73 581.982,3103.7 C 582.043,3103.68 582.09,3103.64 582.124,3103.58 C 582.158,3103.53 582.176,3103.47 582.178,3103.39 C 582.179,3103.33 582.168,3103.27 582.147,3103.22 C 582.125,3103.17 582.095,3103.13 582.057,3103.1 C 582.019,3103.06 581.976,3103.03 581.927,3103.01 L 582.237,3102.47 L 582.008,3102.44 L 581.724,3102.96 L 581.478,3102.93 L 581.49,3102.38 L 581.294,3102.35 Z M 582.484,3102.5 L 582.457,3103.81 L 582.653,3103.84 L 582.68,3102.52 L 582.484,3102.5 Z M 583.019,3102.57 L 582.992,3103.88 L 583.819,3103.98 L 583.822,3103.8 L 583.192,3103.72 L 583.2,3103.34 L 583.738,3103.41 L 583.741,3103.23 L 583.203,3103.16 L 583.211,3102.77 L 583.842,3102.85 L 583.846,3102.67 L 583.019,3102.57 Z M 584.281,3102.73 C 584.227,3102.73 584.177,3102.74 584.131,3102.76 C 584.084,3102.78 584.04,3102.81 583.997,3102.85 L 584.124,3102.99 C 584.172,3102.95 584.223,3102.93 584.278,3102.92 C 584.334,3102.9 584.394,3102.9 584.459,3102.91 C 584.545,3102.92 584.611,3102.95 584.656,3102.99 C 584.701,3103.03 584.723,3103.08 584.722,3103.15 C 584.722,3103.18 584.717,3103.2 584.709,3103.22 C 584.7,3103.24 584.687,3103.26 584.669,3103.28 C 584.652,3103.29 584.632,3103.3 584.609,3103.3 C 584.586,3103.31 584.558,3103.31 584.525,3103.31 L 584.372,3103.32 C 584.319,3103.32 584.272,3103.33 584.231,3103.34 C 584.19,3103.35 584.155,3103.37 584.126,3103.39 C 584.094,3103.42 584.069,3103.45 584.052,3103.49 C 584.035,3103.53 584.026,3103.58 584.025,3103.63 C 584.024,3103.71 584.04,3103.78 584.073,3103.84 C 584.106,3103.9 584.155,3103.95 584.219,3103.99 C 584.283,3104.03 584.359,3104.06 584.45,3104.07 C 584.507,3104.08 584.559,3104.08 584.606,3104.07 C 584.653,3104.07 584.697,3104.06 584.738,3104.04 C 584.778,3104.02 584.817,3104 584.855,3103.97 L 584.734,3103.83 C 584.693,3103.86 584.649,3103.88 584.601,3103.89 C 584.553,3103.9 584.501,3103.9 584.446,3103.89 C 584.395,3103.89 584.352,3103.87 584.318,3103.85 C 584.283,3103.83 584.257,3103.8 584.24,3103.77 C 584.223,3103.74 584.215,3103.7 584.215,3103.66 C 584.216,3103.64 584.22,3103.62 584.228,3103.6 C 584.235,3103.58 584.248,3103.56 584.265,3103.55 C 584.281,3103.53 584.3,3103.52 584.323,3103.52 C 584.345,3103.51 584.373,3103.51 584.408,3103.5 L 584.564,3103.5 C 584.603,3103.5 584.637,3103.49 584.666,3103.49 C 584.696,3103.49 584.721,3103.48 584.744,3103.47 C 584.766,3103.46 584.787,3103.45 584.806,3103.43 C 584.841,3103.4 584.868,3103.37 584.887,3103.33 C 584.905,3103.28 584.915,3103.23 584.917,3103.18 C 584.918,3103.09 584.899,3103.02 584.861,3102.96 C 584.823,3102.9 584.769,3102.85 584.7,3102.81 C 584.631,3102.77 584.551,3102.74 584.459,3102.73 C 584.395,3102.72 584.335,3102.72 584.281,3102.73 Z M 581.475,3103.1 L 581.766,3103.13 C 581.81,3103.14 581.848,3103.15 581.881,3103.17 C 581.913,3103.19 581.938,3103.22 581.956,3103.25 C 581.974,3103.28 581.982,3103.32 581.982,3103.37 C 581.98,3103.41 581.97,3103.44 581.951,3103.47 C 581.932,3103.5 581.906,3103.52 581.873,3103.53 C 581.84,3103.55 581.801,3103.55 581.757,3103.55 L 581.466,3103.51 L 581.475,3103.1 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(571.337 3136.31) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.KAZE_LIGHT_small_individuals--ELEMENTS {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='14.758 -3194.63 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='29.519' y2='82.215' gradientTransform='translate(69.319 3107.07)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-5.044' y2='47.162' gradientTransform='translate(55.989 3109.39)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.616' y2='0' gradientTransform='translate(58.655 3143.77) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='9.051' y2='8.082' gradientTransform='translate(71.204 3182.73)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.039' y2='-0.616' gradientTransform='translate(100.626 3189.39) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.446' y2='-0.865' gradientTransform='translate(51.69 3190.08)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(73.086 3136.3) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke='none'%3E%3Cpath d='M 58.345,3077.98 L 58.345,3186.44 L 98.838,3189.04 L 98.838,3083.47 L 58.345,3077.98 Z' stroke-width='8.676' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 58.345,3077.98 L 47.348,3088.66 L 47.348,3171.62 C 47.348,3171.9 47.343,3172.18 47.334,3172.47 L 47.336,3172.47 L 47.345,3172.46 L 47.348,3191.62 C 47.348,3191.9 47.343,3192.18 47.334,3192.47 L 47.336,3192.47 L 58.345,3186.44 L 58.345,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 58.345,3077.98 L 58.016,3078.3 L 58.016,3186.62 L 58.672,3186.01 L 58.672,3078.03 L 58.345,3077.98 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cg id='Group_1' fill-rule='nonzero' stroke-linejoin='miter' stroke-linecap='round' stroke-width='3.14' fill='%23000000'%3E%3Cg id='Group_2'%3E%3Cg id='Group_3'%3E%3Cpath d='M 66.234,3133.61 L 66.228,3139.78 L 67.246,3139.89 L 67.251,3136.73 L 68.092,3137.64 L 68.848,3138.47 L 70.437,3140.21 L 71.947,3140.36 L 69.453,3137.63 L 71.931,3134.19 L 70.673,3134.07 L 68.696,3136.81 L 67.253,3135.24 L 67.253,3133.72 L 66.234,3133.61 Z M 72.45,3134.24 L 72.974,3135.4 L 75.356,3140.71 L 77.754,3135.89 L 78.273,3134.84 L 77.135,3134.72 L 76.609,3135.77 L 75.358,3138.29 L 74.115,3135.52 L 73.591,3134.36 L 72.45,3134.24 Z M 78.788,3134.89 L 78.8,3134.89 L 79.579,3136.07 L 80.979,3138.18 L 81.627,3139.15 L 82.404,3140.33 L 78.777,3139.96 L 78.774,3141.06 L 83.188,3141.51 L 84.466,3141.64 L 83.678,3140.46 L 82.259,3138.32 L 81.62,3137.35 L 80.85,3136.2 L 84.498,3136.57 L 84.501,3135.47 L 80.085,3135.02 L 80.075,3135.02 L 78.788,3134.89 Z M 86.234,3135.78 C 86.05,3135.85 85.884,3135.95 85.749,3136.09 C 85.604,3136.22 85.496,3136.39 85.418,3136.58 C 85.34,3136.78 85.3,3136.99 85.298,3137.22 L 85.291,3140.06 C 85.291,3140.29 85.33,3140.51 85.411,3140.71 C 85.489,3140.92 85.595,3141.11 85.742,3141.28 C 85.877,3141.44 86.043,3141.58 86.227,3141.68 C 86.413,3141.79 86.613,3141.85 86.825,3141.88 L 90.992,3142.3 L 90.992,3141.2 L 86.825,3140.77 C 86.726,3140.76 86.643,3140.73 86.563,3140.67 C 86.484,3140.61 86.425,3140.54 86.376,3140.45 C 86.328,3140.36 86.307,3140.26 86.307,3140.16 L 86.307,3139.59 L 89.976,3139.96 L 89.978,3138.86 L 86.307,3138.49 L 86.307,3137.32 C 86.307,3137.22 86.333,3137.13 86.379,3137.05 C 86.429,3136.96 86.489,3136.9 86.567,3136.86 C 86.648,3136.82 86.73,3136.8 86.829,3136.81 L 90.997,3137.23 L 90.999,3136.13 L 86.829,3135.71 C 86.62,3135.69 86.422,3135.71 86.234,3135.78 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' stroke-linejoin='miter' stroke-linecap='round' stroke-width='0.269'%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(67.439 3095.81) rotate(90) skewX(-7.19473)' fill='%2339332f'/%3E%3Crect x='-2.276' y='-2.143' width='4.552' height='4.287' transform='translate(73.014 3096.51) rotate(90) skewX(-7.19943)' fill='%23b6b6b3'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(78.588 3097.21) rotate(90) skewX(-7.19473)' fill='%23dcd5c6'/%3E%3Crect x='-2.276' y='-2.145' width='4.553' height='4.29' transform='translate(84.165 3097.92) rotate(90) skewX(-7.19473)' fill='%23ccb7b3'/%3E%3Crect x='-2.276' y='-2.144' width='4.553' height='4.289' transform='translate(89.742 3098.62) rotate(90) skewX(-7.19708)' fill='%23d8b590'/%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-linecap='round' stroke-width='0.361' fill='%23000000'%3E%3Cg id='Group_6'%3E%3Cpath d='M 69.632,3100.75 C 69.595,3100.77 69.561,3100.79 69.529,3100.81 C 69.501,3100.84 69.478,3100.87 69.462,3100.91 C 69.446,3100.95 69.437,3100.99 69.437,3101.03 L 69.437,3101.59 C 69.437,3101.64 69.446,3101.68 69.462,3101.72 C 69.478,3101.76 69.501,3101.8 69.529,3101.83 C 69.561,3101.87 69.595,3101.9 69.632,3101.92 C 69.671,3101.94 69.715,3101.95 69.758,3101.96 L 70.634,3102.06 L 70.634,3101.85 L 69.758,3101.74 C 69.738,3101.74 69.717,3101.73 69.703,3101.72 C 69.685,3101.71 69.673,3101.69 69.664,3101.68 C 69.655,3101.66 69.65,3101.64 69.65,3101.62 L 69.65,3101.51 L 70.418,3101.6 L 70.418,3101.38 L 69.65,3101.29 L 69.65,3101.06 C 69.65,3101.04 69.655,3101.02 69.664,3101 C 69.673,3100.99 69.685,3100.98 69.703,3100.97 C 69.717,3100.96 69.738,3100.96 69.758,3100.96 L 70.634,3101.06 L 70.634,3100.85 L 69.758,3100.74 C 69.715,3100.74 69.671,3100.74 69.632,3100.75 Z M 71.016,3100.93 C 70.979,3100.95 70.945,3100.97 70.915,3100.99 C 70.885,3101.02 70.86,3101.05 70.841,3101.09 C 70.83,3101.12 70.821,3101.14 70.814,3101.17 C 70.807,3101.19 70.802,3101.22 70.802,3101.26 L 70.802,3102.08 L 71.016,3102.11 L 71.016,3101.26 C 71.021,3101.24 71.03,3101.21 71.041,3101.19 C 71.057,3101.17 71.073,3101.16 71.094,3101.15 C 71.115,3101.14 71.138,3101.13 71.163,3101.13 L 71.791,3101.2 L 71.791,3100.99 L 71.181,3100.92 L 71.094,3100.92 C 71.069,3100.92 71.041,3100.92 71.016,3100.93 Z M 72.158,3101.06 C 72.119,3101.07 72.087,3101.09 72.057,3101.12 C 72.027,3101.14 72.004,3101.17 71.988,3101.21 C 71.97,3101.25 71.963,3101.29 71.963,3101.34 L 71.963,3101.89 C 71.963,3101.94 71.97,3101.98 71.988,3102.03 C 72.004,3102.07 72.027,3102.1 72.057,3102.14 C 72.087,3102.17 72.119,3102.2 72.158,3102.22 C 72.2,3102.24 72.239,3102.26 72.285,3102.26 L 73.158,3102.37 L 73.158,3102.15 L 72.285,3102.04 C 72.264,3102.04 72.246,3102.03 72.23,3102.02 C 72.211,3102.01 72.202,3101.99 72.191,3101.97 C 72.179,3101.96 72.175,3101.94 72.175,3101.92 L 72.175,3101.81 L 72.945,3101.9 L 72.945,3101.68 L 72.175,3101.59 L 72.175,3101.36 C 72.175,3101.34 72.179,3101.32 72.191,3101.31 C 72.202,3101.29 72.211,3101.28 72.23,3101.27 C 72.246,3101.26 72.264,3101.26 72.285,3101.26 L 73.158,3101.37 L 73.158,3101.15 L 72.285,3101.05 L 72.218,3101.05 C 72.2,3101.05 72.177,3101.05 72.158,3101.06 Z M 73.331,3101.17 L 73.331,3102.38 L 73.542,3102.24 L 73.928,3101.99 L 74.312,3102.34 L 74.526,3102.53 L 74.526,3101.31 L 74.312,3101.29 L 74.312,3102.06 L 74.103,3101.88 L 73.928,3101.72 L 73.756,3101.83 L 73.542,3101.97 L 73.542,3101.19 L 73.331,3101.17 Z M 74.894,3101.38 C 74.857,3101.4 74.823,3101.42 74.795,3101.44 C 74.763,3101.47 74.742,3101.5 74.726,3101.53 C 74.708,3101.57 74.699,3101.62 74.699,3101.66 L 74.699,3102.22 C 74.699,3102.27 74.708,3102.31 74.726,3102.35 C 74.742,3102.39 74.763,3102.43 74.795,3102.46 C 74.823,3102.5 74.857,3102.52 74.894,3102.55 C 74.935,3102.57 74.977,3102.58 75.02,3102.59 L 75.896,3102.69 L 75.896,3102.47 L 75.02,3102.37 C 75,3102.37 74.984,3102.36 74.965,3102.35 C 74.949,3102.34 74.938,3102.32 74.928,3102.3 C 74.917,3102.28 74.912,3102.27 74.912,3102.25 L 74.912,3102.13 L 75.68,3102.22 L 75.68,3102.01 L 74.912,3101.92 L 74.912,3101.68 C 74.912,3101.67 74.917,3101.65 74.928,3101.63 C 74.938,3101.62 74.949,3101.61 74.965,3101.6 C 74.984,3101.59 75,3101.58 75.02,3101.59 L 75.896,3101.69 L 75.896,3101.48 L 75.02,3101.37 L 74.954,3101.37 C 74.935,3101.37 74.915,3101.38 74.894,3101.38 Z M 76.066,3101.49 L 76.066,3102.71 L 76.28,3102.57 L 77.05,3102.06 L 77.05,3102.83 L 77.266,3102.86 L 77.266,3101.64 L 77.05,3101.78 L 76.28,3102.29 L 76.28,3101.52 L 76.066,3101.49 Z M 77.924,3101.72 L 77.924,3102.72 L 77.434,3102.66 L 77.434,3102.88 L 78.632,3103.02 L 78.632,3102.8 L 78.14,3102.74 L 78.14,3101.74 L 77.924,3101.72 Z M 79.036,3101.88 C 78.99,3101.9 78.951,3101.92 78.917,3101.95 C 78.882,3101.98 78.852,3102.02 78.836,3102.06 C 78.816,3102.11 78.806,3102.16 78.804,3102.21 L 79.02,3102.23 C 79.02,3102.2 79.027,3102.17 79.043,3102.15 C 79.055,3102.13 79.078,3102.11 79.098,3102.1 C 79.126,3102.09 79.154,3102.08 79.183,3102.09 L 79.558,3102.13 C 79.588,3102.13 79.618,3102.15 79.641,3102.17 C 79.669,3102.18 79.687,3102.2 79.703,3102.23 C 79.717,3102.26 79.726,3102.29 79.726,3102.32 C 79.726,3102.35 79.717,3102.37 79.703,3102.4 C 79.687,3102.42 79.669,3102.44 79.641,3102.45 C 79.618,3102.46 79.588,3102.47 79.558,3102.46 L 79.128,3102.41 C 79.085,3102.41 79.043,3102.41 79.004,3102.42 C 78.965,3102.43 78.931,3102.45 78.903,3102.48 C 78.887,3102.49 78.875,3102.51 78.862,3102.52 C 78.843,3102.55 78.829,3102.57 78.818,3102.61 C 78.809,3102.64 78.804,3102.67 78.804,3102.7 L 78.804,3102.71 C 78.806,3102.76 78.813,3102.8 78.829,3102.84 C 78.848,3102.88 78.871,3102.92 78.898,3102.95 C 78.931,3102.99 78.963,3103.02 79,3103.04 C 79.041,3103.06 79.082,3103.07 79.128,3103.08 L 79.613,3103.14 C 79.657,3103.14 79.701,3103.14 79.737,3103.12 C 79.779,3103.11 79.813,3103.09 79.841,3103.07 C 79.871,3103.04 79.894,3103.01 79.912,3102.97 C 79.926,3102.93 79.937,3102.89 79.937,3102.85 L 79.937,3102.84 L 79.724,3102.81 L 79.724,3102.82 C 79.724,3102.84 79.717,3102.86 79.708,3102.87 C 79.698,3102.89 79.682,3102.9 79.669,3102.91 C 79.652,3102.92 79.634,3102.92 79.613,3102.92 L 79.128,3102.86 C 79.108,3102.86 79.089,3102.85 79.073,3102.84 C 79.055,3102.83 79.043,3102.81 79.032,3102.79 C 79.023,3102.77 79.018,3102.76 79.018,3102.74 L 79.018,3102.73 C 79.018,3102.71 79.023,3102.69 79.032,3102.67 C 79.043,3102.66 79.055,3102.65 79.073,3102.64 C 79.089,3102.63 79.108,3102.63 79.128,3102.63 L 79.558,3102.68 L 79.636,3102.68 C 79.664,3102.68 79.689,3102.67 79.714,3102.66 C 79.76,3102.65 79.804,3102.63 79.836,3102.59 C 79.839,3102.59 79.841,3102.58 79.843,3102.58 C 79.848,3102.58 79.848,3102.58 79.85,3102.57 C 79.878,3102.55 79.898,3102.51 79.914,3102.47 C 79.928,3102.43 79.937,3102.39 79.937,3102.34 C 79.937,3102.29 79.926,3102.24 79.908,3102.19 C 79.887,3102.14 79.859,3102.1 79.827,3102.06 C 79.79,3102.02 79.751,3101.99 79.705,3101.96 C 79.659,3101.93 79.611,3101.92 79.558,3101.92 L 79.183,3101.87 C 79.133,3101.86 79.082,3101.87 79.036,3101.88 Z M 81.174,3102.14 C 81.128,3102.15 81.089,3102.17 81.055,3102.2 C 81.02,3102.23 80.993,3102.27 80.972,3102.32 C 80.954,3102.36 80.944,3102.41 80.944,3102.46 L 81.156,3102.49 C 81.156,3102.46 81.165,3102.43 81.179,3102.41 C 81.195,3102.38 81.213,3102.37 81.239,3102.36 C 81.264,3102.34 81.291,3102.34 81.321,3102.34 L 81.696,3102.39 C 81.726,3102.39 81.753,3102.4 81.781,3102.42 C 81.804,3102.44 81.825,3102.46 81.839,3102.49 C 81.855,3102.51 81.862,3102.54 81.862,3102.57 C 81.862,3102.6 81.855,3102.63 81.839,3102.66 C 81.825,3102.68 81.804,3102.69 81.781,3102.71 C 81.753,3102.72 81.726,3102.72 81.696,3102.72 L 81.266,3102.67 C 81.222,3102.66 81.179,3102.67 81.144,3102.68 C 81.103,3102.69 81.068,3102.71 81.041,3102.73 C 81.025,3102.75 81.011,3102.76 80.999,3102.78 C 80.981,3102.8 80.967,3102.83 80.956,3102.86 C 80.949,3102.89 80.944,3102.92 80.944,3102.96 L 80.944,3102.97 C 80.944,3103.01 80.951,3103.06 80.967,3103.1 C 80.986,3103.14 81.009,3103.17 81.039,3103.21 C 81.066,3103.24 81.098,3103.27 81.14,3103.29 C 81.179,3103.31 81.22,3103.33 81.266,3103.33 L 81.749,3103.39 C 81.795,3103.4 81.836,3103.39 81.878,3103.38 C 81.917,3103.37 81.949,3103.35 81.979,3103.32 C 82.009,3103.29 82.032,3103.26 82.05,3103.22 C 82.066,3103.19 82.075,3103.15 82.075,3103.1 L 82.075,3103.1 L 81.862,3103.07 L 81.862,3103.07 C 81.862,3103.1 81.855,3103.11 81.845,3103.13 C 81.836,3103.15 81.822,3103.15 81.804,3103.16 C 81.788,3103.17 81.772,3103.17 81.749,3103.17 L 81.266,3103.12 C 81.243,3103.11 81.227,3103.1 81.211,3103.09 C 81.195,3103.08 81.179,3103.06 81.17,3103.05 C 81.16,3103.03 81.156,3103.01 81.156,3102.99 L 81.156,3102.98 C 81.156,3102.96 81.16,3102.95 81.17,3102.93 C 81.179,3102.91 81.195,3102.9 81.211,3102.89 C 81.227,3102.89 81.243,3102.88 81.266,3102.89 L 81.696,3102.94 L 81.776,3102.94 C 81.802,3102.93 81.827,3102.93 81.85,3102.92 C 81.898,3102.9 81.94,3102.88 81.976,3102.85 C 81.976,3102.84 81.979,3102.84 81.981,3102.84 C 81.983,3102.84 81.986,3102.83 81.988,3102.83 C 82.018,3102.8 82.036,3102.76 82.05,3102.73 C 82.066,3102.69 82.075,3102.65 82.075,3102.6 C 82.073,3102.55 82.064,3102.49 82.043,3102.45 C 82.025,3102.4 81.997,3102.35 81.963,3102.31 C 81.928,3102.27 81.889,3102.24 81.843,3102.22 C 81.797,3102.19 81.749,3102.17 81.696,3102.17 L 81.321,3102.12 C 81.268,3102.12 81.22,3102.12 81.174,3102.14 Z M 82.443,3102.28 C 82.406,3102.3 82.372,3102.32 82.342,3102.34 C 82.314,3102.37 82.289,3102.4 82.273,3102.44 C 82.257,3102.48 82.248,3102.52 82.248,3102.56 L 82.248,3103.12 C 82.248,3103.17 82.257,3103.21 82.273,3103.25 C 82.289,3103.29 82.314,3103.33 82.342,3103.36 C 82.372,3103.4 82.406,3103.43 82.443,3103.45 C 82.482,3103.47 82.524,3103.49 82.57,3103.49 L 83.443,3103.59 L 83.443,3103.37 L 82.57,3103.27 C 82.551,3103.27 82.53,3103.26 82.514,3103.25 C 82.498,3103.24 82.484,3103.22 82.475,3103.2 C 82.466,3103.19 82.462,3103.17 82.462,3103.15 L 82.462,3103.03 L 83.232,3103.13 L 83.232,3102.91 L 82.462,3102.82 L 82.462,3102.59 C 82.462,3102.57 82.466,3102.55 82.475,3102.53 C 82.484,3102.52 82.498,3102.51 82.514,3102.5 C 82.53,3102.49 82.551,3102.49 82.57,3102.49 L 83.443,3102.6 L 83.443,3102.38 L 82.57,3102.27 C 82.524,3102.27 82.482,3102.27 82.443,3102.28 Z M 83.613,3102.4 L 83.613,3103.61 L 84.369,3103.7 C 84.415,3103.7 84.457,3103.7 84.496,3103.69 C 84.533,3103.68 84.565,3103.66 84.597,3103.63 C 84.625,3103.61 84.65,3103.57 84.666,3103.54 C 84.682,3103.5 84.691,3103.46 84.691,3103.41 C 84.691,3103.37 84.682,3103.33 84.666,3103.28 C 84.652,3103.25 84.629,3103.21 84.602,3103.17 C 84.572,3103.14 84.54,3103.11 84.503,3103.09 C 84.473,3103.07 84.443,3103.06 84.411,3103.05 L 84.581,3102.73 L 84.691,3102.52 L 84.452,3102.49 L 84.342,3102.7 L 84.227,3102.91 L 84.222,3102.92 C 84.204,3102.95 84.176,3102.97 84.147,3102.99 C 84.117,3103 84.08,3103.01 84.041,3103 L 83.829,3102.98 L 83.829,3102.42 L 83.613,3102.4 Z M 84.861,3102.55 L 84.861,3103.76 L 85.078,3103.79 L 85.078,3102.57 L 84.861,3102.55 Z M 85.445,3102.64 C 85.406,3102.66 85.372,3102.67 85.344,3102.7 C 85.314,3102.73 85.294,3102.76 85.275,3102.8 C 85.259,3102.84 85.25,3102.88 85.25,3102.92 L 85.25,3103.48 C 85.25,3103.53 85.259,3103.57 85.275,3103.61 C 85.294,3103.65 85.314,3103.69 85.344,3103.72 C 85.372,3103.76 85.406,3103.78 85.445,3103.81 C 85.484,3103.83 85.528,3103.84 85.572,3103.85 L 86.445,3103.95 L 86.445,3103.73 L 85.572,3103.63 C 85.549,3103.63 85.533,3103.62 85.517,3103.61 C 85.498,3103.6 85.487,3103.58 85.477,3103.56 C 85.466,3103.54 85.461,3103.53 85.459,3103.51 L 85.459,3103.39 L 86.231,3103.49 L 86.231,3103.27 L 85.459,3103.18 L 85.459,3102.95 C 85.461,3102.93 85.466,3102.91 85.477,3102.89 C 85.487,3102.88 85.498,3102.86 85.517,3102.86 C 85.533,3102.85 85.549,3102.85 85.572,3102.85 L 86.445,3102.95 L 86.445,3102.74 L 85.572,3102.63 C 85.528,3102.63 85.484,3102.63 85.445,3102.64 Z M 86.848,3102.81 C 86.804,3102.83 86.765,3102.85 86.728,3102.88 C 86.694,3102.91 86.666,3102.95 86.648,3102.99 C 86.627,3103.04 86.618,3103.09 86.618,3103.14 L 86.831,3103.17 C 86.831,3103.14 86.838,3103.11 86.854,3103.09 C 86.868,3103.06 86.889,3103.04 86.912,3103.03 C 86.937,3103.02 86.965,3103.02 86.997,3103.02 L 87.372,3103.06 C 87.402,3103.07 87.429,3103.08 87.452,3103.1 C 87.48,3103.12 87.498,3103.14 87.514,3103.16 C 87.528,3103.19 87.537,3103.22 87.537,3103.25 C 87.537,3103.28 87.528,3103.31 87.514,3103.33 C 87.498,3103.35 87.48,3103.37 87.452,3103.39 C 87.429,3103.4 87.402,3103.4 87.372,3103.4 L 86.94,3103.34 C 86.896,3103.34 86.857,3103.34 86.815,3103.35 C 86.779,3103.37 86.746,3103.39 86.714,3103.41 C 86.7,3103.43 86.687,3103.44 86.673,3103.46 C 86.657,3103.48 86.643,3103.51 86.634,3103.54 C 86.622,3103.57 86.618,3103.6 86.618,3103.64 L 86.618,3103.64 C 86.618,3103.69 86.625,3103.73 86.643,3103.77 C 86.659,3103.82 86.682,3103.86 86.714,3103.89 C 86.742,3103.92 86.774,3103.95 86.813,3103.97 C 86.854,3103.99 86.896,3104 86.94,3104.01 L 87.427,3104.07 C 87.471,3104.08 87.512,3104.07 87.551,3104.06 C 87.59,3104.04 87.625,3104.03 87.652,3104 C 87.684,3103.97 87.707,3103.94 87.723,3103.9 C 87.742,3103.87 87.749,3103.83 87.749,3103.78 L 87.749,3103.77 L 87.535,3103.74 L 87.535,3103.75 C 87.535,3103.77 87.53,3103.79 87.519,3103.81 C 87.51,3103.82 87.496,3103.83 87.482,3103.84 C 87.464,3103.85 87.448,3103.85 87.427,3103.85 L 86.94,3103.79 C 86.919,3103.79 86.903,3103.78 86.884,3103.77 C 86.868,3103.76 86.857,3103.74 86.845,3103.73 C 86.836,3103.71 86.829,3103.68 86.829,3103.67 L 86.829,3103.66 C 86.829,3103.64 86.836,3103.62 86.845,3103.61 C 86.857,3103.59 86.868,3103.58 86.884,3103.57 C 86.903,3103.56 86.919,3103.56 86.94,3103.56 L 87.372,3103.61 C 87.427,3103.62 87.48,3103.62 87.528,3103.6 C 87.574,3103.58 87.615,3103.56 87.65,3103.52 C 87.65,3103.52 87.654,3103.52 87.657,3103.51 C 87.659,3103.51 87.661,3103.51 87.664,3103.51 C 87.691,3103.48 87.71,3103.44 87.728,3103.4 C 87.742,3103.36 87.749,3103.32 87.749,3103.28 C 87.749,3103.22 87.739,3103.17 87.719,3103.12 C 87.698,3103.07 87.673,3103.03 87.641,3102.99 C 87.604,3102.95 87.562,3102.92 87.517,3102.89 C 87.473,3102.87 87.425,3102.86 87.372,3102.85 L 86.997,3102.8 C 86.944,3102.8 86.894,3102.8 86.848,3102.81 Z M 83.829,3103.2 L 84.369,3103.26 C 84.376,3103.26 84.386,3103.26 84.392,3103.27 C 84.399,3103.27 84.409,3103.27 84.415,3103.28 C 84.434,3103.29 84.45,3103.3 84.461,3103.32 C 84.473,3103.34 84.478,3103.36 84.478,3103.39 C 84.478,3103.4 84.475,3103.42 84.468,3103.43 C 84.461,3103.45 84.455,3103.45 84.445,3103.46 C 84.441,3103.47 84.429,3103.48 84.418,3103.48 C 84.411,3103.48 84.402,3103.48 84.395,3103.49 L 84.369,3103.49 L 83.829,3103.42 L 83.829,3103.2 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' fill='%23000000'%3E%3Cg id='Group_8'%3E%3Cpath d='M 75.027,3130.62 C 74.986,3130.63 74.945,3130.64 74.905,3130.65 C 74.85,3130.68 74.8,3130.71 74.756,3130.75 C 74.71,3130.79 74.676,3130.84 74.648,3130.89 C 74.63,3130.93 74.614,3130.97 74.604,3131.01 C 74.595,3131.05 74.591,3131.09 74.588,3131.14 L 74.588,3132.37 L 74.908,3132.4 L 74.908,3131.14 C 74.915,3131.1 74.926,3131.07 74.947,3131.04 C 74.968,3131.01 74.993,3130.99 75.023,3130.97 C 75.055,3130.95 75.089,3130.94 75.126,3130.94 L 76.064,3131.04 L 76.064,3130.71 L 75.156,3130.62 C 75.112,3130.62 75.069,3130.62 75.027,3130.62 Z M 76.319,3130.74 L 76.319,3132.55 L 76.639,3132.58 L 76.639,3130.77 L 76.319,3130.74 Z M 77.443,3130.93 C 77.335,3130.96 77.241,3131.02 77.158,3131.09 C 77.078,3131.17 77.013,3131.26 76.967,3131.36 C 76.921,3131.47 76.898,3131.58 76.896,3131.7 C 76.898,3131.83 76.921,3131.95 76.967,3132.06 C 77.013,3132.18 77.078,3132.28 77.158,3132.37 C 77.241,3132.46 77.335,3132.54 77.443,3132.59 C 77.551,3132.65 77.666,3132.69 77.79,3132.7 L 78.687,3132.79 L 78.687,3132.47 L 77.79,3132.38 C 77.712,3132.37 77.636,3132.35 77.567,3132.31 C 77.498,3132.27 77.436,3132.22 77.386,3132.17 C 77.333,3132.11 77.292,3132.04 77.262,3131.97 C 77.232,3131.9 77.216,3131.82 77.216,3131.74 C 77.216,3131.66 77.232,3131.58 77.262,3131.52 C 77.292,3131.45 77.333,3131.39 77.386,3131.34 C 77.436,3131.3 77.498,3131.26 77.567,3131.24 C 77.636,3131.22 77.712,3131.21 77.79,3131.22 L 78.367,3131.28 L 78.367,3131.62 L 77.79,3131.56 L 77.79,3131.89 L 78.687,3131.98 L 78.687,3130.99 L 77.79,3130.89 L 77.609,3130.89 C 77.551,3130.9 77.496,3130.91 77.443,3130.93 Z M 78.94,3131.01 L 78.94,3132.82 L 79.259,3132.85 L 79.259,3132.2 L 80.411,3132.32 L 80.411,3132.97 L 80.731,3133.01 L 80.731,3131.2 L 80.411,3131.16 L 80.411,3131.99 L 79.259,3131.88 L 79.259,3131.05 L 78.94,3131.01 Z M 81.719,3131.3 L 81.719,3132.78 L 80.986,3132.71 L 80.986,3133.03 L 82.772,3133.22 L 82.772,3132.89 L 82.039,3132.82 L 82.039,3131.33 L 81.719,3131.3 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cpath d='M 58.345,3186.44 L 47.341,3192.47 L 86.411,3194.63 L 98.838,3189.35 L 98.838,3189.04 L 58.345,3186.44 Z' stroke-width='1.11' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 58.672,3186.02 L 58.016,3186.62 L 98.838,3189.28 L 98.838,3188.63 L 58.672,3186.02 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 58.016,3185.43 L 47.345,3191.39 L 47.348,3191.62 C 47.348,3191.9 47.343,3192.18 47.334,3192.47 L 58.016,3186.62 L 58.016,3185.43 Z' stroke-width='6.227' stroke-linejoin='miter' stroke-linecap='round' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ORIGINAL_small_individuals {
  width: 4rem;
  height: 4rem;
  margin-top: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.ORIGINAL_small_individuals--MONO {
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' standalone='no'?%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!--Generator: Xara Designer (www.xara.com), SVG filter version: 6.6.0.0--%3E%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='637.997 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.89' y2='69.197' gradientTransform='translate(682.074 2784.99)'%3E%3Cstop offset='0' stop-color='%23d1c3bf'/%3E%3Cstop offset='1' stop-color='%23ece4df'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.717' y2='69.453' gradientTransform='translate(669.737 2787.13)'%3E%3Cstop offset='0' stop-color='%23bcafac'/%3E%3Cstop offset='1' stop-color='%23e3d8d6'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.402' y2='7.324' gradientTransform='translate(682.052 2854.66)'%3E%3Cstop offset='0' stop-color='%23d0c2be'/%3E%3Cstop offset='1' stop-color='%23ddceca'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.8' gradientTransform='translate(665.757 2861.83)'%3E%3Cstop offset='0' stop-color='%23a99e9a'/%3E%3Cstop offset='1' stop-color='%23c9bbb8'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.569' gradientTransform='translate(711.058 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23ccbeba'/%3E%3Cstop offset='1' stop-color='%23d1c3bf'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.569' y2='0' gradientTransform='translate(672.202 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23c2b5b1'/%3E%3Cstop offset='1' stop-color='%23cabcb9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(696.325 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 671.917,2776.57 L 671.917,2858.45 L 732.748,2862.36 C 732.79,2862.31 732.822,2862.24 732.822,2862.16 L 732.822,2784.82 L 671.917,2776.57 Z' stroke-width='8.03' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 671.917,2776.57 L 659.842,2788.29 L 659.835,2865.07 L 671.917,2858.45 L 671.917,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 671.917,2858.45 L 659.835,2865.07 L 718.869,2868.31 L 732.618,2862.45 C 732.665,2862.43 732.712,2862.4 732.748,2862.36 L 671.917,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 671.613,2857.52 L 659.831,2864.11 L 659.829,2865.07 L 671.613,2858.62 L 671.613,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill='%23000000' fill-rule='nonzero' stroke-width='2.907'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 688.787,2819.56 L 688.779,2826.71 L 689.96,2826.83 L 689.966,2823.18 L 690.941,2824.24 L 691.817,2825.19 L 693.659,2827.21 L 695.409,2827.39 L 692.52,2824.22 L 695.393,2820.23 L 693.935,2820.09 L 691.643,2823.27 L 689.969,2821.45 L 689.969,2819.68 L 688.787,2819.56 Z M 695.994,2820.29 L 696.601,2821.63 L 699.363,2827.79 L 702.144,2822.2 L 702.747,2820.98 L 701.428,2820.85 L 700.818,2822.06 L 699.367,2824.98 L 697.92,2821.76 L 697.318,2820.43 L 695.994,2820.29 Z M 703.344,2821.04 L 703.355,2821.04 L 704.261,2822.41 L 705.883,2824.86 L 706.634,2825.98 L 707.536,2827.35 L 703.329,2826.92 L 703.327,2828.19 L 708.445,2828.71 L 709.926,2828.87 L 709.013,2827.49 L 707.371,2825.01 L 706.628,2823.89 L 705.734,2822.56 L 709.964,2822.99 L 709.966,2821.71 L 704.846,2821.19 L 704.839,2821.19 L 703.344,2821.04 Z M 711.977,2822.07 C 711.764,2822.15 711.571,2822.27 711.413,2822.43 C 711.247,2822.59 711.12,2822.78 711.033,2823 C 710.939,2823.23 710.894,2823.47 710.892,2823.74 L 710.886,2827.03 C 710.886,2827.3 710.93,2827.55 711.024,2827.79 C 711.113,2828.04 711.239,2828.25 711.407,2828.45 C 711.564,2828.64 711.756,2828.8 711.968,2828.92 C 712.184,2829.04 712.415,2829.12 712.663,2829.14 L 717.495,2829.63 L 717.495,2828.36 L 712.663,2827.86 C 712.55,2827.85 712.45,2827.81 712.358,2827.74 C 712.266,2827.68 712.198,2827.59 712.143,2827.49 C 712.088,2827.38 712.062,2827.27 712.062,2827.15 L 712.062,2826.49 L 716.317,2826.92 L 716.317,2825.64 L 712.062,2825.21 L 712.062,2823.86 C 712.062,2823.74 712.092,2823.63 712.147,2823.54 C 712.204,2823.45 712.273,2823.37 712.362,2823.33 C 712.456,2823.27 712.554,2823.26 712.669,2823.27 L 717.501,2823.76 L 717.503,2822.48 L 712.669,2821.99 C 712.426,2821.97 712.195,2821.99 711.977,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 672.218,2858.06 L 671.613,2858.62 L 732.307,2862.58 L 732.618,2862.45 C 732.72,2862.41 732.822,2862.32 732.822,2862.16 L 732.822,2862.01 L 672.218,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 671.613,2858.62 L 671.611,2776.86 L 671.917,2776.57 L 672.218,2776.61 L 672.218,2858.06 L 671.613,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.068' fill='%23000000'%3E%3Cpath d='M 695.275,2815.57 C 695.125,2815.62 694.994,2815.7 694.878,2815.8 C 694.765,2815.9 694.675,2816.03 694.612,2816.17 C 694.549,2816.32 694.516,2816.48 694.514,2816.65 C 694.516,2816.83 694.549,2816.99 694.612,2817.15 C 694.675,2817.31 694.765,2817.45 694.878,2817.58 C 694.994,2817.71 695.125,2817.81 695.275,2817.89 C 695.425,2817.97 695.587,2818.02 695.759,2818.04 C 695.931,2818.06 696.092,2818.04 696.241,2817.99 C 696.393,2817.94 696.524,2817.87 696.638,2817.76 C 696.752,2817.66 696.843,2817.54 696.906,2817.39 C 696.969,2817.25 697.002,2817.09 697.004,2816.91 C 697.002,2816.74 696.969,2816.57 696.906,2816.41 C 696.843,2816.25 696.752,2816.11 696.638,2815.99 C 696.524,2815.86 696.393,2815.75 696.241,2815.67 C 696.092,2815.59 695.931,2815.54 695.759,2815.53 C 695.587,2815.51 695.425,2815.53 695.275,2815.57 Z M 697.266,2815.68 L 697.266,2818.19 L 698.837,2818.36 L 698.97,2818.36 C 699.015,2818.35 699.057,2818.34 699.097,2818.33 C 699.179,2818.3 699.249,2818.26 699.31,2818.21 C 699.372,2818.15 699.418,2818.09 699.454,2818.01 C 699.487,2817.93 699.503,2817.84 699.506,2817.75 C 699.503,2817.66 699.489,2817.57 699.455,2817.49 C 699.422,2817.4 699.377,2817.33 699.318,2817.26 C 699.259,2817.19 699.192,2817.14 699.115,2817.09 C 699.055,2817.06 698.991,2817.03 698.923,2817.02 L 699.278,2816.34 L 699.506,2815.91 L 699.009,2815.86 L 698.781,2816.28 L 698.542,2816.73 L 698.531,2816.75 C 698.49,2816.81 698.44,2816.86 698.373,2816.89 C 698.309,2816.92 698.235,2816.93 698.155,2816.93 L 697.709,2816.88 L 697.709,2815.72 L 697.266,2815.68 Z M 699.863,2815.95 L 699.863,2818.47 L 700.308,2818.52 L 700.308,2816 L 699.863,2815.95 Z M 696.07,2816.07 C 696.166,2816.12 696.249,2816.19 696.326,2816.27 C 696.398,2816.35 696.455,2816.44 696.494,2816.55 C 696.537,2816.65 696.559,2816.76 696.559,2816.87 C 696.559,2816.98 696.537,2817.08 696.494,2817.17 C 696.455,2817.27 696.398,2817.35 696.326,2817.41 C 696.249,2817.48 696.166,2817.53 696.07,2817.56 C 695.973,2817.59 695.868,2817.6 695.759,2817.59 C 695.649,2817.58 695.544,2817.55 695.448,2817.49 C 695.35,2817.44 695.265,2817.38 695.192,2817.3 C 695.121,2817.21 695.062,2817.12 695.021,2817.02 C 694.981,2816.92 694.959,2816.81 694.959,2816.7 C 694.959,2816.59 694.981,2816.48 695.021,2816.39 C 695.062,2816.3 695.121,2816.22 695.192,2816.15 C 695.265,2816.09 695.35,2816.04 695.448,2816 C 695.496,2815.99 695.546,2815.98 695.596,2815.97 L 695.759,2815.97 C 695.868,2815.99 695.973,2816.02 696.07,2816.07 Z M 701.426,2816.22 C 701.274,2816.27 701.142,2816.34 701.031,2816.45 C 700.915,2816.55 700.828,2816.67 700.761,2816.82 C 700.698,2816.96 700.666,2817.12 700.664,2817.3 C 700.666,2817.47 700.698,2817.64 700.761,2817.8 C 700.828,2817.95 700.915,2818.1 701.031,2818.22 C 701.142,2818.35 701.274,2818.45 701.426,2818.53 C 701.576,2818.62 701.736,2818.66 701.908,2818.68 L 703.154,2818.82 L 703.154,2818.36 L 701.908,2818.24 C 701.798,2818.22 701.694,2818.19 701.598,2818.14 C 701.503,2818.09 701.417,2818.02 701.343,2817.94 C 701.27,2817.86 701.213,2817.76 701.172,2817.66 C 701.129,2817.56 701.108,2817.46 701.108,2817.34 C 701.108,2817.23 701.129,2817.13 701.172,2817.03 C 701.213,2816.94 701.27,2816.86 701.343,2816.8 C 701.417,2816.73 701.503,2816.68 701.598,2816.65 C 701.644,2816.63 701.696,2816.62 701.747,2816.62 L 701.908,2816.62 L 702.709,2816.7 L 702.709,2817.18 L 701.908,2817.1 L 701.908,2817.55 L 703.154,2817.68 L 703.154,2816.3 L 701.908,2816.17 C 701.736,2816.15 701.576,2816.17 701.426,2816.22 Z M 703.508,2816.34 L 703.508,2818.85 L 703.953,2818.9 L 703.953,2816.38 L 703.508,2816.34 Z M 704.308,2816.42 L 704.308,2818.92 L 704.753,2818.63 L 706.353,2817.55 L 706.353,2819.15 L 706.796,2819.19 L 706.796,2816.68 L 706.353,2816.98 L 704.753,2818.06 L 704.753,2816.47 L 704.308,2816.42 Z M 707.01,2816.7 L 707.239,2817.18 L 708.28,2819.35 L 709.322,2817.39 L 709.549,2816.97 L 709.051,2816.92 L 708.825,2817.34 L 708.28,2818.36 L 707.735,2817.23 L 707.509,2816.76 L 707.01,2816.7 Z M 710.278,2817.07 C 710.219,2817.08 710.162,2817.09 710.109,2817.11 C 710.031,2817.14 709.96,2817.18 709.901,2817.24 C 709.838,2817.3 709.788,2817.37 709.753,2817.44 C 709.725,2817.49 709.702,2817.55 709.689,2817.6 C 709.677,2817.66 709.668,2817.72 709.668,2817.78 L 709.668,2819.5 L 710.115,2819.54 L 710.115,2817.79 C 710.122,2817.73 710.139,2817.69 710.166,2817.65 C 710.194,2817.61 710.229,2817.58 710.273,2817.55 C 710.316,2817.53 710.362,2817.52 710.417,2817.51 L 711.72,2817.65 L 711.72,2817.2 L 710.457,2817.07 C 710.398,2817.06 710.334,2817.06 710.278,2817.07 Z M 697.709,2817.33 L 698.837,2817.45 C 698.853,2817.45 698.869,2817.45 698.884,2817.46 C 698.899,2817.46 698.914,2817.47 698.929,2817.48 C 698.972,2817.5 699.005,2817.53 699.027,2817.57 C 699.053,2817.61 699.064,2817.66 699.066,2817.7 C 699.064,2817.74 699.055,2817.78 699.039,2817.8 C 699.023,2817.83 699.01,2817.85 698.998,2817.86 C 698.983,2817.87 698.963,2817.88 698.936,2817.9 C 698.909,2817.91 698.876,2817.91 698.837,2817.91 L 697.709,2817.79 L 697.709,2817.33 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cg id='Group_6'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.248'%3E%3Crect x='-2.636' y='-2.484' width='5.273' height='4.968' transform='translate(699.892 2791.06) rotate(90) skewX(-7.18724)' fill='%23000000'/%3E%3Crect x='-2.637' y='-2.484' width='5.275' height='4.969' transform='translate(706.35 2791.87) rotate(90) skewX(-7.20126)' fill='%23ffffff'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.053' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 696.548,2795.98 L 696.516,2797.5 L 696.744,2797.53 L 697.202,2796.64 L 697.612,2797.64 L 697.839,2797.66 L 697.87,2796.14 L 697.643,2796.12 L 697.622,2797.13 L 697.292,2796.35 L 697.123,2796.33 L 696.755,2797.02 L 696.775,2796.01 L 696.548,2795.98 Z M 698.526,2796.25 C 698.461,2796.27 698.404,2796.3 698.354,2796.35 C 698.317,2796.38 698.288,2796.41 698.266,2796.45 C 698.244,2796.49 698.229,2796.53 698.219,2796.58 C 698.208,2796.62 698.201,2796.68 698.198,2796.74 C 698.193,2796.8 698.191,2796.87 698.19,2796.95 C 698.189,2797.03 698.188,2797.1 698.189,2797.16 C 698.19,2797.22 698.194,2797.27 698.203,2797.32 C 698.211,2797.37 698.226,2797.42 698.245,2797.46 C 698.265,2797.5 698.293,2797.54 698.329,2797.58 C 698.376,2797.64 698.431,2797.68 698.495,2797.72 C 698.558,2797.75 698.631,2797.78 698.713,2797.79 C 698.795,2797.8 698.868,2797.79 698.932,2797.78 C 698.997,2797.76 699.054,2797.72 699.104,2797.68 C 699.141,2797.65 699.17,2797.62 699.192,2797.58 C 699.213,2797.54 699.229,2797.5 699.239,2797.45 C 699.25,2797.41 699.257,2797.35 699.26,2797.29 C 699.264,2797.23 699.266,2797.16 699.268,2797.08 C 699.269,2797 699.271,2796.93 699.269,2796.87 C 699.268,2796.81 699.264,2796.76 699.254,2796.71 C 699.246,2796.66 699.232,2796.61 699.213,2796.57 C 699.193,2796.53 699.165,2796.49 699.129,2796.44 C 699.082,2796.39 699.026,2796.34 698.964,2796.31 C 698.9,2796.28 698.827,2796.25 698.745,2796.24 C 698.664,2796.23 698.589,2796.24 698.526,2796.25 Z M 699.622,2796.37 L 699.589,2797.89 L 699.798,2797.91 L 700.514,2796.93 L 700.49,2798 L 700.717,2798.03 L 700.75,2796.51 L 700.541,2796.48 L 699.825,2797.46 L 699.849,2796.39 L 699.622,2796.37 Z M 698.741,2796.45 C 698.786,2796.45 698.827,2796.47 698.864,2796.49 C 698.901,2796.51 698.934,2796.54 698.962,2796.57 C 698.98,2796.59 698.995,2796.62 699.007,2796.64 C 699.018,2796.67 699.026,2796.7 699.031,2796.73 C 699.037,2796.77 699.04,2796.81 699.041,2796.86 C 699.042,2796.92 699.042,2796.98 699.04,2797.05 C 699.039,2797.13 699.037,2797.19 699.033,2797.24 C 699.03,2797.3 699.025,2797.34 699.018,2797.37 C 699.011,2797.41 699.002,2797.43 698.989,2797.46 C 698.978,2797.48 698.961,2797.5 698.943,2797.52 C 698.913,2797.54 698.88,2797.56 698.842,2797.57 C 698.804,2797.59 698.762,2797.59 698.717,2797.58 C 698.672,2797.58 698.63,2797.56 698.593,2797.54 C 698.556,2797.52 698.523,2797.49 698.496,2797.46 C 698.478,2797.44 698.463,2797.41 698.453,2797.39 C 698.441,2797.36 698.433,2797.33 698.427,2797.3 C 698.422,2797.26 698.418,2797.22 698.417,2797.16 C 698.416,2797.11 698.416,2797.05 698.417,2796.97 C 698.419,2796.9 698.422,2796.84 698.425,2796.79 C 698.428,2796.74 698.433,2796.69 698.44,2796.66 C 698.448,2796.63 698.457,2796.6 698.469,2796.57 C 698.482,2796.55 698.497,2796.53 698.515,2796.51 C 698.544,2796.49 698.578,2796.47 698.616,2796.46 C 698.654,2796.44 698.695,2796.44 698.741,2796.45 Z M 701.408,2796.62 C 701.343,2796.64 701.286,2796.67 701.236,2796.71 C 701.199,2796.74 701.17,2796.78 701.148,2796.82 C 701.126,2796.85 701.111,2796.9 701.101,2796.94 C 701.09,2796.99 701.083,2797.04 701.08,2797.1 C 701.077,2797.16 701.073,2797.23 701.072,2797.31 C 701.071,2797.39 701.07,2797.46 701.071,2797.52 C 701.072,2797.58 701.077,2797.64 701.085,2797.69 C 701.094,2797.74 701.108,2797.78 701.127,2797.82 C 701.147,2797.87 701.175,2797.91 701.211,2797.95 C 701.258,2798 701.314,2798.05 701.377,2798.08 C 701.44,2798.12 701.513,2798.14 701.595,2798.15 C 701.677,2798.16 701.751,2798.16 701.814,2798.14 C 701.879,2798.12 701.936,2798.09 701.986,2798.05 C 702.023,2798.01 702.052,2797.98 702.074,2797.94 C 702.096,2797.91 702.111,2797.86 702.121,2797.82 C 702.132,2797.77 702.139,2797.72 702.142,2797.66 C 702.146,2797.6 702.149,2797.53 702.15,2797.45 C 702.151,2797.37 702.153,2797.3 702.151,2797.24 C 702.15,2797.18 702.146,2797.12 702.138,2797.07 C 702.128,2797.02 702.114,2796.98 702.095,2796.93 C 702.075,2796.89 702.047,2796.85 702.011,2796.81 C 701.964,2796.75 701.908,2796.71 701.846,2796.67 C 701.782,2796.64 701.709,2796.62 701.627,2796.61 C 701.546,2796.6 701.472,2796.6 701.408,2796.62 Z M 701.623,2796.81 C 701.668,2796.82 701.709,2796.83 701.746,2796.85 C 701.784,2796.87 701.817,2796.9 701.845,2796.94 C 701.863,2796.96 701.877,2796.98 701.889,2797.01 C 701.9,2797.03 701.908,2797.06 701.914,2797.1 C 701.919,2797.13 701.922,2797.18 701.923,2797.23 C 701.924,2797.28 701.924,2797.34 701.922,2797.42 C 701.921,2797.49 701.919,2797.56 701.915,2797.61 C 701.913,2797.66 701.907,2797.7 701.9,2797.74 C 701.893,2797.77 701.884,2797.8 701.871,2797.82 C 701.86,2797.84 701.843,2797.87 701.825,2797.88 C 701.795,2797.91 701.762,2797.93 701.724,2797.94 C 701.686,2797.95 701.644,2797.95 701.599,2797.95 C 701.554,2797.94 701.513,2797.93 701.476,2797.91 C 701.438,2797.89 701.406,2797.86 701.378,2797.83 C 701.36,2797.8 701.345,2797.78 701.335,2797.75 C 701.323,2797.73 701.315,2797.7 701.309,2797.66 C 701.304,2797.63 701.3,2797.58 701.299,2797.53 C 701.298,2797.48 701.298,2797.42 701.299,2797.34 C 701.301,2797.26 701.304,2797.2 701.307,2797.15 C 701.311,2797.1 701.315,2797.06 701.323,2797.02 C 701.33,2796.99 701.339,2796.96 701.351,2796.94 C 701.364,2796.92 701.379,2796.9 701.397,2796.88 C 701.426,2796.85 701.46,2796.83 701.498,2796.82 C 701.536,2796.81 701.578,2796.8 701.623,2796.81 Z M 703.201,2796.83 C 703.138,2796.83 703.081,2796.85 703.027,2796.87 C 702.973,2796.89 702.922,2796.92 702.872,2796.97 L 703.018,2797.14 C 703.075,2797.09 703.134,2797.06 703.198,2797.04 C 703.261,2797.03 703.332,2797.03 703.407,2797.04 C 703.507,2797.05 703.583,2797.08 703.635,2797.13 C 703.687,2797.18 703.713,2797.24 703.712,2797.31 C 703.712,2797.35 703.706,2797.38 703.697,2797.4 C 703.686,2797.43 703.671,2797.45 703.649,2797.46 C 703.631,2797.48 703.608,2797.49 703.581,2797.49 C 703.554,2797.5 703.522,2797.51 703.484,2797.51 L 703.306,2797.51 C 703.245,2797.51 703.191,2797.52 703.143,2797.53 C 703.096,2797.55 703.055,2797.57 703.021,2797.59 C 702.984,2797.62 702.955,2797.66 702.936,2797.71 C 702.916,2797.76 702.906,2797.81 702.904,2797.87 C 702.902,2797.96 702.921,2798.04 702.96,2798.11 C 702.998,2798.18 703.055,2798.24 703.129,2798.29 C 703.202,2798.34 703.291,2798.37 703.396,2798.38 C 703.463,2798.39 703.523,2798.39 703.577,2798.39 C 703.632,2798.38 703.683,2798.37 703.73,2798.35 C 703.777,2798.33 703.822,2798.3 703.865,2798.27 L 703.726,2798.1 C 703.678,2798.14 703.626,2798.17 703.572,2798.18 C 703.516,2798.19 703.456,2798.19 703.392,2798.18 C 703.333,2798.17 703.283,2798.15 703.244,2798.13 C 703.203,2798.1 703.173,2798.07 703.153,2798.03 C 703.134,2798 703.125,2797.95 703.125,2797.91 C 703.126,2797.88 703.13,2797.85 703.138,2797.83 C 703.148,2797.81 703.163,2797.79 703.182,2797.77 C 703.201,2797.76 703.223,2797.75 703.25,2797.74 C 703.275,2797.73 703.308,2797.73 703.348,2797.72 L 703.528,2797.72 C 703.574,2797.72 703.613,2797.72 703.647,2797.71 C 703.681,2797.7 703.711,2797.7 703.737,2797.68 C 703.763,2797.67 703.787,2797.66 703.809,2797.64 C 703.85,2797.61 703.881,2797.57 703.903,2797.52 C 703.924,2797.47 703.935,2797.41 703.937,2797.35 C 703.938,2797.25 703.917,2797.17 703.873,2797.1 C 703.829,2797.03 703.766,2796.97 703.686,2796.92 C 703.606,2796.88 703.514,2796.85 703.407,2796.83 C 703.332,2796.82 703.264,2796.82 703.201,2796.83 Z M 704.252,2796.95 L 704.219,2798.47 L 705.177,2798.59 L 705.182,2798.39 L 704.451,2798.29 L 704.46,2797.85 L 705.083,2797.93 L 705.088,2797.72 L 704.465,2797.65 L 704.474,2797.19 L 705.205,2797.28 L 705.21,2797.07 L 704.252,2796.95 Z M 705.521,2797.11 L 705.49,2798.63 L 706.07,2798.71 C 706.165,2798.72 706.249,2798.71 706.318,2798.68 C 706.389,2798.65 706.443,2798.61 706.483,2798.54 C 706.522,2798.48 706.543,2798.41 706.545,2798.32 C 706.546,2798.25 706.534,2798.18 706.509,2798.13 C 706.484,2798.07 706.449,2798.02 706.405,2797.98 C 706.361,2797.93 706.311,2797.9 706.254,2797.88 L 706.614,2797.25 L 706.348,2797.22 L 706.019,2797.82 L 705.736,2797.78 L 705.748,2797.14 L 705.521,2797.11 Z M 706.9,2797.29 L 706.868,2798.81 L 707.095,2798.84 L 707.127,2797.32 L 706.9,2797.29 Z M 707.519,2797.37 L 707.488,2798.89 L 708.446,2799.01 L 708.45,2798.8 L 707.72,2798.71 L 707.729,2798.26 L 708.352,2798.34 L 708.356,2798.14 L 707.733,2798.06 L 707.743,2797.6 L 708.473,2797.69 L 708.477,2797.49 L 707.519,2797.37 Z M 708.981,2797.56 C 708.919,2797.56 708.861,2797.58 708.808,2797.6 C 708.753,2797.62 708.702,2797.65 708.652,2797.7 L 708.799,2797.87 C 708.855,2797.82 708.914,2797.79 708.978,2797.78 C 709.043,2797.76 709.112,2797.76 709.187,2797.77 C 709.287,2797.78 709.364,2797.81 709.416,2797.86 C 709.468,2797.91 709.493,2797.97 709.492,2798.04 C 709.492,2798.08 709.486,2798.11 709.477,2798.13 C 709.467,2798.16 709.452,2798.18 709.431,2798.19 C 709.411,2798.21 709.388,2798.22 709.361,2798.23 C 709.335,2798.23 709.302,2798.24 709.265,2798.24 L 709.087,2798.24 C 709.025,2798.24 708.971,2798.25 708.923,2798.26 C 708.876,2798.28 708.835,2798.3 708.802,2798.33 C 708.765,2798.36 708.736,2798.39 708.716,2798.44 C 708.696,2798.49 708.686,2798.54 708.685,2798.6 C 708.684,2798.69 708.702,2798.77 708.74,2798.85 C 708.779,2798.92 708.835,2798.97 708.909,2799.02 C 708.984,2799.07 709.073,2799.1 709.177,2799.11 C 709.243,2799.12 709.303,2799.12 709.358,2799.12 C 709.412,2799.11 709.463,2799.1 709.511,2799.08 C 709.557,2799.06 709.602,2799.03 709.646,2799 L 709.506,2798.84 C 709.459,2798.87 709.408,2798.9 709.352,2798.91 C 709.296,2798.92 709.236,2798.92 709.172,2798.91 C 709.113,2798.9 709.064,2798.89 709.024,2798.86 C 708.984,2798.84 708.953,2798.8 708.934,2798.77 C 708.914,2798.73 708.905,2798.68 708.905,2798.64 C 708.906,2798.61 708.911,2798.59 708.92,2798.56 C 708.928,2798.54 708.943,2798.52 708.963,2798.51 C 708.981,2798.49 709.004,2798.48 709.03,2798.47 C 709.055,2798.46 709.088,2798.46 709.128,2798.46 L 709.309,2798.45 C 709.354,2798.45 709.394,2798.45 709.427,2798.44 C 709.462,2798.44 709.491,2798.43 709.518,2798.42 C 709.543,2798.41 709.567,2798.39 709.589,2798.38 C 709.63,2798.34 709.661,2798.3 709.683,2798.25 C 709.704,2798.2 709.716,2798.14 709.718,2798.08 C 709.719,2797.99 709.697,2797.9 709.653,2797.83 C 709.609,2797.76 709.547,2797.7 709.467,2797.65 C 709.387,2797.61 709.294,2797.58 709.187,2797.56 C 709.113,2797.55 709.044,2797.55 708.981,2797.56 Z M 705.731,2797.98 L 706.068,2798.02 C 706.119,2798.03 706.163,2798.04 706.201,2798.07 C 706.238,2798.09 706.267,2798.12 706.288,2798.16 C 706.309,2798.2 706.318,2798.24 706.318,2798.29 C 706.316,2798.34 706.304,2798.38 706.282,2798.41 C 706.26,2798.45 706.23,2798.47 706.192,2798.49 C 706.154,2798.5 706.109,2798.5 706.058,2798.5 L 705.72,2798.45 L 705.731,2797.98 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ORIGINAL_small_individuals--FONDANT {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='763.356 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.889' y2='69.196' gradientTransform='translate(807.434 2784.99)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23b68e50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.716' y2='69.452' gradientTransform='translate(795.096 2787.13)'%3E%3Cstop offset='0' stop-color='%238a6b3c'/%3E%3Cstop offset='1' stop-color='%23b68e50'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.4' y2='7.325' gradientTransform='translate(807.413 2854.66)'%3E%3Cstop offset='0' stop-color='%239a7742'/%3E%3Cstop offset='1' stop-color='%23a47f47'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.414' y2='-0.8' gradientTransform='translate(791.117 2861.83)'%3E%3Cstop offset='0' stop-color='%237d6136'/%3E%3Cstop offset='1' stop-color='%23947240'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.034' y2='-0.57' gradientTransform='translate(836.419 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23977541'/%3E%3Cstop offset='1' stop-color='%239a7742'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.57' y2='0' gradientTransform='translate(797.562 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%238f6f3e'/%3E%3Cstop offset='1' stop-color='%23957340'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(821.684 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 797.277,2776.57 L 797.277,2858.45 L 858.107,2862.36 C 858.151,2862.31 858.182,2862.24 858.182,2862.15 L 858.182,2784.82 L 797.277,2776.57 Z' stroke-width='8.031' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 797.277,2776.57 L 785.202,2788.29 L 785.194,2865.07 L 797.277,2858.45 L 797.277,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 797.277,2858.45 L 785.194,2865.07 L 844.23,2868.31 L 857.978,2862.45 C 858.025,2862.43 858.071,2862.4 858.107,2862.36 L 797.277,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 796.973,2857.52 L 785.191,2864.11 L 785.188,2865.07 L 796.973,2858.62 L 796.973,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cpath d='M 797.577,2858.06 L 796.973,2858.62 L 857.667,2862.58 L 857.978,2862.45 C 858.079,2862.41 858.182,2862.32 858.182,2862.15 L 858.182,2862.01 L 797.577,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 796.973,2858.62 L 796.971,2776.86 L 797.277,2776.57 L 797.577,2776.61 L 797.577,2858.06 L 796.973,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-linejoin='miter' stroke-width='2.906' fill='%23ffffff'%3E%3Cg id='Group_3'%3E%3Cpath d='M 814.146,2819.56 L 814.139,2826.71 L 815.319,2826.83 L 815.326,2823.18 L 816.301,2824.24 L 817.177,2825.19 L 819.018,2827.21 L 820.769,2827.39 L 817.878,2824.22 L 820.753,2820.23 L 819.293,2820.08 L 817.003,2823.27 L 815.328,2821.45 L 815.328,2819.68 L 814.146,2819.56 Z M 821.355,2820.29 L 821.961,2821.63 L 824.724,2827.79 L 827.505,2822.2 L 828.106,2820.98 L 826.787,2820.85 L 826.179,2822.06 L 824.727,2824.98 L 823.281,2821.77 L 822.678,2820.43 L 821.355,2820.29 Z M 828.705,2821.04 L 828.715,2821.04 L 829.621,2822.41 L 831.244,2824.86 L 831.995,2825.98 L 832.897,2827.35 L 828.69,2826.92 L 828.688,2828.19 L 833.805,2828.71 L 835.286,2828.87 L 834.372,2827.49 L 832.73,2825.01 L 831.988,2823.89 L 831.094,2822.56 L 835.325,2822.99 L 835.327,2821.71 L 830.206,2821.19 L 830.198,2821.19 L 828.705,2821.04 Z M 837.337,2822.07 C 837.123,2822.15 836.932,2822.27 836.774,2822.43 C 836.607,2822.59 836.478,2822.78 836.393,2823 C 836.299,2823.23 836.254,2823.47 836.253,2823.74 L 836.246,2827.03 C 836.246,2827.3 836.291,2827.55 836.384,2827.8 C 836.473,2828.04 836.598,2828.25 836.767,2828.45 C 836.924,2828.64 837.116,2828.8 837.329,2828.92 C 837.543,2829.04 837.776,2829.12 838.022,2829.14 L 842.855,2829.63 L 842.855,2828.36 L 838.022,2827.86 C 837.909,2827.85 837.808,2827.81 837.718,2827.74 C 837.627,2827.68 837.559,2827.59 837.503,2827.49 C 837.449,2827.38 837.423,2827.27 837.423,2827.15 L 837.423,2826.49 L 841.675,2826.92 L 841.679,2825.64 L 837.423,2825.21 L 837.423,2823.86 C 837.423,2823.74 837.453,2823.63 837.508,2823.54 C 837.565,2823.45 837.634,2823.37 837.723,2823.33 C 837.815,2823.27 837.914,2823.26 838.029,2823.27 L 842.862,2823.76 L 842.863,2822.48 L 838.029,2821.99 C 837.786,2821.97 837.553,2821.99 837.337,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_4' stroke-linejoin='miter' stroke-width='0.249'%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(815.547 2789.88) rotate(90) skewX(-7.19316)' fill='%23003660'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(822.012 2790.7) rotate(90) skewX(-7.19721)' fill='%23cf3400'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(828.477 2791.51) rotate(90) skewX(-7.19518)' fill='%23bf0000'/%3E%3Crect x='-2.64' y='-2.487' width='5.28' height='4.975' transform='translate(834.943 2792.33) rotate(90) skewX(-7.19316)' fill='%2393170b'/%3E%3Crect x='-2.64' y='-2.486' width='5.28' height='4.973' transform='translate(841.408 2793.14) rotate(90) skewX(-7.19518)' fill='%23114700'/%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.068' fill='%23ffffff'%3E%3Cg id='Group_6'%3E%3Cpath d='M 820.737,2815.58 C 820.587,2815.63 820.456,2815.71 820.34,2815.81 C 820.227,2815.91 820.137,2816.03 820.073,2816.18 C 820.01,2816.33 819.977,2816.49 819.975,2816.66 C 819.977,2816.83 820.01,2817 820.073,2817.16 C 820.137,2817.32 820.227,2817.46 820.34,2817.59 C 820.456,2817.71 820.587,2817.82 820.737,2817.9 C 820.887,2817.98 821.049,2818.03 821.221,2818.05 C 821.393,2818.06 821.554,2818.05 821.703,2818 C 821.855,2817.95 821.986,2817.87 822.1,2817.77 C 822.214,2817.67 822.305,2817.55 822.368,2817.4 C 822.431,2817.25 822.464,2817.09 822.466,2816.92 C 822.464,2816.74 822.431,2816.58 822.368,2816.42 C 822.305,2816.26 822.214,2816.12 822.1,2815.99 C 821.986,2815.86 821.855,2815.76 821.703,2815.68 C 821.554,2815.6 821.393,2815.55 821.221,2815.53 C 821.049,2815.51 820.887,2815.53 820.737,2815.58 Z M 822.728,2815.68 L 822.728,2818.2 L 824.299,2818.36 L 824.432,2818.36 C 824.477,2818.36 824.519,2818.35 824.559,2818.34 C 824.641,2818.31 824.711,2818.27 824.772,2818.22 C 824.834,2818.16 824.88,2818.09 824.916,2818.01 C 824.949,2817.94 824.965,2817.85 824.968,2817.76 C 824.965,2817.67 824.951,2817.58 824.917,2817.49 C 824.884,2817.41 824.839,2817.34 824.78,2817.27 C 824.721,2817.2 824.654,2817.14 824.577,2817.1 C 824.517,2817.06 824.453,2817.04 824.385,2817.03 L 824.74,2816.34 L 824.968,2815.92 L 824.471,2815.86 L 824.243,2816.29 L 824.004,2816.74 L 823.993,2816.76 C 823.952,2816.82 823.902,2816.87 823.835,2816.9 C 823.771,2816.93 823.697,2816.94 823.617,2816.93 L 823.171,2816.89 L 823.171,2815.73 L 822.728,2815.68 Z M 825.325,2815.96 L 825.325,2818.48 L 825.77,2818.52 L 825.77,2816.01 L 825.325,2815.96 Z M 821.532,2816.08 C 821.628,2816.13 821.711,2816.2 821.788,2816.28 C 821.86,2816.36 821.917,2816.45 821.956,2816.55 C 821.999,2816.66 822.021,2816.76 822.021,2816.87 C 822.021,2816.99 821.999,2817.09 821.956,2817.18 C 821.917,2817.27 821.86,2817.35 821.788,2817.42 C 821.711,2817.49 821.628,2817.54 821.532,2817.57 C 821.435,2817.6 821.33,2817.61 821.221,2817.6 C 821.111,2817.59 821.006,2817.55 820.91,2817.5 C 820.812,2817.45 820.727,2817.38 820.654,2817.3 C 820.583,2817.22 820.524,2817.13 820.483,2817.03 C 820.443,2816.93 820.421,2816.82 820.421,2816.71 C 820.421,2816.59 820.443,2816.49 820.483,2816.4 C 820.524,2816.3 820.583,2816.23 820.654,2816.16 C 820.727,2816.09 820.812,2816.04 820.91,2816.01 C 820.958,2815.99 821.008,2815.99 821.058,2815.98 L 821.221,2815.98 C 821.33,2815.99 821.435,2816.03 821.532,2816.08 Z M 826.888,2816.23 C 826.736,2816.27 826.604,2816.35 826.493,2816.45 C 826.377,2816.55 826.29,2816.68 826.223,2816.82 C 826.16,2816.97 826.128,2817.13 826.126,2817.3 C 826.128,2817.48 826.16,2817.65 826.223,2817.8 C 826.29,2817.96 826.377,2818.1 826.493,2818.23 C 826.604,2818.36 826.736,2818.46 826.888,2818.54 C 827.038,2818.62 827.198,2818.67 827.37,2818.69 L 828.616,2818.82 L 828.616,2818.37 L 827.37,2818.24 C 827.26,2818.23 827.156,2818.2 827.06,2818.15 C 826.965,2818.1 826.879,2818.03 826.805,2817.95 C 826.732,2817.87 826.675,2817.77 826.634,2817.67 C 826.591,2817.57 826.57,2817.46 826.57,2817.35 C 826.57,2817.24 826.591,2817.14 826.634,2817.04 C 826.675,2816.95 826.732,2816.87 826.805,2816.8 C 826.879,2816.74 826.965,2816.69 827.06,2816.66 C 827.106,2816.64 827.158,2816.63 827.209,2816.63 L 827.37,2816.63 L 828.171,2816.71 L 828.171,2817.19 L 827.37,2817.11 L 827.37,2817.56 L 828.616,2817.69 L 828.616,2816.3 L 827.37,2816.18 C 827.198,2816.16 827.038,2816.18 826.888,2816.23 Z M 828.97,2816.34 L 828.97,2818.86 L 829.415,2818.91 L 829.415,2816.39 L 828.97,2816.34 Z M 829.77,2816.43 L 829.77,2818.93 L 830.215,2818.63 L 831.815,2817.56 L 831.815,2819.16 L 832.258,2819.2 L 832.258,2816.69 L 831.815,2816.99 L 830.215,2818.06 L 830.215,2816.47 L 829.77,2816.43 Z M 832.472,2816.71 L 832.701,2817.18 L 833.742,2819.36 L 834.784,2817.4 L 835.011,2816.98 L 834.513,2816.93 L 834.287,2817.35 L 833.742,2818.37 L 833.197,2817.24 L 832.971,2816.76 L 832.472,2816.71 Z M 835.74,2817.07 C 835.681,2817.08 835.624,2817.1 835.571,2817.12 C 835.493,2817.15 835.422,2817.19 835.363,2817.25 C 835.3,2817.31 835.25,2817.37 835.215,2817.45 C 835.187,2817.5 835.164,2817.55 835.151,2817.61 C 835.139,2817.67 835.13,2817.73 835.13,2817.79 L 835.13,2819.51 L 835.577,2819.55 L 835.577,2817.8 C 835.584,2817.74 835.601,2817.7 835.628,2817.66 C 835.656,2817.61 835.691,2817.58 835.735,2817.56 C 835.778,2817.54 835.824,2817.52 835.879,2817.52 L 837.182,2817.66 L 837.182,2817.2 L 835.919,2817.07 C 835.86,2817.07 835.796,2817.07 835.74,2817.07 Z M 823.171,2817.33 L 824.299,2817.45 C 824.315,2817.45 824.331,2817.46 824.346,2817.46 C 824.361,2817.47 824.376,2817.48 824.391,2817.49 C 824.434,2817.51 824.467,2817.54 824.489,2817.58 C 824.515,2817.62 824.526,2817.66 824.528,2817.71 C 824.526,2817.75 824.517,2817.78 824.501,2817.81 C 824.485,2817.84 824.472,2817.85 824.46,2817.87 C 824.445,2817.88 824.425,2817.89 824.398,2817.9 C 824.371,2817.91 824.338,2817.92 824.299,2817.92 L 823.171,2817.8 L 823.171,2817.33 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='Group_7' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.038' fill='%23ffffff'%3E%3Cg id='Group_8'%3E%3Cpath d='M 819.064,2795.79 L 819.064,2796.78 C 819.064,2796.84 819.075,2796.88 819.092,2796.93 C 819.112,2796.98 819.137,2797.02 819.171,2797.06 C 819.202,2797.1 819.241,2797.12 819.286,2797.15 C 819.328,2797.17 819.375,2797.19 819.426,2797.19 L 820.412,2797.3 L 820.412,2797.06 L 819.428,2796.95 C 819.404,2796.95 819.385,2796.94 819.367,2796.93 C 819.347,2796.91 819.333,2796.9 819.321,2796.88 C 819.311,2796.86 819.304,2796.84 819.304,2796.81 L 819.304,2796.68 L 820.172,2796.78 L 820.172,2796.54 L 819.302,2796.44 L 819.302,2795.81 L 819.064,2795.79 Z M 820.801,2796.04 C 820.721,2796.06 820.648,2796.1 820.587,2796.16 C 820.524,2796.22 820.477,2796.28 820.443,2796.36 C 820.408,2796.44 820.388,2796.52 820.388,2796.62 C 820.388,2796.71 820.408,2796.81 820.443,2796.89 C 820.477,2796.98 820.524,2797.05 820.587,2797.12 C 820.648,2797.19 820.721,2797.25 820.801,2797.29 C 820.882,2797.34 820.97,2797.37 821.063,2797.38 C 821.157,2797.39 821.245,2797.38 821.325,2797.36 C 821.407,2797.33 821.479,2797.29 821.54,2797.23 C 821.601,2797.17 821.652,2797.11 821.685,2797.03 C 821.719,2796.95 821.734,2796.87 821.739,2796.77 C 821.734,2796.68 821.719,2796.59 821.685,2796.5 C 821.652,2796.41 821.601,2796.34 821.54,2796.27 C 821.479,2796.2 821.407,2796.14 821.325,2796.1 C 821.245,2796.05 821.157,2796.03 821.063,2796.01 C 820.97,2796 820.882,2796.01 820.801,2796.04 Z M 821.885,2796.11 L 821.885,2797.47 L 822.125,2797.3 L 822.99,2796.73 L 822.99,2797.6 L 823.231,2797.62 L 823.231,2796.26 L 822.99,2796.42 L 822.125,2796.99 L 822.125,2796.13 L 821.885,2796.11 Z M 821.063,2796.26 C 821.123,2796.26 821.18,2796.28 821.232,2796.31 C 821.286,2796.34 821.329,2796.38 821.371,2796.42 C 821.411,2796.46 821.44,2796.52 821.463,2796.57 C 821.485,2796.63 821.495,2796.68 821.498,2796.74 C 821.495,2796.81 821.485,2796.86 821.463,2796.91 C 821.44,2796.96 821.411,2797.01 821.371,2797.04 C 821.329,2797.08 821.286,2797.1 821.232,2797.12 C 821.18,2797.13 821.123,2797.14 821.063,2797.13 C 821.004,2797.13 820.947,2797.11 820.895,2797.08 C 820.842,2797.05 820.797,2797.01 820.757,2796.97 C 820.718,2796.93 820.687,2796.88 820.663,2796.82 C 820.642,2796.76 820.629,2796.71 820.629,2796.65 C 820.629,2796.59 820.642,2796.53 820.663,2796.48 C 820.687,2796.43 820.718,2796.39 820.757,2796.35 C 820.797,2796.32 820.842,2796.29 820.895,2796.27 C 820.947,2796.26 821.004,2796.25 821.063,2796.26 Z M 823.425,2796.28 L 823.425,2797.65 L 824.099,2797.72 L 824.097,2797.72 C 824.191,2797.73 824.279,2797.72 824.359,2797.7 C 824.441,2797.67 824.513,2797.63 824.574,2797.58 C 824.635,2797.52 824.684,2797.45 824.719,2797.38 C 824.752,2797.3 824.771,2797.21 824.772,2797.11 C 824.771,2797.03 824.757,2796.95 824.731,2796.87 C 824.703,2796.79 824.662,2796.72 824.612,2796.66 C 824.607,2796.65 824.6,2796.64 824.593,2796.63 C 824.587,2796.62 824.581,2796.62 824.572,2796.61 C 824.513,2796.54 824.441,2796.48 824.359,2796.44 C 824.279,2796.39 824.194,2796.37 824.099,2796.36 L 823.425,2796.28 Z M 824.721,2796.43 L 824.844,2796.68 L 825.409,2797.87 L 825.973,2796.81 L 826.096,2796.58 L 825.826,2796.55 L 825.702,2796.78 L 825.409,2797.33 L 825.112,2796.71 L 824.989,2796.46 L 824.721,2796.43 Z M 823.664,2796.55 L 824.097,2796.6 C 824.158,2796.61 824.214,2796.62 824.266,2796.65 C 824.319,2796.68 824.364,2796.72 824.405,2796.76 C 824.443,2796.81 824.474,2796.86 824.495,2796.91 C 824.519,2796.97 824.53,2797.02 824.532,2797.09 C 824.53,2797.15 824.519,2797.2 824.495,2797.25 C 824.474,2797.3 824.443,2797.35 824.405,2797.38 C 824.364,2797.42 824.319,2797.44 824.266,2797.46 C 824.214,2797.48 824.158,2797.48 824.097,2797.48 L 823.664,2797.43 L 823.664,2796.55 Z M 826.212,2796.59 L 826.212,2797.95 L 826.454,2797.79 L 827.319,2797.22 L 827.319,2798.08 L 827.56,2798.11 L 827.56,2796.74 L 827.319,2796.91 L 826.454,2797.48 L 826.454,2796.62 L 826.212,2796.59 Z M 828.307,2796.83 L 828.307,2797.95 L 827.753,2797.89 L 827.753,2798.13 L 829.1,2798.29 L 829.1,2798.04 L 828.547,2797.98 L 828.547,2796.86 L 828.307,2796.83 Z M 830.495,2797.11 C 830.443,2797.13 830.399,2797.15 830.359,2797.19 C 830.32,2797.22 830.289,2797.26 830.266,2797.31 C 830.245,2797.37 830.234,2797.42 830.234,2797.48 L 830.474,2797.51 C 830.474,2797.47 830.484,2797.44 830.5,2797.41 C 830.514,2797.39 830.539,2797.37 830.567,2797.36 C 830.595,2797.34 830.624,2797.34 830.659,2797.34 L 831.081,2797.39 C 831.117,2797.39 831.147,2797.4 831.175,2797.42 C 831.203,2797.44 831.226,2797.47 831.242,2797.5 C 831.258,2797.53 831.266,2797.56 831.268,2797.6 C 831.266,2797.63 831.258,2797.66 831.242,2797.69 C 831.226,2797.71 831.203,2797.73 831.175,2797.75 C 831.147,2797.76 831.117,2797.76 831.081,2797.76 L 830.596,2797.71 C 830.546,2797.7 830.5,2797.7 830.459,2797.72 C 830.415,2797.73 830.377,2797.75 830.343,2797.78 C 830.327,2797.8 830.311,2797.82 830.296,2797.83 C 830.277,2797.86 830.262,2797.89 830.249,2797.93 C 830.238,2797.96 830.234,2798 830.234,2798.04 L 830.234,2798.04 C 830.234,2798.09 830.243,2798.14 830.262,2798.19 C 830.281,2798.24 830.307,2798.28 830.338,2798.32 C 830.373,2798.35 830.411,2798.39 830.455,2798.41 C 830.499,2798.43 830.546,2798.45 830.596,2798.45 L 831.143,2798.52 L 831.215,2798.52 C 831.239,2798.51 831.262,2798.51 831.284,2798.5 C 831.329,2798.49 831.368,2798.47 831.401,2798.44 C 831.432,2798.41 831.458,2798.37 831.477,2798.33 C 831.497,2798.29 831.508,2798.24 831.508,2798.19 L 831.508,2798.18 L 831.266,2798.15 L 831.266,2798.16 C 831.264,2798.18 831.261,2798.2 831.25,2798.22 C 831.237,2798.24 831.222,2798.25 831.204,2798.26 C 831.185,2798.27 831.164,2798.27 831.143,2798.27 L 830.596,2798.21 C 830.573,2798.21 830.551,2798.2 830.535,2798.18 C 830.514,2798.17 830.5,2798.15 830.49,2798.14 C 830.479,2798.11 830.473,2798.09 830.473,2798.07 L 830.473,2798.06 C 830.473,2798.04 830.479,2798.02 830.49,2798 C 830.5,2797.98 830.514,2797.97 830.535,2797.96 C 830.551,2797.95 830.573,2797.95 830.596,2797.95 L 831.081,2798.01 C 831.143,2798.01 831.203,2798.01 831.257,2797.99 C 831.309,2797.97 831.356,2797.94 831.394,2797.9 C 831.397,2797.9 831.401,2797.89 831.402,2797.89 C 831.405,2797.89 831.407,2797.89 831.409,2797.89 C 831.441,2797.85 831.464,2797.81 831.481,2797.77 C 831.499,2797.72 831.508,2797.68 831.508,2797.62 C 831.508,2797.56 831.494,2797.51 831.474,2797.45 C 831.451,2797.4 831.42,2797.35 831.382,2797.3 C 831.343,2797.26 831.298,2797.22 831.248,2797.2 C 831.194,2797.17 831.14,2797.15 831.081,2797.14 L 830.659,2797.1 C 830.6,2797.09 830.546,2797.1 830.495,2797.11 Z M 831.923,2797.27 C 831.879,2797.28 831.841,2797.3 831.806,2797.34 C 831.774,2797.37 831.747,2797.4 831.729,2797.44 C 831.71,2797.48 831.701,2797.53 831.701,2797.58 L 831.701,2798.21 C 831.701,2798.26 831.71,2798.31 831.729,2798.36 C 831.747,2798.4 831.774,2798.45 831.806,2798.48 C 831.841,2798.52 831.879,2798.55 831.923,2798.57 C 831.966,2798.6 832.014,2798.61 832.063,2798.62 L 833.047,2798.73 L 833.047,2798.49 L 832.063,2798.38 C 832.042,2798.37 832.02,2798.37 832.001,2798.35 C 831.983,2798.34 831.969,2798.32 831.956,2798.3 C 831.946,2798.28 831.942,2798.26 831.938,2798.24 L 831.938,2798.11 L 832.807,2798.21 L 832.807,2797.97 L 831.938,2797.87 L 831.938,2797.61 C 831.942,2797.59 831.946,2797.57 831.956,2797.55 C 831.969,2797.53 831.983,2797.52 832.001,2797.51 C 832.02,2797.5 832.042,2797.5 832.063,2797.5 L 833.047,2797.61 L 833.047,2797.37 L 832.063,2797.25 L 831.99,2797.25 C 831.966,2797.26 831.942,2797.26 831.923,2797.27 Z M 833.239,2797.38 L 833.239,2798.75 L 834.09,2798.84 C 834.14,2798.85 834.188,2798.85 834.23,2798.83 C 834.277,2798.82 834.314,2798.8 834.345,2798.77 C 834.379,2798.74 834.406,2798.7 834.424,2798.66 C 834.442,2798.62 834.452,2798.57 834.452,2798.52 C 834.452,2798.47 834.443,2798.42 834.424,2798.38 C 834.408,2798.33 834.382,2798.29 834.35,2798.25 C 834.317,2798.22 834.282,2798.18 834.239,2798.16 C 834.207,2798.14 834.173,2798.13 834.137,2798.12 L 834.328,2797.75 L 834.452,2797.52 L 834.182,2797.49 L 834.059,2797.72 L 833.93,2797.96 L 833.924,2797.97 C 833.904,2798.01 833.873,2798.03 833.839,2798.05 C 833.802,2798.07 833.765,2798.07 833.719,2798.07 L 833.48,2798.04 L 833.48,2797.41 L 833.239,2797.38 Z M 834.648,2797.55 L 834.648,2798.91 L 834.888,2798.94 L 834.888,2797.57 L 834.648,2797.55 Z M 835.303,2797.65 C 835.26,2797.66 835.22,2797.69 835.189,2797.72 C 835.154,2797.75 835.128,2797.78 835.112,2797.83 C 835.093,2797.87 835.083,2797.91 835.083,2797.97 L 835.083,2798.59 C 835.083,2798.64 835.093,2798.69 835.112,2798.74 C 835.128,2798.78 835.154,2798.83 835.189,2798.86 C 835.22,2798.9 835.26,2798.93 835.303,2798.96 C 835.348,2798.98 835.394,2798.99 835.443,2799 L 836.43,2799.11 L 836.43,2798.87 L 835.443,2798.76 C 835.422,2798.75 835.4,2798.75 835.382,2798.73 C 835.365,2798.72 835.35,2798.7 835.338,2798.68 C 835.327,2798.66 835.323,2798.64 835.32,2798.62 L 835.32,2798.49 L 836.188,2798.59 L 836.188,2798.35 L 835.32,2798.25 L 835.32,2797.99 C 835.323,2797.97 835.327,2797.95 835.338,2797.93 C 835.35,2797.91 835.365,2797.9 835.382,2797.89 C 835.4,2797.88 835.422,2797.88 835.443,2797.88 L 836.43,2797.99 L 836.43,2797.75 L 835.443,2797.64 C 835.394,2797.63 835.348,2797.64 835.303,2797.65 Z M 836.883,2797.83 C 836.834,2797.85 836.787,2797.88 836.747,2797.91 C 836.711,2797.95 836.68,2797.99 836.657,2798.04 C 836.636,2798.09 836.624,2798.14 836.624,2798.2 L 836.864,2798.22 C 836.864,2798.19 836.873,2798.16 836.89,2798.14 C 836.906,2798.11 836.928,2798.09 836.957,2798.08 C 836.983,2798.06 837.013,2798.06 837.051,2798.06 L 837.472,2798.11 C 837.506,2798.11 837.537,2798.13 837.565,2798.15 C 837.594,2798.17 837.613,2798.19 837.631,2798.22 C 837.647,2798.25 837.656,2798.28 837.656,2798.32 C 837.656,2798.35 837.647,2798.38 837.631,2798.41 C 837.613,2798.43 837.594,2798.45 837.565,2798.47 C 837.537,2798.48 837.506,2798.49 837.472,2798.48 L 836.986,2798.43 C 836.936,2798.42 836.89,2798.43 836.847,2798.44 C 836.804,2798.45 836.767,2798.47 836.732,2798.5 C 836.715,2798.52 836.701,2798.54 836.687,2798.56 C 836.667,2798.58 836.652,2798.61 836.639,2798.65 C 836.628,2798.68 836.624,2798.72 836.624,2798.76 L 836.624,2798.76 C 836.624,2798.82 836.634,2798.86 836.652,2798.91 C 836.671,2798.96 836.697,2799 836.729,2799.04 C 836.764,2799.08 836.802,2799.1 836.844,2799.13 C 836.887,2799.15 836.936,2799.17 836.986,2799.18 L 837.532,2799.24 L 837.603,2799.24 C 837.627,2799.24 837.649,2799.23 837.673,2799.22 C 837.718,2799.21 837.757,2799.19 837.789,2799.16 C 837.823,2799.13 837.849,2799.09 837.867,2799.05 C 837.886,2799.01 837.897,2798.96 837.897,2798.91 L 837.897,2798.9 L 837.656,2798.87 L 837.656,2798.88 C 837.654,2798.9 837.649,2798.92 837.64,2798.94 C 837.627,2798.96 837.613,2798.97 837.595,2798.98 C 837.576,2798.99 837.553,2798.99 837.532,2798.99 L 836.986,2798.93 C 836.963,2798.93 836.942,2798.92 836.924,2798.91 C 836.906,2798.89 836.89,2798.88 836.879,2798.86 C 836.869,2798.84 836.863,2798.81 836.863,2798.79 L 836.863,2798.78 C 836.863,2798.76 836.869,2798.74 836.879,2798.72 C 836.89,2798.7 836.906,2798.69 836.924,2798.68 C 836.942,2798.67 836.963,2798.67 836.986,2798.67 L 837.472,2798.73 L 837.562,2798.73 C 837.591,2798.72 837.618,2798.72 837.645,2798.71 C 837.699,2798.69 837.746,2798.66 837.784,2798.62 C 837.786,2798.62 837.789,2798.62 837.792,2798.61 C 837.794,2798.61 837.797,2798.61 837.799,2798.61 C 837.83,2798.57 837.854,2798.53 837.872,2798.49 C 837.889,2798.44 837.897,2798.4 837.897,2798.34 C 837.896,2798.28 837.884,2798.22 837.863,2798.17 C 837.842,2798.12 837.808,2798.07 837.771,2798.03 C 837.734,2797.98 837.69,2797.95 837.636,2797.92 C 837.584,2797.89 837.528,2797.87 837.472,2797.87 L 837.051,2797.82 C 836.99,2797.81 836.936,2797.82 836.883,2797.83 Z M 833.48,2798.28 L 834.09,2798.35 C 834.099,2798.35 834.107,2798.35 834.115,2798.36 C 834.123,2798.36 834.133,2798.37 834.14,2798.37 C 834.163,2798.38 834.181,2798.4 834.192,2798.42 C 834.204,2798.44 834.214,2798.47 834.214,2798.49 C 834.211,2798.51 834.207,2798.53 834.199,2798.55 C 834.192,2798.56 834.185,2798.57 834.177,2798.57 C 834.169,2798.58 834.159,2798.59 834.144,2798.59 C 834.129,2798.6 834.112,2798.6 834.09,2798.6 L 833.48,2798.53 L 833.48,2798.28 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ORIGINAL_small_individuals--EYE_CANDY {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='116.655pt' height='116.655pt' viewBox='513.008 -2880.76 116.655 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='42.89' y2='69.197' gradientTransform='translate(557.085 2784.99)'%3E%3Cstop offset='0' stop-color='%23e2e2e2'/%3E%3Cstop offset='1' stop-color='%23ffffff'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_1' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-4.717' y2='69.453' gradientTransform='translate(544.748 2787.13)'%3E%3Cstop offset='0' stop-color='%23cbcbcb'/%3E%3Cstop offset='1' stop-color='%23e7e4e4'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_2' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.402' y2='7.324' gradientTransform='translate(557.063 2854.66)'%3E%3Cstop offset='0' stop-color='%23e1e1e1'/%3E%3Cstop offset='1' stop-color='%23efefef'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_3' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.415' y2='-0.8' gradientTransform='translate(540.768 2861.83)'%3E%3Cstop offset='0' stop-color='%23b7b7b7'/%3E%3Cstop offset='1' stop-color='%23d9d9d9'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_4' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0.036' y2='-0.569' gradientTransform='translate(586.069 2861.18) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23dddddd'/%3E%3Cstop offset='1' stop-color='%23e2e2e2'/%3E%3C/linearGradient%3E%3ClinearGradient id='LinearGradient_5' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='-0.569' y2='0' gradientTransform='translate(547.213 2818.95) scale(0.5)' spreadMethod='reflect'%3E%3Cstop offset='0' stop-color='%23d2d2d2'/%3E%3Cstop offset='1' stop-color='%23dadada'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(571.336 2822.44) rotate(90)' stroke='none' stroke-width='0.399' stroke-linejoin='miter' stroke-linecap='round'/%3E%3Cg id='Group' stroke-linecap='round' stroke='none'%3E%3Cg id='Group_1' stroke-linejoin='miter'%3E%3Cpath d='M 546.928,2776.57 L 546.928,2858.45 L 607.759,2862.36 C 607.801,2862.31 607.833,2862.24 607.833,2862.16 L 607.833,2784.82 L 546.928,2776.57 Z' stroke-width='8.03' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 546.928,2776.57 L 534.853,2788.29 L 534.846,2865.07 L 546.928,2858.45 L 546.928,2776.57 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_1)'/%3E%3Cpath d='M 546.928,2858.45 L 534.846,2865.07 L 593.88,2868.31 L 607.629,2862.45 C 607.676,2862.43 607.723,2862.4 607.759,2862.36 L 546.928,2858.45 Z' stroke-width='1.028' marker-start='none' marker-end='none' fill='url(%23LinearGradient_2)'/%3E%3Cpath d='M 546.624,2857.52 L 534.842,2864.11 L 534.84,2865.07 L 546.624,2858.62 L 546.624,2857.52 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_3)'/%3E%3Cg id='Group_2' fill-rule='nonzero' stroke-width='2.907' fill='%23000000'%3E%3Cg id='Group_3'%3E%3Cg id='Group_4'%3E%3Cpath d='M 563.798,2819.56 L 563.79,2826.71 L 564.971,2826.83 L 564.977,2823.18 L 565.952,2824.24 L 566.828,2825.19 L 568.67,2827.21 L 570.42,2827.39 L 567.531,2824.22 L 570.404,2820.23 L 568.946,2820.09 L 566.654,2823.27 L 564.98,2821.45 L 564.98,2819.68 L 563.798,2819.56 Z M 571.005,2820.29 L 571.612,2821.63 L 574.374,2827.79 L 577.155,2822.2 L 577.758,2820.98 L 576.439,2820.85 L 575.829,2822.06 L 574.378,2824.98 L 572.931,2821.76 L 572.329,2820.43 L 571.005,2820.29 Z M 578.355,2821.04 L 578.366,2821.04 L 579.272,2822.41 L 580.894,2824.86 L 581.645,2825.98 L 582.547,2827.35 L 578.34,2826.92 L 578.338,2828.19 L 583.456,2828.71 L 584.937,2828.87 L 584.024,2827.49 L 582.382,2825.01 L 581.639,2823.89 L 580.745,2822.56 L 584.975,2822.99 L 584.977,2821.71 L 579.857,2821.19 L 579.85,2821.19 L 578.355,2821.04 Z M 586.988,2822.07 C 586.775,2822.15 586.582,2822.27 586.424,2822.43 C 586.258,2822.59 586.131,2822.78 586.044,2823 C 585.95,2823.23 585.905,2823.47 585.903,2823.74 L 585.897,2827.03 C 585.897,2827.3 585.941,2827.55 586.035,2827.79 C 586.124,2828.04 586.25,2828.25 586.418,2828.45 C 586.575,2828.64 586.767,2828.8 586.979,2828.92 C 587.195,2829.04 587.426,2829.12 587.674,2829.14 L 592.506,2829.63 L 592.506,2828.36 L 587.674,2827.86 C 587.561,2827.85 587.461,2827.81 587.369,2827.74 C 587.277,2827.68 587.209,2827.59 587.154,2827.49 C 587.099,2827.38 587.073,2827.27 587.073,2827.15 L 587.073,2826.49 L 591.328,2826.92 L 591.328,2825.64 L 587.073,2825.21 L 587.073,2823.86 C 587.073,2823.74 587.103,2823.63 587.158,2823.54 C 587.215,2823.45 587.284,2823.37 587.373,2823.33 C 587.467,2823.27 587.565,2823.26 587.68,2823.27 L 592.512,2823.76 L 592.514,2822.48 L 587.68,2821.99 C 587.437,2821.97 587.206,2821.99 586.988,2822.07 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath d='M 547.229,2858.06 L 546.624,2858.62 L 607.318,2862.58 L 607.629,2862.45 C 607.731,2862.41 607.833,2862.32 607.833,2862.16 L 607.833,2862.01 L 547.229,2858.06 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_4)'/%3E%3Cpath d='M 546.624,2858.62 L 546.622,2776.86 L 546.928,2776.57 L 547.229,2776.61 L 547.229,2858.06 L 546.624,2858.62 Z' stroke-width='5.765' marker-start='none' marker-end='none' fill='url(%23LinearGradient_5)'/%3E%3C/g%3E%3Cg id='Group_5' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.068' fill='%23000000'%3E%3Cpath d='M 570.286,2815.57 C 570.136,2815.62 570.005,2815.7 569.889,2815.8 C 569.776,2815.9 569.686,2816.03 569.623,2816.17 C 569.56,2816.32 569.527,2816.48 569.525,2816.65 C 569.527,2816.83 569.56,2816.99 569.623,2817.15 C 569.686,2817.31 569.776,2817.45 569.889,2817.58 C 570.005,2817.71 570.136,2817.81 570.286,2817.89 C 570.436,2817.97 570.598,2818.02 570.77,2818.04 C 570.942,2818.06 571.103,2818.04 571.252,2817.99 C 571.404,2817.94 571.535,2817.87 571.649,2817.76 C 571.763,2817.66 571.854,2817.54 571.917,2817.39 C 571.98,2817.25 572.013,2817.09 572.015,2816.91 C 572.013,2816.74 571.98,2816.57 571.917,2816.41 C 571.854,2816.25 571.763,2816.11 571.649,2815.99 C 571.535,2815.86 571.404,2815.75 571.252,2815.67 C 571.103,2815.59 570.942,2815.54 570.77,2815.53 C 570.598,2815.51 570.436,2815.53 570.286,2815.57 Z M 572.277,2815.68 L 572.277,2818.19 L 573.848,2818.36 L 573.981,2818.36 C 574.026,2818.35 574.068,2818.34 574.108,2818.33 C 574.19,2818.3 574.26,2818.26 574.321,2818.21 C 574.383,2818.15 574.429,2818.09 574.465,2818.01 C 574.498,2817.93 574.514,2817.84 574.517,2817.75 C 574.514,2817.66 574.5,2817.57 574.466,2817.49 C 574.433,2817.4 574.388,2817.33 574.329,2817.26 C 574.27,2817.19 574.203,2817.14 574.126,2817.09 C 574.066,2817.06 574.002,2817.03 573.934,2817.02 L 574.289,2816.34 L 574.517,2815.91 L 574.02,2815.86 L 573.792,2816.28 L 573.553,2816.73 L 573.542,2816.75 C 573.501,2816.81 573.451,2816.86 573.384,2816.89 C 573.32,2816.92 573.246,2816.93 573.166,2816.93 L 572.72,2816.88 L 572.72,2815.72 L 572.277,2815.68 Z M 574.874,2815.95 L 574.874,2818.47 L 575.319,2818.52 L 575.319,2816 L 574.874,2815.95 Z M 571.081,2816.07 C 571.177,2816.12 571.26,2816.19 571.337,2816.27 C 571.409,2816.35 571.466,2816.44 571.505,2816.55 C 571.548,2816.65 571.57,2816.76 571.57,2816.87 C 571.57,2816.98 571.548,2817.08 571.505,2817.17 C 571.466,2817.27 571.409,2817.35 571.337,2817.41 C 571.26,2817.48 571.177,2817.53 571.081,2817.56 C 570.984,2817.59 570.879,2817.6 570.77,2817.59 C 570.66,2817.58 570.555,2817.55 570.459,2817.49 C 570.361,2817.44 570.276,2817.38 570.203,2817.3 C 570.132,2817.21 570.073,2817.12 570.032,2817.02 C 569.992,2816.92 569.97,2816.81 569.97,2816.7 C 569.97,2816.59 569.992,2816.48 570.032,2816.39 C 570.073,2816.3 570.132,2816.22 570.203,2816.15 C 570.276,2816.09 570.361,2816.04 570.459,2816 C 570.507,2815.99 570.557,2815.98 570.607,2815.97 L 570.77,2815.97 C 570.879,2815.99 570.984,2816.02 571.081,2816.07 Z M 576.437,2816.22 C 576.285,2816.27 576.153,2816.34 576.042,2816.45 C 575.926,2816.55 575.839,2816.67 575.772,2816.82 C 575.709,2816.96 575.677,2817.12 575.675,2817.3 C 575.677,2817.47 575.709,2817.64 575.772,2817.8 C 575.839,2817.95 575.926,2818.1 576.042,2818.22 C 576.153,2818.35 576.285,2818.45 576.437,2818.53 C 576.587,2818.62 576.747,2818.66 576.919,2818.68 L 578.165,2818.82 L 578.165,2818.36 L 576.919,2818.24 C 576.809,2818.22 576.705,2818.19 576.609,2818.14 C 576.514,2818.09 576.428,2818.02 576.354,2817.94 C 576.281,2817.86 576.224,2817.76 576.183,2817.66 C 576.14,2817.56 576.119,2817.46 576.119,2817.34 C 576.119,2817.23 576.14,2817.13 576.183,2817.03 C 576.224,2816.94 576.281,2816.86 576.354,2816.8 C 576.428,2816.73 576.514,2816.68 576.609,2816.65 C 576.655,2816.63 576.707,2816.62 576.758,2816.62 L 576.919,2816.62 L 577.72,2816.7 L 577.72,2817.18 L 576.919,2817.1 L 576.919,2817.55 L 578.165,2817.68 L 578.165,2816.3 L 576.919,2816.17 C 576.747,2816.15 576.587,2816.17 576.437,2816.22 Z M 578.519,2816.34 L 578.519,2818.85 L 578.964,2818.9 L 578.964,2816.38 L 578.519,2816.34 Z M 579.319,2816.42 L 579.319,2818.92 L 579.764,2818.63 L 581.364,2817.55 L 581.364,2819.15 L 581.807,2819.19 L 581.807,2816.68 L 581.364,2816.98 L 579.764,2818.06 L 579.764,2816.47 L 579.319,2816.42 Z M 582.021,2816.7 L 582.25,2817.18 L 583.291,2819.35 L 584.333,2817.39 L 584.56,2816.97 L 584.062,2816.92 L 583.836,2817.34 L 583.291,2818.36 L 582.746,2817.23 L 582.52,2816.76 L 582.021,2816.7 Z M 585.289,2817.07 C 585.23,2817.08 585.173,2817.09 585.12,2817.11 C 585.042,2817.14 584.971,2817.18 584.912,2817.24 C 584.849,2817.3 584.799,2817.37 584.764,2817.44 C 584.736,2817.49 584.713,2817.55 584.7,2817.6 C 584.688,2817.66 584.679,2817.72 584.679,2817.78 L 584.679,2819.5 L 585.126,2819.54 L 585.126,2817.79 C 585.133,2817.73 585.15,2817.69 585.177,2817.65 C 585.205,2817.61 585.24,2817.58 585.284,2817.55 C 585.327,2817.53 585.373,2817.52 585.428,2817.51 L 586.731,2817.65 L 586.731,2817.2 L 585.468,2817.07 C 585.409,2817.06 585.345,2817.06 585.289,2817.07 Z M 572.72,2817.33 L 573.848,2817.45 C 573.864,2817.45 573.88,2817.45 573.895,2817.46 C 573.91,2817.46 573.925,2817.47 573.94,2817.48 C 573.983,2817.5 574.016,2817.53 574.038,2817.57 C 574.064,2817.61 574.075,2817.66 574.077,2817.7 C 574.075,2817.74 574.066,2817.78 574.05,2817.8 C 574.034,2817.83 574.021,2817.85 574.009,2817.86 C 573.994,2817.87 573.974,2817.88 573.947,2817.9 C 573.92,2817.91 573.887,2817.91 573.848,2817.91 L 572.72,2817.79 L 572.72,2817.33 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cg id='Group_6'%3E%3Cg id='Group_7' stroke-linejoin='miter' stroke-width='0.248'%3E%3Crect x='-2.639' y='-2.486' width='5.279' height='4.973' transform='translate(565.204 2789.89) rotate(90) skewX(-7.19518)' fill='%231880d9'/%3E%3Crect x='-2.638' y='-2.484' width='5.276' height='4.969' transform='translate(571.666 2790.7) rotate(90) skewX(-7.20126)' fill='%2313a875'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(578.127 2791.52) rotate(90) skewX(-7.19721)' fill='%2387c74c'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(584.591 2792.34) rotate(90) skewX(-7.19721)' fill='%23fc5f9b'/%3E%3Crect x='-2.638' y='-2.486' width='5.277' height='4.972' transform='translate(591.052 2793.15) rotate(90) skewX(-7.19721)' fill='%234f34de'/%3E%3C/g%3E%3Cg id='Group_8' fill-rule='nonzero' stroke-linejoin='round' stroke-width='0.053' fill='%23000000'%3E%3Cg id='Group_9'%3E%3Cpath d='M 569.102,2795.63 L 569.07,2797.15 L 570.029,2797.27 L 570.034,2797.06 L 569.302,2796.97 L 569.311,2796.53 L 569.935,2796.61 L 569.94,2796.4 L 569.316,2796.32 L 569.325,2795.86 L 570.057,2795.96 L 570.061,2795.75 L 569.102,2795.63 Z M 570.636,2795.82 L 570.623,2796.45 L 570.156,2797.29 L 570.404,2797.32 L 570.732,2796.69 L 571.032,2797.4 L 571.281,2797.43 L 570.851,2796.48 L 570.864,2795.85 L 570.636,2795.82 Z M 571.52,2795.93 L 571.488,2797.45 L 572.447,2797.58 L 572.451,2797.37 L 571.72,2797.28 L 571.729,2796.83 L 572.353,2796.91 L 572.357,2796.71 L 571.733,2796.63 L 571.743,2796.17 L 572.474,2796.26 L 572.479,2796.05 L 571.52,2795.93 Z M 573.563,2796.22 C 573.498,2796.24 573.441,2796.27 573.392,2796.31 C 573.355,2796.34 573.326,2796.38 573.304,2796.42 C 573.283,2796.45 573.267,2796.49 573.256,2796.54 C 573.246,2796.59 573.239,2796.64 573.235,2796.7 C 573.231,2796.76 573.228,2796.83 573.227,2796.91 C 573.225,2796.99 573.225,2797.06 573.226,2797.12 C 573.227,2797.18 573.232,2797.24 573.241,2797.29 C 573.249,2797.34 573.263,2797.38 573.283,2797.43 C 573.303,2797.47 573.331,2797.51 573.366,2797.55 C 573.413,2797.61 573.468,2797.65 573.532,2797.69 C 573.596,2797.72 573.668,2797.74 573.75,2797.75 C 573.843,2797.77 573.927,2797.76 574.001,2797.73 C 574.076,2797.7 574.139,2797.66 574.189,2797.6 C 574.24,2797.53 574.275,2797.45 574.296,2797.35 L 574.064,2797.33 C 574.051,2797.38 574.031,2797.42 574.004,2797.45 C 573.977,2797.49 573.942,2797.52 573.901,2797.53 C 573.859,2797.55 573.81,2797.56 573.755,2797.55 C 573.709,2797.54 573.668,2797.53 573.631,2797.51 C 573.594,2797.49 573.562,2797.46 573.535,2797.43 C 573.517,2797.41 573.502,2797.38 573.49,2797.36 C 573.479,2797.33 573.47,2797.3 573.465,2797.26 C 573.459,2797.23 573.455,2797.18 573.454,2797.13 C 573.453,2797.08 573.453,2797.02 573.455,2796.94 C 573.456,2796.87 573.458,2796.8 573.462,2796.75 C 573.466,2796.7 573.471,2796.66 573.478,2796.62 C 573.485,2796.59 573.495,2796.56 573.507,2796.54 C 573.52,2796.52 573.536,2796.5 573.555,2796.48 C 573.583,2796.45 573.616,2796.43 573.654,2796.42 C 573.691,2796.41 573.733,2796.41 573.778,2796.41 C 573.834,2796.42 573.882,2796.44 573.923,2796.46 C 573.965,2796.49 573.998,2796.53 574.025,2796.57 C 574.051,2796.61 574.07,2796.66 574.081,2796.71 L 574.308,2796.74 C 574.292,2796.64 574.26,2796.55 574.212,2796.47 C 574.164,2796.4 574.104,2796.34 574.03,2796.29 C 573.957,2796.25 573.874,2796.22 573.783,2796.21 C 573.701,2796.2 573.627,2796.2 573.563,2796.22 Z M 574.421,2796.3 L 574.939,2797.89 L 575.123,2797.92 L 575.705,2796.46 L 575.462,2796.43 L 575.353,2796.73 L 574.76,2796.65 L 574.663,2796.33 L 574.421,2796.3 Z M 575.918,2796.49 L 575.886,2798.01 L 576.094,2798.04 L 576.81,2797.06 L 576.788,2798.13 L 577.015,2798.16 L 577.047,2796.63 L 576.839,2796.61 L 576.123,2797.59 L 576.145,2796.52 L 575.918,2796.49 Z M 577.44,2796.68 L 577.409,2798.2 L 577.936,2798.27 C 578.029,2798.28 578.11,2798.28 578.18,2798.26 C 578.25,2798.23 578.312,2798.19 578.365,2798.13 C 578.402,2798.09 578.429,2798.04 578.447,2797.99 C 578.464,2797.93 578.476,2797.87 578.481,2797.8 C 578.486,2797.74 578.49,2797.66 578.491,2797.58 C 578.493,2797.5 578.493,2797.42 578.49,2797.35 C 578.488,2797.28 578.479,2797.22 578.464,2797.16 C 578.449,2797.1 578.424,2797.05 578.389,2797 C 578.338,2796.92 578.279,2796.87 578.21,2796.83 C 578.141,2796.79 578.06,2796.76 577.967,2796.75 L 577.44,2796.68 Z M 574.824,2796.86 L 575.285,2796.91 L 575.043,2797.56 L 574.824,2796.86 Z M 579.076,2796.89 L 579.063,2797.52 L 578.595,2798.36 L 578.844,2798.39 L 579.172,2797.76 L 579.472,2798.47 L 579.721,2798.5 L 579.29,2797.55 L 579.303,2796.92 L 579.076,2796.89 Z M 577.664,2796.92 L 577.938,2796.95 C 577.991,2796.96 578.04,2796.97 578.082,2796.99 C 578.125,2797.02 578.162,2797.05 578.193,2797.09 C 578.216,2797.12 578.233,2797.16 578.244,2797.2 C 578.255,2797.24 578.261,2797.29 578.263,2797.35 C 578.265,2797.41 578.265,2797.47 578.263,2797.55 C 578.262,2797.63 578.259,2797.69 578.255,2797.75 C 578.25,2797.81 578.242,2797.85 578.23,2797.89 C 578.217,2797.93 578.199,2797.97 578.174,2797.99 C 578.141,2798.02 578.104,2798.05 578.06,2798.06 C 578.017,2798.07 577.968,2798.07 577.915,2798.06 L 577.64,2798.03 L 577.664,2796.92 Z M 580.659,2797.1 C 580.596,2797.1 580.538,2797.12 580.484,2797.14 C 580.43,2797.16 580.379,2797.2 580.329,2797.24 L 580.476,2797.41 C 580.532,2797.36 580.591,2797.33 580.655,2797.32 C 580.719,2797.3 580.789,2797.3 580.865,2797.31 C 580.965,2797.32 581.041,2797.35 581.093,2797.4 C 581.145,2797.45 581.171,2797.51 581.17,2797.58 C 581.17,2797.62 581.164,2797.65 581.155,2797.67 C 581.145,2797.7 581.129,2797.72 581.108,2797.74 C 581.089,2797.75 581.066,2797.76 581.039,2797.77 C 581.012,2797.77 580.98,2797.78 580.942,2797.78 L 580.764,2797.78 C 580.703,2797.78 580.648,2797.79 580.6,2797.8 C 580.553,2797.82 580.512,2797.84 580.479,2797.87 C 580.441,2797.9 580.413,2797.93 580.393,2797.98 C 580.373,2798.03 580.363,2798.08 580.361,2798.15 C 580.36,2798.24 580.378,2798.32 580.417,2798.39 C 580.456,2798.46 580.512,2798.52 580.586,2798.56 C 580.66,2798.61 580.749,2798.64 580.854,2798.65 C 580.92,2798.66 580.981,2798.66 581.036,2798.66 C 581.09,2798.65 581.141,2798.64 581.188,2798.62 C 581.235,2798.6 581.28,2798.58 581.323,2798.54 L 581.183,2798.38 C 581.136,2798.42 581.085,2798.44 581.029,2798.45 C 580.974,2798.46 580.914,2798.46 580.85,2798.45 C 580.79,2798.44 580.741,2798.43 580.701,2798.4 C 580.661,2798.38 580.631,2798.35 580.611,2798.31 C 580.591,2798.27 580.581,2798.23 580.582,2798.18 C 580.583,2798.15 580.587,2798.13 580.596,2798.1 C 580.605,2798.08 580.62,2798.06 580.64,2798.05 C 580.659,2798.03 580.681,2798.02 580.707,2798.01 C 580.732,2798 580.765,2798 580.806,2798 L 580.986,2797.99 C 581.032,2797.99 581.071,2797.99 581.105,2797.98 C 581.139,2797.98 581.169,2797.97 581.195,2797.96 C 581.221,2797.95 581.245,2797.93 581.267,2797.92 C 581.308,2797.88 581.339,2797.84 581.361,2797.79 C 581.382,2797.74 581.394,2797.68 581.395,2797.62 C 581.396,2797.53 581.375,2797.44 581.331,2797.37 C 581.286,2797.3 581.224,2797.24 581.144,2797.19 C 581.064,2797.15 580.971,2797.12 580.865,2797.1 C 580.79,2797.1 580.721,2797.09 580.659,2797.1 Z M 581.709,2797.22 L 581.678,2798.74 L 582.637,2798.87 L 582.641,2798.66 L 581.909,2798.57 L 581.919,2798.12 L 582.543,2798.2 L 582.547,2798 L 581.923,2797.92 L 581.932,2797.46 L 582.664,2797.55 L 582.668,2797.35 L 581.709,2797.22 Z M 582.98,2797.39 L 582.948,2798.91 L 583.53,2798.98 C 583.625,2798.99 583.708,2798.98 583.778,2798.95 C 583.849,2798.92 583.903,2798.88 583.943,2798.82 C 583.982,2798.76 584.003,2798.68 584.005,2798.6 C 584.006,2798.52 583.994,2798.46 583.969,2798.4 C 583.944,2798.34 583.909,2798.29 583.865,2798.25 C 583.821,2798.21 583.771,2798.18 583.714,2798.15 L 584.074,2797.52 L 583.808,2797.49 L 583.479,2798.09 L 583.194,2798.05 L 583.208,2797.41 L 582.98,2797.39 Z M 584.36,2797.56 L 584.328,2799.08 L 584.556,2799.11 L 584.588,2797.59 L 584.36,2797.56 Z M 584.98,2797.64 L 584.949,2799.16 L 585.907,2799.28 L 585.912,2799.07 L 585.18,2798.98 L 585.189,2798.54 L 585.813,2798.62 L 585.818,2798.41 L 585.194,2798.33 L 585.203,2797.87 L 585.935,2797.97 L 585.939,2797.76 L 584.98,2797.64 Z M 586.443,2797.83 C 586.381,2797.84 586.323,2797.85 586.269,2797.87 C 586.215,2797.9 586.163,2797.93 586.114,2797.97 L 586.261,2798.14 C 586.316,2798.09 586.376,2798.06 586.44,2798.05 C 586.504,2798.03 586.574,2798.03 586.65,2798.04 C 586.749,2798.06 586.825,2798.09 586.878,2798.13 C 586.93,2798.18 586.956,2798.24 586.955,2798.32 C 586.954,2798.35 586.949,2798.38 586.939,2798.41 C 586.929,2798.43 586.914,2798.45 586.893,2798.47 C 586.873,2798.48 586.85,2798.49 586.824,2798.5 C 586.797,2798.51 586.764,2798.51 586.727,2798.51 L 586.549,2798.51 C 586.487,2798.52 586.433,2798.52 586.385,2798.54 C 586.338,2798.55 586.297,2798.57 586.264,2798.6 C 586.226,2798.63 586.197,2798.67 586.178,2798.71 C 586.158,2798.76 586.147,2798.82 586.146,2798.88 C 586.145,2798.97 586.163,2799.05 586.202,2799.12 C 586.241,2799.19 586.297,2799.25 586.371,2799.3 C 586.445,2799.34 586.534,2799.37 586.639,2799.39 C 586.705,2799.4 586.766,2799.4 586.82,2799.39 C 586.875,2799.39 586.926,2799.37 586.973,2799.36 C 587.02,2799.34 587.065,2799.31 587.108,2799.27 L 586.968,2799.11 C 586.921,2799.15 586.869,2799.17 586.814,2799.18 C 586.758,2799.19 586.699,2799.19 586.634,2799.18 C 586.575,2799.18 586.526,2799.16 586.486,2799.14 C 586.446,2799.11 586.416,2799.08 586.396,2799.04 C 586.376,2799 586.366,2798.96 586.367,2798.91 C 586.367,2798.89 586.372,2798.86 586.381,2798.84 C 586.39,2798.81 586.405,2798.79 586.425,2798.78 C 586.444,2798.76 586.466,2798.75 586.491,2798.74 C 586.517,2798.74 586.55,2798.73 586.591,2798.73 L 586.771,2798.73 C 586.816,2798.72 586.856,2798.72 586.89,2798.72 C 586.924,2798.71 586.954,2798.7 586.98,2798.69 C 587.006,2798.68 587.03,2798.67 587.051,2798.65 C 587.092,2798.62 587.124,2798.58 587.145,2798.53 C 587.167,2798.48 587.179,2798.42 587.18,2798.35 C 587.181,2798.26 587.16,2798.18 587.115,2798.1 C 587.071,2798.03 587.009,2797.97 586.929,2797.93 C 586.849,2797.88 586.756,2797.85 586.65,2797.84 C 586.575,2797.83 586.506,2797.83 586.443,2797.83 Z M 583.19,2798.25 L 583.527,2798.29 C 583.578,2798.3 583.623,2798.32 583.66,2798.34 C 583.698,2798.36 583.727,2798.39 583.748,2798.43 C 583.768,2798.47 583.778,2798.51 583.778,2798.56 C 583.776,2798.61 583.765,2798.66 583.742,2798.69 C 583.721,2798.72 583.69,2798.74 583.652,2798.76 C 583.613,2798.77 583.568,2798.78 583.518,2798.77 L 583.18,2798.73 L 583.19,2798.25 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.shipping-logo {
  width: 4rem;
  height: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='117.265pt' height='116.655pt' viewBox='1264.31 -2974.3 117.265 116.655'%3E%3Cdefs%3E%3ClinearGradient id='LinearGradient' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='26.962' y2='26.962' gradientTransform='translate(1270.75 2904.11)'%3E%3Cstop offset='0' stop-color='%23c00033'/%3E%3Cstop offset='1' stop-color='%23dc0032'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer 1' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke='none'%3E%3Cpath d='M 1285.12,2892.22 L 1265.36,2903.63 C 1264.78,2903.96 1264.31,2904.78 1264.31,2905.45 L 1264.31,2926.49 L 1284.17,2915.03 C 1284.43,2914.86 1284.52,2914.6 1284.49,2914.32 L 1284.49,2898.49 C 1284.49,2898.24 1284.67,2897.94 1284.88,2897.81 L 1286.06,2897.13 C 1286.27,2897.01 1286.62,2897.01 1286.83,2897.13 L 1288.01,2897.81 C 1288.22,2897.93 1288.4,2898.24 1288.4,2898.49 L 1288.4,2916.65 C 1288.4,2916.89 1288.22,2917.2 1288.01,2917.32 L 1265.63,2930.24 L 1285.12,2941.49 C 1285.7,2941.83 1286.65,2941.83 1287.23,2941.49 L 1306.98,2930.09 L 1292.92,2921.97 C 1292.71,2921.85 1292.53,2921.55 1292.53,2921.3 L 1292.53,2919.94 C 1292.53,2919.7 1292.71,2919.39 1292.92,2919.27 L 1294.1,2918.59 C 1294.31,2918.47 1294.66,2918.47 1294.87,2918.59 L 1295.31,2918.84 L 1295.32,2918.85 L 1308.04,2926.19 L 1308.04,2905.45 C 1308.04,2904.78 1307.56,2903.96 1306.98,2903.63 L 1287.23,2892.22 C 1286.64,2891.89 1285.7,2891.89 1285.12,2892.22 Z' stroke-width='4.305' marker-start='none' marker-end='none' fill='url(%23LinearGradient)'/%3E%3Cpath d='M 1341.45,2901.12 C 1339.28,2900.51 1336.46,2900.26 1334.05,2900.26 C 1327.75,2900.26 1323.62,2903.53 1323.62,2909.53 C 1323.62,2915.22 1327.5,2918.89 1333.14,2918.89 C 1334.4,2918.89 1335.76,2918.74 1336.56,2918.34 L 1336.56,2926.59 L 1341.45,2926.59 Z M 1336.56,2914.11 C 1335.81,2914.46 1334.75,2914.66 1333.54,2914.66 C 1330.57,2914.66 1328.61,2912.85 1328.61,2909.68 C 1328.61,2906.3 1330.72,2904.39 1334.2,2904.39 C 1334.8,2904.39 1335.76,2904.39 1336.56,2904.59 Z M 1381.58,2901.12 C 1379.41,2900.51 1376.59,2900.26 1374.12,2900.26 C 1367.88,2900.26 1363.7,2903.53 1363.7,2909.53 C 1363.7,2915.22 1367.58,2918.89 1373.22,2918.89 C 1374.53,2918.89 1375.84,2918.74 1376.64,2918.34 L 1376.64,2926.59 L 1381.58,2926.59 Z M 1376.64,2914.11 C 1375.89,2914.46 1374.88,2914.66 1373.67,2914.66 C 1370.65,2914.66 1368.68,2912.85 1368.68,2909.68 C 1368.68,2906.3 1370.85,2904.39 1374.32,2904.39 C 1374.93,2904.39 1375.84,2904.39 1376.64,2904.59 Z M 1349.15,2914.11 C 1349.96,2914.46 1351.11,2914.56 1352.07,2914.56 C 1355.09,2914.56 1357.16,2912.85 1357.16,2909.78 C 1357.16,2906.15 1354.84,2904.49 1351.77,2904.44 L 1351.77,2900.26 L 1352.02,2900.26 C 1358.36,2900.26 1362.14,2903.74 1362.14,2909.93 C 1362.14,2915.57 1358.11,2918.89 1352.17,2918.89 C 1349.15,2918.89 1346.18,2918.18 1344.21,2917.38 L 1344.21,2893.46 L 1349.15,2893.46 Z' stroke-width='2.379' fill='%233f3f42' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Crect x='-58.327' y='-58.327' width='116.655' height='116.654' transform='translate(1323.25 2915.97) rotate(90)' stroke='none' stroke-width='0.399' stroke-linejoin='miter' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
}

.badge-primary {
  background-color: #18c7cc;
}

.badge-secondary {
  background-color: #cccccc;
}

.menu_item_info_center {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='13.459pt' height='13.459pt' viewBox='-41.245 -1752.83 13.459 13.459'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-41.244' y='1739.37' width='13.459' height='13.459' stroke='none' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-width='0.5' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -37.831,1749.41 C -39.661,1747.59 -39.661,1744.62 -37.831,1742.79 C -35.996,1740.95 -33.027,1740.95 -31.201,1742.79 C -29.371,1744.62 -29.371,1747.59 -31.201,1749.41 C -33.027,1751.24 -35.996,1751.24 -37.831,1749.41 Z' stroke='%23000000' marker-start='none' marker-end='none'/%3E%3Cpath d='M -34.515,1747.66 L -34.515,1743' fill='none' stroke='%23000000'/%3E%3Cellipse rx='0.373' ry='0.373' transform='translate(-34.516 1748.9) rotate(-90)' fill='%23000000' stroke='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.menu_item_info_center--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='13.459pt' height='13.459pt' viewBox='-41.245 -1752.83 13.459 13.459'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-41.244' y='1739.37' width='13.459' height='13.459' stroke='none' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='miter'/%3E%3Cg id='Group' stroke-width='0.5' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -37.831,1749.41 C -39.661,1747.59 -39.661,1744.62 -37.831,1742.79 C -35.996,1740.95 -33.027,1740.95 -31.201,1742.79 C -29.371,1744.62 -29.371,1747.59 -31.201,1749.41 C -33.027,1751.24 -35.996,1751.24 -37.831,1749.41 Z' stroke='%23000000' marker-start='none' marker-end='none'/%3E%3Cpath d='M -34.515,1747.66 L -34.515,1743' fill='none' stroke='%23000000'/%3E%3Cellipse rx='0.373' ry='0.373' transform='translate(-34.516 1748.9) rotate(-90)' fill='%23000000' stroke='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.menu_item_contact {
  background-repeat: no-repeat;
  /*@include menu_item_contact($icon-color-sidebar-not-highlighted);

  &--active{
      @include menu_item_contact($icon-color-sidebar-highlighted);
  }*/
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='13.459pt' height='13.459pt' viewBox='-41.244 -1818.37 13.459 13.459'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' fill='%23000000' stroke='%23000000' stroke-width='0.5' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -29.83,1814.26 L -29.83,1809.11 C -29.83,1808.73 -30.144,1808.42 -30.53,1808.42 L -34.812,1808.42 C -35.198,1808.42 -35.511,1808.73 -35.511,1809.11 L -35.511,1815.63 C -35.511,1816.01 -35.198,1816.32 -34.812,1816.32 L -31.89,1816.32' fill='none'/%3E%3Cpath d='M -33.515,1808.42 L -33.516,1807.65 C -33.516,1807.26 -33.83,1806.95 -34.215,1806.95 L -38.498,1806.95 C -38.883,1806.95 -39.197,1807.26 -39.197,1807.65 L -39.197,1814.16 C -39.197,1814.55 -38.883,1814.86 -38.498,1814.86 L -35.511,1814.86' fill='none'/%3E%3Cpath d='M -31.092,1816.05 L -30.106,1815.06' fill='none'/%3E%3Cpath d='M -31.89,1816.32 L -31.89,1814.85 C -31.89,1814.52 -31.629,1814.26 -31.308,1814.26 L -29.83,1814.26' fill='none'/%3E%3C/g%3E%3Crect x='-41.243' y='1804.908' width='13.459' height='13.459' stroke='none' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}

.menu_item_message {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.751pt' height='9.75pt' viewBox='-866.299 -1259.03 9.751 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-866.11' y='1250.31' width='9.374' height='7.7' rx='0.83060964756141' ry='0.83060964756141' stroke='%232a2a2a' stroke-width='0.375' stroke-linejoin='miter'/%3E%3Cpath d='M -856.736,1256.94 L -860.78,1253.65 C -861.135,1253.36 -861.713,1253.36 -862.068,1253.65 L -866.111,1256.94' fill='none' stroke-width='0.375' stroke='%232a2a2a' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -865.845,1250.58 L -863.279,1253.17' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%232a2a2a' stroke-width='0.375'/%3E%3Cpath d='M -859.567,1253.17 L -857.001,1250.58' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%232a2a2a' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.424 1254.16) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu_item_message--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.751pt' height='9.75pt' viewBox='-866.299 -1259.03 9.751 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Crect x='-866.11' y='1250.31' width='9.374' height='7.7' rx='0.83060964756141' ry='0.83060964756141' stroke='%23cccccc' stroke-width='0.375' stroke-linejoin='miter'/%3E%3Cpath d='M -856.736,1256.94 L -860.78,1253.65 C -861.135,1253.36 -861.713,1253.36 -862.068,1253.65 L -866.111,1256.94' fill='none' stroke-width='0.375' stroke='%23cccccc' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -865.845,1250.58 L -863.279,1253.17' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23cccccc' stroke-width='0.375'/%3E%3Cpath d='M -859.567,1253.17 L -857.001,1250.58' fill='none' stroke-linejoin='round' stroke-linecap='round' stroke='%23cccccc' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.424 1254.16) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu_item_campagner {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.778pt' height='9.75pt' viewBox='-866.328 -1307.83 9.778 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' fill-rule='nonzero' stroke-linejoin='miter' stroke='%232a2a2a' stroke-width='0.375'%3E%3Cpath d='M -857.138,1307.61 L -865.96,1303.18 C -866.05,1303.13 -866.107,1303.05 -866.111,1302.95 C -866.116,1302.85 -866.066,1302.75 -865.982,1302.7 L -863.915,1301.43 L -863.915,1298.54 C -863.915,1298.42 -863.839,1298.32 -863.727,1298.28 C -863.615,1298.24 -863.492,1298.28 -863.42,1298.38 L -862.008,1300.26 L -858.841,1298.31 C -858.765,1298.26 -858.668,1298.25 -858.586,1298.29 C -858.504,1298.33 -858.445,1298.4 -858.426,1298.49 L -856.743,1307.31 C -856.743,1307.31 -856.742,1307.32 -856.742,1307.32 C -856.706,1307.54 -856.938,1307.71 -857.138,1307.61 Z M -863.366,1299.36 L -863.366,1299.36'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1302.95) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu_item_campagner--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.778pt' height='9.75pt' viewBox='-866.328 -1307.83 9.778 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' fill-rule='nonzero' stroke-linejoin='miter' stroke='%23cccccc' stroke-width='0.375'%3E%3Cpath d='M -857.138,1307.61 L -865.96,1303.18 C -866.05,1303.13 -866.107,1303.05 -866.111,1302.95 C -866.116,1302.85 -866.066,1302.75 -865.982,1302.7 L -863.915,1301.43 L -863.915,1298.54 C -863.915,1298.42 -863.839,1298.32 -863.727,1298.28 C -863.615,1298.24 -863.492,1298.28 -863.42,1298.38 L -862.008,1300.26 L -858.841,1298.31 C -858.765,1298.26 -858.668,1298.25 -858.586,1298.29 C -858.504,1298.33 -858.445,1298.4 -858.426,1298.49 L -856.743,1307.31 C -856.743,1307.31 -856.742,1307.32 -856.742,1307.32 C -856.706,1307.54 -856.938,1307.71 -857.138,1307.61 Z M -863.366,1299.36 L -863.366,1299.36'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1302.95) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu_item_organmotion {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='10.094pt' height='9.779pt' viewBox='-866.471 -1329.37 10.094 9.779'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke='%232a2a2a' stroke-width='0.375'%3E%3Cpath d='M -864.544,1319.85 L -865.976,1320.68 C -866.147,1320.78 -866.284,1321.02 -866.284,1321.21 L -866.284,1322.87 C -866.284,1323.06 -866.147,1323.3 -865.976,1323.4 L -864.544,1324.23 C -864.375,1324.32 -864.099,1324.32 -863.93,1324.23 L -862.496,1323.4 C -862.326,1323.3 -862.189,1323.06 -862.189,1322.87 L -862.189,1321.21 C -862.189,1321.02 -862.326,1320.78 -862.496,1320.68 L -863.93,1319.85 C -864.099,1319.75 -864.375,1319.75 -864.544,1319.85 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -861.732,1324.73 L -863.164,1325.56 C -863.335,1325.65 -863.472,1325.89 -863.472,1326.09 L -863.472,1327.74 C -863.472,1327.94 -863.335,1328.18 -863.164,1328.27 L -861.732,1329.1 C -861.563,1329.2 -861.287,1329.2 -861.118,1329.1 L -859.684,1328.27 C -859.514,1328.18 -859.377,1327.94 -859.377,1327.74 L -859.377,1326.09 C -859.377,1325.89 -859.514,1325.65 -859.684,1325.56 L -861.118,1324.73 C -861.287,1324.63 -861.563,1324.63 -861.732,1324.73 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -858.919,1319.85 L -860.352,1320.68 C -860.523,1320.78 -860.66,1321.02 -860.66,1321.21 L -860.66,1322.87 C -860.66,1323.06 -860.523,1323.3 -860.352,1323.4 L -858.919,1324.23 C -858.75,1324.32 -858.475,1324.32 -858.306,1324.23 L -856.872,1323.4 C -856.702,1323.3 -856.565,1323.06 -856.565,1322.87 L -856.565,1321.21 C -856.565,1321.02 -856.702,1320.78 -856.872,1320.68 L -858.306,1319.85 C -858.475,1319.75 -858.75,1319.75 -858.919,1319.85 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1324.48) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu_item_organmotion--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='10.094pt' height='9.779pt' viewBox='-866.471 -1329.37 10.094 9.779'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='miter' stroke='%23cccccc' stroke-width='0.375'%3E%3Cpath d='M -864.544,1319.85 L -865.976,1320.68 C -866.147,1320.78 -866.284,1321.02 -866.284,1321.21 L -866.284,1322.87 C -866.284,1323.06 -866.147,1323.3 -865.976,1323.4 L -864.544,1324.23 C -864.375,1324.32 -864.099,1324.32 -863.93,1324.23 L -862.496,1323.4 C -862.326,1323.3 -862.189,1323.06 -862.189,1322.87 L -862.189,1321.21 C -862.189,1321.02 -862.326,1320.78 -862.496,1320.68 L -863.93,1319.85 C -864.099,1319.75 -864.375,1319.75 -864.544,1319.85 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -861.732,1324.73 L -863.164,1325.56 C -863.335,1325.65 -863.472,1325.89 -863.472,1326.09 L -863.472,1327.74 C -863.472,1327.94 -863.335,1328.18 -863.164,1328.27 L -861.732,1329.1 C -861.563,1329.2 -861.287,1329.2 -861.118,1329.1 L -859.684,1328.27 C -859.514,1328.18 -859.377,1327.94 -859.377,1327.74 L -859.377,1326.09 C -859.377,1325.89 -859.514,1325.65 -859.684,1325.56 L -861.118,1324.73 C -861.287,1324.63 -861.563,1324.63 -861.732,1324.73 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M -858.919,1319.85 L -860.352,1320.68 C -860.523,1320.78 -860.66,1321.02 -860.66,1321.21 L -860.66,1322.87 C -860.66,1323.06 -860.523,1323.3 -860.352,1323.4 L -858.919,1324.23 C -858.75,1324.32 -858.475,1324.32 -858.306,1324.23 L -856.872,1323.4 C -856.702,1323.3 -856.565,1323.06 -856.565,1322.87 L -856.565,1321.21 C -856.565,1321.02 -856.702,1320.78 -856.872,1320.68 L -858.306,1319.85 C -858.475,1319.75 -858.75,1319.75 -858.919,1319.85 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1324.48) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu_item_customer_management {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.768pt' viewBox='-866.3 -1353.36 9.75 9.768'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%232a2a2a' stroke-width='0.375' fill='%23ffffff'%3E%3Cg id='Group_1'%3E%3Cpath d='M -861.43,1347.76 L -856.738,1345.06' fill='none'/%3E%3Cpath d='M -861.43,1347.76 L -866.112,1345.06' fill='none'/%3E%3Cpath d='M -861.43,1353.18 L -861.43,1347.76' fill='none'/%3E%3C/g%3E%3Cg id='Group_2'%3E%3Cpath d='M -859.111,1349.12 L -856.803,1347.79' fill='none'/%3E%3Cpath d='M -859.111,1351.78 L -859.111,1349.12' fill='none'/%3E%3C/g%3E%3Cg id='Group_3'%3E%3Cpath d='M -863.74,1349.12 L -866.048,1347.79' fill='none'/%3E%3Cpath d='M -863.74,1351.78 L -863.74,1349.12' fill='none'/%3E%3C/g%3E%3Cg id='Group_4'%3E%3Cpath d='M -861.401,1345.11 L -859.101,1343.79' fill='none'/%3E%3Cpath d='M -861.401,1345.11 L -863.696,1343.78' fill='none'/%3E%3C/g%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1348.48) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu_item_customer_management--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.768pt' viewBox='-866.3 -1353.36 9.75 9.768'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23cccccc' stroke-width='0.375' fill='%23ffffff'%3E%3Cg id='Group_1'%3E%3Cpath d='M -861.43,1347.76 L -856.738,1345.06' fill='none'/%3E%3Cpath d='M -861.43,1347.76 L -866.112,1345.06' fill='none'/%3E%3Cpath d='M -861.43,1353.18 L -861.43,1347.76' fill='none'/%3E%3C/g%3E%3Cg id='Group_2'%3E%3Cpath d='M -859.111,1349.12 L -856.803,1347.79' fill='none'/%3E%3Cpath d='M -859.111,1351.78 L -859.111,1349.12' fill='none'/%3E%3C/g%3E%3Cg id='Group_3'%3E%3Cpath d='M -863.74,1349.12 L -866.048,1347.79' fill='none'/%3E%3Cpath d='M -863.74,1351.78 L -863.74,1349.12' fill='none'/%3E%3C/g%3E%3Cg id='Group_4'%3E%3Cpath d='M -861.401,1345.11 L -859.101,1343.79' fill='none'/%3E%3Cpath d='M -861.401,1345.11 L -863.696,1343.78' fill='none'/%3E%3C/g%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1348.48) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu_item_analytics {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.3 -1401.68 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%232a2a2a' stroke-width='0.375' fill='%237f7f7f'%3E%3Cpath d='M -856.742,1398.81 L -856.742,1392.11' fill='none'/%3E%3Cpath d='M -859.864,1401.49 L -859.864,1392.11' fill='none'/%3E%3Cpath d='M -862.987,1398.35 L -862.987,1392.11' fill='none'/%3E%3Cpath d='M -866.108,1396.27 L -866.108,1392.11' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1396.8) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu_item_analytics--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.751pt' viewBox='-866.3 -1401.68 9.75 9.751'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23cccccc' stroke-width='0.375' fill='%237f7f7f'%3E%3Cpath d='M -856.742,1398.81 L -856.742,1392.11' fill='none'/%3E%3Cpath d='M -859.864,1401.49 L -859.864,1392.11' fill='none'/%3E%3Cpath d='M -862.987,1398.35 L -862.987,1392.11' fill='none'/%3E%3Cpath d='M -866.108,1396.27 L -866.108,1392.11' fill='none'/%3E%3C/g%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.425 1396.8) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu_item_order_management {
  background-repeat: no-repeat;
  /*@include menu_item_order_management($icon-color-sidebar-not-highlighted);

  &--active{
      @include menu_item_order_management($icon-color-sidebar-highlighted);
  }*/
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='13.459pt' height='13.459pt' viewBox='-41.244 -1818.37 13.459 13.459'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' fill='%23000000' stroke='%23000000' stroke-width='0.5' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -29.83,1814.26 L -29.83,1809.11 C -29.83,1808.73 -30.144,1808.42 -30.53,1808.42 L -34.812,1808.42 C -35.198,1808.42 -35.511,1808.73 -35.511,1809.11 L -35.511,1815.63 C -35.511,1816.01 -35.198,1816.32 -34.812,1816.32 L -31.89,1816.32' fill='none'/%3E%3Cpath d='M -33.515,1808.42 L -33.516,1807.65 C -33.516,1807.26 -33.83,1806.95 -34.215,1806.95 L -38.498,1806.95 C -38.883,1806.95 -39.197,1807.26 -39.197,1807.65 L -39.197,1814.16 C -39.197,1814.55 -38.883,1814.86 -38.498,1814.86 L -35.511,1814.86' fill='none'/%3E%3Cpath d='M -31.092,1816.05 L -30.106,1815.06' fill='none'/%3E%3Cpath d='M -31.89,1816.32 L -31.89,1814.85 C -31.89,1814.52 -31.629,1814.26 -31.308,1814.26 L -29.83,1814.26' fill='none'/%3E%3C/g%3E%3Crect x='-41.243' y='1804.908' width='13.459' height='13.459' stroke='none' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}

.menu_item_calendar_management {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.752pt' viewBox='-866.301 -2450.35 9.75 9.752'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -866.109,2447.86 L -856.742,2447.86' fill='none' stroke='%232a2a2a' stroke-width='0.375' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -866.109,2449.33 L -866.109,2441.61 C -866.109,2441.16 -865.737,2440.78 -865.279,2440.78 L -857.572,2440.78 C -857.114,2440.78 -856.742,2441.16 -856.742,2441.61 L -856.742,2449.33 C -856.742,2449.79 -857.114,2450.16 -857.572,2450.16 L -865.279,2450.16 C -865.737,2450.16 -866.109,2449.79 -866.109,2449.33 Z' stroke='%232a2a2a' stroke-width='0.375' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 2445.47) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu_item_calendar_management--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.752pt' viewBox='-866.301 -2450.35 9.75 9.752'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -866.109,2447.86 L -856.742,2447.86' fill='none' stroke='%23cccccc' stroke-width='0.375' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M -866.109,2449.33 L -866.109,2441.61 C -866.109,2441.16 -865.737,2440.78 -865.279,2440.78 L -857.572,2440.78 C -857.114,2440.78 -856.742,2441.16 -856.742,2441.61 L -856.742,2449.33 C -856.742,2449.79 -857.114,2450.16 -857.572,2450.16 L -865.279,2450.16 C -865.737,2450.16 -866.109,2449.79 -866.109,2449.33 Z' stroke='%23cccccc' stroke-width='0.375' stroke-linejoin='miter' marker-start='none' marker-end='none'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 2445.47) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu_item_settlement_management {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.75pt' viewBox='-866.301 -1474.02 9.75 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -858.697,1466.29 L -858.697,1465.61 C -858.697,1465.16 -859.069,1464.79 -859.522,1464.79 L -865.255,1464.79 C -865.693,1464.79 -866.053,1465.13 -866.078,1465.57 C -866.063,1465.97 -865.737,1466.29 -865.329,1466.29 L -858.697,1466.29 M -866.113,1467.24 L -866.113,1472.68 C -866.113,1473.13 -865.743,1473.5 -865.287,1473.5 L -857.565,1473.5 C -857.11,1473.5 -856.739,1473.13 -856.739,1472.68 L -856.739,1468.36 C -856.74,1467.9 -857.111,1467.53 -857.566,1467.53 L -865.362,1467.53 C -865.705,1467.53 -865.957,1467.4 -866.113,1467.24' fill='none' stroke-linecap='round' stroke-linejoin='round' stroke='%232a2a2a' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 1469.15) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.menu_item_settlement_management--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='9.75pt' height='9.75pt' viewBox='-866.301 -1474.02 9.75 9.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cpath d='M -858.697,1466.29 L -858.697,1465.61 C -858.697,1465.16 -859.069,1464.79 -859.522,1464.79 L -865.255,1464.79 C -865.693,1464.79 -866.053,1465.13 -866.078,1465.57 C -866.063,1465.97 -865.737,1466.29 -865.329,1466.29 L -858.697,1466.29 M -866.113,1467.24 L -866.113,1472.68 C -866.113,1473.13 -865.743,1473.5 -865.287,1473.5 L -857.565,1473.5 C -857.11,1473.5 -856.739,1473.13 -856.739,1472.68 L -856.739,1468.36 C -856.74,1467.9 -857.111,1467.53 -857.566,1467.53 L -865.362,1467.53 C -865.705,1467.53 -865.957,1467.4 -866.113,1467.24' fill='none' stroke-linecap='round' stroke-linejoin='round' stroke='%23cccccc' stroke-width='0.375'/%3E%3Crect x='-4.874' y='-4.874' width='9.749' height='9.749' transform='translate(-861.426 1469.15) rotate(90)' stroke='none' stroke-width='0.5'/%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.menu_item_contract_managment {
  background-repeat: no-repeat;
  /*@include menu_item_contract_managment($icon-color-sidebar-not-highlighted);

  &--active{
      @include menu_item_contract_managment($icon-color-sidebar-highlighted);
  }*/
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='13.459pt' height='13.459pt' viewBox='-41.245 -1795.57 13.459 13.459'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' fill='%23000000' stroke='%23000000' stroke-width='0.5' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M -34.515,1793.53 L -34.515,1784.15' fill='none'/%3E%3Cpath d='M -30.455,1791.18 L -38.576,1786.5' fill='none'/%3E%3Cpath d='M -38.576,1791.18 L -30.455,1786.5' fill='none'/%3E%3C/g%3E%3Crect x='-41.244' y='1782.11' width='13.459' height='13.459' stroke='none' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}

.menu_item_dashboard {
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='13.459pt' height='13.459pt' viewBox='-41.243 -1877.18 13.459 13.459'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23000000' stroke-width='0.5'%3E%3Cpath d='M -38.783,1872.83 L -35.971,1872.83 C -35.734,1872.83 -35.541,1873.02 -35.541,1873.26 L -35.541,1874.7 C -35.541,1874.94 -35.734,1875.14 -35.971,1875.14 L -38.783,1875.14 C -39.02,1875.14 -39.212,1874.94 -39.212,1874.7 L -39.212,1873.26 C -39.212,1873.02 -39.02,1872.83 -38.783,1872.83' fill='none'/%3E%3Cpath d='M -38.783,1870.74 C -39.02,1870.74 -39.213,1870.55 -39.213,1870.31 L -39.213,1866.2 C -39.213,1865.96 -39.02,1865.77 -38.783,1865.77 L -35.971,1865.77 C -35.734,1865.77 -35.541,1865.96 -35.541,1866.2 L -35.541,1870.31 C -35.541,1870.55 -35.734,1870.74 -35.971,1870.74 L -38.783,1870.74' fill='none'/%3E%3Cpath d='M -33.055,1868.08 C -33.292,1868.08 -33.485,1867.88 -33.485,1867.64 L -33.485,1866.2 C -33.485,1865.96 -33.292,1865.77 -33.055,1865.77 L -30.243,1865.77 C -30.006,1865.77 -29.813,1865.96 -29.813,1866.2 L -29.813,1867.64 C -29.813,1867.88 -30.006,1868.08 -30.243,1868.08 L -33.055,1868.08' fill='none'/%3E%3Cpath d='M -33.485,1874.7 L -33.485,1870.6 C -33.485,1870.36 -33.292,1870.16 -33.055,1870.16 L -30.243,1870.16 C -30.006,1870.16 -29.813,1870.36 -29.813,1870.6 L -29.813,1874.7 C -29.813,1874.94 -30.006,1875.14 -30.243,1875.14 L -33.055,1875.14 C -33.292,1875.14 -33.485,1874.94 -33.485,1874.7' fill='none'/%3E%3C/g%3E%3Crect x='-41.242' y='1863.724' width='13.459' height='13.459' stroke='none' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}
.menu_item_dashboard--active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='13.459pt' height='13.459pt' viewBox='-41.243 -1877.18 13.459 13.459'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-linejoin='round' stroke-linecap='round' stroke='%23000000' stroke-width='0.5'%3E%3Cpath d='M -38.783,1872.83 L -35.971,1872.83 C -35.734,1872.83 -35.541,1873.02 -35.541,1873.26 L -35.541,1874.7 C -35.541,1874.94 -35.734,1875.14 -35.971,1875.14 L -38.783,1875.14 C -39.02,1875.14 -39.212,1874.94 -39.212,1874.7 L -39.212,1873.26 C -39.212,1873.02 -39.02,1872.83 -38.783,1872.83' fill='none'/%3E%3Cpath d='M -38.783,1870.74 C -39.02,1870.74 -39.213,1870.55 -39.213,1870.31 L -39.213,1866.2 C -39.213,1865.96 -39.02,1865.77 -38.783,1865.77 L -35.971,1865.77 C -35.734,1865.77 -35.541,1865.96 -35.541,1866.2 L -35.541,1870.31 C -35.541,1870.55 -35.734,1870.74 -35.971,1870.74 L -38.783,1870.74' fill='none'/%3E%3Cpath d='M -33.055,1868.08 C -33.292,1868.08 -33.485,1867.88 -33.485,1867.64 L -33.485,1866.2 C -33.485,1865.96 -33.292,1865.77 -33.055,1865.77 L -30.243,1865.77 C -30.006,1865.77 -29.813,1865.96 -29.813,1866.2 L -29.813,1867.64 C -29.813,1867.88 -30.006,1868.08 -30.243,1868.08 L -33.055,1868.08' fill='none'/%3E%3Cpath d='M -33.485,1874.7 L -33.485,1870.6 C -33.485,1870.36 -33.292,1870.16 -33.055,1870.16 L -30.243,1870.16 C -30.006,1870.16 -29.813,1870.36 -29.813,1870.6 L -29.813,1874.7 C -29.813,1874.94 -30.006,1875.14 -30.243,1875.14 L -33.055,1875.14 C -33.292,1875.14 -33.485,1874.94 -33.485,1874.7' fill='none'/%3E%3C/g%3E%3Crect x='-41.242' y='1863.724' width='13.459' height='13.459' stroke='none' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='miter'/%3E%3C/g%3E%3C/svg%3E");
}

#selection_checkbox ul {
  height: 4rem;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#selection_checkbox ul li {
  position: relative;
  list-style: none;
  text-align: center;
}
#selection_checkbox ul li label {
  position: relative;
  cursor: pointer;
}
#selection_checkbox ul li label input[type=checkbox], #selection_checkbox ul li label input[type=radio] {
  position: absolute;
  opacity: 0;
}

.checkbox-and-label {
  display: block;
  float: left;
  vertical-align: top;
  width: 100%;
}
.checkbox-and-label--box {
  display: inline-block;
  width: 10%;
  float: left;
  vertical-align: top;
}
@media only screen and (max-width: 37.5em) {
  .checkbox-and-label--box {
    width: 100%;
  }
}
.checkbox-and-label--label {
  display: inline-block;
  width: 90%;
  float: right;
  vertical-align: top;
}
@media only screen and (max-width: 37.5em) {
  .checkbox-and-label--label {
    width: 100%;
    float: left;
  }
}

/*
html * {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

// Only part of the demo. No more than 1000px wide recommended for 4 or fewer steps.
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}
*/
.progress {
  cursor: default;
  speak: none;
  margin: 50px 0;
  font-size: 1.3rem;
  width: 100%;
  height: 5rem;
}
.progress:after {
  clear: both;
  display: table;
  content: "";
}
.progress__step {
  width: calc( ( 100% - 66% ) / ( 4 - 1 ) );
  position: relative;
  float: left;
  overflow: hidden;
  border-radius: 4px;
  background-color: #ff8400;
  color: #fff;
  transition: background-color 250ms ease-out, width 250ms ease-out;
}
.progress__step:not(:last-child) {
  margin-right: 5px;
}
.progress--five .progress__step {
  width: calc( ( 100% - 66% ) / ( 5 - 1 ) );
}
.progress--three .progress__step {
  width: calc( ( 100% - 66% ) / ( 3 - 1 ) );
}
.progress__step--active {
  width: calc( 66% - ( 5px * ( 4 - 1 ) ) );
  background-color: #ff8400;
  color: #fff;
  transition: background-color 250ms ease-out, width 250ms ease-out;
}
.progress--five .progress__step--active {
  width: calc( 66% - ( 5px * ( 5 - 1 ) ) );
}
.progress--three .progress__step--active {
  width: calc( 66% - ( 5px * ( 3 - 1 ) ) );
}
.progress__step--active ~ .progress__step {
  background-color: #DADADA;
  color: #555;
}
@media screen and (min-width: 760px) {
  .progress__step {
    width: calc( ( 100% / 4 ) - ( 10px * ( ( 4 - 1 ) / 4 ) ) );
    border-radius: 0;
    overflow: visible;
    transition: width 0s ease-out;
    background-color: #DADADA;
    color: #555;
  }
  .progress--five .progress__step {
    width: calc( ( 100% / 5 ) - ( 10px * ( ( 5 - 1 ) / 5 ) ) );
  }
  .progress--three .progress__step {
    width: calc( ( 100% / 3 ) - ( 10px * ( ( 3 - 1 ) / 3 ) ) );
  }
  .progress__step::before {
    content: "";
    position: absolute;
    top: 0;
    border-top: 33px solid transparent;
    border-bottom: 33px solid transparent;
    border-left: 33px solid #fff;
    left: 0;
  }
  .progress__step::after {
    content: "";
    position: absolute;
    top: 0;
    border-top: 33px solid transparent;
    border-bottom: 33px solid transparent;
    border-left: 33px solid #DADADA;
    left: 99.9%;
    /* Not 100% because of IE subpixel rendering bug */
    z-index: 2;
  }
  .progress__step:first-child {
    border-radius: 4px 0 0 4px;
  }
  .progress__step:first-child::before {
    display: none;
  }
  .progress__step:last-child {
    border-radius: 0 4px 4px 0;
  }
  .progress__step:last-child::after {
    display: none;
  }
  .progress__step:not(:first-child) {
    padding-left: 33px;
  }
  .progress__step:not(:last-child) {
    margin-right: 10px;
  }
  .progress__step--active {
    background-color: #ff8400;
    color: #fff;
  }
  .progress__step--active::after {
    border-left-color: #ff8400;
  }
}
.progress__label {
  height: 66px;
  transform-style: preserve-3d;
}
.progress__step--active .progress__label {
  margin-right: 16.5px;
}
@media screen and (min-width: 760px) {
  .progress__label {
    margin-right: 16.5px;
  }
}
.progress__badge {
  text-align: center;
  font-weight: 700;
}
.progress__badge::after {
  content: "✔";
  font-size: 1.28571em;
}
.progress__step--active .progress__badge::after, .progress__step--active ~ .progress__step .progress__badge::after {
  display: none;
}
.progress__step:not(.progress__step--active) .progress__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 760px) {
  .progress__step:not(.progress__step--active) .progress__badge {
    position: absolute;
    border: 2px solid #555;
    border-radius: 50%;
    width: 46.2px;
    height: 46.2px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 16.5px;
    line-height: 42.2px;
    left: 0;
    transform: translateY(-50%);
  }
}
.progress__step--active .progress__badge {
  position: absolute;
  border: 2px solid #555;
  border-radius: 50%;
  width: 46.2px;
  height: 46.2px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 16.5px;
  line-height: 42.2px;
  border-color: #fff;
}
.progress__number {
  display: none;
  font-size: 1.14286em;
}
.progress__step--active .progress__number, .progress__step--active ~ .progress__step .progress__number {
  display: inline;
}
.progress__title {
  position: absolute;
  left: 72px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em;
  font-weight: 600;
  z-index: 3;
}
.progress--five .progress__title {
  font-size: 0.8571em;
}
.progress__step:not(.progress__step--active) .progress__title {
  display: none;
}
@media screen and (min-width: 760px) {
  .progress__step:not(.progress__step--active) .progress__title {
    display: inline-block;
  }
}

.error-box {
  padding: 1rem 2rem;
  color: #ffffff;
  margin-top: 5rem;
  font-size: 1.3rem;
}

.error-box-heading {
  padding: 1rem 1rem;
  border-bottom: 1px solid #ed1c24;
  font-size: 1.3rem;
  color: #ed1c24;
  font-weight: 400;
  background-color: rgba(237, 28, 36, 0.1);
}

.error-box-opacity {
  border-bottom: 1px solid #ed1c24;
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 1.3rem;
  margin: 0;
  padding: 0.5rem 1.5rem;
  list-style: none;
}

.alert {
  font-size: 1.3rem;
}

.partner-image img {
  width: auto;
  height: 2rem;
}

.background-color-light {
  background-color: #efefef;
}

.bg-content-box {
  border-radius: 0.5rem;
  background-color: #ffffff;
  border: 0.25pt solid #ccc;
}
.bg-content-box .border-bottom {
  border-bottom: 1px solid #18c7cc;
}
.bg-content-box--border-bottom {
  border-bottom: 1px solid #18c7cc;
}
.bg-content-box--border-top {
  border-top: 1px solid #18c7cc;
}

.bg-headline-box {
  background-color: #18c7cc;
  color: #ffffff;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.bg-headline-box ul li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.bg-headline-box ul li a:hover {
  background-color: transparent;
  font-weight: 400;
}
.bg-headline-box ul li:first-child {
  border-right: 1px solid #ffffff;
}

.active-link {
  background-color: transparent;
  font-weight: 400;
}

.active-not-link {
  background-color: transparent;
  font-weight: 300;
  opacity: 0.5;
}

.button-creation {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 300;
  opacity: 0.5;
  width: auto;
}
.button-creation:hover {
  background-color: transparent !important;
  font-weight: 400;
  color: #ffffff;
  opacity: 1;
}

.border-bottom {
  border-bottom: 1px solid #18c7cc;
}

.border-top {
  border-top: 1px solid #18c7cc;
}

.fieldset--borders {
  border-bottom: 1px solid #18c7cc;
  border-top: 1px solid #18c7cc;
  overflow: hidden;
}

.fieldset--borders--top {
  border-top: 1px solid #18c7cc;
}
.fieldset--borders--bottom {
  border-bottom: 1px solid #18c7cc;
}
.fieldset--borders--right {
  border-right: 1px solid #18c7cc;
}

.dashboard--transparent .summary-box {
  width: 100%;
  color: #2e2e2e;
  font-size: 1.3rem;
}
.dashboard--transparent .summary-box--headline {
  height: 3rem;
  border-bottom: 1px solid #18c7cc;
}
.dashboard--transparent .summary-box--headline h3 {
  font-size: 1.3rem;
  line-height: 3rem;
  text-transform: uppercase;
  margin-left: 2.5%;
}
.dashboard--transparent .summary-box--text {
  width: 100%;
}
.dashboard--transparent .summary-box--text .row {
  background-color: rgba(24, 199, 204, 0.1);
  border-bottom: 1px solid #18c7cc;
  width: 100%;
  margin: 0 auto;
}
.dashboard--transparent .summary-box--text .row .col-md-4, .dashboard--transparent .summary-box--text .row .col-md-2, .dashboard--transparent .summary-box--text .row .col-md-8, .dashboard--transparent .summary-box--text .row .col-md-12, .dashboard--transparent .summary-box--text .row .col-md-5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.dashboard--transparent .summary-box--text .row div > div:first-child {
  font-weight: 400;
}
.dashboard--transparent .summary-box--text-less-padding {
  width: 100%;
}
.dashboard--transparent .summary-box--text-less-padding .row {
  background-color: rgba(24, 199, 204, 0.1);
  border-bottom: 1px solid #18c7cc;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}
.dashboard--transparent .summary-box--text-less-padding .row div > div:first-child {
  font-weight: 400;
}
.dashboard--transparent .summary-box--text-without {
  width: 100%;
}
.dashboard--transparent .summary-box--text-without .row {
  background-color: rgba(24, 199, 204, 0.1);
  border: none;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}
.dashboard--transparent .summary-box--text-without .row div > div:first-child {
  font-weight: bold;
}
.dashboard--dark .summary-box {
  width: 100%;
  color: #2e2e2e;
  font-size: 1.3rem;
}
.dashboard--dark .summary-box--headline {
  height: 3rem;
  border-bottom: 1px solid "#2a2a2a";
}
.dashboard--dark .summary-box--headline h3 {
  font-size: 1.3rem;
  line-height: 3rem;
  text-transform: uppercase;
  margin-left: 2.5%;
}
.dashboard--dark .summary-box--text {
  width: 100%;
}
.dashboard--dark .summary-box--text .row {
  background-color: "#2a2a2a";
  border-bottom: 1px solid "#2a2a2a";
  width: 100%;
  margin: 0 auto;
}
.dashboard--dark .summary-box--text .row .col-md-4, .dashboard--dark .summary-box--text .row .col-md-2, .dashboard--dark .summary-box--text .row .col-md-8, .dashboard--dark .summary-box--text .row .col-md-12, .dashboard--dark .summary-box--text .row .col-md-5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.dashboard--dark .summary-box--text .row div > div:first-child {
  font-weight: 400;
}
.dashboard--dark .summary-box--text-less-padding {
  width: 100%;
}
.dashboard--dark .summary-box--text-less-padding .row {
  background-color: "#2a2a2a";
  border-bottom: 1px solid "#2a2a2a";
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}
.dashboard--dark .summary-box--text-less-padding .row div > div:first-child {
  font-weight: 400;
}
.dashboard--dark .summary-box--text-without {
  width: 100%;
}
.dashboard--dark .summary-box--text-without .row {
  background-color: "#2a2a2a";
  border: none;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}
.dashboard--dark .summary-box--text-without .row div > div:first-child {
  font-weight: bold;
}

.summary-box {
  width: 100%;
  color: #2e2e2e;
  font-size: 1.3rem;
}
.summary-box--headline {
  height: 3rem;
  border-bottom: 1px solid #18c7cc;
}
.summary-box--headline h3 {
  font-size: 1.3rem;
  line-height: 3rem;
  text-transform: uppercase;
  margin-left: 2.5%;
}
.summary-box--text {
  width: 100%;
}
.summary-box--text .row {
  background-color: rgba(24, 199, 204, 0.1);
  border-bottom: 1px solid #18c7cc;
  width: 100%;
  margin: 0 auto;
}
.summary-box--text .row .col-md-4, .summary-box--text .row .col-md-2, .summary-box--text .row .col-md-8, .summary-box--text .row .col-md-12, .summary-box--text .row .col-md-5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.summary-box--text .row div > div:first-child {
  font-weight: 400;
}
.summary-box--text-less-padding {
  width: 100%;
}
.summary-box--text-less-padding .row {
  background-color: rgba(24, 199, 204, 0.1);
  border-bottom: 1px solid #18c7cc;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}
.summary-box--text-less-padding .row div > div:first-child {
  font-weight: 400;
}
.summary-box--text-without {
  width: 100%;
}
.summary-box--text-without .row {
  background-color: rgba(24, 199, 204, 0.1);
  border: none;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}
.summary-box--text-without .row div > div:first-child {
  font-weight: bold;
}

.formular {
  width: 100%;
  background-color: #ffffff;
  color: #2e2e2e;
  padding: 0.5rem 0 5rem 0;
}
.formular label {
  text-transform: uppercase;
}
.formular h2 {
  margin: 2.5rem 0;
  font-weight: 300;
}
.formular--transparent {
  background-color: transparent;
  color: #2e2e2e;
  /*
  #custom-select{
      @include icon-arrow('ffffff');
  }
  #custom-select-energy{
      @include icon-arrow('ffffff');
  }*/
}
.formular--transparent .accordion-box .accordion {
  background-color: transparent;
  border: none;
}
.formular--transparent .accordion-box .accordion .collapse {
  border: none;
  border-right: 1px solid #18c7cc;
  border-left: 1px solid #18c7cc;
}
.formular--transparent .accordion-box .card {
  background-color: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
.formular--transparent .accordion-box .card-header {
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
.formular--transparent .accordion-box .card-header {
  background-color: transparent;
  box-shadow: none;
  border: none;
}
.formular--transparent .accordion-box .button-accordion {
  width: 100%;
  text-align: left;
  padding-left: 2rem;
  border: 0;
  height: 5rem;
  line-height: 1.5;
  background-color: transparent;
  box-shadow: none;
  border: none;
  color: #2e2e2e;
  border-bottom: 1px solid #18c7cc;
  padding-top: 1.25rem;
}
.formular--transparent .accordion-box .button-accordion--bottom {
  border: none;
  border-bottom: 1px solid #18c7cc;
}
.formular--transparent .accordion-box .button-accordion--selected {
  border: none;
  background-color: #18c7cc;
  color: #ffffff;
}
.formular--transparent .accordion-box .fieldset--borders--bottom {
  border-bottom: 1px solid #18c7cc;
}
.formular--transparent .accordion-box-errors .accordion {
  background-color: transparent;
  border: none;
}
.formular--transparent .accordion-box-errors .accordion .collapse {
  border: none;
  border-right: 1px solid #ed1c24;
  border-left: 1px solid #ed1c24;
}
.formular--transparent .accordion-box-errors .card {
  background-color: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
.formular--transparent .accordion-box-errors .card-header {
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
.formular--transparent .accordion-box-errors .card-header {
  background-color: transparent;
  box-shadow: none;
  border: none;
}
.formular--transparent .accordion-box-errors .button-accordion {
  width: 100%;
  text-align: left;
  padding-left: 2rem;
  border: 0;
  height: 5rem;
  line-height: 1.5;
  background-color: transparent;
  box-shadow: none;
  border: none;
  color: #ed1c24;
  border-bottom: 1px solid #ed1c24;
  padding-top: 1.25rem;
}
.formular--transparent .accordion-box-errors .button-accordion--bottom {
  border: none;
  border-bottom: 1px solid #ed1c24;
}
.formular--transparent .accordion-box-errors .button-accordion--selected {
  border: none;
  background-color: #ed1c24;
  color: #ffffff;
}
.formular--transparent .accordion-box-errors .fieldset--borders--bottom {
  border-bottom: 1px solid #ed1c24;
}
.formular--transparent .radio {
  padding: 0.5rem 0;
}
.formular--transparent .radio--background-icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: 4rem;
}
.formular--transparent .radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.formular--transparent .radio input[type=radio] + .radio-label {
  width: 100%;
  line-height: 2.5rem;
}
.formular--transparent .radio input[type=radio] + .radio-label:before {
  content: "";
  background: transparent;
  border-radius: 100%;
  border: 1px solid #18c7cc;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  top: -0.2em;
  margin-right: 0.5rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.formular--transparent .radio input[type=radio]:checked + .radio-label:before {
  /*background-color: $color;
  box-shadow: inset 0 0 0 4px $background-color;*/
  background-color: #ffffff;
  box-shadow: inset 0 0 0 6px #18c7cc;
  border: 0.25pt solid #ccc;
}
.formular--transparent .radio input[type=radio]:not(:checked) + .radio-label:before {
  border: 0.25pt solid #ccc;
}
.formular--transparent .radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #ffffff;
}
.formular--transparent .radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #ffffff;
  border-color: #bfbfbf;
  background: #bfbfbf;
}
.formular--transparent .radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}
.formular--transparent .form-article-relative {
  position: relative;
}
.formular--transparent .form-article-field {
  font-size: 2.1rem;
  border: none;
  position: absolute;
  bottom: 0;
  left: 0;
  outline: none;
  border-bottom: 1px solid;
}
.formular--transparent .form-article-field--not-highlighted {
  color: #cccccc !important;
  border-color: #cccccc !important;
}
.formular--transparent .form-article-field--highlighted {
  color: #2a2a2a !important;
  border-color: #2a2a2a !important;
}
.formular--transparent .form-control {
  border-radius: 1.5rem;
  border: 1px solid rgba(46, 46, 46, 0.5);
  height: 3rem;
  line-height: 3rem;
  font-size: 1.3rem;
  background-color: #ffffff;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  outline: none;
  color: #2e2e2e;
}
.formular--transparent .form-control:-moz-read-only {
  background-color: rgba(255, 255, 255, 0.2);
}
.formular--transparent .form-control:read-only {
  background-color: rgba(255, 255, 255, 0.2);
}
.formular--transparent .form-control:focus {
  outline: none;
  background-color: #ffffff;
  box-shadow: none;
  border-color: #18c7cc;
}
.formular--transparent .form-control .border-danger {
  border: none;
}
.formular--transparent .form-control--border-valid {
  border-color: #2e2e2e;
}
.formular--transparent .form-control--border-not-valid {
  border-color: #ed1c24;
}
.formular--transparent .form-control ::-moz-placeholder {
  color: rgba(46, 46, 46, 0.4);
  opacity: 1;
}
.formular--transparent .form-control :-ms-input-placeholder {
  color: rgba(46, 46, 46, 0.4);
  opacity: 1;
}
.formular--transparent .form-control ::placeholder {
  color: rgba(46, 46, 46, 0.4);
  opacity: 1;
}
.formular--transparent .form-control ::-webkit-input-placeholder {
  color: rgba(255, 0, 0, 0.4);
  opacity: 1;
}
.formular--transparent .form-control ::-moz-placeholder {
  color: rgba(255, 0, 0, 0.4);
  opacity: 1;
}
.formular--transparent .form-control :-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.4);
  opacity: 1;
}
.formular--transparent .form-control :-moz-placeholder {
  color: rgba(255, 0, 0, 0.4);
  opacity: 1;
}
.formular--transparent .form-label {
  padding-left: 2rem;
  color: #2e2e2e;
  font-size: 1.3rem;
  line-height: 1.5;
}
.formular--transparent .form-label-small {
  color: #ffffff;
  font-size: 1rem;
  background-color: #18c7cc;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 1rem;
  margin-left: 1rem;
  float: right;
}
.formular--transparent .custom-switch.custom-switch-xl {
  /*.custom-switch.custom-switch-sm {
      @include switch($selected, $not_selected);
  }

  .custom-switch.custom-switch-md {
      @include switch('md', $selected, $not_selected);
  }

  .custom-switch.custom-switch-lg {
      @include switch('lg', $selected, $not_selected);
  }*/
}
.formular--transparent .custom-switch.custom-switch-xl .custom-control-label {
  padding-left: 4rem;
  padding-bottom: 2rem;
  outline: none;
  line-height: 2.5rem;
}
.formular--transparent .custom-switch.custom-switch-xl .custom-control-label::before {
  height: 2rem;
  width: calc(4rem + 0.75rem);
  border-radius: 4rem;
}
.formular--transparent .custom-switch.custom-switch-xl .custom-control-label::after {
  width: calc(2rem - 4px);
  height: calc(2rem - 4px);
  border-radius: calc(4rem - (2rem / 2));
  background-color: #ffffff;
  box-shadow: inset 0 0 0 1px #cccccc;
}
.formular--transparent .custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after {
  transform: translateX(calc(2rem + .75rem));
}
.formular--transparent .custom-switch.custom-switch-xl .custom-control-label:before {
  background-color: rgba(46, 46, 46, 0.25);
  border-color: rgba(229, 229, 229, 0.25);
}
.formular--transparent .custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::before {
  background-image: linear-gradient(to right, #18c7cc 0%, #9be9ef 50%);
  border-color: #e5e5e5;
}
.formular--transparent .custom-switch.custom-switch-xl .custom-control-input:disabled ~ .custom-control-label {
  opacity: 0.5;
}
.formular--transparent .v-select {
  position: relative;
  color: #2e2e2e;
  font-size: 1.3rem;
  height: 3rem;
}
.formular--transparent .v-select, .formular--transparent .v-select * {
  box-sizing: border-box;
  font-size: 1.3rem;
  color: #2e2e2e;
}
@-webkit-keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.formular--transparent .vs__fade-enter-active, .formular--transparent .vs__fade-leave-active {
  transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
}
.formular--transparent .vs__fade-enter, .formular--transparent .vs__fade-leave-to {
  opacity: 0;
}
.formular--transparent .vs--disabled .vs__clear, .formular--transparent .vs--disabled .vs__dropdown-toggle, .formular--transparent .vs--disabled .vs__open-indicator, .formular--transparent .vs--disabled .vs__search, .formular--transparent .vs--disabled .vs__selected {
  cursor: not-allowed;
  background-color: #f8f8f8;
}
.formular--transparent .v-select[dir=rtl] .vs__actions {
  padding: 0 3px 0 6px;
}
.formular--transparent .v-select[dir=rtl] .vs__clear {
  margin-left: 6px;
  margin-right: 0;
}
.formular--transparent .v-select[dir=rtl] .vs__deselect {
  margin-left: 0;
  margin-right: 2px;
}
.formular--transparent .v-select[dir=rtl] .vs__dropdown-menu {
  text-align: right;
}
.formular--transparent .vs__dropdown-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  padding: 0 0 4px;
  background: none;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  white-space: normal;
  z-index: 1000 !important;
}
.formular--transparent .vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative;
  font-size: 1.3rem;
  color: #2e2e2e;
  z-index: 1000 !important;
}
.formular--transparent .vs__actions {
  display: flex;
  align-items: center;
  padding: 4px 6px 0 3px;
}
.formular--transparent .vs--searchable .vs__dropdown-toggle {
  cursor: text;
}
.formular--transparent .vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer;
}
.formular--transparent .vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.formular--transparent .vs__open-indicator {
  fill: rgba(60, 60, 60, 0.5);
  transform: scale(1);
  transition: transform 0.15s cubic-bezier(1, -0.115, 0.975, 0.855);
  transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
}
.formular--transparent .vs--open .vs__open-indicator {
  transform: rotate(180deg) scale(1);
}
.formular--transparent .vs--loading .vs__open-indicator {
  opacity: 0;
}
.formular--transparent .vs__clear {
  fill: rgba(60, 60, 60, 0.5);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
}
.formular--transparent .vs__dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-top-style: none;
  border-radius: 0 0 4px 4px;
  text-align: left;
  list-style: none;
  background: #fff;
  z-index: 10000 !important;
}
.formular--transparent .vs__no-options {
  text-align: center;
}
.formular--transparent .vs__dropdown-option {
  line-height: 1.42857143;
  display: block;
  padding: 3px 20px;
  clear: both;
  color: #2e2e2e;
  white-space: nowrap;
}
.formular--transparent .vs__dropdown-option:hover {
  cursor: pointer;
}
.formular--transparent .vs__dropdown-option--highlight {
  background: #18c7cc;
}
.formular--transparent .vs__selected {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  color: #2e2e2e;
  line-height: 1;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
  font-size: 2.1rem;
}
.formular--transparent .vs__deselect {
  display: inline-flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: rgba(60, 60, 60, 0.5);
  text-shadow: 0 1px 0 #fff;
}
.formular--transparent .vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent;
}
.formular--transparent .vs--single.vs--open .vs__selected {
  position: absolute;
  opacity: 0.4;
}
.formular--transparent .vs--single.vs--searching .vs__selected {
  display: none;
}
.formular--transparent .vs__search::-ms-clear, .formular--transparent .vs__search::-webkit-search-cancel-button, .formular--transparent .vs__search::-webkit-search-decoration, .formular--transparent .vs__search::-webkit-search-results-button, .formular--transparent .vs__search::-webkit-search-results-decoration {
  display: none;
}
.formular--transparent .vs__search, .formular--transparent .vs__search:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1;
  font-size: 1.3rem;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  flex-grow: 1;
}
.formular--transparent .vs__search:-ms-input-placeholder {
  color: rgba(46, 46, 46, 0.8);
}
.formular--transparent .vs__search::-moz-placeholder {
  color: rgba(46, 46, 46, 0.8);
}
.formular--transparent .vs__search::placeholder {
  color: rgba(46, 46, 46, 0.8);
}
.formular--transparent .vs--unsearchable .vs__search {
  opacity: 1;
}
.formular--transparent .vs--unsearchable .vs__search:hover {
  cursor: pointer;
}
.formular--transparent .vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: 0.2;
}
.formular--transparent .vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 1.3rem;
  text-indent: -9999em;
  overflow: hidden;
  border: 0.9em solid rgba(100, 100, 100, 0.1);
  border-left-color: rgba(60, 60, 60, 0.45);
  transform: translateZ(0);
  -webkit-animation: vSelectSpinner 1.1s linear infinite;
  animation: vSelectSpinner 1.1s linear infinite;
  transition: opacity 0.1s;
}
.formular--transparent .vs__spinner, .formular--transparent .vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 3em;
}
.formular--transparent .vs--loading .vs__spinner {
  opacity: 1;
}
.formular--transparent .style-chooser .vs__search::-moz-placeholder {
  height: 3rem;
  line-height: 3rem;
  font-size: 1.3rem;
  background-color: transparent;
  color: #2a2a2a;
  text-transform: none;
  border: none;
  padding-left: 0.5rem;
  outline: none;
}
.formular--transparent .style-chooser .vs__search:-ms-input-placeholder {
  height: 3rem;
  line-height: 3rem;
  font-size: 1.3rem;
  background-color: transparent;
  color: #2a2a2a;
  text-transform: none;
  border: none;
  padding-left: 0.5rem;
  outline: none;
}
.formular--transparent .style-chooser .vs__search::placeholder,
.formular--transparent .style-chooser .vs__dropdown-toggle {
  height: 3rem;
  line-height: 3rem;
  font-size: 1.3rem;
  background-color: transparent;
  color: #2a2a2a;
  text-transform: none;
  border: none;
  padding-left: 0.5rem;
  outline: none;
}
.formular--transparent .style-chooser .vs__search::-moz-placeholder {
  color: rgba(46, 46, 46, 0.8);
}
.formular--transparent .style-chooser .vs__search:-ms-input-placeholder {
  color: rgba(46, 46, 46, 0.8);
}
.formular--transparent .style-chooser .vs__search::placeholder {
  color: rgba(46, 46, 46, 0.8);
}
.formular--transparent .style-chooser .vs__dropdown-menu {
  background-color: #ffffff;
}
.formular--transparent .style-chooser .vs__clear,
.formular--transparent .style-chooser .vs__open-indicator {
  color: #ffffff;
  /*fill: red;
  color: $color-white;
  font-size: $font-size-small;
  text-transform: none;
  padding-left: 1rem;
  outline: none;*/
}
.formular--transparent .style-chooser .vs__clear {
  display: none;
}
.formular--transparent .style-chooser .vs__selected {
  font-size: 1.3rem;
}
.formular--transparent .style-chooser {
  padding: 0;
  margin: 0;
  height: 3rem;
  border-radius: 1.5rem;
}
.formular--transparent .style-chooser--highlighted {
  border: 1px solid #18c7cc;
}
.formular--transparent .style-chooser--not-highlighted {
  border: 1px solid #2e2e2e;
}
.formular--transparent .style-chooser--not-valid {
  border: 1px solid #ff0066;
}
.formular--transparent #custom-select, .formular--transparent #custom-select-energy {
  border-radius: 5rem;
  border: 1px solid #ffffff;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.3rem;
  background-color: transparent;
  color: #ffffff;
  font-family: "DINPro Regular", sans-serif;
  border-color: #0d64c6;
}
.formular--transparent .description-list-inline ul {
  display: block;
  border: 2px solid #2e2e2e;
  border-radius: 5rem;
  height: 4rem;
  overflow: hidden;
  margin-top: 0.4rem;
}
.formular--transparent .description-list-inline li {
  width: 100%;
  display: inline-block;
  float: left;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.formular--transparent .description-list-inline li input[type=text] {
  width: 100%;
  font-size: 2.1rem;
  color: #2e2e2e;
  text-align: center;
  border: none;
  background-color: transparent;
  height: 100%;
  vertical-align: top;
  padding: 0;
  margin: 0;
}
.formular--transparent .description-list-inline li:not(:last-child) {
  border-right: 2px solid #2e2e2e;
}
.formular--transparent .description-list-inline li:first-child {
  width: 25%;
  background-color: rgba(46, 46, 46, 0.3);
}
.formular--transparent .description-list-inline li:nth-child(2) {
  width: 25%;
  background-color: rgba(46, 46, 46, 0.15);
}
.formular--transparent .description-list-inline li:nth-child(3) {
  width: 50%;
  background-color: rgba(46, 46, 46, 0);
}
.formular--transparent .assistent_messages {
  font-size: 1.3rem;
}
.formular--transparent .fieldset {
  position: relative;
  height: 10rem;
  padding: 1rem 1rem;
}
.formular--transparent .fieldset__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.formular--transparent .fieldset__main {
  font-size: 2.1rem;
}
.formular--transparent .fieldset__sub {
  font-size: 1.3rem;
}
.formular--transparent .fieldset__description {
  font-size: 2.1rem;
}
.formular--transparent .fieldset__border-white {
  margin: 1rem 0;
  border-top: 2px solid rgba(46, 46, 46, 0.2);
  color: transparent;
}
.formular--transparent .animation-checkbox input[type=checkbox] {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}
.formular--transparent .animation-checkbox input[type=checkbox]:focus ~ label svg, .formular--transparent .animation-checkbox input[type=checkbox]:checked ~ label svg {
  background: transparent;
}
.formular--transparent .animation-checkbox input[type=checkbox]:checked ~ label svg path {
  stroke-dashoffset: 0;
}
.formular--transparent .animation-checkbox input[type=checkbox] ~ label {
  font-size: 1.3rem;
  line-height: 1.5;
  /*display: flex;
  align-items: center;
  flex-direction: row;*/
  position: relative;
  cursor: pointer;
  color: #2e2e2e;
  display: inline-block;
}
.formular--transparent .animation-checkbox input[type=checkbox] ~ label svg {
  width: 3.5rem;
  height: 3.5rem;
  border: 0.25rem solid #2e2e2e;
  margin-top: 0.5rem;
}
.formular--transparent .animation-checkbox input[type=checkbox] ~ label svg path {
  transition: stroke-dashoffset 440ms cubic-bezier(0.69, 0.35, 0.63, 0.84);
  fill: none;
  stroke: #2e2e2e;
  stroke-dasharray: 270;
  stroke-dashoffset: 270;
  stroke-width: 1rem;
}
.formular--transparent .animation-checkbox input[type=checkbox] ~ label div {
  width: calc(100% - 3.5rem);
}
.formular--transparent .animation-checkbox-svg {
  width: 5rem;
  height: 5rem;
}
.formular--transparent .form-button, .formular--transparent .form-button:link, .formular--transparent .form-button:visited, .formular--transparent .form-button-small, .formular--transparent .form-button-small:link, .formular--transparent .form-button-small:visited {
  text-decoration: none;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  color: #ffffff;
  border: none;
  cursor: pointer;
  width: auto;
  text-align: center;
  height: 3rem;
  line-height: 3rem;
  margin: 0 auto;
  padding: 0 5rem;
}
.formular--transparent .form-button:hover, .formular--transparent .form-button-small:hover {
  /*&::after {
      transform: scaleX(1.4) scaleY(1.6);
      opacity: 0;
  }*/
}
.formular--transparent .form-button:active, .formular--transparent .form-button:focus, .formular--transparent .form-button-small:active, .formular--transparent .form-button-small:focus {
  transform: translateY(-0.1rem);
}
.formular--transparent .form-button--filled, .formular--transparent .form-button-small--filled {
  background-color: #ffffff;
  color: #18c7cc;
  border: 1px solid #18c7cc;
}
.formular--transparent .form-button--filled:hover, .formular--transparent .form-button-small--filled:hover {
  background-color: #18c7cc;
  color: #ffffff;
}
.formular--transparent .form-button--filled-with-arrow, .formular--transparent .form-button-small--filled-with-arrow {
  background-color: #ffffff;
  color: #18c7cc;
  border: 1px solid #18c7cc;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 2.5rem 1.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='3.207pt' height='9.749pt' viewBox='1125.64 -438.61 3.207 9.749'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' fill='%2300aac3'%3E%3Cpath d='M 1126.01,429.236 L 1128.17,432.614 C 1128.57,433.23 1128.57,434.24 1128.17,434.862 L 1126.01,438.235' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.formular--transparent .form-button--filled-with-arrow--white, .formular--transparent .form-button-small--filled-with-arrow--white {
  background-color: #18c7cc;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 2.5rem 1.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='3.207pt' height='9.749pt' viewBox='1125.64 -438.61 3.207 9.749'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' fill='%23ffffff'%3E%3Cpath d='M 1126.01,429.236 L 1128.17,432.614 C 1128.57,433.23 1128.57,434.24 1128.17,434.862 L 1126.01,438.235' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.formular--transparent .form-button--filled-with-arrow--primary, .formular--transparent .form-button-small--filled-with-arrow--primary {
  background-color: #18c7cc;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 2.5rem 1.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='3.207pt' height='9.749pt' viewBox='1125.64 -438.61 3.207 9.749'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' fill='%23ffffff'%3E%3Cpath d='M 1126.01,429.236 L 1128.17,432.614 C 1128.57,433.23 1128.57,434.24 1128.17,434.862 L 1126.01,438.235' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.formular--transparent .form-button--filled-with-arrow:hover, .formular--transparent .form-button-small--filled-with-arrow:hover {
  background-color: #18c7cc;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 2.5rem 1.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='3.207pt' height='9.749pt' viewBox='1125.64 -438.61 3.207 9.749'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' fill='%23ffffff'%3E%3Cpath d='M 1126.01,429.236 L 1128.17,432.614 C 1128.57,433.23 1128.57,434.24 1128.17,434.862 L 1126.01,438.235' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.formular--transparent .form-button--border, .formular--transparent .form-button-small--border {
  border: 2px solid #18c7cc;
  color: #18c7cc;
  background-color: #ffffff;
}
.formular--transparent .form-button-small {
  text-transform: capitalize;
  background-image: #ffffff;
  color: #18c7cc;
  padding: 0 1rem;
  /*&:hover{
      background-image: linear-gradient(to right, $color-light, $color-dark);
      color: $font-color;
  }*/
}
.formular--transparent .form-button-small, .formular--transparent .form-button-small:link, .formular--transparent .form-button-small:visited {
  height: 2.5rem;
  line-height: 2.5rem;
}
.formular--transparent .form-button-submit {
  width: 100%;
  background-color: transparent;
  border: none;
}
.formular--transparent .form-button-submit .icon-box-large {
  width: 5rem;
  height: 5rem;
}
.formular--transparent .form-button-medium, .formular--transparent .form-button-medium:link, .formular--transparent .form-button-medium:visited {
  text-decoration: none;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  color: #ffffff;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  height: 3rem;
  line-height: 3rem;
  margin: 0 auto;
}
.formular--transparent .form-button-medium:hover {
  /*&::after {
      transform: scaleX(1.4) scaleY(1.6);
      opacity: 0;
  }*/
}
.formular--transparent .form-button-medium:active, .formular--transparent .form-button-medium:focus {
  transform: translateY(-0.1rem);
}
.formular--transparent .form-button-medium--filled {
  background-color: #ffffff;
  color: #18c7cc;
  border: 1px solid #18c7cc;
}
.formular--transparent .form-button-medium--filled:hover {
  background-color: #18c7cc;
  color: #ffffff;
}
.formular--transparent .form-button-medium--filled-with-arrow {
  background-color: #ffffff;
  color: #18c7cc;
  border: 1px solid #18c7cc;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 2.5rem 1.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='3.207pt' height='9.749pt' viewBox='1125.64 -438.61 3.207 9.749'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' fill='%2300aac3'%3E%3Cpath d='M 1126.01,429.236 L 1128.17,432.614 C 1128.57,433.23 1128.57,434.24 1128.17,434.862 L 1126.01,438.235' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.formular--transparent .form-button-medium--filled-with-arrow:hover {
  background-color: #18c7cc;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 2.5rem 1.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='3.207pt' height='9.749pt' viewBox='1125.64 -438.61 3.207 9.749'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' fill='%23ffffff'%3E%3Cpath d='M 1126.01,429.236 L 1128.17,432.614 C 1128.57,433.23 1128.57,434.24 1128.17,434.862 L 1126.01,438.235' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.formular--transparent .form-button-medium--border {
  border: 2px solid #18c7cc;
  color: #18c7cc;
  background-color: #ffffff;
}
.formular--transparent .summary-box {
  width: 100%;
  color: #2e2e2e;
  font-size: 1.3rem;
}
.formular--transparent .summary-box--headline {
  height: 3rem;
  border-bottom: 1px solid #18c7cc;
}
.formular--transparent .summary-box--headline h3 {
  font-size: 1.3rem;
  line-height: 3rem;
  text-transform: uppercase;
  margin-left: 2.5%;
}
.formular--transparent .summary-box--text {
  width: 100%;
}
.formular--transparent .summary-box--text .row {
  background-color: rgba(24, 199, 204, 0.1);
  border-bottom: 1px solid #18c7cc;
  width: 100%;
  margin: 0 auto;
}
.formular--transparent .summary-box--text .row .col-md-4, .formular--transparent .summary-box--text .row .col-md-2, .formular--transparent .summary-box--text .row .col-md-8, .formular--transparent .summary-box--text .row .col-md-12, .formular--transparent .summary-box--text .row .col-md-5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.formular--transparent .summary-box--text .row div > div:first-child {
  font-weight: 400;
}
.formular--transparent .summary-box--text-less-padding {
  width: 100%;
}
.formular--transparent .summary-box--text-less-padding .row {
  background-color: rgba(24, 199, 204, 0.1);
  border-bottom: 1px solid #18c7cc;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}
.formular--transparent .summary-box--text-less-padding .row div > div:first-child {
  font-weight: 400;
}
.formular--transparent .summary-box--text-without {
  width: 100%;
}
.formular--transparent .summary-box--text-without .row {
  background-color: rgba(24, 199, 204, 0.1);
  border: none;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}
.formular--transparent .summary-box--text-without .row div > div:first-child {
  font-weight: bold;
}

.background-color-primary-light {
  border-top: 1px solid #18c7cc;
  border-bottom: 1px solid #18c7cc;
  background-color: rgba(24, 199, 204, 0.1);
}

.add-cursor-pointer {
  cursor: pointer;
}

.font-size--small {
  font-size: 1.3rem;
}
.font-size--medium {
  font-size: 2.1rem;
}

.file-upload {
  position: relative;
  display: inline-block;
}

.file-upload__label {
  display: block;
  height: 2rem;
  border-radius: 2rem;
  transition: background 0.3s;
}
.file-upload__label:hover {
  cursor: pointer;
}

.file-upload__input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 1;
  width: 0;
  height: 100%;
  opacity: 0;
}

.form-opacity-half {
  opacity: 0.35;
}

.form-opacity-total {
  opacity: 1;
}

.main {
  width: calc(100% - 4rem);
  float: right;
  min-height: 100vh;
}

.main-extended {
  width: calc(100% - 20rem);
  float: right;
  min-height: 100vh;
}

.menu-items {
  height: 5rem;
  line-height: 5rem;
  font-size: 1.3rem;
  background-color: #ffffff;
  background-position: center;
  background-size: 90% 90%;
  /*background-image: url(../images/VegaLogo.png);
  background-size: cover;
  background-position: center;

  background-color: lightcoral;*/
}
.menu-items img {
  height: 4rem;
}
.menu-items .image-menu {
  height: 5rem;
  width: auto;
  vertical-align: middle;
}
.menu-items .list-inline {
  height: 5rem;
}

.hexagon {
  height: 4rem;
  width: 4rem;
  margin-top: -0.2rem;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}

.tabs {
  height: 5rem;
  background-color: #ffffff;
  font-size: 1.6rem;
}
.tabs ul {
  height: inherit;
  float: right;
  width: auto;
  line-height: 5rem;
}

.background-grey {
  background-color: red;
}

.v-sidebar-menu.vsm_white-theme {
  background-image: linear-gradient(to right bottom, #ffffff, #ffffff) !important;
  color: #333 !important;
  width: 100%;
  box-shadow: 10px 0 5px -2px #eee;
}

.v-sidebar-menu.vsm_white-theme {
  background-color: yellow !important;
}
.v-sidebar-menu.vsm_white-theme .vsm--link {
  color: #333 !important;
}
.v-sidebar-menu.vsm_white-theme .vsm--link_exact-active, .v-sidebar-menu.vsm_white-theme .vsm--link_active {
  color: #333 !important;
}
.v-sidebar-menu.vsm_white-theme .vsm--link_level-1.vsm--link_exact-active, .v-sidebar-menu.vsm_white-theme .vsm--link_level-1.vsm--link_active {
  box-shadow: none !important;
  background-color: rgba(51, 51, 51, 0.5);
}
.v-sidebar-menu.vsm_white-theme .vsm--link_level-1.vsm--link_exact-active .vsm--icon, .v-sidebar-menu.vsm_white-theme .vsm--link_level-1.vsm--link_active .vsm--icon {
  color: green;
  background-color: transparent;
}
.v-sidebar-menu.vsm_white-theme .vsm--link_level-1 .vsm--icon {
  background-color: transparent !important;
  background-size: 75% 75% !important;
}
.v-sidebar-menu.vsm_white-theme .vsm--link:hover {
  color: #333;
  background-color: #e6e600;
}
.v-sidebar-menu.vsm_white-theme .vsm--icon {
  color: #333;
}
.v-sidebar-menu.vsm_white-theme .vsm--dropdown .vsm--list {
  background-color: #e3e3e3;
}
.v-sidebar-menu.vsm_white-theme .vsm--dropdown .vsm--link {
  color: #333;
}
.v-sidebar-menu.vsm_white-theme .vsm--dropdown .vsm--icon {
  color: #333;
}
.v-sidebar-menu.vsm_white-theme.vsm_expanded .vsm--item.vsm--item_open .vsm--link_level-1 {
  color: #ffffff;
  background-color: #777;
}
.v-sidebar-menu.vsm_white-theme.vsm_expanded .vsm--item.vsm--item_open .vsm--link_level-1 .vsm--icon {
  color: #fff;
  background-color: transparent;
}
.v-sidebar-menu.vsm_white-theme.vsm_collapsed .vsm--link.vsm--link_mobile-item {
  color: #fff;
  background-color: transparent;
}
.v-sidebar-menu.vsm_white-theme.vsm_collapsed .vsm--link.vsm--link_mobile-item .vsm--icon {
  color: #fff;
  background-color: transparent;
}
.v-sidebar-menu.vsm_white-theme.vsm_collapsed .vsm--mobile-bg {
  background-color: #18c7cc;
}
.v-sidebar-menu.vsm_white-theme.vsm_rtl .vsm--link.vsm--link_level-1.vsm--link_active, .v-sidebar-menu.vsm_white-theme.vsm_rtl .vsm--link.vsm--link_level-1.vsm--link_exact-active {
  box-shadow: -3px 0px 0px 0px #18c7cc inset;
}
.v-sidebar-menu.vsm_white-theme .vsm--header {
  color: rgba(51, 51, 51, 0.7);
}
.v-sidebar-menu.vsm_white-theme .vsm--badge.vsm--badge_default {
  color: #333;
  background-color: #e6e600;
}
.v-sidebar-menu.vsm_white-theme .vsm--toggle-btn {
  color: transparent !important;
  background-color: transparent !important;
}

.accodion-item {
  margin-bottom: 2rem;
  background-color: transparent;
}
.accodion-item--borders {
  border-right: 0.5rem solid red;
  border-left: 0.5rem solid red;
}
.accodion-item--no-borders {
  border: none;
  border-right: 0.5rem solid transparent;
  border-left: 0.5rem solid transparent;
}
.accodion-item--open {
  background: linear-gradient(red, red);
}
.accodion-item--closed {
  background-color: transparent;
}
.accodion-item--header {
  height: 6rem;
  background-color: transparent;
}
.accodion-item--header h3 {
  line-height: 6rem;
  font-size: 1.6rem;
  font-weight: 300;
}
.accodion-item--icon {
  width: 6rem;
  height: 6rem;
  float: right;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.accodion-item--panel {
  height: auto;
}
.accodion-item--panel--padding-bottom {
  padding-bottom: 2.5rem;
}

.table tfoot td,
.table tfoot th {
  border-width: 1px 0 0;
  color: #18c7cc;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  border: none;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr:nth-child(2) > td,
.table > thead > tr:nth-child(2) > th {
  border-top: 1px solid #cccccc;
}

.table td {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table tr td:first-child {
  width: 20%;
}

.table > thead {
  text-transform: uppercase;
}

.table-background {
  font-size: 1.3rem;
  line-height: 3rem;
}

.bg-headline-box a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.bg-headline-box .active {
  background-color: rgba(255, 255, 255, 0.5);
}

.table-header li {
  line-height: 4rem;
}
.table-header li a {
  font-size: 1.6rem;
  color: #ffffff;
  text-decoration: none;
  padding: 0 1rem;
  line-height: 4rem;
  height: 4rem;
}
.table-header li a:hover {
  background-color: transparent !important;
}

#loader-box {
  padding: 10rem 0;
}

.loader {
  width: 15rem;
  height: 15rem;
  line-height: 3rem;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  z-index: 0;
  text-transform: uppercase;
  padding: 5rem 0;
}
.loader--text-orange {
  color: #18c7cc;
  font-size: 1.3rem;
}

.loader:before,
.loader:after {
  opacity: 0;
  box-sizing: border-box;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 5px solid #18c7cc;
  box-shadow: 0 0 5rem #18c7cc, inset 0 0 5rem #18c7cc;
}

.loader:after {
  z-index: 1;
  -webkit-animation: gogoloader 2s infinite 1s;
}

.loader:before {
  z-index: 2;
  -webkit-animation: gogoloader 2s infinite;
}

@-webkit-keyframes gogoloader {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
#carouselExampleIndicators {
  margin-bottom: 0;
  padding-bottom: 0;
}
#carouselExampleIndicators .carousel-indicators {
  top: 0.3rem;
  left: 0;
}
#carouselExampleIndicators .carousel-indicators li {
  color: #ffffff !important;
  background-color: #ffffff !important;
}
#carouselExampleIndicators .carousel-indicators .active {
  color: #18c7cc;
  background-color: #18c7cc;
}

#comparision-cards {
  font-size: 1.3rem;
}
#comparision-cards .card {
  width: 90%;
  margin: 0 auto;
  border-color: transparent;
  box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 0.5rem;
  overflow: hidden;
}
#comparision-cards .list-group .list-group-item {
  border-color: #18c7cc;
}
#comparision-cards .list-group .list-group-item:nth-child(2n) {
  background-color: #ffffff;
}
#comparision-cards .list-group .list-group-item:nth-child(2n+1) {
  background-color: rgba(24, 199, 204, 0.1);
}
#comparision-cards .list-group .list-group-item ul li:nth-child(2n) {
  font-weight: 300;
  margin-bottom: 1.5rem;
}
#comparision-cards .list-group .list-group-item ul li:nth-child(2n+1) {
  font-weight: 400;
  margin-top: 1.5rem;
  color: #9be9ef !important;
}
#comparision-cards .list-group .list-group-item ul li a {
  background-color: yellow;
  width: 100%;
}
#comparision-cards .list-group .list-group-item button {
  border: none;
  width: 100%;
  text-align: center;
  background-color: transparent;
  padding: 1rem 0;
}
#comparision-cards .icon-accordion {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  margin-left: 2%;
  margin-top: -0.5rem;
}
#comparision-cards .icon-plus {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.75pt' height='15.75pt' viewBox='0 0 15.75 15.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -15.75)'%3E%3Cg id='MouseOff'%3E%3Cg id='Group' stroke-linejoin='round'%3E%3Cpath d='M 3.722,14.566 C 7.415,16.858 12.274,15.721 14.566,12.028 C 16.858,8.335 15.721,3.476 12.028,1.184 C 8.335,-1.108 3.476,0.029 1.184,3.722 C -1.108,7.415 0.029,12.274 3.722,14.566 Z' stroke='none' fill='%23262626' stroke-width='0.577' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cg id='Group_1' stroke-width='1.5' stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='79.8403193612775'%3E%3Cpath d='M 7.875,12.205 L 7.875,3.546' fill='none'/%3E%3Cpath d='M 3.546,7.875 L 12.205,7.875' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
#comparision-cards .icon-minus {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg stroke-width='0.501' stroke-linejoin='bevel' fill-rule='evenodd' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='15.75pt' height='15.75pt' viewBox='0 0 15.75 15.75'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Document' fill='none' stroke='black' font-family='Times New Roman' font-size='16' transform='scale(1 -1)'%3E%3Cg id='Spread' transform='translate(0 -15.75)'%3E%3Cg id='MouseOff'%3E%3Cg id='Group' stroke-linejoin='round'%3E%3Cpath d='M 3.722,14.566 C 7.415,16.858 12.274,15.721 14.566,12.028 C 16.858,8.335 15.721,3.476 12.028,1.184 C 8.335,-1.108 3.476,0.029 1.184,3.722 C -1.108,7.415 0.029,12.274 3.722,14.566 Z' stroke='none' fill='%23262626' stroke-width='0.577' marker-start='none' marker-end='none' stroke-miterlimit='79.8403193612775'/%3E%3Cg id='Group_1' stroke-linecap='round' stroke='%23ffffff' stroke-width='1.5' stroke-miterlimit='79.8403193612775'%3E%3Cpath d='M 3.546,7.875 L 12.205,7.875' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#comparision-cards .chart-box {
  margin: 0 calc(50% - 10rem);
  z-index: 10;
}
#comparision-cards .chart-box pie-chart {
  z-index: 100;
}

/*
#section-calculation{
    .carousel-indicators{
        //position: absolute;
        //top: -2.5rem;
        //top: -2.5rem;

        li{
            height: 2rem;
            width: 4rem;
        }

        li:first-child{
            //color: $color-default-blue;
            //background-color: rgba($color-default-blue, .5);

        }
        li:nth-child(2){
            //color: $color-default-green;
            //background-color: rgba($color-default-green, .5);
        }
    }

}
*/
.price-model-card {
  padding: 0.2rem 0.125rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid transparent;
}
.price-model-card--rounded {
  border-color: #18c7cc;
}
.price-model-card--image {
  width: 100%;
}
.price-model-card--description {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
}
.price-model-card--description li:nth-child(2n) {
  font-weight: 600;
  margin-top: 0.5rem;
}

.price-model-font-weight {
  font-weight: 300;
}

.product-energie-ag {
  width: 12rem;
  height: 8rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}
.product-energie-ag-power {
  background-image: url("/pictures/products/Box_Strom_V1_RZ_500x388px.png");
}
.product-energie-ag-power--hightlighted {
  background-image: url("/pictures/products/Box_Strom_V2_RZ_500x388px.png");
}
.product-energie-ag-gas {
  background-image: url("/pictures/products/Box_Gas_V1_RZ_500x388px.png");
}
.product-energie-ag-gas--hightlighted {
  background-image: url("/pictures/products/Box_Gas_V2_RZ_500x388px.png");
}
.product-energie-ag-sigi-power {
  width: 8.5rem;
  height: 3rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  background-image: url("/pictures/emails/SIGI_POWER.png");
}
.product-energie-ag-sigi-gas {
  width: 8.5rem;
  height: 3rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  background-image: url("/pictures/emails/SIGI_GAS.png");
}
.product-energie-ag-internet {
  background-image: url("/pictures/products/Box_Internet_V2_RZ_500x388px.png");
}
.product-energie-ag-internet--hightlighted {
  background-image: url("/pictures/products/Box_Internet_V1_RZ_500x388px.png");
}
.product-energie-ag-eControl {
  width: 12.5rem;
  background-size: 80% 80%;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='51.798pt' height='13.622pt' viewBox='271.74 -746.151 51.798 13.622'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Offer' transform='scale(1 -1)'%3E%3Cg id='Group' fill='%23666666' font-family='Nunito Sans Light' stroke-linejoin='miter' stroke='none' stroke-width='0.282'%3E%3Cg id='Group_1'%3E%3Cpath d='M 281.778,741.145 L 282.077,742.37 L 277.67,742.37 L 276.251,736.712 L 280.739,736.712 L 281.048,737.936 L 278.099,737.936 L 278.367,739.016 L 280.846,739.016 L 281.139,740.171 L 278.658,740.171 L 278.9,741.145 L 281.778,741.145 M 280.735,739.857 L 280.6,739.331 L 278.123,739.331 L 277.699,737.624 L 280.646,737.624 L 280.495,737.024 L 276.652,737.024 L 277.914,742.054 L 281.677,742.054 L 281.532,741.458 L 278.655,741.458 L 278.257,739.857 L 280.735,739.857 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3Cpath d='M 323.538,736.869 L 323.538,737.78 L 320.814,737.78 L 320.814,742.212 L 319.775,742.212 L 319.775,736.869 L 323.538,736.869 M 314.842,740.192 C 314.909,740.404 315.009,740.596 315.138,740.765 C 315.268,740.932 315.431,741.068 315.629,741.171 C 315.824,741.275 316.046,741.326 316.297,741.326 C 316.537,741.326 316.754,741.275 316.949,741.178 C 317.14,741.081 317.304,740.947 317.437,740.783 C 317.571,740.617 317.673,740.426 317.746,740.211 C 317.819,739.995 317.855,739.771 317.855,739.54 C 317.855,739.32 317.821,739.103 317.754,738.891 C 317.685,738.677 317.586,738.484 317.452,738.315 C 317.319,738.144 317.156,738.005 316.963,737.903 C 316.771,737.802 316.548,737.75 316.297,737.75 C 316.051,737.75 315.831,737.8 315.638,737.9 C 315.446,738 315.282,738.133 315.15,738.298 C 315.016,738.465 314.916,738.656 314.845,738.87 C 314.775,739.087 314.739,739.311 314.739,739.54 C 314.739,739.763 314.775,739.978 314.842,740.192 M 317.336,737.053 C 317.657,737.202 317.933,737.4 318.164,737.647 C 318.394,737.896 318.576,738.182 318.707,738.505 C 318.837,738.829 318.902,739.168 318.902,739.526 C 318.902,739.862 318.84,740.193 318.714,740.519 C 318.589,740.845 318.412,741.137 318.186,741.393 C 317.96,741.65 317.688,741.855 317.371,742.014 C 317.051,742.172 316.7,742.252 316.313,742.252 C 315.936,742.252 315.587,742.177 315.265,742.03 C 314.945,741.88 314.667,741.681 314.435,741.43 C 314.201,741.18 314.018,740.891 313.886,740.563 C 313.753,740.238 313.685,739.897 313.685,739.54 C 313.685,739.2 313.748,738.867 313.873,738.54 C 313.999,738.214 314.176,737.924 314.404,737.672 C 314.633,737.418 314.906,737.214 315.225,737.06 C 315.544,736.907 315.9,736.831 316.29,736.831 C 316.666,736.831 317.015,736.904 317.336,737.053 M 309.968,741.301 L 311.224,741.301 C 311.314,741.301 311.403,741.28 311.491,741.238 C 311.578,741.195 311.657,741.135 311.724,741.058 C 311.793,740.98 311.847,740.889 311.887,740.783 C 311.926,740.677 311.947,740.562 311.947,740.436 C 311.947,740.315 311.93,740.203 311.895,740.097 C 311.859,739.992 311.811,739.9 311.751,739.823 C 311.69,739.746 311.62,739.684 311.537,739.64 C 311.454,739.593 311.364,739.571 311.27,739.571 L 309.968,739.571 L 309.968,741.301 M 309.968,736.869 L 309.968,738.66 L 310.991,738.66 L 312.083,736.869 L 313.248,736.869 L 312.03,738.878 C 312.325,739.004 312.559,739.208 312.734,739.493 C 312.907,739.775 312.993,740.09 312.993,740.436 C 312.993,740.652 312.95,740.867 312.866,741.081 C 312.779,741.292 312.662,741.484 312.512,741.652 C 312.359,741.82 312.18,741.955 311.974,742.058 C 311.765,742.162 311.537,742.212 311.291,742.212 L 308.929,742.212 L 308.929,736.869 L 309.968,736.869 M 308.191,742.212 L 303.744,742.212 L 303.744,741.301 L 305.451,741.301 L 305.451,736.869 L 306.484,736.869 L 306.484,741.301 L 308.191,741.301 L 308.191,742.212 M 302.161,736.869 L 303.006,736.869 L 303.006,742.205 L 301.967,742.205 L 301.967,738.705 L 299.182,742.212 L 298.375,742.212 L 298.375,736.869 L 299.415,736.869 L 299.415,740.293 L 302.161,736.869 M 293.443,740.192 C 293.51,740.404 293.61,740.596 293.741,740.765 C 293.87,740.932 294.033,741.068 294.229,741.171 C 294.425,741.275 294.648,741.326 294.899,741.326 C 295.141,741.326 295.357,741.275 295.549,741.178 C 295.743,741.081 295.907,740.947 296.039,740.783 C 296.173,740.617 296.276,740.426 296.349,740.211 C 296.42,739.995 296.456,739.771 296.456,739.54 C 296.456,739.32 296.422,739.103 296.357,738.891 C 296.286,738.677 296.188,738.484 296.054,738.315 C 295.922,738.144 295.76,738.005 295.566,737.903 C 295.372,737.802 295.15,737.75 294.899,737.75 C 294.653,737.75 294.433,737.8 294.241,737.9 C 294.047,738 293.885,738.133 293.751,738.298 C 293.617,738.465 293.518,738.656 293.446,738.87 C 293.376,739.087 293.342,739.311 293.342,739.54 C 293.342,739.763 293.374,739.978 293.443,740.192 M 295.937,737.053 C 296.259,737.202 296.534,737.4 296.765,737.647 C 296.996,737.896 297.178,738.182 297.308,738.505 C 297.438,738.829 297.503,739.168 297.503,739.526 C 297.503,739.862 297.439,740.193 297.315,740.519 C 297.19,740.845 297.014,741.137 296.789,741.393 C 296.561,741.65 296.289,741.855 295.972,742.014 C 295.652,742.172 295.301,742.252 294.915,742.252 C 294.539,742.252 294.189,742.177 293.866,742.03 C 293.547,741.88 293.27,741.681 293.036,741.43 C 292.802,741.18 292.619,740.891 292.488,740.563 C 292.354,740.238 292.288,739.897 292.288,739.54 C 292.288,739.2 292.349,738.867 292.475,738.54 C 292.6,738.214 292.778,737.924 293.007,737.672 C 293.234,737.418 293.507,737.214 293.826,737.06 C 294.145,736.907 294.5,736.831 294.892,736.831 C 295.27,736.831 295.616,736.904 295.937,737.053 M 287.294,738.574 C 287.422,738.244 287.599,737.95 287.828,737.693 C 288.056,737.435 288.328,737.224 288.644,737.064 C 288.96,736.904 289.309,736.824 289.691,736.824 C 289.907,736.824 290.128,736.851 290.352,736.907 C 290.58,736.961 290.791,737.042 290.99,737.147 C 291.187,737.252 291.365,737.381 291.525,737.534 C 291.681,737.689 291.803,737.864 291.889,738.066 L 291.037,738.555 C 290.977,738.409 290.897,738.285 290.797,738.182 C 290.695,738.079 290.587,737.996 290.47,737.931 C 290.351,737.864 290.228,737.817 290.097,737.786 C 289.965,737.756 289.841,737.742 289.72,737.742 C 289.49,737.742 289.277,737.791 289.085,737.893 C 288.891,737.993 288.727,738.126 288.587,738.292 C 288.449,738.458 288.344,738.649 288.268,738.867 C 288.194,739.087 288.155,739.312 288.155,739.549 C 288.155,739.759 288.186,739.97 288.253,740.185 C 288.318,740.399 288.414,740.587 288.544,740.757 C 288.671,740.925 288.831,741.061 289.024,741.165 C 289.217,741.272 289.445,741.326 289.706,741.326 C 289.827,741.326 289.949,741.31 290.074,741.284 C 290.198,741.256 290.32,741.211 290.436,741.151 C 290.551,741.092 290.658,741.009 290.759,740.908 C 290.859,740.803 290.945,740.677 291.016,740.528 L 291.814,741.076 C 291.637,741.424 291.37,741.704 291.011,741.92 C 290.654,742.134 290.228,742.242 289.735,742.242 C 289.319,742.242 288.949,742.166 288.621,742.01 C 288.295,741.855 288.02,741.652 287.795,741.401 C 287.569,741.148 287.396,740.865 287.278,740.546 C 287.16,740.226 287.101,739.905 287.101,739.579 C 287.101,739.238 287.167,738.902 287.294,738.574 M 285.535,740.075 L 283.256,740.075 L 283.256,739.164 L 285.535,739.164 L 285.535,740.075 Z' marker-start='none' marker-end='none'/%3E%3Cpath d='M 283.101,736.937 C 282.229,735.479 280.613,734.498 278.761,734.498 C 275.986,734.498 273.74,736.697 273.74,739.409 C 273.74,742.121 275.986,744.321 278.761,744.321 C 279.489,744.321 280.179,744.168 280.805,743.896 L 281.648,745.501 C 280.749,745.918 279.744,746.151 278.685,746.151 C 274.849,746.151 271.74,743.102 271.74,739.34 C 271.74,735.577 274.849,732.529 278.685,732.529 C 281.362,732.529 283.685,734.015 284.844,736.192 L 283.101,736.937 Z' marker-start='none' marker-end='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.button, .button-small {
  /*&--border {
      border: 2px solid $color-light;
      color: $color-light;
      background-color: $font-color;

  }*/
}
.button, .button:link, .button:visited, .button-small, .button-small:link, .button-small:visited {
  text-decoration: none;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 1rem 4rem;
  line-height: 1;
}
.button:hover, .button-small:hover {
  /*&::after {
      transform: scaleX(1.4) scaleY(1.6);
      opacity: 0;
  }*/
}
.button:active, .button:focus, .button-small:active, .button-small:focus {
  transform: translateY(-0.1rem);
}
.button--filled, .button-small--filled {
  background-color: #18c7cc;
  color: #ffffff;
  border: 1px solid #18c7cc;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 2.5rem 1.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='3.207pt' height='9.749pt' viewBox='1125.64 -438.61 3.207 9.749'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' stroke='%23ffffff' fill='%23ffffff'%3E%3Cpath d='M 1126.01,429.236 L 1128.17,432.614 C 1128.57,433.23 1128.57,434.24 1128.17,434.862 L 1126.01,438.235' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}
.button--filled:hover, .button-small--filled:hover {
  background-color: #ffffff;
  color: #18c7cc;
  border: 1px solid #18c7cc;
  background-repeat: no-repeat;
  background-position: 96% center;
  background-size: 2.5rem 1.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='none' fill-rule='evenodd' stroke='black' stroke-width='0.501' stroke-linejoin='bevel' stroke-miterlimit='10' font-family='Times New Roman' font-size='16' style='font-variant-ligatures:none' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' version='1.1' overflow='visible' width='3.207pt' height='9.749pt' viewBox='1125.64 -438.61 3.207 9.749'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page background' transform='scale(1 -1)'/%3E%3Cg id='MouseOff' transform='scale(1 -1)'%3E%3Cg id='Group' stroke-width='0.75' stroke-linejoin='round' stroke-linecap='round' stroke='%2300aac3' fill='%2300aac3'%3E%3Cpath d='M 1126.01,429.236 L 1128.17,432.614 C 1128.57,433.23 1128.57,434.24 1128.17,434.862 L 1126.01,438.235' fill='none'/%3E%3C/g%3E%3C/g%3E%3Cg id='MouseOver' transform='scale(1 -1)'/%3E%3C/svg%3E");
}

.arrow {
  border: solid #18c7cc;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 4px;
  background-color: transparent;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.cockpit-box {
  background: #9be9ef;
  color: #2a2a2a;
  border-radius: 1rem;
  overflow: hidden;
}
.cockpit-box--button {
  background-color: red;
  color: #ffffff;
  border-radius: 5rem;
  border: none;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  margin-top: -1rem;
}
.cockpit-box--button:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.cockpit-box--headline {
  height: 4rem;
  border-bottom: 1px solid red;
}
.cockpit-box--headline .list-group {
  padding: 2.5% 5%;
  vertical-align: top;
}
.cockpit-box--headline .list-group-item:first-child {
  width: 80%;
  line-height: 4rem;
  text-transform: uppercase;
}
.cockpit-box--headline .list-group-item:nth-child(2) {
  width: 10%;
  text-align: center;
}
.cockpit-box--headline .list-group-item:nth-child(3) {
  width: 10%;
}
.cockpit-box--border-bottom:not(:last-child) {
  border-bottom: 1px solid red;
}
.cockpit-box--content {
  height: 10rem;
}
.cockpit-box--content-image {
  width: 100%;
  height: 100%;
}
.cockpit-box--content-image img {
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  height: 4.8rem;
  width: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cockpit-box--content-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-size: 1rem;
}
.cockpit-box--content-icon {
  width: 100%;
  height: 100%;
}
.cockpit-box--content-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cockpit-box-navigation {
  height: 5rem;
}
.cockpit-box--previous, .cockpit-box--next {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem 2rem;
}
.cockpit-box--previous:hover, .cockpit-box--next:hover {
  background-color: #ffffff;
}
.cockpit-box--previous button, .cockpit-box--next button {
  width: 100%;
  height: 5rem;
  background-color: transparent;
  border: none;
}
.cockpit-box--previous {
  border-left: 1px solid red;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23ffffff' clip-rule='evenodd'%3E%3Cpath d='M4 .755l14.374 11.245-14.374 11.219.619.781 15.381-12-15.391-12-.609.755z'/%3E%3C/svg%3E");
}
.cockpit-box--next {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23ffffff' clip-rule='evenodd'%3E%3Cpath d='M4 .755l14.374 11.245-14.374 11.219.619.781 15.381-12-15.391-12-.609.755z'/%3E%3C/svg%3E");
}

#cockpit-summary .summary-box {
  text-align: center;
}
#cockpit-summary .summary-box .row {
  width: 100%;
}
#cockpit-summary .summary-box .row .col-md-6:first-child {
  border-right: 1px solid #18c7cc;
}
#cockpit-summary .summary-box .row .col-md-6 {
  padding: 1rem 0;
}
#cockpit-summary .summary-box .row:last-child {
  border: none;
}

.vc-text-gray-200 {
  color: red;
}

.vc-bg-gray-900 {
  background: #9be9ef !important;
  border-color: #18c7cc !important;
}

.vc-shadow {
  box-shadow: none !important;
}

.vc-shadow {
  background-color: transparent !important;
  border: none !important;
  color: #9be9ef !important;
  font-size: 1.3rem !important;
  font-family: "DINPro Regular", sans-serif;
}

.vc-bg-blue-800 {
  background-color: #18c7cc !important;
}

.vc-bg-blue-500 {
  background-color: #18c7cc !important;
}

.vc-text-blue-200 {
  color: #18c7cc !important;
}

.settlement-box {
  border-top: 1px solid #18c7cc;
  border-bottom: 1px solid #18c7cc;
}
.settlement-box ul li:first-child {
  padding-top: 1rem;
  font-size: 2.1rem;
}
.settlement-box ul li {
  color: #9be9ef;
  font-size: 1.3rem;
}
.settlement-box a {
  text-decoration: none;
}
.settlement-box .col-md-3:not(:last-child) {
  border-right: 1px solid #18c7cc;
}

.settings-menu {
  font-size: 1.3rem;
}
.settings-menu li {
  padding: 1rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
}
.settings-menu a {
  text-decoration: none;
  color: #2a2a2a;
}
.settings-menu .active {
  background-color: #18c7cc;
}
.settings-menu .active a {
  color: #ffffff;
}

#mail-box .letter-layout {
  margin-top: -1.5rem;
  margin-right: -2.2rem;
}
#mail-box .mail-panel.panel > .panel-body {
  padding-left: 0;
}
#mail-box .mail-navigation-container {
  float: left;
  position: relative;
  height: 55rem;
  transition: width 0.5s;
  color: blue;
  width: 20rem;
  overflow: hidden;
  padding: 0;
}
#mail-box .mail-navigation-container .mail-navigation {
  cursor: pointer;
  font-weight: 300;
  font-size: 1.6rem;
  text-align: left;
  padding: 1rem 1rem 1rem 3rem;
  margin-left: 0;
  transition: 0.8s padding ease;
}
#mail-box .mail-navigation-container .mail-navigation .new-mails {
  position: absolute;
  left: 15rem;
  padding: 0.1rem 0.6rem;
  border: 1px solid;
  background-color: transparent;
  margin-top: -0.2rem;
  font-size: 1.2rem;
  margin-right: 0.5rem;
  border-radius: 1rem;
  transition: 0.8s left ease;
}
#mail-box .mail-navigation-container .mail-navigation.active {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  transition: background-color 0.5s ease;
}
#mail-box .mail-navigation-container .mail-navigation.active:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
#mail-box .mail-navigation-container .mail-navigation.active .new-mails {
  background-color: transparent;
}
#mail-box .mail-navigation-container .mail-navigation:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#mail-box .mail-navigation-container .btn.compose-button {
  width: 14rem;
  font-weight: 300;
  border: #d6d6d6 2px solid;
  background-color: transparent;
  margin: 1.5rem 0;
}
#mail-box .labels {
  margin-top: 1.4rem;
}
#mail-box .labels-container {
  margin-top: 1.6rem;
  text-align: center;
  padding-right: 2.8rem;
  padding-left: 2rem;
}
#mail-box .labels-container .label-item {
  display: inline-block;
}
#mail-box .labels-title {
  padding-left: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.12);
}
#mail-box .labels-title .label-header {
  line-height: 2.4rem;
}
#mail-box .label-item {
  margin: 0.5rem;
}
#mail-box .add-label-container {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 300;
}
#mail-box .add-label-container .label-input-stub {
  font-size: 1.4rem;
  margin-left: 0.5rem;
}
#mail-box .add-label-container i {
  cursor: pointer;
}
#mail-box .margin-left {
  margin-left: 1rem;
}
#mail-box .mail-messages-control {
  padding: 1rem;
}
#mail-box .mail-messages-control ul.dropdown-menu {
  margin-top: 0.5rem;
}
#mail-box .mail-messages-control .btn {
  background-color: transparent;
  width: auto;
}
#mail-box .mail-messages-control .btn:focus, #mail-box .mail-messages-control .btn:hover, #mail-box .mail-messages-control .btn:active {
  color: blue;
  opacity: 0.8;
  box-shadow: none;
}
#mail-box .mail-messages-control .more-button {
  width: 6rem;
  font-size: 1.4rem;
  padding: 0.6rem 0.5rem;
}
#mail-box .mail-messages-control .refresh-button {
  margin-left: 1rem;
}
#mail-box .mail-messages-control span.select-all-label {
  font-size: 1.3rem;
  font-weight: 300;
}
#mail-box .message-container, #mail-box .side-message-navigation {
  float: left;
  padding: 0 1.5rem;
  position: relative;
  height: 55rem;
  transition: width 0.5s;
  width: calc(100% - 20rem);
  border-bottom-right-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: -1px 0 0 0 rgba(255, 255, 255, 0.12);
}
#mail-box .side-message-navigation {
  padding: 0;
  width: calc(100% - 20rem);
}
#mail-box .side-message-navigation .side-message-navigation-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#mail-box .mail-body-part {
  width: calc(100% - 3rem);
  text-overflow: ellipsis;
  height: 2rem;
  line-height: 2rem;
  overflow: hidden;
  margin-left: 0.5rem;
  opacity: 0.8;
}
#mail-box .mail-tag.tag.label {
  display: inline-block;
  font-size: 1.3rem;
  text-transform: uppercase;
  background-color: rgba(24, 199, 204, 0.1);
  padding: 0.5rem 1rem;
}
#mail-box .phone-email i {
  color: blue;
}
#mail-box .message-container {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  overflow-x: hidden;
}
#mail-box .little-human {
  cursor: pointer;
  transition: border-left 1.5s ease;
  font-weight: 300;
}
#mail-box .little-human .little-human-picture {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 2.3rem;
  margin: 0.7rem 0 0.7rem 0.7rem;
  transition: all 0.2s ease-in-out;
}
#mail-box .little-human .name {
  font-size: 1.6rem;
  vertical-align: super;
  white-space: nowrap;
}
#mail-box .little-human .name-wrap {
  margin-left: 1rem;
}
#mail-box .little-human .date {
  float: right;
  margin: 1rem 1rem 0 0.5rem;
  display: inline-block;
  font-size: 1.3rem;
  white-space: nowrap;
}
#mail-box .little-human .tag {
  vertical-align: super;
}
#mail-box .little-human .subject {
  white-space: nowrap;
  margin: 0 3rem;
  font-size: 1.6rem;
}
#mail-box .little-human .subject--unread {
  font-weight: bold;
}
#mail-box .little-human .subject--read {
  font-weight: lighter;
}
#mail-box .little-human:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#mail-box .little-human:hover .little-human-picture {
  -webkit-animation: rotateReturnAnimation 0.5s;
          animation: rotateReturnAnimation 0.5s;
}
#mail-box .back-button {
  margin-left: 4.5rem;
}
#mail-box .name-container {
  margin-left: 1rem;
}
#mail-box .mail-checkbox {
  margin-top: 0.5rem;
  margin-left: 0.6rem;
}
#mail-box .mail-checkbox .custom-checkbox {
  margin-left: 0.5rem;
}
#mail-box .mail-panel .tag {
  text-transform: lowercase;
  font-size: 1.1rem;
  font-weight: 300;
  width: 4.5rem;
  cursor: pointer;
  display: inline-block;
}
#mail-box .mail-panel .tag.label {
  padding: 0.2em 0.5em;
  border-radius: 0.2rem;
  line-height: 1.1;
}
#mail-box .mail-panel .tag.work {
  background-color: #007bff;
}
#mail-box .mail-panel .tag.study {
  background-color: #ffc107;
}
#mail-box .mail-panel .tag.family {
  background-color: #28a745;
}
#mail-box .mail-panel .tag.friend {
  background-color: #dc3545;
}
#mail-box .messages {
  overflow: auto;
  min-height: 100vh;
}
#mail-box .messages table {
  width: 100%;
  border-top: 1px solid red;
}
#mail-box .messages table tr {
  border-bottom: 1px solid red;
}
@media screen and (min-width: 119.9rem) {
  #mail-box .photo-td {
    width: 5.5rem;
  }
  #mail-box .check-td {
    width: 3.5rem;
  }
}
#mail-box .important {
  color: #ffc107;
}
#mail-box .message-control-icon {
  cursor: pointer;
  font-size: 1.6rem;
  margin-right: 0.5rem;
}
#mail-box .person-info {
  padding: 0 0 1rem 3rem;
  margin-top: 1rem;
}
#mail-box .person-info .human-picture {
  width: 8rem;
  height: 8rem;
  border-radius: 4rem;
  margin-top: -4.5rem;
}
#mail-box .person-info .name {
  display: inline-block;
  margin-left: 1rem;
  margin-top: 0.5rem;
}
#mail-box .person-info .name h2 {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 1.6rem;
}
#mail-box .person-info .name .second-name {
  margin: 0.5rem 0;
}
#mail-box .no-padding {
  padding: 0;
}
#mail-box .contact-info {
  display: inline-block;
}
#mail-box .contact-info div {
  margin-top: 1rem;
}
#mail-box .contact-info.phone-email .ion-iphone {
  font-size: 1.6rem;
  width: 2.7rem;
  display: inline-block;
}
#mail-box .contact-info.phone-email .phone {
  font-size: 1.6rem;
  font-weight: 300;
  vertical-align: super;
}
#mail-box .contact-info.phone-email .ion-email {
  font-size: 2.4rem;
  width: 2.7rem;
  display: inline-block;
}
#mail-box .contact-info.phone-email .email {
  font-size: 1.3rem;
  font-weight: 300;
  vertical-align: super;
}
#mail-box .contact-info.position-address div {
  margin-top: 1.7rem;
}
#mail-box .contact-info.position-address .position {
  font-size: 1.6rem;
  font-weight: 300;
}
#mail-box .contact-info.position-address .address {
  font-size: 1rem;
  font-weight: 300;
}
#mail-box .message-details {
  margin: 0.5rem 0;
  padding: 0.5rem 0 0.5rem 3rem;
}
#mail-box .message-details .subject {
  font-size: 2rem;
  margin-right: 1rem;
  font-weight: 300;
}
#mail-box .message-details .control-icons {
  float: right;
  font-size: 2rem;
  margin-right: 4rem;
}
#mail-box .message-details .control-icons i {
  cursor: pointer;
}
#mail-box .message-details .date {
  white-space: nowrap;
  font-size: 1.2rem;
}
#mail-box .message-body {
  margin: 2rem 0;
  padding-left: 3rem;
  font-weight: 300;
  line-height: 1.8rem;
}
#mail-box .message-body p {
  margin-bottom: 0;
}
#mail-box .attachment {
  margin: 0.5rem 0;
  padding-left: 3rem;
}
#mail-box .attachment .file-icon {
  font-size: 2.4rem;
  cursor: pointer;
}
#mail-box .attachment .file-name {
  font-size: 1.4rem;
  margin-left: 0.3rem;
  position: relative;
  top: -0.3rem;
  font-weight: 300;
}
#mail-box .attachment .file-links {
  font-size: 1.4rem;
}
#mail-box .line {
  height: 1px;
  background-color: #d6d6d6;
  opacity: 0.3;
}
#mail-box .answer-button {
  margin-left: 2rem;
  color: white;
  font-size: 1.6rem;
  font-weight: 300;
  padding-left: 4rem;
  padding-right: 4rem;
  background-color: #F26798;
}
#mail-box .answer-button:hover {
  color: white;
}
#mail-box .answer-button:focus {
  color: white;
}
#mail-box .answer-container {
  float: right;
  margin-top: 1rem;
  height: 3rem;
}
#mail-box .answer-container .mail-button {
  font-size: 1.3rem;
  background-color: rgba(24, 199, 204, 0.5);
  border: none;
  color: white;
  width: 10rem;
  padding: 0.5rem 0;
  transition: none;
  text-decoration: none;
}
#mail-box .answer-container .mail-button:hover {
  transform: none;
  background-color: #18c7cc;
}
@-webkit-keyframes rotateReturnAnimation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotateReturnAnimation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 1199px) {
  #mail-box .name-h {
    display: inline;
  }
  #mail-box .person-info .human-picture {
    margin-top: -3.5rem;
  }
  #mail-box .person-info .name {
    margin-top: 2rem;
  }
  #mail-box .person-info .mail-tag {
    margin-top: 1rem;
  }
  #mail-box .second-name {
    margin-top: 0;
  }
}
@media screen and (max-width: 990px) {
  #mail-box .person-info .human-picture {
    width: 15rem;
    height: 15rem;
    border-radius: 7.5rem;
    margin: 0.5rem auto;
    display: block;
  }
  #mail-box .person-info, #mail-box .message-details, #mail-box .message-body, #mail-box .attachment {
    padding-left: 1rem;
  }
  #mail-box .message-container {
    padding-left: 1.5rem;
  }
  #mail-box .back-button, #mail-box .contact-info {
    margin-left: 1.5rem;
  }
  #mail-box .additional-info {
    display: none;
  }
  #mail-box .little-human .date {
    font-size: 1rem;
  }
  #mail-box .margin-left {
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 760px) {
  #mail-box .mail-navigation-container {
    width: 17.5rem;
  }
  #mail-box .mail-navigation-container .mail-navigation {
    padding-left: 1.9rem;
  }
  #mail-box .mail-navigation-container .mail-navigation .new-mails {
    left: 13.7rem;
  }
  #mail-box .side-message-navigation {
    width: calc(100% - 17.5rem);
  }
  #mail-box .message-container {
    width: calc(100% - 17.5rem);
  }
  #mail-box .mail-body-part {
    display: none;
  }
  #mail-box .little-human .little-human-picture {
    width: 3rem;
    height: 3rem;
  }
  #mail-box .messages-control .more-button {
    width: 5rem;
  }
}
@media screen and (max-width: 560px) {
  #mail-box .mail-navigation-container {
    padding: 0;
    width: 0;
  }
  #mail-box .mail-navigation-container.expanded {
    width: 15.5rem;
  }
  #mail-box .mail-navigation-container .mail-navigation {
    font-size: 1.4rem;
    padding-left: 2.3rem;
  }
  #mail-box .mail-navigation-container .mail-navigation .new-mails {
    left: 11.6rem;
    padding: 0 0.5rem;
    margin-top: 0;
    font-size: 1.2rem;
  }
  #mail-box .mail-navigation-container .mail-navigation .labels {
    margin-left: 1rem;
  }
  #mail-box .mail-navigation-container .compose-button {
    width: 11rem;
  }
  #mail-box .mail-messages-control .custom-checkbox {
    margin-left: 0.5rem;
    margin-top: -2px;
  }
  #mail-box .side-message-navigation, #mail-box .message-container {
    width: calc(100% - 15.5rem);
  }
  #mail-box .side-message-navigation.expanded, #mail-box .message-container.expanded {
    width: 100%;
    border: none;
    box-shadow: none;
  }
  #mail-box div.toggle-navigation-container {
    display: inline-block;
  }
  #mail-box .little-human .name {
    white-space: inherit;
  }
  #mail-box .little-human .little-human-picture {
    display: none;
  }
  #mail-box .add-label-container {
    padding-left: 0;
    font-size: 1.3rem;
    font-weight: 300;
  }
}
#mail-box .compose-header {
  padding: 0.8rem 0.3rem 0.8rem 1rem;
  color: white;
  font-weight: 300;
  font-size: 1.3rem;
  background-color: #6b6b6b;
}
#mail-box .header-controls {
  display: inline-block;
  float: right;
}
#mail-box .header-controls i {
  margin-right: 0.5rem;
  font-size: 1.4rem;
  cursor: pointer;
}
#mail-box .header-controls i:hover {
  color: #007bff;
}
#mail-box .compose-container .ta-scroll-window > .ta-bind {
  height: 29rem;
  overflow-y: scroll;
}
#mail-box .modal-compose input.form-control.compose-input {
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
#mail-box .compose-footer {
  padding: 0.2rem 0.4rem;
  background-color: whitesmoke;
}
#mail-box .compose-footer .btn-send {
  background-color: #007bff;
  color: white;
  padding: 0.2rem 1rem;
  margin: 0.3rem;
  font-weight: 300;
}
#mail-box .compose-footer .btn-default {
  background-color: transparent;
  border: none;
}
#mail-box .footer-controls {
  float: right;
  margin: 0.6rem;
}
#mail-box .compose-footer-icon {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  cursor: pointer;
  color: #7d7d7d;
}
#mail-box .compose-footer-icon:hover {
  color: #007bff;
}
#mail-box .compose-container {
  background-color: whitesmoke;
}
#mail-box .compose-container .ta-text.ta-editor {
  background-color: #d6d6d6;
}
#mail-box .compose-container .ta-text.ta-editor div:focus {
  outline: none;
}
#mail-box .footer-control-first {
  border-right: 2px solid #949494;
  display: inline-block;
  padding-right: 0.9rem;
}
#mail-box .toggle-navigation-container {
  display: none;
  vertical-align: middle;
  margin-left: -1px;
}
#mail-box .toggle-navigation-container.detail-page {
  margin-left: 1rem;
}
#mail-box .collapse-navigation-link {
  font-size: 3.2rem;
  color: blue;
}
#mail-box .collapse-navigation-link:visited {
  color: blue;
}
#mail-box .collapse-navigation-link:hover {
  color: #ffc107;
  opacity: 0.8;
}
#mail-box .collapsed {
  width: 0;
}
#mail-box .modal .modal-dialog.modal-compose {
  max-width: 39.8rem;
  position: fixed;
  bottom: 0;
  right: 0;
  max-height: 47.4rem;
}
#mail-box .modal .modal-dialog.modal-compose .form-control, #mail-box .modal .modal-dialog.modal-compose .bootstrap-tagsinput input {
  color: #7d7d7d;
  border-radius: 0;
}
#mail-box .modal .modal-dialog.modal-compose .ta-toolbar .btn {
  border-radius: 0;
  color: #7d7d7d;
  border: 1px transparent;
}
#mail-box .modal .modal-dialog.modal-compose .ta-toolbar .btn.active {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.12);
}
@media (max-width: 640px) {
  #mail-box .modal .modal-dialog.modal-compose {
    max-height: 60rem;
  }
}

.mailbox-folder {
  list-style: none;
  color: #18c7cc;
}
.mailbox-folder li {
  height: 3rem;
  font-size: 1.6rem;
  opacity: 0.5;
  text-transform: uppercase;
  padding-left: 3rem;
  line-height: 3rem;
}
.mailbox-folder li .active {
  color: #18c7cc;
  font-weight: bold;
}
.mailbox-folder li a {
  text-decoration: none;
  color: #18c7cc;
}
.mailbox-folder .active {
  color: #18c7cc;
  font-weight: bold;
}
.mailbox-folder .message-box {
  height: 5rem;
  width: 100%;
}
.mailbox-folder .message-box .button {
  width: 100%;
  height: 3rem;
}

.mailbox-content {
  min-height: 100vh;
}
.mailbox-content table tr th {
  background-color: rgba(24, 199, 204, 0.5);
  border-bottom: none;
}
.mailbox-content table tr a {
  color: #ffffff;
  text-decoration: none;
}
.mailbox-content table tr:last-child {
  border-bottom: 1px solid red;
}
.mailbox-content table tr:nth-child(2n) {
  background-color: rgba(24, 199, 204, 0.1);
}
.mailbox-content table th, .mailbox-content table td {
  height: 3rem;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 3rem;
}
.mailbox-content table tbody tr:hover {
  background-color: red;
}
.mailbox-content .feedback-message {
  height: 3rem;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 3rem;
}

.box {
  padding: 2rem;
}
.box .box-footer {
  /*button{
      width: 50%;
      vertical-align: top;
  }*/
}
.box .box-footer button {
  width: 90%;
  margin-left: 10%;
}

.editor {
  font-size: 1.3rem;
}

.box-striped {
  border-bottom: 1px solid red;
}
.box-striped:nth-child(2n+1) {
  background-color: rgba(24, 199, 204, 0.1);
}

.ck-content {
  border-radius: 1.5rem;
}

.ck-toolbar {
  background-color: red !important;
  border-color: red !important;
}

.ck-editor__editable {
  min-height: 20rem !important;
  border-color: red !important;
  background-color: transparent !important;
  color: #ffffff !important;
  padding: 1rem 2rem !important;
}
.ck-editor__editable ul, .ck-editor__editable ol {
  padding: 0 1.5rem !important;
}

.ck-button:hover, .ck-button:focus, .ck-button:active, .ck-button:visited, .ck-button:link, .ck-link-actions:hover, .ck-link-actions:focus, .ck-link-actions:active, .ck-link-actions:visited, .ck-link-actions:link, .ck-link-actions__preview:hover, .ck-link-actions__preview:focus, .ck-link-actions__preview:active, .ck-link-actions__preview:visited, .ck-link-actions__preview:link {
  background-color: rgba(24, 199, 204, 0.1) !important;
}

.ck-heading-dropdown {
  min-width: 5rem !important;
  /* & .ck-dropdown__button .ck-button__label {
       width: 6em;
   }*/
}
.ck-heading-dropdown .ck-dropdown__panel .ck-list__item {
  min-width: 5rem !important;
  background-color: red !important;
  border: none !important;
  /*&:hover,
  &:focus,
  &:link  {
      background-color: $background-dark-grey-with-opacity !important;
  }

  &:active, &:visited{
      background-color: $background-dark-grey-with-opacity !important;

  }*/
}

.ck .ck-link_selected {
  background-color: red !important;
}

.order-section--headline {
  font-family: "DINPro Bold", sans-serif;
  color: #333;
  font-size: 2.1rem;
}
.order-section--headline:hover {
  text-decoration: none;
  color: #333;
}
.order-section--item {
  font-family: "Azonix Regular", sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
  height: 1.3rem;
  margin-top: 2rem;
  padding: 0;
  line-height: 1;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.order-section--item--highlighted {
  color: #333;
}
.order-section--item--not-highlighted {
  color: #cccccc;
}
.order-section--summary {
  font-size: 1.3rem;
}

.order-border-bottom {
  border-bottom: 1px solid #cccccc;
}
