@charset "UTF-8";
.navbar .navbar-brand:has(.navbar-brand-caption) {
  line-height: 1;
}
.navbar .navbar-brand:has(.navbar-brand-caption) .navbar-brand-caption {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 4.2px;
  text-align: justify;
  font-weight: 600;
  padding-left: 1px;
  /*
      Padding-left is need to align with first letter of navbar-brand. 
      May not always be needed. Depends on first-letter.

  */
}
.navbar .navbar-toggler {
  margin: 4px 0;
}

.container.container-striped > .row:nth-of-type(odd) {
  background-color: transparent;
}
.container.container-striped > .row:nth-of-type(even) {
  background-color: var(--kii-tertiary);
}
.container.container-striped > .row:hover {
  background-color: var(--kii-tertiary-active);
}

.top-offset-30 {
  top: 30px !important;
}

.w-33 {
  width: 33.3% !important;
}

/* submodal may or maynot be within a modal as submodal events 
    will trigger listener event for parent */
.submodal .modal-dialog {
  margin-top: 50px;
}
.submodal .modal-dialog .modal-content {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35) !important;
}

@media (min-width: 1460px) {
  .ki-px-xxl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .ki-px-xxl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .ki-px-xxl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .ki-px-xxl-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .ki-px-xxl-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .ki-px-xxl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ki-mx-xxl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .ki-mx-xxl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .ki-mx-xxl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .ki-mx-xxl-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .ki-mx-xxl-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .ki-mx-xxl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.dropdown-menu li {
  position: relative;
}
.dropdown-menu li:hover > .dropdown-submenu {
  display: block;
}
.dropdown-menu li .submenu-toggle::after {
  display: inline-block;
  position: absolute;
  top: 0.7em;
  right: 0.5em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropdown-menu li .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0px;
  border-radius: 0;
}
.dropdown-menu li .dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.d-hidden {
  /* Difference between this and d-none is this has no "!imporant"
     So it is safe to use for elements that will need to show via animation.
  */
  display: none;
}

.d-invisible {
  /* Difference between this and d-none, d-hidden, and type="hidden" is this 
      can still have and lose focus. Ideal for testing hidden value (ex: progress bar)
  */
  position: absolute;
  z-index: -1;
  visibility: hidden;
  width: 0;
  height: 0;
  border-width: 0;
}

.d-invisible-inline {
  /* Difference between this and d-invisible is this is not absolutely positioned
      and height is maintained for UI integrity.
  */
  visibility: hidden;
  width: 0;
}

.cursor-pointer {
  cursor: pointer !important;
}

.readonly {
  background-color: #e9ecef;
}

.flex-table-container {
  /* the parent container of this class must be "display: flex" (d-flex) and 
     it must include the area the flex-table is filling.
  */
  position: relative;
  flex-grow: 1;
  display: flex;
}
.flex-table-container table.flex-table {
  /* Table's tbody will grow to fill the space.
     Table can use bootstrap grid layout with col-*, etc.
     ******
     What makes this work is using absolute positioning inside
     a flexbox container that is relative position. This allows us 
     to predefine the size of the box using top, left, bottom, and width.
     It is basically, cheating by not defining height with a set number
     of pixels.
  */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0 !important;
  /*flex table inside flex table*/
}
.flex-table-container table.flex-table table.flex-table {
  position: relative;
}
.flex-table-container table.flex-table table.flex-table > tbody {
  overflow-y: auto;
}
.flex-table-container table.flex-table > thead, .flex-table-container table.flex-table > tfoot {
  flex-grow: 0;
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  padding-right: 15px;
}
.flex-table-container table.flex-table > thead th, .flex-table-container table.flex-table > tfoot th {
  border-width: 0px;
}
.flex-table-container table.flex-table > tbody {
  flex-grow: 1;
  overflow-y: scroll;
  min-height: 0;
}
.flex-table-container table.flex-table > tbody, .flex-table-container table.flex-table > thead, .flex-table-container table.flex-table > tfoot {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.flex-table-container table.flex-table > tbody > tr, .flex-table-container table.flex-table > thead > tr, .flex-table-container table.flex-table > tfoot > tr {
  /* This will the width passed the scroll bar to ensure header and row columns
     align when using percentage widths (e.g. col-2).
      */
  width: calc(100% + 0px);
  width: 100%;
  display: flex;
}
.flex-table-container table.flex-table > tbody > tr > td, .flex-table-container table.flex-table > tbody > tr > th, .flex-table-container table.flex-table > thead > tr > td, .flex-table-container table.flex-table > thead > tr > th, .flex-table-container table.flex-table > tfoot > tr > td, .flex-table-container table.flex-table > tfoot > tr > th {
  display: block;
  float: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.flex-table-container table.flex-table > tbody > tr > td div, .flex-table-container table.flex-table > tbody > tr > th div, .flex-table-container table.flex-table > thead > tr > td div, .flex-table-container table.flex-table > thead > tr > th div, .flex-table-container table.flex-table > tfoot > tr > td div, .flex-table-container table.flex-table > tfoot > tr > th div {
  display: block;
  float: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.flex-table-container table.flex-table > tbody > tr > :not(:last-child) > :last-child > *, .flex-table-container table.flex-table > thead > tr > :not(:last-child) > :last-child > *, .flex-table-container table.flex-table > tfoot > tr > :not(:last-child) > :last-child > * {
  border-bottom-color: inherit;
}
.flex-table-container table.flex-table > tfoot {
  border-width: 0;
}
.flex-table-container table.flex-table > tfoot > tr {
  border-width: 0;
}
.flex-table-container table.flex-table > tfoot > tr > td {
  border-width: 0;
}

.spinner-border-lg {
  width: 5rem;
  height: 5rem;
  border-width: 0.5em;
}

form .field-validation-error {
  color: var(--bs-danger);
  font-size: smaller;
  display: inline-block;
}
form .must-be-valid.must-be-is-invalid ~ .field-validation-error::before {
  font-family: "bootstrap-icons";
  content: "\f337" !important;
  color: var(--bs-danger) !important;
}
form .input-validation-error {
  border-color: #dc3545;
}
form {
  /*.input-group {
      input[readonly][required] {
          background-color: inherit !important;
      }
  }*/
}

.input-group:has(> .btn-transparent) {
  /* The has() allows me to apply a style to a "previous" sibling. */
}
.input-group:has(> .btn-transparent) .form-control:first-child, .input-group:has(> .btn-transparent) .form-select:first-child {
  border-top-right-radius: 3.5px !important;
  border-bottom-right-radius: 3.5px !important;
}
.input-group:has(> .btn-transparent) .form-control:first-child {
  padding-right: 2.25rem;
}
.input-group:has(> .btn-transparent) .form-select:first-child {
  padding-right: 4rem;
}
.input-group:has(> .btn-transparent) .btn-transparent {
  position: absolute;
  z-index: 5;
  height: 100%;
  background-color: transparent !important;
  color: var(--bs-dark);
  border: 0px;
  right: 0;
}
.input-group:has(> .btn-transparent) .btn-transparent:focus {
  box-shadow: none;
}
.input-group:has(> .btn-transparent) .form-select ~ .btn-transparent {
  right: 1.75rem;
}
.input-group:has(> .btn-transparent) .form-control:read-only ~ .btn-transparent:disabled {
  color: var(--bs-secondary);
  opacity: 50%;
}

fieldset.kii-fieldset {
  border-width: 1px;
  border-style: solid;
  border-color: var(--bs-secondary);
  padding: 0 1em;
}
fieldset.kii-fieldset legend {
  float: none;
  width: auto;
  padding: 0px 12px;
  font-size: inherit;
  font-weight: normal;
  color: var(--bs-secondary);
}
fieldset.kii-fieldset legend.kii-legend-outline {
  padding: 3px 12px;
  color: var(--bs-secondary);
  border: solid 1px var(--bs-secondary);
  border-radius: 1em;
}
fieldset.kii-fieldset legend.kii-legend-solid {
  padding: 3px 10px;
  color: white;
  background-color: var(--bs-secondary);
  border-radius: 1em;
}
fieldset.kii-fieldset .row {
  padding: 0;
}

.spinner-overlay {
  display: none;
  z-index: 1071;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  align-items: center !important;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}
.spinner-overlay .spinner-border {
  display: none;
  width: 5rem;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
}
.spinner-overlay .processing-message {
  display: none;
  margin-top: 20px;
  font-size: large;
  font-weight: bold;
}
.spinner-overlay .waiting-message {
  display: none;
  margin-top: 20px;
  font-size: large;
  font-weight: bold;
}

body {
  /* Be sure to any changes are reflected in javascripted. */
}
body.is-waiting > .spinner-overlay, body.is-processing > .spinner-overlay, body:has(.edit-order.is-waiting, .edit-order.is-processing) > .spinner-overlay {
  display: flex !important;
}
body.is-waiting > .spinner-overlay .spinner-border, body.is-processing > .spinner-overlay .spinner-border, body:has(.edit-order.is-waiting, .edit-order.is-processing) > .spinner-overlay .spinner-border {
  display: block;
}
body.is-processing .processing-message, body:has(.edit-order.is-processing) .processing-message {
  display: block !important;
}
body.is-processing .waiting-message, body:has(.edit-order.is-processing) .waiting-message {
  display: none !important;
}
body.is-waiting header, body:has(.edit-order.is-waiting) header {
  z-index: 1031;
}
body.is-waiting .processing-message, body:has(.edit-order.is-waiting) .processing-message {
  display: none !important;
}
body.is-waiting .waiting-message, body:has(.edit-order.is-waiting) .waiting-message {
  display: block !important;
}

.progress-bar.remainder-bar {
  flex-grow: 1;
  justify-content: center;
  background-color: #e9ecef;
  color: var(--bs-dark);
}

.modal-maxbody {
  /* This can be on the modal-body or on a container in the modal body. 
      Works best when modal-body has no padding (p-0).
  */
  max-height: calc(89vh - 135px);
  overflow-y: auto;
}

.btn.btn-transparent {
  border: 0;
  box-shadow: none;
}
.btn.btn-transparent:focus {
  box-shadow: none;
}
.btn.btn-tertiary {
  border: 1px solid var(--kii-tertiary);
  background-color: var(--kii-tertiary);
  color: var(--bs-dark);
}
.btn.btn-tertiary:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn.btn-tertiary:active, .btn.btn-tertiary:hover {
  background-color: var(--kii-tertiary-active);
}
.btn.btn-outline-tertiary {
  border: 1px solid var(--kii-tertiary);
  color: var(--bs-dark);
}
.btn.btn-outline-tertiary:hover {
  background-color: var(--kii-tertiary);
  color: var(--bs-dark);
}

/* stack buttons. expects only two btn per stack */
.btn-stack {
  position: relative;
}
.btn-stack .btn-transparent {
  position: absolute;
  z-index: 2;
}
.btn-stack .btn-transparent:first-child {
  left: 0;
}
.btn-stack .btn:not(.btn-transparent):last-child {
  padding-left: 31px;
}
.btn-stack .btn:not(.btn-transparent):first-child {
  padding-right: 31px;
}
.btn-stack .btn-transparent:last-child {
  right: 0;
}

/* rounded button groups */
.btn-group.rounded-pill {
  border-radius: 0;
}
.btn-group.rounded-pill * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.btn-group.rounded-pill :first-child {
  border-top-left-radius: 50rem !important;
  border-bottom-left-radius: 50rem !important;
}
.btn-group.rounded-pill :last-child {
  border-top-right-radius: 50rem !important;
  border-bottom-right-radius: 50rem !important;
}
.btn-group.rounded-pill .border-right-slash {
  -webkit-clip-path: polygon(-0.75rem -0.25rem, 100% -0.25rem, calc(100% - 1.5rem) calc(100% + 0.25rem), 0 calc(100% + 0.25rem));
  clip-path: polygon(-0.75rem -0.25rem, 100% -0.25rem, calc(100% - 1.5rem) calc(100% + 0.25rem), 0 calc(100% + 0.25rem));
  margin-right: -0.6rem !important;
  padding-right: 2rem !important;
}
.btn-group.rounded-pill .border-left-slash {
  -webkit-clip-path: polygon(1.5rem -0.25rem, calc(100% + 0.25rem) -0.25rem, calc(100% + 0.25rem) calc(100% + 0.25rem), 0 calc(100% + 0.25rem));
  clip-path: polygon(1.5rem -0.25rem, calc(100% + 0.25rem) -0.25rem, calc(100% + 0.25rem) calc(100% + 0.25rem), 0 calc(100% + 0.25rem));
  margin-left: -0.6rem !important;
  padding-left: 2rem !important;
}
.btn-group.rounded-pill .divider-gap {
  display: inline;
  width: 3px;
  background-color: transparent;
}
.btn-group.rounded-pill .divider-slash {
  position: relative;
  z-index: 5;
  width: 1.5rem;
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
  background-color: transparent;
  border-top: solid 5px white;
  border-bottom: solid 5px white;
  margin-top: -5px;
  margin-bottom: -5px;
}
.btn-group.rounded-pill .divider-slash::before {
  content: "";
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0.75rem;
  transform: skewX(-25deg);
  display: block;
  height: 100%;
  width: 3px;
  background-color: white;
  -webkit-backface-visibility: hidden;
}
.btn-group.rounded-pill .divider-slash::after {
  content: "";
  z-index: 6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: pink;
}
.btn-group.rounded-pill .divider-slash + .btn {
  padding-left: 1rem;
}

.accordion-button.text-white:focus {
  border-color: inherit !important;
  box-shadow: none;
}
.accordion-button.text-white::after {
  filter: brightness(0) saturate(0) invert(100%);
}

/*more font sizes*/
.fs-7 {
  font-size: 0.85rem;
}
.fs-8 {
  font-size: 0.75rem;
}
.fs-9 {
  font-size: 0.65rem;
}
.fs-0 {
  font-size: 0.5rem;
}
.fs-00 {
  font-size: 0.25rem;
}

/* more colors */
.bg-tertiary {
  background-color: var(--kii-tertiary);
}

select[data-kii-placeholder] {
  /* This is to make a select look like it has a placeholder.
     Requires function initSelectPlaceholders(). 
     Essentially, the select has to be aware of it own value via a data-attr.
     There is no select[value=''] support in CSS, yet.
  */
}
select[data-kii-placeholder][data-kii-selectedvalue=""], select[data-kii-placeholder][data-kii-value=""] {
  color: #6c757d;
}
select[data-kii-placeholder] option {
  color: var(--bs-dark);
}
select[data-kii-placeholder] option[value=""]:first-child {
  /* could be hidden, but here is a color just in case*/
  color: #6c757d;
  background-color: inherit;
}

select.kii-readonly {
  border: 1px solid #ced4da;
  background-color: #e9ecef;
  pointer-events: none;
}
select.kii-readonly:focus, select.kii-readonly:focus-within {
  visibility: hidden;
}

.ui-dialog {
  z-index: 2000;
}

.ui-draggable .ui-draggable-handle {
  cursor: move;
}

.kii-page-break-inside-avoid {
  page-break-inside: avoid;
}

/**********************
Used the site below to encode the svg markup so we could use it via CSS.
https://www.hackification.io/tools/svg-to-css-background/

Steps
1. Copy the SVG markup.
2. If single color, remove all "fill" attributes (or maybe "stroke" depending on the SVG).
2b. If note single color, do steps 4,5,6,8
3. Add *fill="black"* to top SVG attribute.
4. Copy it all to the website above.
5. Add new mixin for the new SVG and paste code from site.
6. Place the encoded SVG as "content."
7. Replace *black* with dollar-signfillColor
8. Add new class and use @include.

By making the logos a CSS, we avoid multiple images as we can recolor with another @include and 
we can resize using the height on kii-font. Plus, it is a vector.


***********************/
.kii-font {
  height: 20px;
  position: relative;
  display: inline-block;
}
.kii-font.kii-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22black%22%20id%3D%22Group_7625%22%20data-name%3D%22Group%207625%22%20width%3D%22273.869%22%20height%3D%2222%22%20viewBox%3D%220%200%20273.869%2022%22%3E%3Cg%20id%3D%22Group_7347%22%20data-name%3D%22Group%207347%22%20transform%3D%22translate(0.888%200.026)%22%3E%3Cpath%20id%3D%22Path_11869%22%20data-name%3D%22Path%2011869%22%20d%3D%22M689.805%2C111.928a10.839%2C10.839%2C0%2C0%2C0-19.915%2C0Z%22%20transform%3D%22translate(-669.89%20-105.371)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7348%22%20data-name%3D%22Group%207348%22%20transform%3D%22translate(0.899%2015.14)%22%3E%3Cpath%20id%3D%22Path_11870%22%20data-name%3D%22Path%2011870%22%20d%3D%22M689.82%2C124.2a10.84%2C10.84%2C0%2C0%2C1-19.916%2C0Z%22%20transform%3D%22translate(-669.904%20-124.202)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7349%22%20data-name%3D%22Group%207349%22%20transform%3D%22translate(0.362%207.826)%22%3E%3Cpath%20id%3D%22Path_11871%22%20data-name%3D%22Path%2011871%22%20d%3D%22M690.205%2C115.369a1.714%2C1.714%2C0%2C0%2C0-.079-.28H669.312a1.516%2C1.516%2C0%2C0%2C0-.078.28h5.909v.789h8.951v-.789Z%22%20transform%3D%22translate(-669.234%20-115.089)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7350%22%20data-name%3D%22Group%207350%22%20transform%3D%22translate(0.093%209.281)%22%3E%3Cpath%20id%3D%22Path_11872%22%20data-name%3D%22Path%2011872%22%20d%3D%22M690.381%2C116.9H668.93a1.438%2C1.438%2C0%2C0%2C0-.029.279h6.176v.789h8.953v-.789h6.381a1.368%2C1.368%2C0%2C0%2C0-.03-.279%22%20transform%3D%22translate(-668.9%20-116.902)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7351%22%20data-name%3D%22Group%207351%22%20transform%3D%22translate(0%2010.734)%22%3E%3Cpath%20id%3D%22Path_11873%22%20data-name%3D%22Path%2011873%22%20d%3D%22M690.46%2C118.713H668.793a1.389%2C1.389%2C0%2C0%2C0-.006.278l.013%2C0h6.254v.787h8.952v-.787h6.46a1.285%2C1.285%2C0%2C0%2C0-.006-.28%22%20transform%3D%22translate(-668.784%20-118.713)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7352%22%20data-name%3D%22Group%207352%22%20transform%3D%22translate(0.104%2012.291)%22%3E%3Cpath%20id%3D%22Path_11874%22%20data-name%3D%22Path%2011874%22%20d%3D%22M668.955%2C120.931a1.282%2C1.282%2C0%2C0%2C1-.042-.278H690.4a1.256%2C1.256%2C0%2C0%2C1-.042.278h-21.4Z%22%20transform%3D%22translate(-668.913%20-120.653)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7353%22%20data-name%3D%22Group%207353%22%20transform%3D%22translate(0.402%2013.3)%22%3E%3Cpath%20id%3D%22Path_11875%22%20data-name%3D%22Path%2011875%22%20d%3D%22M690.178%2C122.355h-6.073v-.445h-8.953v.445h-5.867v0a1.711%2C1.711%2C0%2C0%2C0%2C.076.272l0%2C0h5.788v.445h8.953v-.445h6a1.9%2C1.9%2C0%2C0%2C0%2C.078-.278%22%20transform%3D%22translate(-669.285%20-121.91)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7354%22%20data-name%3D%22Group%207354%22%20transform%3D%22translate(31.369%200)%22%3E%3Cpath%20id%3D%22Path_11876%22%20data-name%3D%22Path%2011876%22%20d%3D%22M707.869%2C105.56h2.813v10.425l10.656-10.425h4.035l-9.1%2C8.6%2C9.289%2C12.7h-3.775l-7.632-10.7-3.471%2C3.279v7.424h-2.813Z%22%20transform%3D%22translate(-707.869%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11877%22%20data-name%3D%22Path%2011877%22%20d%3D%22M732.114%2C105.56h2.654v2.957h-2.654Zm0%2C5.843h2.654v15.457h-2.654Z%22%20transform%3D%22translate(-712.656%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11878%22%20data-name%3D%22Path%2011878%22%20d%3D%22M739.594%2C112.664h2.581v2.2a8.682%2C8.682%2C0%2C0%2C1%2C1.681-1.668%2C5.064%2C5.064%2C0%2C0%2C1%2C2.929-.884%2C4.606%2C4.606%2C0%2C0%2C1%2C2.986.914%2C4.767%2C4.767%2C0%2C0%2C1%2C1.161%2C1.537%2C5.632%2C5.632%2C0%2C0%2C1%2C2.045-1.849%2C5.693%2C5.693%2C0%2C0%2C1%2C2.638-.6q3.132%2C0%2C4.263%2C2.262a7.389%2C7.389%2C0%2C0%2C1%2C.608%2C3.277v10.338h-2.711V117.406a2.512%2C2.512%2C0%2C0%2C0-.776-2.132%2C3.072%2C3.072%2C0%2C0%2C0-1.892-.58%2C3.755%2C3.755%2C0%2C0%2C0-2.646%2C1.03%2C4.52%2C4.52%2C0%2C0%2C0-1.109%2C3.437v9.033H748.7V118.058a5.27%2C5.27%2C0%2C0%2C0-.377-2.306%2C2.3%2C2.3%2C0%2C0%2C0-2.219-1.087%2C3.828%2C3.828%2C0%2C0%2C0-2.689%2C1.145q-1.21%2C1.146-1.21%2C4.147v8.236h-2.61Z%22%20transform%3D%22translate(-714.133%20-106.716)%22%2F%3E%3Cpath%20id%3D%22Path_11879%22%20data-name%3D%22Path%2011879%22%20d%3D%22M769.4%2C105.469h2.538V113.2a5.72%2C5.72%2C0%2C0%2C1%2C4.644-2.291%2C6.083%2C6.083%2C0%2C0%2C1%2C4.722%2C1.994q1.813%2C1.994%2C1.813%2C5.88a10.056%2C10.056%2C0%2C0%2C1-1.79%2C6.119%2C5.815%2C5.815%2C0%2C0%2C1-4.964%2C2.436%2C5.094%2C5.094%2C0%2C0%2C1-3-.856%2C7.171%2C7.171%2C0%2C0%2C1-1.558-1.624v1.986H769.4Zm9.98%2C17.878a8.261%2C8.261%2C0%2C0%2C0%2C1.054-4.437%2C7.267%2C7.267%2C0%2C0%2C0-1.054-4.06%2C3.476%2C3.476%2C0%2C0%2C0-3.106-1.609%2C4.338%2C4.338%2C0%2C0%2C0-3.135%2C1.319q-1.347%2C1.319-1.346%2C4.35a9.593%2C9.593%2C0%2C0%2C0%2C.552%2C3.552%2C3.82%2C3.82%2C0%2C0%2C0%2C3.856%2C2.567A3.5%2C3.5%2C0%2C0%2C0%2C779.383%2C123.347Z%22%20transform%3D%22translate(-720.018%20-105.364)%22%2F%3E%3Cpath%20id%3D%22Path_11880%22%20data-name%3D%22Path%2011880%22%20d%3D%22M797.657%2C118.788a1.419%2C1.419%2C0%2C0%2C0%2C1.2-.752%2C2.332%2C2.332%2C0%2C0%2C0%2C.174-1%2C2.133%2C2.133%2C0%2C0%2C0-.948-1.943%2C5.058%2C5.058%2C0%2C0%2C0-2.713-.6%2C3.435%2C3.435%2C0%2C0%2C0-2.894%2C1.108%2C3.657%2C3.657%2C0%2C0%2C0-.623%2C1.822h-2.436q.073-2.88%2C1.86-4.006a7.62%2C7.62%2C0%2C0%2C1%2C4.149-1.128%2C8.436%2C8.436%2C0%2C0%2C1%2C4.446%2C1.044%2C3.542%2C3.542%2C0%2C0%2C1%2C1.7%2C3.248v8.947a1.139%2C1.139%2C0%2C0%2C0%2C.167.652.8.8%2C0%2C0%2C0%2C.7.246c.116%2C0%2C.246-.007.392-.022s.3-.036.464-.065v1.928a7.186%2C7.186%2C0%2C0%2C1-.928.217%2C6.647%2C6.647%2C0%2C0%2C1-.87.044%2C2.149%2C2.149%2C0%2C0%2C1-1.958-.957%2C3.719%2C3.719%2C0%2C0%2C1-.449-1.436%2C6.632%2C6.632%2C0%2C0%2C1-2.29%2C1.812%2C7.094%2C7.094%2C0%2C0%2C1-3.291.769%2C4.9%2C4.9%2C0%2C0%2C1-3.531-1.311%2C4.356%2C4.356%2C0%2C0%2C1-1.37-3.281%2C4.221%2C4.221%2C0%2C0%2C1%2C1.349-3.345%2C6.42%2C6.42%2C0%2C0%2C1%2C3.538-1.462Zm-5.5%2C7.051a3.065%2C3.065%2C0%2C0%2C0%2C1.957.651%2C5.96%2C5.96%2C0%2C0%2C0%2C2.668-.636%2C3.585%2C3.585%2C0%2C0%2C0%2C2.175-3.46v-2.1a4.431%2C4.431%2C0%2C0%2C1-1.229.509%2C10.409%2C10.409%2C0%2C0%2C1-1.477.291l-1.577.2a6.092%2C6.092%2C0%2C0%2C0-2.132.593%2C2.307%2C2.307%2C0%2C0%2C0-1.211%2C2.17A2.141%2C2.141%2C0%2C0%2C0%2C792.162%2C125.839Z%22%20transform%3D%22translate(-723.81%20-106.709)%22%2F%3E%3Cpath%20id%3D%22Path_11881%22%20data-name%3D%22Path%2011881%22%20d%3D%22M808.7%2C105.56h2.61v21.3H808.7Z%22%20transform%3D%22translate(-727.776%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11882%22%20data-name%3D%22Path%2011882%22%20d%3D%22M815.441%2C105.56h2.61v21.3h-2.61Z%22%20transform%3D%22translate(-729.107%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11883%22%20data-name%3D%22Path%2011883%22%20d%3D%22M825.3%2C107.915a1.513%2C1.513%2C0%2C1%2C1%2C.441-1.071A1.456%2C1.456%2C0%2C0%2C1%2C825.3%2C107.915Zm-1.987-1.989a1.259%2C1.259%2C0%2C0%2C0-.378.919%2C1.272%2C1.272%2C0%2C0%2C0%2C.376.925%2C1.295%2C1.295%2C0%2C0%2C0%2C1.838%2C0%2C1.312%2C1.312%2C0%2C0%2C0%2C0-1.844%2C1.295%2C1.295%2C0%2C0%2C0-1.836%2C0Zm.889.084a1.278%2C1.278%2C0%2C0%2C1%2C.452.059.411.411%2C0%2C0%2C1%2C.257.421.364.364%2C0%2C0%2C1-.161.327.638.638%2C0%2C0%2C1-.24.08.4.4%2C0%2C0%2C1%2C.285.162.459.459%2C0%2C0%2C1%2C.09.257v.121c0%2C.038%2C0%2C.079%2C0%2C.123a.277.277%2C0%2C0%2C0%2C.015.087l.01.02h-.273l0-.016%2C0-.018-.006-.054v-.131a.4.4%2C0%2C0%2C0-.156-.379.7.7%2C0%2C0%2C0-.326-.054h-.231v.652h-.291v-1.657Zm.315.261a.762.762%2C0%2C0%2C0-.353-.061h-.25v.6h.264a.785.785%2C0%2C0%2C0%2C.279-.037.3.3%2C0%2C0%2C0%2C.061-.5Z%22%20transform%3D%22translate(-730.545%20-105.338)%22%2F%3E%3Cpath%20id%3D%22Path_11884%22%20data-name%3D%22Path%2011884%22%20d%3D%22M830.313%2C126.839v-21.38h2.02v21.38Z%22%20transform%3D%22translate(-732.043%20-105.362)%22%2F%3E%3Cpath%20id%3D%22Path_11885%22%20data-name%3D%22Path%2011885%22%20d%3D%22M838.2%2C128.213h-1.782V112.831H838.2v2.138a11.3%2C11.3%2C0%2C0%2C1%2C2.213-1.841%2C5.087%2C5.087%2C0%2C0%2C1%2C2.746-.713%2C7.03%2C7.03%2C0%2C0%2C1%2C2.643.49%2C4.52%2C4.52%2C0%2C0%2C1%2C2.049%2C1.708%2C3.841%2C3.841%2C0%2C0%2C1%2C.667%2C1.708%2C15.324%2C15.324%2C0%2C0%2C1%2C.1%2C1.826v10.067h-1.781V118.176a4.588%2C4.588%2C0%2C0%2C0-.92-3.118%2C3.911%2C3.911%2C0%2C0%2C0-3.059-1.039%2C4.351%2C4.351%2C0%2C0%2C0-1.514.253%2C4.772%2C4.772%2C0%2C0%2C0-1.233.668%2C4.468%2C4.468%2C0%2C0%2C0-.935.95%2C4.393%2C4.393%2C0%2C0%2C0-.594%2C1.128%2C5.633%2C5.633%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-733.249%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11886%22%20data-name%3D%22Path%2011886%22%20d%3D%22M860.536%2C127.322q-.327.059-.861.208a4.449%2C4.449%2C0%2C0%2C1-1.189.148%2C2.831%2C2.831%2C0%2C0%2C1-2.034-.668%2C3.254%2C3.254%2C0%2C0%2C1-.7-2.391V113.366h-2.168v-1.485h2.168v-4.276h1.782v4.276h2.88v1.485h-2.88v10.542q0%2C.565.029.98a1.624%2C1.624%2C0%2C0%2C0%2C.178.683.846.846%2C0%2C0%2C0%2C.46.386%2C2.549%2C2.549%2C0%2C0%2C0%2C.876.119%2C4.533%2C4.533%2C0%2C0%2C0%2C.727-.059q.371-.059.728-.148Z%22%20transform%3D%22translate(-736.638%20-105.786)%22%2F%3E%3Cpath%20id%3D%22Path_11887%22%20data-name%3D%22Path%2011887%22%20d%3D%22M865.219%2C120.937a8.31%2C8.31%2C0%2C0%2C0%2C.326%2C2.361%2C5.684%2C5.684%2C0%2C0%2C0%2C.965%2C1.93%2C4.665%2C4.665%2C0%2C0%2C0%2C1.618%2C1.307%2C4.981%2C4.981%2C0%2C0%2C0%2C2.257.49%2C4.908%2C4.908%2C0%2C0%2C0%2C3-.921%2C4.437%2C4.437%2C0%2C0%2C0%2C1.664-2.613h1.989a9.556%2C9.556%2C0%2C0%2C1-.861%2C2.034%2C6.252%2C6.252%2C0%2C0%2C1-1.336%2C1.634%2C5.765%2C5.765%2C0%2C0%2C1-1.9%2C1.083%2C7.7%2C7.7%2C0%2C0%2C1-2.555.386%2C7.458%2C7.458%2C0%2C0%2C1-3.177-.624%2C5.994%2C5.994%2C0%2C0%2C1-2.2-1.708%2C7.207%2C7.207%2C0%2C0%2C1-1.277-2.553%2C11.564%2C11.564%2C0%2C0%2C1-.416-3.163%2C10.055%2C10.055%2C0%2C0%2C1%2C.49-3.177%2C8.088%2C8.088%2C0%2C0%2C1%2C1.4-2.6%2C6.491%2C6.491%2C0%2C0%2C1%2C2.213-1.753%2C6.687%2C6.687%2C0%2C0%2C1%2C2.969-.638%2C6.132%2C6.132%2C0%2C0%2C1%2C4.989%2C2.183q1.812%2C2.183%2C1.782%2C6.339Zm10.036-1.485a7.084%2C7.084%2C0%2C0%2C0-.311-2.123%2C4.974%2C4.974%2C0%2C0%2C0-.921-1.722%2C4.388%2C4.388%2C0%2C0%2C0-1.53-1.158%2C4.919%2C4.919%2C0%2C0%2C0-2.108-.431%2C4.686%2C4.686%2C0%2C0%2C0-2.093.445%2C4.811%2C4.811%2C0%2C0%2C0-1.544%2C1.188%2C5.991%2C5.991%2C0%2C0%2C0-1.025%2C1.722%2C7.93%2C7.93%2C0%2C0%2C0-.5%2C2.079Z%22%20transform%3D%22translate(-738.559%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11888%22%20data-name%3D%22Path%2011888%22%20d%3D%22M885.3%2C128.213h-1.781V112.831H885.3v2.88h.059a5.16%2C5.16%2C0%2C0%2C1%2C1.915-2.568%2C5.828%2C5.828%2C0%2C0%2C1%2C3.1-.728v1.93a5.212%2C5.212%2C0%2C0%2C0-2.494.475%2C4.113%2C4.113%2C0%2C0%2C0-1.559%2C1.366%2C5.388%2C5.388%2C0%2C0%2C0-.8%2C2.034%2C13.128%2C13.128%2C0%2C0%2C0-.223%2C2.45Z%22%20transform%3D%22translate(-742.548%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11889%22%20data-name%3D%22Path%2011889%22%20d%3D%22M896.032%2C128.213H894.25V112.831h1.782v2.138a11.287%2C11.287%2C0%2C0%2C1%2C2.213-1.841%2C5.086%2C5.086%2C0%2C0%2C1%2C2.746-.713%2C7.028%2C7.028%2C0%2C0%2C1%2C2.643.49%2C4.52%2C4.52%2C0%2C0%2C1%2C2.049%2C1.708%2C3.842%2C3.842%2C0%2C0%2C1%2C.668%2C1.708%2C15.375%2C15.375%2C0%2C0%2C1%2C.1%2C1.826v10.067h-1.782V118.176a4.588%2C4.588%2C0%2C0%2C0-.921-3.118%2C3.911%2C3.911%2C0%2C0%2C0-3.059-1.039%2C4.349%2C4.349%2C0%2C0%2C0-1.514.253%2C4.778%2C4.778%2C0%2C0%2C0-1.233.668%2C4.459%2C4.459%2C0%2C0%2C0-.935.95%2C4.392%2C4.392%2C0%2C0%2C0-.594%2C1.128%2C5.662%2C5.662%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-744.666%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11890%22%20data-name%3D%22Path%2011890%22%20d%3D%22M920.219%2C119.245q.5-.059%2C1.2-.178a4.49%2C4.49%2C0%2C0%2C0%2C1.143-.327.946.946%2C0%2C0%2C0%2C.55-.7%2C4.361%2C4.361%2C0%2C0%2C0%2C.1-.906%2C3.037%2C3.037%2C0%2C0%2C0-.877-2.242%2C4.089%2C4.089%2C0%2C0%2C0-2.955-.876%2C8.16%2C8.16%2C0%2C0%2C0-1.692.164%2C3.674%2C3.674%2C0%2C0%2C0-1.352.564%2C3.109%2C3.109%2C0%2C0%2C0-.95%2C1.069%2C4.528%2C4.528%2C0%2C0%2C0-.49%2C1.677h-1.811a5.512%2C5.512%2C0%2C0%2C1%2C.624-2.331%2C4.715%2C4.715%2C0%2C0%2C1%2C1.381-1.574%2C5.737%2C5.737%2C0%2C0%2C1%2C1.959-.89%2C9.593%2C9.593%2C0%2C0%2C1%2C2.36-.283%2C9.169%2C9.169%2C0%2C0%2C1%2C2.183.252%2C5.056%2C5.056%2C0%2C0%2C1%2C1.782.8%2C3.731%2C3.731%2C0%2C0%2C1%2C1.188%2C1.47A5.3%2C5.3%2C0%2C0%2C1%2C925%2C117.2v8.374q0%2C1.04.372%2C1.322t1.5-.134v1.4c-.139.04-.342.1-.609.178a2.78%2C2.78%2C0%2C0%2C1-.787.119%2C3.555%2C3.555%2C0%2C0%2C1-.8-.089%2C1.375%2C1.375%2C0%2C0%2C1-.712-.282%2C1.741%2C1.741%2C0%2C0%2C1-.431-.535%2C2.225%2C2.225%2C0%2C0%2C1-.222-.683%2C4.9%2C4.9%2C0%2C0%2C1-.059-.787%2C7.742%2C7.742%2C0%2C0%2C1-2.583%2C1.9%2C7.605%2C7.605%2C0%2C0%2C1-3.148.653%2C7.038%2C7.038%2C0%2C0%2C1-1.945-.267%2C4.7%2C4.7%2C0%2C0%2C1-1.648-.831%2C4.125%2C4.125%2C0%2C0%2C1-1.129-1.38%2C4.242%2C4.242%2C0%2C0%2C1-.415-1.945q0-3.92%2C5.375-4.632Zm3%2C.891a8.726%2C8.726%2C0%2C0%2C1-2.287.624q-1.158.149-2.317.238a6.534%2C6.534%2C0%2C0%2C0-3.191.921%2C2.64%2C2.64%2C0%2C0%2C0-1.143%2C2.346%2C2.53%2C2.53%2C0%2C0%2C0%2C.283%2C1.232%2C2.588%2C2.588%2C0%2C0%2C0%2C.741.862%2C3.161%2C3.161%2C0%2C0%2C0%2C1.069.5%2C4.761%2C4.761%2C0%2C0%2C0%2C1.233.163%2C8.086%2C8.086%2C0%2C0%2C0%2C2.078-.267%2C5.643%2C5.643%2C0%2C0%2C0%2C1.8-.816%2C4.2%2C4.2%2C0%2C0%2C0%2C1.262-1.4%2C4.036%2C4.036%2C0%2C0%2C0%2C.475-2Z%22%20transform%3D%22translate(-748.246%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11891%22%20data-name%3D%22Path%2011891%22%20d%3D%22M937.46%2C127.322q-.329.059-.861.208a4.451%2C4.451%2C0%2C0%2C1-1.188.148%2C2.83%2C2.83%2C0%2C0%2C1-2.034-.668%2C3.254%2C3.254%2C0%2C0%2C1-.7-2.391V113.366h-2.168v-1.485h2.168v-4.276h1.782v4.276h2.88v1.485h-2.88v10.542c0%2C.376.009.7.029.98a1.628%2C1.628%2C0%2C0%2C0%2C.177.683.848.848%2C0%2C0%2C0%2C.461.386%2C2.545%2C2.545%2C0%2C0%2C0%2C.876.119%2C4.542%2C4.542%2C0%2C0%2C0%2C.728-.059q.371-.059.728-.148Z%22%20transform%3D%22translate(-751.825%20-105.786)%22%2F%3E%3Cpath%20id%3D%22Path_11892%22%20data-name%3D%22Path%2011892%22%20d%3D%22M942.2%2C108.1v-2.643h1.961V108.1Zm.089%2C18.738V111.457h1.782v15.382Z%22%20transform%3D%22translate(-754.134%20-105.362)%22%2F%3E%3Cpath%20id%3D%22Path_11893%22%20data-name%3D%22Path%2011893%22%20d%3D%22M954.584%2C128.628a8.02%2C8.02%2C0%2C0%2C1-2.777-.535%2C6.215%2C6.215%2C0%2C0%2C1-2.257-1.514%2C7.27%2C7.27%2C0%2C0%2C1-1.529-2.524%2C10.1%2C10.1%2C0%2C0%2C1-.564-3.534%2C10.854%2C10.854%2C0%2C0%2C1%2C.446-3.162%2C7.466%2C7.466%2C0%2C0%2C1%2C1.336-2.569%2C6.356%2C6.356%2C0%2C0%2C1%2C2.227-1.738%2C7.171%2C7.171%2C0%2C0%2C1%2C3.118-.638%2C7.252%2C7.252%2C0%2C0%2C1%2C3.148.638%2C6.437%2C6.437%2C0%2C0%2C1%2C2.227%2C1.722%2C7.153%2C7.153%2C0%2C0%2C1%2C1.322%2C2.569%2C11.421%2C11.421%2C0%2C0%2C1%2C.43%2C3.177%2C10.293%2C10.293%2C0%2C0%2C1-.5%2C3.326%2C7.5%2C7.5%2C0%2C0%2C1-1.44%2C2.554%2C6.341%2C6.341%2C0%2C0%2C1-2.257%2C1.648A7.219%2C7.219%2C0%2C0%2C1%2C954.584%2C128.628Zm5.226-8.107a10.539%2C10.539%2C0%2C0%2C0-.3-2.554%2C6.074%2C6.074%2C0%2C0%2C0-.921-2.063%2C4.438%2C4.438%2C0%2C0%2C0-1.6-1.381%2C5.212%2C5.212%2C0%2C0%2C0-2.405-.5%2C4.88%2C4.88%2C0%2C0%2C0-2.391.55%2C4.663%2C4.663%2C0%2C0%2C0-1.618%2C1.455%2C6.4%2C6.4%2C0%2C0%2C0-.921%2C2.078%2C9.856%2C9.856%2C0%2C0%2C0-.3%2C2.421%2C9.622%2C9.622%2C0%2C0%2C0%2C.341%2C2.628%2C6.139%2C6.139%2C0%2C0%2C0%2C1%2C2.063%2C4.453%2C4.453%2C0%2C0%2C0%2C1.632%2C1.336%2C5.114%2C5.114%2C0%2C0%2C0%2C2.258.475%2C4.88%2C4.88%2C0%2C0%2C0%2C2.39-.549%2C4.62%2C4.62%2C0%2C0%2C0%2C1.619-1.47%2C6.609%2C6.609%2C0%2C0%2C0%2C.921-2.079A9.673%2C9.673%2C0%2C0%2C0%2C959.81%2C120.522Z%22%20transform%3D%22translate(-755.171%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11894%22%20data-name%3D%22Path%2011894%22%20d%3D%22M970.329%2C128.213h-1.782V112.831h1.782v2.138a11.312%2C11.312%2C0%2C0%2C1%2C2.212-1.841%2C5.091%2C5.091%2C0%2C0%2C1%2C2.747-.713%2C7.028%2C7.028%2C0%2C0%2C1%2C2.643.49%2C4.519%2C4.519%2C0%2C0%2C1%2C2.049%2C1.708%2C3.842%2C3.842%2C0%2C0%2C1%2C.668%2C1.708%2C15.4%2C15.4%2C0%2C0%2C1%2C.1%2C1.826v10.067H978.97V118.176a4.586%2C4.586%2C0%2C0%2C0-.921-3.118%2C3.91%2C3.91%2C0%2C0%2C0-3.058-1.039%2C4.358%2C4.358%2C0%2C0%2C0-1.515.253%2C4.782%2C4.782%2C0%2C0%2C0-1.232.668%2C4.465%2C4.465%2C0%2C0%2C0-.935.95%2C4.39%2C4.39%2C0%2C0%2C0-.594%2C1.128%2C5.614%2C5.614%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-759.335%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11895%22%20data-name%3D%22Path%2011895%22%20d%3D%22M994.516%2C119.245q.5-.059%2C1.2-.178a4.5%2C4.5%2C0%2C0%2C0%2C1.143-.327.945.945%2C0%2C0%2C0%2C.55-.7%2C4.34%2C4.34%2C0%2C0%2C0%2C.1-.906%2C3.04%2C3.04%2C0%2C0%2C0-.876-2.242%2C4.09%2C4.09%2C0%2C0%2C0-2.955-.876%2C8.163%2C8.163%2C0%2C0%2C0-1.692.164%2C3.674%2C3.674%2C0%2C0%2C0-1.351.564%2C3.108%2C3.108%2C0%2C0%2C0-.95%2C1.069%2C4.531%2C4.531%2C0%2C0%2C0-.49%2C1.677h-1.812a5.511%2C5.511%2C0%2C0%2C1%2C.625-2.331%2C4.728%2C4.728%2C0%2C0%2C1%2C1.38-1.574%2C5.749%2C5.749%2C0%2C0%2C1%2C1.96-.89%2C9.59%2C9.59%2C0%2C0%2C1%2C2.36-.283%2C9.168%2C9.168%2C0%2C0%2C1%2C2.183.252%2C5.059%2C5.059%2C0%2C0%2C1%2C1.782.8%2C3.735%2C3.735%2C0%2C0%2C1%2C1.188%2C1.47%2C5.3%2C5.3%2C0%2C0%2C1%2C.43%2C2.257v8.374q0%2C1.04.372%2C1.322t1.5-.134v1.4c-.138.04-.341.1-.608.178a2.787%2C2.787%2C0%2C0%2C1-.787.119%2C3.544%2C3.544%2C0%2C0%2C1-.8-.089%2C1.38%2C1.38%2C0%2C0%2C1-.713-.282%2C1.756%2C1.756%2C0%2C0%2C1-.43-.535%2C2.231%2C2.231%2C0%2C0%2C1-.222-.683%2C4.891%2C4.891%2C0%2C0%2C1-.06-.787%2C7.74%2C7.74%2C0%2C0%2C1-2.584%2C1.9%2C7.607%2C7.607%2C0%2C0%2C1-3.148.653%2C7.04%2C7.04%2C0%2C0%2C1-1.944-.267%2C4.692%2C4.692%2C0%2C0%2C1-1.648-.831%2C4.127%2C4.127%2C0%2C0%2C1-1.129-1.38%2C4.244%2C4.244%2C0%2C0%2C1-.415-1.945q0-3.92%2C5.375-4.632Zm3%2C.891a8.718%2C8.718%2C0%2C0%2C1-2.286.624q-1.158.149-2.317.238a6.535%2C6.535%2C0%2C0%2C0-3.192.921%2C2.64%2C2.64%2C0%2C0%2C0-1.143%2C2.346%2C2.538%2C2.538%2C0%2C0%2C0%2C.282%2C1.232%2C2.586%2C2.586%2C0%2C0%2C0%2C.742.862%2C3.15%2C3.15%2C0%2C0%2C0%2C1.069.5%2C4.761%2C4.761%2C0%2C0%2C0%2C1.232.163%2C8.089%2C8.089%2C0%2C0%2C0%2C2.078-.267%2C5.641%2C5.641%2C0%2C0%2C0%2C1.8-.816%2C4.2%2C4.2%2C0%2C0%2C0%2C1.262-1.4%2C4.037%2C4.037%2C0%2C0%2C0%2C.475-2Z%22%20transform%3D%22translate(-762.915%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11896%22%20data-name%3D%22Path%2011896%22%20d%3D%22M1007.8%2C126.839v-21.38h1.781v21.38Z%22%20transform%3D%22translate(-767.086%20-105.362)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-logobrands {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22352%22%20height%3D%2257.271%22%20viewBox%3D%220%200%20352%2057.271%22%3E%3Cg%20id%3D%22Kimball_International_Logo_Standard_w_Workplace_Brands%22%20data-name%3D%22Kimball%20International%20Logo%20Standard%20w%20Workplace%20Brands%22%20transform%3D%22translate(-162%20-267.928)%22%3E%3Cg%20id%3D%22Group_114%22%20data-name%3D%22Group%20114%22%20transform%3D%22translate(162%20267.928)%22%3E%3Cg%20id%3D%22Group_79%22%20data-name%3D%22Group%2079%22%3E%3Cg%20id%3D%22Group_74%22%20data-name%3D%22Group%2074%22%20transform%3D%22translate(37.231%200.425)%22%3E%3Cpath%20id%3D%22Path_78%22%20data-name%3D%22Path%2078%22%20d%3D%22M275.772%2C277.493a6.836%2C6.836%2C0%2C0%2C0-6.084%2C3.689%2C6.129%2C6.129%2C0%2C0%2C0-6.046-3.689%2C6.386%2C6.386%2C0%2C0%2C0-5.723%2C3.38h0v-2.957h-3.385V297.8h3.6V285.056a4.5%2C4.5%2C0%2C1%2C1%2C8.99%2C0V297.8h3.6V285.056a4.5%2C4.5%2C0%2C1%2C1%2C8.99%2C0V297.8h3.6V284.414C283.3%2C280.383%2C280.222%2C277.493%2C275.772%2C277.493Z%22%20transform%3D%22translate(-222.166%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_127%22%20data-name%3D%22Rectangle%20127%22%20width%3D%223.596%22%20height%3D%2227.077%22%20transform%3D%22translate(106.086)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_128%22%20data-name%3D%22Rectangle%20128%22%20width%3D%223.596%22%20height%3D%2227.077%22%20transform%3D%22translate(113.278)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_79%22%20data-name%3D%22Path%2079%22%20d%3D%22M307.715%2C275.262a7.735%2C7.735%2C0%2C0%2C0-6.556%2C3.18v-9.949h-3.6V295.57h3.385v-3.082a7.863%2C7.863%2C0%2C0%2C0%2C6.768%2C3.5c5.9%2C0%2C8.673-4.231%2C8.673-10.478C316.388%2C279.493%2C313.617%2C275.262%2C307.715%2C275.262Zm-.764%2C17.7c-3.5%2C0-5.868-2.766-5.868-7.254s2.38-7.381%2C5.879-7.381%2C5.811%2C2.742%2C5.811%2C7.23S310.45%2C292.965%2C306.951%2C292.965Z%22%20transform%3D%22translate(-232.832%20-268.494)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_80%22%20data-name%3D%22Path%2080%22%20d%3D%22M234.875%2C268.494h-5.143L215.1%2C282.811V268.494h-3.6V295.57h3.6v-7.728l5.749-5.624%2C9.6%2C13.352h4.429l-11.43-15.9Z%22%20transform%3D%22translate(-211.501%20-268.494)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_81%22%20data-name%3D%22Path%2081%22%20d%3D%22M343.227%2C294.873c-.76%2C0-1.065-.38-1.065-.988v-10.61c0-3.423-2.315-5.781-7.943-5.781-5.776%2C0-7.949%2C2.523-8.25%2C6.347h3.6c-.006-2.327%2C1.661-3.3%2C4.647-3.3%2C3.08%2C0%2C4.347.976%2C4.347%2C2.815%2C0%2C1.6-1.157%2C2.377-3.059%2C2.6l-2.89.3c-5.476.533-7.494%2C2.928-7.494%2C6.084%2C0%2C3.765%2C3.183%2C5.881%2C7.4%2C5.881a6.943%2C6.943%2C0%2C0%2C0%2C6.24-3.174%2C3.221%2C3.221%2C0%2C0%2C0%2C3.385%2C2.962%2C5.365%2C5.365%2C0%2C0%2C0%2C1.8-.211v-2.928Zm-4.661-4.925c0%2C3.688-2.982%2C5.248-5.758%2C5.248-2.472%2C0-4.074-1.179-4.074-2.966%2C0-1.749%2C1.373-2.852%2C4.529-3.232l2.739-.3a5.114%2C5.114%2C0%2C0%2C0%2C2.564-.8Z%22%20transform%3D%22translate(-239.664%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_76%22%20data-name%3D%22Group%2076%22%20transform%3D%22translate(163.428%200.425)%22%3E%3Cpath%20id%3D%22Path_82%22%20data-name%3D%22Path%2082%22%20d%3D%22M420.821%2C276.278h-3.808v-5.394h-1.8v5.394h-3.6v1.586h3.6v18.3h1.8v-18.3h3.808Z%22%20transform%3D%22translate(-387.299%20-269.086)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_83%22%20data-name%3D%22Path%2083%22%20d%3D%22M531.915%2C276.278h-3.807v-5.394h-1.8v5.394h-3.6v1.586h3.6v18.3h1.8v-18.3h3.807Z%22%20transform%3D%22translate(-414.835%20-269.086)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_129%22%20data-name%3D%22Rectangle%20129%22%20width%3D%221.798%22%20height%3D%2227.077%22%20transform%3D%22translate(186.774)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_75%22%20data-name%3D%22Group%2075%22%20transform%3D%22translate(120.464)%22%3E%3Crect%20id%3D%22Rectangle_130%22%20data-name%3D%22Rectangle%20130%22%20width%3D%221.798%22%20height%3D%2219.884%22%20transform%3D%22translate(0%207.192)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_131%22%20data-name%3D%22Rectangle%20131%22%20width%3D%221.798%22%20height%3D%223.596%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Crect%20id%3D%22Rectangle_132%22%20data-name%3D%22Rectangle%20132%22%20width%3D%222.01%22%20height%3D%2227.077%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_84%22%20data-name%3D%22Path%2084%22%20d%3D%22M555.609%2C277.493c-5.394%2C0-8.99%2C4.231-8.99%2C10.365s3.6%2C10.366%2C8.99%2C10.366%2C8.99-4.231%2C8.99-10.366S561%2C277.493%2C555.609%2C277.493Zm0%2C19.144c-4.369%2C0-7.193-3.574-7.193-8.779s2.824-8.778%2C7.193-8.778%2C7.192%2C3.574%2C7.192%2C8.778S559.978%2C296.637%2C555.609%2C296.637Z%22%20transform%3D%22translate(-420.761%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_85%22%20data-name%3D%22Path%2085%22%20d%3D%22M443.933%2C288.282c0-.141.008-.281.008-.423%2C0-6.134-3.6-10.365-8.99-10.365s-8.99%2C4.231-8.99%2C10.365%2C3.6%2C10.366%2C8.99%2C10.366a8.544%2C8.544%2C0%2C0%2C0%2C8.4-6.347h-1.883a6.752%2C6.752%2C0%2C0%2C1-6.52%2C4.76c-4.248%2C0-7.027-3.384-7.178-8.355Zm-8.983-9.2c4.066%2C0%2C6.79%2C3.1%2C7.149%2C7.721H427.8C428.161%2C282.177%2C430.884%2C279.08%2C434.95%2C279.08Z%22%20transform%3D%22translate(-390.854%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_86%22%20data-name%3D%22Path%2086%22%20d%3D%22M403.9%2C284.917V297.8h-1.8V285.07c0-4.115-2.375-5.99-6.029-5.99-3.269%2C0-6.557%2C2-6.557%2C7.682V297.8h-1.8V277.916h1.692v4.019c1.115-2.923%2C3.491-4.442%2C6.875-4.442C400.723%2C277.493%2C403.9%2C280.138%2C403.9%2C284.917Z%22%20transform%3D%22translate(-381.374%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_87%22%20data-name%3D%22Path%2087%22%20d%3D%22M489.958%2C284.917V297.8h-1.8V285.07c0-4.115-2.375-5.99-6.028-5.99-3.27%2C0-6.558%2C2-6.558%2C7.682V297.8h-1.8V277.916h1.692v4.01c1.115-2.923%2C3.491-4.433%2C6.875-4.433C486.785%2C277.493%2C489.957%2C280.138%2C489.958%2C284.917Z%22%20transform%3D%22translate(-402.705%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_88%22%20data-name%3D%22Path%2088%22%20d%3D%22M591.489%2C284.917V297.8h-1.8V285.07c0-4.115-2.375-5.99-6.029-5.99-3.269%2C0-6.557%2C2-6.557%2C7.682V297.8h-1.8V277.916H577v4.01c1.115-2.923%2C3.491-4.433%2C6.875-4.433C588.316%2C277.493%2C591.488%2C280.138%2C591.489%2C284.917Z%22%20transform%3D%22translate(-427.871%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_89%22%20data-name%3D%22Path%2089%22%20d%3D%22M465.439%2C277.742a9.782%2C9.782%2C0%2C0%2C0-2.221-.249c-3.385%2C0-5.759%2C1.51-6.875%2C4.433v-4.01h-1.692V297.8h1.8V286.762c0-5.682%2C3.288-7.682%2C6.558-7.682a8.058%2C8.058%2C0%2C0%2C1%2C2.432.343Z%22%20transform%3D%22translate(-397.965%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_90%22%20data-name%3D%22Path%2090%22%20d%3D%22M616.52%2C294.836V283.008c0-3.081-1.884-5.515-7.193-5.515-5.778%2C0-7.87%2C2.5-8.032%2C6.344h1.8c.195-3.332%2C1.713-4.745%2C6.231-4.745%2C4.247%2C0%2C5.394%2C1.559%2C5.394%2C3.917%2C0%2C2.053-.173%2C3.08-3.645%2C3.5l-3.389.38c-5.268.608-7.351%2C2.663-7.351%2C5.819%2C0%2C3.27%2C2.378%2C5.52%2C6.869%2C5.52%2C3.92%2C0%2C6.247-1.379%2C7.621-4.129v.74c0%2C2.116%2C1.057%2C3.176%2C2.221%2C3.176a5.782%2C5.782%2C0%2C0%2C0%2C1.269-.211v-1.27C617.049%2C296.531%2C616.52%2C296.528%2C616.52%2C294.836Zm-1.8-5.709c0%2C5.057-3.075%2C7.616-7.444%2C7.616-3.553%2C0-5.036-1.534-5.036-4.007%2C0-2.623%2C1.607-3.961%2C5.691-4.455l3.39-.418c2.123-.266%2C2.7-.624%2C3.4-1.385Z%22%20transform%3D%22translate(-434.075%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_91%22%20data-name%3D%22Path%2091%22%20d%3D%22M514.989%2C294.836V283.008c0-3.081-1.884-5.515-7.193-5.515-5.778%2C0-7.87%2C2.5-8.032%2C6.344h1.8c.195-3.332%2C1.714-4.745%2C6.231-4.745%2C4.247%2C0%2C5.394%2C1.559%2C5.394%2C3.917%2C0%2C2.053-.173%2C3.08-3.644%2C3.5l-3.389.38c-5.268.608-7.351%2C2.663-7.351%2C5.819%2C0%2C3.27%2C2.377%2C5.52%2C6.869%2C5.52%2C3.919%2C0%2C6.246-1.379%2C7.621-4.129v.74c0%2C2.116%2C1.058%2C3.176%2C2.221%2C3.176a5.793%2C5.793%2C0%2C0%2C0%2C1.27-.211v-1.27C515.518%2C296.531%2C514.989%2C296.528%2C514.989%2C294.836Zm-1.8-5.709c0%2C5.057-3.075%2C7.616-7.444%2C7.616-3.553%2C0-5.036-1.534-5.036-4.007%2C0-2.623%2C1.608-3.961%2C5.691-4.455l3.39-.418c2.123-.266%2C2.7-.624%2C3.4-1.385Z%22%20transform%3D%22translate(-408.91%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_77%22%20data-name%3D%22Group%2077%22%3E%3Cpath%20id%3D%22Path_92%22%20data-name%3D%22Path%2092%22%20d%3D%22M170.085%2C284.609h11.847v-.882h7.9c-.02-.142-.044-.283-.068-.423H162.256c-.024.141-.047.281-.068.423h7.9Z%22%20transform%3D%22translate(-162.047%20-271.739)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_93%22%20data-name%3D%22Path%2093%22%20d%3D%22M170.247%2C281.7h11.847v-.879H189.5c-.044-.142-.094-.282-.143-.423H162.982c-.049.141-.1.281-.144.423h7.409Z%22%20transform%3D%22translate(-162.208%20-271.019)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_94%22%20data-name%3D%22Path%2094%22%20d%3D%22M189.919%2C286.211H162.005c0%2C.071-.005.14-.005.211s0%2C.141.005.211h8.034v.882h11.847v-.882h8.034c0-.071.005-.141.005-.211S189.92%2C286.282%2C189.919%2C286.211Z%22%20transform%3D%22translate(-162%20-272.46)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_95%22%20data-name%3D%22Path%2095%22%20d%3D%22M162.256%2C289.54h27.506c.025-.14.048-.281.068-.423H162.188C162.208%2C289.259%2C162.232%2C289.4%2C162.256%2C289.54Z%22%20transform%3D%22translate(-162.047%20-273.18)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_96%22%20data-name%3D%22Path%2096%22%20d%3D%22M176.465%2C267.928a13.959%2C13.959%2C0%2C0%2C0-12.435%2C7.616H188.9A13.958%2C13.958%2C0%2C0%2C0%2C176.465%2C267.928Z%22%20transform%3D%22translate(-162.503%20-267.928)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_97%22%20data-name%3D%22Path%2097%22%20d%3D%22M176.465%2C302.545A13.957%2C13.957%2C0%2C0%2C0%2C188.9%2C294.93H164.03A13.958%2C13.958%2C0%2C0%2C0%2C176.465%2C302.545Z%22%20transform%3D%22translate(-162.503%20-274.621)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_98%22%20data-name%3D%22Path%2098%22%20d%3D%22M182.093%2C291.437H170.247v.441h-7.409c.044.143.095.283.144.423h7.265v.441h11.847V292.3h7.265c.049-.141.1-.281.143-.423h-7.408Z%22%20transform%3D%22translate(-162.208%20-273.755)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Crect%20id%3D%22Rectangle_133%22%20data-name%3D%22Rectangle%20133%22%20width%3D%223.596%22%20height%3D%223.596%22%20transform%3D%22translate(62.404%200.426)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_134%22%20data-name%3D%22Rectangle%20134%22%20width%3D%223.596%22%20height%3D%2219.885%22%20transform%3D%22translate(62.404%207.618)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_99%22%20data-name%3D%22Path%2099%22%20d%3D%22M372.416%2C268.213a2.01%2C2.01%2C0%2C1%2C0%2C2.01%2C2.01A2.009%2C2.009%2C0%2C0%2C0%2C372.416%2C268.213Zm0%2C3.6A1.586%2C1.586%2C0%2C1%2C1%2C374%2C270.223%2C1.587%2C1.587%2C0%2C0%2C1%2C372.416%2C271.809Z%22%20transform%3D%22translate(-213.656%20-267.999)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_78%22%20data-name%3D%22Group%2078%22%20transform%3D%22translate(158%201.276)%22%3E%3Cpath%20id%3D%22Path_100%22%20data-name%3D%22Path%20100%22%20d%3D%22M372.8%2C270.849h-.281v.675h-.451v-1.9h.88c.432%2C0%2C.7.229.7.6a.561.561%2C0%2C0%2C1-.4.558l.47.745h-.507Zm-.281-.35h.4a.259.259%2C0%2C1%2C0%2C0-.515h-.4Z%22%20transform%3D%22translate(-372.068%20-269.625)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_113%22%20data-name%3D%22Group%20113%22%20transform%3D%22translate(37.231%2039.783)%22%3E%3Cg%20id%3D%22Group_81%22%20data-name%3D%22Group%2081%22%20transform%3D%22translate(266.733%207.517)%22%3E%3Cpath%20id%3D%22Path_101%22%20data-name%3D%22Path%20101%22%20d%3D%22M613.448%2C331.188a1.353%2C1.353%2C0%2C0%2C0-.892-.278h-.285a1.339%2C1.339%2C0%2C0%2C0-.877.285%2C1.284%2C1.284%2C0%2C0%2C0-.35%2C1.041V336.8a1.282%2C1.282%2C0%2C0%2C0%2C.35%2C1.042%2C1.382%2C1.382%2C0%2C0%2C0%2C.906.284h.284a1.265%2C1.265%2C0%2C0%2C0%2C.864-.292%2C1.323%2C1.323%2C0%2C0%2C0%2C.335-1.034v-4.565A1.317%2C1.317%2C0%2C0%2C0%2C613.448%2C331.188Z%22%20transform%3D%22translate(-577.266%20-330.839)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_102%22%20data-name%3D%22Path%20102%22%20d%3D%22M622.4%2C331.658a2.105%2C2.105%2C0%2C0%2C0-.778-.615%2C2.667%2C2.667%2C0%2C0%2C0-1.161-.228%2C2.5%2C2.5%2C0%2C0%2C0-1.406.363%2C3.179%2C3.179%2C0%2C0%2C0-.92.935%2C1.91%2C1.91%2C0%2C0%2C0-.265-.592%2C1.421%2C1.421%2C0%2C0%2C0-.377-.379%2C1.437%2C1.437%2C0%2C0%2C0-.449-.2%2C2.1%2C2.1%2C0%2C0%2C0-.478-.057%2C2.07%2C2.07%2C0%2C0%2C0-.735.121c-.214.081-.321.145-.321.193v5.578a1.292%2C1.292%2C0%2C0%2C0%2C.348%2C1.042%2C1.367%2C1.367%2C0%2C0%2C0%2C.891.284h.286a1.114%2C1.114%2C0%2C0%2C0%2C1.212-1.326v-3.167a1.284%2C1.284%2C0%2C0%2C1%2C.428-.406%2C1.213%2C1.213%2C0%2C0%2C1%2C.643-.165.844.844%2C0%2C0%2C1%2C.67.279%2C1.126%2C1.126%2C0%2C0%2C1%2C.242.763v2.7a1.285%2C1.285%2C0%2C0%2C0%2C.35%2C1.042%2C1.383%2C1.383%2C0%2C0%2C0%2C.906.284h.27a1.284%2C1.284%2C0%2C0%2C0%2C.877-.292%2C1.32%2C1.32%2C0%2C0%2C0%2C.335-1.034v-3.167a4.034%2C4.034%2C0%2C0%2C0-.137-1.063A2.466%2C2.466%2C0%2C0%2C0%2C622.4%2C331.658Z%22%20transform%3D%22translate(-578.374%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_103%22%20data-name%3D%22Path%20103%22%20d%3D%22M627.465%2C336.566a1.528%2C1.528%2C0%2C1%2C0%2C1.528%2C1.528A1.527%2C1.527%2C0%2C0%2C0%2C627.465%2C336.566Z%22%20transform%3D%22translate(-580.957%20-332.241)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_104%22%20data-name%3D%22Path%20104%22%20d%3D%22M584.083%2C331.836a3.432%2C3.432%2C0%2C0%2C0-1.212-.757%2C4.494%2C4.494%2C0%2C0%2C0-1.577-.263%2C4.607%2C4.607%2C0%2C0%2C0-1.59.263%2C3.571%2C3.571%2C0%2C0%2C0-1.235.749%2C3.291%2C3.291%2C0%2C0%2C0-.791%2C1.17%2C3.963%2C3.963%2C0%2C0%2C0-.278%2C1.512%2C4.167%2C4.167%2C0%2C0%2C0%2C.27%2C1.54%2C3.3%2C3.3%2C0%2C0%2C0%2C.771%2C1.17%2C3.414%2C3.414%2C0%2C0%2C0%2C1.212.75%2C4.993%2C4.993%2C0%2C0%2C0%2C3.2%2C0%2C3.471%2C3.471%2C0%2C0%2C0%2C1.219-.75%2C3.347%2C3.347%2C0%2C0%2C0%2C.786-1.17%2C4.361%2C4.361%2C0%2C0%2C0%2C.006-3.045A3.326%2C3.326%2C0%2C0%2C0%2C584.083%2C331.836Zm-2.8%2C4.2a1.528%2C1.528%2C0%2C1%2C1%2C1.526-1.527A1.527%2C1.527%2C0%2C0%2C1%2C581.287%2C336.037Z%22%20transform%3D%22translate(-568.927%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_105%22%20data-name%3D%22Path%20105%22%20d%3D%22M573.281%2C331.808a2.891%2C2.891%2C0%2C0%2C0-1.027-.736%2C3.347%2C3.347%2C0%2C0%2C0-1.328-.257%2C2.4%2C2.4%2C0%2C0%2C0-1.34.371%2C2.054%2C2.054%2C0%2C0%2C0-.815.985%2C1.7%2C1.7%2C0%2C0%2C0-.256-.627%2C1.584%2C1.584%2C0%2C0%2C0-.385-.393%2C1.3%2C1.3%2C0%2C0%2C0-.457-.208%2C2.182%2C2.182%2C0%2C0%2C0-.484-.057%2C2.073%2C2.073%2C0%2C0%2C0-.735.121q-.322.122-.321.193v8.273a1.264%2C1.264%2C0%2C0%2C0%2C.349%2C1.035%2C1.391%2C1.391%2C0%2C0%2C0%2C.891.278h.286a1.319%2C1.319%2C0%2C0%2C0%2C.871-.285%2C1.281%2C1.281%2C0%2C0%2C0%2C.341-1.027v-2.468a2.109%2C2.109%2C0%2C0%2C0%2C.792.886%2C2.284%2C2.284%2C0%2C0%2C0%2C1.262.341%2C3.113%2C3.113%2C0%2C0%2C0%2C1.328-.278%2C3.059%2C3.059%2C0%2C0%2C0%2C1.027-.769%2C3.434%2C3.434%2C0%2C0%2C0%2C.656-1.177%2C4.741%2C4.741%2C0%2C0%2C0%2C.228-1.5%2C4.878%2C4.878%2C0%2C0%2C0-.228-1.54A3.256%2C3.256%2C0%2C0%2C0%2C573.281%2C331.808Zm-2.975%2C4.228a1.528%2C1.528%2C0%2C1%2C1%2C1.529-1.527A1.527%2C1.527%2C0%2C0%2C1%2C570.305%2C336.037Z%22%20transform%3D%22translate(-566.134%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_106%22%20data-name%3D%22Path%20106%22%20d%3D%22M595.507%2C331.808a2.884%2C2.884%2C0%2C0%2C0-1.027-.736%2C3.339%2C3.339%2C0%2C0%2C0-1.327-.257%2C2.407%2C2.407%2C0%2C0%2C0-1.342.371%2C2.068%2C2.068%2C0%2C0%2C0-.813.985%2C1.7%2C1.7%2C0%2C0%2C0-.257-.627%2C1.557%2C1.557%2C0%2C0%2C0-.385-.393%2C1.3%2C1.3%2C0%2C0%2C0-.457-.208%2C2.175%2C2.175%2C0%2C0%2C0-.484-.057%2C2.08%2C2.08%2C0%2C0%2C0-.736.121c-.214.081-.32.145-.32.193v8.273a1.269%2C1.269%2C0%2C0%2C0%2C.348%2C1.035%2C1.393%2C1.393%2C0%2C0%2C0%2C.893.278h.284a1.312%2C1.312%2C0%2C0%2C0%2C.87-.285%2C1.276%2C1.276%2C0%2C0%2C0%2C.342-1.027v-2.468a2.122%2C2.122%2C0%2C0%2C0%2C.793.886%2C2.287%2C2.287%2C0%2C0%2C0%2C1.262.341%2C3.1%2C3.1%2C0%2C0%2C0%2C1.327-.278%2C3.052%2C3.052%2C0%2C0%2C0%2C1.027-.769%2C3.438%2C3.438%2C0%2C0%2C0%2C.657-1.177%2C4.741%2C4.741%2C0%2C0%2C0%2C.229-1.5%2C4.877%2C4.877%2C0%2C0%2C0-.229-1.54A3.259%2C3.259%2C0%2C0%2C0%2C595.507%2C331.808Zm-2.974%2C4.228a1.528%2C1.528%2C0%2C1%2C1%2C1.528-1.527A1.526%2C1.526%2C0%2C0%2C1%2C592.533%2C336.037Z%22%20transform%3D%22translate(-571.643%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_107%22%20data-name%3D%22Path%20107%22%20d%3D%22M606.832%2C331.808a2.875%2C2.875%2C0%2C0%2C0-1.026-.736%2C3.348%2C3.348%2C0%2C0%2C0-1.328-.257%2C2.4%2C2.4%2C0%2C0%2C0-1.34.371%2C2.045%2C2.045%2C0%2C0%2C0-.812.985%2C1.7%2C1.7%2C0%2C0%2C0-.259-.627%2C1.565%2C1.565%2C0%2C0%2C0-.384-.393%2C1.313%2C1.313%2C0%2C0%2C0-.456-.208%2C2.2%2C2.2%2C0%2C0%2C0-.487-.057%2C2.073%2C2.073%2C0%2C0%2C0-.733.121q-.322.122-.321.193v8.273a1.266%2C1.266%2C0%2C0%2C0%2C.348%2C1.035%2C1.393%2C1.393%2C0%2C0%2C0%2C.893.278h.284a1.316%2C1.316%2C0%2C0%2C0%2C.871-.285%2C1.283%2C1.283%2C0%2C0%2C0%2C.341-1.027v-2.468a2.115%2C2.115%2C0%2C0%2C0%2C.792.886%2C2.282%2C2.282%2C0%2C0%2C0%2C1.261.341%2C3.114%2C3.114%2C0%2C0%2C0%2C1.328-.278%2C3.041%2C3.041%2C0%2C0%2C0%2C1.026-.769%2C3.4%2C3.4%2C0%2C0%2C0%2C.657-1.177%2C4.7%2C4.7%2C0%2C0%2C0%2C.229-1.5%2C4.834%2C4.834%2C0%2C0%2C0-.229-1.54A3.223%2C3.223%2C0%2C0%2C0%2C606.832%2C331.808Zm-2.974%2C4.228a1.528%2C1.528%2C0%2C1%2C1%2C1.528-1.527A1.527%2C1.527%2C0%2C0%2C1%2C603.858%2C336.037Z%22%20transform%3D%22translate(-574.451%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_80%22%20data-name%3D%22Group%2080%22%20transform%3D%22translate(45.745)%22%3E%3Cpath%20id%3D%22Path_108%22%20data-name%3D%22Path%20108%22%20d%3D%22M626.954%2C331.582a.745.745%2C0%2C0%2C1%2C.763-.766.73.73%2C0%2C0%2C1%2C.763.76.747.747%2C0%2C0%2C1-.765.768A.731.731%2C0%2C0%2C1%2C626.954%2C331.582Zm1.434%2C0a.657.657%2C0%2C0%2C0-.672-.683.646.646%2C0%2C0%2C0-.669.684.671.671%2C0%2C1%2C0%2C1.342%2C0Zm-.63.068.274.28c0%2C.009-.018.044-.056.044a.1.1%2C0%2C0%2C1-.072-.038l-.258-.279h-.1v.269a.043.043%2C0%2C0%2C1-.045.048h-.017c-.028%2C0-.043-.02-.043-.053v-.678a.055.055%2C0%2C0%2C1%2C.056-.062h.238c.2%2C0%2C.3.08.3.239C628.04%2C331.556%2C627.946%2C331.645%2C627.759%2C331.647Zm-.021-.077c.131%2C0%2C.2-.059.2-.154s-.07-.152-.2-.152h-.19v.306Z%22%20transform%3D%22translate(-626.954%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_86%22%20data-name%3D%22Group%2086%22%20transform%3D%22translate(53.579%206.759)%22%3E%3Cg%20id%3D%22Group_83%22%20data-name%3D%22Group%2083%22%3E%3Cg%20id%3D%22Group_82%22%20data-name%3D%22Group%2082%22%3E%3Cpath%20id%3D%22Path_109%22%20data-name%3D%22Path%20109%22%20d%3D%22M326.867%2C334.908c0%2C1.989.693%2C2.946%2C2.883%2C2.946h4.659c2.189%2C0%2C2.882-.957%2C2.882-2.946v-2.153c0-1.989-.693-2.946-2.882-2.946H329.75c-2.19%2C0-2.883.957-2.883%2C2.946v2.153Zm9.328.4c0%2C1.37-.848%2C1.674-1.9%2C1.674h-4.435c-1.05%2C0-1.9-.3-1.9-1.674v-2.957c0-1.369.849-1.673%2C1.9-1.673H334.3c1.05%2C0%2C1.9.3%2C1.9%2C1.673v2.957Z%22%20transform%3D%22translate(-293.674%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_110%22%20data-name%3D%22Path%20110%22%20d%3D%22M282.735%2C329.809h1.631l7.408%2C7.067v-7.067h1.1v8.046h-1.631l-7.408-7.068v7.068h-1.1v-8.046Z%22%20transform%3D%22translate(-282.735%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_111%22%20data-name%3D%22Path%20111%22%20d%3D%22M297.769%2C337.855h1.24l1.006-1.7H306.5l1.006%2C1.7h1.24l-4.8-8.046h-1.363l-4.8%2C8.046Zm8.2-2.59h-5.43l2.715-4.567%2C2.715%2C4.567Z%22%20transform%3D%22translate(-286.461%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_112%22%20data-name%3D%22Path%20112%22%20d%3D%22M313.835%2C330.7h-4.09v-.889h9.274v.889H314.93v7.157h-1.095V330.7Z%22%20transform%3D%22translate(-289.43%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_113%22%20data-name%3D%22Path%20113%22%20d%3D%22M323.468%2C329.809h1.095v8.046h-1.095v-8.046Z%22%20transform%3D%22translate(-292.831%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_114%22%20data-name%3D%22Path%20114%22%20d%3D%22M342.553%2C329.809h1.632l7.408%2C7.067v-7.067h1.094v8.046h-1.63l-7.408-7.068v7.068h-1.1v-8.046Z%22%20transform%3D%22translate(-297.562%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_115%22%20data-name%3D%22Path%20115%22%20d%3D%22M357.588%2C337.855h1.24l1.006-1.7h6.48l1.006%2C1.7h1.24l-4.8-8.046h-1.364l-4.8%2C8.046Zm8.2-2.59h-5.43l2.715-4.567%2C2.714%2C4.567Z%22%20transform%3D%22translate(-301.288%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_116%22%20data-name%3D%22Path%20116%22%20d%3D%22M373.824%2C329.809h1.1v7.156H381.2v.89h-7.375v-8.046Z%22%20transform%3D%22translate(-305.313%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_117%22%20data-name%3D%22Path%20117%22%20d%3D%22M374.921%2C339.324H381.2v.89h-7.375%22%20transform%3D%22translate(-305.313%20-332.167)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_85%22%20data-name%3D%22Group%2085%22%20transform%3D%22translate(76.508%206.827)%22%3E%3Cg%20id%3D%22Group_84%22%20data-name%3D%22Group%2084%22%3E%3Cpath%20id%3D%22Path_118%22%20data-name%3D%22Path%20118%22%20d%3D%22M385.08%2C339.605v-.275h.185c.094%2C0%2C.195.02.195.131%2C0%2C.136-.1.144-.218.144Zm0%2C.115h.156l.237.387h.152l-.256-.393a.233.233%2C0%2C0%2C0%2C.233-.245c0-.177-.1-.256-.316-.256h-.343v.894h.136v-.387Zm.164.715a.774.774%2C0%2C1%2C0-.788-.775.775.775%2C0%2C0%2C0%2C.788.775Zm-.633-.775a.631.631%2C0%2C1%2C1%2C.633.647.628.628%2C0%2C0%2C1-.633-.647Z%22%20transform%3D%22translate(-384.456%20-338.886)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_95%22%20data-name%3D%22Group%2095%22%20transform%3D%22translate(140.41)%22%3E%3Cg%20id%3D%22Group_89%22%20data-name%3D%22Group%2089%22%3E%3Cg%20id%3D%22Group_88%22%20data-name%3D%22Group%2088%22%3E%3Cg%20id%3D%22Group_87%22%20data-name%3D%22Group%2087%22%3E%3Cpath%20id%3D%22Path_119%22%20data-name%3D%22Path%20119%22%20d%3D%22M430.182%2C337.661a1.254%2C1.254%2C0%2C0%2C0-1.755%2C0%2C1.23%2C1.23%2C0%2C0%2C0%2C.877%2C2.1%2C1.2%2C1.2%2C0%2C0%2C0%2C.878-.358%2C1.235%2C1.235%2C0%2C0%2C0%2C0-1.743Z%22%20transform%3D%22translate(-405.589%20-324.907)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_120%22%20data-name%3D%22Path%20120%22%20d%3D%22M423.083%2C332.144a1.077%2C1.077%2C0%2C0%2C0-.388.821%2C1.054%2C1.054%2C0%2C0%2C0%2C.38.82%2C1.329%2C1.329%2C0%2C0%2C0%2C.914.337%2C1.307%2C1.307%2C0%2C0%2C0%2C.9-.337%2C1.055%2C1.055%2C0%2C0%2C0%2C.381-.82%2C1.345%2C1.345%2C0%2C0%2C0-.251-.776%2C2.324%2C2.324%2C0%2C0%2C0-.671-.638%2C3.51%2C3.51%2C0%2C0%2C0-.986-.424%2C4.594%2C4.594%2C0%2C0%2C0-1.213-.154%2C3.98%2C3.98%2C0%2C0%2C0-1.545.286%2C3.5%2C3.5%2C0%2C0%2C0-1.164.769%2C3.251%2C3.251%2C0%2C0%2C0-.727%2C1.143%2C4.064%2C4.064%2C0%2C0%2C0%2C0%2C2.813%2C3.32%2C3.32%2C0%2C0%2C0%2C.727%2C1.149%2C3.442%2C3.442%2C0%2C0%2C0%2C1.164.776%2C3.979%2C3.979%2C0%2C0%2C0%2C1.545.286%2C4.625%2C4.625%2C0%2C0%2C0%2C1.213-.153%2C3.4%2C3.4%2C0%2C0%2C0%2C.986-.432%2C2.448%2C2.448%2C0%2C0%2C0%2C.671-.637%2C1.335%2C1.335%2C0%2C0%2C0%2C.251-.784%2C1.064%2C1.064%2C0%2C0%2C0-.381-.813%2C1.292%2C1.292%2C0%2C0%2C0-.9-.344%2C1.314%2C1.314%2C0%2C0%2C0-.914.344%2C1.063%2C1.063%2C0%2C0%2C0-.38.813%2C1.089%2C1.089%2C0%2C0%2C0%2C.388.835q.13.117.267.256a.348.348%2C0%2C0%2C1%2C.089.344.513.513%2C0%2C0%2C1-.275.314%2C1.393%2C1.393%2C0%2C0%2C1-.55.154.61.61%2C0%2C0%2C0-.1.008.6.6%2C0%2C0%2C1-.081.007%2C1.5%2C1.5%2C0%2C0%2C1-.639-.124%2C1.024%2C1.024%2C0%2C0%2C1-.445-.425%2C2.393%2C2.393%2C0%2C0%2C1-.267-.791%2C7.129%2C7.129%2C0%2C0%2C1-.089-1.238v-1.89a7.12%2C7.12%2C0%2C0%2C1%2C.089-1.237%2C2.4%2C2.4%2C0%2C0%2C1%2C.267-.791%2C1.029%2C1.029%2C0%2C0%2C1%2C.445-.425%2C1.5%2C1.5%2C0%2C0%2C1%2C.639-.124.915.915%2C0%2C0%2C1%2C.178.014%2C1.406%2C1.406%2C0%2C0%2C1%2C.55.154.512.512%2C0%2C0%2C1%2C.275.315.347.347%2C0%2C0%2C1-.089.344C423.258%2C331.981%2C423.169%2C332.066%2C423.083%2C332.144Z%22%20transform%3D%22translate(-403.207%20-323.338)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_121%22%20data-name%3D%22Path%20121%22%20d%3D%22M410.932%2C323.794c-.007-.024-.02-.028-.033-.028a.032.032%2C0%2C0%2C0-.032.033%2C1.544%2C1.544%2C0%2C1%2C1-1.537-1.71%2C1.826%2C1.826%2C0%2C0%2C1%2C1.73%2C2c0%2C1.608-1.537%2C3.051-3.626%2C3.855a.017.017%2C0%2C0%2C0-.006.028%2C4.423%2C4.423%2C0%2C0%2C1%2C1.267%2C2.121%2C4.5%2C4.5%2C0%2C0%2C1-1.752%2C4.6%2C6.2%2C6.2%2C0%2C0%2C1-6.845.011%2C4.656%2C4.656%2C0%2C0%2C1-1.914-3.606%2C4.35%2C4.35%2C0%2C0%2C1%2C2.8-4.346.04.04%2C0%2C0%2C0%2C0-.075%2C3.213%2C3.213%2C0%2C0%2C1-2.113-2.717c0-1.8%2C2-3.13%2C4.163-3.133%2C3.156-.005%2C4.176%2C1.788%2C4.177%2C2.814a1.544%2C1.544%2C0%2C0%2C1-3.088%2C0%2C1.8%2C1.8%2C0%2C0%2C1%2C.975-1.523c.415-.3.322-.875-.364-.874a2.889%2C2.889%2C0%2C0%2C0-.051%2C5.777.07.07%2C0%2C0%2C1%2C.068.07h0a.069.069%2C0%2C0%2C1-.068.069%2C3.774%2C3.774%2C0%2C1%2C0%2C2.59.866.038.038%2C0%2C0%2C0-.038-.005c-1.564.586-2.1.437-2.987.872a2.077%2C2.077%2C0%2C0%2C0-1.018%2C2.038.033.033%2C0%2C1%2C0%2C.066%2C0%2C1.74%2C1.74%2C0%2C1%2C1%2C1.743%2C1.738%2C1.929%2C1.929%2C0%2C0%2C1-1.967-2.068c0-2.649%2C2.663-3.731%2C3.663-4.089a28.635%2C28.635%2C0%2C0%2C0%2C3.1-.879A1.889%2C1.889%2C0%2C0%2C0%2C410.932%2C323.794Z%22%20transform%3D%22translate(-398.182%20-320.822)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_122%22%20data-name%3D%22Path%20122%22%20d%3D%22M415.824%2C326.965a5.977%2C5.977%2C0%2C0%2C1-2.94%2C2.99.015.015%2C0%2C0%2C0-.009.014v.229a.017.017%2C0%2C0%2C0%2C.017.016h.436v1.272h0v3.573h0a2.616%2C2.616%2C0%2C0%2C0%2C.168.917%2C1.857%2C1.857%2C0%2C0%2C0%2C.465.689%2C1.751%2C1.751%2C0%2C0%2C0%2C.688.387%2C2.849%2C2.849%2C0%2C0%2C0%2C.843.121%2C2.776%2C2.776%2C0%2C0%2C0%2C1.119-.232%2C5.5%2C5.5%2C0%2C0%2C0%2C.91-.494.016.016%2C0%2C0%2C0%2C0-.024c-.019-.02-.037-.041-.055-.062a.016.016%2C0%2C0%2C0-.019%2C0%2C3.162%2C3.162%2C0%2C0%2C1-.417.2.712.712%2C0%2C0%2C1-.482.035.622.622%2C0%2C0%2C1-.353-.361%2C2.173%2C2.173%2C0%2C0%2C1-.136-.86v-5.151h1.152a.016.016%2C0%2C0%2C0%2C.016-.016v-.206a.016.016%2C0%2C0%2C0-.016-.016h-1.152v-3.006a.015.015%2C0%2C0%2C0-.016-.016h-.211A.015.015%2C0%2C0%2C0%2C415.824%2C326.965Z%22%20transform%3D%22translate(-401.824%20-322.342)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_94%22%20data-name%3D%22Group%2094%22%20transform%3D%22translate(25.099%2014.34)%22%3E%3Cg%20id%3D%22Group_93%22%20data-name%3D%22Group%2093%22%3E%3Cg%20id%3D%22Group_92%22%20data-name%3D%22Group%2092%22%3E%3Cg%20id%3D%22Etc_Wordmark_ForestGreen%22%3E%3Cg%20id%3D%22Group_91%22%20data-name%3D%22Group%2091%22%3E%3Cg%20id%3D%22Group_90%22%20data-name%3D%22Group%2090%22%3E%3Cpath%20id%3D%22Path_123%22%20data-name%3D%22Path%20123%22%20d%3D%22M431.853%2C339.913V340h-.109v.361h-.088V340h-.1v-.085Z%22%20transform%3D%22translate(-431.552%20-339.894)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_124%22%20data-name%3D%22Path%20124%22%20d%3D%22M432.525%2C339.888v.465h-.088v-.213l-.145.207h0l-.14-.193v.2h-.085v-.465h0l.226.321.232-.321Z%22%20transform%3D%22translate(-431.679%20-339.888)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_106%22%20data-name%3D%22Group%20106%22%20transform%3D%22translate(176.308%204.544)%22%3E%3Cg%20id%3D%22Group_102%22%20data-name%3D%22Group%20102%22%3E%3Cg%20id%3D%22Group_101%22%20data-name%3D%22Group%20101%22%3E%3Cpath%20id%3D%22Path_125%22%20data-name%3D%22Path%20125%22%20d%3D%22M445.91%2C337.125c.621-.115.795-.4.795-1.633v-4.307c0-.924-.26-1.156-.795-1.286h3.858c-.65.144-.794.419-.794%2C1.648v4.306c0%2C.911.217%2C1.157.794%2C1.272Zm1.922-10.261a1.155%2C1.155%2C0%2C0%2C1%2C1.17%2C1.113%2C1.164%2C1.164%2C0%2C1%2C1-1.17-1.113Z%22%20transform%3D%22translate(-445.91%20-326.864)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_126%22%20data-name%3D%22Path%20126%22%20d%3D%22M452.193%2C338.1c.636-.115.794-.4.794-1.691v-4.321c0-.867-.259-1.084-.794-1.214h3.063v5.954c0%2C.925.174%2C1.171.578%2C1.272Zm5.477%2C0c.361-.1.578-.347.578-1.272%2C0-1.055.015-2.124.015-3.194%2C0-1.445-.492-2.153-1.431-2.153a1.533%2C1.533%2C0%2C0%2C0-.924.3%2C2.507%2C2.507%2C0%2C0%2C1%2C2.138-1c1.518%2C0%2C2.486.852%2C2.486%2C3.021v3.02c0%2C.925.232%2C1.171.8%2C1.272Z%22%20transform%3D%22translate(-447.467%20-327.836)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_127%22%20data-name%3D%22Path%20127%22%20d%3D%22M465.583%2C331.36c0-.867-.246-1.084-.8-1.214h.8l2.269-2.283v2.283h2.428v.368h-2.428v5.023a2.34%2C2.34%2C0%2C0%2C0%2C.578%2C1.907c-1.878-.014-2.847-1.358-2.847-3.4Z%22%20transform%3D%22translate(-450.589%20-327.112)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_128%22%20data-name%3D%22Path%20128%22%20d%3D%22M483.155%2C338.125c.622-.115.8-.419.8-1.705v-4.249c0-.939-.26-1.142-.8-1.272h3.064v5.94c0%2C.925.231%2C1.171.8%2C1.286Zm5.434-7.168a1.042%2C1.042%2C0%2C1%2C1-1.1%2C1.04A1.077%2C1.077%2C0%2C0%2C1%2C488.589%2C330.957Z%22%20transform%3D%22translate(-455.142%20-327.864)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_129%22%20data-name%3D%22Path%20129%22%20d%3D%22M493.684%2C332.142c-.3-.925-.65-1.113-1.242-1.243h3.815c-.4.116-.578.318-.289%2C1.1.058.116%2C1.127%2C3.165%2C1.185%2C3.3l-1.171%2C3.035Zm3.974-1.243h2.977c-.361.1-.563.318-.217%2C1.17l1.171%2C3.223-1.171%2C3.021Zm6.634%2C0a2.092%2C2.092%2C0%2C0%2C0-1.677%2C1.474c.332-.925.173-1.33-.318-1.474Z%22%20transform%3D%22translate(-457.443%20-327.864)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_130%22%20data-name%3D%22Path%20130%22%20d%3D%22M519.388%2C332.012a1.5%2C1.5%2C0%2C0%2C0-1.214-1.113h3.9c-.419.116-.563.332-.26%2C1.084l.174.492%2C1.156%2C3.063-1.185%2C2.833Zm6.6-1.113c-.867.2-1.286.535-1.792%2C1.691.448-1.156.275-1.488-.39-1.691Z%22%20transform%3D%22translate(-463.822%20-327.864)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_131%22%20data-name%3D%22Path%20131%22%20d%3D%22M539.439%2C338.1c.636-.115.794-.4.794-1.691v-4.321c0-.867-.259-1.084-.794-1.214H542.5v5.954c0%2C.925.174%2C1.171.578%2C1.272Zm5.477%2C0c.361-.1.578-.347.578-1.272%2C0-1.055.014-2.124.014-3.194%2C0-1.445-.492-2.153-1.431-2.153a1.534%2C1.534%2C0%2C0%2C0-.925.3%2C2.507%2C2.507%2C0%2C0%2C1%2C2.138-1c1.518%2C0%2C2.486.852%2C2.486%2C3.021v3.02c0%2C.925.232%2C1.171.795%2C1.272Z%22%20transform%3D%22translate(-469.092%20-327.836)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_98%22%20data-name%3D%22Group%2098%22%20transform%3D%22translate(46.58%202.963)%22%3E%3Cg%20id%3D%22Group_96%22%20data-name%3D%22Group%2096%22%3E%3Cpath%20id%3D%22Path_132%22%20data-name%3D%22Path%20132%22%20d%3D%22M510.152%2C335.587c0%2C1.488.651%2C2.529%2C1.633%2C2.572-2.168-.029-3.945-1.315-3.945-3.67s1.777-3.657%2C3.96-3.685c-.969.058-1.648%2C1.112-1.648%2C2.587Z%22%20transform%3D%22translate(-507.84%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_97%22%20data-name%3D%22Group%2097%22%20transform%3D%22translate(3.93)%22%3E%3Cpath%20id%3D%22Path_133%22%20data-name%3D%22Path%20133%22%20d%3D%22M514.727%2C333.39c0-1.459-.665-2.529-1.648-2.587%2C2.183.044%2C3.96%2C1.33%2C3.96%2C3.67%2C0%2C2.371-1.792%2C3.671-3.974%2C3.685%2C1-.044%2C1.662-1.07%2C1.662-2.572Z%22%20transform%3D%22translate(-513.065%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_99%22%20data-name%3D%22Group%2099%22%20transform%3D%22translate(62.054%202.963)%22%3E%3Cpath%20id%3D%22Path_134%22%20data-name%3D%22Path%20134%22%20d%3D%22M530.713%2C335.6c0%2C1.5.664%2C2.558%2C2.153%2C2.558-.144.014-.289.014-.433.014-2.4%2C0-4.018-1.473-4.018-3.685a3.623%2C3.623%2C0%2C0%2C1%2C3.859-3.685c-1.157.058-1.561%2C1.258-1.561%2C2.572Z%22%20transform%3D%22translate(-528.414%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_135%22%20data-name%3D%22Path%20135%22%20d%3D%22M533.894%2C334.619c1.069-.39%2C1.272-.708%2C1.242-1.5-.058-1.228-.535-2.24-1.589-2.312%2C2.355.072%2C4%2C1.518%2C3.829%2C3.816Z%22%20transform%3D%22translate(-529.686%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_100%22%20data-name%3D%22Group%20100%22%20transform%3D%22translate(19.592%202.963)%22%3E%3Cpath%20id%3D%22Path_136%22%20data-name%3D%22Path%20136%22%20d%3D%22M474.258%2C335.6c0%2C1.5.664%2C2.558%2C2.153%2C2.558-.144.014-.289.014-.433.014-2.4%2C0-4.018-1.473-4.018-3.685a3.623%2C3.623%2C0%2C0%2C1%2C3.859-3.685c-1.157.058-1.561%2C1.258-1.561%2C2.572Z%22%20transform%3D%22translate(-471.959%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_137%22%20data-name%3D%22Path%20137%22%20d%3D%22M477.439%2C334.619c1.069-.39%2C1.271-.708%2C1.243-1.5-.058-1.228-.535-2.24-1.589-2.312%2C2.355.072%2C4%2C1.518%2C3.829%2C3.816Z%22%20transform%3D%22translate(-473.231%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_105%22%20data-name%3D%22Group%20105%22%20transform%3D%22translate(79.48%203.026)%22%3E%3Cg%20id%3D%22Group_104%22%20data-name%3D%22Group%20104%22%3E%3Cg%20id%3D%22Group_103%22%20data-name%3D%22Group%20103%22%3E%3Cpath%20id%3D%22Path_138%22%20data-name%3D%22Path%20138%22%20d%3D%22M552.239%2C331.049c-.084%2C0-.156%2C0-.252%2C0%2C0%2C.023%2C0%2C.053%2C0%2C.07v.43c0%2C.044%2C0%2C.131%2C0%2C.162h-.158c.006-.054.009-.2.009-.27v-.221c0-.043%2C0-.11%2C0-.171-.095%2C0-.172%2C0-.255%2C0%2C0-.037%2C0-.091%2C0-.133.1%2C0%2C.2%2C0%2C.327%2C0s.23%2C0%2C.334%2C0A1.2%2C1.2%2C0%2C0%2C0%2C552.239%2C331.049Z%22%20transform%3D%22translate(-551.582%20-330.894)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_139%22%20data-name%3D%22Path%20139%22%20d%3D%22M553.339%2C331.71c0-.032-.014-.127-.02-.171l-.042-.3c-.053.115-.194.43-.213.474l-.054.011c-.017-.042-.156-.353-.213-.48l-.042.3c-.006.044-.018.191-.017.16h-.147c.014-.058.037-.2.048-.27l.035-.25c.009-.071.028-.223.032-.283l.056-.011.077.166.2.429.2-.426.073-.166h.054c.009.065.028.219.038.29l.035.249c.011.074.026.164.048.272Z%22%20transform%3D%22translate(-551.832%20-330.887)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_112%22%20data-name%3D%22Group%20112%22%20transform%3D%22translate(0%204.842)%22%3E%3Cg%20id%3D%22Group_108%22%20data-name%3D%22Group%20108%22%20transform%3D%22translate(0%200.077)%22%3E%3Cg%20id%3D%22Group_107%22%20data-name%3D%22Group%20107%22%3E%3Cpath%20id%3D%22Path_140%22%20data-name%3D%22Path%20140%22%20d%3D%22M234.945%2C330.645a2.494%2C2.494%2C0%2C0%2C0-2.22%2C1.346%2C2.235%2C2.235%2C0%2C0%2C0-2.205-1.346%2C2.33%2C2.33%2C0%2C0%2C0-2.088%2C1.233h0V330.8H227.2v7.254h1.312V333.4a1.64%2C1.64%2C0%2C1%2C1%2C3.279%2C0v4.649H233.1V333.4a1.64%2C1.64%2C0%2C1%2C1%2C3.279%2C0v4.649h1.312V333.17A2.533%2C2.533%2C0%2C0%2C0%2C234.945%2C330.645Z%22%20transform%3D%22translate(-215.391%20-328.176)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_135%22%20data-name%3D%22Rectangle%20135%22%20width%3D%221.312%22%20height%3D%229.877%22%20transform%3D%22translate(38.698%200)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_136%22%20data-name%3D%22Rectangle%20136%22%20width%3D%221.312%22%20height%3D%229.877%22%20transform%3D%22translate(41.322%200)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_141%22%20data-name%3D%22Path%20141%22%20d%3D%22M246.6%2C329.831a2.822%2C2.822%2C0%2C0%2C0-2.391%2C1.16v-3.629h-1.312v9.877h1.234v-1.124a2.866%2C2.866%2C0%2C0%2C0%2C2.469%2C1.279c2.153%2C0%2C3.164-1.543%2C3.164-3.822C249.761%2C331.375%2C248.749%2C329.831%2C246.6%2C329.831Zm-.278%2C6.458c-1.276%2C0-2.141-1.009-2.141-2.646s.868-2.693%2C2.144-2.693%2C2.12%2C1%2C2.12%2C2.637S247.595%2C336.289%2C246.318%2C336.289Z%22%20transform%3D%22translate(-219.281%20-327.362)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_142%22%20data-name%3D%22Path%20142%22%20d%3D%22M220.027%2C327.362h-1.876l-5.339%2C5.223v-5.223H211.5v9.877h1.312V334.42l2.1-2.051%2C3.5%2C4.871h1.616l-4.169-5.8Z%22%20transform%3D%22translate(-211.5%20-327.362)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_143%22%20data-name%3D%22Path%20143%22%20d%3D%22M259.551%2C336.985c-.278%2C0-.388-.138-.388-.36v-3.871c0-1.249-.845-2.109-2.9-2.109-2.107%2C0-2.9.921-3.01%2C2.315h1.315c0-.848.605-1.2%2C1.7-1.2%2C1.123%2C0%2C1.586.356%2C1.586%2C1.027%2C0%2C.582-.422.866-1.116.95l-1.054.111c-2%2C.194-2.734%2C1.068-2.734%2C2.219%2C0%2C1.373%2C1.161%2C2.145%2C2.7%2C2.145a2.532%2C2.532%2C0%2C0%2C0%2C2.276-1.158%2C1.176%2C1.176%2C0%2C0%2C0%2C1.235%2C1.081%2C1.949%2C1.949%2C0%2C0%2C0%2C.657-.077v-1.068Zm-1.7-1.8a1.918%2C1.918%2C0%2C0%2C1-2.1%2C1.914c-.9%2C0-1.486-.43-1.486-1.082s.5-1.04%2C1.652-1.179l1-.111a1.865%2C1.865%2C0%2C0%2C0%2C.936-.291Z%22%20transform%3D%22translate(-221.773%20-328.176)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Crect%20id%3D%22Rectangle_137%22%20data-name%3D%22Rectangle%20137%22%20width%3D%221.312%22%20height%3D%221.312%22%20transform%3D%22translate(9.182%200)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_138%22%20data-name%3D%22Rectangle%20138%22%20width%3D%221.312%22%20height%3D%227.253%22%20transform%3D%22translate(9.182%202.624)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_111%22%20data-name%3D%22Group%20111%22%20transform%3D%22translate(43.212)%22%3E%3Cg%20id%3D%22Group_110%22%20data-name%3D%22Group%20110%22%3E%3Cpath%20id%3D%22Path_144%22%20data-name%3D%22Path%20144%22%20d%3D%22M269.685%2C327.26a.733.733%2C0%2C1%2C0%2C.733.733A.733.733%2C0%2C0%2C0%2C269.685%2C327.26Zm0%2C1.312a.579.579%2C0%2C1%2C1%2C.578-.578A.578.578%2C0%2C0%2C1%2C269.685%2C328.572Z%22%20transform%3D%22translate(-268.952%20-327.26)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_109%22%20data-name%3D%22Group%20109%22%20transform%3D%22translate(0.457%200.387)%22%3E%3Cpath%20id%3D%22Path_145%22%20data-name%3D%22Path%20145%22%20d%3D%22M269.825%2C328.222h-.1v.246h-.164v-.693h.321c.157%2C0%2C.256.083.256.218a.2.2%2C0%2C0%2C1-.146.2l.171.272h-.185Zm-.1-.128h.146a.094.094%2C0%2C1%2C0%2C0-.187h-.146Z%22%20transform%3D%22translate(-269.559%20-327.775)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-ball {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.254%22%20height%3D%2214.243%22%20viewBox%3D%220%200%2014.254%2014.243%22%3E%3Cg%20id%3D%22Group_7780%22%20data-name%3D%22Group%207780%22%20transform%3D%22translate(0%20-0.017)%22%3E%3Cg%20id%3D%22Group_7347%22%20data-name%3D%22Group%207347%22%20transform%3D%22translate(0.584%200.017)%22%3E%3Cpath%20id%3D%22Path_11869%22%20data-name%3D%22Path%2011869%22%20d%3D%22M682.979%2C109.681a7.124%2C7.124%2C0%2C0%2C0-13.089%2C0Z%22%20transform%3D%22translate(-669.89%20-105.371)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7348%22%20data-name%3D%22Group%207348%22%20transform%3D%22translate(0.591%209.951)%22%3E%3Cpath%20id%3D%22Path_11870%22%20data-name%3D%22Path%2011870%22%20d%3D%22M682.994%2C124.2a7.125%2C7.125%2C0%2C0%2C1-13.09%2C0Z%22%20transform%3D%22translate(-669.904%20-124.202)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7349%22%20data-name%3D%22Group%207349%22%20transform%3D%22translate(0.238%205.144)%22%3E%3Cpath%20id%3D%22Path_11871%22%20data-name%3D%22Path%2011871%22%20d%3D%22M683.017%2C115.273a1.131%2C1.131%2C0%2C0%2C0-.052-.184h-13.68a.991.991%2C0%2C0%2C0-.051.184h3.884v.519H679v-.519Z%22%20transform%3D%22translate(-669.234%20-115.089)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7350%22%20data-name%3D%22Group%207350%22%20transform%3D%22translate(0.061%206.1)%22%3E%3Cpath%20id%3D%22Path_11872%22%20data-name%3D%22Path%2011872%22%20d%3D%22M683.018%2C116.9h-14.1a.948.948%2C0%2C0%2C0-.019.183h4.059v.519h5.884v-.519h4.194a.888.888%2C0%2C0%2C0-.019-.183%22%20transform%3D%22translate(-668.9%20-116.902)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7351%22%20data-name%3D%22Group%207351%22%20transform%3D%22translate(0%207.055)%22%3E%3Cpath%20id%3D%22Path_11873%22%20data-name%3D%22Path%2011873%22%20d%3D%22M683.03%2C118.713H668.79a.911.911%2C0%2C0%2C0%2C0%2C.183H672.9v.517h5.884V118.9h4.246a.856.856%2C0%2C0%2C0%2C0-.184%22%20transform%3D%22translate(-668.784%20-118.713)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7352%22%20data-name%3D%22Group%207352%22%20transform%3D%22translate(0.068%208.078)%22%3E%3Cpath%20id%3D%22Path_11874%22%20data-name%3D%22Path%2011874%22%20d%3D%22M668.941%2C120.836a.843.843%2C0%2C0%2C1-.028-.183h14.123a.831.831%2C0%2C0%2C1-.027.183H668.941Z%22%20transform%3D%22translate(-668.913%20-120.653)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7353%22%20data-name%3D%22Group%207353%22%20transform%3D%22translate(0.264%208.742)%22%3E%3Cpath%20id%3D%22Path_11875%22%20data-name%3D%22Path%2011875%22%20d%3D%22M683.017%2C122.2h-3.991v-.292h-5.884v.292h-3.856v0a1.14%2C1.14%2C0%2C0%2C0%2C.05.179l0%2C0h3.8v.292h5.884v-.292h3.94a1.251%2C1.251%2C0%2C0%2C0%2C.051-.183%22%20transform%3D%22translate(-669.285%20-121.91)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kim-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22black%22%20id%3D%22Group_7631%22%20data-name%3D%22Group%207631%22%20width%3D%2247.013%22%20height%3D%2210.865%22%20viewBox%3D%220%200%2047.013%2010.865%22%3E%3Cg%20id%3D%22Group_7534%22%20data-name%3D%22Group%207534%22%20opacity%3D%220.996%22%3E%3Cpath%20id%3D%22Path_11762%22%20data-name%3D%22Path%2011762%22%20d%3D%22M707.869%2C179.99h1.393v5.149l5.259-5.149h1.991l-4.494%2C4.246%2C4.587%2C6.273h-1.864l-3.768-5.287-1.712%2C1.621v3.666h-1.393Z%22%20transform%3D%22translate(-707.869%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11763%22%20data-name%3D%22Path%2011763%22%20d%3D%22M732.114%2C179.99h1.313v1.461h-1.313Zm0%2C2.886h1.313v7.633h-1.313Z%22%20transform%3D%22translate(-722.506%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11764%22%20data-name%3D%22Path%2011764%22%20d%3D%22M739.594%2C186.918h1.276v1.088a4.283%2C4.283%2C0%2C0%2C1%2C.83-.822%2C2.489%2C2.489%2C0%2C0%2C1%2C1.447-.437%2C2.28%2C2.28%2C0%2C0%2C1%2C1.476.451%2C2.36%2C2.36%2C0%2C0%2C1%2C.572.758%2C2.786%2C2.786%2C0%2C0%2C1%2C1.01-.913%2C2.822%2C2.822%2C0%2C0%2C1%2C1.3-.3%2C2.138%2C2.138%2C0%2C0%2C1%2C2.109%2C1.117%2C3.673%2C3.673%2C0%2C0%2C1%2C.3%2C1.619v5.106h-1.337V189.26a1.248%2C1.248%2C0%2C0%2C0-.383-1.052%2C1.519%2C1.519%2C0%2C0%2C0-.936-.287%2C1.858%2C1.858%2C0%2C0%2C0-1.308.509%2C2.247%2C2.247%2C0%2C0%2C0-.545%2C1.7v4.461H744.09v-5.005a2.553%2C2.553%2C0%2C0%2C0-.186-1.139%2C1.132%2C1.132%2C0%2C0%2C0-1.093-.536%2C1.89%2C1.89%2C0%2C0%2C0-1.329.566%2C2.771%2C2.771%2C0%2C0%2C0-.6%2C2.049v4.067h-1.29Z%22%20transform%3D%22translate(-727.018%20-183.981)%22%2F%3E%3Cpath%20id%3D%22Path_11765%22%20data-name%3D%22Path%2011765%22%20d%3D%22M769.4%2C179.9h1.252v3.817a2.922%2C2.922%2C0%2C0%2C1%2C1.013-.842%2C2.877%2C2.877%2C0%2C0%2C1%2C1.282-.29%2C3%2C3%2C0%2C0%2C1%2C2.332.984%2C4.191%2C4.191%2C0%2C0%2C1%2C.9%2C2.9%2C4.977%2C4.977%2C0%2C0%2C1-.885%2C3.022%2C2.875%2C2.875%2C0%2C0%2C1-2.454%2C1.2%2C2.528%2C2.528%2C0%2C0%2C1-1.478-.422%2C3.528%2C3.528%2C0%2C0%2C1-.766-.8v.981H769.4Zm4.93%2C8.83a4.1%2C4.1%2C0%2C0%2C0%2C.521-2.191%2C3.6%2C3.6%2C0%2C0%2C0-.521-2.006%2C1.724%2C1.724%2C0%2C0%2C0-1.537-.794%2C2.144%2C2.144%2C0%2C0%2C0-1.547.651%2C2.929%2C2.929%2C0%2C0%2C0-.662%2C2.149%2C4.821%2C4.821%2C0%2C0%2C0%2C.269%2C1.754%2C1.891%2C1.891%2C0%2C0%2C0%2C1.9%2C1.268A1.736%2C1.736%2C0%2C0%2C0%2C774.333%2C188.729Z%22%20transform%3D%22translate(-745.015%20-179.848)%22%2F%3E%3Cpath%20id%3D%22Path_11766%22%20data-name%3D%22Path%2011766%22%20d%3D%22M793.079%2C189.924a.7.7%2C0%2C0%2C0%2C.593-.37%2C1.172%2C1.172%2C0%2C0%2C0%2C.085-.5%2C1.047%2C1.047%2C0%2C0%2C0-.468-.959%2C2.5%2C2.5%2C0%2C0%2C0-1.34-.3%2C1.7%2C1.7%2C0%2C0%2C0-1.428.546%2C1.786%2C1.786%2C0%2C0%2C0-.306.9h-1.2a2.223%2C2.223%2C0%2C0%2C1%2C.917-1.978%2C3.775%2C3.775%2C0%2C0%2C1%2C2.053-.558%2C4.15%2C4.15%2C0%2C0%2C1%2C2.191.516%2C1.752%2C1.752%2C0%2C0%2C1%2C.84%2C1.6v4.418a.579.579%2C0%2C0%2C0%2C.082.322c.053.082.167.122.348.122a1.9%2C1.9%2C0%2C0%2C0%2C.191-.011c.072-.007.149-.018.231-.032v.952a3.933%2C3.933%2C0%2C0%2C1-.46.108%2C3.45%2C3.45%2C0%2C0%2C1-.428.021%2C1.069%2C1.069%2C0%2C0%2C1-.971-.472%2C1.848%2C1.848%2C0%2C0%2C1-.218-.709%2C3.3%2C3.3%2C0%2C0%2C1-1.135.9%2C3.506%2C3.506%2C0%2C0%2C1-1.625.379%2C2.41%2C2.41%2C0%2C0%2C1-1.742-.647%2C2.145%2C2.145%2C0%2C0%2C1-.678-1.62%2C2.093%2C2.093%2C0%2C0%2C1%2C.665-1.652%2C3.179%2C3.179%2C0%2C0%2C1%2C1.75-.722Zm-2.715%2C3.482a1.512%2C1.512%2C0%2C0%2C0%2C.968.322%2C2.94%2C2.94%2C0%2C0%2C0%2C1.316-.315%2C1.77%2C1.77%2C0%2C0%2C0%2C1.077-1.709v-1.037a2.175%2C2.175%2C0%2C0%2C1-.609.251%2C5.089%2C5.089%2C0%2C0%2C1-.731.144l-.776.1a3.016%2C3.016%2C0%2C0%2C0-1.056.293%2C1.14%2C1.14%2C0%2C0%2C0-.6%2C1.072A1.062%2C1.062%2C0%2C0%2C0%2C790.364%2C193.406Z%22%20transform%3D%22translate(-756.606%20-183.959)%22%2F%3E%3Cpath%20id%3D%22Path_11767%22%20data-name%3D%22Path%2011767%22%20d%3D%22M808.7%2C179.99h1.29v10.519H808.7Z%22%20transform%3D%22translate(-768.734%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11768%22%20data-name%3D%22Path%2011768%22%20d%3D%22M815.441%2C179.99h1.29v10.519h-1.29Z%22%20transform%3D%22translate(-772.803%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11769%22%20data-name%3D%22Path%2011769%22%20d%3D%22M823.992%2C181.041a.741.741%2C0%2C0%2C1-1.053%2C0%2C.744.744%2C0%2C0%2C1%2C.526-1.272.715.715%2C0%2C0%2C1%2C.526.217.748.748%2C0%2C0%2C1%2C0%2C1.056Zm-.978-.982a.637.637%2C0%2C0%2C0%2C0%2C.911.634.634%2C0%2C0%2C0%2C.9%2C0%2C.637.637%2C0%2C0%2C0%2C0-.911.606.606%2C0%2C0%2C0-.452-.189A.614.614%2C0%2C0%2C0%2C823.013%2C180.059Zm.441.042a.586.586%2C0%2C0%2C1%2C.218.03.2.2%2C0%2C0%2C1%2C.128.207.18.18%2C0%2C0%2C1-.08.162.292.292%2C0%2C0%2C1-.117.04.187.187%2C0%2C0%2C1%2C.138.08.214.214%2C0%2C0%2C1%2C.048.127v.12a.3.3%2C0%2C0%2C0%2C.005.043l.011.01h-.138V180.9l-.005-.027v-.064a.2.2%2C0%2C0%2C0-.08-.187.356.356%2C0%2C0%2C0-.16-.027h-.112v.322h-.144V180.1Zm.154.13a.371.371%2C0%2C0%2C0-.176-.031h-.122v.3h.128a.379.379%2C0%2C0%2C0%2C.138-.019.13.13%2C0%2C0%2C0%2C.085-.128A.122.122%2C0%2C0%2C0%2C823.609%2C180.23Z%22%20transform%3D%22translate(-777.197%20-179.769)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.nof-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22black%22%20id%3D%22Group_7632%22%20data-name%3D%22Group%207632%22%20width%3D%2282.878%22%20height%3D%228.92%22%20viewBox%3D%220%200%2082.878%208.92%22%3E%3Cg%20id%3D%22Group_7532%22%20data-name%3D%22Group%207532%22%20transform%3D%22translate(0%200)%22%3E%3Cpath%20id%3D%22Path_11789%22%20data-name%3D%22Path%2011789%22%20d%3D%22M922.945%2C441.685a.676.676%2C0%2C1%2C1%2C.681.691.673.673%2C0%2C0%2C1-.681-.691m.681.83a.828.828%2C0%2C1%2C0-.846-.83A.829.829%2C0%2C0%2C0%2C923.626%2C442.515Zm-.175-.763h.17l.245.412h.165l-.271-.42a.248.248%2C0%2C0%2C0%2C.25-.263c0-.189-.112-.271-.335-.271H923.3v.955h.149Zm0-.125v-.292h.191c.106%2C0%2C.213.021.213.138%2C0%2C.146-.112.154-.234.154Z%22%20transform%3D%22translate(-841.588%20-433.594)%22%2F%3E%3Cpath%20id%3D%22Path_11790%22%20data-name%3D%22Path%2011790%22%20d%3D%22M809.964%2C427.291c0%2C1.46-.9%2C1.784-2.023%2C1.784h-4.722c-1.117%2C0-2.021-.324-2.021-1.784v-3.148c0-1.46.9-1.784%2C2.021-1.784h4.722c1.119%2C0%2C2.023.324%2C2.023%2C1.784m-9.934%2C2.723c0%2C2.116.734%2C3.137%2C3.068%2C3.137h4.961c2.334%2C0%2C3.071-1.021%2C3.071-3.137v-2.295c0-2.119-.737-3.137-3.071-3.137H803.1c-2.335%2C0-3.068%2C1.018-3.068%2C3.137Z%22%20transform%3D%22translate(-764.74%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11791%22%20data-name%3D%22Path%2011791%22%20d%3D%22M705.653%2C421.434h1.739l7.886%2C7.527v-7.527h1.167V430H714.71l-7.889-7.527V430h-1.167%22%20transform%3D%22translate(-705.653%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11792%22%20data-name%3D%22Path%2011792%22%20d%3D%22M746.594%2C427.244h-5.783l2.893-4.863M737.859%2C430h1.324l1.069-1.813h6.9L748.226%2C430h1.319l-5.116-8.57h-1.452Z%22%20transform%3D%22translate(-725.818%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11793%22%20data-name%3D%22Path%2011793%22%20d%3D%22M767.577%2C422.38h-4.358v-.947H773.1v.947h-4.358V430h-1.162%22%20transform%3D%22translate(-741.692%20-421.434)%22%2F%3E%3Crect%20id%3D%22Rectangle_2112%22%20data-name%3D%22Rectangle%202112%22%20width%3D%221.166%22%20height%3D%228.568%22%20transform%3D%22translate(32.568)%22%2F%3E%3Cpath%20id%3D%22Path_11794%22%20data-name%3D%22Path%2011794%22%20d%3D%22M833.835%2C421.434h1.734l7.9%2C7.527v-7.527h1.159V430h-1.734L835%2C422.477V430h-1.165%22%20transform%3D%22translate(-785.902%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11795%22%20data-name%3D%22Path%2011795%22%20d%3D%22M874.549%2C427.244h-5.78l2.893-4.863M865.817%2C430h1.319l1.074-1.813h6.9L876.182%2C430h1.324l-5.121-8.57h-1.452Z%22%20transform%3D%22translate(-805.926%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11796%22%20data-name%3D%22Path%2011796%22%20d%3D%22M900.186%2C421.434h1.165v7.62h6.69V430h-7.854%22%20transform%3D%22translate(-827.442%20-421.434)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.etc-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22black%22%20id%3D%22Group_7633%22%20data-name%3D%22Group%207633%22%20width%3D%2228.848%22%20height%3D%2216.623%22%20viewBox%3D%220%200%2028.848%2016.623%22%3E%3Cg%20id%3D%22Group_7537%22%20data-name%3D%22Group%207537%22%20transform%3D%22translate(0%200)%22%3E%3Cg%20id%3D%22Group_7535%22%20data-name%3D%22Group%207535%22%20transform%3D%22translate(0%200)%22%3E%3Cpath%20id%3D%22Path_11785%22%20data-name%3D%22Path%2011785%22%20d%3D%22M220.346%2C259.094a2.98%2C2.98%2C0%2C0%2C0-2.975%2C3.076%2C2.882%2C2.882%2C0%2C0%2C0%2C3.035%2C2.885v.129c-2.118%2C0-3.834%2C2.187-3.834%2C4.728%2C0%2C2.636%2C1.787%2C4.678%2C3.951%2C4.678a5.077%2C5.077%2C0%2C0%2C0%2C2.546-.963%2C4.5%2C4.5%2C0%2C0%2C0%2C1.905-3.56%2C4.3%2C4.3%2C0%2C0%2C0-1.7-3.272c-2.809.919-4.253.754-4.4%2C2.63-.036.456.39-.164.746-.624a2.032%2C2.032%2C0%2C0%2C1%2C.522-.472%2C1.8%2C1.8%2C0%2C0%2C1%2C1.248-.261%2C1.621%2C1.621%2C0%2C0%2C1%2C1.131.73%2C1.888%2C1.888%2C0%2C0%2C1%2C.315%2C1.426%2C1.945%2C1.945%2C0%2C0%2C1-1.942%2C1.73%2C1.766%2C1.766%2C0%2C0%2C1-1.888-1.118%2C3.419%2C3.419%2C0%2C0%2C1-.234-1.21c0-2.635%2C2.81-4.084%2C5-4.987%2C1.271-.521%2C2.751-.537%2C3.281-1.1a1.714%2C1.714%2C0%2C0%2C0%2C.468-1.173c.037-.358-.221-.247-.532.253a2.528%2C2.528%2C0%2C0%2C1-.4.465%2C1.513%2C1.513%2C0%2C0%2C1-1.228.255%2C1.411%2C1.411%2C0%2C0%2C1-1.017-.657%2C1.8%2C1.8%2C0%2C0%2C1-.282-1.282%2C1.759%2C1.759%2C0%2C0%2C1%2C.608-1.138%2C1.4%2C1.4%2C0%2C0%2C1%2C1.153-.359%2C1.8%2C1.8%2C0%2C0%2C1%2C.982.476%2C2.92%2C2.92%2C0%2C0%2C1%2C.723%2C1.01%2C2.183%2C2.183%2C0%2C0%2C1%2C.077%2C1.09c-.263%2C2.07-2.118%2C3.491-4.188%2C4.25a4.612%2C4.612%2C0%2C0%2C1%2C1.67%2C3.443c0%2C2.66-2.989%2C5.082-6.634%2C5.082-3.693%2C0-5.134-2.445-5.134-5.082%2C0-1.809.852-4.653%2C3.817-5.033a3.839%2C3.839%2C0%2C0%2C1-1.953-.744%2C2.835%2C2.835%2C0%2C0%2C1-1.081-2.461c0-1.781%2C1.881-3.3%2C4.4-3.3a5.993%2C5.993%2C0%2C0%2C1%2C4%2C1.5%2C2.933%2C2.933%2C0%2C0%2C1%2C.568.613%2C1.839%2C1.839%2C0%2C0%2C1%2C.334%2C1.046%2C1.814%2C1.814%2C0%2C0%2C1-.257.911%2C1.715%2C1.715%2C0%2C0%2C1-1.5.847%2C1.615%2C1.615%2C0%2C0%2C1-1.646-1.272%2C3.108%2C3.108%2C0%2C0%2C1-.036-.485%2C1.45%2C1.45%2C0%2C0%2C1%2C.518-1.1c.116-.106.233-.221.356-.346a.754.754%2C0%2C0%2C0%2C.269-.718c-.031-.344-.278-.479-.768-.528m9.064%2C15.423a.7.7%2C0%2C0%2C1-.392-.405%2C2.456%2C2.456%2C0%2C0%2C1-.153-.968v-5.791h1.3v-.269h-1.3v-3.546a5.2%2C5.2%2C0%2C0%2C1-3.013%2C3.523%2C3.767%2C3.767%2C0%2C0%2C1-.514.037v.116a.467.467%2C0%2C0%2C1%2C.346.136.473.473%2C0%2C0%2C1%2C.134.348v1.084h0V272.8h0a2.951%2C2.951%2C0%2C0%2C0%2C.189%2C1.032%2C2.1%2C2.1%2C0%2C0%2C0%2C.516.775%2C1.965%2C1.965%2C0%2C0%2C0%2C.767.433%2C3.139%2C3.139%2C0%2C0%2C0%2C.94.137%2C3.056%2C3.056%2C0%2C0%2C0%2C1.246-.261%2C6.323%2C6.323%2C0%2C0%2C0%2C1.036-.572l.019-.156a3.8%2C3.8%2C0%2C0%2C1-.585.291.788.788%2C0%2C0%2C1-.537.039m5.727-6.114a1.215%2C1.215%2C0%2C0%2C0-.431.923%2C1.191%2C1.191%2C0%2C0%2C0%2C.423.92%2C1.471%2C1.471%2C0%2C0%2C0%2C1.017.379%2C1.453%2C1.453%2C0%2C0%2C0%2C1-.379%2C1.191%2C1.191%2C0%2C0%2C0%2C.423-.92%2C1.547%2C1.547%2C0%2C0%2C0-.279-.875%2C2.62%2C2.62%2C0%2C0%2C0-.747-.715%2C3.863%2C3.863%2C0%2C0%2C0-1.1-.477%2C5.02%2C5.02%2C0%2C0%2C0-1.351-.174%2C4.408%2C4.408%2C0%2C0%2C0-1.72.322%2C3.893%2C3.893%2C0%2C0%2C0-1.3.864%2C3.649%2C3.649%2C0%2C0%2C0-.811%2C1.284%2C4.618%2C4.618%2C0%2C0%2C0%2C0%2C3.163%2C3.749%2C3.749%2C0%2C0%2C0%2C.811%2C1.294%2C3.852%2C3.852%2C0%2C0%2C0%2C1.3.872%2C4.408%2C4.408%2C0%2C0%2C0%2C1.72.32%2C5.074%2C5.074%2C0%2C0%2C0%2C1.351-.173%2C3.763%2C3.763%2C0%2C0%2C0%2C1.1-.485%2C2.776%2C2.776%2C0%2C0%2C0%2C.747-.717%2C1.525%2C1.525%2C0%2C0%2C0%2C.279-.881%2C1.2%2C1.2%2C0%2C0%2C0-.423-.913%2C1.442%2C1.442%2C0%2C0%2C0-1-.387%2C1.46%2C1.46%2C0%2C0%2C0-1.017.387%2C1.2%2C1.2%2C0%2C0%2C0-.423.913%2C1.236%2C1.236%2C0%2C0%2C0%2C.431.94c.1.086.2.182.3.287a.393.393%2C0%2C0%2C1%2C.1.387.573.573%2C0%2C0%2C1-.306.355%2C1.566%2C1.566%2C0%2C0%2C1-.613.173.735.735%2C0%2C0%2C0-.108.008.658.658%2C0%2C0%2C1-.09.008%2C1.655%2C1.655%2C0%2C0%2C1-.711-.14%2C1.141%2C1.141%2C0%2C0%2C1-.5-.479%2C2.68%2C2.68%2C0%2C0%2C1-.3-.888%2C7.929%2C7.929%2C0%2C0%2C1-.1-1.392V270.08a7.892%2C7.892%2C0%2C0%2C1%2C.1-1.391%2C2.691%2C2.691%2C0%2C0%2C1%2C.3-.888%2C1.141%2C1.141%2C0%2C0%2C1%2C.5-.479%2C1.655%2C1.655%2C0%2C0%2C1%2C.711-.141%2C1.047%2C1.047%2C0%2C0%2C1%2C.2.017%2C1.543%2C1.543%2C0%2C0%2C1%2C.613.173.578.578%2C0%2C0%2C1%2C.306.354.39.39%2C0%2C0%2C1-.1.387c-.1.105-.2.2-.3.29%22%20transform%3D%22translate(-213.318%20-258.631)%22%2F%3E%3Cpath%20id%3D%22Path_11786%22%20data-name%3D%22Path%2011786%22%20d%3D%22M297.572%2C304.29a1.482%2C1.482%2C0%2C0%2C0-2.075%2C0%2C1.462%2C1.462%2C0%2C0%2C0%2C0%2C2.062%2C1.482%2C1.482%2C0%2C0%2C0%2C2.075%2C0%2C1.459%2C1.459%2C0%2C0%2C0%2C0-2.062%22%20transform%3D%22translate(-270.323%20-290.208)%22%2F%3E%3Cpath%20id%3D%22Path_11787%22%20data-name%3D%22Path%2011787%22%20d%3D%22M305.08%2C311.1v.1h-.129v.429h-.105V311.2h-.122v-.1Z%22%20transform%3D%22translate(-276.875%20-295.116)%22%2F%3E%3Cpath%20id%3D%22Path_11788%22%20data-name%3D%22Path%2011788%22%20d%3D%22M306.689%2C311.029v.55h-.1v-.253l-.173.246h0l-.166-.23v.237h-.1v-.55h0l.267.38.275-.38Z%22%20transform%3D%22translate(-277.842%20-295.07)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.itw-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22black%22%20width%3D%2294.642%22%20height%3D%2212.081%22%20viewBox%3D%220%200%2094.642%2012.081%22%3E%3Cg%20id%3D%22Group_7848%22%20data-name%3D%22Group%207848%22%20transform%3D%22translate(-895.435%20-14.46)%22%3E%3Cg%20id%3D%22Group_7309%22%20data-name%3D%22Group%207309%22%20transform%3D%22translate(895.435%2014.46)%22%3E%3Cpath%20id%3D%22Path_11770%22%20data-name%3D%22Path%2011770%22%20d%3D%22M211.1%2C361.868c.715-.133.915-.467.915-1.879v-4.951c0-1.064-.3-1.329-.915-1.48h4.436c-.747.166-.913.483-.913%2C1.895v4.952c0%2C1.046.25%2C1.329.913%2C1.462Zm2.21-11.8a1.329%2C1.329%2C0%2C0%2C1%2C1.347%2C1.279%2C1.341%2C1.341%2C0%2C0%2C1-2.676%2C0A1.325%2C1.325%2C0%2C0%2C1%2C213.31%2C350.069Z%22%20transform%3D%22translate(-211.1%20-350.069)%22%2F%3E%3Cpath%20id%3D%22Path_11771%22%20data-name%3D%22Path%2011771%22%20d%3D%22M226.536%2C368.109c.73-.133.913-.465.913-1.945V361.2c0-1-.3-1.244-.913-1.4h3.522v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.416-.116.666-.4.666-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.565-2.475-1.645-2.475a1.77%2C1.77%2C0%2C0%2C0-1.064.348%2C2.882%2C2.882%2C0%2C0%2C1%2C2.458-1.146c1.746%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-221.103%20-356.31)%22%2F%3E%3Cpath%20id%3D%22Path_11772%22%20data-name%3D%22Path%2011772%22%20d%3D%22M258.4%2C356.546c0-1-.283-1.246-.915-1.4h.915l2.608-2.626v2.626H263.8v.421h-2.792v5.778a2.689%2C2.689%2C0%2C0%2C0%2C.665%2C2.191c-2.16-.016-3.273-1.561-3.273-3.9Z%22%20transform%3D%22translate(-241.157%20-351.66)%22%2F%3E%3Cpath%20id%3D%22Path_11773%22%20data-name%3D%22Path%2011773%22%20d%3D%22M302.61%2C368.292c.715-.133.915-.481.915-1.961v-4.886c0-1.08-.3-1.314-.915-1.462h3.522v6.831c0%2C1.064.267%2C1.345.916%2C1.478Zm6.247-8.243a1.2%2C1.2%2C0%2C1%2C1-1.262%2C1.2A1.239%2C1.239%2C0%2C0%2C1%2C308.857%2C360.049Z%22%20transform%3D%22translate(-270.401%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11774%22%20data-name%3D%22Path%2011774%22%20d%3D%22M326.853%2C361.412c-.35-1.064-.749-1.28-1.429-1.429h4.387c-.465.133-.665.366-.332%2C1.263.066.133%2C1.3%2C3.64%2C1.363%2C3.789l-1.347%2C3.49Zm4.569-1.429h3.425c-.417.117-.649.366-.25%2C1.345l1.345%2C3.707-1.345%2C3.473Zm7.627%2C0a2.406%2C2.406%2C0%2C0%2C0-1.928%2C1.7c.384-1.064.2-1.529-.366-1.7Z%22%20transform%3D%22translate(-285.185%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11775%22%20data-name%3D%22Path%2011775%22%20d%3D%22M390.045%2C361.262a1.725%2C1.725%2C0%2C0%2C0-1.4-1.279h4.487c-.483.133-.646.383-.3%2C1.247l.2.564%2C1.329%2C3.523L393%2C368.574Zm7.594-1.279c-1%2C.233-1.478.614-2.061%2C1.944.516-1.329.316-1.711-.448-1.944Z%22%20transform%3D%22translate(-326.155%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11776%22%20data-name%3D%22Path%2011776%22%20d%3D%22M440.9%2C368.109c.731-.133.915-.465.915-1.945V361.2c0-1-.3-1.244-.915-1.4h3.523v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.415-.116.665-.4.665-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.566-2.475-1.646-2.475a1.773%2C1.773%2C0%2C0%2C0-1.064.348%2C2.889%2C2.889%2C0%2C0%2C1%2C2.459-1.146c1.747%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-360.012%20-356.31)%22%2F%3E%3Cg%20id%3D%22Group_7306%22%20data-name%3D%22Group%207306%22%20transform%3D%22translate(53.557%203.406)%22%3E%3Cg%20id%3D%22Group_7304%22%20data-name%3D%22Group%207304%22%3E%3Cpath%20id%3D%22Path_11777%22%20data-name%3D%22Path%2011777%22%20d%3D%22M365.917%2C365.248c0%2C1.711.747%2C2.907%2C1.877%2C2.957-2.491-.032-4.536-1.512-4.536-4.22%2C0-2.725%2C2.045-4.205%2C4.553-4.238-1.113.066-1.894%2C1.279-1.894%2C2.975Z%22%20transform%3D%22translate(-363.258%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7305%22%20data-name%3D%22Group%207305%22%20transform%3D%22translate(4.519)%22%3E%3Cpath%20id%3D%22Path_11778%22%20data-name%3D%22Path%2011778%22%20d%3D%22M378.008%2C362.722c0-1.679-.766-2.909-1.9-2.975%2C2.51.051%2C4.555%2C1.529%2C4.555%2C4.221%2C0%2C2.725-2.061%2C4.22-4.571%2C4.237%2C1.146-.049%2C1.912-1.228%2C1.912-2.957Z%22%20transform%3D%22translate(-376.096%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7307%22%20data-name%3D%22Group%207307%22%20transform%3D%22translate(71.35%203.406)%22%3E%3Cpath%20id%3D%22Path_11779%22%20data-name%3D%22Path%2011779%22%20d%3D%22M416.452%2C365.264c0%2C1.728.763%2C2.941%2C2.475%2C2.941a4.834%2C4.834%2C0%2C0%2C1-.5.017c-2.757%2C0-4.618-1.7-4.618-4.237a4.167%2C4.167%2C0%2C0%2C1%2C4.438-4.238c-1.329.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-413.809%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11780%22%20data-name%3D%22Path%2011780%22%20d%3D%22M426.815%2C364.134c1.231-.449%2C1.462-.814%2C1.431-1.728-.066-1.412-.614-2.576-1.827-2.659%2C2.707.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-421.98%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7308%22%20data-name%3D%22Group%207308%22%20transform%3D%22translate(22.527%203.406)%22%3E%3Cpath%20id%3D%22Path_11781%22%20data-name%3D%22Path%2011781%22%20d%3D%22M277.745%2C365.264c0%2C1.728.762%2C2.941%2C2.474%2C2.941a4.808%2C4.808%2C0%2C0%2C1-.5.017c-2.759%2C0-4.618-1.7-4.618-4.237a4.166%2C4.166%2C0%2C0%2C1%2C4.438-4.238c-1.332.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-275.102%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11782%22%20data-name%3D%22Path%2011782%22%20d%3D%22M288.11%2C364.134c1.23-.449%2C1.462-.814%2C1.429-1.728-.066-1.412-.616-2.576-1.828-2.659%2C2.709.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-283.272%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7310%22%20data-name%3D%22Group%207310%22%20transform%3D%22translate(986.27%2017.948)%22%3E%3Cpath%20id%3D%22Path_11783%22%20data-name%3D%22Path%2011783%22%20d%3D%22M472.244%2C360.43c-.194%2C0-.359-.008-.58-.008-.005.053-.005.121-.005.161v.989a3.248%2C3.248%2C0%2C0%2C0%2C.013.372h-.364c.013-.126.019-.453.019-.622v-.508c0-.1%2C0-.253-.008-.392-.218%2C0-.4%2C0-.588.008.008-.086.008-.211.008-.307.239.007.468.011.753.011s.532%2C0%2C.771-.011A2.184%2C2.184%2C0%2C0%2C0%2C472.244%2C360.43Z%22%20transform%3D%22translate(-470.731%20-360.073)%22%2F%3E%3Cpath%20id%3D%22Path_11784%22%20data-name%3D%22Path%2011784%22%20d%3D%22M477.408%2C361.875c-.005-.074-.032-.292-.048-.394l-.1-.7c-.122.265-.447.989-.492%2C1.089l-.122.025c-.04-.094-.362-.81-.489-1.1l-.1.693c-.013.1-.043.439-.037.37h-.34c.032-.133.085-.457.112-.622l.08-.574c.024-.165.066-.516.077-.65l.128-.027.178.384.46.985.457-.978.168-.383h.128c.021.15.064.5.085.669l.082.572c.024.172.061.379.109.625Z%22%20transform%3D%22translate(-473.942%20-359.981)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.ppn-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22black%22%20width%3D%2260.431%22%20height%3D%2212.543%22%20viewBox%3D%220%200%2060.431%2012.543%22%3E%3Cg%20id%3D%22Group_136%22%20data-name%3D%22Group%20136%22%20transform%3D%22translate(-2121%201030.159)%22%3E%3Cpath%20id%3D%22Path_204%22%20data-name%3D%22Path%20204%22%20d%3D%22M2166.519-1029.72a1.7%2C1.7%2C0%2C0%2C0-1.122-.35h-.359a1.683%2C1.683%2C0%2C0%2C0-1.1.359%2C1.616%2C1.616%2C0%2C0%2C0-.44%2C1.31v5.743a1.615%2C1.615%2C0%2C0%2C0%2C.44%2C1.311%2C1.744%2C1.744%2C0%2C0%2C0%2C1.139.357h.358a1.589%2C1.589%2C0%2C0%2C0%2C1.087-.367%2C1.661%2C1.661%2C0%2C0%2C0%2C.422-1.3v-5.743A1.655%2C1.655%2C0%2C0%2C0%2C2166.519-1029.72Z%22%2F%3E%3Cpath%20id%3D%22Path_205%22%20data-name%3D%22Path%20205%22%20d%3D%22M2176.393-1029.1a2.659%2C2.659%2C0%2C0%2C0-.978-.772%2C3.361%2C3.361%2C0%2C0%2C0-1.462-.287%2C3.137%2C3.137%2C0%2C0%2C0-1.768.457%2C4.022%2C4.022%2C0%2C0%2C0-1.158%2C1.176%2C2.426%2C2.426%2C0%2C0%2C0-.332-.745%2C1.792%2C1.792%2C0%2C0%2C0-.475-.476%2C1.774%2C1.774%2C0%2C0%2C0-.565-.251%2C2.654%2C2.654%2C0%2C0%2C0-.6-.072%2C2.587%2C2.587%2C0%2C0%2C0-.924.153c-.268.1-.4.182-.4.242v7.017a1.626%2C1.626%2C0%2C0%2C0%2C.438%2C1.311%2C1.724%2C1.724%2C0%2C0%2C0%2C1.122.357h.36a1.656%2C1.656%2C0%2C0%2C0%2C1.095-.357%2C1.645%2C1.645%2C0%2C0%2C0%2C.43-1.311v-3.984a1.635%2C1.635%2C0%2C0%2C1%2C.539-.511%2C1.525%2C1.525%2C0%2C0%2C1%2C.808-.207%2C1.06%2C1.06%2C0%2C0%2C1%2C.843.351%2C1.41%2C1.41%2C0%2C0%2C1%2C.3.959v3.392a1.619%2C1.619%2C0%2C0%2C0%2C.441%2C1.311%2C1.743%2C1.743%2C0%2C0%2C0%2C1.139.357h.341a1.615%2C1.615%2C0%2C0%2C0%2C1.1-.367%2C1.661%2C1.661%2C0%2C0%2C0%2C.422-1.3v-3.984a5.1%2C5.1%2C0%2C0%2C0-.172-1.337A3.121%2C3.121%2C0%2C0%2C0%2C2176.393-1029.1Z%22%2F%3E%3Cpath%20id%3D%22Path_206%22%20data-name%3D%22Path%20206%22%20d%3D%22M2179.509-1024.718a1.922%2C1.922%2C0%2C0%2C0-1.921%2C1.922%2C1.921%2C1.921%2C0%2C0%2C0%2C1.921%2C1.922%2C1.921%2C1.921%2C0%2C0%2C0%2C1.922-1.922A1.921%2C1.921%2C0%2C0%2C0%2C2179.509-1024.718Z%22%2F%3E%3Cpath%20id%3D%22Path_207%22%20data-name%3D%22Path%20207%22%20d%3D%22M2140.068-1028.876a4.34%2C4.34%2C0%2C0%2C0-1.525-.952%2C5.662%2C5.662%2C0%2C0%2C0-1.983-.331%2C5.81%2C5.81%2C0%2C0%2C0-2%2C.331%2C4.5%2C4.5%2C0%2C0%2C0-1.553.942%2C4.151%2C4.151%2C0%2C0%2C0-1%2C1.472%2C5.006%2C5.006%2C0%2C0%2C0-.35%2C1.9%2C5.264%2C5.264%2C0%2C0%2C0%2C.339%2C1.938%2C4.175%2C4.175%2C0%2C0%2C0%2C.971%2C1.472%2C4.268%2C4.268%2C0%2C0%2C0%2C1.525.943%2C5.794%2C5.794%2C0%2C0%2C0%2C2.011.331%2C5.792%2C5.792%2C0%2C0%2C0%2C2.009-.331%2C4.34%2C4.34%2C0%2C0%2C0%2C1.533-.943%2C4.2%2C4.2%2C0%2C0%2C0%2C.989-1.472%2C5.076%2C5.076%2C0%2C0%2C0%2C.35-1.92%2C5.1%2C5.1%2C0%2C0%2C0-.342-1.911A4.186%2C4.186%2C0%2C0%2C0%2C2140.068-1028.876Zm-3.519%2C5.285a1.922%2C1.922%2C0%2C0%2C1-1.923-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923-1.923%2C1.92%2C1.92%2C0%2C0%2C1%2C1.92%2C1.923A1.92%2C1.92%2C0%2C0%2C1%2C2136.549-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_208%22%20data-name%3D%22Path%20208%22%20d%3D%22M2129.991-1028.911a3.644%2C3.644%2C0%2C0%2C0-1.291-.925%2C4.212%2C4.212%2C0%2C0%2C0-1.67-.323%2C3.019%2C3.019%2C0%2C0%2C0-1.686.466%2C2.587%2C2.587%2C0%2C0%2C0-1.025%2C1.239%2C2.144%2C2.144%2C0%2C0%2C0-.323-.789%2C1.984%2C1.984%2C0%2C0%2C0-.484-.494%2C1.625%2C1.625%2C0%2C0%2C0-.574-.261%2C2.775%2C2.775%2C0%2C0%2C0-.61-.072%2C2.6%2C2.6%2C0%2C0%2C0-.925.153c-.269.1-.4.182-.4.242v10.408a1.59%2C1.59%2C0%2C0%2C0%2C.439%2C1.3%2C1.747%2C1.747%2C0%2C0%2C0%2C1.121.349h.36a1.665%2C1.665%2C0%2C0%2C0%2C1.1-.358%2C1.613%2C1.613%2C0%2C0%2C0%2C.429-1.293v-3.1a2.653%2C2.653%2C0%2C0%2C0%2C1%2C1.114%2C2.868%2C2.868%2C0%2C0%2C0%2C1.588.43%2C3.93%2C3.93%2C0%2C0%2C0%2C1.67-.35%2C3.862%2C3.862%2C0%2C0%2C0%2C1.291-.968%2C4.307%2C4.307%2C0%2C0%2C0%2C.825-1.481%2C5.942%2C5.942%2C0%2C0%2C0%2C.287-1.885%2C6.108%2C6.108%2C0%2C0%2C0-.287-1.937A4.094%2C4.094%2C0%2C0%2C0%2C2129.991-1028.911Zm-3.743%2C5.32a1.922%2C1.922%2C0%2C0%2C1-1.921-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.921-1.923%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923%2C1.923A1.923%2C1.923%2C0%2C0%2C1%2C2126.248-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_209%22%20data-name%3D%22Path%20209%22%20d%3D%22M2151.022-1028.911a3.622%2C3.622%2C0%2C0%2C0-1.292-.925%2C4.2%2C4.2%2C0%2C0%2C0-1.669-.323%2C3.031%2C3.031%2C0%2C0%2C0-1.688.466%2C2.6%2C2.6%2C0%2C0%2C0-1.022%2C1.239%2C2.14%2C2.14%2C0%2C0%2C0-.323-.789%2C1.984%2C1.984%2C0%2C0%2C0-.484-.494%2C1.638%2C1.638%2C0%2C0%2C0-.575-.261%2C2.764%2C2.764%2C0%2C0%2C0-.609-.072%2C2.6%2C2.6%2C0%2C0%2C0-.925.153c-.269.1-.4.182-.4.242v10.408a1.593%2C1.593%2C0%2C0%2C0%2C.438%2C1.3%2C1.749%2C1.749%2C0%2C0%2C0%2C1.123.349h.358a1.648%2C1.648%2C0%2C0%2C0%2C1.094-.358%2C1.606%2C1.606%2C0%2C0%2C0%2C.431-1.293v-3.1a2.675%2C2.675%2C0%2C0%2C0%2C1%2C1.114%2C2.878%2C2.878%2C0%2C0%2C0%2C1.588.43%2C3.915%2C3.915%2C0%2C0%2C0%2C1.669-.35%2C3.837%2C3.837%2C0%2C0%2C0%2C1.292-.968%2C4.333%2C4.333%2C0%2C0%2C0%2C.828-1.481%2C6%2C6%2C0%2C0%2C0%2C.286-1.885%2C6.172%2C6.172%2C0%2C0%2C0-.286-1.937A4.118%2C4.118%2C0%2C0%2C0%2C2151.022-1028.911Zm-3.742%2C5.32a1.921%2C1.921%2C0%2C0%2C1-1.921-1.921%2C1.921%2C1.921%2C0%2C0%2C1%2C1.921-1.923%2C1.924%2C1.924%2C0%2C0%2C1%2C1.923%2C1.923A1.924%2C1.924%2C0%2C0%2C1%2C2147.28-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_210%22%20data-name%3D%22Path%20210%22%20d%3D%22M2161.739-1028.911a3.629%2C3.629%2C0%2C0%2C0-1.291-.925%2C4.215%2C4.215%2C0%2C0%2C0-1.672-.323%2C3.019%2C3.019%2C0%2C0%2C0-1.684.466%2C2.578%2C2.578%2C0%2C0%2C0-1.023%2C1.239%2C2.14%2C2.14%2C0%2C0%2C0-.325-.789%2C1.96%2C1.96%2C0%2C0%2C0-.483-.494%2C1.633%2C1.633%2C0%2C0%2C0-.574-.261%2C2.784%2C2.784%2C0%2C0%2C0-.611-.072%2C2.59%2C2.59%2C0%2C0%2C0-.923.153c-.27.1-.4.182-.4.242v10.408a1.593%2C1.593%2C0%2C0%2C0%2C.438%2C1.3%2C1.752%2C1.752%2C0%2C0%2C0%2C1.124.349h.358a1.659%2C1.659%2C0%2C0%2C0%2C1.1-.358%2C1.619%2C1.619%2C0%2C0%2C0%2C.429-1.293v-3.1a2.66%2C2.66%2C0%2C0%2C0%2C1%2C1.114%2C2.865%2C2.865%2C0%2C0%2C0%2C1.585.43%2C3.933%2C3.933%2C0%2C0%2C0%2C1.672-.35%2C3.845%2C3.845%2C0%2C0%2C0%2C1.291-.968%2C4.3%2C4.3%2C0%2C0%2C0%2C.825-1.481%2C5.887%2C5.887%2C0%2C0%2C0%2C.288-1.885%2C6.053%2C6.053%2C0%2C0%2C0-.288-1.937A4.083%2C4.083%2C0%2C0%2C0%2C2161.739-1028.911Zm-3.742%2C5.32a1.922%2C1.922%2C0%2C0%2C1-1.921-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.921-1.923%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923%2C1.923A1.923%2C1.923%2C0%2C0%2C1%2C2158-1023.591Z%22%2F%3E%3Cg%20id%3D%22Group_135%22%20data-name%3D%22Group%20135%22%3E%3Cpath%20id%3D%22Path_211%22%20data-name%3D%22Path%20211%22%20d%3D%22M2178.55-1029.195a.937.937%2C0%2C0%2C1%2C.96-.964.919.919%2C0%2C0%2C1%2C.961.956.94.94%2C0%2C0%2C1-.962.967A.92.92%2C0%2C0%2C1%2C2178.55-1029.195Zm1.8%2C0a.827.827%2C0%2C0%2C0-.845-.859.814.814%2C0%2C0%2C0-.842.861.821.821%2C0%2C0%2C0%2C.845.856A.815.815%2C0%2C0%2C0%2C2180.354-1029.2Zm-.791.086.344.352c.006.011-.023.054-.07.054a.118.118%2C0%2C0%2C1-.091-.046l-.325-.351h-.126v.337a.054.054%2C0%2C0%2C1-.057.06h-.021c-.035%2C0-.054-.025-.054-.066v-.853a.07.07%2C0%2C0%2C1%2C.071-.078h.3c.247%2C0%2C.383.1.383.3C2179.917-1029.228%2C2179.8-1029.116%2C2179.563-1029.113Zm-.027-.1c.165%2C0%2C.25-.073.25-.194s-.087-.191-.256-.191h-.238v.385Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.kii-font.kii-font-color-white.itw-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20width%3D%2294.642%22%20height%3D%2212.081%22%20viewBox%3D%220%200%2094.642%2012.081%22%3E%3Cg%20id%3D%22Group_7848%22%20data-name%3D%22Group%207848%22%20transform%3D%22translate(-895.435%20-14.46)%22%3E%3Cg%20id%3D%22Group_7309%22%20data-name%3D%22Group%207309%22%20transform%3D%22translate(895.435%2014.46)%22%3E%3Cpath%20id%3D%22Path_11770%22%20data-name%3D%22Path%2011770%22%20d%3D%22M211.1%2C361.868c.715-.133.915-.467.915-1.879v-4.951c0-1.064-.3-1.329-.915-1.48h4.436c-.747.166-.913.483-.913%2C1.895v4.952c0%2C1.046.25%2C1.329.913%2C1.462Zm2.21-11.8a1.329%2C1.329%2C0%2C0%2C1%2C1.347%2C1.279%2C1.341%2C1.341%2C0%2C0%2C1-2.676%2C0A1.325%2C1.325%2C0%2C0%2C1%2C213.31%2C350.069Z%22%20transform%3D%22translate(-211.1%20-350.069)%22%2F%3E%3Cpath%20id%3D%22Path_11771%22%20data-name%3D%22Path%2011771%22%20d%3D%22M226.536%2C368.109c.73-.133.913-.465.913-1.945V361.2c0-1-.3-1.244-.913-1.4h3.522v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.416-.116.666-.4.666-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.565-2.475-1.645-2.475a1.77%2C1.77%2C0%2C0%2C0-1.064.348%2C2.882%2C2.882%2C0%2C0%2C1%2C2.458-1.146c1.746%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-221.103%20-356.31)%22%2F%3E%3Cpath%20id%3D%22Path_11772%22%20data-name%3D%22Path%2011772%22%20d%3D%22M258.4%2C356.546c0-1-.283-1.246-.915-1.4h.915l2.608-2.626v2.626H263.8v.421h-2.792v5.778a2.689%2C2.689%2C0%2C0%2C0%2C.665%2C2.191c-2.16-.016-3.273-1.561-3.273-3.9Z%22%20transform%3D%22translate(-241.157%20-351.66)%22%2F%3E%3Cpath%20id%3D%22Path_11773%22%20data-name%3D%22Path%2011773%22%20d%3D%22M302.61%2C368.292c.715-.133.915-.481.915-1.961v-4.886c0-1.08-.3-1.314-.915-1.462h3.522v6.831c0%2C1.064.267%2C1.345.916%2C1.478Zm6.247-8.243a1.2%2C1.2%2C0%2C1%2C1-1.262%2C1.2A1.239%2C1.239%2C0%2C0%2C1%2C308.857%2C360.049Z%22%20transform%3D%22translate(-270.401%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11774%22%20data-name%3D%22Path%2011774%22%20d%3D%22M326.853%2C361.412c-.35-1.064-.749-1.28-1.429-1.429h4.387c-.465.133-.665.366-.332%2C1.263.066.133%2C1.3%2C3.64%2C1.363%2C3.789l-1.347%2C3.49Zm4.569-1.429h3.425c-.417.117-.649.366-.25%2C1.345l1.345%2C3.707-1.345%2C3.473Zm7.627%2C0a2.406%2C2.406%2C0%2C0%2C0-1.928%2C1.7c.384-1.064.2-1.529-.366-1.7Z%22%20transform%3D%22translate(-285.185%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11775%22%20data-name%3D%22Path%2011775%22%20d%3D%22M390.045%2C361.262a1.725%2C1.725%2C0%2C0%2C0-1.4-1.279h4.487c-.483.133-.646.383-.3%2C1.247l.2.564%2C1.329%2C3.523L393%2C368.574Zm7.594-1.279c-1%2C.233-1.478.614-2.061%2C1.944.516-1.329.316-1.711-.448-1.944Z%22%20transform%3D%22translate(-326.155%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11776%22%20data-name%3D%22Path%2011776%22%20d%3D%22M440.9%2C368.109c.731-.133.915-.465.915-1.945V361.2c0-1-.3-1.244-.915-1.4h3.523v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.415-.116.665-.4.665-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.566-2.475-1.646-2.475a1.773%2C1.773%2C0%2C0%2C0-1.064.348%2C2.889%2C2.889%2C0%2C0%2C1%2C2.459-1.146c1.747%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-360.012%20-356.31)%22%2F%3E%3Cg%20id%3D%22Group_7306%22%20data-name%3D%22Group%207306%22%20transform%3D%22translate(53.557%203.406)%22%3E%3Cg%20id%3D%22Group_7304%22%20data-name%3D%22Group%207304%22%3E%3Cpath%20id%3D%22Path_11777%22%20data-name%3D%22Path%2011777%22%20d%3D%22M365.917%2C365.248c0%2C1.711.747%2C2.907%2C1.877%2C2.957-2.491-.032-4.536-1.512-4.536-4.22%2C0-2.725%2C2.045-4.205%2C4.553-4.238-1.113.066-1.894%2C1.279-1.894%2C2.975Z%22%20transform%3D%22translate(-363.258%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7305%22%20data-name%3D%22Group%207305%22%20transform%3D%22translate(4.519)%22%3E%3Cpath%20id%3D%22Path_11778%22%20data-name%3D%22Path%2011778%22%20d%3D%22M378.008%2C362.722c0-1.679-.766-2.909-1.9-2.975%2C2.51.051%2C4.555%2C1.529%2C4.555%2C4.221%2C0%2C2.725-2.061%2C4.22-4.571%2C4.237%2C1.146-.049%2C1.912-1.228%2C1.912-2.957Z%22%20transform%3D%22translate(-376.096%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7307%22%20data-name%3D%22Group%207307%22%20transform%3D%22translate(71.35%203.406)%22%3E%3Cpath%20id%3D%22Path_11779%22%20data-name%3D%22Path%2011779%22%20d%3D%22M416.452%2C365.264c0%2C1.728.763%2C2.941%2C2.475%2C2.941a4.834%2C4.834%2C0%2C0%2C1-.5.017c-2.757%2C0-4.618-1.7-4.618-4.237a4.167%2C4.167%2C0%2C0%2C1%2C4.438-4.238c-1.329.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-413.809%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11780%22%20data-name%3D%22Path%2011780%22%20d%3D%22M426.815%2C364.134c1.231-.449%2C1.462-.814%2C1.431-1.728-.066-1.412-.614-2.576-1.827-2.659%2C2.707.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-421.98%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7308%22%20data-name%3D%22Group%207308%22%20transform%3D%22translate(22.527%203.406)%22%3E%3Cpath%20id%3D%22Path_11781%22%20data-name%3D%22Path%2011781%22%20d%3D%22M277.745%2C365.264c0%2C1.728.762%2C2.941%2C2.474%2C2.941a4.808%2C4.808%2C0%2C0%2C1-.5.017c-2.759%2C0-4.618-1.7-4.618-4.237a4.166%2C4.166%2C0%2C0%2C1%2C4.438-4.238c-1.332.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-275.102%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11782%22%20data-name%3D%22Path%2011782%22%20d%3D%22M288.11%2C364.134c1.23-.449%2C1.462-.814%2C1.429-1.728-.066-1.412-.616-2.576-1.828-2.659%2C2.709.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-283.272%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7310%22%20data-name%3D%22Group%207310%22%20transform%3D%22translate(986.27%2017.948)%22%3E%3Cpath%20id%3D%22Path_11783%22%20data-name%3D%22Path%2011783%22%20d%3D%22M472.244%2C360.43c-.194%2C0-.359-.008-.58-.008-.005.053-.005.121-.005.161v.989a3.248%2C3.248%2C0%2C0%2C0%2C.013.372h-.364c.013-.126.019-.453.019-.622v-.508c0-.1%2C0-.253-.008-.392-.218%2C0-.4%2C0-.588.008.008-.086.008-.211.008-.307.239.007.468.011.753.011s.532%2C0%2C.771-.011A2.184%2C2.184%2C0%2C0%2C0%2C472.244%2C360.43Z%22%20transform%3D%22translate(-470.731%20-360.073)%22%2F%3E%3Cpath%20id%3D%22Path_11784%22%20data-name%3D%22Path%2011784%22%20d%3D%22M477.408%2C361.875c-.005-.074-.032-.292-.048-.394l-.1-.7c-.122.265-.447.989-.492%2C1.089l-.122.025c-.04-.094-.362-.81-.489-1.1l-.1.693c-.013.1-.043.439-.037.37h-.34c.032-.133.085-.457.112-.622l.08-.574c.024-.165.066-.516.077-.65l.128-.027.178.384.46.985.457-.978.168-.383h.128c.021.15.064.5.085.669l.082.572c.024.172.061.379.109.625Z%22%20transform%3D%22translate(-473.942%20-359.981)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-white.kii-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20id%3D%22Group_7625%22%20data-name%3D%22Group%207625%22%20width%3D%22273.869%22%20height%3D%2222%22%20viewBox%3D%220%200%20273.869%2022%22%3E%3Cg%20id%3D%22Group_7347%22%20data-name%3D%22Group%207347%22%20transform%3D%22translate(0.888%200.026)%22%3E%3Cpath%20id%3D%22Path_11869%22%20data-name%3D%22Path%2011869%22%20d%3D%22M689.805%2C111.928a10.839%2C10.839%2C0%2C0%2C0-19.915%2C0Z%22%20transform%3D%22translate(-669.89%20-105.371)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7348%22%20data-name%3D%22Group%207348%22%20transform%3D%22translate(0.899%2015.14)%22%3E%3Cpath%20id%3D%22Path_11870%22%20data-name%3D%22Path%2011870%22%20d%3D%22M689.82%2C124.2a10.84%2C10.84%2C0%2C0%2C1-19.916%2C0Z%22%20transform%3D%22translate(-669.904%20-124.202)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7349%22%20data-name%3D%22Group%207349%22%20transform%3D%22translate(0.362%207.826)%22%3E%3Cpath%20id%3D%22Path_11871%22%20data-name%3D%22Path%2011871%22%20d%3D%22M690.205%2C115.369a1.714%2C1.714%2C0%2C0%2C0-.079-.28H669.312a1.516%2C1.516%2C0%2C0%2C0-.078.28h5.909v.789h8.951v-.789Z%22%20transform%3D%22translate(-669.234%20-115.089)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7350%22%20data-name%3D%22Group%207350%22%20transform%3D%22translate(0.093%209.281)%22%3E%3Cpath%20id%3D%22Path_11872%22%20data-name%3D%22Path%2011872%22%20d%3D%22M690.381%2C116.9H668.93a1.438%2C1.438%2C0%2C0%2C0-.029.279h6.176v.789h8.953v-.789h6.381a1.368%2C1.368%2C0%2C0%2C0-.03-.279%22%20transform%3D%22translate(-668.9%20-116.902)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7351%22%20data-name%3D%22Group%207351%22%20transform%3D%22translate(0%2010.734)%22%3E%3Cpath%20id%3D%22Path_11873%22%20data-name%3D%22Path%2011873%22%20d%3D%22M690.46%2C118.713H668.793a1.389%2C1.389%2C0%2C0%2C0-.006.278l.013%2C0h6.254v.787h8.952v-.787h6.46a1.285%2C1.285%2C0%2C0%2C0-.006-.28%22%20transform%3D%22translate(-668.784%20-118.713)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7352%22%20data-name%3D%22Group%207352%22%20transform%3D%22translate(0.104%2012.291)%22%3E%3Cpath%20id%3D%22Path_11874%22%20data-name%3D%22Path%2011874%22%20d%3D%22M668.955%2C120.931a1.282%2C1.282%2C0%2C0%2C1-.042-.278H690.4a1.256%2C1.256%2C0%2C0%2C1-.042.278h-21.4Z%22%20transform%3D%22translate(-668.913%20-120.653)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7353%22%20data-name%3D%22Group%207353%22%20transform%3D%22translate(0.402%2013.3)%22%3E%3Cpath%20id%3D%22Path_11875%22%20data-name%3D%22Path%2011875%22%20d%3D%22M690.178%2C122.355h-6.073v-.445h-8.953v.445h-5.867v0a1.711%2C1.711%2C0%2C0%2C0%2C.076.272l0%2C0h5.788v.445h8.953v-.445h6a1.9%2C1.9%2C0%2C0%2C0%2C.078-.278%22%20transform%3D%22translate(-669.285%20-121.91)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7354%22%20data-name%3D%22Group%207354%22%20transform%3D%22translate(31.369%200)%22%3E%3Cpath%20id%3D%22Path_11876%22%20data-name%3D%22Path%2011876%22%20d%3D%22M707.869%2C105.56h2.813v10.425l10.656-10.425h4.035l-9.1%2C8.6%2C9.289%2C12.7h-3.775l-7.632-10.7-3.471%2C3.279v7.424h-2.813Z%22%20transform%3D%22translate(-707.869%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11877%22%20data-name%3D%22Path%2011877%22%20d%3D%22M732.114%2C105.56h2.654v2.957h-2.654Zm0%2C5.843h2.654v15.457h-2.654Z%22%20transform%3D%22translate(-712.656%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11878%22%20data-name%3D%22Path%2011878%22%20d%3D%22M739.594%2C112.664h2.581v2.2a8.682%2C8.682%2C0%2C0%2C1%2C1.681-1.668%2C5.064%2C5.064%2C0%2C0%2C1%2C2.929-.884%2C4.606%2C4.606%2C0%2C0%2C1%2C2.986.914%2C4.767%2C4.767%2C0%2C0%2C1%2C1.161%2C1.537%2C5.632%2C5.632%2C0%2C0%2C1%2C2.045-1.849%2C5.693%2C5.693%2C0%2C0%2C1%2C2.638-.6q3.132%2C0%2C4.263%2C2.262a7.389%2C7.389%2C0%2C0%2C1%2C.608%2C3.277v10.338h-2.711V117.406a2.512%2C2.512%2C0%2C0%2C0-.776-2.132%2C3.072%2C3.072%2C0%2C0%2C0-1.892-.58%2C3.755%2C3.755%2C0%2C0%2C0-2.646%2C1.03%2C4.52%2C4.52%2C0%2C0%2C0-1.109%2C3.437v9.033H748.7V118.058a5.27%2C5.27%2C0%2C0%2C0-.377-2.306%2C2.3%2C2.3%2C0%2C0%2C0-2.219-1.087%2C3.828%2C3.828%2C0%2C0%2C0-2.689%2C1.145q-1.21%2C1.146-1.21%2C4.147v8.236h-2.61Z%22%20transform%3D%22translate(-714.133%20-106.716)%22%2F%3E%3Cpath%20id%3D%22Path_11879%22%20data-name%3D%22Path%2011879%22%20d%3D%22M769.4%2C105.469h2.538V113.2a5.72%2C5.72%2C0%2C0%2C1%2C4.644-2.291%2C6.083%2C6.083%2C0%2C0%2C1%2C4.722%2C1.994q1.813%2C1.994%2C1.813%2C5.88a10.056%2C10.056%2C0%2C0%2C1-1.79%2C6.119%2C5.815%2C5.815%2C0%2C0%2C1-4.964%2C2.436%2C5.094%2C5.094%2C0%2C0%2C1-3-.856%2C7.171%2C7.171%2C0%2C0%2C1-1.558-1.624v1.986H769.4Zm9.98%2C17.878a8.261%2C8.261%2C0%2C0%2C0%2C1.054-4.437%2C7.267%2C7.267%2C0%2C0%2C0-1.054-4.06%2C3.476%2C3.476%2C0%2C0%2C0-3.106-1.609%2C4.338%2C4.338%2C0%2C0%2C0-3.135%2C1.319q-1.347%2C1.319-1.346%2C4.35a9.593%2C9.593%2C0%2C0%2C0%2C.552%2C3.552%2C3.82%2C3.82%2C0%2C0%2C0%2C3.856%2C2.567A3.5%2C3.5%2C0%2C0%2C0%2C779.383%2C123.347Z%22%20transform%3D%22translate(-720.018%20-105.364)%22%2F%3E%3Cpath%20id%3D%22Path_11880%22%20data-name%3D%22Path%2011880%22%20d%3D%22M797.657%2C118.788a1.419%2C1.419%2C0%2C0%2C0%2C1.2-.752%2C2.332%2C2.332%2C0%2C0%2C0%2C.174-1%2C2.133%2C2.133%2C0%2C0%2C0-.948-1.943%2C5.058%2C5.058%2C0%2C0%2C0-2.713-.6%2C3.435%2C3.435%2C0%2C0%2C0-2.894%2C1.108%2C3.657%2C3.657%2C0%2C0%2C0-.623%2C1.822h-2.436q.073-2.88%2C1.86-4.006a7.62%2C7.62%2C0%2C0%2C1%2C4.149-1.128%2C8.436%2C8.436%2C0%2C0%2C1%2C4.446%2C1.044%2C3.542%2C3.542%2C0%2C0%2C1%2C1.7%2C3.248v8.947a1.139%2C1.139%2C0%2C0%2C0%2C.167.652.8.8%2C0%2C0%2C0%2C.7.246c.116%2C0%2C.246-.007.392-.022s.3-.036.464-.065v1.928a7.186%2C7.186%2C0%2C0%2C1-.928.217%2C6.647%2C6.647%2C0%2C0%2C1-.87.044%2C2.149%2C2.149%2C0%2C0%2C1-1.958-.957%2C3.719%2C3.719%2C0%2C0%2C1-.449-1.436%2C6.632%2C6.632%2C0%2C0%2C1-2.29%2C1.812%2C7.094%2C7.094%2C0%2C0%2C1-3.291.769%2C4.9%2C4.9%2C0%2C0%2C1-3.531-1.311%2C4.356%2C4.356%2C0%2C0%2C1-1.37-3.281%2C4.221%2C4.221%2C0%2C0%2C1%2C1.349-3.345%2C6.42%2C6.42%2C0%2C0%2C1%2C3.538-1.462Zm-5.5%2C7.051a3.065%2C3.065%2C0%2C0%2C0%2C1.957.651%2C5.96%2C5.96%2C0%2C0%2C0%2C2.668-.636%2C3.585%2C3.585%2C0%2C0%2C0%2C2.175-3.46v-2.1a4.431%2C4.431%2C0%2C0%2C1-1.229.509%2C10.409%2C10.409%2C0%2C0%2C1-1.477.291l-1.577.2a6.092%2C6.092%2C0%2C0%2C0-2.132.593%2C2.307%2C2.307%2C0%2C0%2C0-1.211%2C2.17A2.141%2C2.141%2C0%2C0%2C0%2C792.162%2C125.839Z%22%20transform%3D%22translate(-723.81%20-106.709)%22%2F%3E%3Cpath%20id%3D%22Path_11881%22%20data-name%3D%22Path%2011881%22%20d%3D%22M808.7%2C105.56h2.61v21.3H808.7Z%22%20transform%3D%22translate(-727.776%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11882%22%20data-name%3D%22Path%2011882%22%20d%3D%22M815.441%2C105.56h2.61v21.3h-2.61Z%22%20transform%3D%22translate(-729.107%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11883%22%20data-name%3D%22Path%2011883%22%20d%3D%22M825.3%2C107.915a1.513%2C1.513%2C0%2C1%2C1%2C.441-1.071A1.456%2C1.456%2C0%2C0%2C1%2C825.3%2C107.915Zm-1.987-1.989a1.259%2C1.259%2C0%2C0%2C0-.378.919%2C1.272%2C1.272%2C0%2C0%2C0%2C.376.925%2C1.295%2C1.295%2C0%2C0%2C0%2C1.838%2C0%2C1.312%2C1.312%2C0%2C0%2C0%2C0-1.844%2C1.295%2C1.295%2C0%2C0%2C0-1.836%2C0Zm.889.084a1.278%2C1.278%2C0%2C0%2C1%2C.452.059.411.411%2C0%2C0%2C1%2C.257.421.364.364%2C0%2C0%2C1-.161.327.638.638%2C0%2C0%2C1-.24.08.4.4%2C0%2C0%2C1%2C.285.162.459.459%2C0%2C0%2C1%2C.09.257v.121c0%2C.038%2C0%2C.079%2C0%2C.123a.277.277%2C0%2C0%2C0%2C.015.087l.01.02h-.273l0-.016%2C0-.018-.006-.054v-.131a.4.4%2C0%2C0%2C0-.156-.379.7.7%2C0%2C0%2C0-.326-.054h-.231v.652h-.291v-1.657Zm.315.261a.762.762%2C0%2C0%2C0-.353-.061h-.25v.6h.264a.785.785%2C0%2C0%2C0%2C.279-.037.3.3%2C0%2C0%2C0%2C.061-.5Z%22%20transform%3D%22translate(-730.545%20-105.338)%22%2F%3E%3Cpath%20id%3D%22Path_11884%22%20data-name%3D%22Path%2011884%22%20d%3D%22M830.313%2C126.839v-21.38h2.02v21.38Z%22%20transform%3D%22translate(-732.043%20-105.362)%22%2F%3E%3Cpath%20id%3D%22Path_11885%22%20data-name%3D%22Path%2011885%22%20d%3D%22M838.2%2C128.213h-1.782V112.831H838.2v2.138a11.3%2C11.3%2C0%2C0%2C1%2C2.213-1.841%2C5.087%2C5.087%2C0%2C0%2C1%2C2.746-.713%2C7.03%2C7.03%2C0%2C0%2C1%2C2.643.49%2C4.52%2C4.52%2C0%2C0%2C1%2C2.049%2C1.708%2C3.841%2C3.841%2C0%2C0%2C1%2C.667%2C1.708%2C15.324%2C15.324%2C0%2C0%2C1%2C.1%2C1.826v10.067h-1.781V118.176a4.588%2C4.588%2C0%2C0%2C0-.92-3.118%2C3.911%2C3.911%2C0%2C0%2C0-3.059-1.039%2C4.351%2C4.351%2C0%2C0%2C0-1.514.253%2C4.772%2C4.772%2C0%2C0%2C0-1.233.668%2C4.468%2C4.468%2C0%2C0%2C0-.935.95%2C4.393%2C4.393%2C0%2C0%2C0-.594%2C1.128%2C5.633%2C5.633%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-733.249%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11886%22%20data-name%3D%22Path%2011886%22%20d%3D%22M860.536%2C127.322q-.327.059-.861.208a4.449%2C4.449%2C0%2C0%2C1-1.189.148%2C2.831%2C2.831%2C0%2C0%2C1-2.034-.668%2C3.254%2C3.254%2C0%2C0%2C1-.7-2.391V113.366h-2.168v-1.485h2.168v-4.276h1.782v4.276h2.88v1.485h-2.88v10.542q0%2C.565.029.98a1.624%2C1.624%2C0%2C0%2C0%2C.178.683.846.846%2C0%2C0%2C0%2C.46.386%2C2.549%2C2.549%2C0%2C0%2C0%2C.876.119%2C4.533%2C4.533%2C0%2C0%2C0%2C.727-.059q.371-.059.728-.148Z%22%20transform%3D%22translate(-736.638%20-105.786)%22%2F%3E%3Cpath%20id%3D%22Path_11887%22%20data-name%3D%22Path%2011887%22%20d%3D%22M865.219%2C120.937a8.31%2C8.31%2C0%2C0%2C0%2C.326%2C2.361%2C5.684%2C5.684%2C0%2C0%2C0%2C.965%2C1.93%2C4.665%2C4.665%2C0%2C0%2C0%2C1.618%2C1.307%2C4.981%2C4.981%2C0%2C0%2C0%2C2.257.49%2C4.908%2C4.908%2C0%2C0%2C0%2C3-.921%2C4.437%2C4.437%2C0%2C0%2C0%2C1.664-2.613h1.989a9.556%2C9.556%2C0%2C0%2C1-.861%2C2.034%2C6.252%2C6.252%2C0%2C0%2C1-1.336%2C1.634%2C5.765%2C5.765%2C0%2C0%2C1-1.9%2C1.083%2C7.7%2C7.7%2C0%2C0%2C1-2.555.386%2C7.458%2C7.458%2C0%2C0%2C1-3.177-.624%2C5.994%2C5.994%2C0%2C0%2C1-2.2-1.708%2C7.207%2C7.207%2C0%2C0%2C1-1.277-2.553%2C11.564%2C11.564%2C0%2C0%2C1-.416-3.163%2C10.055%2C10.055%2C0%2C0%2C1%2C.49-3.177%2C8.088%2C8.088%2C0%2C0%2C1%2C1.4-2.6%2C6.491%2C6.491%2C0%2C0%2C1%2C2.213-1.753%2C6.687%2C6.687%2C0%2C0%2C1%2C2.969-.638%2C6.132%2C6.132%2C0%2C0%2C1%2C4.989%2C2.183q1.812%2C2.183%2C1.782%2C6.339Zm10.036-1.485a7.084%2C7.084%2C0%2C0%2C0-.311-2.123%2C4.974%2C4.974%2C0%2C0%2C0-.921-1.722%2C4.388%2C4.388%2C0%2C0%2C0-1.53-1.158%2C4.919%2C4.919%2C0%2C0%2C0-2.108-.431%2C4.686%2C4.686%2C0%2C0%2C0-2.093.445%2C4.811%2C4.811%2C0%2C0%2C0-1.544%2C1.188%2C5.991%2C5.991%2C0%2C0%2C0-1.025%2C1.722%2C7.93%2C7.93%2C0%2C0%2C0-.5%2C2.079Z%22%20transform%3D%22translate(-738.559%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11888%22%20data-name%3D%22Path%2011888%22%20d%3D%22M885.3%2C128.213h-1.781V112.831H885.3v2.88h.059a5.16%2C5.16%2C0%2C0%2C1%2C1.915-2.568%2C5.828%2C5.828%2C0%2C0%2C1%2C3.1-.728v1.93a5.212%2C5.212%2C0%2C0%2C0-2.494.475%2C4.113%2C4.113%2C0%2C0%2C0-1.559%2C1.366%2C5.388%2C5.388%2C0%2C0%2C0-.8%2C2.034%2C13.128%2C13.128%2C0%2C0%2C0-.223%2C2.45Z%22%20transform%3D%22translate(-742.548%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11889%22%20data-name%3D%22Path%2011889%22%20d%3D%22M896.032%2C128.213H894.25V112.831h1.782v2.138a11.287%2C11.287%2C0%2C0%2C1%2C2.213-1.841%2C5.086%2C5.086%2C0%2C0%2C1%2C2.746-.713%2C7.028%2C7.028%2C0%2C0%2C1%2C2.643.49%2C4.52%2C4.52%2C0%2C0%2C1%2C2.049%2C1.708%2C3.842%2C3.842%2C0%2C0%2C1%2C.668%2C1.708%2C15.375%2C15.375%2C0%2C0%2C1%2C.1%2C1.826v10.067h-1.782V118.176a4.588%2C4.588%2C0%2C0%2C0-.921-3.118%2C3.911%2C3.911%2C0%2C0%2C0-3.059-1.039%2C4.349%2C4.349%2C0%2C0%2C0-1.514.253%2C4.778%2C4.778%2C0%2C0%2C0-1.233.668%2C4.459%2C4.459%2C0%2C0%2C0-.935.95%2C4.392%2C4.392%2C0%2C0%2C0-.594%2C1.128%2C5.662%2C5.662%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-744.666%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11890%22%20data-name%3D%22Path%2011890%22%20d%3D%22M920.219%2C119.245q.5-.059%2C1.2-.178a4.49%2C4.49%2C0%2C0%2C0%2C1.143-.327.946.946%2C0%2C0%2C0%2C.55-.7%2C4.361%2C4.361%2C0%2C0%2C0%2C.1-.906%2C3.037%2C3.037%2C0%2C0%2C0-.877-2.242%2C4.089%2C4.089%2C0%2C0%2C0-2.955-.876%2C8.16%2C8.16%2C0%2C0%2C0-1.692.164%2C3.674%2C3.674%2C0%2C0%2C0-1.352.564%2C3.109%2C3.109%2C0%2C0%2C0-.95%2C1.069%2C4.528%2C4.528%2C0%2C0%2C0-.49%2C1.677h-1.811a5.512%2C5.512%2C0%2C0%2C1%2C.624-2.331%2C4.715%2C4.715%2C0%2C0%2C1%2C1.381-1.574%2C5.737%2C5.737%2C0%2C0%2C1%2C1.959-.89%2C9.593%2C9.593%2C0%2C0%2C1%2C2.36-.283%2C9.169%2C9.169%2C0%2C0%2C1%2C2.183.252%2C5.056%2C5.056%2C0%2C0%2C1%2C1.782.8%2C3.731%2C3.731%2C0%2C0%2C1%2C1.188%2C1.47A5.3%2C5.3%2C0%2C0%2C1%2C925%2C117.2v8.374q0%2C1.04.372%2C1.322t1.5-.134v1.4c-.139.04-.342.1-.609.178a2.78%2C2.78%2C0%2C0%2C1-.787.119%2C3.555%2C3.555%2C0%2C0%2C1-.8-.089%2C1.375%2C1.375%2C0%2C0%2C1-.712-.282%2C1.741%2C1.741%2C0%2C0%2C1-.431-.535%2C2.225%2C2.225%2C0%2C0%2C1-.222-.683%2C4.9%2C4.9%2C0%2C0%2C1-.059-.787%2C7.742%2C7.742%2C0%2C0%2C1-2.583%2C1.9%2C7.605%2C7.605%2C0%2C0%2C1-3.148.653%2C7.038%2C7.038%2C0%2C0%2C1-1.945-.267%2C4.7%2C4.7%2C0%2C0%2C1-1.648-.831%2C4.125%2C4.125%2C0%2C0%2C1-1.129-1.38%2C4.242%2C4.242%2C0%2C0%2C1-.415-1.945q0-3.92%2C5.375-4.632Zm3%2C.891a8.726%2C8.726%2C0%2C0%2C1-2.287.624q-1.158.149-2.317.238a6.534%2C6.534%2C0%2C0%2C0-3.191.921%2C2.64%2C2.64%2C0%2C0%2C0-1.143%2C2.346%2C2.53%2C2.53%2C0%2C0%2C0%2C.283%2C1.232%2C2.588%2C2.588%2C0%2C0%2C0%2C.741.862%2C3.161%2C3.161%2C0%2C0%2C0%2C1.069.5%2C4.761%2C4.761%2C0%2C0%2C0%2C1.233.163%2C8.086%2C8.086%2C0%2C0%2C0%2C2.078-.267%2C5.643%2C5.643%2C0%2C0%2C0%2C1.8-.816%2C4.2%2C4.2%2C0%2C0%2C0%2C1.262-1.4%2C4.036%2C4.036%2C0%2C0%2C0%2C.475-2Z%22%20transform%3D%22translate(-748.246%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11891%22%20data-name%3D%22Path%2011891%22%20d%3D%22M937.46%2C127.322q-.329.059-.861.208a4.451%2C4.451%2C0%2C0%2C1-1.188.148%2C2.83%2C2.83%2C0%2C0%2C1-2.034-.668%2C3.254%2C3.254%2C0%2C0%2C1-.7-2.391V113.366h-2.168v-1.485h2.168v-4.276h1.782v4.276h2.88v1.485h-2.88v10.542c0%2C.376.009.7.029.98a1.628%2C1.628%2C0%2C0%2C0%2C.177.683.848.848%2C0%2C0%2C0%2C.461.386%2C2.545%2C2.545%2C0%2C0%2C0%2C.876.119%2C4.542%2C4.542%2C0%2C0%2C0%2C.728-.059q.371-.059.728-.148Z%22%20transform%3D%22translate(-751.825%20-105.786)%22%2F%3E%3Cpath%20id%3D%22Path_11892%22%20data-name%3D%22Path%2011892%22%20d%3D%22M942.2%2C108.1v-2.643h1.961V108.1Zm.089%2C18.738V111.457h1.782v15.382Z%22%20transform%3D%22translate(-754.134%20-105.362)%22%2F%3E%3Cpath%20id%3D%22Path_11893%22%20data-name%3D%22Path%2011893%22%20d%3D%22M954.584%2C128.628a8.02%2C8.02%2C0%2C0%2C1-2.777-.535%2C6.215%2C6.215%2C0%2C0%2C1-2.257-1.514%2C7.27%2C7.27%2C0%2C0%2C1-1.529-2.524%2C10.1%2C10.1%2C0%2C0%2C1-.564-3.534%2C10.854%2C10.854%2C0%2C0%2C1%2C.446-3.162%2C7.466%2C7.466%2C0%2C0%2C1%2C1.336-2.569%2C6.356%2C6.356%2C0%2C0%2C1%2C2.227-1.738%2C7.171%2C7.171%2C0%2C0%2C1%2C3.118-.638%2C7.252%2C7.252%2C0%2C0%2C1%2C3.148.638%2C6.437%2C6.437%2C0%2C0%2C1%2C2.227%2C1.722%2C7.153%2C7.153%2C0%2C0%2C1%2C1.322%2C2.569%2C11.421%2C11.421%2C0%2C0%2C1%2C.43%2C3.177%2C10.293%2C10.293%2C0%2C0%2C1-.5%2C3.326%2C7.5%2C7.5%2C0%2C0%2C1-1.44%2C2.554%2C6.341%2C6.341%2C0%2C0%2C1-2.257%2C1.648A7.219%2C7.219%2C0%2C0%2C1%2C954.584%2C128.628Zm5.226-8.107a10.539%2C10.539%2C0%2C0%2C0-.3-2.554%2C6.074%2C6.074%2C0%2C0%2C0-.921-2.063%2C4.438%2C4.438%2C0%2C0%2C0-1.6-1.381%2C5.212%2C5.212%2C0%2C0%2C0-2.405-.5%2C4.88%2C4.88%2C0%2C0%2C0-2.391.55%2C4.663%2C4.663%2C0%2C0%2C0-1.618%2C1.455%2C6.4%2C6.4%2C0%2C0%2C0-.921%2C2.078%2C9.856%2C9.856%2C0%2C0%2C0-.3%2C2.421%2C9.622%2C9.622%2C0%2C0%2C0%2C.341%2C2.628%2C6.139%2C6.139%2C0%2C0%2C0%2C1%2C2.063%2C4.453%2C4.453%2C0%2C0%2C0%2C1.632%2C1.336%2C5.114%2C5.114%2C0%2C0%2C0%2C2.258.475%2C4.88%2C4.88%2C0%2C0%2C0%2C2.39-.549%2C4.62%2C4.62%2C0%2C0%2C0%2C1.619-1.47%2C6.609%2C6.609%2C0%2C0%2C0%2C.921-2.079A9.673%2C9.673%2C0%2C0%2C0%2C959.81%2C120.522Z%22%20transform%3D%22translate(-755.171%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11894%22%20data-name%3D%22Path%2011894%22%20d%3D%22M970.329%2C128.213h-1.782V112.831h1.782v2.138a11.312%2C11.312%2C0%2C0%2C1%2C2.212-1.841%2C5.091%2C5.091%2C0%2C0%2C1%2C2.747-.713%2C7.028%2C7.028%2C0%2C0%2C1%2C2.643.49%2C4.519%2C4.519%2C0%2C0%2C1%2C2.049%2C1.708%2C3.842%2C3.842%2C0%2C0%2C1%2C.668%2C1.708%2C15.4%2C15.4%2C0%2C0%2C1%2C.1%2C1.826v10.067H978.97V118.176a4.586%2C4.586%2C0%2C0%2C0-.921-3.118%2C3.91%2C3.91%2C0%2C0%2C0-3.058-1.039%2C4.358%2C4.358%2C0%2C0%2C0-1.515.253%2C4.782%2C4.782%2C0%2C0%2C0-1.232.668%2C4.465%2C4.465%2C0%2C0%2C0-.935.95%2C4.39%2C4.39%2C0%2C0%2C0-.594%2C1.128%2C5.614%2C5.614%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-759.335%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11895%22%20data-name%3D%22Path%2011895%22%20d%3D%22M994.516%2C119.245q.5-.059%2C1.2-.178a4.5%2C4.5%2C0%2C0%2C0%2C1.143-.327.945.945%2C0%2C0%2C0%2C.55-.7%2C4.34%2C4.34%2C0%2C0%2C0%2C.1-.906%2C3.04%2C3.04%2C0%2C0%2C0-.876-2.242%2C4.09%2C4.09%2C0%2C0%2C0-2.955-.876%2C8.163%2C8.163%2C0%2C0%2C0-1.692.164%2C3.674%2C3.674%2C0%2C0%2C0-1.351.564%2C3.108%2C3.108%2C0%2C0%2C0-.95%2C1.069%2C4.531%2C4.531%2C0%2C0%2C0-.49%2C1.677h-1.812a5.511%2C5.511%2C0%2C0%2C1%2C.625-2.331%2C4.728%2C4.728%2C0%2C0%2C1%2C1.38-1.574%2C5.749%2C5.749%2C0%2C0%2C1%2C1.96-.89%2C9.59%2C9.59%2C0%2C0%2C1%2C2.36-.283%2C9.168%2C9.168%2C0%2C0%2C1%2C2.183.252%2C5.059%2C5.059%2C0%2C0%2C1%2C1.782.8%2C3.735%2C3.735%2C0%2C0%2C1%2C1.188%2C1.47%2C5.3%2C5.3%2C0%2C0%2C1%2C.43%2C2.257v8.374q0%2C1.04.372%2C1.322t1.5-.134v1.4c-.138.04-.341.1-.608.178a2.787%2C2.787%2C0%2C0%2C1-.787.119%2C3.544%2C3.544%2C0%2C0%2C1-.8-.089%2C1.38%2C1.38%2C0%2C0%2C1-.713-.282%2C1.756%2C1.756%2C0%2C0%2C1-.43-.535%2C2.231%2C2.231%2C0%2C0%2C1-.222-.683%2C4.891%2C4.891%2C0%2C0%2C1-.06-.787%2C7.74%2C7.74%2C0%2C0%2C1-2.584%2C1.9%2C7.607%2C7.607%2C0%2C0%2C1-3.148.653%2C7.04%2C7.04%2C0%2C0%2C1-1.944-.267%2C4.692%2C4.692%2C0%2C0%2C1-1.648-.831%2C4.127%2C4.127%2C0%2C0%2C1-1.129-1.38%2C4.244%2C4.244%2C0%2C0%2C1-.415-1.945q0-3.92%2C5.375-4.632Zm3%2C.891a8.718%2C8.718%2C0%2C0%2C1-2.286.624q-1.158.149-2.317.238a6.535%2C6.535%2C0%2C0%2C0-3.192.921%2C2.64%2C2.64%2C0%2C0%2C0-1.143%2C2.346%2C2.538%2C2.538%2C0%2C0%2C0%2C.282%2C1.232%2C2.586%2C2.586%2C0%2C0%2C0%2C.742.862%2C3.15%2C3.15%2C0%2C0%2C0%2C1.069.5%2C4.761%2C4.761%2C0%2C0%2C0%2C1.232.163%2C8.089%2C8.089%2C0%2C0%2C0%2C2.078-.267%2C5.641%2C5.641%2C0%2C0%2C0%2C1.8-.816%2C4.2%2C4.2%2C0%2C0%2C0%2C1.262-1.4%2C4.037%2C4.037%2C0%2C0%2C0%2C.475-2Z%22%20transform%3D%22translate(-762.915%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11896%22%20data-name%3D%22Path%2011896%22%20d%3D%22M1007.8%2C126.839v-21.38h1.781v21.38Z%22%20transform%3D%22translate(-767.086%20-105.362)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-white.kii-logobrands {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22352%22%20height%3D%2257.271%22%20viewBox%3D%220%200%20352%2057.271%22%3E%3Cg%20id%3D%22Kimball_International_Logo_Standard_w_Workplace_Brands%22%20data-name%3D%22Kimball%20International%20Logo%20Standard%20w%20Workplace%20Brands%22%20transform%3D%22translate(-162%20-267.928)%22%3E%3Cg%20id%3D%22Group_114%22%20data-name%3D%22Group%20114%22%20transform%3D%22translate(162%20267.928)%22%3E%3Cg%20id%3D%22Group_79%22%20data-name%3D%22Group%2079%22%3E%3Cg%20id%3D%22Group_74%22%20data-name%3D%22Group%2074%22%20transform%3D%22translate(37.231%200.425)%22%3E%3Cpath%20id%3D%22Path_78%22%20data-name%3D%22Path%2078%22%20d%3D%22M275.772%2C277.493a6.836%2C6.836%2C0%2C0%2C0-6.084%2C3.689%2C6.129%2C6.129%2C0%2C0%2C0-6.046-3.689%2C6.386%2C6.386%2C0%2C0%2C0-5.723%2C3.38h0v-2.957h-3.385V297.8h3.6V285.056a4.5%2C4.5%2C0%2C1%2C1%2C8.99%2C0V297.8h3.6V285.056a4.5%2C4.5%2C0%2C1%2C1%2C8.99%2C0V297.8h3.6V284.414C283.3%2C280.383%2C280.222%2C277.493%2C275.772%2C277.493Z%22%20transform%3D%22translate(-222.166%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_127%22%20data-name%3D%22Rectangle%20127%22%20width%3D%223.596%22%20height%3D%2227.077%22%20transform%3D%22translate(106.086)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_128%22%20data-name%3D%22Rectangle%20128%22%20width%3D%223.596%22%20height%3D%2227.077%22%20transform%3D%22translate(113.278)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_79%22%20data-name%3D%22Path%2079%22%20d%3D%22M307.715%2C275.262a7.735%2C7.735%2C0%2C0%2C0-6.556%2C3.18v-9.949h-3.6V295.57h3.385v-3.082a7.863%2C7.863%2C0%2C0%2C0%2C6.768%2C3.5c5.9%2C0%2C8.673-4.231%2C8.673-10.478C316.388%2C279.493%2C313.617%2C275.262%2C307.715%2C275.262Zm-.764%2C17.7c-3.5%2C0-5.868-2.766-5.868-7.254s2.38-7.381%2C5.879-7.381%2C5.811%2C2.742%2C5.811%2C7.23S310.45%2C292.965%2C306.951%2C292.965Z%22%20transform%3D%22translate(-232.832%20-268.494)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_80%22%20data-name%3D%22Path%2080%22%20d%3D%22M234.875%2C268.494h-5.143L215.1%2C282.811V268.494h-3.6V295.57h3.6v-7.728l5.749-5.624%2C9.6%2C13.352h4.429l-11.43-15.9Z%22%20transform%3D%22translate(-211.501%20-268.494)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_81%22%20data-name%3D%22Path%2081%22%20d%3D%22M343.227%2C294.873c-.76%2C0-1.065-.38-1.065-.988v-10.61c0-3.423-2.315-5.781-7.943-5.781-5.776%2C0-7.949%2C2.523-8.25%2C6.347h3.6c-.006-2.327%2C1.661-3.3%2C4.647-3.3%2C3.08%2C0%2C4.347.976%2C4.347%2C2.815%2C0%2C1.6-1.157%2C2.377-3.059%2C2.6l-2.89.3c-5.476.533-7.494%2C2.928-7.494%2C6.084%2C0%2C3.765%2C3.183%2C5.881%2C7.4%2C5.881a6.943%2C6.943%2C0%2C0%2C0%2C6.24-3.174%2C3.221%2C3.221%2C0%2C0%2C0%2C3.385%2C2.962%2C5.365%2C5.365%2C0%2C0%2C0%2C1.8-.211v-2.928Zm-4.661-4.925c0%2C3.688-2.982%2C5.248-5.758%2C5.248-2.472%2C0-4.074-1.179-4.074-2.966%2C0-1.749%2C1.373-2.852%2C4.529-3.232l2.739-.3a5.114%2C5.114%2C0%2C0%2C0%2C2.564-.8Z%22%20transform%3D%22translate(-239.664%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_76%22%20data-name%3D%22Group%2076%22%20transform%3D%22translate(163.428%200.425)%22%3E%3Cpath%20id%3D%22Path_82%22%20data-name%3D%22Path%2082%22%20d%3D%22M420.821%2C276.278h-3.808v-5.394h-1.8v5.394h-3.6v1.586h3.6v18.3h1.8v-18.3h3.808Z%22%20transform%3D%22translate(-387.299%20-269.086)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_83%22%20data-name%3D%22Path%2083%22%20d%3D%22M531.915%2C276.278h-3.807v-5.394h-1.8v5.394h-3.6v1.586h3.6v18.3h1.8v-18.3h3.807Z%22%20transform%3D%22translate(-414.835%20-269.086)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_129%22%20data-name%3D%22Rectangle%20129%22%20width%3D%221.798%22%20height%3D%2227.077%22%20transform%3D%22translate(186.774)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_75%22%20data-name%3D%22Group%2075%22%20transform%3D%22translate(120.464)%22%3E%3Crect%20id%3D%22Rectangle_130%22%20data-name%3D%22Rectangle%20130%22%20width%3D%221.798%22%20height%3D%2219.884%22%20transform%3D%22translate(0%207.192)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_131%22%20data-name%3D%22Rectangle%20131%22%20width%3D%221.798%22%20height%3D%223.596%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Crect%20id%3D%22Rectangle_132%22%20data-name%3D%22Rectangle%20132%22%20width%3D%222.01%22%20height%3D%2227.077%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_84%22%20data-name%3D%22Path%2084%22%20d%3D%22M555.609%2C277.493c-5.394%2C0-8.99%2C4.231-8.99%2C10.365s3.6%2C10.366%2C8.99%2C10.366%2C8.99-4.231%2C8.99-10.366S561%2C277.493%2C555.609%2C277.493Zm0%2C19.144c-4.369%2C0-7.193-3.574-7.193-8.779s2.824-8.778%2C7.193-8.778%2C7.192%2C3.574%2C7.192%2C8.778S559.978%2C296.637%2C555.609%2C296.637Z%22%20transform%3D%22translate(-420.761%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_85%22%20data-name%3D%22Path%2085%22%20d%3D%22M443.933%2C288.282c0-.141.008-.281.008-.423%2C0-6.134-3.6-10.365-8.99-10.365s-8.99%2C4.231-8.99%2C10.365%2C3.6%2C10.366%2C8.99%2C10.366a8.544%2C8.544%2C0%2C0%2C0%2C8.4-6.347h-1.883a6.752%2C6.752%2C0%2C0%2C1-6.52%2C4.76c-4.248%2C0-7.027-3.384-7.178-8.355Zm-8.983-9.2c4.066%2C0%2C6.79%2C3.1%2C7.149%2C7.721H427.8C428.161%2C282.177%2C430.884%2C279.08%2C434.95%2C279.08Z%22%20transform%3D%22translate(-390.854%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_86%22%20data-name%3D%22Path%2086%22%20d%3D%22M403.9%2C284.917V297.8h-1.8V285.07c0-4.115-2.375-5.99-6.029-5.99-3.269%2C0-6.557%2C2-6.557%2C7.682V297.8h-1.8V277.916h1.692v4.019c1.115-2.923%2C3.491-4.442%2C6.875-4.442C400.723%2C277.493%2C403.9%2C280.138%2C403.9%2C284.917Z%22%20transform%3D%22translate(-381.374%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_87%22%20data-name%3D%22Path%2087%22%20d%3D%22M489.958%2C284.917V297.8h-1.8V285.07c0-4.115-2.375-5.99-6.028-5.99-3.27%2C0-6.558%2C2-6.558%2C7.682V297.8h-1.8V277.916h1.692v4.01c1.115-2.923%2C3.491-4.433%2C6.875-4.433C486.785%2C277.493%2C489.957%2C280.138%2C489.958%2C284.917Z%22%20transform%3D%22translate(-402.705%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_88%22%20data-name%3D%22Path%2088%22%20d%3D%22M591.489%2C284.917V297.8h-1.8V285.07c0-4.115-2.375-5.99-6.029-5.99-3.269%2C0-6.557%2C2-6.557%2C7.682V297.8h-1.8V277.916H577v4.01c1.115-2.923%2C3.491-4.433%2C6.875-4.433C588.316%2C277.493%2C591.488%2C280.138%2C591.489%2C284.917Z%22%20transform%3D%22translate(-427.871%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_89%22%20data-name%3D%22Path%2089%22%20d%3D%22M465.439%2C277.742a9.782%2C9.782%2C0%2C0%2C0-2.221-.249c-3.385%2C0-5.759%2C1.51-6.875%2C4.433v-4.01h-1.692V297.8h1.8V286.762c0-5.682%2C3.288-7.682%2C6.558-7.682a8.058%2C8.058%2C0%2C0%2C1%2C2.432.343Z%22%20transform%3D%22translate(-397.965%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_90%22%20data-name%3D%22Path%2090%22%20d%3D%22M616.52%2C294.836V283.008c0-3.081-1.884-5.515-7.193-5.515-5.778%2C0-7.87%2C2.5-8.032%2C6.344h1.8c.195-3.332%2C1.713-4.745%2C6.231-4.745%2C4.247%2C0%2C5.394%2C1.559%2C5.394%2C3.917%2C0%2C2.053-.173%2C3.08-3.645%2C3.5l-3.389.38c-5.268.608-7.351%2C2.663-7.351%2C5.819%2C0%2C3.27%2C2.378%2C5.52%2C6.869%2C5.52%2C3.92%2C0%2C6.247-1.379%2C7.621-4.129v.74c0%2C2.116%2C1.057%2C3.176%2C2.221%2C3.176a5.782%2C5.782%2C0%2C0%2C0%2C1.269-.211v-1.27C617.049%2C296.531%2C616.52%2C296.528%2C616.52%2C294.836Zm-1.8-5.709c0%2C5.057-3.075%2C7.616-7.444%2C7.616-3.553%2C0-5.036-1.534-5.036-4.007%2C0-2.623%2C1.607-3.961%2C5.691-4.455l3.39-.418c2.123-.266%2C2.7-.624%2C3.4-1.385Z%22%20transform%3D%22translate(-434.075%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_91%22%20data-name%3D%22Path%2091%22%20d%3D%22M514.989%2C294.836V283.008c0-3.081-1.884-5.515-7.193-5.515-5.778%2C0-7.87%2C2.5-8.032%2C6.344h1.8c.195-3.332%2C1.714-4.745%2C6.231-4.745%2C4.247%2C0%2C5.394%2C1.559%2C5.394%2C3.917%2C0%2C2.053-.173%2C3.08-3.644%2C3.5l-3.389.38c-5.268.608-7.351%2C2.663-7.351%2C5.819%2C0%2C3.27%2C2.377%2C5.52%2C6.869%2C5.52%2C3.919%2C0%2C6.246-1.379%2C7.621-4.129v.74c0%2C2.116%2C1.058%2C3.176%2C2.221%2C3.176a5.793%2C5.793%2C0%2C0%2C0%2C1.27-.211v-1.27C515.518%2C296.531%2C514.989%2C296.528%2C514.989%2C294.836Zm-1.8-5.709c0%2C5.057-3.075%2C7.616-7.444%2C7.616-3.553%2C0-5.036-1.534-5.036-4.007%2C0-2.623%2C1.608-3.961%2C5.691-4.455l3.39-.418c2.123-.266%2C2.7-.624%2C3.4-1.385Z%22%20transform%3D%22translate(-408.91%20-270.724)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_77%22%20data-name%3D%22Group%2077%22%3E%3Cpath%20id%3D%22Path_92%22%20data-name%3D%22Path%2092%22%20d%3D%22M170.085%2C284.609h11.847v-.882h7.9c-.02-.142-.044-.283-.068-.423H162.256c-.024.141-.047.281-.068.423h7.9Z%22%20transform%3D%22translate(-162.047%20-271.739)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_93%22%20data-name%3D%22Path%2093%22%20d%3D%22M170.247%2C281.7h11.847v-.879H189.5c-.044-.142-.094-.282-.143-.423H162.982c-.049.141-.1.281-.144.423h7.409Z%22%20transform%3D%22translate(-162.208%20-271.019)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_94%22%20data-name%3D%22Path%2094%22%20d%3D%22M189.919%2C286.211H162.005c0%2C.071-.005.14-.005.211s0%2C.141.005.211h8.034v.882h11.847v-.882h8.034c0-.071.005-.141.005-.211S189.92%2C286.282%2C189.919%2C286.211Z%22%20transform%3D%22translate(-162%20-272.46)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_95%22%20data-name%3D%22Path%2095%22%20d%3D%22M162.256%2C289.54h27.506c.025-.14.048-.281.068-.423H162.188C162.208%2C289.259%2C162.232%2C289.4%2C162.256%2C289.54Z%22%20transform%3D%22translate(-162.047%20-273.18)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_96%22%20data-name%3D%22Path%2096%22%20d%3D%22M176.465%2C267.928a13.959%2C13.959%2C0%2C0%2C0-12.435%2C7.616H188.9A13.958%2C13.958%2C0%2C0%2C0%2C176.465%2C267.928Z%22%20transform%3D%22translate(-162.503%20-267.928)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_97%22%20data-name%3D%22Path%2097%22%20d%3D%22M176.465%2C302.545A13.957%2C13.957%2C0%2C0%2C0%2C188.9%2C294.93H164.03A13.958%2C13.958%2C0%2C0%2C0%2C176.465%2C302.545Z%22%20transform%3D%22translate(-162.503%20-274.621)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_98%22%20data-name%3D%22Path%2098%22%20d%3D%22M182.093%2C291.437H170.247v.441h-7.409c.044.143.095.283.144.423h7.265v.441h11.847V292.3h7.265c.049-.141.1-.281.143-.423h-7.408Z%22%20transform%3D%22translate(-162.208%20-273.755)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Crect%20id%3D%22Rectangle_133%22%20data-name%3D%22Rectangle%20133%22%20width%3D%223.596%22%20height%3D%223.596%22%20transform%3D%22translate(62.404%200.426)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_134%22%20data-name%3D%22Rectangle%20134%22%20width%3D%223.596%22%20height%3D%2219.885%22%20transform%3D%22translate(62.404%207.618)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_99%22%20data-name%3D%22Path%2099%22%20d%3D%22M372.416%2C268.213a2.01%2C2.01%2C0%2C1%2C0%2C2.01%2C2.01A2.009%2C2.009%2C0%2C0%2C0%2C372.416%2C268.213Zm0%2C3.6A1.586%2C1.586%2C0%2C1%2C1%2C374%2C270.223%2C1.587%2C1.587%2C0%2C0%2C1%2C372.416%2C271.809Z%22%20transform%3D%22translate(-213.656%20-267.999)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_78%22%20data-name%3D%22Group%2078%22%20transform%3D%22translate(158%201.276)%22%3E%3Cpath%20id%3D%22Path_100%22%20data-name%3D%22Path%20100%22%20d%3D%22M372.8%2C270.849h-.281v.675h-.451v-1.9h.88c.432%2C0%2C.7.229.7.6a.561.561%2C0%2C0%2C1-.4.558l.47.745h-.507Zm-.281-.35h.4a.259.259%2C0%2C1%2C0%2C0-.515h-.4Z%22%20transform%3D%22translate(-372.068%20-269.625)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_113%22%20data-name%3D%22Group%20113%22%20transform%3D%22translate(37.231%2039.783)%22%3E%3Cg%20id%3D%22Group_81%22%20data-name%3D%22Group%2081%22%20transform%3D%22translate(266.733%207.517)%22%3E%3Cpath%20id%3D%22Path_101%22%20data-name%3D%22Path%20101%22%20d%3D%22M613.448%2C331.188a1.353%2C1.353%2C0%2C0%2C0-.892-.278h-.285a1.339%2C1.339%2C0%2C0%2C0-.877.285%2C1.284%2C1.284%2C0%2C0%2C0-.35%2C1.041V336.8a1.282%2C1.282%2C0%2C0%2C0%2C.35%2C1.042%2C1.382%2C1.382%2C0%2C0%2C0%2C.906.284h.284a1.265%2C1.265%2C0%2C0%2C0%2C.864-.292%2C1.323%2C1.323%2C0%2C0%2C0%2C.335-1.034v-4.565A1.317%2C1.317%2C0%2C0%2C0%2C613.448%2C331.188Z%22%20transform%3D%22translate(-577.266%20-330.839)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_102%22%20data-name%3D%22Path%20102%22%20d%3D%22M622.4%2C331.658a2.105%2C2.105%2C0%2C0%2C0-.778-.615%2C2.667%2C2.667%2C0%2C0%2C0-1.161-.228%2C2.5%2C2.5%2C0%2C0%2C0-1.406.363%2C3.179%2C3.179%2C0%2C0%2C0-.92.935%2C1.91%2C1.91%2C0%2C0%2C0-.265-.592%2C1.421%2C1.421%2C0%2C0%2C0-.377-.379%2C1.437%2C1.437%2C0%2C0%2C0-.449-.2%2C2.1%2C2.1%2C0%2C0%2C0-.478-.057%2C2.07%2C2.07%2C0%2C0%2C0-.735.121c-.214.081-.321.145-.321.193v5.578a1.292%2C1.292%2C0%2C0%2C0%2C.348%2C1.042%2C1.367%2C1.367%2C0%2C0%2C0%2C.891.284h.286a1.114%2C1.114%2C0%2C0%2C0%2C1.212-1.326v-3.167a1.284%2C1.284%2C0%2C0%2C1%2C.428-.406%2C1.213%2C1.213%2C0%2C0%2C1%2C.643-.165.844.844%2C0%2C0%2C1%2C.67.279%2C1.126%2C1.126%2C0%2C0%2C1%2C.242.763v2.7a1.285%2C1.285%2C0%2C0%2C0%2C.35%2C1.042%2C1.383%2C1.383%2C0%2C0%2C0%2C.906.284h.27a1.284%2C1.284%2C0%2C0%2C0%2C.877-.292%2C1.32%2C1.32%2C0%2C0%2C0%2C.335-1.034v-3.167a4.034%2C4.034%2C0%2C0%2C0-.137-1.063A2.466%2C2.466%2C0%2C0%2C0%2C622.4%2C331.658Z%22%20transform%3D%22translate(-578.374%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_103%22%20data-name%3D%22Path%20103%22%20d%3D%22M627.465%2C336.566a1.528%2C1.528%2C0%2C1%2C0%2C1.528%2C1.528A1.527%2C1.527%2C0%2C0%2C0%2C627.465%2C336.566Z%22%20transform%3D%22translate(-580.957%20-332.241)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_104%22%20data-name%3D%22Path%20104%22%20d%3D%22M584.083%2C331.836a3.432%2C3.432%2C0%2C0%2C0-1.212-.757%2C4.494%2C4.494%2C0%2C0%2C0-1.577-.263%2C4.607%2C4.607%2C0%2C0%2C0-1.59.263%2C3.571%2C3.571%2C0%2C0%2C0-1.235.749%2C3.291%2C3.291%2C0%2C0%2C0-.791%2C1.17%2C3.963%2C3.963%2C0%2C0%2C0-.278%2C1.512%2C4.167%2C4.167%2C0%2C0%2C0%2C.27%2C1.54%2C3.3%2C3.3%2C0%2C0%2C0%2C.771%2C1.17%2C3.414%2C3.414%2C0%2C0%2C0%2C1.212.75%2C4.993%2C4.993%2C0%2C0%2C0%2C3.2%2C0%2C3.471%2C3.471%2C0%2C0%2C0%2C1.219-.75%2C3.347%2C3.347%2C0%2C0%2C0%2C.786-1.17%2C4.361%2C4.361%2C0%2C0%2C0%2C.006-3.045A3.326%2C3.326%2C0%2C0%2C0%2C584.083%2C331.836Zm-2.8%2C4.2a1.528%2C1.528%2C0%2C1%2C1%2C1.526-1.527A1.527%2C1.527%2C0%2C0%2C1%2C581.287%2C336.037Z%22%20transform%3D%22translate(-568.927%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_105%22%20data-name%3D%22Path%20105%22%20d%3D%22M573.281%2C331.808a2.891%2C2.891%2C0%2C0%2C0-1.027-.736%2C3.347%2C3.347%2C0%2C0%2C0-1.328-.257%2C2.4%2C2.4%2C0%2C0%2C0-1.34.371%2C2.054%2C2.054%2C0%2C0%2C0-.815.985%2C1.7%2C1.7%2C0%2C0%2C0-.256-.627%2C1.584%2C1.584%2C0%2C0%2C0-.385-.393%2C1.3%2C1.3%2C0%2C0%2C0-.457-.208%2C2.182%2C2.182%2C0%2C0%2C0-.484-.057%2C2.073%2C2.073%2C0%2C0%2C0-.735.121q-.322.122-.321.193v8.273a1.264%2C1.264%2C0%2C0%2C0%2C.349%2C1.035%2C1.391%2C1.391%2C0%2C0%2C0%2C.891.278h.286a1.319%2C1.319%2C0%2C0%2C0%2C.871-.285%2C1.281%2C1.281%2C0%2C0%2C0%2C.341-1.027v-2.468a2.109%2C2.109%2C0%2C0%2C0%2C.792.886%2C2.284%2C2.284%2C0%2C0%2C0%2C1.262.341%2C3.113%2C3.113%2C0%2C0%2C0%2C1.328-.278%2C3.059%2C3.059%2C0%2C0%2C0%2C1.027-.769%2C3.434%2C3.434%2C0%2C0%2C0%2C.656-1.177%2C4.741%2C4.741%2C0%2C0%2C0%2C.228-1.5%2C4.878%2C4.878%2C0%2C0%2C0-.228-1.54A3.256%2C3.256%2C0%2C0%2C0%2C573.281%2C331.808Zm-2.975%2C4.228a1.528%2C1.528%2C0%2C1%2C1%2C1.529-1.527A1.527%2C1.527%2C0%2C0%2C1%2C570.305%2C336.037Z%22%20transform%3D%22translate(-566.134%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_106%22%20data-name%3D%22Path%20106%22%20d%3D%22M595.507%2C331.808a2.884%2C2.884%2C0%2C0%2C0-1.027-.736%2C3.339%2C3.339%2C0%2C0%2C0-1.327-.257%2C2.407%2C2.407%2C0%2C0%2C0-1.342.371%2C2.068%2C2.068%2C0%2C0%2C0-.813.985%2C1.7%2C1.7%2C0%2C0%2C0-.257-.627%2C1.557%2C1.557%2C0%2C0%2C0-.385-.393%2C1.3%2C1.3%2C0%2C0%2C0-.457-.208%2C2.175%2C2.175%2C0%2C0%2C0-.484-.057%2C2.08%2C2.08%2C0%2C0%2C0-.736.121c-.214.081-.32.145-.32.193v8.273a1.269%2C1.269%2C0%2C0%2C0%2C.348%2C1.035%2C1.393%2C1.393%2C0%2C0%2C0%2C.893.278h.284a1.312%2C1.312%2C0%2C0%2C0%2C.87-.285%2C1.276%2C1.276%2C0%2C0%2C0%2C.342-1.027v-2.468a2.122%2C2.122%2C0%2C0%2C0%2C.793.886%2C2.287%2C2.287%2C0%2C0%2C0%2C1.262.341%2C3.1%2C3.1%2C0%2C0%2C0%2C1.327-.278%2C3.052%2C3.052%2C0%2C0%2C0%2C1.027-.769%2C3.438%2C3.438%2C0%2C0%2C0%2C.657-1.177%2C4.741%2C4.741%2C0%2C0%2C0%2C.229-1.5%2C4.877%2C4.877%2C0%2C0%2C0-.229-1.54A3.259%2C3.259%2C0%2C0%2C0%2C595.507%2C331.808Zm-2.974%2C4.228a1.528%2C1.528%2C0%2C1%2C1%2C1.528-1.527A1.526%2C1.526%2C0%2C0%2C1%2C592.533%2C336.037Z%22%20transform%3D%22translate(-571.643%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_107%22%20data-name%3D%22Path%20107%22%20d%3D%22M606.832%2C331.808a2.875%2C2.875%2C0%2C0%2C0-1.026-.736%2C3.348%2C3.348%2C0%2C0%2C0-1.328-.257%2C2.4%2C2.4%2C0%2C0%2C0-1.34.371%2C2.045%2C2.045%2C0%2C0%2C0-.812.985%2C1.7%2C1.7%2C0%2C0%2C0-.259-.627%2C1.565%2C1.565%2C0%2C0%2C0-.384-.393%2C1.313%2C1.313%2C0%2C0%2C0-.456-.208%2C2.2%2C2.2%2C0%2C0%2C0-.487-.057%2C2.073%2C2.073%2C0%2C0%2C0-.733.121q-.322.122-.321.193v8.273a1.266%2C1.266%2C0%2C0%2C0%2C.348%2C1.035%2C1.393%2C1.393%2C0%2C0%2C0%2C.893.278h.284a1.316%2C1.316%2C0%2C0%2C0%2C.871-.285%2C1.283%2C1.283%2C0%2C0%2C0%2C.341-1.027v-2.468a2.115%2C2.115%2C0%2C0%2C0%2C.792.886%2C2.282%2C2.282%2C0%2C0%2C0%2C1.261.341%2C3.114%2C3.114%2C0%2C0%2C0%2C1.328-.278%2C3.041%2C3.041%2C0%2C0%2C0%2C1.026-.769%2C3.4%2C3.4%2C0%2C0%2C0%2C.657-1.177%2C4.7%2C4.7%2C0%2C0%2C0%2C.229-1.5%2C4.834%2C4.834%2C0%2C0%2C0-.229-1.54A3.223%2C3.223%2C0%2C0%2C0%2C606.832%2C331.808Zm-2.974%2C4.228a1.528%2C1.528%2C0%2C1%2C1%2C1.528-1.527A1.527%2C1.527%2C0%2C0%2C1%2C603.858%2C336.037Z%22%20transform%3D%22translate(-574.451%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_80%22%20data-name%3D%22Group%2080%22%20transform%3D%22translate(45.745)%22%3E%3Cpath%20id%3D%22Path_108%22%20data-name%3D%22Path%20108%22%20d%3D%22M626.954%2C331.582a.745.745%2C0%2C0%2C1%2C.763-.766.73.73%2C0%2C0%2C1%2C.763.76.747.747%2C0%2C0%2C1-.765.768A.731.731%2C0%2C0%2C1%2C626.954%2C331.582Zm1.434%2C0a.657.657%2C0%2C0%2C0-.672-.683.646.646%2C0%2C0%2C0-.669.684.671.671%2C0%2C1%2C0%2C1.342%2C0Zm-.63.068.274.28c0%2C.009-.018.044-.056.044a.1.1%2C0%2C0%2C1-.072-.038l-.258-.279h-.1v.269a.043.043%2C0%2C0%2C1-.045.048h-.017c-.028%2C0-.043-.02-.043-.053v-.678a.055.055%2C0%2C0%2C1%2C.056-.062h.238c.2%2C0%2C.3.08.3.239C628.04%2C331.556%2C627.946%2C331.645%2C627.759%2C331.647Zm-.021-.077c.131%2C0%2C.2-.059.2-.154s-.07-.152-.2-.152h-.19v.306Z%22%20transform%3D%22translate(-626.954%20-330.816)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_86%22%20data-name%3D%22Group%2086%22%20transform%3D%22translate(53.579%206.759)%22%3E%3Cg%20id%3D%22Group_83%22%20data-name%3D%22Group%2083%22%3E%3Cg%20id%3D%22Group_82%22%20data-name%3D%22Group%2082%22%3E%3Cpath%20id%3D%22Path_109%22%20data-name%3D%22Path%20109%22%20d%3D%22M326.867%2C334.908c0%2C1.989.693%2C2.946%2C2.883%2C2.946h4.659c2.189%2C0%2C2.882-.957%2C2.882-2.946v-2.153c0-1.989-.693-2.946-2.882-2.946H329.75c-2.19%2C0-2.883.957-2.883%2C2.946v2.153Zm9.328.4c0%2C1.37-.848%2C1.674-1.9%2C1.674h-4.435c-1.05%2C0-1.9-.3-1.9-1.674v-2.957c0-1.369.849-1.673%2C1.9-1.673H334.3c1.05%2C0%2C1.9.3%2C1.9%2C1.673v2.957Z%22%20transform%3D%22translate(-293.674%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_110%22%20data-name%3D%22Path%20110%22%20d%3D%22M282.735%2C329.809h1.631l7.408%2C7.067v-7.067h1.1v8.046h-1.631l-7.408-7.068v7.068h-1.1v-8.046Z%22%20transform%3D%22translate(-282.735%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_111%22%20data-name%3D%22Path%20111%22%20d%3D%22M297.769%2C337.855h1.24l1.006-1.7H306.5l1.006%2C1.7h1.24l-4.8-8.046h-1.363l-4.8%2C8.046Zm8.2-2.59h-5.43l2.715-4.567%2C2.715%2C4.567Z%22%20transform%3D%22translate(-286.461%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_112%22%20data-name%3D%22Path%20112%22%20d%3D%22M313.835%2C330.7h-4.09v-.889h9.274v.889H314.93v7.157h-1.095V330.7Z%22%20transform%3D%22translate(-289.43%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_113%22%20data-name%3D%22Path%20113%22%20d%3D%22M323.468%2C329.809h1.095v8.046h-1.095v-8.046Z%22%20transform%3D%22translate(-292.831%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_114%22%20data-name%3D%22Path%20114%22%20d%3D%22M342.553%2C329.809h1.632l7.408%2C7.067v-7.067h1.094v8.046h-1.63l-7.408-7.068v7.068h-1.1v-8.046Z%22%20transform%3D%22translate(-297.562%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_115%22%20data-name%3D%22Path%20115%22%20d%3D%22M357.588%2C337.855h1.24l1.006-1.7h6.48l1.006%2C1.7h1.24l-4.8-8.046h-1.364l-4.8%2C8.046Zm8.2-2.59h-5.43l2.715-4.567%2C2.714%2C4.567Z%22%20transform%3D%22translate(-301.288%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_116%22%20data-name%3D%22Path%20116%22%20d%3D%22M373.824%2C329.809h1.1v7.156H381.2v.89h-7.375v-8.046Z%22%20transform%3D%22translate(-305.313%20-329.809)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_117%22%20data-name%3D%22Path%20117%22%20d%3D%22M374.921%2C339.324H381.2v.89h-7.375%22%20transform%3D%22translate(-305.313%20-332.167)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_85%22%20data-name%3D%22Group%2085%22%20transform%3D%22translate(76.508%206.827)%22%3E%3Cg%20id%3D%22Group_84%22%20data-name%3D%22Group%2084%22%3E%3Cpath%20id%3D%22Path_118%22%20data-name%3D%22Path%20118%22%20d%3D%22M385.08%2C339.605v-.275h.185c.094%2C0%2C.195.02.195.131%2C0%2C.136-.1.144-.218.144Zm0%2C.115h.156l.237.387h.152l-.256-.393a.233.233%2C0%2C0%2C0%2C.233-.245c0-.177-.1-.256-.316-.256h-.343v.894h.136v-.387Zm.164.715a.774.774%2C0%2C1%2C0-.788-.775.775.775%2C0%2C0%2C0%2C.788.775Zm-.633-.775a.631.631%2C0%2C1%2C1%2C.633.647.628.628%2C0%2C0%2C1-.633-.647Z%22%20transform%3D%22translate(-384.456%20-338.886)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_95%22%20data-name%3D%22Group%2095%22%20transform%3D%22translate(140.41)%22%3E%3Cg%20id%3D%22Group_89%22%20data-name%3D%22Group%2089%22%3E%3Cg%20id%3D%22Group_88%22%20data-name%3D%22Group%2088%22%3E%3Cg%20id%3D%22Group_87%22%20data-name%3D%22Group%2087%22%3E%3Cpath%20id%3D%22Path_119%22%20data-name%3D%22Path%20119%22%20d%3D%22M430.182%2C337.661a1.254%2C1.254%2C0%2C0%2C0-1.755%2C0%2C1.23%2C1.23%2C0%2C0%2C0%2C.877%2C2.1%2C1.2%2C1.2%2C0%2C0%2C0%2C.878-.358%2C1.235%2C1.235%2C0%2C0%2C0%2C0-1.743Z%22%20transform%3D%22translate(-405.589%20-324.907)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_120%22%20data-name%3D%22Path%20120%22%20d%3D%22M423.083%2C332.144a1.077%2C1.077%2C0%2C0%2C0-.388.821%2C1.054%2C1.054%2C0%2C0%2C0%2C.38.82%2C1.329%2C1.329%2C0%2C0%2C0%2C.914.337%2C1.307%2C1.307%2C0%2C0%2C0%2C.9-.337%2C1.055%2C1.055%2C0%2C0%2C0%2C.381-.82%2C1.345%2C1.345%2C0%2C0%2C0-.251-.776%2C2.324%2C2.324%2C0%2C0%2C0-.671-.638%2C3.51%2C3.51%2C0%2C0%2C0-.986-.424%2C4.594%2C4.594%2C0%2C0%2C0-1.213-.154%2C3.98%2C3.98%2C0%2C0%2C0-1.545.286%2C3.5%2C3.5%2C0%2C0%2C0-1.164.769%2C3.251%2C3.251%2C0%2C0%2C0-.727%2C1.143%2C4.064%2C4.064%2C0%2C0%2C0%2C0%2C2.813%2C3.32%2C3.32%2C0%2C0%2C0%2C.727%2C1.149%2C3.442%2C3.442%2C0%2C0%2C0%2C1.164.776%2C3.979%2C3.979%2C0%2C0%2C0%2C1.545.286%2C4.625%2C4.625%2C0%2C0%2C0%2C1.213-.153%2C3.4%2C3.4%2C0%2C0%2C0%2C.986-.432%2C2.448%2C2.448%2C0%2C0%2C0%2C.671-.637%2C1.335%2C1.335%2C0%2C0%2C0%2C.251-.784%2C1.064%2C1.064%2C0%2C0%2C0-.381-.813%2C1.292%2C1.292%2C0%2C0%2C0-.9-.344%2C1.314%2C1.314%2C0%2C0%2C0-.914.344%2C1.063%2C1.063%2C0%2C0%2C0-.38.813%2C1.089%2C1.089%2C0%2C0%2C0%2C.388.835q.13.117.267.256a.348.348%2C0%2C0%2C1%2C.089.344.513.513%2C0%2C0%2C1-.275.314%2C1.393%2C1.393%2C0%2C0%2C1-.55.154.61.61%2C0%2C0%2C0-.1.008.6.6%2C0%2C0%2C1-.081.007%2C1.5%2C1.5%2C0%2C0%2C1-.639-.124%2C1.024%2C1.024%2C0%2C0%2C1-.445-.425%2C2.393%2C2.393%2C0%2C0%2C1-.267-.791%2C7.129%2C7.129%2C0%2C0%2C1-.089-1.238v-1.89a7.12%2C7.12%2C0%2C0%2C1%2C.089-1.237%2C2.4%2C2.4%2C0%2C0%2C1%2C.267-.791%2C1.029%2C1.029%2C0%2C0%2C1%2C.445-.425%2C1.5%2C1.5%2C0%2C0%2C1%2C.639-.124.915.915%2C0%2C0%2C1%2C.178.014%2C1.406%2C1.406%2C0%2C0%2C1%2C.55.154.512.512%2C0%2C0%2C1%2C.275.315.347.347%2C0%2C0%2C1-.089.344C423.258%2C331.981%2C423.169%2C332.066%2C423.083%2C332.144Z%22%20transform%3D%22translate(-403.207%20-323.338)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_121%22%20data-name%3D%22Path%20121%22%20d%3D%22M410.932%2C323.794c-.007-.024-.02-.028-.033-.028a.032.032%2C0%2C0%2C0-.032.033%2C1.544%2C1.544%2C0%2C1%2C1-1.537-1.71%2C1.826%2C1.826%2C0%2C0%2C1%2C1.73%2C2c0%2C1.608-1.537%2C3.051-3.626%2C3.855a.017.017%2C0%2C0%2C0-.006.028%2C4.423%2C4.423%2C0%2C0%2C1%2C1.267%2C2.121%2C4.5%2C4.5%2C0%2C0%2C1-1.752%2C4.6%2C6.2%2C6.2%2C0%2C0%2C1-6.845.011%2C4.656%2C4.656%2C0%2C0%2C1-1.914-3.606%2C4.35%2C4.35%2C0%2C0%2C1%2C2.8-4.346.04.04%2C0%2C0%2C0%2C0-.075%2C3.213%2C3.213%2C0%2C0%2C1-2.113-2.717c0-1.8%2C2-3.13%2C4.163-3.133%2C3.156-.005%2C4.176%2C1.788%2C4.177%2C2.814a1.544%2C1.544%2C0%2C0%2C1-3.088%2C0%2C1.8%2C1.8%2C0%2C0%2C1%2C.975-1.523c.415-.3.322-.875-.364-.874a2.889%2C2.889%2C0%2C0%2C0-.051%2C5.777.07.07%2C0%2C0%2C1%2C.068.07h0a.069.069%2C0%2C0%2C1-.068.069%2C3.774%2C3.774%2C0%2C1%2C0%2C2.59.866.038.038%2C0%2C0%2C0-.038-.005c-1.564.586-2.1.437-2.987.872a2.077%2C2.077%2C0%2C0%2C0-1.018%2C2.038.033.033%2C0%2C1%2C0%2C.066%2C0%2C1.74%2C1.74%2C0%2C1%2C1%2C1.743%2C1.738%2C1.929%2C1.929%2C0%2C0%2C1-1.967-2.068c0-2.649%2C2.663-3.731%2C3.663-4.089a28.635%2C28.635%2C0%2C0%2C0%2C3.1-.879A1.889%2C1.889%2C0%2C0%2C0%2C410.932%2C323.794Z%22%20transform%3D%22translate(-398.182%20-320.822)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_122%22%20data-name%3D%22Path%20122%22%20d%3D%22M415.824%2C326.965a5.977%2C5.977%2C0%2C0%2C1-2.94%2C2.99.015.015%2C0%2C0%2C0-.009.014v.229a.017.017%2C0%2C0%2C0%2C.017.016h.436v1.272h0v3.573h0a2.616%2C2.616%2C0%2C0%2C0%2C.168.917%2C1.857%2C1.857%2C0%2C0%2C0%2C.465.689%2C1.751%2C1.751%2C0%2C0%2C0%2C.688.387%2C2.849%2C2.849%2C0%2C0%2C0%2C.843.121%2C2.776%2C2.776%2C0%2C0%2C0%2C1.119-.232%2C5.5%2C5.5%2C0%2C0%2C0%2C.91-.494.016.016%2C0%2C0%2C0%2C0-.024c-.019-.02-.037-.041-.055-.062a.016.016%2C0%2C0%2C0-.019%2C0%2C3.162%2C3.162%2C0%2C0%2C1-.417.2.712.712%2C0%2C0%2C1-.482.035.622.622%2C0%2C0%2C1-.353-.361%2C2.173%2C2.173%2C0%2C0%2C1-.136-.86v-5.151h1.152a.016.016%2C0%2C0%2C0%2C.016-.016v-.206a.016.016%2C0%2C0%2C0-.016-.016h-1.152v-3.006a.015.015%2C0%2C0%2C0-.016-.016h-.211A.015.015%2C0%2C0%2C0%2C415.824%2C326.965Z%22%20transform%3D%22translate(-401.824%20-322.342)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_94%22%20data-name%3D%22Group%2094%22%20transform%3D%22translate(25.099%2014.34)%22%3E%3Cg%20id%3D%22Group_93%22%20data-name%3D%22Group%2093%22%3E%3Cg%20id%3D%22Group_92%22%20data-name%3D%22Group%2092%22%3E%3Cg%20id%3D%22Etc_Wordmark_ForestGreen%22%3E%3Cg%20id%3D%22Group_91%22%20data-name%3D%22Group%2091%22%3E%3Cg%20id%3D%22Group_90%22%20data-name%3D%22Group%2090%22%3E%3Cpath%20id%3D%22Path_123%22%20data-name%3D%22Path%20123%22%20d%3D%22M431.853%2C339.913V340h-.109v.361h-.088V340h-.1v-.085Z%22%20transform%3D%22translate(-431.552%20-339.894)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_124%22%20data-name%3D%22Path%20124%22%20d%3D%22M432.525%2C339.888v.465h-.088v-.213l-.145.207h0l-.14-.193v.2h-.085v-.465h0l.226.321.232-.321Z%22%20transform%3D%22translate(-431.679%20-339.888)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_106%22%20data-name%3D%22Group%20106%22%20transform%3D%22translate(176.308%204.544)%22%3E%3Cg%20id%3D%22Group_102%22%20data-name%3D%22Group%20102%22%3E%3Cg%20id%3D%22Group_101%22%20data-name%3D%22Group%20101%22%3E%3Cpath%20id%3D%22Path_125%22%20data-name%3D%22Path%20125%22%20d%3D%22M445.91%2C337.125c.621-.115.795-.4.795-1.633v-4.307c0-.924-.26-1.156-.795-1.286h3.858c-.65.144-.794.419-.794%2C1.648v4.306c0%2C.911.217%2C1.157.794%2C1.272Zm1.922-10.261a1.155%2C1.155%2C0%2C0%2C1%2C1.17%2C1.113%2C1.164%2C1.164%2C0%2C1%2C1-1.17-1.113Z%22%20transform%3D%22translate(-445.91%20-326.864)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_126%22%20data-name%3D%22Path%20126%22%20d%3D%22M452.193%2C338.1c.636-.115.794-.4.794-1.691v-4.321c0-.867-.259-1.084-.794-1.214h3.063v5.954c0%2C.925.174%2C1.171.578%2C1.272Zm5.477%2C0c.361-.1.578-.347.578-1.272%2C0-1.055.015-2.124.015-3.194%2C0-1.445-.492-2.153-1.431-2.153a1.533%2C1.533%2C0%2C0%2C0-.924.3%2C2.507%2C2.507%2C0%2C0%2C1%2C2.138-1c1.518%2C0%2C2.486.852%2C2.486%2C3.021v3.02c0%2C.925.232%2C1.171.8%2C1.272Z%22%20transform%3D%22translate(-447.467%20-327.836)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_127%22%20data-name%3D%22Path%20127%22%20d%3D%22M465.583%2C331.36c0-.867-.246-1.084-.8-1.214h.8l2.269-2.283v2.283h2.428v.368h-2.428v5.023a2.34%2C2.34%2C0%2C0%2C0%2C.578%2C1.907c-1.878-.014-2.847-1.358-2.847-3.4Z%22%20transform%3D%22translate(-450.589%20-327.112)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_128%22%20data-name%3D%22Path%20128%22%20d%3D%22M483.155%2C338.125c.622-.115.8-.419.8-1.705v-4.249c0-.939-.26-1.142-.8-1.272h3.064v5.94c0%2C.925.231%2C1.171.8%2C1.286Zm5.434-7.168a1.042%2C1.042%2C0%2C1%2C1-1.1%2C1.04A1.077%2C1.077%2C0%2C0%2C1%2C488.589%2C330.957Z%22%20transform%3D%22translate(-455.142%20-327.864)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_129%22%20data-name%3D%22Path%20129%22%20d%3D%22M493.684%2C332.142c-.3-.925-.65-1.113-1.242-1.243h3.815c-.4.116-.578.318-.289%2C1.1.058.116%2C1.127%2C3.165%2C1.185%2C3.3l-1.171%2C3.035Zm3.974-1.243h2.977c-.361.1-.563.318-.217%2C1.17l1.171%2C3.223-1.171%2C3.021Zm6.634%2C0a2.092%2C2.092%2C0%2C0%2C0-1.677%2C1.474c.332-.925.173-1.33-.318-1.474Z%22%20transform%3D%22translate(-457.443%20-327.864)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_130%22%20data-name%3D%22Path%20130%22%20d%3D%22M519.388%2C332.012a1.5%2C1.5%2C0%2C0%2C0-1.214-1.113h3.9c-.419.116-.563.332-.26%2C1.084l.174.492%2C1.156%2C3.063-1.185%2C2.833Zm6.6-1.113c-.867.2-1.286.535-1.792%2C1.691.448-1.156.275-1.488-.39-1.691Z%22%20transform%3D%22translate(-463.822%20-327.864)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_131%22%20data-name%3D%22Path%20131%22%20d%3D%22M539.439%2C338.1c.636-.115.794-.4.794-1.691v-4.321c0-.867-.259-1.084-.794-1.214H542.5v5.954c0%2C.925.174%2C1.171.578%2C1.272Zm5.477%2C0c.361-.1.578-.347.578-1.272%2C0-1.055.014-2.124.014-3.194%2C0-1.445-.492-2.153-1.431-2.153a1.534%2C1.534%2C0%2C0%2C0-.925.3%2C2.507%2C2.507%2C0%2C0%2C1%2C2.138-1c1.518%2C0%2C2.486.852%2C2.486%2C3.021v3.02c0%2C.925.232%2C1.171.795%2C1.272Z%22%20transform%3D%22translate(-469.092%20-327.836)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_98%22%20data-name%3D%22Group%2098%22%20transform%3D%22translate(46.58%202.963)%22%3E%3Cg%20id%3D%22Group_96%22%20data-name%3D%22Group%2096%22%3E%3Cpath%20id%3D%22Path_132%22%20data-name%3D%22Path%20132%22%20d%3D%22M510.152%2C335.587c0%2C1.488.651%2C2.529%2C1.633%2C2.572-2.168-.029-3.945-1.315-3.945-3.67s1.777-3.657%2C3.96-3.685c-.969.058-1.648%2C1.112-1.648%2C2.587Z%22%20transform%3D%22translate(-507.84%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_97%22%20data-name%3D%22Group%2097%22%20transform%3D%22translate(3.93)%22%3E%3Cpath%20id%3D%22Path_133%22%20data-name%3D%22Path%20133%22%20d%3D%22M514.727%2C333.39c0-1.459-.665-2.529-1.648-2.587%2C2.183.044%2C3.96%2C1.33%2C3.96%2C3.67%2C0%2C2.371-1.792%2C3.671-3.974%2C3.685%2C1-.044%2C1.662-1.07%2C1.662-2.572Z%22%20transform%3D%22translate(-513.065%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_99%22%20data-name%3D%22Group%2099%22%20transform%3D%22translate(62.054%202.963)%22%3E%3Cpath%20id%3D%22Path_134%22%20data-name%3D%22Path%20134%22%20d%3D%22M530.713%2C335.6c0%2C1.5.664%2C2.558%2C2.153%2C2.558-.144.014-.289.014-.433.014-2.4%2C0-4.018-1.473-4.018-3.685a3.623%2C3.623%2C0%2C0%2C1%2C3.859-3.685c-1.157.058-1.561%2C1.258-1.561%2C2.572Z%22%20transform%3D%22translate(-528.414%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_135%22%20data-name%3D%22Path%20135%22%20d%3D%22M533.894%2C334.619c1.069-.39%2C1.272-.708%2C1.242-1.5-.058-1.228-.535-2.24-1.589-2.312%2C2.355.072%2C4%2C1.518%2C3.829%2C3.816Z%22%20transform%3D%22translate(-529.686%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_100%22%20data-name%3D%22Group%20100%22%20transform%3D%22translate(19.592%202.963)%22%3E%3Cpath%20id%3D%22Path_136%22%20data-name%3D%22Path%20136%22%20d%3D%22M474.258%2C335.6c0%2C1.5.664%2C2.558%2C2.153%2C2.558-.144.014-.289.014-.433.014-2.4%2C0-4.018-1.473-4.018-3.685a3.623%2C3.623%2C0%2C0%2C1%2C3.859-3.685c-1.157.058-1.561%2C1.258-1.561%2C2.572Z%22%20transform%3D%22translate(-471.959%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_137%22%20data-name%3D%22Path%20137%22%20d%3D%22M477.439%2C334.619c1.069-.39%2C1.271-.708%2C1.243-1.5-.058-1.228-.535-2.24-1.589-2.312%2C2.355.072%2C4%2C1.518%2C3.829%2C3.816Z%22%20transform%3D%22translate(-473.231%20-330.803)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_105%22%20data-name%3D%22Group%20105%22%20transform%3D%22translate(79.48%203.026)%22%3E%3Cg%20id%3D%22Group_104%22%20data-name%3D%22Group%20104%22%3E%3Cg%20id%3D%22Group_103%22%20data-name%3D%22Group%20103%22%3E%3Cpath%20id%3D%22Path_138%22%20data-name%3D%22Path%20138%22%20d%3D%22M552.239%2C331.049c-.084%2C0-.156%2C0-.252%2C0%2C0%2C.023%2C0%2C.053%2C0%2C.07v.43c0%2C.044%2C0%2C.131%2C0%2C.162h-.158c.006-.054.009-.2.009-.27v-.221c0-.043%2C0-.11%2C0-.171-.095%2C0-.172%2C0-.255%2C0%2C0-.037%2C0-.091%2C0-.133.1%2C0%2C.2%2C0%2C.327%2C0s.23%2C0%2C.334%2C0A1.2%2C1.2%2C0%2C0%2C0%2C552.239%2C331.049Z%22%20transform%3D%22translate(-551.582%20-330.894)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_139%22%20data-name%3D%22Path%20139%22%20d%3D%22M553.339%2C331.71c0-.032-.014-.127-.02-.171l-.042-.3c-.053.115-.194.43-.213.474l-.054.011c-.017-.042-.156-.353-.213-.48l-.042.3c-.006.044-.018.191-.017.16h-.147c.014-.058.037-.2.048-.27l.035-.25c.009-.071.028-.223.032-.283l.056-.011.077.166.2.429.2-.426.073-.166h.054c.009.065.028.219.038.29l.035.249c.011.074.026.164.048.272Z%22%20transform%3D%22translate(-551.832%20-330.887)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_112%22%20data-name%3D%22Group%20112%22%20transform%3D%22translate(0%204.842)%22%3E%3Cg%20id%3D%22Group_108%22%20data-name%3D%22Group%20108%22%20transform%3D%22translate(0%200.077)%22%3E%3Cg%20id%3D%22Group_107%22%20data-name%3D%22Group%20107%22%3E%3Cpath%20id%3D%22Path_140%22%20data-name%3D%22Path%20140%22%20d%3D%22M234.945%2C330.645a2.494%2C2.494%2C0%2C0%2C0-2.22%2C1.346%2C2.235%2C2.235%2C0%2C0%2C0-2.205-1.346%2C2.33%2C2.33%2C0%2C0%2C0-2.088%2C1.233h0V330.8H227.2v7.254h1.312V333.4a1.64%2C1.64%2C0%2C1%2C1%2C3.279%2C0v4.649H233.1V333.4a1.64%2C1.64%2C0%2C1%2C1%2C3.279%2C0v4.649h1.312V333.17A2.533%2C2.533%2C0%2C0%2C0%2C234.945%2C330.645Z%22%20transform%3D%22translate(-215.391%20-328.176)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_135%22%20data-name%3D%22Rectangle%20135%22%20width%3D%221.312%22%20height%3D%229.877%22%20transform%3D%22translate(38.698%200)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_136%22%20data-name%3D%22Rectangle%20136%22%20width%3D%221.312%22%20height%3D%229.877%22%20transform%3D%22translate(41.322%200)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_141%22%20data-name%3D%22Path%20141%22%20d%3D%22M246.6%2C329.831a2.822%2C2.822%2C0%2C0%2C0-2.391%2C1.16v-3.629h-1.312v9.877h1.234v-1.124a2.866%2C2.866%2C0%2C0%2C0%2C2.469%2C1.279c2.153%2C0%2C3.164-1.543%2C3.164-3.822C249.761%2C331.375%2C248.749%2C329.831%2C246.6%2C329.831Zm-.278%2C6.458c-1.276%2C0-2.141-1.009-2.141-2.646s.868-2.693%2C2.144-2.693%2C2.12%2C1%2C2.12%2C2.637S247.595%2C336.289%2C246.318%2C336.289Z%22%20transform%3D%22translate(-219.281%20-327.362)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_142%22%20data-name%3D%22Path%20142%22%20d%3D%22M220.027%2C327.362h-1.876l-5.339%2C5.223v-5.223H211.5v9.877h1.312V334.42l2.1-2.051%2C3.5%2C4.871h1.616l-4.169-5.8Z%22%20transform%3D%22translate(-211.5%20-327.362)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cpath%20id%3D%22Path_143%22%20data-name%3D%22Path%20143%22%20d%3D%22M259.551%2C336.985c-.278%2C0-.388-.138-.388-.36v-3.871c0-1.249-.845-2.109-2.9-2.109-2.107%2C0-2.9.921-3.01%2C2.315h1.315c0-.848.605-1.2%2C1.7-1.2%2C1.123%2C0%2C1.586.356%2C1.586%2C1.027%2C0%2C.582-.422.866-1.116.95l-1.054.111c-2%2C.194-2.734%2C1.068-2.734%2C2.219%2C0%2C1.373%2C1.161%2C2.145%2C2.7%2C2.145a2.532%2C2.532%2C0%2C0%2C0%2C2.276-1.158%2C1.176%2C1.176%2C0%2C0%2C0%2C1.235%2C1.081%2C1.949%2C1.949%2C0%2C0%2C0%2C.657-.077v-1.068Zm-1.7-1.8a1.918%2C1.918%2C0%2C0%2C1-2.1%2C1.914c-.9%2C0-1.486-.43-1.486-1.082s.5-1.04%2C1.652-1.179l1-.111a1.865%2C1.865%2C0%2C0%2C0%2C.936-.291Z%22%20transform%3D%22translate(-221.773%20-328.176)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Crect%20id%3D%22Rectangle_137%22%20data-name%3D%22Rectangle%20137%22%20width%3D%221.312%22%20height%3D%221.312%22%20transform%3D%22translate(9.182%200)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Crect%20id%3D%22Rectangle_138%22%20data-name%3D%22Rectangle%20138%22%20width%3D%221.312%22%20height%3D%227.253%22%20transform%3D%22translate(9.182%202.624)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_111%22%20data-name%3D%22Group%20111%22%20transform%3D%22translate(43.212)%22%3E%3Cg%20id%3D%22Group_110%22%20data-name%3D%22Group%20110%22%3E%3Cpath%20id%3D%22Path_144%22%20data-name%3D%22Path%20144%22%20d%3D%22M269.685%2C327.26a.733.733%2C0%2C1%2C0%2C.733.733A.733.733%2C0%2C0%2C0%2C269.685%2C327.26Zm0%2C1.312a.579.579%2C0%2C1%2C1%2C.578-.578A.578.578%2C0%2C0%2C1%2C269.685%2C328.572Z%22%20transform%3D%22translate(-268.952%20-327.26)%22%20fill%3D%22%23fdfefe%22%2F%3E%3Cg%20id%3D%22Group_109%22%20data-name%3D%22Group%20109%22%20transform%3D%22translate(0.457%200.387)%22%3E%3Cpath%20id%3D%22Path_145%22%20data-name%3D%22Path%20145%22%20d%3D%22M269.825%2C328.222h-.1v.246h-.164v-.693h.321c.157%2C0%2C.256.083.256.218a.2.2%2C0%2C0%2C1-.146.2l.171.272h-.185Zm-.1-.128h.146a.094.094%2C0%2C1%2C0%2C0-.187h-.146Z%22%20transform%3D%22translate(-269.559%20-327.775)%22%20fill%3D%22%23fdfefe%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-white.kim-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20id%3D%22Group_7631%22%20data-name%3D%22Group%207631%22%20width%3D%2247.013%22%20height%3D%2210.865%22%20viewBox%3D%220%200%2047.013%2010.865%22%3E%3Cg%20id%3D%22Group_7534%22%20data-name%3D%22Group%207534%22%20opacity%3D%220.996%22%3E%3Cpath%20id%3D%22Path_11762%22%20data-name%3D%22Path%2011762%22%20d%3D%22M707.869%2C179.99h1.393v5.149l5.259-5.149h1.991l-4.494%2C4.246%2C4.587%2C6.273h-1.864l-3.768-5.287-1.712%2C1.621v3.666h-1.393Z%22%20transform%3D%22translate(-707.869%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11763%22%20data-name%3D%22Path%2011763%22%20d%3D%22M732.114%2C179.99h1.313v1.461h-1.313Zm0%2C2.886h1.313v7.633h-1.313Z%22%20transform%3D%22translate(-722.506%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11764%22%20data-name%3D%22Path%2011764%22%20d%3D%22M739.594%2C186.918h1.276v1.088a4.283%2C4.283%2C0%2C0%2C1%2C.83-.822%2C2.489%2C2.489%2C0%2C0%2C1%2C1.447-.437%2C2.28%2C2.28%2C0%2C0%2C1%2C1.476.451%2C2.36%2C2.36%2C0%2C0%2C1%2C.572.758%2C2.786%2C2.786%2C0%2C0%2C1%2C1.01-.913%2C2.822%2C2.822%2C0%2C0%2C1%2C1.3-.3%2C2.138%2C2.138%2C0%2C0%2C1%2C2.109%2C1.117%2C3.673%2C3.673%2C0%2C0%2C1%2C.3%2C1.619v5.106h-1.337V189.26a1.248%2C1.248%2C0%2C0%2C0-.383-1.052%2C1.519%2C1.519%2C0%2C0%2C0-.936-.287%2C1.858%2C1.858%2C0%2C0%2C0-1.308.509%2C2.247%2C2.247%2C0%2C0%2C0-.545%2C1.7v4.461H744.09v-5.005a2.553%2C2.553%2C0%2C0%2C0-.186-1.139%2C1.132%2C1.132%2C0%2C0%2C0-1.093-.536%2C1.89%2C1.89%2C0%2C0%2C0-1.329.566%2C2.771%2C2.771%2C0%2C0%2C0-.6%2C2.049v4.067h-1.29Z%22%20transform%3D%22translate(-727.018%20-183.981)%22%2F%3E%3Cpath%20id%3D%22Path_11765%22%20data-name%3D%22Path%2011765%22%20d%3D%22M769.4%2C179.9h1.252v3.817a2.922%2C2.922%2C0%2C0%2C1%2C1.013-.842%2C2.877%2C2.877%2C0%2C0%2C1%2C1.282-.29%2C3%2C3%2C0%2C0%2C1%2C2.332.984%2C4.191%2C4.191%2C0%2C0%2C1%2C.9%2C2.9%2C4.977%2C4.977%2C0%2C0%2C1-.885%2C3.022%2C2.875%2C2.875%2C0%2C0%2C1-2.454%2C1.2%2C2.528%2C2.528%2C0%2C0%2C1-1.478-.422%2C3.528%2C3.528%2C0%2C0%2C1-.766-.8v.981H769.4Zm4.93%2C8.83a4.1%2C4.1%2C0%2C0%2C0%2C.521-2.191%2C3.6%2C3.6%2C0%2C0%2C0-.521-2.006%2C1.724%2C1.724%2C0%2C0%2C0-1.537-.794%2C2.144%2C2.144%2C0%2C0%2C0-1.547.651%2C2.929%2C2.929%2C0%2C0%2C0-.662%2C2.149%2C4.821%2C4.821%2C0%2C0%2C0%2C.269%2C1.754%2C1.891%2C1.891%2C0%2C0%2C0%2C1.9%2C1.268A1.736%2C1.736%2C0%2C0%2C0%2C774.333%2C188.729Z%22%20transform%3D%22translate(-745.015%20-179.848)%22%2F%3E%3Cpath%20id%3D%22Path_11766%22%20data-name%3D%22Path%2011766%22%20d%3D%22M793.079%2C189.924a.7.7%2C0%2C0%2C0%2C.593-.37%2C1.172%2C1.172%2C0%2C0%2C0%2C.085-.5%2C1.047%2C1.047%2C0%2C0%2C0-.468-.959%2C2.5%2C2.5%2C0%2C0%2C0-1.34-.3%2C1.7%2C1.7%2C0%2C0%2C0-1.428.546%2C1.786%2C1.786%2C0%2C0%2C0-.306.9h-1.2a2.223%2C2.223%2C0%2C0%2C1%2C.917-1.978%2C3.775%2C3.775%2C0%2C0%2C1%2C2.053-.558%2C4.15%2C4.15%2C0%2C0%2C1%2C2.191.516%2C1.752%2C1.752%2C0%2C0%2C1%2C.84%2C1.6v4.418a.579.579%2C0%2C0%2C0%2C.082.322c.053.082.167.122.348.122a1.9%2C1.9%2C0%2C0%2C0%2C.191-.011c.072-.007.149-.018.231-.032v.952a3.933%2C3.933%2C0%2C0%2C1-.46.108%2C3.45%2C3.45%2C0%2C0%2C1-.428.021%2C1.069%2C1.069%2C0%2C0%2C1-.971-.472%2C1.848%2C1.848%2C0%2C0%2C1-.218-.709%2C3.3%2C3.3%2C0%2C0%2C1-1.135.9%2C3.506%2C3.506%2C0%2C0%2C1-1.625.379%2C2.41%2C2.41%2C0%2C0%2C1-1.742-.647%2C2.145%2C2.145%2C0%2C0%2C1-.678-1.62%2C2.093%2C2.093%2C0%2C0%2C1%2C.665-1.652%2C3.179%2C3.179%2C0%2C0%2C1%2C1.75-.722Zm-2.715%2C3.482a1.512%2C1.512%2C0%2C0%2C0%2C.968.322%2C2.94%2C2.94%2C0%2C0%2C0%2C1.316-.315%2C1.77%2C1.77%2C0%2C0%2C0%2C1.077-1.709v-1.037a2.175%2C2.175%2C0%2C0%2C1-.609.251%2C5.089%2C5.089%2C0%2C0%2C1-.731.144l-.776.1a3.016%2C3.016%2C0%2C0%2C0-1.056.293%2C1.14%2C1.14%2C0%2C0%2C0-.6%2C1.072A1.062%2C1.062%2C0%2C0%2C0%2C790.364%2C193.406Z%22%20transform%3D%22translate(-756.606%20-183.959)%22%2F%3E%3Cpath%20id%3D%22Path_11767%22%20data-name%3D%22Path%2011767%22%20d%3D%22M808.7%2C179.99h1.29v10.519H808.7Z%22%20transform%3D%22translate(-768.734%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11768%22%20data-name%3D%22Path%2011768%22%20d%3D%22M815.441%2C179.99h1.29v10.519h-1.29Z%22%20transform%3D%22translate(-772.803%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11769%22%20data-name%3D%22Path%2011769%22%20d%3D%22M823.992%2C181.041a.741.741%2C0%2C0%2C1-1.053%2C0%2C.744.744%2C0%2C0%2C1%2C.526-1.272.715.715%2C0%2C0%2C1%2C.526.217.748.748%2C0%2C0%2C1%2C0%2C1.056Zm-.978-.982a.637.637%2C0%2C0%2C0%2C0%2C.911.634.634%2C0%2C0%2C0%2C.9%2C0%2C.637.637%2C0%2C0%2C0%2C0-.911.606.606%2C0%2C0%2C0-.452-.189A.614.614%2C0%2C0%2C0%2C823.013%2C180.059Zm.441.042a.586.586%2C0%2C0%2C1%2C.218.03.2.2%2C0%2C0%2C1%2C.128.207.18.18%2C0%2C0%2C1-.08.162.292.292%2C0%2C0%2C1-.117.04.187.187%2C0%2C0%2C1%2C.138.08.214.214%2C0%2C0%2C1%2C.048.127v.12a.3.3%2C0%2C0%2C0%2C.005.043l.011.01h-.138V180.9l-.005-.027v-.064a.2.2%2C0%2C0%2C0-.08-.187.356.356%2C0%2C0%2C0-.16-.027h-.112v.322h-.144V180.1Zm.154.13a.371.371%2C0%2C0%2C0-.176-.031h-.122v.3h.128a.379.379%2C0%2C0%2C0%2C.138-.019.13.13%2C0%2C0%2C0%2C.085-.128A.122.122%2C0%2C0%2C0%2C823.609%2C180.23Z%22%20transform%3D%22translate(-777.197%20-179.769)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-white.nof-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20id%3D%22Group_7632%22%20data-name%3D%22Group%207632%22%20width%3D%2282.878%22%20height%3D%228.92%22%20viewBox%3D%220%200%2082.878%208.92%22%3E%3Cg%20id%3D%22Group_7532%22%20data-name%3D%22Group%207532%22%20transform%3D%22translate(0%200)%22%3E%3Cpath%20id%3D%22Path_11789%22%20data-name%3D%22Path%2011789%22%20d%3D%22M922.945%2C441.685a.676.676%2C0%2C1%2C1%2C.681.691.673.673%2C0%2C0%2C1-.681-.691m.681.83a.828.828%2C0%2C1%2C0-.846-.83A.829.829%2C0%2C0%2C0%2C923.626%2C442.515Zm-.175-.763h.17l.245.412h.165l-.271-.42a.248.248%2C0%2C0%2C0%2C.25-.263c0-.189-.112-.271-.335-.271H923.3v.955h.149Zm0-.125v-.292h.191c.106%2C0%2C.213.021.213.138%2C0%2C.146-.112.154-.234.154Z%22%20transform%3D%22translate(-841.588%20-433.594)%22%2F%3E%3Cpath%20id%3D%22Path_11790%22%20data-name%3D%22Path%2011790%22%20d%3D%22M809.964%2C427.291c0%2C1.46-.9%2C1.784-2.023%2C1.784h-4.722c-1.117%2C0-2.021-.324-2.021-1.784v-3.148c0-1.46.9-1.784%2C2.021-1.784h4.722c1.119%2C0%2C2.023.324%2C2.023%2C1.784m-9.934%2C2.723c0%2C2.116.734%2C3.137%2C3.068%2C3.137h4.961c2.334%2C0%2C3.071-1.021%2C3.071-3.137v-2.295c0-2.119-.737-3.137-3.071-3.137H803.1c-2.335%2C0-3.068%2C1.018-3.068%2C3.137Z%22%20transform%3D%22translate(-764.74%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11791%22%20data-name%3D%22Path%2011791%22%20d%3D%22M705.653%2C421.434h1.739l7.886%2C7.527v-7.527h1.167V430H714.71l-7.889-7.527V430h-1.167%22%20transform%3D%22translate(-705.653%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11792%22%20data-name%3D%22Path%2011792%22%20d%3D%22M746.594%2C427.244h-5.783l2.893-4.863M737.859%2C430h1.324l1.069-1.813h6.9L748.226%2C430h1.319l-5.116-8.57h-1.452Z%22%20transform%3D%22translate(-725.818%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11793%22%20data-name%3D%22Path%2011793%22%20d%3D%22M767.577%2C422.38h-4.358v-.947H773.1v.947h-4.358V430h-1.162%22%20transform%3D%22translate(-741.692%20-421.434)%22%2F%3E%3Crect%20id%3D%22Rectangle_2112%22%20data-name%3D%22Rectangle%202112%22%20width%3D%221.166%22%20height%3D%228.568%22%20transform%3D%22translate(32.568)%22%2F%3E%3Cpath%20id%3D%22Path_11794%22%20data-name%3D%22Path%2011794%22%20d%3D%22M833.835%2C421.434h1.734l7.9%2C7.527v-7.527h1.159V430h-1.734L835%2C422.477V430h-1.165%22%20transform%3D%22translate(-785.902%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11795%22%20data-name%3D%22Path%2011795%22%20d%3D%22M874.549%2C427.244h-5.78l2.893-4.863M865.817%2C430h1.319l1.074-1.813h6.9L876.182%2C430h1.324l-5.121-8.57h-1.452Z%22%20transform%3D%22translate(-805.926%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11796%22%20data-name%3D%22Path%2011796%22%20d%3D%22M900.186%2C421.434h1.165v7.62h6.69V430h-7.854%22%20transform%3D%22translate(-827.442%20-421.434)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-white.etc-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20id%3D%22Group_7633%22%20data-name%3D%22Group%207633%22%20width%3D%2228.848%22%20height%3D%2216.623%22%20viewBox%3D%220%200%2028.848%2016.623%22%3E%3Cg%20id%3D%22Group_7537%22%20data-name%3D%22Group%207537%22%20transform%3D%22translate(0%200)%22%3E%3Cg%20id%3D%22Group_7535%22%20data-name%3D%22Group%207535%22%20transform%3D%22translate(0%200)%22%3E%3Cpath%20id%3D%22Path_11785%22%20data-name%3D%22Path%2011785%22%20d%3D%22M220.346%2C259.094a2.98%2C2.98%2C0%2C0%2C0-2.975%2C3.076%2C2.882%2C2.882%2C0%2C0%2C0%2C3.035%2C2.885v.129c-2.118%2C0-3.834%2C2.187-3.834%2C4.728%2C0%2C2.636%2C1.787%2C4.678%2C3.951%2C4.678a5.077%2C5.077%2C0%2C0%2C0%2C2.546-.963%2C4.5%2C4.5%2C0%2C0%2C0%2C1.905-3.56%2C4.3%2C4.3%2C0%2C0%2C0-1.7-3.272c-2.809.919-4.253.754-4.4%2C2.63-.036.456.39-.164.746-.624a2.032%2C2.032%2C0%2C0%2C1%2C.522-.472%2C1.8%2C1.8%2C0%2C0%2C1%2C1.248-.261%2C1.621%2C1.621%2C0%2C0%2C1%2C1.131.73%2C1.888%2C1.888%2C0%2C0%2C1%2C.315%2C1.426%2C1.945%2C1.945%2C0%2C0%2C1-1.942%2C1.73%2C1.766%2C1.766%2C0%2C0%2C1-1.888-1.118%2C3.419%2C3.419%2C0%2C0%2C1-.234-1.21c0-2.635%2C2.81-4.084%2C5-4.987%2C1.271-.521%2C2.751-.537%2C3.281-1.1a1.714%2C1.714%2C0%2C0%2C0%2C.468-1.173c.037-.358-.221-.247-.532.253a2.528%2C2.528%2C0%2C0%2C1-.4.465%2C1.513%2C1.513%2C0%2C0%2C1-1.228.255%2C1.411%2C1.411%2C0%2C0%2C1-1.017-.657%2C1.8%2C1.8%2C0%2C0%2C1-.282-1.282%2C1.759%2C1.759%2C0%2C0%2C1%2C.608-1.138%2C1.4%2C1.4%2C0%2C0%2C1%2C1.153-.359%2C1.8%2C1.8%2C0%2C0%2C1%2C.982.476%2C2.92%2C2.92%2C0%2C0%2C1%2C.723%2C1.01%2C2.183%2C2.183%2C0%2C0%2C1%2C.077%2C1.09c-.263%2C2.07-2.118%2C3.491-4.188%2C4.25a4.612%2C4.612%2C0%2C0%2C1%2C1.67%2C3.443c0%2C2.66-2.989%2C5.082-6.634%2C5.082-3.693%2C0-5.134-2.445-5.134-5.082%2C0-1.809.852-4.653%2C3.817-5.033a3.839%2C3.839%2C0%2C0%2C1-1.953-.744%2C2.835%2C2.835%2C0%2C0%2C1-1.081-2.461c0-1.781%2C1.881-3.3%2C4.4-3.3a5.993%2C5.993%2C0%2C0%2C1%2C4%2C1.5%2C2.933%2C2.933%2C0%2C0%2C1%2C.568.613%2C1.839%2C1.839%2C0%2C0%2C1%2C.334%2C1.046%2C1.814%2C1.814%2C0%2C0%2C1-.257.911%2C1.715%2C1.715%2C0%2C0%2C1-1.5.847%2C1.615%2C1.615%2C0%2C0%2C1-1.646-1.272%2C3.108%2C3.108%2C0%2C0%2C1-.036-.485%2C1.45%2C1.45%2C0%2C0%2C1%2C.518-1.1c.116-.106.233-.221.356-.346a.754.754%2C0%2C0%2C0%2C.269-.718c-.031-.344-.278-.479-.768-.528m9.064%2C15.423a.7.7%2C0%2C0%2C1-.392-.405%2C2.456%2C2.456%2C0%2C0%2C1-.153-.968v-5.791h1.3v-.269h-1.3v-3.546a5.2%2C5.2%2C0%2C0%2C1-3.013%2C3.523%2C3.767%2C3.767%2C0%2C0%2C1-.514.037v.116a.467.467%2C0%2C0%2C1%2C.346.136.473.473%2C0%2C0%2C1%2C.134.348v1.084h0V272.8h0a2.951%2C2.951%2C0%2C0%2C0%2C.189%2C1.032%2C2.1%2C2.1%2C0%2C0%2C0%2C.516.775%2C1.965%2C1.965%2C0%2C0%2C0%2C.767.433%2C3.139%2C3.139%2C0%2C0%2C0%2C.94.137%2C3.056%2C3.056%2C0%2C0%2C0%2C1.246-.261%2C6.323%2C6.323%2C0%2C0%2C0%2C1.036-.572l.019-.156a3.8%2C3.8%2C0%2C0%2C1-.585.291.788.788%2C0%2C0%2C1-.537.039m5.727-6.114a1.215%2C1.215%2C0%2C0%2C0-.431.923%2C1.191%2C1.191%2C0%2C0%2C0%2C.423.92%2C1.471%2C1.471%2C0%2C0%2C0%2C1.017.379%2C1.453%2C1.453%2C0%2C0%2C0%2C1-.379%2C1.191%2C1.191%2C0%2C0%2C0%2C.423-.92%2C1.547%2C1.547%2C0%2C0%2C0-.279-.875%2C2.62%2C2.62%2C0%2C0%2C0-.747-.715%2C3.863%2C3.863%2C0%2C0%2C0-1.1-.477%2C5.02%2C5.02%2C0%2C0%2C0-1.351-.174%2C4.408%2C4.408%2C0%2C0%2C0-1.72.322%2C3.893%2C3.893%2C0%2C0%2C0-1.3.864%2C3.649%2C3.649%2C0%2C0%2C0-.811%2C1.284%2C4.618%2C4.618%2C0%2C0%2C0%2C0%2C3.163%2C3.749%2C3.749%2C0%2C0%2C0%2C.811%2C1.294%2C3.852%2C3.852%2C0%2C0%2C0%2C1.3.872%2C4.408%2C4.408%2C0%2C0%2C0%2C1.72.32%2C5.074%2C5.074%2C0%2C0%2C0%2C1.351-.173%2C3.763%2C3.763%2C0%2C0%2C0%2C1.1-.485%2C2.776%2C2.776%2C0%2C0%2C0%2C.747-.717%2C1.525%2C1.525%2C0%2C0%2C0%2C.279-.881%2C1.2%2C1.2%2C0%2C0%2C0-.423-.913%2C1.442%2C1.442%2C0%2C0%2C0-1-.387%2C1.46%2C1.46%2C0%2C0%2C0-1.017.387%2C1.2%2C1.2%2C0%2C0%2C0-.423.913%2C1.236%2C1.236%2C0%2C0%2C0%2C.431.94c.1.086.2.182.3.287a.393.393%2C0%2C0%2C1%2C.1.387.573.573%2C0%2C0%2C1-.306.355%2C1.566%2C1.566%2C0%2C0%2C1-.613.173.735.735%2C0%2C0%2C0-.108.008.658.658%2C0%2C0%2C1-.09.008%2C1.655%2C1.655%2C0%2C0%2C1-.711-.14%2C1.141%2C1.141%2C0%2C0%2C1-.5-.479%2C2.68%2C2.68%2C0%2C0%2C1-.3-.888%2C7.929%2C7.929%2C0%2C0%2C1-.1-1.392V270.08a7.892%2C7.892%2C0%2C0%2C1%2C.1-1.391%2C2.691%2C2.691%2C0%2C0%2C1%2C.3-.888%2C1.141%2C1.141%2C0%2C0%2C1%2C.5-.479%2C1.655%2C1.655%2C0%2C0%2C1%2C.711-.141%2C1.047%2C1.047%2C0%2C0%2C1%2C.2.017%2C1.543%2C1.543%2C0%2C0%2C1%2C.613.173.578.578%2C0%2C0%2C1%2C.306.354.39.39%2C0%2C0%2C1-.1.387c-.1.105-.2.2-.3.29%22%20transform%3D%22translate(-213.318%20-258.631)%22%2F%3E%3Cpath%20id%3D%22Path_11786%22%20data-name%3D%22Path%2011786%22%20d%3D%22M297.572%2C304.29a1.482%2C1.482%2C0%2C0%2C0-2.075%2C0%2C1.462%2C1.462%2C0%2C0%2C0%2C0%2C2.062%2C1.482%2C1.482%2C0%2C0%2C0%2C2.075%2C0%2C1.459%2C1.459%2C0%2C0%2C0%2C0-2.062%22%20transform%3D%22translate(-270.323%20-290.208)%22%2F%3E%3Cpath%20id%3D%22Path_11787%22%20data-name%3D%22Path%2011787%22%20d%3D%22M305.08%2C311.1v.1h-.129v.429h-.105V311.2h-.122v-.1Z%22%20transform%3D%22translate(-276.875%20-295.116)%22%2F%3E%3Cpath%20id%3D%22Path_11788%22%20data-name%3D%22Path%2011788%22%20d%3D%22M306.689%2C311.029v.55h-.1v-.253l-.173.246h0l-.166-.23v.237h-.1v-.55h0l.267.38.275-.38Z%22%20transform%3D%22translate(-277.842%20-295.07)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-white.itw-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20width%3D%2294.642%22%20height%3D%2212.081%22%20viewBox%3D%220%200%2094.642%2012.081%22%3E%3Cg%20id%3D%22Group_7848%22%20data-name%3D%22Group%207848%22%20transform%3D%22translate(-895.435%20-14.46)%22%3E%3Cg%20id%3D%22Group_7309%22%20data-name%3D%22Group%207309%22%20transform%3D%22translate(895.435%2014.46)%22%3E%3Cpath%20id%3D%22Path_11770%22%20data-name%3D%22Path%2011770%22%20d%3D%22M211.1%2C361.868c.715-.133.915-.467.915-1.879v-4.951c0-1.064-.3-1.329-.915-1.48h4.436c-.747.166-.913.483-.913%2C1.895v4.952c0%2C1.046.25%2C1.329.913%2C1.462Zm2.21-11.8a1.329%2C1.329%2C0%2C0%2C1%2C1.347%2C1.279%2C1.341%2C1.341%2C0%2C0%2C1-2.676%2C0A1.325%2C1.325%2C0%2C0%2C1%2C213.31%2C350.069Z%22%20transform%3D%22translate(-211.1%20-350.069)%22%2F%3E%3Cpath%20id%3D%22Path_11771%22%20data-name%3D%22Path%2011771%22%20d%3D%22M226.536%2C368.109c.73-.133.913-.465.913-1.945V361.2c0-1-.3-1.244-.913-1.4h3.522v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.416-.116.666-.4.666-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.565-2.475-1.645-2.475a1.77%2C1.77%2C0%2C0%2C0-1.064.348%2C2.882%2C2.882%2C0%2C0%2C1%2C2.458-1.146c1.746%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-221.103%20-356.31)%22%2F%3E%3Cpath%20id%3D%22Path_11772%22%20data-name%3D%22Path%2011772%22%20d%3D%22M258.4%2C356.546c0-1-.283-1.246-.915-1.4h.915l2.608-2.626v2.626H263.8v.421h-2.792v5.778a2.689%2C2.689%2C0%2C0%2C0%2C.665%2C2.191c-2.16-.016-3.273-1.561-3.273-3.9Z%22%20transform%3D%22translate(-241.157%20-351.66)%22%2F%3E%3Cpath%20id%3D%22Path_11773%22%20data-name%3D%22Path%2011773%22%20d%3D%22M302.61%2C368.292c.715-.133.915-.481.915-1.961v-4.886c0-1.08-.3-1.314-.915-1.462h3.522v6.831c0%2C1.064.267%2C1.345.916%2C1.478Zm6.247-8.243a1.2%2C1.2%2C0%2C1%2C1-1.262%2C1.2A1.239%2C1.239%2C0%2C0%2C1%2C308.857%2C360.049Z%22%20transform%3D%22translate(-270.401%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11774%22%20data-name%3D%22Path%2011774%22%20d%3D%22M326.853%2C361.412c-.35-1.064-.749-1.28-1.429-1.429h4.387c-.465.133-.665.366-.332%2C1.263.066.133%2C1.3%2C3.64%2C1.363%2C3.789l-1.347%2C3.49Zm4.569-1.429h3.425c-.417.117-.649.366-.25%2C1.345l1.345%2C3.707-1.345%2C3.473Zm7.627%2C0a2.406%2C2.406%2C0%2C0%2C0-1.928%2C1.7c.384-1.064.2-1.529-.366-1.7Z%22%20transform%3D%22translate(-285.185%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11775%22%20data-name%3D%22Path%2011775%22%20d%3D%22M390.045%2C361.262a1.725%2C1.725%2C0%2C0%2C0-1.4-1.279h4.487c-.483.133-.646.383-.3%2C1.247l.2.564%2C1.329%2C3.523L393%2C368.574Zm7.594-1.279c-1%2C.233-1.478.614-2.061%2C1.944.516-1.329.316-1.711-.448-1.944Z%22%20transform%3D%22translate(-326.155%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11776%22%20data-name%3D%22Path%2011776%22%20d%3D%22M440.9%2C368.109c.731-.133.915-.465.915-1.945V361.2c0-1-.3-1.244-.915-1.4h3.523v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.415-.116.665-.4.665-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.566-2.475-1.646-2.475a1.773%2C1.773%2C0%2C0%2C0-1.064.348%2C2.889%2C2.889%2C0%2C0%2C1%2C2.459-1.146c1.747%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-360.012%20-356.31)%22%2F%3E%3Cg%20id%3D%22Group_7306%22%20data-name%3D%22Group%207306%22%20transform%3D%22translate(53.557%203.406)%22%3E%3Cg%20id%3D%22Group_7304%22%20data-name%3D%22Group%207304%22%3E%3Cpath%20id%3D%22Path_11777%22%20data-name%3D%22Path%2011777%22%20d%3D%22M365.917%2C365.248c0%2C1.711.747%2C2.907%2C1.877%2C2.957-2.491-.032-4.536-1.512-4.536-4.22%2C0-2.725%2C2.045-4.205%2C4.553-4.238-1.113.066-1.894%2C1.279-1.894%2C2.975Z%22%20transform%3D%22translate(-363.258%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7305%22%20data-name%3D%22Group%207305%22%20transform%3D%22translate(4.519)%22%3E%3Cpath%20id%3D%22Path_11778%22%20data-name%3D%22Path%2011778%22%20d%3D%22M378.008%2C362.722c0-1.679-.766-2.909-1.9-2.975%2C2.51.051%2C4.555%2C1.529%2C4.555%2C4.221%2C0%2C2.725-2.061%2C4.22-4.571%2C4.237%2C1.146-.049%2C1.912-1.228%2C1.912-2.957Z%22%20transform%3D%22translate(-376.096%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7307%22%20data-name%3D%22Group%207307%22%20transform%3D%22translate(71.35%203.406)%22%3E%3Cpath%20id%3D%22Path_11779%22%20data-name%3D%22Path%2011779%22%20d%3D%22M416.452%2C365.264c0%2C1.728.763%2C2.941%2C2.475%2C2.941a4.834%2C4.834%2C0%2C0%2C1-.5.017c-2.757%2C0-4.618-1.7-4.618-4.237a4.167%2C4.167%2C0%2C0%2C1%2C4.438-4.238c-1.329.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-413.809%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11780%22%20data-name%3D%22Path%2011780%22%20d%3D%22M426.815%2C364.134c1.231-.449%2C1.462-.814%2C1.431-1.728-.066-1.412-.614-2.576-1.827-2.659%2C2.707.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-421.98%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7308%22%20data-name%3D%22Group%207308%22%20transform%3D%22translate(22.527%203.406)%22%3E%3Cpath%20id%3D%22Path_11781%22%20data-name%3D%22Path%2011781%22%20d%3D%22M277.745%2C365.264c0%2C1.728.762%2C2.941%2C2.474%2C2.941a4.808%2C4.808%2C0%2C0%2C1-.5.017c-2.759%2C0-4.618-1.7-4.618-4.237a4.166%2C4.166%2C0%2C0%2C1%2C4.438-4.238c-1.332.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-275.102%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11782%22%20data-name%3D%22Path%2011782%22%20d%3D%22M288.11%2C364.134c1.23-.449%2C1.462-.814%2C1.429-1.728-.066-1.412-.616-2.576-1.828-2.659%2C2.709.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-283.272%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7310%22%20data-name%3D%22Group%207310%22%20transform%3D%22translate(986.27%2017.948)%22%3E%3Cpath%20id%3D%22Path_11783%22%20data-name%3D%22Path%2011783%22%20d%3D%22M472.244%2C360.43c-.194%2C0-.359-.008-.58-.008-.005.053-.005.121-.005.161v.989a3.248%2C3.248%2C0%2C0%2C0%2C.013.372h-.364c.013-.126.019-.453.019-.622v-.508c0-.1%2C0-.253-.008-.392-.218%2C0-.4%2C0-.588.008.008-.086.008-.211.008-.307.239.007.468.011.753.011s.532%2C0%2C.771-.011A2.184%2C2.184%2C0%2C0%2C0%2C472.244%2C360.43Z%22%20transform%3D%22translate(-470.731%20-360.073)%22%2F%3E%3Cpath%20id%3D%22Path_11784%22%20data-name%3D%22Path%2011784%22%20d%3D%22M477.408%2C361.875c-.005-.074-.032-.292-.048-.394l-.1-.7c-.122.265-.447.989-.492%2C1.089l-.122.025c-.04-.094-.362-.81-.489-1.1l-.1.693c-.013.1-.043.439-.037.37h-.34c.032-.133.085-.457.112-.622l.08-.574c.024-.165.066-.516.077-.65l.128-.027.178.384.46.985.457-.978.168-.383h.128c.021.15.064.5.085.669l.082.572c.024.172.061.379.109.625Z%22%20transform%3D%22translate(-473.942%20-359.981)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-white.ppn-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20width%3D%2260.431%22%20height%3D%2212.543%22%20viewBox%3D%220%200%2060.431%2012.543%22%3E%3Cg%20id%3D%22Group_136%22%20data-name%3D%22Group%20136%22%20transform%3D%22translate(-2121%201030.159)%22%3E%3Cpath%20id%3D%22Path_204%22%20data-name%3D%22Path%20204%22%20d%3D%22M2166.519-1029.72a1.7%2C1.7%2C0%2C0%2C0-1.122-.35h-.359a1.683%2C1.683%2C0%2C0%2C0-1.1.359%2C1.616%2C1.616%2C0%2C0%2C0-.44%2C1.31v5.743a1.615%2C1.615%2C0%2C0%2C0%2C.44%2C1.311%2C1.744%2C1.744%2C0%2C0%2C0%2C1.139.357h.358a1.589%2C1.589%2C0%2C0%2C0%2C1.087-.367%2C1.661%2C1.661%2C0%2C0%2C0%2C.422-1.3v-5.743A1.655%2C1.655%2C0%2C0%2C0%2C2166.519-1029.72Z%22%2F%3E%3Cpath%20id%3D%22Path_205%22%20data-name%3D%22Path%20205%22%20d%3D%22M2176.393-1029.1a2.659%2C2.659%2C0%2C0%2C0-.978-.772%2C3.361%2C3.361%2C0%2C0%2C0-1.462-.287%2C3.137%2C3.137%2C0%2C0%2C0-1.768.457%2C4.022%2C4.022%2C0%2C0%2C0-1.158%2C1.176%2C2.426%2C2.426%2C0%2C0%2C0-.332-.745%2C1.792%2C1.792%2C0%2C0%2C0-.475-.476%2C1.774%2C1.774%2C0%2C0%2C0-.565-.251%2C2.654%2C2.654%2C0%2C0%2C0-.6-.072%2C2.587%2C2.587%2C0%2C0%2C0-.924.153c-.268.1-.4.182-.4.242v7.017a1.626%2C1.626%2C0%2C0%2C0%2C.438%2C1.311%2C1.724%2C1.724%2C0%2C0%2C0%2C1.122.357h.36a1.656%2C1.656%2C0%2C0%2C0%2C1.095-.357%2C1.645%2C1.645%2C0%2C0%2C0%2C.43-1.311v-3.984a1.635%2C1.635%2C0%2C0%2C1%2C.539-.511%2C1.525%2C1.525%2C0%2C0%2C1%2C.808-.207%2C1.06%2C1.06%2C0%2C0%2C1%2C.843.351%2C1.41%2C1.41%2C0%2C0%2C1%2C.3.959v3.392a1.619%2C1.619%2C0%2C0%2C0%2C.441%2C1.311%2C1.743%2C1.743%2C0%2C0%2C0%2C1.139.357h.341a1.615%2C1.615%2C0%2C0%2C0%2C1.1-.367%2C1.661%2C1.661%2C0%2C0%2C0%2C.422-1.3v-3.984a5.1%2C5.1%2C0%2C0%2C0-.172-1.337A3.121%2C3.121%2C0%2C0%2C0%2C2176.393-1029.1Z%22%2F%3E%3Cpath%20id%3D%22Path_206%22%20data-name%3D%22Path%20206%22%20d%3D%22M2179.509-1024.718a1.922%2C1.922%2C0%2C0%2C0-1.921%2C1.922%2C1.921%2C1.921%2C0%2C0%2C0%2C1.921%2C1.922%2C1.921%2C1.921%2C0%2C0%2C0%2C1.922-1.922A1.921%2C1.921%2C0%2C0%2C0%2C2179.509-1024.718Z%22%2F%3E%3Cpath%20id%3D%22Path_207%22%20data-name%3D%22Path%20207%22%20d%3D%22M2140.068-1028.876a4.34%2C4.34%2C0%2C0%2C0-1.525-.952%2C5.662%2C5.662%2C0%2C0%2C0-1.983-.331%2C5.81%2C5.81%2C0%2C0%2C0-2%2C.331%2C4.5%2C4.5%2C0%2C0%2C0-1.553.942%2C4.151%2C4.151%2C0%2C0%2C0-1%2C1.472%2C5.006%2C5.006%2C0%2C0%2C0-.35%2C1.9%2C5.264%2C5.264%2C0%2C0%2C0%2C.339%2C1.938%2C4.175%2C4.175%2C0%2C0%2C0%2C.971%2C1.472%2C4.268%2C4.268%2C0%2C0%2C0%2C1.525.943%2C5.794%2C5.794%2C0%2C0%2C0%2C2.011.331%2C5.792%2C5.792%2C0%2C0%2C0%2C2.009-.331%2C4.34%2C4.34%2C0%2C0%2C0%2C1.533-.943%2C4.2%2C4.2%2C0%2C0%2C0%2C.989-1.472%2C5.076%2C5.076%2C0%2C0%2C0%2C.35-1.92%2C5.1%2C5.1%2C0%2C0%2C0-.342-1.911A4.186%2C4.186%2C0%2C0%2C0%2C2140.068-1028.876Zm-3.519%2C5.285a1.922%2C1.922%2C0%2C0%2C1-1.923-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923-1.923%2C1.92%2C1.92%2C0%2C0%2C1%2C1.92%2C1.923A1.92%2C1.92%2C0%2C0%2C1%2C2136.549-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_208%22%20data-name%3D%22Path%20208%22%20d%3D%22M2129.991-1028.911a3.644%2C3.644%2C0%2C0%2C0-1.291-.925%2C4.212%2C4.212%2C0%2C0%2C0-1.67-.323%2C3.019%2C3.019%2C0%2C0%2C0-1.686.466%2C2.587%2C2.587%2C0%2C0%2C0-1.025%2C1.239%2C2.144%2C2.144%2C0%2C0%2C0-.323-.789%2C1.984%2C1.984%2C0%2C0%2C0-.484-.494%2C1.625%2C1.625%2C0%2C0%2C0-.574-.261%2C2.775%2C2.775%2C0%2C0%2C0-.61-.072%2C2.6%2C2.6%2C0%2C0%2C0-.925.153c-.269.1-.4.182-.4.242v10.408a1.59%2C1.59%2C0%2C0%2C0%2C.439%2C1.3%2C1.747%2C1.747%2C0%2C0%2C0%2C1.121.349h.36a1.665%2C1.665%2C0%2C0%2C0%2C1.1-.358%2C1.613%2C1.613%2C0%2C0%2C0%2C.429-1.293v-3.1a2.653%2C2.653%2C0%2C0%2C0%2C1%2C1.114%2C2.868%2C2.868%2C0%2C0%2C0%2C1.588.43%2C3.93%2C3.93%2C0%2C0%2C0%2C1.67-.35%2C3.862%2C3.862%2C0%2C0%2C0%2C1.291-.968%2C4.307%2C4.307%2C0%2C0%2C0%2C.825-1.481%2C5.942%2C5.942%2C0%2C0%2C0%2C.287-1.885%2C6.108%2C6.108%2C0%2C0%2C0-.287-1.937A4.094%2C4.094%2C0%2C0%2C0%2C2129.991-1028.911Zm-3.743%2C5.32a1.922%2C1.922%2C0%2C0%2C1-1.921-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.921-1.923%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923%2C1.923A1.923%2C1.923%2C0%2C0%2C1%2C2126.248-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_209%22%20data-name%3D%22Path%20209%22%20d%3D%22M2151.022-1028.911a3.622%2C3.622%2C0%2C0%2C0-1.292-.925%2C4.2%2C4.2%2C0%2C0%2C0-1.669-.323%2C3.031%2C3.031%2C0%2C0%2C0-1.688.466%2C2.6%2C2.6%2C0%2C0%2C0-1.022%2C1.239%2C2.14%2C2.14%2C0%2C0%2C0-.323-.789%2C1.984%2C1.984%2C0%2C0%2C0-.484-.494%2C1.638%2C1.638%2C0%2C0%2C0-.575-.261%2C2.764%2C2.764%2C0%2C0%2C0-.609-.072%2C2.6%2C2.6%2C0%2C0%2C0-.925.153c-.269.1-.4.182-.4.242v10.408a1.593%2C1.593%2C0%2C0%2C0%2C.438%2C1.3%2C1.749%2C1.749%2C0%2C0%2C0%2C1.123.349h.358a1.648%2C1.648%2C0%2C0%2C0%2C1.094-.358%2C1.606%2C1.606%2C0%2C0%2C0%2C.431-1.293v-3.1a2.675%2C2.675%2C0%2C0%2C0%2C1%2C1.114%2C2.878%2C2.878%2C0%2C0%2C0%2C1.588.43%2C3.915%2C3.915%2C0%2C0%2C0%2C1.669-.35%2C3.837%2C3.837%2C0%2C0%2C0%2C1.292-.968%2C4.333%2C4.333%2C0%2C0%2C0%2C.828-1.481%2C6%2C6%2C0%2C0%2C0%2C.286-1.885%2C6.172%2C6.172%2C0%2C0%2C0-.286-1.937A4.118%2C4.118%2C0%2C0%2C0%2C2151.022-1028.911Zm-3.742%2C5.32a1.921%2C1.921%2C0%2C0%2C1-1.921-1.921%2C1.921%2C1.921%2C0%2C0%2C1%2C1.921-1.923%2C1.924%2C1.924%2C0%2C0%2C1%2C1.923%2C1.923A1.924%2C1.924%2C0%2C0%2C1%2C2147.28-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_210%22%20data-name%3D%22Path%20210%22%20d%3D%22M2161.739-1028.911a3.629%2C3.629%2C0%2C0%2C0-1.291-.925%2C4.215%2C4.215%2C0%2C0%2C0-1.672-.323%2C3.019%2C3.019%2C0%2C0%2C0-1.684.466%2C2.578%2C2.578%2C0%2C0%2C0-1.023%2C1.239%2C2.14%2C2.14%2C0%2C0%2C0-.325-.789%2C1.96%2C1.96%2C0%2C0%2C0-.483-.494%2C1.633%2C1.633%2C0%2C0%2C0-.574-.261%2C2.784%2C2.784%2C0%2C0%2C0-.611-.072%2C2.59%2C2.59%2C0%2C0%2C0-.923.153c-.27.1-.4.182-.4.242v10.408a1.593%2C1.593%2C0%2C0%2C0%2C.438%2C1.3%2C1.752%2C1.752%2C0%2C0%2C0%2C1.124.349h.358a1.659%2C1.659%2C0%2C0%2C0%2C1.1-.358%2C1.619%2C1.619%2C0%2C0%2C0%2C.429-1.293v-3.1a2.66%2C2.66%2C0%2C0%2C0%2C1%2C1.114%2C2.865%2C2.865%2C0%2C0%2C0%2C1.585.43%2C3.933%2C3.933%2C0%2C0%2C0%2C1.672-.35%2C3.845%2C3.845%2C0%2C0%2C0%2C1.291-.968%2C4.3%2C4.3%2C0%2C0%2C0%2C.825-1.481%2C5.887%2C5.887%2C0%2C0%2C0%2C.288-1.885%2C6.053%2C6.053%2C0%2C0%2C0-.288-1.937A4.083%2C4.083%2C0%2C0%2C0%2C2161.739-1028.911Zm-3.742%2C5.32a1.922%2C1.922%2C0%2C0%2C1-1.921-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.921-1.923%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923%2C1.923A1.923%2C1.923%2C0%2C0%2C1%2C2158-1023.591Z%22%2F%3E%3Cg%20id%3D%22Group_135%22%20data-name%3D%22Group%20135%22%3E%3Cpath%20id%3D%22Path_211%22%20data-name%3D%22Path%20211%22%20d%3D%22M2178.55-1029.195a.937.937%2C0%2C0%2C1%2C.96-.964.919.919%2C0%2C0%2C1%2C.961.956.94.94%2C0%2C0%2C1-.962.967A.92.92%2C0%2C0%2C1%2C2178.55-1029.195Zm1.8%2C0a.827.827%2C0%2C0%2C0-.845-.859.814.814%2C0%2C0%2C0-.842.861.821.821%2C0%2C0%2C0%2C.845.856A.815.815%2C0%2C0%2C0%2C2180.354-1029.2Zm-.791.086.344.352c.006.011-.023.054-.07.054a.118.118%2C0%2C0%2C1-.091-.046l-.325-.351h-.126v.337a.054.054%2C0%2C0%2C1-.057.06h-.021c-.035%2C0-.054-.025-.054-.066v-.853a.07.07%2C0%2C0%2C1%2C.071-.078h.3c.247%2C0%2C.383.1.383.3C2179.917-1029.228%2C2179.8-1029.116%2C2179.563-1029.113Zm-.027-.1c.165%2C0%2C.25-.073.25-.194s-.087-.191-.256-.191h-.238v.385Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.kii-font.kii-font-color-brandbar.kii-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23a3a3a4%22%20id%3D%22Group_7625%22%20data-name%3D%22Group%207625%22%20width%3D%22273.869%22%20height%3D%2222%22%20viewBox%3D%220%200%20273.869%2022%22%3E%3Cg%20id%3D%22Group_7347%22%20data-name%3D%22Group%207347%22%20transform%3D%22translate(0.888%200.026)%22%3E%3Cpath%20id%3D%22Path_11869%22%20data-name%3D%22Path%2011869%22%20d%3D%22M689.805%2C111.928a10.839%2C10.839%2C0%2C0%2C0-19.915%2C0Z%22%20transform%3D%22translate(-669.89%20-105.371)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7348%22%20data-name%3D%22Group%207348%22%20transform%3D%22translate(0.899%2015.14)%22%3E%3Cpath%20id%3D%22Path_11870%22%20data-name%3D%22Path%2011870%22%20d%3D%22M689.82%2C124.2a10.84%2C10.84%2C0%2C0%2C1-19.916%2C0Z%22%20transform%3D%22translate(-669.904%20-124.202)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7349%22%20data-name%3D%22Group%207349%22%20transform%3D%22translate(0.362%207.826)%22%3E%3Cpath%20id%3D%22Path_11871%22%20data-name%3D%22Path%2011871%22%20d%3D%22M690.205%2C115.369a1.714%2C1.714%2C0%2C0%2C0-.079-.28H669.312a1.516%2C1.516%2C0%2C0%2C0-.078.28h5.909v.789h8.951v-.789Z%22%20transform%3D%22translate(-669.234%20-115.089)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7350%22%20data-name%3D%22Group%207350%22%20transform%3D%22translate(0.093%209.281)%22%3E%3Cpath%20id%3D%22Path_11872%22%20data-name%3D%22Path%2011872%22%20d%3D%22M690.381%2C116.9H668.93a1.438%2C1.438%2C0%2C0%2C0-.029.279h6.176v.789h8.953v-.789h6.381a1.368%2C1.368%2C0%2C0%2C0-.03-.279%22%20transform%3D%22translate(-668.9%20-116.902)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7351%22%20data-name%3D%22Group%207351%22%20transform%3D%22translate(0%2010.734)%22%3E%3Cpath%20id%3D%22Path_11873%22%20data-name%3D%22Path%2011873%22%20d%3D%22M690.46%2C118.713H668.793a1.389%2C1.389%2C0%2C0%2C0-.006.278l.013%2C0h6.254v.787h8.952v-.787h6.46a1.285%2C1.285%2C0%2C0%2C0-.006-.28%22%20transform%3D%22translate(-668.784%20-118.713)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7352%22%20data-name%3D%22Group%207352%22%20transform%3D%22translate(0.104%2012.291)%22%3E%3Cpath%20id%3D%22Path_11874%22%20data-name%3D%22Path%2011874%22%20d%3D%22M668.955%2C120.931a1.282%2C1.282%2C0%2C0%2C1-.042-.278H690.4a1.256%2C1.256%2C0%2C0%2C1-.042.278h-21.4Z%22%20transform%3D%22translate(-668.913%20-120.653)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7353%22%20data-name%3D%22Group%207353%22%20transform%3D%22translate(0.402%2013.3)%22%3E%3Cpath%20id%3D%22Path_11875%22%20data-name%3D%22Path%2011875%22%20d%3D%22M690.178%2C122.355h-6.073v-.445h-8.953v.445h-5.867v0a1.711%2C1.711%2C0%2C0%2C0%2C.076.272l0%2C0h5.788v.445h8.953v-.445h6a1.9%2C1.9%2C0%2C0%2C0%2C.078-.278%22%20transform%3D%22translate(-669.285%20-121.91)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7354%22%20data-name%3D%22Group%207354%22%20transform%3D%22translate(31.369%200)%22%3E%3Cpath%20id%3D%22Path_11876%22%20data-name%3D%22Path%2011876%22%20d%3D%22M707.869%2C105.56h2.813v10.425l10.656-10.425h4.035l-9.1%2C8.6%2C9.289%2C12.7h-3.775l-7.632-10.7-3.471%2C3.279v7.424h-2.813Z%22%20transform%3D%22translate(-707.869%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11877%22%20data-name%3D%22Path%2011877%22%20d%3D%22M732.114%2C105.56h2.654v2.957h-2.654Zm0%2C5.843h2.654v15.457h-2.654Z%22%20transform%3D%22translate(-712.656%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11878%22%20data-name%3D%22Path%2011878%22%20d%3D%22M739.594%2C112.664h2.581v2.2a8.682%2C8.682%2C0%2C0%2C1%2C1.681-1.668%2C5.064%2C5.064%2C0%2C0%2C1%2C2.929-.884%2C4.606%2C4.606%2C0%2C0%2C1%2C2.986.914%2C4.767%2C4.767%2C0%2C0%2C1%2C1.161%2C1.537%2C5.632%2C5.632%2C0%2C0%2C1%2C2.045-1.849%2C5.693%2C5.693%2C0%2C0%2C1%2C2.638-.6q3.132%2C0%2C4.263%2C2.262a7.389%2C7.389%2C0%2C0%2C1%2C.608%2C3.277v10.338h-2.711V117.406a2.512%2C2.512%2C0%2C0%2C0-.776-2.132%2C3.072%2C3.072%2C0%2C0%2C0-1.892-.58%2C3.755%2C3.755%2C0%2C0%2C0-2.646%2C1.03%2C4.52%2C4.52%2C0%2C0%2C0-1.109%2C3.437v9.033H748.7V118.058a5.27%2C5.27%2C0%2C0%2C0-.377-2.306%2C2.3%2C2.3%2C0%2C0%2C0-2.219-1.087%2C3.828%2C3.828%2C0%2C0%2C0-2.689%2C1.145q-1.21%2C1.146-1.21%2C4.147v8.236h-2.61Z%22%20transform%3D%22translate(-714.133%20-106.716)%22%2F%3E%3Cpath%20id%3D%22Path_11879%22%20data-name%3D%22Path%2011879%22%20d%3D%22M769.4%2C105.469h2.538V113.2a5.72%2C5.72%2C0%2C0%2C1%2C4.644-2.291%2C6.083%2C6.083%2C0%2C0%2C1%2C4.722%2C1.994q1.813%2C1.994%2C1.813%2C5.88a10.056%2C10.056%2C0%2C0%2C1-1.79%2C6.119%2C5.815%2C5.815%2C0%2C0%2C1-4.964%2C2.436%2C5.094%2C5.094%2C0%2C0%2C1-3-.856%2C7.171%2C7.171%2C0%2C0%2C1-1.558-1.624v1.986H769.4Zm9.98%2C17.878a8.261%2C8.261%2C0%2C0%2C0%2C1.054-4.437%2C7.267%2C7.267%2C0%2C0%2C0-1.054-4.06%2C3.476%2C3.476%2C0%2C0%2C0-3.106-1.609%2C4.338%2C4.338%2C0%2C0%2C0-3.135%2C1.319q-1.347%2C1.319-1.346%2C4.35a9.593%2C9.593%2C0%2C0%2C0%2C.552%2C3.552%2C3.82%2C3.82%2C0%2C0%2C0%2C3.856%2C2.567A3.5%2C3.5%2C0%2C0%2C0%2C779.383%2C123.347Z%22%20transform%3D%22translate(-720.018%20-105.364)%22%2F%3E%3Cpath%20id%3D%22Path_11880%22%20data-name%3D%22Path%2011880%22%20d%3D%22M797.657%2C118.788a1.419%2C1.419%2C0%2C0%2C0%2C1.2-.752%2C2.332%2C2.332%2C0%2C0%2C0%2C.174-1%2C2.133%2C2.133%2C0%2C0%2C0-.948-1.943%2C5.058%2C5.058%2C0%2C0%2C0-2.713-.6%2C3.435%2C3.435%2C0%2C0%2C0-2.894%2C1.108%2C3.657%2C3.657%2C0%2C0%2C0-.623%2C1.822h-2.436q.073-2.88%2C1.86-4.006a7.62%2C7.62%2C0%2C0%2C1%2C4.149-1.128%2C8.436%2C8.436%2C0%2C0%2C1%2C4.446%2C1.044%2C3.542%2C3.542%2C0%2C0%2C1%2C1.7%2C3.248v8.947a1.139%2C1.139%2C0%2C0%2C0%2C.167.652.8.8%2C0%2C0%2C0%2C.7.246c.116%2C0%2C.246-.007.392-.022s.3-.036.464-.065v1.928a7.186%2C7.186%2C0%2C0%2C1-.928.217%2C6.647%2C6.647%2C0%2C0%2C1-.87.044%2C2.149%2C2.149%2C0%2C0%2C1-1.958-.957%2C3.719%2C3.719%2C0%2C0%2C1-.449-1.436%2C6.632%2C6.632%2C0%2C0%2C1-2.29%2C1.812%2C7.094%2C7.094%2C0%2C0%2C1-3.291.769%2C4.9%2C4.9%2C0%2C0%2C1-3.531-1.311%2C4.356%2C4.356%2C0%2C0%2C1-1.37-3.281%2C4.221%2C4.221%2C0%2C0%2C1%2C1.349-3.345%2C6.42%2C6.42%2C0%2C0%2C1%2C3.538-1.462Zm-5.5%2C7.051a3.065%2C3.065%2C0%2C0%2C0%2C1.957.651%2C5.96%2C5.96%2C0%2C0%2C0%2C2.668-.636%2C3.585%2C3.585%2C0%2C0%2C0%2C2.175-3.46v-2.1a4.431%2C4.431%2C0%2C0%2C1-1.229.509%2C10.409%2C10.409%2C0%2C0%2C1-1.477.291l-1.577.2a6.092%2C6.092%2C0%2C0%2C0-2.132.593%2C2.307%2C2.307%2C0%2C0%2C0-1.211%2C2.17A2.141%2C2.141%2C0%2C0%2C0%2C792.162%2C125.839Z%22%20transform%3D%22translate(-723.81%20-106.709)%22%2F%3E%3Cpath%20id%3D%22Path_11881%22%20data-name%3D%22Path%2011881%22%20d%3D%22M808.7%2C105.56h2.61v21.3H808.7Z%22%20transform%3D%22translate(-727.776%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11882%22%20data-name%3D%22Path%2011882%22%20d%3D%22M815.441%2C105.56h2.61v21.3h-2.61Z%22%20transform%3D%22translate(-729.107%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11883%22%20data-name%3D%22Path%2011883%22%20d%3D%22M825.3%2C107.915a1.513%2C1.513%2C0%2C1%2C1%2C.441-1.071A1.456%2C1.456%2C0%2C0%2C1%2C825.3%2C107.915Zm-1.987-1.989a1.259%2C1.259%2C0%2C0%2C0-.378.919%2C1.272%2C1.272%2C0%2C0%2C0%2C.376.925%2C1.295%2C1.295%2C0%2C0%2C0%2C1.838%2C0%2C1.312%2C1.312%2C0%2C0%2C0%2C0-1.844%2C1.295%2C1.295%2C0%2C0%2C0-1.836%2C0Zm.889.084a1.278%2C1.278%2C0%2C0%2C1%2C.452.059.411.411%2C0%2C0%2C1%2C.257.421.364.364%2C0%2C0%2C1-.161.327.638.638%2C0%2C0%2C1-.24.08.4.4%2C0%2C0%2C1%2C.285.162.459.459%2C0%2C0%2C1%2C.09.257v.121c0%2C.038%2C0%2C.079%2C0%2C.123a.277.277%2C0%2C0%2C0%2C.015.087l.01.02h-.273l0-.016%2C0-.018-.006-.054v-.131a.4.4%2C0%2C0%2C0-.156-.379.7.7%2C0%2C0%2C0-.326-.054h-.231v.652h-.291v-1.657Zm.315.261a.762.762%2C0%2C0%2C0-.353-.061h-.25v.6h.264a.785.785%2C0%2C0%2C0%2C.279-.037.3.3%2C0%2C0%2C0%2C.061-.5Z%22%20transform%3D%22translate(-730.545%20-105.338)%22%2F%3E%3Cpath%20id%3D%22Path_11884%22%20data-name%3D%22Path%2011884%22%20d%3D%22M830.313%2C126.839v-21.38h2.02v21.38Z%22%20transform%3D%22translate(-732.043%20-105.362)%22%2F%3E%3Cpath%20id%3D%22Path_11885%22%20data-name%3D%22Path%2011885%22%20d%3D%22M838.2%2C128.213h-1.782V112.831H838.2v2.138a11.3%2C11.3%2C0%2C0%2C1%2C2.213-1.841%2C5.087%2C5.087%2C0%2C0%2C1%2C2.746-.713%2C7.03%2C7.03%2C0%2C0%2C1%2C2.643.49%2C4.52%2C4.52%2C0%2C0%2C1%2C2.049%2C1.708%2C3.841%2C3.841%2C0%2C0%2C1%2C.667%2C1.708%2C15.324%2C15.324%2C0%2C0%2C1%2C.1%2C1.826v10.067h-1.781V118.176a4.588%2C4.588%2C0%2C0%2C0-.92-3.118%2C3.911%2C3.911%2C0%2C0%2C0-3.059-1.039%2C4.351%2C4.351%2C0%2C0%2C0-1.514.253%2C4.772%2C4.772%2C0%2C0%2C0-1.233.668%2C4.468%2C4.468%2C0%2C0%2C0-.935.95%2C4.393%2C4.393%2C0%2C0%2C0-.594%2C1.128%2C5.633%2C5.633%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-733.249%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11886%22%20data-name%3D%22Path%2011886%22%20d%3D%22M860.536%2C127.322q-.327.059-.861.208a4.449%2C4.449%2C0%2C0%2C1-1.189.148%2C2.831%2C2.831%2C0%2C0%2C1-2.034-.668%2C3.254%2C3.254%2C0%2C0%2C1-.7-2.391V113.366h-2.168v-1.485h2.168v-4.276h1.782v4.276h2.88v1.485h-2.88v10.542q0%2C.565.029.98a1.624%2C1.624%2C0%2C0%2C0%2C.178.683.846.846%2C0%2C0%2C0%2C.46.386%2C2.549%2C2.549%2C0%2C0%2C0%2C.876.119%2C4.533%2C4.533%2C0%2C0%2C0%2C.727-.059q.371-.059.728-.148Z%22%20transform%3D%22translate(-736.638%20-105.786)%22%2F%3E%3Cpath%20id%3D%22Path_11887%22%20data-name%3D%22Path%2011887%22%20d%3D%22M865.219%2C120.937a8.31%2C8.31%2C0%2C0%2C0%2C.326%2C2.361%2C5.684%2C5.684%2C0%2C0%2C0%2C.965%2C1.93%2C4.665%2C4.665%2C0%2C0%2C0%2C1.618%2C1.307%2C4.981%2C4.981%2C0%2C0%2C0%2C2.257.49%2C4.908%2C4.908%2C0%2C0%2C0%2C3-.921%2C4.437%2C4.437%2C0%2C0%2C0%2C1.664-2.613h1.989a9.556%2C9.556%2C0%2C0%2C1-.861%2C2.034%2C6.252%2C6.252%2C0%2C0%2C1-1.336%2C1.634%2C5.765%2C5.765%2C0%2C0%2C1-1.9%2C1.083%2C7.7%2C7.7%2C0%2C0%2C1-2.555.386%2C7.458%2C7.458%2C0%2C0%2C1-3.177-.624%2C5.994%2C5.994%2C0%2C0%2C1-2.2-1.708%2C7.207%2C7.207%2C0%2C0%2C1-1.277-2.553%2C11.564%2C11.564%2C0%2C0%2C1-.416-3.163%2C10.055%2C10.055%2C0%2C0%2C1%2C.49-3.177%2C8.088%2C8.088%2C0%2C0%2C1%2C1.4-2.6%2C6.491%2C6.491%2C0%2C0%2C1%2C2.213-1.753%2C6.687%2C6.687%2C0%2C0%2C1%2C2.969-.638%2C6.132%2C6.132%2C0%2C0%2C1%2C4.989%2C2.183q1.812%2C2.183%2C1.782%2C6.339Zm10.036-1.485a7.084%2C7.084%2C0%2C0%2C0-.311-2.123%2C4.974%2C4.974%2C0%2C0%2C0-.921-1.722%2C4.388%2C4.388%2C0%2C0%2C0-1.53-1.158%2C4.919%2C4.919%2C0%2C0%2C0-2.108-.431%2C4.686%2C4.686%2C0%2C0%2C0-2.093.445%2C4.811%2C4.811%2C0%2C0%2C0-1.544%2C1.188%2C5.991%2C5.991%2C0%2C0%2C0-1.025%2C1.722%2C7.93%2C7.93%2C0%2C0%2C0-.5%2C2.079Z%22%20transform%3D%22translate(-738.559%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11888%22%20data-name%3D%22Path%2011888%22%20d%3D%22M885.3%2C128.213h-1.781V112.831H885.3v2.88h.059a5.16%2C5.16%2C0%2C0%2C1%2C1.915-2.568%2C5.828%2C5.828%2C0%2C0%2C1%2C3.1-.728v1.93a5.212%2C5.212%2C0%2C0%2C0-2.494.475%2C4.113%2C4.113%2C0%2C0%2C0-1.559%2C1.366%2C5.388%2C5.388%2C0%2C0%2C0-.8%2C2.034%2C13.128%2C13.128%2C0%2C0%2C0-.223%2C2.45Z%22%20transform%3D%22translate(-742.548%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11889%22%20data-name%3D%22Path%2011889%22%20d%3D%22M896.032%2C128.213H894.25V112.831h1.782v2.138a11.287%2C11.287%2C0%2C0%2C1%2C2.213-1.841%2C5.086%2C5.086%2C0%2C0%2C1%2C2.746-.713%2C7.028%2C7.028%2C0%2C0%2C1%2C2.643.49%2C4.52%2C4.52%2C0%2C0%2C1%2C2.049%2C1.708%2C3.842%2C3.842%2C0%2C0%2C1%2C.668%2C1.708%2C15.375%2C15.375%2C0%2C0%2C1%2C.1%2C1.826v10.067h-1.782V118.176a4.588%2C4.588%2C0%2C0%2C0-.921-3.118%2C3.911%2C3.911%2C0%2C0%2C0-3.059-1.039%2C4.349%2C4.349%2C0%2C0%2C0-1.514.253%2C4.778%2C4.778%2C0%2C0%2C0-1.233.668%2C4.459%2C4.459%2C0%2C0%2C0-.935.95%2C4.392%2C4.392%2C0%2C0%2C0-.594%2C1.128%2C5.662%2C5.662%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-744.666%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11890%22%20data-name%3D%22Path%2011890%22%20d%3D%22M920.219%2C119.245q.5-.059%2C1.2-.178a4.49%2C4.49%2C0%2C0%2C0%2C1.143-.327.946.946%2C0%2C0%2C0%2C.55-.7%2C4.361%2C4.361%2C0%2C0%2C0%2C.1-.906%2C3.037%2C3.037%2C0%2C0%2C0-.877-2.242%2C4.089%2C4.089%2C0%2C0%2C0-2.955-.876%2C8.16%2C8.16%2C0%2C0%2C0-1.692.164%2C3.674%2C3.674%2C0%2C0%2C0-1.352.564%2C3.109%2C3.109%2C0%2C0%2C0-.95%2C1.069%2C4.528%2C4.528%2C0%2C0%2C0-.49%2C1.677h-1.811a5.512%2C5.512%2C0%2C0%2C1%2C.624-2.331%2C4.715%2C4.715%2C0%2C0%2C1%2C1.381-1.574%2C5.737%2C5.737%2C0%2C0%2C1%2C1.959-.89%2C9.593%2C9.593%2C0%2C0%2C1%2C2.36-.283%2C9.169%2C9.169%2C0%2C0%2C1%2C2.183.252%2C5.056%2C5.056%2C0%2C0%2C1%2C1.782.8%2C3.731%2C3.731%2C0%2C0%2C1%2C1.188%2C1.47A5.3%2C5.3%2C0%2C0%2C1%2C925%2C117.2v8.374q0%2C1.04.372%2C1.322t1.5-.134v1.4c-.139.04-.342.1-.609.178a2.78%2C2.78%2C0%2C0%2C1-.787.119%2C3.555%2C3.555%2C0%2C0%2C1-.8-.089%2C1.375%2C1.375%2C0%2C0%2C1-.712-.282%2C1.741%2C1.741%2C0%2C0%2C1-.431-.535%2C2.225%2C2.225%2C0%2C0%2C1-.222-.683%2C4.9%2C4.9%2C0%2C0%2C1-.059-.787%2C7.742%2C7.742%2C0%2C0%2C1-2.583%2C1.9%2C7.605%2C7.605%2C0%2C0%2C1-3.148.653%2C7.038%2C7.038%2C0%2C0%2C1-1.945-.267%2C4.7%2C4.7%2C0%2C0%2C1-1.648-.831%2C4.125%2C4.125%2C0%2C0%2C1-1.129-1.38%2C4.242%2C4.242%2C0%2C0%2C1-.415-1.945q0-3.92%2C5.375-4.632Zm3%2C.891a8.726%2C8.726%2C0%2C0%2C1-2.287.624q-1.158.149-2.317.238a6.534%2C6.534%2C0%2C0%2C0-3.191.921%2C2.64%2C2.64%2C0%2C0%2C0-1.143%2C2.346%2C2.53%2C2.53%2C0%2C0%2C0%2C.283%2C1.232%2C2.588%2C2.588%2C0%2C0%2C0%2C.741.862%2C3.161%2C3.161%2C0%2C0%2C0%2C1.069.5%2C4.761%2C4.761%2C0%2C0%2C0%2C1.233.163%2C8.086%2C8.086%2C0%2C0%2C0%2C2.078-.267%2C5.643%2C5.643%2C0%2C0%2C0%2C1.8-.816%2C4.2%2C4.2%2C0%2C0%2C0%2C1.262-1.4%2C4.036%2C4.036%2C0%2C0%2C0%2C.475-2Z%22%20transform%3D%22translate(-748.246%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11891%22%20data-name%3D%22Path%2011891%22%20d%3D%22M937.46%2C127.322q-.329.059-.861.208a4.451%2C4.451%2C0%2C0%2C1-1.188.148%2C2.83%2C2.83%2C0%2C0%2C1-2.034-.668%2C3.254%2C3.254%2C0%2C0%2C1-.7-2.391V113.366h-2.168v-1.485h2.168v-4.276h1.782v4.276h2.88v1.485h-2.88v10.542c0%2C.376.009.7.029.98a1.628%2C1.628%2C0%2C0%2C0%2C.177.683.848.848%2C0%2C0%2C0%2C.461.386%2C2.545%2C2.545%2C0%2C0%2C0%2C.876.119%2C4.542%2C4.542%2C0%2C0%2C0%2C.728-.059q.371-.059.728-.148Z%22%20transform%3D%22translate(-751.825%20-105.786)%22%2F%3E%3Cpath%20id%3D%22Path_11892%22%20data-name%3D%22Path%2011892%22%20d%3D%22M942.2%2C108.1v-2.643h1.961V108.1Zm.089%2C18.738V111.457h1.782v15.382Z%22%20transform%3D%22translate(-754.134%20-105.362)%22%2F%3E%3Cpath%20id%3D%22Path_11893%22%20data-name%3D%22Path%2011893%22%20d%3D%22M954.584%2C128.628a8.02%2C8.02%2C0%2C0%2C1-2.777-.535%2C6.215%2C6.215%2C0%2C0%2C1-2.257-1.514%2C7.27%2C7.27%2C0%2C0%2C1-1.529-2.524%2C10.1%2C10.1%2C0%2C0%2C1-.564-3.534%2C10.854%2C10.854%2C0%2C0%2C1%2C.446-3.162%2C7.466%2C7.466%2C0%2C0%2C1%2C1.336-2.569%2C6.356%2C6.356%2C0%2C0%2C1%2C2.227-1.738%2C7.171%2C7.171%2C0%2C0%2C1%2C3.118-.638%2C7.252%2C7.252%2C0%2C0%2C1%2C3.148.638%2C6.437%2C6.437%2C0%2C0%2C1%2C2.227%2C1.722%2C7.153%2C7.153%2C0%2C0%2C1%2C1.322%2C2.569%2C11.421%2C11.421%2C0%2C0%2C1%2C.43%2C3.177%2C10.293%2C10.293%2C0%2C0%2C1-.5%2C3.326%2C7.5%2C7.5%2C0%2C0%2C1-1.44%2C2.554%2C6.341%2C6.341%2C0%2C0%2C1-2.257%2C1.648A7.219%2C7.219%2C0%2C0%2C1%2C954.584%2C128.628Zm5.226-8.107a10.539%2C10.539%2C0%2C0%2C0-.3-2.554%2C6.074%2C6.074%2C0%2C0%2C0-.921-2.063%2C4.438%2C4.438%2C0%2C0%2C0-1.6-1.381%2C5.212%2C5.212%2C0%2C0%2C0-2.405-.5%2C4.88%2C4.88%2C0%2C0%2C0-2.391.55%2C4.663%2C4.663%2C0%2C0%2C0-1.618%2C1.455%2C6.4%2C6.4%2C0%2C0%2C0-.921%2C2.078%2C9.856%2C9.856%2C0%2C0%2C0-.3%2C2.421%2C9.622%2C9.622%2C0%2C0%2C0%2C.341%2C2.628%2C6.139%2C6.139%2C0%2C0%2C0%2C1%2C2.063%2C4.453%2C4.453%2C0%2C0%2C0%2C1.632%2C1.336%2C5.114%2C5.114%2C0%2C0%2C0%2C2.258.475%2C4.88%2C4.88%2C0%2C0%2C0%2C2.39-.549%2C4.62%2C4.62%2C0%2C0%2C0%2C1.619-1.47%2C6.609%2C6.609%2C0%2C0%2C0%2C.921-2.079A9.673%2C9.673%2C0%2C0%2C0%2C959.81%2C120.522Z%22%20transform%3D%22translate(-755.171%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11894%22%20data-name%3D%22Path%2011894%22%20d%3D%22M970.329%2C128.213h-1.782V112.831h1.782v2.138a11.312%2C11.312%2C0%2C0%2C1%2C2.212-1.841%2C5.091%2C5.091%2C0%2C0%2C1%2C2.747-.713%2C7.028%2C7.028%2C0%2C0%2C1%2C2.643.49%2C4.519%2C4.519%2C0%2C0%2C1%2C2.049%2C1.708%2C3.842%2C3.842%2C0%2C0%2C1%2C.668%2C1.708%2C15.4%2C15.4%2C0%2C0%2C1%2C.1%2C1.826v10.067H978.97V118.176a4.586%2C4.586%2C0%2C0%2C0-.921-3.118%2C3.91%2C3.91%2C0%2C0%2C0-3.058-1.039%2C4.358%2C4.358%2C0%2C0%2C0-1.515.253%2C4.782%2C4.782%2C0%2C0%2C0-1.232.668%2C4.465%2C4.465%2C0%2C0%2C0-.935.95%2C4.39%2C4.39%2C0%2C0%2C0-.594%2C1.128%2C5.614%2C5.614%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-759.335%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11895%22%20data-name%3D%22Path%2011895%22%20d%3D%22M994.516%2C119.245q.5-.059%2C1.2-.178a4.5%2C4.5%2C0%2C0%2C0%2C1.143-.327.945.945%2C0%2C0%2C0%2C.55-.7%2C4.34%2C4.34%2C0%2C0%2C0%2C.1-.906%2C3.04%2C3.04%2C0%2C0%2C0-.876-2.242%2C4.09%2C4.09%2C0%2C0%2C0-2.955-.876%2C8.163%2C8.163%2C0%2C0%2C0-1.692.164%2C3.674%2C3.674%2C0%2C0%2C0-1.351.564%2C3.108%2C3.108%2C0%2C0%2C0-.95%2C1.069%2C4.531%2C4.531%2C0%2C0%2C0-.49%2C1.677h-1.812a5.511%2C5.511%2C0%2C0%2C1%2C.625-2.331%2C4.728%2C4.728%2C0%2C0%2C1%2C1.38-1.574%2C5.749%2C5.749%2C0%2C0%2C1%2C1.96-.89%2C9.59%2C9.59%2C0%2C0%2C1%2C2.36-.283%2C9.168%2C9.168%2C0%2C0%2C1%2C2.183.252%2C5.059%2C5.059%2C0%2C0%2C1%2C1.782.8%2C3.735%2C3.735%2C0%2C0%2C1%2C1.188%2C1.47%2C5.3%2C5.3%2C0%2C0%2C1%2C.43%2C2.257v8.374q0%2C1.04.372%2C1.322t1.5-.134v1.4c-.138.04-.341.1-.608.178a2.787%2C2.787%2C0%2C0%2C1-.787.119%2C3.544%2C3.544%2C0%2C0%2C1-.8-.089%2C1.38%2C1.38%2C0%2C0%2C1-.713-.282%2C1.756%2C1.756%2C0%2C0%2C1-.43-.535%2C2.231%2C2.231%2C0%2C0%2C1-.222-.683%2C4.891%2C4.891%2C0%2C0%2C1-.06-.787%2C7.74%2C7.74%2C0%2C0%2C1-2.584%2C1.9%2C7.607%2C7.607%2C0%2C0%2C1-3.148.653%2C7.04%2C7.04%2C0%2C0%2C1-1.944-.267%2C4.692%2C4.692%2C0%2C0%2C1-1.648-.831%2C4.127%2C4.127%2C0%2C0%2C1-1.129-1.38%2C4.244%2C4.244%2C0%2C0%2C1-.415-1.945q0-3.92%2C5.375-4.632Zm3%2C.891a8.718%2C8.718%2C0%2C0%2C1-2.286.624q-1.158.149-2.317.238a6.535%2C6.535%2C0%2C0%2C0-3.192.921%2C2.64%2C2.64%2C0%2C0%2C0-1.143%2C2.346%2C2.538%2C2.538%2C0%2C0%2C0%2C.282%2C1.232%2C2.586%2C2.586%2C0%2C0%2C0%2C.742.862%2C3.15%2C3.15%2C0%2C0%2C0%2C1.069.5%2C4.761%2C4.761%2C0%2C0%2C0%2C1.232.163%2C8.089%2C8.089%2C0%2C0%2C0%2C2.078-.267%2C5.641%2C5.641%2C0%2C0%2C0%2C1.8-.816%2C4.2%2C4.2%2C0%2C0%2C0%2C1.262-1.4%2C4.037%2C4.037%2C0%2C0%2C0%2C.475-2Z%22%20transform%3D%22translate(-762.915%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11896%22%20data-name%3D%22Path%2011896%22%20d%3D%22M1007.8%2C126.839v-21.38h1.781v21.38Z%22%20transform%3D%22translate(-767.086%20-105.362)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-brandbar.kim-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23a3a3a4%22%20id%3D%22Group_7631%22%20data-name%3D%22Group%207631%22%20width%3D%2247.013%22%20height%3D%2210.865%22%20viewBox%3D%220%200%2047.013%2010.865%22%3E%3Cg%20id%3D%22Group_7534%22%20data-name%3D%22Group%207534%22%20opacity%3D%220.996%22%3E%3Cpath%20id%3D%22Path_11762%22%20data-name%3D%22Path%2011762%22%20d%3D%22M707.869%2C179.99h1.393v5.149l5.259-5.149h1.991l-4.494%2C4.246%2C4.587%2C6.273h-1.864l-3.768-5.287-1.712%2C1.621v3.666h-1.393Z%22%20transform%3D%22translate(-707.869%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11763%22%20data-name%3D%22Path%2011763%22%20d%3D%22M732.114%2C179.99h1.313v1.461h-1.313Zm0%2C2.886h1.313v7.633h-1.313Z%22%20transform%3D%22translate(-722.506%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11764%22%20data-name%3D%22Path%2011764%22%20d%3D%22M739.594%2C186.918h1.276v1.088a4.283%2C4.283%2C0%2C0%2C1%2C.83-.822%2C2.489%2C2.489%2C0%2C0%2C1%2C1.447-.437%2C2.28%2C2.28%2C0%2C0%2C1%2C1.476.451%2C2.36%2C2.36%2C0%2C0%2C1%2C.572.758%2C2.786%2C2.786%2C0%2C0%2C1%2C1.01-.913%2C2.822%2C2.822%2C0%2C0%2C1%2C1.3-.3%2C2.138%2C2.138%2C0%2C0%2C1%2C2.109%2C1.117%2C3.673%2C3.673%2C0%2C0%2C1%2C.3%2C1.619v5.106h-1.337V189.26a1.248%2C1.248%2C0%2C0%2C0-.383-1.052%2C1.519%2C1.519%2C0%2C0%2C0-.936-.287%2C1.858%2C1.858%2C0%2C0%2C0-1.308.509%2C2.247%2C2.247%2C0%2C0%2C0-.545%2C1.7v4.461H744.09v-5.005a2.553%2C2.553%2C0%2C0%2C0-.186-1.139%2C1.132%2C1.132%2C0%2C0%2C0-1.093-.536%2C1.89%2C1.89%2C0%2C0%2C0-1.329.566%2C2.771%2C2.771%2C0%2C0%2C0-.6%2C2.049v4.067h-1.29Z%22%20transform%3D%22translate(-727.018%20-183.981)%22%2F%3E%3Cpath%20id%3D%22Path_11765%22%20data-name%3D%22Path%2011765%22%20d%3D%22M769.4%2C179.9h1.252v3.817a2.922%2C2.922%2C0%2C0%2C1%2C1.013-.842%2C2.877%2C2.877%2C0%2C0%2C1%2C1.282-.29%2C3%2C3%2C0%2C0%2C1%2C2.332.984%2C4.191%2C4.191%2C0%2C0%2C1%2C.9%2C2.9%2C4.977%2C4.977%2C0%2C0%2C1-.885%2C3.022%2C2.875%2C2.875%2C0%2C0%2C1-2.454%2C1.2%2C2.528%2C2.528%2C0%2C0%2C1-1.478-.422%2C3.528%2C3.528%2C0%2C0%2C1-.766-.8v.981H769.4Zm4.93%2C8.83a4.1%2C4.1%2C0%2C0%2C0%2C.521-2.191%2C3.6%2C3.6%2C0%2C0%2C0-.521-2.006%2C1.724%2C1.724%2C0%2C0%2C0-1.537-.794%2C2.144%2C2.144%2C0%2C0%2C0-1.547.651%2C2.929%2C2.929%2C0%2C0%2C0-.662%2C2.149%2C4.821%2C4.821%2C0%2C0%2C0%2C.269%2C1.754%2C1.891%2C1.891%2C0%2C0%2C0%2C1.9%2C1.268A1.736%2C1.736%2C0%2C0%2C0%2C774.333%2C188.729Z%22%20transform%3D%22translate(-745.015%20-179.848)%22%2F%3E%3Cpath%20id%3D%22Path_11766%22%20data-name%3D%22Path%2011766%22%20d%3D%22M793.079%2C189.924a.7.7%2C0%2C0%2C0%2C.593-.37%2C1.172%2C1.172%2C0%2C0%2C0%2C.085-.5%2C1.047%2C1.047%2C0%2C0%2C0-.468-.959%2C2.5%2C2.5%2C0%2C0%2C0-1.34-.3%2C1.7%2C1.7%2C0%2C0%2C0-1.428.546%2C1.786%2C1.786%2C0%2C0%2C0-.306.9h-1.2a2.223%2C2.223%2C0%2C0%2C1%2C.917-1.978%2C3.775%2C3.775%2C0%2C0%2C1%2C2.053-.558%2C4.15%2C4.15%2C0%2C0%2C1%2C2.191.516%2C1.752%2C1.752%2C0%2C0%2C1%2C.84%2C1.6v4.418a.579.579%2C0%2C0%2C0%2C.082.322c.053.082.167.122.348.122a1.9%2C1.9%2C0%2C0%2C0%2C.191-.011c.072-.007.149-.018.231-.032v.952a3.933%2C3.933%2C0%2C0%2C1-.46.108%2C3.45%2C3.45%2C0%2C0%2C1-.428.021%2C1.069%2C1.069%2C0%2C0%2C1-.971-.472%2C1.848%2C1.848%2C0%2C0%2C1-.218-.709%2C3.3%2C3.3%2C0%2C0%2C1-1.135.9%2C3.506%2C3.506%2C0%2C0%2C1-1.625.379%2C2.41%2C2.41%2C0%2C0%2C1-1.742-.647%2C2.145%2C2.145%2C0%2C0%2C1-.678-1.62%2C2.093%2C2.093%2C0%2C0%2C1%2C.665-1.652%2C3.179%2C3.179%2C0%2C0%2C1%2C1.75-.722Zm-2.715%2C3.482a1.512%2C1.512%2C0%2C0%2C0%2C.968.322%2C2.94%2C2.94%2C0%2C0%2C0%2C1.316-.315%2C1.77%2C1.77%2C0%2C0%2C0%2C1.077-1.709v-1.037a2.175%2C2.175%2C0%2C0%2C1-.609.251%2C5.089%2C5.089%2C0%2C0%2C1-.731.144l-.776.1a3.016%2C3.016%2C0%2C0%2C0-1.056.293%2C1.14%2C1.14%2C0%2C0%2C0-.6%2C1.072A1.062%2C1.062%2C0%2C0%2C0%2C790.364%2C193.406Z%22%20transform%3D%22translate(-756.606%20-183.959)%22%2F%3E%3Cpath%20id%3D%22Path_11767%22%20data-name%3D%22Path%2011767%22%20d%3D%22M808.7%2C179.99h1.29v10.519H808.7Z%22%20transform%3D%22translate(-768.734%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11768%22%20data-name%3D%22Path%2011768%22%20d%3D%22M815.441%2C179.99h1.29v10.519h-1.29Z%22%20transform%3D%22translate(-772.803%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11769%22%20data-name%3D%22Path%2011769%22%20d%3D%22M823.992%2C181.041a.741.741%2C0%2C0%2C1-1.053%2C0%2C.744.744%2C0%2C0%2C1%2C.526-1.272.715.715%2C0%2C0%2C1%2C.526.217.748.748%2C0%2C0%2C1%2C0%2C1.056Zm-.978-.982a.637.637%2C0%2C0%2C0%2C0%2C.911.634.634%2C0%2C0%2C0%2C.9%2C0%2C.637.637%2C0%2C0%2C0%2C0-.911.606.606%2C0%2C0%2C0-.452-.189A.614.614%2C0%2C0%2C0%2C823.013%2C180.059Zm.441.042a.586.586%2C0%2C0%2C1%2C.218.03.2.2%2C0%2C0%2C1%2C.128.207.18.18%2C0%2C0%2C1-.08.162.292.292%2C0%2C0%2C1-.117.04.187.187%2C0%2C0%2C1%2C.138.08.214.214%2C0%2C0%2C1%2C.048.127v.12a.3.3%2C0%2C0%2C0%2C.005.043l.011.01h-.138V180.9l-.005-.027v-.064a.2.2%2C0%2C0%2C0-.08-.187.356.356%2C0%2C0%2C0-.16-.027h-.112v.322h-.144V180.1Zm.154.13a.371.371%2C0%2C0%2C0-.176-.031h-.122v.3h.128a.379.379%2C0%2C0%2C0%2C.138-.019.13.13%2C0%2C0%2C0%2C.085-.128A.122.122%2C0%2C0%2C0%2C823.609%2C180.23Z%22%20transform%3D%22translate(-777.197%20-179.769)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-brandbar.nof-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23a3a3a4%22%20id%3D%22Group_7632%22%20data-name%3D%22Group%207632%22%20width%3D%2282.878%22%20height%3D%228.92%22%20viewBox%3D%220%200%2082.878%208.92%22%3E%3Cg%20id%3D%22Group_7532%22%20data-name%3D%22Group%207532%22%20transform%3D%22translate(0%200)%22%3E%3Cpath%20id%3D%22Path_11789%22%20data-name%3D%22Path%2011789%22%20d%3D%22M922.945%2C441.685a.676.676%2C0%2C1%2C1%2C.681.691.673.673%2C0%2C0%2C1-.681-.691m.681.83a.828.828%2C0%2C1%2C0-.846-.83A.829.829%2C0%2C0%2C0%2C923.626%2C442.515Zm-.175-.763h.17l.245.412h.165l-.271-.42a.248.248%2C0%2C0%2C0%2C.25-.263c0-.189-.112-.271-.335-.271H923.3v.955h.149Zm0-.125v-.292h.191c.106%2C0%2C.213.021.213.138%2C0%2C.146-.112.154-.234.154Z%22%20transform%3D%22translate(-841.588%20-433.594)%22%2F%3E%3Cpath%20id%3D%22Path_11790%22%20data-name%3D%22Path%2011790%22%20d%3D%22M809.964%2C427.291c0%2C1.46-.9%2C1.784-2.023%2C1.784h-4.722c-1.117%2C0-2.021-.324-2.021-1.784v-3.148c0-1.46.9-1.784%2C2.021-1.784h4.722c1.119%2C0%2C2.023.324%2C2.023%2C1.784m-9.934%2C2.723c0%2C2.116.734%2C3.137%2C3.068%2C3.137h4.961c2.334%2C0%2C3.071-1.021%2C3.071-3.137v-2.295c0-2.119-.737-3.137-3.071-3.137H803.1c-2.335%2C0-3.068%2C1.018-3.068%2C3.137Z%22%20transform%3D%22translate(-764.74%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11791%22%20data-name%3D%22Path%2011791%22%20d%3D%22M705.653%2C421.434h1.739l7.886%2C7.527v-7.527h1.167V430H714.71l-7.889-7.527V430h-1.167%22%20transform%3D%22translate(-705.653%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11792%22%20data-name%3D%22Path%2011792%22%20d%3D%22M746.594%2C427.244h-5.783l2.893-4.863M737.859%2C430h1.324l1.069-1.813h6.9L748.226%2C430h1.319l-5.116-8.57h-1.452Z%22%20transform%3D%22translate(-725.818%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11793%22%20data-name%3D%22Path%2011793%22%20d%3D%22M767.577%2C422.38h-4.358v-.947H773.1v.947h-4.358V430h-1.162%22%20transform%3D%22translate(-741.692%20-421.434)%22%2F%3E%3Crect%20id%3D%22Rectangle_2112%22%20data-name%3D%22Rectangle%202112%22%20width%3D%221.166%22%20height%3D%228.568%22%20transform%3D%22translate(32.568)%22%2F%3E%3Cpath%20id%3D%22Path_11794%22%20data-name%3D%22Path%2011794%22%20d%3D%22M833.835%2C421.434h1.734l7.9%2C7.527v-7.527h1.159V430h-1.734L835%2C422.477V430h-1.165%22%20transform%3D%22translate(-785.902%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11795%22%20data-name%3D%22Path%2011795%22%20d%3D%22M874.549%2C427.244h-5.78l2.893-4.863M865.817%2C430h1.319l1.074-1.813h6.9L876.182%2C430h1.324l-5.121-8.57h-1.452Z%22%20transform%3D%22translate(-805.926%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11796%22%20data-name%3D%22Path%2011796%22%20d%3D%22M900.186%2C421.434h1.165v7.62h6.69V430h-7.854%22%20transform%3D%22translate(-827.442%20-421.434)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-brandbar.etc-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23a3a3a4%22%20id%3D%22Group_7633%22%20data-name%3D%22Group%207633%22%20width%3D%2228.848%22%20height%3D%2216.623%22%20viewBox%3D%220%200%2028.848%2016.623%22%3E%3Cg%20id%3D%22Group_7537%22%20data-name%3D%22Group%207537%22%20transform%3D%22translate(0%200)%22%3E%3Cg%20id%3D%22Group_7535%22%20data-name%3D%22Group%207535%22%20transform%3D%22translate(0%200)%22%3E%3Cpath%20id%3D%22Path_11785%22%20data-name%3D%22Path%2011785%22%20d%3D%22M220.346%2C259.094a2.98%2C2.98%2C0%2C0%2C0-2.975%2C3.076%2C2.882%2C2.882%2C0%2C0%2C0%2C3.035%2C2.885v.129c-2.118%2C0-3.834%2C2.187-3.834%2C4.728%2C0%2C2.636%2C1.787%2C4.678%2C3.951%2C4.678a5.077%2C5.077%2C0%2C0%2C0%2C2.546-.963%2C4.5%2C4.5%2C0%2C0%2C0%2C1.905-3.56%2C4.3%2C4.3%2C0%2C0%2C0-1.7-3.272c-2.809.919-4.253.754-4.4%2C2.63-.036.456.39-.164.746-.624a2.032%2C2.032%2C0%2C0%2C1%2C.522-.472%2C1.8%2C1.8%2C0%2C0%2C1%2C1.248-.261%2C1.621%2C1.621%2C0%2C0%2C1%2C1.131.73%2C1.888%2C1.888%2C0%2C0%2C1%2C.315%2C1.426%2C1.945%2C1.945%2C0%2C0%2C1-1.942%2C1.73%2C1.766%2C1.766%2C0%2C0%2C1-1.888-1.118%2C3.419%2C3.419%2C0%2C0%2C1-.234-1.21c0-2.635%2C2.81-4.084%2C5-4.987%2C1.271-.521%2C2.751-.537%2C3.281-1.1a1.714%2C1.714%2C0%2C0%2C0%2C.468-1.173c.037-.358-.221-.247-.532.253a2.528%2C2.528%2C0%2C0%2C1-.4.465%2C1.513%2C1.513%2C0%2C0%2C1-1.228.255%2C1.411%2C1.411%2C0%2C0%2C1-1.017-.657%2C1.8%2C1.8%2C0%2C0%2C1-.282-1.282%2C1.759%2C1.759%2C0%2C0%2C1%2C.608-1.138%2C1.4%2C1.4%2C0%2C0%2C1%2C1.153-.359%2C1.8%2C1.8%2C0%2C0%2C1%2C.982.476%2C2.92%2C2.92%2C0%2C0%2C1%2C.723%2C1.01%2C2.183%2C2.183%2C0%2C0%2C1%2C.077%2C1.09c-.263%2C2.07-2.118%2C3.491-4.188%2C4.25a4.612%2C4.612%2C0%2C0%2C1%2C1.67%2C3.443c0%2C2.66-2.989%2C5.082-6.634%2C5.082-3.693%2C0-5.134-2.445-5.134-5.082%2C0-1.809.852-4.653%2C3.817-5.033a3.839%2C3.839%2C0%2C0%2C1-1.953-.744%2C2.835%2C2.835%2C0%2C0%2C1-1.081-2.461c0-1.781%2C1.881-3.3%2C4.4-3.3a5.993%2C5.993%2C0%2C0%2C1%2C4%2C1.5%2C2.933%2C2.933%2C0%2C0%2C1%2C.568.613%2C1.839%2C1.839%2C0%2C0%2C1%2C.334%2C1.046%2C1.814%2C1.814%2C0%2C0%2C1-.257.911%2C1.715%2C1.715%2C0%2C0%2C1-1.5.847%2C1.615%2C1.615%2C0%2C0%2C1-1.646-1.272%2C3.108%2C3.108%2C0%2C0%2C1-.036-.485%2C1.45%2C1.45%2C0%2C0%2C1%2C.518-1.1c.116-.106.233-.221.356-.346a.754.754%2C0%2C0%2C0%2C.269-.718c-.031-.344-.278-.479-.768-.528m9.064%2C15.423a.7.7%2C0%2C0%2C1-.392-.405%2C2.456%2C2.456%2C0%2C0%2C1-.153-.968v-5.791h1.3v-.269h-1.3v-3.546a5.2%2C5.2%2C0%2C0%2C1-3.013%2C3.523%2C3.767%2C3.767%2C0%2C0%2C1-.514.037v.116a.467.467%2C0%2C0%2C1%2C.346.136.473.473%2C0%2C0%2C1%2C.134.348v1.084h0V272.8h0a2.951%2C2.951%2C0%2C0%2C0%2C.189%2C1.032%2C2.1%2C2.1%2C0%2C0%2C0%2C.516.775%2C1.965%2C1.965%2C0%2C0%2C0%2C.767.433%2C3.139%2C3.139%2C0%2C0%2C0%2C.94.137%2C3.056%2C3.056%2C0%2C0%2C0%2C1.246-.261%2C6.323%2C6.323%2C0%2C0%2C0%2C1.036-.572l.019-.156a3.8%2C3.8%2C0%2C0%2C1-.585.291.788.788%2C0%2C0%2C1-.537.039m5.727-6.114a1.215%2C1.215%2C0%2C0%2C0-.431.923%2C1.191%2C1.191%2C0%2C0%2C0%2C.423.92%2C1.471%2C1.471%2C0%2C0%2C0%2C1.017.379%2C1.453%2C1.453%2C0%2C0%2C0%2C1-.379%2C1.191%2C1.191%2C0%2C0%2C0%2C.423-.92%2C1.547%2C1.547%2C0%2C0%2C0-.279-.875%2C2.62%2C2.62%2C0%2C0%2C0-.747-.715%2C3.863%2C3.863%2C0%2C0%2C0-1.1-.477%2C5.02%2C5.02%2C0%2C0%2C0-1.351-.174%2C4.408%2C4.408%2C0%2C0%2C0-1.72.322%2C3.893%2C3.893%2C0%2C0%2C0-1.3.864%2C3.649%2C3.649%2C0%2C0%2C0-.811%2C1.284%2C4.618%2C4.618%2C0%2C0%2C0%2C0%2C3.163%2C3.749%2C3.749%2C0%2C0%2C0%2C.811%2C1.294%2C3.852%2C3.852%2C0%2C0%2C0%2C1.3.872%2C4.408%2C4.408%2C0%2C0%2C0%2C1.72.32%2C5.074%2C5.074%2C0%2C0%2C0%2C1.351-.173%2C3.763%2C3.763%2C0%2C0%2C0%2C1.1-.485%2C2.776%2C2.776%2C0%2C0%2C0%2C.747-.717%2C1.525%2C1.525%2C0%2C0%2C0%2C.279-.881%2C1.2%2C1.2%2C0%2C0%2C0-.423-.913%2C1.442%2C1.442%2C0%2C0%2C0-1-.387%2C1.46%2C1.46%2C0%2C0%2C0-1.017.387%2C1.2%2C1.2%2C0%2C0%2C0-.423.913%2C1.236%2C1.236%2C0%2C0%2C0%2C.431.94c.1.086.2.182.3.287a.393.393%2C0%2C0%2C1%2C.1.387.573.573%2C0%2C0%2C1-.306.355%2C1.566%2C1.566%2C0%2C0%2C1-.613.173.735.735%2C0%2C0%2C0-.108.008.658.658%2C0%2C0%2C1-.09.008%2C1.655%2C1.655%2C0%2C0%2C1-.711-.14%2C1.141%2C1.141%2C0%2C0%2C1-.5-.479%2C2.68%2C2.68%2C0%2C0%2C1-.3-.888%2C7.929%2C7.929%2C0%2C0%2C1-.1-1.392V270.08a7.892%2C7.892%2C0%2C0%2C1%2C.1-1.391%2C2.691%2C2.691%2C0%2C0%2C1%2C.3-.888%2C1.141%2C1.141%2C0%2C0%2C1%2C.5-.479%2C1.655%2C1.655%2C0%2C0%2C1%2C.711-.141%2C1.047%2C1.047%2C0%2C0%2C1%2C.2.017%2C1.543%2C1.543%2C0%2C0%2C1%2C.613.173.578.578%2C0%2C0%2C1%2C.306.354.39.39%2C0%2C0%2C1-.1.387c-.1.105-.2.2-.3.29%22%20transform%3D%22translate(-213.318%20-258.631)%22%2F%3E%3Cpath%20id%3D%22Path_11786%22%20data-name%3D%22Path%2011786%22%20d%3D%22M297.572%2C304.29a1.482%2C1.482%2C0%2C0%2C0-2.075%2C0%2C1.462%2C1.462%2C0%2C0%2C0%2C0%2C2.062%2C1.482%2C1.482%2C0%2C0%2C0%2C2.075%2C0%2C1.459%2C1.459%2C0%2C0%2C0%2C0-2.062%22%20transform%3D%22translate(-270.323%20-290.208)%22%2F%3E%3Cpath%20id%3D%22Path_11787%22%20data-name%3D%22Path%2011787%22%20d%3D%22M305.08%2C311.1v.1h-.129v.429h-.105V311.2h-.122v-.1Z%22%20transform%3D%22translate(-276.875%20-295.116)%22%2F%3E%3Cpath%20id%3D%22Path_11788%22%20data-name%3D%22Path%2011788%22%20d%3D%22M306.689%2C311.029v.55h-.1v-.253l-.173.246h0l-.166-.23v.237h-.1v-.55h0l.267.38.275-.38Z%22%20transform%3D%22translate(-277.842%20-295.07)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-brandbar.itw-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23a3a3a4%22%20width%3D%2294.642%22%20height%3D%2212.081%22%20viewBox%3D%220%200%2094.642%2012.081%22%3E%3Cg%20id%3D%22Group_7848%22%20data-name%3D%22Group%207848%22%20transform%3D%22translate(-895.435%20-14.46)%22%3E%3Cg%20id%3D%22Group_7309%22%20data-name%3D%22Group%207309%22%20transform%3D%22translate(895.435%2014.46)%22%3E%3Cpath%20id%3D%22Path_11770%22%20data-name%3D%22Path%2011770%22%20d%3D%22M211.1%2C361.868c.715-.133.915-.467.915-1.879v-4.951c0-1.064-.3-1.329-.915-1.48h4.436c-.747.166-.913.483-.913%2C1.895v4.952c0%2C1.046.25%2C1.329.913%2C1.462Zm2.21-11.8a1.329%2C1.329%2C0%2C0%2C1%2C1.347%2C1.279%2C1.341%2C1.341%2C0%2C0%2C1-2.676%2C0A1.325%2C1.325%2C0%2C0%2C1%2C213.31%2C350.069Z%22%20transform%3D%22translate(-211.1%20-350.069)%22%2F%3E%3Cpath%20id%3D%22Path_11771%22%20data-name%3D%22Path%2011771%22%20d%3D%22M226.536%2C368.109c.73-.133.913-.465.913-1.945V361.2c0-1-.3-1.244-.913-1.4h3.522v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.416-.116.666-.4.666-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.565-2.475-1.645-2.475a1.77%2C1.77%2C0%2C0%2C0-1.064.348%2C2.882%2C2.882%2C0%2C0%2C1%2C2.458-1.146c1.746%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-221.103%20-356.31)%22%2F%3E%3Cpath%20id%3D%22Path_11772%22%20data-name%3D%22Path%2011772%22%20d%3D%22M258.4%2C356.546c0-1-.283-1.246-.915-1.4h.915l2.608-2.626v2.626H263.8v.421h-2.792v5.778a2.689%2C2.689%2C0%2C0%2C0%2C.665%2C2.191c-2.16-.016-3.273-1.561-3.273-3.9Z%22%20transform%3D%22translate(-241.157%20-351.66)%22%2F%3E%3Cpath%20id%3D%22Path_11773%22%20data-name%3D%22Path%2011773%22%20d%3D%22M302.61%2C368.292c.715-.133.915-.481.915-1.961v-4.886c0-1.08-.3-1.314-.915-1.462h3.522v6.831c0%2C1.064.267%2C1.345.916%2C1.478Zm6.247-8.243a1.2%2C1.2%2C0%2C1%2C1-1.262%2C1.2A1.239%2C1.239%2C0%2C0%2C1%2C308.857%2C360.049Z%22%20transform%3D%22translate(-270.401%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11774%22%20data-name%3D%22Path%2011774%22%20d%3D%22M326.853%2C361.412c-.35-1.064-.749-1.28-1.429-1.429h4.387c-.465.133-.665.366-.332%2C1.263.066.133%2C1.3%2C3.64%2C1.363%2C3.789l-1.347%2C3.49Zm4.569-1.429h3.425c-.417.117-.649.366-.25%2C1.345l1.345%2C3.707-1.345%2C3.473Zm7.627%2C0a2.406%2C2.406%2C0%2C0%2C0-1.928%2C1.7c.384-1.064.2-1.529-.366-1.7Z%22%20transform%3D%22translate(-285.185%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11775%22%20data-name%3D%22Path%2011775%22%20d%3D%22M390.045%2C361.262a1.725%2C1.725%2C0%2C0%2C0-1.4-1.279h4.487c-.483.133-.646.383-.3%2C1.247l.2.564%2C1.329%2C3.523L393%2C368.574Zm7.594-1.279c-1%2C.233-1.478.614-2.061%2C1.944.516-1.329.316-1.711-.448-1.944Z%22%20transform%3D%22translate(-326.155%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11776%22%20data-name%3D%22Path%2011776%22%20d%3D%22M440.9%2C368.109c.731-.133.915-.465.915-1.945V361.2c0-1-.3-1.244-.915-1.4h3.523v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.415-.116.665-.4.665-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.566-2.475-1.646-2.475a1.773%2C1.773%2C0%2C0%2C0-1.064.348%2C2.889%2C2.889%2C0%2C0%2C1%2C2.459-1.146c1.747%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-360.012%20-356.31)%22%2F%3E%3Cg%20id%3D%22Group_7306%22%20data-name%3D%22Group%207306%22%20transform%3D%22translate(53.557%203.406)%22%3E%3Cg%20id%3D%22Group_7304%22%20data-name%3D%22Group%207304%22%3E%3Cpath%20id%3D%22Path_11777%22%20data-name%3D%22Path%2011777%22%20d%3D%22M365.917%2C365.248c0%2C1.711.747%2C2.907%2C1.877%2C2.957-2.491-.032-4.536-1.512-4.536-4.22%2C0-2.725%2C2.045-4.205%2C4.553-4.238-1.113.066-1.894%2C1.279-1.894%2C2.975Z%22%20transform%3D%22translate(-363.258%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7305%22%20data-name%3D%22Group%207305%22%20transform%3D%22translate(4.519)%22%3E%3Cpath%20id%3D%22Path_11778%22%20data-name%3D%22Path%2011778%22%20d%3D%22M378.008%2C362.722c0-1.679-.766-2.909-1.9-2.975%2C2.51.051%2C4.555%2C1.529%2C4.555%2C4.221%2C0%2C2.725-2.061%2C4.22-4.571%2C4.237%2C1.146-.049%2C1.912-1.228%2C1.912-2.957Z%22%20transform%3D%22translate(-376.096%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7307%22%20data-name%3D%22Group%207307%22%20transform%3D%22translate(71.35%203.406)%22%3E%3Cpath%20id%3D%22Path_11779%22%20data-name%3D%22Path%2011779%22%20d%3D%22M416.452%2C365.264c0%2C1.728.763%2C2.941%2C2.475%2C2.941a4.834%2C4.834%2C0%2C0%2C1-.5.017c-2.757%2C0-4.618-1.7-4.618-4.237a4.167%2C4.167%2C0%2C0%2C1%2C4.438-4.238c-1.329.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-413.809%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11780%22%20data-name%3D%22Path%2011780%22%20d%3D%22M426.815%2C364.134c1.231-.449%2C1.462-.814%2C1.431-1.728-.066-1.412-.614-2.576-1.827-2.659%2C2.707.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-421.98%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7308%22%20data-name%3D%22Group%207308%22%20transform%3D%22translate(22.527%203.406)%22%3E%3Cpath%20id%3D%22Path_11781%22%20data-name%3D%22Path%2011781%22%20d%3D%22M277.745%2C365.264c0%2C1.728.762%2C2.941%2C2.474%2C2.941a4.808%2C4.808%2C0%2C0%2C1-.5.017c-2.759%2C0-4.618-1.7-4.618-4.237a4.166%2C4.166%2C0%2C0%2C1%2C4.438-4.238c-1.332.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-275.102%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11782%22%20data-name%3D%22Path%2011782%22%20d%3D%22M288.11%2C364.134c1.23-.449%2C1.462-.814%2C1.429-1.728-.066-1.412-.616-2.576-1.828-2.659%2C2.709.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-283.272%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7310%22%20data-name%3D%22Group%207310%22%20transform%3D%22translate(986.27%2017.948)%22%3E%3Cpath%20id%3D%22Path_11783%22%20data-name%3D%22Path%2011783%22%20d%3D%22M472.244%2C360.43c-.194%2C0-.359-.008-.58-.008-.005.053-.005.121-.005.161v.989a3.248%2C3.248%2C0%2C0%2C0%2C.013.372h-.364c.013-.126.019-.453.019-.622v-.508c0-.1%2C0-.253-.008-.392-.218%2C0-.4%2C0-.588.008.008-.086.008-.211.008-.307.239.007.468.011.753.011s.532%2C0%2C.771-.011A2.184%2C2.184%2C0%2C0%2C0%2C472.244%2C360.43Z%22%20transform%3D%22translate(-470.731%20-360.073)%22%2F%3E%3Cpath%20id%3D%22Path_11784%22%20data-name%3D%22Path%2011784%22%20d%3D%22M477.408%2C361.875c-.005-.074-.032-.292-.048-.394l-.1-.7c-.122.265-.447.989-.492%2C1.089l-.122.025c-.04-.094-.362-.81-.489-1.1l-.1.693c-.013.1-.043.439-.037.37h-.34c.032-.133.085-.457.112-.622l.08-.574c.024-.165.066-.516.077-.65l.128-.027.178.384.46.985.457-.978.168-.383h.128c.021.15.064.5.085.669l.082.572c.024.172.061.379.109.625Z%22%20transform%3D%22translate(-473.942%20-359.981)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-font.kii-font-color-brandbar.ppn-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23a3a3a4%22%20width%3D%2260.431%22%20height%3D%2212.543%22%20viewBox%3D%220%200%2060.431%2012.543%22%3E%3Cg%20id%3D%22Group_136%22%20data-name%3D%22Group%20136%22%20transform%3D%22translate(-2121%201030.159)%22%3E%3Cpath%20id%3D%22Path_204%22%20data-name%3D%22Path%20204%22%20d%3D%22M2166.519-1029.72a1.7%2C1.7%2C0%2C0%2C0-1.122-.35h-.359a1.683%2C1.683%2C0%2C0%2C0-1.1.359%2C1.616%2C1.616%2C0%2C0%2C0-.44%2C1.31v5.743a1.615%2C1.615%2C0%2C0%2C0%2C.44%2C1.311%2C1.744%2C1.744%2C0%2C0%2C0%2C1.139.357h.358a1.589%2C1.589%2C0%2C0%2C0%2C1.087-.367%2C1.661%2C1.661%2C0%2C0%2C0%2C.422-1.3v-5.743A1.655%2C1.655%2C0%2C0%2C0%2C2166.519-1029.72Z%22%2F%3E%3Cpath%20id%3D%22Path_205%22%20data-name%3D%22Path%20205%22%20d%3D%22M2176.393-1029.1a2.659%2C2.659%2C0%2C0%2C0-.978-.772%2C3.361%2C3.361%2C0%2C0%2C0-1.462-.287%2C3.137%2C3.137%2C0%2C0%2C0-1.768.457%2C4.022%2C4.022%2C0%2C0%2C0-1.158%2C1.176%2C2.426%2C2.426%2C0%2C0%2C0-.332-.745%2C1.792%2C1.792%2C0%2C0%2C0-.475-.476%2C1.774%2C1.774%2C0%2C0%2C0-.565-.251%2C2.654%2C2.654%2C0%2C0%2C0-.6-.072%2C2.587%2C2.587%2C0%2C0%2C0-.924.153c-.268.1-.4.182-.4.242v7.017a1.626%2C1.626%2C0%2C0%2C0%2C.438%2C1.311%2C1.724%2C1.724%2C0%2C0%2C0%2C1.122.357h.36a1.656%2C1.656%2C0%2C0%2C0%2C1.095-.357%2C1.645%2C1.645%2C0%2C0%2C0%2C.43-1.311v-3.984a1.635%2C1.635%2C0%2C0%2C1%2C.539-.511%2C1.525%2C1.525%2C0%2C0%2C1%2C.808-.207%2C1.06%2C1.06%2C0%2C0%2C1%2C.843.351%2C1.41%2C1.41%2C0%2C0%2C1%2C.3.959v3.392a1.619%2C1.619%2C0%2C0%2C0%2C.441%2C1.311%2C1.743%2C1.743%2C0%2C0%2C0%2C1.139.357h.341a1.615%2C1.615%2C0%2C0%2C0%2C1.1-.367%2C1.661%2C1.661%2C0%2C0%2C0%2C.422-1.3v-3.984a5.1%2C5.1%2C0%2C0%2C0-.172-1.337A3.121%2C3.121%2C0%2C0%2C0%2C2176.393-1029.1Z%22%2F%3E%3Cpath%20id%3D%22Path_206%22%20data-name%3D%22Path%20206%22%20d%3D%22M2179.509-1024.718a1.922%2C1.922%2C0%2C0%2C0-1.921%2C1.922%2C1.921%2C1.921%2C0%2C0%2C0%2C1.921%2C1.922%2C1.921%2C1.921%2C0%2C0%2C0%2C1.922-1.922A1.921%2C1.921%2C0%2C0%2C0%2C2179.509-1024.718Z%22%2F%3E%3Cpath%20id%3D%22Path_207%22%20data-name%3D%22Path%20207%22%20d%3D%22M2140.068-1028.876a4.34%2C4.34%2C0%2C0%2C0-1.525-.952%2C5.662%2C5.662%2C0%2C0%2C0-1.983-.331%2C5.81%2C5.81%2C0%2C0%2C0-2%2C.331%2C4.5%2C4.5%2C0%2C0%2C0-1.553.942%2C4.151%2C4.151%2C0%2C0%2C0-1%2C1.472%2C5.006%2C5.006%2C0%2C0%2C0-.35%2C1.9%2C5.264%2C5.264%2C0%2C0%2C0%2C.339%2C1.938%2C4.175%2C4.175%2C0%2C0%2C0%2C.971%2C1.472%2C4.268%2C4.268%2C0%2C0%2C0%2C1.525.943%2C5.794%2C5.794%2C0%2C0%2C0%2C2.011.331%2C5.792%2C5.792%2C0%2C0%2C0%2C2.009-.331%2C4.34%2C4.34%2C0%2C0%2C0%2C1.533-.943%2C4.2%2C4.2%2C0%2C0%2C0%2C.989-1.472%2C5.076%2C5.076%2C0%2C0%2C0%2C.35-1.92%2C5.1%2C5.1%2C0%2C0%2C0-.342-1.911A4.186%2C4.186%2C0%2C0%2C0%2C2140.068-1028.876Zm-3.519%2C5.285a1.922%2C1.922%2C0%2C0%2C1-1.923-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923-1.923%2C1.92%2C1.92%2C0%2C0%2C1%2C1.92%2C1.923A1.92%2C1.92%2C0%2C0%2C1%2C2136.549-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_208%22%20data-name%3D%22Path%20208%22%20d%3D%22M2129.991-1028.911a3.644%2C3.644%2C0%2C0%2C0-1.291-.925%2C4.212%2C4.212%2C0%2C0%2C0-1.67-.323%2C3.019%2C3.019%2C0%2C0%2C0-1.686.466%2C2.587%2C2.587%2C0%2C0%2C0-1.025%2C1.239%2C2.144%2C2.144%2C0%2C0%2C0-.323-.789%2C1.984%2C1.984%2C0%2C0%2C0-.484-.494%2C1.625%2C1.625%2C0%2C0%2C0-.574-.261%2C2.775%2C2.775%2C0%2C0%2C0-.61-.072%2C2.6%2C2.6%2C0%2C0%2C0-.925.153c-.269.1-.4.182-.4.242v10.408a1.59%2C1.59%2C0%2C0%2C0%2C.439%2C1.3%2C1.747%2C1.747%2C0%2C0%2C0%2C1.121.349h.36a1.665%2C1.665%2C0%2C0%2C0%2C1.1-.358%2C1.613%2C1.613%2C0%2C0%2C0%2C.429-1.293v-3.1a2.653%2C2.653%2C0%2C0%2C0%2C1%2C1.114%2C2.868%2C2.868%2C0%2C0%2C0%2C1.588.43%2C3.93%2C3.93%2C0%2C0%2C0%2C1.67-.35%2C3.862%2C3.862%2C0%2C0%2C0%2C1.291-.968%2C4.307%2C4.307%2C0%2C0%2C0%2C.825-1.481%2C5.942%2C5.942%2C0%2C0%2C0%2C.287-1.885%2C6.108%2C6.108%2C0%2C0%2C0-.287-1.937A4.094%2C4.094%2C0%2C0%2C0%2C2129.991-1028.911Zm-3.743%2C5.32a1.922%2C1.922%2C0%2C0%2C1-1.921-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.921-1.923%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923%2C1.923A1.923%2C1.923%2C0%2C0%2C1%2C2126.248-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_209%22%20data-name%3D%22Path%20209%22%20d%3D%22M2151.022-1028.911a3.622%2C3.622%2C0%2C0%2C0-1.292-.925%2C4.2%2C4.2%2C0%2C0%2C0-1.669-.323%2C3.031%2C3.031%2C0%2C0%2C0-1.688.466%2C2.6%2C2.6%2C0%2C0%2C0-1.022%2C1.239%2C2.14%2C2.14%2C0%2C0%2C0-.323-.789%2C1.984%2C1.984%2C0%2C0%2C0-.484-.494%2C1.638%2C1.638%2C0%2C0%2C0-.575-.261%2C2.764%2C2.764%2C0%2C0%2C0-.609-.072%2C2.6%2C2.6%2C0%2C0%2C0-.925.153c-.269.1-.4.182-.4.242v10.408a1.593%2C1.593%2C0%2C0%2C0%2C.438%2C1.3%2C1.749%2C1.749%2C0%2C0%2C0%2C1.123.349h.358a1.648%2C1.648%2C0%2C0%2C0%2C1.094-.358%2C1.606%2C1.606%2C0%2C0%2C0%2C.431-1.293v-3.1a2.675%2C2.675%2C0%2C0%2C0%2C1%2C1.114%2C2.878%2C2.878%2C0%2C0%2C0%2C1.588.43%2C3.915%2C3.915%2C0%2C0%2C0%2C1.669-.35%2C3.837%2C3.837%2C0%2C0%2C0%2C1.292-.968%2C4.333%2C4.333%2C0%2C0%2C0%2C.828-1.481%2C6%2C6%2C0%2C0%2C0%2C.286-1.885%2C6.172%2C6.172%2C0%2C0%2C0-.286-1.937A4.118%2C4.118%2C0%2C0%2C0%2C2151.022-1028.911Zm-3.742%2C5.32a1.921%2C1.921%2C0%2C0%2C1-1.921-1.921%2C1.921%2C1.921%2C0%2C0%2C1%2C1.921-1.923%2C1.924%2C1.924%2C0%2C0%2C1%2C1.923%2C1.923A1.924%2C1.924%2C0%2C0%2C1%2C2147.28-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_210%22%20data-name%3D%22Path%20210%22%20d%3D%22M2161.739-1028.911a3.629%2C3.629%2C0%2C0%2C0-1.291-.925%2C4.215%2C4.215%2C0%2C0%2C0-1.672-.323%2C3.019%2C3.019%2C0%2C0%2C0-1.684.466%2C2.578%2C2.578%2C0%2C0%2C0-1.023%2C1.239%2C2.14%2C2.14%2C0%2C0%2C0-.325-.789%2C1.96%2C1.96%2C0%2C0%2C0-.483-.494%2C1.633%2C1.633%2C0%2C0%2C0-.574-.261%2C2.784%2C2.784%2C0%2C0%2C0-.611-.072%2C2.59%2C2.59%2C0%2C0%2C0-.923.153c-.27.1-.4.182-.4.242v10.408a1.593%2C1.593%2C0%2C0%2C0%2C.438%2C1.3%2C1.752%2C1.752%2C0%2C0%2C0%2C1.124.349h.358a1.659%2C1.659%2C0%2C0%2C0%2C1.1-.358%2C1.619%2C1.619%2C0%2C0%2C0%2C.429-1.293v-3.1a2.66%2C2.66%2C0%2C0%2C0%2C1%2C1.114%2C2.865%2C2.865%2C0%2C0%2C0%2C1.585.43%2C3.933%2C3.933%2C0%2C0%2C0%2C1.672-.35%2C3.845%2C3.845%2C0%2C0%2C0%2C1.291-.968%2C4.3%2C4.3%2C0%2C0%2C0%2C.825-1.481%2C5.887%2C5.887%2C0%2C0%2C0%2C.288-1.885%2C6.053%2C6.053%2C0%2C0%2C0-.288-1.937A4.083%2C4.083%2C0%2C0%2C0%2C2161.739-1028.911Zm-3.742%2C5.32a1.922%2C1.922%2C0%2C0%2C1-1.921-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.921-1.923%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923%2C1.923A1.923%2C1.923%2C0%2C0%2C1%2C2158-1023.591Z%22%2F%3E%3Cg%20id%3D%22Group_135%22%20data-name%3D%22Group%20135%22%3E%3Cpath%20id%3D%22Path_211%22%20data-name%3D%22Path%20211%22%20d%3D%22M2178.55-1029.195a.937.937%2C0%2C0%2C1%2C.96-.964.919.919%2C0%2C0%2C1%2C.961.956.94.94%2C0%2C0%2C1-.962.967A.92.92%2C0%2C0%2C1%2C2178.55-1029.195Zm1.8%2C0a.827.827%2C0%2C0%2C0-.845-.859.814.814%2C0%2C0%2C0-.842.861.821.821%2C0%2C0%2C0%2C.845.856A.815.815%2C0%2C0%2C0%2C2180.354-1029.2Zm-.791.086.344.352c.006.011-.023.054-.07.054a.118.118%2C0%2C0%2C1-.091-.046l-.325-.351h-.126v.337a.054.054%2C0%2C0%2C1-.057.06h-.021c-.035%2C0-.054-.025-.054-.066v-.853a.07.07%2C0%2C0%2C1%2C.071-.078h.3c.247%2C0%2C.383.1.383.3C2179.917-1029.228%2C2179.8-1029.116%2C2179.563-1029.113Zm-.027-.1c.165%2C0%2C.25-.073.25-.194s-.087-.191-.256-.191h-.238v.385Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.kii-font.kii-file-sif {
  content: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8" standalone="no"%3F><svg viewBox="0 0 512 512" version="1.1" id="svg834" sodipodi:docname="sif-plain.svg" inkscape:version="1.1 (c68e22c387, 2021-05-23)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"><defs id="defs838" /><sodipodi:namedview id="namedview836" pagecolor="%23ffffff" bordercolor="%23666666" borderopacity="1.0" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" showgrid="false" inkscape:snap-grids="false" inkscape:snap-to-guides="true" inkscape:snap-page="true" inkscape:zoom="0.20385742" inkscape:cx="-289.41796" inkscape:cy="-522.42395" inkscape:window-width="1920" inkscape:window-height="1017" inkscape:window-x="2992" inkscape:window-y="516" inkscape:window-maximized="1" inkscape:current-layer="layer3"><inkscape:grid type="xygrid" id="grid16785" /></sodipodi:namedview><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><g inkscape:groupmode="layer" id="layer3" inkscape:label="sif" style="display:inline;opacity:1"><path d="m 200.61318,352 h 34.9 c 8.8,0 16,7.20001 16,16 0,8.80001 -7.2,16 -16,16 h -34.9 c -7.19999,0 -13.1,5.9 -13.1,13.10001 0,5.2 3,9.89999 7.8,12 l 37.4,16.6 c 16.3,7.2 26.8,23.4 26.8,41.2 0,24.9 -20.2,45.1 -45.1,45.1 h -42.9 c -8.8,0 -16,-7.2 -16,-16 0,-8.8 7.2,-16 16,-16 h 42.9 c 7.2,0 13.1,-5.9 13.1,-13.1 0,-5.2 -3,-9.9 -7.8,-12 l -37.4,-16.6 c -16.3,-7.2 -26.8,-23.4 -26.8,-41.2 0,-24.9 20.2,-45.10001 45.1,-45.10001 z" id="path16793" style="display:inline" /><path d="m 416.20119,367.98084 c 0,-8.8 7.2,-16 16,-16 h 48 c 8.8,0 16,7.2 16,16 0,8.8 -7.2,16 -16,16 h -32 v 32 h 32 c 8.8,0 16,7.2 16,16 0,8.8 -7.2,16 -16,16 h -32 v 48 c 0,8.8 -7.2,16 -16,16 -8.8,0 -16,-7.2 -16,-16 v -64 z" id="path17090" style="display:inline" /><path style="color:%23000000;fill:%23000000;stroke-width:1.00088;-inkscape-stroke:none" d="m 317.02754,367.98084 c 0,-8.81546 7.2,-16.0281 16,-16.0281 9.58957,0.0156 15.65355,6.92721 15.71258,15.87454 -0.0192,148.24691 -0.17247,80.75477 -0.0192,128.53194 0,8.81547 -6.89341,15.87455 -15.69341,15.87455 -8.8,0 -16,-7.21264 -16,-16.02809 v -64.11242 z" id="path17090-6" sodipodi:nodetypes="scccsscs" /><path d="M 0.61316765,64.000002 C 0.61316765,28.700002 29.313167,2.16e-6 64.613167,2.16e-6 H 224.61318 V 128.00001 c 0,17.7 14.3,32 32,32 h 128 v 144 h -208 c -35.3,0 -64,28.7 -64,63.99999 V 512 H 64.613167 c -35.3,0 -63.99999935,-28.69999 -63.99999935,-64 z" id="path832" style="display:inline" /><path d="m 384.61318,128.00001 h -128 V 2.16e-6 Z" id="path16789" style="display:inline" /></g></svg>');
}

.kii-brand-bar .kbb-nav-button:hover .kii-font.itw-logo, .kii-brand-bar .kbb-current .kii-font.itw-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20width%3D%2294.642%22%20height%3D%2212.081%22%20viewBox%3D%220%200%2094.642%2012.081%22%3E%3Cg%20id%3D%22Group_7848%22%20data-name%3D%22Group%207848%22%20transform%3D%22translate(-895.435%20-14.46)%22%3E%3Cg%20id%3D%22Group_7309%22%20data-name%3D%22Group%207309%22%20transform%3D%22translate(895.435%2014.46)%22%3E%3Cpath%20id%3D%22Path_11770%22%20data-name%3D%22Path%2011770%22%20d%3D%22M211.1%2C361.868c.715-.133.915-.467.915-1.879v-4.951c0-1.064-.3-1.329-.915-1.48h4.436c-.747.166-.913.483-.913%2C1.895v4.952c0%2C1.046.25%2C1.329.913%2C1.462Zm2.21-11.8a1.329%2C1.329%2C0%2C0%2C1%2C1.347%2C1.279%2C1.341%2C1.341%2C0%2C0%2C1-2.676%2C0A1.325%2C1.325%2C0%2C0%2C1%2C213.31%2C350.069Z%22%20transform%3D%22translate(-211.1%20-350.069)%22%2F%3E%3Cpath%20id%3D%22Path_11771%22%20data-name%3D%22Path%2011771%22%20d%3D%22M226.536%2C368.109c.73-.133.913-.465.913-1.945V361.2c0-1-.3-1.244-.913-1.4h3.522v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.416-.116.666-.4.666-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.565-2.475-1.645-2.475a1.77%2C1.77%2C0%2C0%2C0-1.064.348%2C2.882%2C2.882%2C0%2C0%2C1%2C2.458-1.146c1.746%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-221.103%20-356.31)%22%2F%3E%3Cpath%20id%3D%22Path_11772%22%20data-name%3D%22Path%2011772%22%20d%3D%22M258.4%2C356.546c0-1-.283-1.246-.915-1.4h.915l2.608-2.626v2.626H263.8v.421h-2.792v5.778a2.689%2C2.689%2C0%2C0%2C0%2C.665%2C2.191c-2.16-.016-3.273-1.561-3.273-3.9Z%22%20transform%3D%22translate(-241.157%20-351.66)%22%2F%3E%3Cpath%20id%3D%22Path_11773%22%20data-name%3D%22Path%2011773%22%20d%3D%22M302.61%2C368.292c.715-.133.915-.481.915-1.961v-4.886c0-1.08-.3-1.314-.915-1.462h3.522v6.831c0%2C1.064.267%2C1.345.916%2C1.478Zm6.247-8.243a1.2%2C1.2%2C0%2C1%2C1-1.262%2C1.2A1.239%2C1.239%2C0%2C0%2C1%2C308.857%2C360.049Z%22%20transform%3D%22translate(-270.401%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11774%22%20data-name%3D%22Path%2011774%22%20d%3D%22M326.853%2C361.412c-.35-1.064-.749-1.28-1.429-1.429h4.387c-.465.133-.665.366-.332%2C1.263.066.133%2C1.3%2C3.64%2C1.363%2C3.789l-1.347%2C3.49Zm4.569-1.429h3.425c-.417.117-.649.366-.25%2C1.345l1.345%2C3.707-1.345%2C3.473Zm7.627%2C0a2.406%2C2.406%2C0%2C0%2C0-1.928%2C1.7c.384-1.064.2-1.529-.366-1.7Z%22%20transform%3D%22translate(-285.185%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11775%22%20data-name%3D%22Path%2011775%22%20d%3D%22M390.045%2C361.262a1.725%2C1.725%2C0%2C0%2C0-1.4-1.279h4.487c-.483.133-.646.383-.3%2C1.247l.2.564%2C1.329%2C3.523L393%2C368.574Zm7.594-1.279c-1%2C.233-1.478.614-2.061%2C1.944.516-1.329.316-1.711-.448-1.944Z%22%20transform%3D%22translate(-326.155%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11776%22%20data-name%3D%22Path%2011776%22%20d%3D%22M440.9%2C368.109c.731-.133.915-.465.915-1.945V361.2c0-1-.3-1.244-.915-1.4h3.523v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.415-.116.665-.4.665-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.566-2.475-1.646-2.475a1.773%2C1.773%2C0%2C0%2C0-1.064.348%2C2.889%2C2.889%2C0%2C0%2C1%2C2.459-1.146c1.747%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-360.012%20-356.31)%22%2F%3E%3Cg%20id%3D%22Group_7306%22%20data-name%3D%22Group%207306%22%20transform%3D%22translate(53.557%203.406)%22%3E%3Cg%20id%3D%22Group_7304%22%20data-name%3D%22Group%207304%22%3E%3Cpath%20id%3D%22Path_11777%22%20data-name%3D%22Path%2011777%22%20d%3D%22M365.917%2C365.248c0%2C1.711.747%2C2.907%2C1.877%2C2.957-2.491-.032-4.536-1.512-4.536-4.22%2C0-2.725%2C2.045-4.205%2C4.553-4.238-1.113.066-1.894%2C1.279-1.894%2C2.975Z%22%20transform%3D%22translate(-363.258%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7305%22%20data-name%3D%22Group%207305%22%20transform%3D%22translate(4.519)%22%3E%3Cpath%20id%3D%22Path_11778%22%20data-name%3D%22Path%2011778%22%20d%3D%22M378.008%2C362.722c0-1.679-.766-2.909-1.9-2.975%2C2.51.051%2C4.555%2C1.529%2C4.555%2C4.221%2C0%2C2.725-2.061%2C4.22-4.571%2C4.237%2C1.146-.049%2C1.912-1.228%2C1.912-2.957Z%22%20transform%3D%22translate(-376.096%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7307%22%20data-name%3D%22Group%207307%22%20transform%3D%22translate(71.35%203.406)%22%3E%3Cpath%20id%3D%22Path_11779%22%20data-name%3D%22Path%2011779%22%20d%3D%22M416.452%2C365.264c0%2C1.728.763%2C2.941%2C2.475%2C2.941a4.834%2C4.834%2C0%2C0%2C1-.5.017c-2.757%2C0-4.618-1.7-4.618-4.237a4.167%2C4.167%2C0%2C0%2C1%2C4.438-4.238c-1.329.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-413.809%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11780%22%20data-name%3D%22Path%2011780%22%20d%3D%22M426.815%2C364.134c1.231-.449%2C1.462-.814%2C1.431-1.728-.066-1.412-.614-2.576-1.827-2.659%2C2.707.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-421.98%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7308%22%20data-name%3D%22Group%207308%22%20transform%3D%22translate(22.527%203.406)%22%3E%3Cpath%20id%3D%22Path_11781%22%20data-name%3D%22Path%2011781%22%20d%3D%22M277.745%2C365.264c0%2C1.728.762%2C2.941%2C2.474%2C2.941a4.808%2C4.808%2C0%2C0%2C1-.5.017c-2.759%2C0-4.618-1.7-4.618-4.237a4.166%2C4.166%2C0%2C0%2C1%2C4.438-4.238c-1.332.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-275.102%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11782%22%20data-name%3D%22Path%2011782%22%20d%3D%22M288.11%2C364.134c1.23-.449%2C1.462-.814%2C1.429-1.728-.066-1.412-.616-2.576-1.828-2.659%2C2.709.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-283.272%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7310%22%20data-name%3D%22Group%207310%22%20transform%3D%22translate(986.27%2017.948)%22%3E%3Cpath%20id%3D%22Path_11783%22%20data-name%3D%22Path%2011783%22%20d%3D%22M472.244%2C360.43c-.194%2C0-.359-.008-.58-.008-.005.053-.005.121-.005.161v.989a3.248%2C3.248%2C0%2C0%2C0%2C.013.372h-.364c.013-.126.019-.453.019-.622v-.508c0-.1%2C0-.253-.008-.392-.218%2C0-.4%2C0-.588.008.008-.086.008-.211.008-.307.239.007.468.011.753.011s.532%2C0%2C.771-.011A2.184%2C2.184%2C0%2C0%2C0%2C472.244%2C360.43Z%22%20transform%3D%22translate(-470.731%20-360.073)%22%2F%3E%3Cpath%20id%3D%22Path_11784%22%20data-name%3D%22Path%2011784%22%20d%3D%22M477.408%2C361.875c-.005-.074-.032-.292-.048-.394l-.1-.7c-.122.265-.447.989-.492%2C1.089l-.122.025c-.04-.094-.362-.81-.489-1.1l-.1.693c-.013.1-.043.439-.037.37h-.34c.032-.133.085-.457.112-.622l.08-.574c.024-.165.066-.516.077-.65l.128-.027.178.384.46.985.457-.978.168-.383h.128c.021.15.064.5.085.669l.082.572c.024.172.061.379.109.625Z%22%20transform%3D%22translate(-473.942%20-359.981)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-brand-bar .kbb-nav-button:hover .kii-font.kii-logo, .kii-brand-bar .kbb-current .kii-font.kii-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20id%3D%22Group_7625%22%20data-name%3D%22Group%207625%22%20width%3D%22273.869%22%20height%3D%2222%22%20viewBox%3D%220%200%20273.869%2022%22%3E%3Cg%20id%3D%22Group_7347%22%20data-name%3D%22Group%207347%22%20transform%3D%22translate(0.888%200.026)%22%3E%3Cpath%20id%3D%22Path_11869%22%20data-name%3D%22Path%2011869%22%20d%3D%22M689.805%2C111.928a10.839%2C10.839%2C0%2C0%2C0-19.915%2C0Z%22%20transform%3D%22translate(-669.89%20-105.371)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7348%22%20data-name%3D%22Group%207348%22%20transform%3D%22translate(0.899%2015.14)%22%3E%3Cpath%20id%3D%22Path_11870%22%20data-name%3D%22Path%2011870%22%20d%3D%22M689.82%2C124.2a10.84%2C10.84%2C0%2C0%2C1-19.916%2C0Z%22%20transform%3D%22translate(-669.904%20-124.202)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7349%22%20data-name%3D%22Group%207349%22%20transform%3D%22translate(0.362%207.826)%22%3E%3Cpath%20id%3D%22Path_11871%22%20data-name%3D%22Path%2011871%22%20d%3D%22M690.205%2C115.369a1.714%2C1.714%2C0%2C0%2C0-.079-.28H669.312a1.516%2C1.516%2C0%2C0%2C0-.078.28h5.909v.789h8.951v-.789Z%22%20transform%3D%22translate(-669.234%20-115.089)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7350%22%20data-name%3D%22Group%207350%22%20transform%3D%22translate(0.093%209.281)%22%3E%3Cpath%20id%3D%22Path_11872%22%20data-name%3D%22Path%2011872%22%20d%3D%22M690.381%2C116.9H668.93a1.438%2C1.438%2C0%2C0%2C0-.029.279h6.176v.789h8.953v-.789h6.381a1.368%2C1.368%2C0%2C0%2C0-.03-.279%22%20transform%3D%22translate(-668.9%20-116.902)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7351%22%20data-name%3D%22Group%207351%22%20transform%3D%22translate(0%2010.734)%22%3E%3Cpath%20id%3D%22Path_11873%22%20data-name%3D%22Path%2011873%22%20d%3D%22M690.46%2C118.713H668.793a1.389%2C1.389%2C0%2C0%2C0-.006.278l.013%2C0h6.254v.787h8.952v-.787h6.46a1.285%2C1.285%2C0%2C0%2C0-.006-.28%22%20transform%3D%22translate(-668.784%20-118.713)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7352%22%20data-name%3D%22Group%207352%22%20transform%3D%22translate(0.104%2012.291)%22%3E%3Cpath%20id%3D%22Path_11874%22%20data-name%3D%22Path%2011874%22%20d%3D%22M668.955%2C120.931a1.282%2C1.282%2C0%2C0%2C1-.042-.278H690.4a1.256%2C1.256%2C0%2C0%2C1-.042.278h-21.4Z%22%20transform%3D%22translate(-668.913%20-120.653)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7353%22%20data-name%3D%22Group%207353%22%20transform%3D%22translate(0.402%2013.3)%22%3E%3Cpath%20id%3D%22Path_11875%22%20data-name%3D%22Path%2011875%22%20d%3D%22M690.178%2C122.355h-6.073v-.445h-8.953v.445h-5.867v0a1.711%2C1.711%2C0%2C0%2C0%2C.076.272l0%2C0h5.788v.445h8.953v-.445h6a1.9%2C1.9%2C0%2C0%2C0%2C.078-.278%22%20transform%3D%22translate(-669.285%20-121.91)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7354%22%20data-name%3D%22Group%207354%22%20transform%3D%22translate(31.369%200)%22%3E%3Cpath%20id%3D%22Path_11876%22%20data-name%3D%22Path%2011876%22%20d%3D%22M707.869%2C105.56h2.813v10.425l10.656-10.425h4.035l-9.1%2C8.6%2C9.289%2C12.7h-3.775l-7.632-10.7-3.471%2C3.279v7.424h-2.813Z%22%20transform%3D%22translate(-707.869%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11877%22%20data-name%3D%22Path%2011877%22%20d%3D%22M732.114%2C105.56h2.654v2.957h-2.654Zm0%2C5.843h2.654v15.457h-2.654Z%22%20transform%3D%22translate(-712.656%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11878%22%20data-name%3D%22Path%2011878%22%20d%3D%22M739.594%2C112.664h2.581v2.2a8.682%2C8.682%2C0%2C0%2C1%2C1.681-1.668%2C5.064%2C5.064%2C0%2C0%2C1%2C2.929-.884%2C4.606%2C4.606%2C0%2C0%2C1%2C2.986.914%2C4.767%2C4.767%2C0%2C0%2C1%2C1.161%2C1.537%2C5.632%2C5.632%2C0%2C0%2C1%2C2.045-1.849%2C5.693%2C5.693%2C0%2C0%2C1%2C2.638-.6q3.132%2C0%2C4.263%2C2.262a7.389%2C7.389%2C0%2C0%2C1%2C.608%2C3.277v10.338h-2.711V117.406a2.512%2C2.512%2C0%2C0%2C0-.776-2.132%2C3.072%2C3.072%2C0%2C0%2C0-1.892-.58%2C3.755%2C3.755%2C0%2C0%2C0-2.646%2C1.03%2C4.52%2C4.52%2C0%2C0%2C0-1.109%2C3.437v9.033H748.7V118.058a5.27%2C5.27%2C0%2C0%2C0-.377-2.306%2C2.3%2C2.3%2C0%2C0%2C0-2.219-1.087%2C3.828%2C3.828%2C0%2C0%2C0-2.689%2C1.145q-1.21%2C1.146-1.21%2C4.147v8.236h-2.61Z%22%20transform%3D%22translate(-714.133%20-106.716)%22%2F%3E%3Cpath%20id%3D%22Path_11879%22%20data-name%3D%22Path%2011879%22%20d%3D%22M769.4%2C105.469h2.538V113.2a5.72%2C5.72%2C0%2C0%2C1%2C4.644-2.291%2C6.083%2C6.083%2C0%2C0%2C1%2C4.722%2C1.994q1.813%2C1.994%2C1.813%2C5.88a10.056%2C10.056%2C0%2C0%2C1-1.79%2C6.119%2C5.815%2C5.815%2C0%2C0%2C1-4.964%2C2.436%2C5.094%2C5.094%2C0%2C0%2C1-3-.856%2C7.171%2C7.171%2C0%2C0%2C1-1.558-1.624v1.986H769.4Zm9.98%2C17.878a8.261%2C8.261%2C0%2C0%2C0%2C1.054-4.437%2C7.267%2C7.267%2C0%2C0%2C0-1.054-4.06%2C3.476%2C3.476%2C0%2C0%2C0-3.106-1.609%2C4.338%2C4.338%2C0%2C0%2C0-3.135%2C1.319q-1.347%2C1.319-1.346%2C4.35a9.593%2C9.593%2C0%2C0%2C0%2C.552%2C3.552%2C3.82%2C3.82%2C0%2C0%2C0%2C3.856%2C2.567A3.5%2C3.5%2C0%2C0%2C0%2C779.383%2C123.347Z%22%20transform%3D%22translate(-720.018%20-105.364)%22%2F%3E%3Cpath%20id%3D%22Path_11880%22%20data-name%3D%22Path%2011880%22%20d%3D%22M797.657%2C118.788a1.419%2C1.419%2C0%2C0%2C0%2C1.2-.752%2C2.332%2C2.332%2C0%2C0%2C0%2C.174-1%2C2.133%2C2.133%2C0%2C0%2C0-.948-1.943%2C5.058%2C5.058%2C0%2C0%2C0-2.713-.6%2C3.435%2C3.435%2C0%2C0%2C0-2.894%2C1.108%2C3.657%2C3.657%2C0%2C0%2C0-.623%2C1.822h-2.436q.073-2.88%2C1.86-4.006a7.62%2C7.62%2C0%2C0%2C1%2C4.149-1.128%2C8.436%2C8.436%2C0%2C0%2C1%2C4.446%2C1.044%2C3.542%2C3.542%2C0%2C0%2C1%2C1.7%2C3.248v8.947a1.139%2C1.139%2C0%2C0%2C0%2C.167.652.8.8%2C0%2C0%2C0%2C.7.246c.116%2C0%2C.246-.007.392-.022s.3-.036.464-.065v1.928a7.186%2C7.186%2C0%2C0%2C1-.928.217%2C6.647%2C6.647%2C0%2C0%2C1-.87.044%2C2.149%2C2.149%2C0%2C0%2C1-1.958-.957%2C3.719%2C3.719%2C0%2C0%2C1-.449-1.436%2C6.632%2C6.632%2C0%2C0%2C1-2.29%2C1.812%2C7.094%2C7.094%2C0%2C0%2C1-3.291.769%2C4.9%2C4.9%2C0%2C0%2C1-3.531-1.311%2C4.356%2C4.356%2C0%2C0%2C1-1.37-3.281%2C4.221%2C4.221%2C0%2C0%2C1%2C1.349-3.345%2C6.42%2C6.42%2C0%2C0%2C1%2C3.538-1.462Zm-5.5%2C7.051a3.065%2C3.065%2C0%2C0%2C0%2C1.957.651%2C5.96%2C5.96%2C0%2C0%2C0%2C2.668-.636%2C3.585%2C3.585%2C0%2C0%2C0%2C2.175-3.46v-2.1a4.431%2C4.431%2C0%2C0%2C1-1.229.509%2C10.409%2C10.409%2C0%2C0%2C1-1.477.291l-1.577.2a6.092%2C6.092%2C0%2C0%2C0-2.132.593%2C2.307%2C2.307%2C0%2C0%2C0-1.211%2C2.17A2.141%2C2.141%2C0%2C0%2C0%2C792.162%2C125.839Z%22%20transform%3D%22translate(-723.81%20-106.709)%22%2F%3E%3Cpath%20id%3D%22Path_11881%22%20data-name%3D%22Path%2011881%22%20d%3D%22M808.7%2C105.56h2.61v21.3H808.7Z%22%20transform%3D%22translate(-727.776%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11882%22%20data-name%3D%22Path%2011882%22%20d%3D%22M815.441%2C105.56h2.61v21.3h-2.61Z%22%20transform%3D%22translate(-729.107%20-105.382)%22%2F%3E%3Cpath%20id%3D%22Path_11883%22%20data-name%3D%22Path%2011883%22%20d%3D%22M825.3%2C107.915a1.513%2C1.513%2C0%2C1%2C1%2C.441-1.071A1.456%2C1.456%2C0%2C0%2C1%2C825.3%2C107.915Zm-1.987-1.989a1.259%2C1.259%2C0%2C0%2C0-.378.919%2C1.272%2C1.272%2C0%2C0%2C0%2C.376.925%2C1.295%2C1.295%2C0%2C0%2C0%2C1.838%2C0%2C1.312%2C1.312%2C0%2C0%2C0%2C0-1.844%2C1.295%2C1.295%2C0%2C0%2C0-1.836%2C0Zm.889.084a1.278%2C1.278%2C0%2C0%2C1%2C.452.059.411.411%2C0%2C0%2C1%2C.257.421.364.364%2C0%2C0%2C1-.161.327.638.638%2C0%2C0%2C1-.24.08.4.4%2C0%2C0%2C1%2C.285.162.459.459%2C0%2C0%2C1%2C.09.257v.121c0%2C.038%2C0%2C.079%2C0%2C.123a.277.277%2C0%2C0%2C0%2C.015.087l.01.02h-.273l0-.016%2C0-.018-.006-.054v-.131a.4.4%2C0%2C0%2C0-.156-.379.7.7%2C0%2C0%2C0-.326-.054h-.231v.652h-.291v-1.657Zm.315.261a.762.762%2C0%2C0%2C0-.353-.061h-.25v.6h.264a.785.785%2C0%2C0%2C0%2C.279-.037.3.3%2C0%2C0%2C0%2C.061-.5Z%22%20transform%3D%22translate(-730.545%20-105.338)%22%2F%3E%3Cpath%20id%3D%22Path_11884%22%20data-name%3D%22Path%2011884%22%20d%3D%22M830.313%2C126.839v-21.38h2.02v21.38Z%22%20transform%3D%22translate(-732.043%20-105.362)%22%2F%3E%3Cpath%20id%3D%22Path_11885%22%20data-name%3D%22Path%2011885%22%20d%3D%22M838.2%2C128.213h-1.782V112.831H838.2v2.138a11.3%2C11.3%2C0%2C0%2C1%2C2.213-1.841%2C5.087%2C5.087%2C0%2C0%2C1%2C2.746-.713%2C7.03%2C7.03%2C0%2C0%2C1%2C2.643.49%2C4.52%2C4.52%2C0%2C0%2C1%2C2.049%2C1.708%2C3.841%2C3.841%2C0%2C0%2C1%2C.667%2C1.708%2C15.324%2C15.324%2C0%2C0%2C1%2C.1%2C1.826v10.067h-1.781V118.176a4.588%2C4.588%2C0%2C0%2C0-.92-3.118%2C3.911%2C3.911%2C0%2C0%2C0-3.059-1.039%2C4.351%2C4.351%2C0%2C0%2C0-1.514.253%2C4.772%2C4.772%2C0%2C0%2C0-1.233.668%2C4.468%2C4.468%2C0%2C0%2C0-.935.95%2C4.393%2C4.393%2C0%2C0%2C0-.594%2C1.128%2C5.633%2C5.633%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-733.249%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11886%22%20data-name%3D%22Path%2011886%22%20d%3D%22M860.536%2C127.322q-.327.059-.861.208a4.449%2C4.449%2C0%2C0%2C1-1.189.148%2C2.831%2C2.831%2C0%2C0%2C1-2.034-.668%2C3.254%2C3.254%2C0%2C0%2C1-.7-2.391V113.366h-2.168v-1.485h2.168v-4.276h1.782v4.276h2.88v1.485h-2.88v10.542q0%2C.565.029.98a1.624%2C1.624%2C0%2C0%2C0%2C.178.683.846.846%2C0%2C0%2C0%2C.46.386%2C2.549%2C2.549%2C0%2C0%2C0%2C.876.119%2C4.533%2C4.533%2C0%2C0%2C0%2C.727-.059q.371-.059.728-.148Z%22%20transform%3D%22translate(-736.638%20-105.786)%22%2F%3E%3Cpath%20id%3D%22Path_11887%22%20data-name%3D%22Path%2011887%22%20d%3D%22M865.219%2C120.937a8.31%2C8.31%2C0%2C0%2C0%2C.326%2C2.361%2C5.684%2C5.684%2C0%2C0%2C0%2C.965%2C1.93%2C4.665%2C4.665%2C0%2C0%2C0%2C1.618%2C1.307%2C4.981%2C4.981%2C0%2C0%2C0%2C2.257.49%2C4.908%2C4.908%2C0%2C0%2C0%2C3-.921%2C4.437%2C4.437%2C0%2C0%2C0%2C1.664-2.613h1.989a9.556%2C9.556%2C0%2C0%2C1-.861%2C2.034%2C6.252%2C6.252%2C0%2C0%2C1-1.336%2C1.634%2C5.765%2C5.765%2C0%2C0%2C1-1.9%2C1.083%2C7.7%2C7.7%2C0%2C0%2C1-2.555.386%2C7.458%2C7.458%2C0%2C0%2C1-3.177-.624%2C5.994%2C5.994%2C0%2C0%2C1-2.2-1.708%2C7.207%2C7.207%2C0%2C0%2C1-1.277-2.553%2C11.564%2C11.564%2C0%2C0%2C1-.416-3.163%2C10.055%2C10.055%2C0%2C0%2C1%2C.49-3.177%2C8.088%2C8.088%2C0%2C0%2C1%2C1.4-2.6%2C6.491%2C6.491%2C0%2C0%2C1%2C2.213-1.753%2C6.687%2C6.687%2C0%2C0%2C1%2C2.969-.638%2C6.132%2C6.132%2C0%2C0%2C1%2C4.989%2C2.183q1.812%2C2.183%2C1.782%2C6.339Zm10.036-1.485a7.084%2C7.084%2C0%2C0%2C0-.311-2.123%2C4.974%2C4.974%2C0%2C0%2C0-.921-1.722%2C4.388%2C4.388%2C0%2C0%2C0-1.53-1.158%2C4.919%2C4.919%2C0%2C0%2C0-2.108-.431%2C4.686%2C4.686%2C0%2C0%2C0-2.093.445%2C4.811%2C4.811%2C0%2C0%2C0-1.544%2C1.188%2C5.991%2C5.991%2C0%2C0%2C0-1.025%2C1.722%2C7.93%2C7.93%2C0%2C0%2C0-.5%2C2.079Z%22%20transform%3D%22translate(-738.559%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11888%22%20data-name%3D%22Path%2011888%22%20d%3D%22M885.3%2C128.213h-1.781V112.831H885.3v2.88h.059a5.16%2C5.16%2C0%2C0%2C1%2C1.915-2.568%2C5.828%2C5.828%2C0%2C0%2C1%2C3.1-.728v1.93a5.212%2C5.212%2C0%2C0%2C0-2.494.475%2C4.113%2C4.113%2C0%2C0%2C0-1.559%2C1.366%2C5.388%2C5.388%2C0%2C0%2C0-.8%2C2.034%2C13.128%2C13.128%2C0%2C0%2C0-.223%2C2.45Z%22%20transform%3D%22translate(-742.548%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11889%22%20data-name%3D%22Path%2011889%22%20d%3D%22M896.032%2C128.213H894.25V112.831h1.782v2.138a11.287%2C11.287%2C0%2C0%2C1%2C2.213-1.841%2C5.086%2C5.086%2C0%2C0%2C1%2C2.746-.713%2C7.028%2C7.028%2C0%2C0%2C1%2C2.643.49%2C4.52%2C4.52%2C0%2C0%2C1%2C2.049%2C1.708%2C3.842%2C3.842%2C0%2C0%2C1%2C.668%2C1.708%2C15.375%2C15.375%2C0%2C0%2C1%2C.1%2C1.826v10.067h-1.782V118.176a4.588%2C4.588%2C0%2C0%2C0-.921-3.118%2C3.911%2C3.911%2C0%2C0%2C0-3.059-1.039%2C4.349%2C4.349%2C0%2C0%2C0-1.514.253%2C4.778%2C4.778%2C0%2C0%2C0-1.233.668%2C4.459%2C4.459%2C0%2C0%2C0-.935.95%2C4.392%2C4.392%2C0%2C0%2C0-.594%2C1.128%2C5.662%2C5.662%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-744.666%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11890%22%20data-name%3D%22Path%2011890%22%20d%3D%22M920.219%2C119.245q.5-.059%2C1.2-.178a4.49%2C4.49%2C0%2C0%2C0%2C1.143-.327.946.946%2C0%2C0%2C0%2C.55-.7%2C4.361%2C4.361%2C0%2C0%2C0%2C.1-.906%2C3.037%2C3.037%2C0%2C0%2C0-.877-2.242%2C4.089%2C4.089%2C0%2C0%2C0-2.955-.876%2C8.16%2C8.16%2C0%2C0%2C0-1.692.164%2C3.674%2C3.674%2C0%2C0%2C0-1.352.564%2C3.109%2C3.109%2C0%2C0%2C0-.95%2C1.069%2C4.528%2C4.528%2C0%2C0%2C0-.49%2C1.677h-1.811a5.512%2C5.512%2C0%2C0%2C1%2C.624-2.331%2C4.715%2C4.715%2C0%2C0%2C1%2C1.381-1.574%2C5.737%2C5.737%2C0%2C0%2C1%2C1.959-.89%2C9.593%2C9.593%2C0%2C0%2C1%2C2.36-.283%2C9.169%2C9.169%2C0%2C0%2C1%2C2.183.252%2C5.056%2C5.056%2C0%2C0%2C1%2C1.782.8%2C3.731%2C3.731%2C0%2C0%2C1%2C1.188%2C1.47A5.3%2C5.3%2C0%2C0%2C1%2C925%2C117.2v8.374q0%2C1.04.372%2C1.322t1.5-.134v1.4c-.139.04-.342.1-.609.178a2.78%2C2.78%2C0%2C0%2C1-.787.119%2C3.555%2C3.555%2C0%2C0%2C1-.8-.089%2C1.375%2C1.375%2C0%2C0%2C1-.712-.282%2C1.741%2C1.741%2C0%2C0%2C1-.431-.535%2C2.225%2C2.225%2C0%2C0%2C1-.222-.683%2C4.9%2C4.9%2C0%2C0%2C1-.059-.787%2C7.742%2C7.742%2C0%2C0%2C1-2.583%2C1.9%2C7.605%2C7.605%2C0%2C0%2C1-3.148.653%2C7.038%2C7.038%2C0%2C0%2C1-1.945-.267%2C4.7%2C4.7%2C0%2C0%2C1-1.648-.831%2C4.125%2C4.125%2C0%2C0%2C1-1.129-1.38%2C4.242%2C4.242%2C0%2C0%2C1-.415-1.945q0-3.92%2C5.375-4.632Zm3%2C.891a8.726%2C8.726%2C0%2C0%2C1-2.287.624q-1.158.149-2.317.238a6.534%2C6.534%2C0%2C0%2C0-3.191.921%2C2.64%2C2.64%2C0%2C0%2C0-1.143%2C2.346%2C2.53%2C2.53%2C0%2C0%2C0%2C.283%2C1.232%2C2.588%2C2.588%2C0%2C0%2C0%2C.741.862%2C3.161%2C3.161%2C0%2C0%2C0%2C1.069.5%2C4.761%2C4.761%2C0%2C0%2C0%2C1.233.163%2C8.086%2C8.086%2C0%2C0%2C0%2C2.078-.267%2C5.643%2C5.643%2C0%2C0%2C0%2C1.8-.816%2C4.2%2C4.2%2C0%2C0%2C0%2C1.262-1.4%2C4.036%2C4.036%2C0%2C0%2C0%2C.475-2Z%22%20transform%3D%22translate(-748.246%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11891%22%20data-name%3D%22Path%2011891%22%20d%3D%22M937.46%2C127.322q-.329.059-.861.208a4.451%2C4.451%2C0%2C0%2C1-1.188.148%2C2.83%2C2.83%2C0%2C0%2C1-2.034-.668%2C3.254%2C3.254%2C0%2C0%2C1-.7-2.391V113.366h-2.168v-1.485h2.168v-4.276h1.782v4.276h2.88v1.485h-2.88v10.542c0%2C.376.009.7.029.98a1.628%2C1.628%2C0%2C0%2C0%2C.177.683.848.848%2C0%2C0%2C0%2C.461.386%2C2.545%2C2.545%2C0%2C0%2C0%2C.876.119%2C4.542%2C4.542%2C0%2C0%2C0%2C.728-.059q.371-.059.728-.148Z%22%20transform%3D%22translate(-751.825%20-105.786)%22%2F%3E%3Cpath%20id%3D%22Path_11892%22%20data-name%3D%22Path%2011892%22%20d%3D%22M942.2%2C108.1v-2.643h1.961V108.1Zm.089%2C18.738V111.457h1.782v15.382Z%22%20transform%3D%22translate(-754.134%20-105.362)%22%2F%3E%3Cpath%20id%3D%22Path_11893%22%20data-name%3D%22Path%2011893%22%20d%3D%22M954.584%2C128.628a8.02%2C8.02%2C0%2C0%2C1-2.777-.535%2C6.215%2C6.215%2C0%2C0%2C1-2.257-1.514%2C7.27%2C7.27%2C0%2C0%2C1-1.529-2.524%2C10.1%2C10.1%2C0%2C0%2C1-.564-3.534%2C10.854%2C10.854%2C0%2C0%2C1%2C.446-3.162%2C7.466%2C7.466%2C0%2C0%2C1%2C1.336-2.569%2C6.356%2C6.356%2C0%2C0%2C1%2C2.227-1.738%2C7.171%2C7.171%2C0%2C0%2C1%2C3.118-.638%2C7.252%2C7.252%2C0%2C0%2C1%2C3.148.638%2C6.437%2C6.437%2C0%2C0%2C1%2C2.227%2C1.722%2C7.153%2C7.153%2C0%2C0%2C1%2C1.322%2C2.569%2C11.421%2C11.421%2C0%2C0%2C1%2C.43%2C3.177%2C10.293%2C10.293%2C0%2C0%2C1-.5%2C3.326%2C7.5%2C7.5%2C0%2C0%2C1-1.44%2C2.554%2C6.341%2C6.341%2C0%2C0%2C1-2.257%2C1.648A7.219%2C7.219%2C0%2C0%2C1%2C954.584%2C128.628Zm5.226-8.107a10.539%2C10.539%2C0%2C0%2C0-.3-2.554%2C6.074%2C6.074%2C0%2C0%2C0-.921-2.063%2C4.438%2C4.438%2C0%2C0%2C0-1.6-1.381%2C5.212%2C5.212%2C0%2C0%2C0-2.405-.5%2C4.88%2C4.88%2C0%2C0%2C0-2.391.55%2C4.663%2C4.663%2C0%2C0%2C0-1.618%2C1.455%2C6.4%2C6.4%2C0%2C0%2C0-.921%2C2.078%2C9.856%2C9.856%2C0%2C0%2C0-.3%2C2.421%2C9.622%2C9.622%2C0%2C0%2C0%2C.341%2C2.628%2C6.139%2C6.139%2C0%2C0%2C0%2C1%2C2.063%2C4.453%2C4.453%2C0%2C0%2C0%2C1.632%2C1.336%2C5.114%2C5.114%2C0%2C0%2C0%2C2.258.475%2C4.88%2C4.88%2C0%2C0%2C0%2C2.39-.549%2C4.62%2C4.62%2C0%2C0%2C0%2C1.619-1.47%2C6.609%2C6.609%2C0%2C0%2C0%2C.921-2.079A9.673%2C9.673%2C0%2C0%2C0%2C959.81%2C120.522Z%22%20transform%3D%22translate(-755.171%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11894%22%20data-name%3D%22Path%2011894%22%20d%3D%22M970.329%2C128.213h-1.782V112.831h1.782v2.138a11.312%2C11.312%2C0%2C0%2C1%2C2.212-1.841%2C5.091%2C5.091%2C0%2C0%2C1%2C2.747-.713%2C7.028%2C7.028%2C0%2C0%2C1%2C2.643.49%2C4.519%2C4.519%2C0%2C0%2C1%2C2.049%2C1.708%2C3.842%2C3.842%2C0%2C0%2C1%2C.668%2C1.708%2C15.4%2C15.4%2C0%2C0%2C1%2C.1%2C1.826v10.067H978.97V118.176a4.586%2C4.586%2C0%2C0%2C0-.921-3.118%2C3.91%2C3.91%2C0%2C0%2C0-3.058-1.039%2C4.358%2C4.358%2C0%2C0%2C0-1.515.253%2C4.782%2C4.782%2C0%2C0%2C0-1.232.668%2C4.465%2C4.465%2C0%2C0%2C0-.935.95%2C4.39%2C4.39%2C0%2C0%2C0-.594%2C1.128%2C5.614%2C5.614%2C0%2C0%2C0-.327%2C1.425q-.06.684-.059%2C1.485Z%22%20transform%3D%22translate(-759.335%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11895%22%20data-name%3D%22Path%2011895%22%20d%3D%22M994.516%2C119.245q.5-.059%2C1.2-.178a4.5%2C4.5%2C0%2C0%2C0%2C1.143-.327.945.945%2C0%2C0%2C0%2C.55-.7%2C4.34%2C4.34%2C0%2C0%2C0%2C.1-.906%2C3.04%2C3.04%2C0%2C0%2C0-.876-2.242%2C4.09%2C4.09%2C0%2C0%2C0-2.955-.876%2C8.163%2C8.163%2C0%2C0%2C0-1.692.164%2C3.674%2C3.674%2C0%2C0%2C0-1.351.564%2C3.108%2C3.108%2C0%2C0%2C0-.95%2C1.069%2C4.531%2C4.531%2C0%2C0%2C0-.49%2C1.677h-1.812a5.511%2C5.511%2C0%2C0%2C1%2C.625-2.331%2C4.728%2C4.728%2C0%2C0%2C1%2C1.38-1.574%2C5.749%2C5.749%2C0%2C0%2C1%2C1.96-.89%2C9.59%2C9.59%2C0%2C0%2C1%2C2.36-.283%2C9.168%2C9.168%2C0%2C0%2C1%2C2.183.252%2C5.059%2C5.059%2C0%2C0%2C1%2C1.782.8%2C3.735%2C3.735%2C0%2C0%2C1%2C1.188%2C1.47%2C5.3%2C5.3%2C0%2C0%2C1%2C.43%2C2.257v8.374q0%2C1.04.372%2C1.322t1.5-.134v1.4c-.138.04-.341.1-.608.178a2.787%2C2.787%2C0%2C0%2C1-.787.119%2C3.544%2C3.544%2C0%2C0%2C1-.8-.089%2C1.38%2C1.38%2C0%2C0%2C1-.713-.282%2C1.756%2C1.756%2C0%2C0%2C1-.43-.535%2C2.231%2C2.231%2C0%2C0%2C1-.222-.683%2C4.891%2C4.891%2C0%2C0%2C1-.06-.787%2C7.74%2C7.74%2C0%2C0%2C1-2.584%2C1.9%2C7.607%2C7.607%2C0%2C0%2C1-3.148.653%2C7.04%2C7.04%2C0%2C0%2C1-1.944-.267%2C4.692%2C4.692%2C0%2C0%2C1-1.648-.831%2C4.127%2C4.127%2C0%2C0%2C1-1.129-1.38%2C4.244%2C4.244%2C0%2C0%2C1-.415-1.945q0-3.92%2C5.375-4.632Zm3%2C.891a8.718%2C8.718%2C0%2C0%2C1-2.286.624q-1.158.149-2.317.238a6.535%2C6.535%2C0%2C0%2C0-3.192.921%2C2.64%2C2.64%2C0%2C0%2C0-1.143%2C2.346%2C2.538%2C2.538%2C0%2C0%2C0%2C.282%2C1.232%2C2.586%2C2.586%2C0%2C0%2C0%2C.742.862%2C3.15%2C3.15%2C0%2C0%2C0%2C1.069.5%2C4.761%2C4.761%2C0%2C0%2C0%2C1.232.163%2C8.089%2C8.089%2C0%2C0%2C0%2C2.078-.267%2C5.641%2C5.641%2C0%2C0%2C0%2C1.8-.816%2C4.2%2C4.2%2C0%2C0%2C0%2C1.262-1.4%2C4.037%2C4.037%2C0%2C0%2C0%2C.475-2Z%22%20transform%3D%22translate(-762.915%20-106.735)%22%2F%3E%3Cpath%20id%3D%22Path_11896%22%20data-name%3D%22Path%2011896%22%20d%3D%22M1007.8%2C126.839v-21.38h1.781v21.38Z%22%20transform%3D%22translate(-767.086%20-105.362)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-brand-bar .kbb-nav-button:hover .kii-font.kim-logo, .kii-brand-bar .kbb-current .kii-font.kim-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20id%3D%22Group_7631%22%20data-name%3D%22Group%207631%22%20width%3D%2247.013%22%20height%3D%2210.865%22%20viewBox%3D%220%200%2047.013%2010.865%22%3E%3Cg%20id%3D%22Group_7534%22%20data-name%3D%22Group%207534%22%20opacity%3D%220.996%22%3E%3Cpath%20id%3D%22Path_11762%22%20data-name%3D%22Path%2011762%22%20d%3D%22M707.869%2C179.99h1.393v5.149l5.259-5.149h1.991l-4.494%2C4.246%2C4.587%2C6.273h-1.864l-3.768-5.287-1.712%2C1.621v3.666h-1.393Z%22%20transform%3D%22translate(-707.869%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11763%22%20data-name%3D%22Path%2011763%22%20d%3D%22M732.114%2C179.99h1.313v1.461h-1.313Zm0%2C2.886h1.313v7.633h-1.313Z%22%20transform%3D%22translate(-722.506%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11764%22%20data-name%3D%22Path%2011764%22%20d%3D%22M739.594%2C186.918h1.276v1.088a4.283%2C4.283%2C0%2C0%2C1%2C.83-.822%2C2.489%2C2.489%2C0%2C0%2C1%2C1.447-.437%2C2.28%2C2.28%2C0%2C0%2C1%2C1.476.451%2C2.36%2C2.36%2C0%2C0%2C1%2C.572.758%2C2.786%2C2.786%2C0%2C0%2C1%2C1.01-.913%2C2.822%2C2.822%2C0%2C0%2C1%2C1.3-.3%2C2.138%2C2.138%2C0%2C0%2C1%2C2.109%2C1.117%2C3.673%2C3.673%2C0%2C0%2C1%2C.3%2C1.619v5.106h-1.337V189.26a1.248%2C1.248%2C0%2C0%2C0-.383-1.052%2C1.519%2C1.519%2C0%2C0%2C0-.936-.287%2C1.858%2C1.858%2C0%2C0%2C0-1.308.509%2C2.247%2C2.247%2C0%2C0%2C0-.545%2C1.7v4.461H744.09v-5.005a2.553%2C2.553%2C0%2C0%2C0-.186-1.139%2C1.132%2C1.132%2C0%2C0%2C0-1.093-.536%2C1.89%2C1.89%2C0%2C0%2C0-1.329.566%2C2.771%2C2.771%2C0%2C0%2C0-.6%2C2.049v4.067h-1.29Z%22%20transform%3D%22translate(-727.018%20-183.981)%22%2F%3E%3Cpath%20id%3D%22Path_11765%22%20data-name%3D%22Path%2011765%22%20d%3D%22M769.4%2C179.9h1.252v3.817a2.922%2C2.922%2C0%2C0%2C1%2C1.013-.842%2C2.877%2C2.877%2C0%2C0%2C1%2C1.282-.29%2C3%2C3%2C0%2C0%2C1%2C2.332.984%2C4.191%2C4.191%2C0%2C0%2C1%2C.9%2C2.9%2C4.977%2C4.977%2C0%2C0%2C1-.885%2C3.022%2C2.875%2C2.875%2C0%2C0%2C1-2.454%2C1.2%2C2.528%2C2.528%2C0%2C0%2C1-1.478-.422%2C3.528%2C3.528%2C0%2C0%2C1-.766-.8v.981H769.4Zm4.93%2C8.83a4.1%2C4.1%2C0%2C0%2C0%2C.521-2.191%2C3.6%2C3.6%2C0%2C0%2C0-.521-2.006%2C1.724%2C1.724%2C0%2C0%2C0-1.537-.794%2C2.144%2C2.144%2C0%2C0%2C0-1.547.651%2C2.929%2C2.929%2C0%2C0%2C0-.662%2C2.149%2C4.821%2C4.821%2C0%2C0%2C0%2C.269%2C1.754%2C1.891%2C1.891%2C0%2C0%2C0%2C1.9%2C1.268A1.736%2C1.736%2C0%2C0%2C0%2C774.333%2C188.729Z%22%20transform%3D%22translate(-745.015%20-179.848)%22%2F%3E%3Cpath%20id%3D%22Path_11766%22%20data-name%3D%22Path%2011766%22%20d%3D%22M793.079%2C189.924a.7.7%2C0%2C0%2C0%2C.593-.37%2C1.172%2C1.172%2C0%2C0%2C0%2C.085-.5%2C1.047%2C1.047%2C0%2C0%2C0-.468-.959%2C2.5%2C2.5%2C0%2C0%2C0-1.34-.3%2C1.7%2C1.7%2C0%2C0%2C0-1.428.546%2C1.786%2C1.786%2C0%2C0%2C0-.306.9h-1.2a2.223%2C2.223%2C0%2C0%2C1%2C.917-1.978%2C3.775%2C3.775%2C0%2C0%2C1%2C2.053-.558%2C4.15%2C4.15%2C0%2C0%2C1%2C2.191.516%2C1.752%2C1.752%2C0%2C0%2C1%2C.84%2C1.6v4.418a.579.579%2C0%2C0%2C0%2C.082.322c.053.082.167.122.348.122a1.9%2C1.9%2C0%2C0%2C0%2C.191-.011c.072-.007.149-.018.231-.032v.952a3.933%2C3.933%2C0%2C0%2C1-.46.108%2C3.45%2C3.45%2C0%2C0%2C1-.428.021%2C1.069%2C1.069%2C0%2C0%2C1-.971-.472%2C1.848%2C1.848%2C0%2C0%2C1-.218-.709%2C3.3%2C3.3%2C0%2C0%2C1-1.135.9%2C3.506%2C3.506%2C0%2C0%2C1-1.625.379%2C2.41%2C2.41%2C0%2C0%2C1-1.742-.647%2C2.145%2C2.145%2C0%2C0%2C1-.678-1.62%2C2.093%2C2.093%2C0%2C0%2C1%2C.665-1.652%2C3.179%2C3.179%2C0%2C0%2C1%2C1.75-.722Zm-2.715%2C3.482a1.512%2C1.512%2C0%2C0%2C0%2C.968.322%2C2.94%2C2.94%2C0%2C0%2C0%2C1.316-.315%2C1.77%2C1.77%2C0%2C0%2C0%2C1.077-1.709v-1.037a2.175%2C2.175%2C0%2C0%2C1-.609.251%2C5.089%2C5.089%2C0%2C0%2C1-.731.144l-.776.1a3.016%2C3.016%2C0%2C0%2C0-1.056.293%2C1.14%2C1.14%2C0%2C0%2C0-.6%2C1.072A1.062%2C1.062%2C0%2C0%2C0%2C790.364%2C193.406Z%22%20transform%3D%22translate(-756.606%20-183.959)%22%2F%3E%3Cpath%20id%3D%22Path_11767%22%20data-name%3D%22Path%2011767%22%20d%3D%22M808.7%2C179.99h1.29v10.519H808.7Z%22%20transform%3D%22translate(-768.734%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11768%22%20data-name%3D%22Path%2011768%22%20d%3D%22M815.441%2C179.99h1.29v10.519h-1.29Z%22%20transform%3D%22translate(-772.803%20-179.903)%22%2F%3E%3Cpath%20id%3D%22Path_11769%22%20data-name%3D%22Path%2011769%22%20d%3D%22M823.992%2C181.041a.741.741%2C0%2C0%2C1-1.053%2C0%2C.744.744%2C0%2C0%2C1%2C.526-1.272.715.715%2C0%2C0%2C1%2C.526.217.748.748%2C0%2C0%2C1%2C0%2C1.056Zm-.978-.982a.637.637%2C0%2C0%2C0%2C0%2C.911.634.634%2C0%2C0%2C0%2C.9%2C0%2C.637.637%2C0%2C0%2C0%2C0-.911.606.606%2C0%2C0%2C0-.452-.189A.614.614%2C0%2C0%2C0%2C823.013%2C180.059Zm.441.042a.586.586%2C0%2C0%2C1%2C.218.03.2.2%2C0%2C0%2C1%2C.128.207.18.18%2C0%2C0%2C1-.08.162.292.292%2C0%2C0%2C1-.117.04.187.187%2C0%2C0%2C1%2C.138.08.214.214%2C0%2C0%2C1%2C.048.127v.12a.3.3%2C0%2C0%2C0%2C.005.043l.011.01h-.138V180.9l-.005-.027v-.064a.2.2%2C0%2C0%2C0-.08-.187.356.356%2C0%2C0%2C0-.16-.027h-.112v.322h-.144V180.1Zm.154.13a.371.371%2C0%2C0%2C0-.176-.031h-.122v.3h.128a.379.379%2C0%2C0%2C0%2C.138-.019.13.13%2C0%2C0%2C0%2C.085-.128A.122.122%2C0%2C0%2C0%2C823.609%2C180.23Z%22%20transform%3D%22translate(-777.197%20-179.769)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-brand-bar .kbb-nav-button:hover .kii-font.nof-logo, .kii-brand-bar .kbb-current .kii-font.nof-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20id%3D%22Group_7632%22%20data-name%3D%22Group%207632%22%20width%3D%2282.878%22%20height%3D%228.92%22%20viewBox%3D%220%200%2082.878%208.92%22%3E%3Cg%20id%3D%22Group_7532%22%20data-name%3D%22Group%207532%22%20transform%3D%22translate(0%200)%22%3E%3Cpath%20id%3D%22Path_11789%22%20data-name%3D%22Path%2011789%22%20d%3D%22M922.945%2C441.685a.676.676%2C0%2C1%2C1%2C.681.691.673.673%2C0%2C0%2C1-.681-.691m.681.83a.828.828%2C0%2C1%2C0-.846-.83A.829.829%2C0%2C0%2C0%2C923.626%2C442.515Zm-.175-.763h.17l.245.412h.165l-.271-.42a.248.248%2C0%2C0%2C0%2C.25-.263c0-.189-.112-.271-.335-.271H923.3v.955h.149Zm0-.125v-.292h.191c.106%2C0%2C.213.021.213.138%2C0%2C.146-.112.154-.234.154Z%22%20transform%3D%22translate(-841.588%20-433.594)%22%2F%3E%3Cpath%20id%3D%22Path_11790%22%20data-name%3D%22Path%2011790%22%20d%3D%22M809.964%2C427.291c0%2C1.46-.9%2C1.784-2.023%2C1.784h-4.722c-1.117%2C0-2.021-.324-2.021-1.784v-3.148c0-1.46.9-1.784%2C2.021-1.784h4.722c1.119%2C0%2C2.023.324%2C2.023%2C1.784m-9.934%2C2.723c0%2C2.116.734%2C3.137%2C3.068%2C3.137h4.961c2.334%2C0%2C3.071-1.021%2C3.071-3.137v-2.295c0-2.119-.737-3.137-3.071-3.137H803.1c-2.335%2C0-3.068%2C1.018-3.068%2C3.137Z%22%20transform%3D%22translate(-764.74%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11791%22%20data-name%3D%22Path%2011791%22%20d%3D%22M705.653%2C421.434h1.739l7.886%2C7.527v-7.527h1.167V430H714.71l-7.889-7.527V430h-1.167%22%20transform%3D%22translate(-705.653%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11792%22%20data-name%3D%22Path%2011792%22%20d%3D%22M746.594%2C427.244h-5.783l2.893-4.863M737.859%2C430h1.324l1.069-1.813h6.9L748.226%2C430h1.319l-5.116-8.57h-1.452Z%22%20transform%3D%22translate(-725.818%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11793%22%20data-name%3D%22Path%2011793%22%20d%3D%22M767.577%2C422.38h-4.358v-.947H773.1v.947h-4.358V430h-1.162%22%20transform%3D%22translate(-741.692%20-421.434)%22%2F%3E%3Crect%20id%3D%22Rectangle_2112%22%20data-name%3D%22Rectangle%202112%22%20width%3D%221.166%22%20height%3D%228.568%22%20transform%3D%22translate(32.568)%22%2F%3E%3Cpath%20id%3D%22Path_11794%22%20data-name%3D%22Path%2011794%22%20d%3D%22M833.835%2C421.434h1.734l7.9%2C7.527v-7.527h1.159V430h-1.734L835%2C422.477V430h-1.165%22%20transform%3D%22translate(-785.902%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11795%22%20data-name%3D%22Path%2011795%22%20d%3D%22M874.549%2C427.244h-5.78l2.893-4.863M865.817%2C430h1.319l1.074-1.813h6.9L876.182%2C430h1.324l-5.121-8.57h-1.452Z%22%20transform%3D%22translate(-805.926%20-421.434)%22%2F%3E%3Cpath%20id%3D%22Path_11796%22%20data-name%3D%22Path%2011796%22%20d%3D%22M900.186%2C421.434h1.165v7.62h6.69V430h-7.854%22%20transform%3D%22translate(-827.442%20-421.434)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-brand-bar .kbb-nav-button:hover .kii-font.etc-logo, .kii-brand-bar .kbb-current .kii-font.etc-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20id%3D%22Group_7633%22%20data-name%3D%22Group%207633%22%20width%3D%2228.848%22%20height%3D%2216.623%22%20viewBox%3D%220%200%2028.848%2016.623%22%3E%3Cg%20id%3D%22Group_7537%22%20data-name%3D%22Group%207537%22%20transform%3D%22translate(0%200)%22%3E%3Cg%20id%3D%22Group_7535%22%20data-name%3D%22Group%207535%22%20transform%3D%22translate(0%200)%22%3E%3Cpath%20id%3D%22Path_11785%22%20data-name%3D%22Path%2011785%22%20d%3D%22M220.346%2C259.094a2.98%2C2.98%2C0%2C0%2C0-2.975%2C3.076%2C2.882%2C2.882%2C0%2C0%2C0%2C3.035%2C2.885v.129c-2.118%2C0-3.834%2C2.187-3.834%2C4.728%2C0%2C2.636%2C1.787%2C4.678%2C3.951%2C4.678a5.077%2C5.077%2C0%2C0%2C0%2C2.546-.963%2C4.5%2C4.5%2C0%2C0%2C0%2C1.905-3.56%2C4.3%2C4.3%2C0%2C0%2C0-1.7-3.272c-2.809.919-4.253.754-4.4%2C2.63-.036.456.39-.164.746-.624a2.032%2C2.032%2C0%2C0%2C1%2C.522-.472%2C1.8%2C1.8%2C0%2C0%2C1%2C1.248-.261%2C1.621%2C1.621%2C0%2C0%2C1%2C1.131.73%2C1.888%2C1.888%2C0%2C0%2C1%2C.315%2C1.426%2C1.945%2C1.945%2C0%2C0%2C1-1.942%2C1.73%2C1.766%2C1.766%2C0%2C0%2C1-1.888-1.118%2C3.419%2C3.419%2C0%2C0%2C1-.234-1.21c0-2.635%2C2.81-4.084%2C5-4.987%2C1.271-.521%2C2.751-.537%2C3.281-1.1a1.714%2C1.714%2C0%2C0%2C0%2C.468-1.173c.037-.358-.221-.247-.532.253a2.528%2C2.528%2C0%2C0%2C1-.4.465%2C1.513%2C1.513%2C0%2C0%2C1-1.228.255%2C1.411%2C1.411%2C0%2C0%2C1-1.017-.657%2C1.8%2C1.8%2C0%2C0%2C1-.282-1.282%2C1.759%2C1.759%2C0%2C0%2C1%2C.608-1.138%2C1.4%2C1.4%2C0%2C0%2C1%2C1.153-.359%2C1.8%2C1.8%2C0%2C0%2C1%2C.982.476%2C2.92%2C2.92%2C0%2C0%2C1%2C.723%2C1.01%2C2.183%2C2.183%2C0%2C0%2C1%2C.077%2C1.09c-.263%2C2.07-2.118%2C3.491-4.188%2C4.25a4.612%2C4.612%2C0%2C0%2C1%2C1.67%2C3.443c0%2C2.66-2.989%2C5.082-6.634%2C5.082-3.693%2C0-5.134-2.445-5.134-5.082%2C0-1.809.852-4.653%2C3.817-5.033a3.839%2C3.839%2C0%2C0%2C1-1.953-.744%2C2.835%2C2.835%2C0%2C0%2C1-1.081-2.461c0-1.781%2C1.881-3.3%2C4.4-3.3a5.993%2C5.993%2C0%2C0%2C1%2C4%2C1.5%2C2.933%2C2.933%2C0%2C0%2C1%2C.568.613%2C1.839%2C1.839%2C0%2C0%2C1%2C.334%2C1.046%2C1.814%2C1.814%2C0%2C0%2C1-.257.911%2C1.715%2C1.715%2C0%2C0%2C1-1.5.847%2C1.615%2C1.615%2C0%2C0%2C1-1.646-1.272%2C3.108%2C3.108%2C0%2C0%2C1-.036-.485%2C1.45%2C1.45%2C0%2C0%2C1%2C.518-1.1c.116-.106.233-.221.356-.346a.754.754%2C0%2C0%2C0%2C.269-.718c-.031-.344-.278-.479-.768-.528m9.064%2C15.423a.7.7%2C0%2C0%2C1-.392-.405%2C2.456%2C2.456%2C0%2C0%2C1-.153-.968v-5.791h1.3v-.269h-1.3v-3.546a5.2%2C5.2%2C0%2C0%2C1-3.013%2C3.523%2C3.767%2C3.767%2C0%2C0%2C1-.514.037v.116a.467.467%2C0%2C0%2C1%2C.346.136.473.473%2C0%2C0%2C1%2C.134.348v1.084h0V272.8h0a2.951%2C2.951%2C0%2C0%2C0%2C.189%2C1.032%2C2.1%2C2.1%2C0%2C0%2C0%2C.516.775%2C1.965%2C1.965%2C0%2C0%2C0%2C.767.433%2C3.139%2C3.139%2C0%2C0%2C0%2C.94.137%2C3.056%2C3.056%2C0%2C0%2C0%2C1.246-.261%2C6.323%2C6.323%2C0%2C0%2C0%2C1.036-.572l.019-.156a3.8%2C3.8%2C0%2C0%2C1-.585.291.788.788%2C0%2C0%2C1-.537.039m5.727-6.114a1.215%2C1.215%2C0%2C0%2C0-.431.923%2C1.191%2C1.191%2C0%2C0%2C0%2C.423.92%2C1.471%2C1.471%2C0%2C0%2C0%2C1.017.379%2C1.453%2C1.453%2C0%2C0%2C0%2C1-.379%2C1.191%2C1.191%2C0%2C0%2C0%2C.423-.92%2C1.547%2C1.547%2C0%2C0%2C0-.279-.875%2C2.62%2C2.62%2C0%2C0%2C0-.747-.715%2C3.863%2C3.863%2C0%2C0%2C0-1.1-.477%2C5.02%2C5.02%2C0%2C0%2C0-1.351-.174%2C4.408%2C4.408%2C0%2C0%2C0-1.72.322%2C3.893%2C3.893%2C0%2C0%2C0-1.3.864%2C3.649%2C3.649%2C0%2C0%2C0-.811%2C1.284%2C4.618%2C4.618%2C0%2C0%2C0%2C0%2C3.163%2C3.749%2C3.749%2C0%2C0%2C0%2C.811%2C1.294%2C3.852%2C3.852%2C0%2C0%2C0%2C1.3.872%2C4.408%2C4.408%2C0%2C0%2C0%2C1.72.32%2C5.074%2C5.074%2C0%2C0%2C0%2C1.351-.173%2C3.763%2C3.763%2C0%2C0%2C0%2C1.1-.485%2C2.776%2C2.776%2C0%2C0%2C0%2C.747-.717%2C1.525%2C1.525%2C0%2C0%2C0%2C.279-.881%2C1.2%2C1.2%2C0%2C0%2C0-.423-.913%2C1.442%2C1.442%2C0%2C0%2C0-1-.387%2C1.46%2C1.46%2C0%2C0%2C0-1.017.387%2C1.2%2C1.2%2C0%2C0%2C0-.423.913%2C1.236%2C1.236%2C0%2C0%2C0%2C.431.94c.1.086.2.182.3.287a.393.393%2C0%2C0%2C1%2C.1.387.573.573%2C0%2C0%2C1-.306.355%2C1.566%2C1.566%2C0%2C0%2C1-.613.173.735.735%2C0%2C0%2C0-.108.008.658.658%2C0%2C0%2C1-.09.008%2C1.655%2C1.655%2C0%2C0%2C1-.711-.14%2C1.141%2C1.141%2C0%2C0%2C1-.5-.479%2C2.68%2C2.68%2C0%2C0%2C1-.3-.888%2C7.929%2C7.929%2C0%2C0%2C1-.1-1.392V270.08a7.892%2C7.892%2C0%2C0%2C1%2C.1-1.391%2C2.691%2C2.691%2C0%2C0%2C1%2C.3-.888%2C1.141%2C1.141%2C0%2C0%2C1%2C.5-.479%2C1.655%2C1.655%2C0%2C0%2C1%2C.711-.141%2C1.047%2C1.047%2C0%2C0%2C1%2C.2.017%2C1.543%2C1.543%2C0%2C0%2C1%2C.613.173.578.578%2C0%2C0%2C1%2C.306.354.39.39%2C0%2C0%2C1-.1.387c-.1.105-.2.2-.3.29%22%20transform%3D%22translate(-213.318%20-258.631)%22%2F%3E%3Cpath%20id%3D%22Path_11786%22%20data-name%3D%22Path%2011786%22%20d%3D%22M297.572%2C304.29a1.482%2C1.482%2C0%2C0%2C0-2.075%2C0%2C1.462%2C1.462%2C0%2C0%2C0%2C0%2C2.062%2C1.482%2C1.482%2C0%2C0%2C0%2C2.075%2C0%2C1.459%2C1.459%2C0%2C0%2C0%2C0-2.062%22%20transform%3D%22translate(-270.323%20-290.208)%22%2F%3E%3Cpath%20id%3D%22Path_11787%22%20data-name%3D%22Path%2011787%22%20d%3D%22M305.08%2C311.1v.1h-.129v.429h-.105V311.2h-.122v-.1Z%22%20transform%3D%22translate(-276.875%20-295.116)%22%2F%3E%3Cpath%20id%3D%22Path_11788%22%20data-name%3D%22Path%2011788%22%20d%3D%22M306.689%2C311.029v.55h-.1v-.253l-.173.246h0l-.166-.23v.237h-.1v-.55h0l.267.38.275-.38Z%22%20transform%3D%22translate(-277.842%20-295.07)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-brand-bar .kbb-nav-button:hover .kii-font.itw-logo, .kii-brand-bar .kbb-current .kii-font.itw-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20width%3D%2294.642%22%20height%3D%2212.081%22%20viewBox%3D%220%200%2094.642%2012.081%22%3E%3Cg%20id%3D%22Group_7848%22%20data-name%3D%22Group%207848%22%20transform%3D%22translate(-895.435%20-14.46)%22%3E%3Cg%20id%3D%22Group_7309%22%20data-name%3D%22Group%207309%22%20transform%3D%22translate(895.435%2014.46)%22%3E%3Cpath%20id%3D%22Path_11770%22%20data-name%3D%22Path%2011770%22%20d%3D%22M211.1%2C361.868c.715-.133.915-.467.915-1.879v-4.951c0-1.064-.3-1.329-.915-1.48h4.436c-.747.166-.913.483-.913%2C1.895v4.952c0%2C1.046.25%2C1.329.913%2C1.462Zm2.21-11.8a1.329%2C1.329%2C0%2C0%2C1%2C1.347%2C1.279%2C1.341%2C1.341%2C0%2C0%2C1-2.676%2C0A1.325%2C1.325%2C0%2C0%2C1%2C213.31%2C350.069Z%22%20transform%3D%22translate(-211.1%20-350.069)%22%2F%3E%3Cpath%20id%3D%22Path_11771%22%20data-name%3D%22Path%2011771%22%20d%3D%22M226.536%2C368.109c.73-.133.913-.465.913-1.945V361.2c0-1-.3-1.244-.913-1.4h3.522v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.416-.116.666-.4.666-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.565-2.475-1.645-2.475a1.77%2C1.77%2C0%2C0%2C0-1.064.348%2C2.882%2C2.882%2C0%2C0%2C1%2C2.458-1.146c1.746%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-221.103%20-356.31)%22%2F%3E%3Cpath%20id%3D%22Path_11772%22%20data-name%3D%22Path%2011772%22%20d%3D%22M258.4%2C356.546c0-1-.283-1.246-.915-1.4h.915l2.608-2.626v2.626H263.8v.421h-2.792v5.778a2.689%2C2.689%2C0%2C0%2C0%2C.665%2C2.191c-2.16-.016-3.273-1.561-3.273-3.9Z%22%20transform%3D%22translate(-241.157%20-351.66)%22%2F%3E%3Cpath%20id%3D%22Path_11773%22%20data-name%3D%22Path%2011773%22%20d%3D%22M302.61%2C368.292c.715-.133.915-.481.915-1.961v-4.886c0-1.08-.3-1.314-.915-1.462h3.522v6.831c0%2C1.064.267%2C1.345.916%2C1.478Zm6.247-8.243a1.2%2C1.2%2C0%2C1%2C1-1.262%2C1.2A1.239%2C1.239%2C0%2C0%2C1%2C308.857%2C360.049Z%22%20transform%3D%22translate(-270.401%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11774%22%20data-name%3D%22Path%2011774%22%20d%3D%22M326.853%2C361.412c-.35-1.064-.749-1.28-1.429-1.429h4.387c-.465.133-.665.366-.332%2C1.263.066.133%2C1.3%2C3.64%2C1.363%2C3.789l-1.347%2C3.49Zm4.569-1.429h3.425c-.417.117-.649.366-.25%2C1.345l1.345%2C3.707-1.345%2C3.473Zm7.627%2C0a2.406%2C2.406%2C0%2C0%2C0-1.928%2C1.7c.384-1.064.2-1.529-.366-1.7Z%22%20transform%3D%22translate(-285.185%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11775%22%20data-name%3D%22Path%2011775%22%20d%3D%22M390.045%2C361.262a1.725%2C1.725%2C0%2C0%2C0-1.4-1.279h4.487c-.483.133-.646.383-.3%2C1.247l.2.564%2C1.329%2C3.523L393%2C368.574Zm7.594-1.279c-1%2C.233-1.478.614-2.061%2C1.944.516-1.329.316-1.711-.448-1.944Z%22%20transform%3D%22translate(-326.155%20-356.493)%22%2F%3E%3Cpath%20id%3D%22Path_11776%22%20data-name%3D%22Path%2011776%22%20d%3D%22M440.9%2C368.109c.731-.133.915-.465.915-1.945V361.2c0-1-.3-1.244-.915-1.4h3.523v6.847c0%2C1.064.2%2C1.347.665%2C1.462Zm6.3%2C0c.415-.116.665-.4.665-1.462%2C0-1.214.016-2.442.016-3.673%2C0-1.662-.566-2.475-1.646-2.475a1.773%2C1.773%2C0%2C0%2C0-1.064.348%2C2.889%2C2.889%2C0%2C0%2C1%2C2.459-1.146c1.747%2C0%2C2.858.981%2C2.858%2C3.473v3.474c0%2C1.064.266%2C1.347.915%2C1.462Z%22%20transform%3D%22translate(-360.012%20-356.31)%22%2F%3E%3Cg%20id%3D%22Group_7306%22%20data-name%3D%22Group%207306%22%20transform%3D%22translate(53.557%203.406)%22%3E%3Cg%20id%3D%22Group_7304%22%20data-name%3D%22Group%207304%22%3E%3Cpath%20id%3D%22Path_11777%22%20data-name%3D%22Path%2011777%22%20d%3D%22M365.917%2C365.248c0%2C1.711.747%2C2.907%2C1.877%2C2.957-2.491-.032-4.536-1.512-4.536-4.22%2C0-2.725%2C2.045-4.205%2C4.553-4.238-1.113.066-1.894%2C1.279-1.894%2C2.975Z%22%20transform%3D%22translate(-363.258%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7305%22%20data-name%3D%22Group%207305%22%20transform%3D%22translate(4.519)%22%3E%3Cpath%20id%3D%22Path_11778%22%20data-name%3D%22Path%2011778%22%20d%3D%22M378.008%2C362.722c0-1.679-.766-2.909-1.9-2.975%2C2.51.051%2C4.555%2C1.529%2C4.555%2C4.221%2C0%2C2.725-2.061%2C4.22-4.571%2C4.237%2C1.146-.049%2C1.912-1.228%2C1.912-2.957Z%22%20transform%3D%22translate(-376.096%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7307%22%20data-name%3D%22Group%207307%22%20transform%3D%22translate(71.35%203.406)%22%3E%3Cpath%20id%3D%22Path_11779%22%20data-name%3D%22Path%2011779%22%20d%3D%22M416.452%2C365.264c0%2C1.728.763%2C2.941%2C2.475%2C2.941a4.834%2C4.834%2C0%2C0%2C1-.5.017c-2.757%2C0-4.618-1.7-4.618-4.237a4.167%2C4.167%2C0%2C0%2C1%2C4.438-4.238c-1.329.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-413.809%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11780%22%20data-name%3D%22Path%2011780%22%20d%3D%22M426.815%2C364.134c1.231-.449%2C1.462-.814%2C1.431-1.728-.066-1.412-.614-2.576-1.827-2.659%2C2.707.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-421.98%20-359.747)%22%2F%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7308%22%20data-name%3D%22Group%207308%22%20transform%3D%22translate(22.527%203.406)%22%3E%3Cpath%20id%3D%22Path_11781%22%20data-name%3D%22Path%2011781%22%20d%3D%22M277.745%2C365.264c0%2C1.728.762%2C2.941%2C2.474%2C2.941a4.808%2C4.808%2C0%2C0%2C1-.5.017c-2.759%2C0-4.618-1.7-4.618-4.237a4.166%2C4.166%2C0%2C0%2C1%2C4.438-4.238c-1.332.066-1.795%2C1.446-1.795%2C2.958Z%22%20transform%3D%22translate(-275.102%20-359.747)%22%2F%3E%3Cpath%20id%3D%22Path_11782%22%20data-name%3D%22Path%2011782%22%20d%3D%22M288.11%2C364.134c1.23-.449%2C1.462-.814%2C1.429-1.728-.066-1.412-.616-2.576-1.828-2.659%2C2.709.082%2C4.6%2C1.744%2C4.4%2C4.387Z%22%20transform%3D%22translate(-283.272%20-359.747)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20id%3D%22Group_7310%22%20data-name%3D%22Group%207310%22%20transform%3D%22translate(986.27%2017.948)%22%3E%3Cpath%20id%3D%22Path_11783%22%20data-name%3D%22Path%2011783%22%20d%3D%22M472.244%2C360.43c-.194%2C0-.359-.008-.58-.008-.005.053-.005.121-.005.161v.989a3.248%2C3.248%2C0%2C0%2C0%2C.013.372h-.364c.013-.126.019-.453.019-.622v-.508c0-.1%2C0-.253-.008-.392-.218%2C0-.4%2C0-.588.008.008-.086.008-.211.008-.307.239.007.468.011.753.011s.532%2C0%2C.771-.011A2.184%2C2.184%2C0%2C0%2C0%2C472.244%2C360.43Z%22%20transform%3D%22translate(-470.731%20-360.073)%22%2F%3E%3Cpath%20id%3D%22Path_11784%22%20data-name%3D%22Path%2011784%22%20d%3D%22M477.408%2C361.875c-.005-.074-.032-.292-.048-.394l-.1-.7c-.122.265-.447.989-.492%2C1.089l-.122.025c-.04-.094-.362-.81-.489-1.1l-.1.693c-.013.1-.043.439-.037.37h-.34c.032-.133.085-.457.112-.622l.08-.574c.024-.165.066-.516.077-.65l.128-.027.178.384.46.985.457-.978.168-.383h.128c.021.15.064.5.085.669l.082.572c.024.172.061.379.109.625Z%22%20transform%3D%22translate(-473.942%20-359.981)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  overflow: hidden;
}
.kii-brand-bar .kbb-nav-button:hover .kii-font.ppn-logo, .kii-brand-bar .kbb-current .kii-font.ppn-logo {
  content: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22white%22%20width%3D%2260.431%22%20height%3D%2212.543%22%20viewBox%3D%220%200%2060.431%2012.543%22%3E%3Cg%20id%3D%22Group_136%22%20data-name%3D%22Group%20136%22%20transform%3D%22translate(-2121%201030.159)%22%3E%3Cpath%20id%3D%22Path_204%22%20data-name%3D%22Path%20204%22%20d%3D%22M2166.519-1029.72a1.7%2C1.7%2C0%2C0%2C0-1.122-.35h-.359a1.683%2C1.683%2C0%2C0%2C0-1.1.359%2C1.616%2C1.616%2C0%2C0%2C0-.44%2C1.31v5.743a1.615%2C1.615%2C0%2C0%2C0%2C.44%2C1.311%2C1.744%2C1.744%2C0%2C0%2C0%2C1.139.357h.358a1.589%2C1.589%2C0%2C0%2C0%2C1.087-.367%2C1.661%2C1.661%2C0%2C0%2C0%2C.422-1.3v-5.743A1.655%2C1.655%2C0%2C0%2C0%2C2166.519-1029.72Z%22%2F%3E%3Cpath%20id%3D%22Path_205%22%20data-name%3D%22Path%20205%22%20d%3D%22M2176.393-1029.1a2.659%2C2.659%2C0%2C0%2C0-.978-.772%2C3.361%2C3.361%2C0%2C0%2C0-1.462-.287%2C3.137%2C3.137%2C0%2C0%2C0-1.768.457%2C4.022%2C4.022%2C0%2C0%2C0-1.158%2C1.176%2C2.426%2C2.426%2C0%2C0%2C0-.332-.745%2C1.792%2C1.792%2C0%2C0%2C0-.475-.476%2C1.774%2C1.774%2C0%2C0%2C0-.565-.251%2C2.654%2C2.654%2C0%2C0%2C0-.6-.072%2C2.587%2C2.587%2C0%2C0%2C0-.924.153c-.268.1-.4.182-.4.242v7.017a1.626%2C1.626%2C0%2C0%2C0%2C.438%2C1.311%2C1.724%2C1.724%2C0%2C0%2C0%2C1.122.357h.36a1.656%2C1.656%2C0%2C0%2C0%2C1.095-.357%2C1.645%2C1.645%2C0%2C0%2C0%2C.43-1.311v-3.984a1.635%2C1.635%2C0%2C0%2C1%2C.539-.511%2C1.525%2C1.525%2C0%2C0%2C1%2C.808-.207%2C1.06%2C1.06%2C0%2C0%2C1%2C.843.351%2C1.41%2C1.41%2C0%2C0%2C1%2C.3.959v3.392a1.619%2C1.619%2C0%2C0%2C0%2C.441%2C1.311%2C1.743%2C1.743%2C0%2C0%2C0%2C1.139.357h.341a1.615%2C1.615%2C0%2C0%2C0%2C1.1-.367%2C1.661%2C1.661%2C0%2C0%2C0%2C.422-1.3v-3.984a5.1%2C5.1%2C0%2C0%2C0-.172-1.337A3.121%2C3.121%2C0%2C0%2C0%2C2176.393-1029.1Z%22%2F%3E%3Cpath%20id%3D%22Path_206%22%20data-name%3D%22Path%20206%22%20d%3D%22M2179.509-1024.718a1.922%2C1.922%2C0%2C0%2C0-1.921%2C1.922%2C1.921%2C1.921%2C0%2C0%2C0%2C1.921%2C1.922%2C1.921%2C1.921%2C0%2C0%2C0%2C1.922-1.922A1.921%2C1.921%2C0%2C0%2C0%2C2179.509-1024.718Z%22%2F%3E%3Cpath%20id%3D%22Path_207%22%20data-name%3D%22Path%20207%22%20d%3D%22M2140.068-1028.876a4.34%2C4.34%2C0%2C0%2C0-1.525-.952%2C5.662%2C5.662%2C0%2C0%2C0-1.983-.331%2C5.81%2C5.81%2C0%2C0%2C0-2%2C.331%2C4.5%2C4.5%2C0%2C0%2C0-1.553.942%2C4.151%2C4.151%2C0%2C0%2C0-1%2C1.472%2C5.006%2C5.006%2C0%2C0%2C0-.35%2C1.9%2C5.264%2C5.264%2C0%2C0%2C0%2C.339%2C1.938%2C4.175%2C4.175%2C0%2C0%2C0%2C.971%2C1.472%2C4.268%2C4.268%2C0%2C0%2C0%2C1.525.943%2C5.794%2C5.794%2C0%2C0%2C0%2C2.011.331%2C5.792%2C5.792%2C0%2C0%2C0%2C2.009-.331%2C4.34%2C4.34%2C0%2C0%2C0%2C1.533-.943%2C4.2%2C4.2%2C0%2C0%2C0%2C.989-1.472%2C5.076%2C5.076%2C0%2C0%2C0%2C.35-1.92%2C5.1%2C5.1%2C0%2C0%2C0-.342-1.911A4.186%2C4.186%2C0%2C0%2C0%2C2140.068-1028.876Zm-3.519%2C5.285a1.922%2C1.922%2C0%2C0%2C1-1.923-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923-1.923%2C1.92%2C1.92%2C0%2C0%2C1%2C1.92%2C1.923A1.92%2C1.92%2C0%2C0%2C1%2C2136.549-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_208%22%20data-name%3D%22Path%20208%22%20d%3D%22M2129.991-1028.911a3.644%2C3.644%2C0%2C0%2C0-1.291-.925%2C4.212%2C4.212%2C0%2C0%2C0-1.67-.323%2C3.019%2C3.019%2C0%2C0%2C0-1.686.466%2C2.587%2C2.587%2C0%2C0%2C0-1.025%2C1.239%2C2.144%2C2.144%2C0%2C0%2C0-.323-.789%2C1.984%2C1.984%2C0%2C0%2C0-.484-.494%2C1.625%2C1.625%2C0%2C0%2C0-.574-.261%2C2.775%2C2.775%2C0%2C0%2C0-.61-.072%2C2.6%2C2.6%2C0%2C0%2C0-.925.153c-.269.1-.4.182-.4.242v10.408a1.59%2C1.59%2C0%2C0%2C0%2C.439%2C1.3%2C1.747%2C1.747%2C0%2C0%2C0%2C1.121.349h.36a1.665%2C1.665%2C0%2C0%2C0%2C1.1-.358%2C1.613%2C1.613%2C0%2C0%2C0%2C.429-1.293v-3.1a2.653%2C2.653%2C0%2C0%2C0%2C1%2C1.114%2C2.868%2C2.868%2C0%2C0%2C0%2C1.588.43%2C3.93%2C3.93%2C0%2C0%2C0%2C1.67-.35%2C3.862%2C3.862%2C0%2C0%2C0%2C1.291-.968%2C4.307%2C4.307%2C0%2C0%2C0%2C.825-1.481%2C5.942%2C5.942%2C0%2C0%2C0%2C.287-1.885%2C6.108%2C6.108%2C0%2C0%2C0-.287-1.937A4.094%2C4.094%2C0%2C0%2C0%2C2129.991-1028.911Zm-3.743%2C5.32a1.922%2C1.922%2C0%2C0%2C1-1.921-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.921-1.923%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923%2C1.923A1.923%2C1.923%2C0%2C0%2C1%2C2126.248-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_209%22%20data-name%3D%22Path%20209%22%20d%3D%22M2151.022-1028.911a3.622%2C3.622%2C0%2C0%2C0-1.292-.925%2C4.2%2C4.2%2C0%2C0%2C0-1.669-.323%2C3.031%2C3.031%2C0%2C0%2C0-1.688.466%2C2.6%2C2.6%2C0%2C0%2C0-1.022%2C1.239%2C2.14%2C2.14%2C0%2C0%2C0-.323-.789%2C1.984%2C1.984%2C0%2C0%2C0-.484-.494%2C1.638%2C1.638%2C0%2C0%2C0-.575-.261%2C2.764%2C2.764%2C0%2C0%2C0-.609-.072%2C2.6%2C2.6%2C0%2C0%2C0-.925.153c-.269.1-.4.182-.4.242v10.408a1.593%2C1.593%2C0%2C0%2C0%2C.438%2C1.3%2C1.749%2C1.749%2C0%2C0%2C0%2C1.123.349h.358a1.648%2C1.648%2C0%2C0%2C0%2C1.094-.358%2C1.606%2C1.606%2C0%2C0%2C0%2C.431-1.293v-3.1a2.675%2C2.675%2C0%2C0%2C0%2C1%2C1.114%2C2.878%2C2.878%2C0%2C0%2C0%2C1.588.43%2C3.915%2C3.915%2C0%2C0%2C0%2C1.669-.35%2C3.837%2C3.837%2C0%2C0%2C0%2C1.292-.968%2C4.333%2C4.333%2C0%2C0%2C0%2C.828-1.481%2C6%2C6%2C0%2C0%2C0%2C.286-1.885%2C6.172%2C6.172%2C0%2C0%2C0-.286-1.937A4.118%2C4.118%2C0%2C0%2C0%2C2151.022-1028.911Zm-3.742%2C5.32a1.921%2C1.921%2C0%2C0%2C1-1.921-1.921%2C1.921%2C1.921%2C0%2C0%2C1%2C1.921-1.923%2C1.924%2C1.924%2C0%2C0%2C1%2C1.923%2C1.923A1.924%2C1.924%2C0%2C0%2C1%2C2147.28-1023.591Z%22%2F%3E%3Cpath%20id%3D%22Path_210%22%20data-name%3D%22Path%20210%22%20d%3D%22M2161.739-1028.911a3.629%2C3.629%2C0%2C0%2C0-1.291-.925%2C4.215%2C4.215%2C0%2C0%2C0-1.672-.323%2C3.019%2C3.019%2C0%2C0%2C0-1.684.466%2C2.578%2C2.578%2C0%2C0%2C0-1.023%2C1.239%2C2.14%2C2.14%2C0%2C0%2C0-.325-.789%2C1.96%2C1.96%2C0%2C0%2C0-.483-.494%2C1.633%2C1.633%2C0%2C0%2C0-.574-.261%2C2.784%2C2.784%2C0%2C0%2C0-.611-.072%2C2.59%2C2.59%2C0%2C0%2C0-.923.153c-.27.1-.4.182-.4.242v10.408a1.593%2C1.593%2C0%2C0%2C0%2C.438%2C1.3%2C1.752%2C1.752%2C0%2C0%2C0%2C1.124.349h.358a1.659%2C1.659%2C0%2C0%2C0%2C1.1-.358%2C1.619%2C1.619%2C0%2C0%2C0%2C.429-1.293v-3.1a2.66%2C2.66%2C0%2C0%2C0%2C1%2C1.114%2C2.865%2C2.865%2C0%2C0%2C0%2C1.585.43%2C3.933%2C3.933%2C0%2C0%2C0%2C1.672-.35%2C3.845%2C3.845%2C0%2C0%2C0%2C1.291-.968%2C4.3%2C4.3%2C0%2C0%2C0%2C.825-1.481%2C5.887%2C5.887%2C0%2C0%2C0%2C.288-1.885%2C6.053%2C6.053%2C0%2C0%2C0-.288-1.937A4.083%2C4.083%2C0%2C0%2C0%2C2161.739-1028.911Zm-3.742%2C5.32a1.922%2C1.922%2C0%2C0%2C1-1.921-1.921%2C1.922%2C1.922%2C0%2C0%2C1%2C1.921-1.923%2C1.922%2C1.922%2C0%2C0%2C1%2C1.923%2C1.923A1.923%2C1.923%2C0%2C0%2C1%2C2158-1023.591Z%22%2F%3E%3Cg%20id%3D%22Group_135%22%20data-name%3D%22Group%20135%22%3E%3Cpath%20id%3D%22Path_211%22%20data-name%3D%22Path%20211%22%20d%3D%22M2178.55-1029.195a.937.937%2C0%2C0%2C1%2C.96-.964.919.919%2C0%2C0%2C1%2C.961.956.94.94%2C0%2C0%2C1-.962.967A.92.92%2C0%2C0%2C1%2C2178.55-1029.195Zm1.8%2C0a.827.827%2C0%2C0%2C0-.845-.859.814.814%2C0%2C0%2C0-.842.861.821.821%2C0%2C0%2C0%2C.845.856A.815.815%2C0%2C0%2C0%2C2180.354-1029.2Zm-.791.086.344.352c.006.011-.023.054-.07.054a.118.118%2C0%2C0%2C1-.091-.046l-.325-.351h-.126v.337a.054.054%2C0%2C0%2C1-.057.06h-.021c-.035%2C0-.054-.025-.054-.066v-.853a.07.07%2C0%2C0%2C1%2C.071-.078h.3c.247%2C0%2C.383.1.383.3C2179.917-1029.228%2C2179.8-1029.116%2C2179.563-1029.113Zm-.027-.1c.165%2C0%2C.25-.073.25-.194s-.087-.191-.256-.191h-.238v.385Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.kii-fa-reverse {
  background-color: var(--bs-dark);
  color: var(--bs-white);
  width: 21px;
  border-radius: 50%;
  text-align: center;
}

.kii-fa-border {
  border: solid 1px var(--bs-dark);
  width: 23px;
  border-radius: 50%;
  text-align: center;
}

input:-webkit-autofill, input:-webkit-autofill:focus {
  /* This is a hack to get around the !important 
      useragent stylesheet when autofill is used.
  */
  transition: background-color 600000s 0s, color 600000s 0s !important;
}

body {
  /*
      When ClientValidationEnabled in program.cs use the below css to hide valid markings.
  */
}
body .kii-form.is-pending, body .edit-order.is-pending, body .edit-row.is-pending, body .kii-style.is-pending {
  overflow: hidden;
}
body .kii-form.is-pending::before, body .edit-order.is-pending::before, body .edit-row.is-pending::before, body .kii-style.is-pending::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  padding: 0;
}
body .kii-form.is-pending::after, body .edit-order.is-pending::after, body .edit-row.is-pending::after, body .kii-style.is-pending::after {
  position: absolute;
  z-index: 2;
  margin: 0;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  display: inline-block;
  width: 2rem;
  height: 2rem;
  content: "";
  vertical-align: -0.125em;
  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;
}
body .kii-form .form-control.is-valid, body .kii-form .form-control.is-invalid, body .kii-form .form-control.is-expiring, body .kii-form .form-control.is-expiring-verysoon, body .kii-form .form-control.is-expired, body .kii-form .form-check-input.is-valid, body .kii-form .form-check-input.is-invalid, body .kii-form .form-check-input.is-expiring, body .kii-form .form-check-input.is-expiring-verysoon, body .kii-form .form-check-input.is-expired, body .kii-form .form-select.is-valid, body .kii-form .form-select.is-invalid, body .kii-form .form-select.is-expiring, body .kii-form .form-select.is-expiring-verysoon, body .kii-form .form-select.is-expired, body .edit-order .form-control.is-valid, body .edit-order .form-control.is-invalid, body .edit-order .form-control.is-expiring, body .edit-order .form-control.is-expiring-verysoon, body .edit-order .form-control.is-expired, body .edit-order .form-check-input.is-valid, body .edit-order .form-check-input.is-invalid, body .edit-order .form-check-input.is-expiring, body .edit-order .form-check-input.is-expiring-verysoon, body .edit-order .form-check-input.is-expired, body .edit-order .form-select.is-valid, body .edit-order .form-select.is-invalid, body .edit-order .form-select.is-expiring, body .edit-order .form-select.is-expiring-verysoon, body .edit-order .form-select.is-expired, body .edit-row .form-control.is-valid, body .edit-row .form-control.is-invalid, body .edit-row .form-control.is-expiring, body .edit-row .form-control.is-expiring-verysoon, body .edit-row .form-control.is-expired, body .edit-row .form-check-input.is-valid, body .edit-row .form-check-input.is-invalid, body .edit-row .form-check-input.is-expiring, body .edit-row .form-check-input.is-expiring-verysoon, body .edit-row .form-check-input.is-expired, body .edit-row .form-select.is-valid, body .edit-row .form-select.is-invalid, body .edit-row .form-select.is-expiring, body .edit-row .form-select.is-expiring-verysoon, body .edit-row .form-select.is-expired, body .kii-style .form-control.is-valid, body .kii-style .form-control.is-invalid, body .kii-style .form-control.is-expiring, body .kii-style .form-control.is-expiring-verysoon, body .kii-style .form-control.is-expired, body .kii-style .form-check-input.is-valid, body .kii-style .form-check-input.is-invalid, body .kii-style .form-check-input.is-expiring, body .kii-style .form-check-input.is-expiring-verysoon, body .kii-style .form-check-input.is-expired, body .kii-style .form-select.is-valid, body .kii-style .form-select.is-invalid, body .kii-style .form-select.is-expiring, body .kii-style .form-select.is-expiring-verysoon, body .kii-style .form-select.is-expired {
  border-color: var(--bs-gray-400) !important;
}
body .kii-form .form-control.is-valid:focus, body .kii-form .form-control.is-invalid:focus, body .kii-form .form-control.is-expiring:focus, body .kii-form .form-control.is-expiring-verysoon:focus, body .kii-form .form-control.is-expired:focus, body .kii-form .form-check-input.is-valid:focus, body .kii-form .form-check-input.is-invalid:focus, body .kii-form .form-check-input.is-expiring:focus, body .kii-form .form-check-input.is-expiring-verysoon:focus, body .kii-form .form-check-input.is-expired:focus, body .kii-form .form-select.is-valid:focus, body .kii-form .form-select.is-invalid:focus, body .kii-form .form-select.is-expiring:focus, body .kii-form .form-select.is-expiring-verysoon:focus, body .kii-form .form-select.is-expired:focus, body .edit-order .form-control.is-valid:focus, body .edit-order .form-control.is-invalid:focus, body .edit-order .form-control.is-expiring:focus, body .edit-order .form-control.is-expiring-verysoon:focus, body .edit-order .form-control.is-expired:focus, body .edit-order .form-check-input.is-valid:focus, body .edit-order .form-check-input.is-invalid:focus, body .edit-order .form-check-input.is-expiring:focus, body .edit-order .form-check-input.is-expiring-verysoon:focus, body .edit-order .form-check-input.is-expired:focus, body .edit-order .form-select.is-valid:focus, body .edit-order .form-select.is-invalid:focus, body .edit-order .form-select.is-expiring:focus, body .edit-order .form-select.is-expiring-verysoon:focus, body .edit-order .form-select.is-expired:focus, body .edit-row .form-control.is-valid:focus, body .edit-row .form-control.is-invalid:focus, body .edit-row .form-control.is-expiring:focus, body .edit-row .form-control.is-expiring-verysoon:focus, body .edit-row .form-control.is-expired:focus, body .edit-row .form-check-input.is-valid:focus, body .edit-row .form-check-input.is-invalid:focus, body .edit-row .form-check-input.is-expiring:focus, body .edit-row .form-check-input.is-expiring-verysoon:focus, body .edit-row .form-check-input.is-expired:focus, body .edit-row .form-select.is-valid:focus, body .edit-row .form-select.is-invalid:focus, body .edit-row .form-select.is-expiring:focus, body .edit-row .form-select.is-expiring-verysoon:focus, body .edit-row .form-select.is-expired:focus, body .kii-style .form-control.is-valid:focus, body .kii-style .form-control.is-invalid:focus, body .kii-style .form-control.is-expiring:focus, body .kii-style .form-control.is-expiring-verysoon:focus, body .kii-style .form-control.is-expired:focus, body .kii-style .form-check-input.is-valid:focus, body .kii-style .form-check-input.is-invalid:focus, body .kii-style .form-check-input.is-expiring:focus, body .kii-style .form-check-input.is-expiring-verysoon:focus, body .kii-style .form-check-input.is-expired:focus, body .kii-style .form-select.is-valid:focus, body .kii-style .form-select.is-invalid:focus, body .kii-style .form-select.is-expiring:focus, body .kii-style .form-select.is-expiring-verysoon:focus, body .kii-style .form-select.is-expired:focus {
  border-color: var(--kii-form-control-border-focus) !important;
}
body .kii-form .form-control.is-valid:focus:not(.shadow-none), body .kii-form .form-control.is-invalid:focus:not(.shadow-none), body .kii-form .form-control.is-expiring:focus:not(.shadow-none), body .kii-form .form-control.is-expiring-verysoon:focus:not(.shadow-none), body .kii-form .form-control.is-expired:focus:not(.shadow-none), body .kii-form .form-check-input.is-valid:focus:not(.shadow-none), body .kii-form .form-check-input.is-invalid:focus:not(.shadow-none), body .kii-form .form-check-input.is-expiring:focus:not(.shadow-none), body .kii-form .form-check-input.is-expiring-verysoon:focus:not(.shadow-none), body .kii-form .form-check-input.is-expired:focus:not(.shadow-none), body .kii-form .form-select.is-valid:focus:not(.shadow-none), body .kii-form .form-select.is-invalid:focus:not(.shadow-none), body .kii-form .form-select.is-expiring:focus:not(.shadow-none), body .kii-form .form-select.is-expiring-verysoon:focus:not(.shadow-none), body .kii-form .form-select.is-expired:focus:not(.shadow-none), body .edit-order .form-control.is-valid:focus:not(.shadow-none), body .edit-order .form-control.is-invalid:focus:not(.shadow-none), body .edit-order .form-control.is-expiring:focus:not(.shadow-none), body .edit-order .form-control.is-expiring-verysoon:focus:not(.shadow-none), body .edit-order .form-control.is-expired:focus:not(.shadow-none), body .edit-order .form-check-input.is-valid:focus:not(.shadow-none), body .edit-order .form-check-input.is-invalid:focus:not(.shadow-none), body .edit-order .form-check-input.is-expiring:focus:not(.shadow-none), body .edit-order .form-check-input.is-expiring-verysoon:focus:not(.shadow-none), body .edit-order .form-check-input.is-expired:focus:not(.shadow-none), body .edit-order .form-select.is-valid:focus:not(.shadow-none), body .edit-order .form-select.is-invalid:focus:not(.shadow-none), body .edit-order .form-select.is-expiring:focus:not(.shadow-none), body .edit-order .form-select.is-expiring-verysoon:focus:not(.shadow-none), body .edit-order .form-select.is-expired:focus:not(.shadow-none), body .edit-row .form-control.is-valid:focus:not(.shadow-none), body .edit-row .form-control.is-invalid:focus:not(.shadow-none), body .edit-row .form-control.is-expiring:focus:not(.shadow-none), body .edit-row .form-control.is-expiring-verysoon:focus:not(.shadow-none), body .edit-row .form-control.is-expired:focus:not(.shadow-none), body .edit-row .form-check-input.is-valid:focus:not(.shadow-none), body .edit-row .form-check-input.is-invalid:focus:not(.shadow-none), body .edit-row .form-check-input.is-expiring:focus:not(.shadow-none), body .edit-row .form-check-input.is-expiring-verysoon:focus:not(.shadow-none), body .edit-row .form-check-input.is-expired:focus:not(.shadow-none), body .edit-row .form-select.is-valid:focus:not(.shadow-none), body .edit-row .form-select.is-invalid:focus:not(.shadow-none), body .edit-row .form-select.is-expiring:focus:not(.shadow-none), body .edit-row .form-select.is-expiring-verysoon:focus:not(.shadow-none), body .edit-row .form-select.is-expired:focus:not(.shadow-none), body .kii-style .form-control.is-valid:focus:not(.shadow-none), body .kii-style .form-control.is-invalid:focus:not(.shadow-none), body .kii-style .form-control.is-expiring:focus:not(.shadow-none), body .kii-style .form-control.is-expiring-verysoon:focus:not(.shadow-none), body .kii-style .form-control.is-expired:focus:not(.shadow-none), body .kii-style .form-check-input.is-valid:focus:not(.shadow-none), body .kii-style .form-check-input.is-invalid:focus:not(.shadow-none), body .kii-style .form-check-input.is-expiring:focus:not(.shadow-none), body .kii-style .form-check-input.is-expiring-verysoon:focus:not(.shadow-none), body .kii-style .form-check-input.is-expired:focus:not(.shadow-none), body .kii-style .form-select.is-valid:focus:not(.shadow-none), body .kii-style .form-select.is-invalid:focus:not(.shadow-none), body .kii-style .form-select.is-expiring:focus:not(.shadow-none), body .kii-style .form-select.is-expiring-verysoon:focus:not(.shadow-none), body .kii-style .form-select.is-expired:focus:not(.shadow-none) {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}
body .kii-form .form-control.is-pending ~ .kii-feedback::before, body .kii-form .form-control.pending ~ .kii-feedback::before, body .kii-form .form-check-input.is-pending ~ .kii-feedback::before, body .kii-form .form-check-input.pending ~ .kii-feedback::before, body .kii-form .form-select.is-pending ~ .kii-feedback::before, body .kii-form .form-select.pending ~ .kii-feedback::before, body .edit-order .form-control.is-pending ~ .kii-feedback::before, body .edit-order .form-control.pending ~ .kii-feedback::before, body .edit-order .form-check-input.is-pending ~ .kii-feedback::before, body .edit-order .form-check-input.pending ~ .kii-feedback::before, body .edit-order .form-select.is-pending ~ .kii-feedback::before, body .edit-order .form-select.pending ~ .kii-feedback::before, body .edit-row .form-control.is-pending ~ .kii-feedback::before, body .edit-row .form-control.pending ~ .kii-feedback::before, body .edit-row .form-check-input.is-pending ~ .kii-feedback::before, body .edit-row .form-check-input.pending ~ .kii-feedback::before, body .edit-row .form-select.is-pending ~ .kii-feedback::before, body .edit-row .form-select.pending ~ .kii-feedback::before, body .kii-style .form-control.is-pending ~ .kii-feedback::before, body .kii-style .form-control.pending ~ .kii-feedback::before, body .kii-style .form-check-input.is-pending ~ .kii-feedback::before, body .kii-style .form-check-input.pending ~ .kii-feedback::before, body .kii-style .form-select.is-pending ~ .kii-feedback::before, body .kii-style .form-select.pending ~ .kii-feedback::before {
  font-family: "FontAwesome";
  color: var(--bs-dark) !important;
  content: "\f1ce" !important;
  animation: 0.75s linear infinite spinner-border;
}
body .kii-form .form-control.is-expiring, body .kii-form .form-control.is-expiring-verysoon, body .kii-form .form-control.is-expired, body .kii-form .form-check-input.is-expiring, body .kii-form .form-check-input.is-expiring-verysoon, body .kii-form .form-check-input.is-expired, body .kii-form .form-select.is-expiring, body .kii-form .form-select.is-expiring-verysoon, body .kii-form .form-select.is-expired, body .edit-order .form-control.is-expiring, body .edit-order .form-control.is-expiring-verysoon, body .edit-order .form-control.is-expired, body .edit-order .form-check-input.is-expiring, body .edit-order .form-check-input.is-expiring-verysoon, body .edit-order .form-check-input.is-expired, body .edit-order .form-select.is-expiring, body .edit-order .form-select.is-expiring-verysoon, body .edit-order .form-select.is-expired, body .edit-row .form-control.is-expiring, body .edit-row .form-control.is-expiring-verysoon, body .edit-row .form-control.is-expired, body .edit-row .form-check-input.is-expiring, body .edit-row .form-check-input.is-expiring-verysoon, body .edit-row .form-check-input.is-expired, body .edit-row .form-select.is-expiring, body .edit-row .form-select.is-expiring-verysoon, body .edit-row .form-select.is-expired, body .kii-style .form-control.is-expiring, body .kii-style .form-control.is-expiring-verysoon, body .kii-style .form-control.is-expired, body .kii-style .form-check-input.is-expiring, body .kii-style .form-check-input.is-expiring-verysoon, body .kii-style .form-check-input.is-expired, body .kii-style .form-select.is-expiring, body .kii-style .form-select.is-expiring-verysoon, body .kii-style .form-select.is-expired {
  padding-right: calc(1.5em + 0.75rem);
}
body .kii-form .form-control.is-valid, body .kii-form .form-control.is-invalid, body .kii-form .form-control.is-expiring, body .edit-order .form-control.is-valid, body .edit-order .form-control.is-invalid, body .edit-order .form-control.is-expiring, body .edit-row .form-control.is-valid, body .edit-row .form-control.is-invalid, body .edit-row .form-control.is-expiring, body .kii-style .form-control.is-valid, body .kii-style .form-control.is-invalid, body .kii-style .form-control.is-expiring {
  border-color: #ced4da !important;
  background-image: none;
}
body .kii-form .form-control.is-valid, body .edit-order .form-control.is-valid, body .edit-row .form-control.is-valid, body .kii-style .form-control.is-valid {
  padding-right: 0.75rem !important;
}
body .kii-form .form-select.is-valid, body .kii-form .form-select.is-invalid, body .edit-order .form-select.is-valid, body .edit-order .form-select.is-invalid, body .edit-row .form-select.is-valid, body .edit-row .form-select.is-invalid, body .kii-style .form-select.is-valid, body .kii-style .form-select.is-invalid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), none !important;
}
body .kii-form .form-select.is-valid, body .edit-order .form-select.is-valid, body .edit-row .form-select.is-valid, body .kii-style .form-select.is-valid {
  padding-right: 2.25rem !important;
}
body .kii-form .form-select ~ .kii-feedback, body .edit-order .form-select ~ .kii-feedback, body .edit-row .form-select ~ .kii-feedback, body .kii-style .form-select ~ .kii-feedback {
  right: 42px;
}
body .kii-form .form-check-input, body .edit-order .form-check-input, body .edit-row .form-check-input, body .kii-style .form-check-input {
  background-color: white;
  vertical-align: middle;
  border-color: #ced4da !important;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
body .kii-form .form-check-input:checked[type=checkbox], body .edit-order .form-check-input:checked[type=checkbox], body .edit-row .form-check-input:checked[type=checkbox], body .kii-style .form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  background-color: #fff;
}
body .kii-form .form-check-input.is-valid:checked[type=checkbox], body .edit-order .form-check-input.is-valid:checked[type=checkbox], body .edit-row .form-check-input.is-valid:checked[type=checkbox], body .kii-style .form-check-input.is-valid:checked[type=checkbox] {
  background-color: #fff;
}
body .kii-form .form-check-input:checked[type=radio], body .edit-order .form-check-input:checked[type=radio], body .edit-row .form-check-input:checked[type=radio], body .kii-style .form-check-input:checked[type=radio] {
  background-color: var(--bs-dark);
}
body .kii-form .form-check-input.is-valid:checked[type=radio], body .edit-order .form-check-input.is-valid:checked[type=radio], body .edit-row .form-check-input.is-valid:checked[type=radio], body .kii-style .form-check-input.is-valid:checked[type=radio] {
  background-color: var(--bs-dark);
}
body .kii-form .form-check-input ~ .form-check-label, body .edit-order .form-check-input ~ .form-check-label, body .edit-row .form-check-input ~ .form-check-label, body .kii-style .form-check-input ~ .form-check-label {
  color: var(--bs-dark);
}
body .kii-form .form-switch .form-check-input:focus[type=checkbox], body .edit-order .form-switch .form-check-input:focus[type=checkbox], body .edit-row .form-switch .form-check-input:focus[type=checkbox], body .kii-style .form-switch .form-check-input:focus[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%236c757d'/%3e%3c/svg%3e");
  background-color: #fff !important;
}
body .kii-form .form-switch .form-check-input:checked[type=checkbox], body .edit-order .form-switch .form-check-input:checked[type=checkbox], body .edit-row .form-switch .form-check-input:checked[type=checkbox], body .kii-style .form-switch .form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-color: #000 !important;
}
body .kii-form .form-switch .form-check-input.is-valid:checked[type=checkbox], body .edit-order .form-switch .form-check-input.is-valid:checked[type=checkbox], body .edit-row .form-switch .form-check-input.is-valid:checked[type=checkbox], body .kii-style .form-switch .form-check-input.is-valid:checked[type=checkbox] {
  background-color: #000 !important;
}
body .kii-form .attachment-link, body .edit-order .attachment-link, body .edit-row .attachment-link, body .kii-style .attachment-link {
  text-decoration: none;
}
body .kii-form .delete-attachment, body .edit-order .delete-attachment, body .edit-row .delete-attachment, body .kii-style .delete-attachment {
  font-family: FontAwesome;
  text-decoration: none;
}
body .kii-form .delete-attachment::after, body .edit-order .delete-attachment::after, body .edit-row .delete-attachment::after, body .kii-style .delete-attachment::after {
  content: "\f056";
}
body .kii-form .delete-attachment ~ input[type=checkbox], body .edit-order .delete-attachment ~ input[type=checkbox], body .edit-row .delete-attachment ~ input[type=checkbox], body .kii-style .delete-attachment ~ input[type=checkbox] {
  display: none;
}
body .kii-form .delete-attachment.undo-icon::after, body .edit-order .delete-attachment.undo-icon::after, body .edit-row .delete-attachment.undo-icon::after, body .kii-style .delete-attachment.undo-icon::after {
  content: "\f055";
}
body .kii-form .delete-attachment.undo-icon ~ .attachment-link, body .edit-order .delete-attachment.undo-icon ~ .attachment-link, body .edit-row .delete-attachment.undo-icon ~ .attachment-link, body .kii-style .delete-attachment.undo-icon ~ .attachment-link {
  text-decoration: line-through;
}
body .kii-form .input-group ~ .kii-feedback, body .edit-order .input-group ~ .kii-feedback, body .edit-row .input-group ~ .kii-feedback, body .kii-style .input-group ~ .kii-feedback {
  right: 44px;
}
body .kii-form .cda-input-block .input-group.field-validation-expired, body .edit-order .cda-input-block .input-group.field-validation-expired, body .edit-row .cda-input-block .input-group.field-validation-expired, body .kii-style .cda-input-block .input-group.field-validation-expired {
  right: 34px;
}
body .kii-form .kii-feedback, body .edit-order .kii-feedback, body .edit-row .kii-feedback, body .kii-style .kii-feedback {
  position: absolute;
  z-index: 5;
  top: 1px;
  right: 20px;
  display: inline !important;
  width: auto !important;
}
body .kii-form .kii-feedback::before, body .kii-form .kii-feedback::after, body .edit-order .kii-feedback::before, body .edit-order .kii-feedback::after, body .edit-row .kii-feedback::before, body .edit-row .kii-feedback::after, body .kii-style .kii-feedback::before, body .kii-style .kii-feedback::after {
  display: block;
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 16px;
  font-weight: normal;
}
body .kii-form .kii-feedback.field-validation-error::before, body .edit-order .kii-feedback.field-validation-error::before, body .edit-row .kii-feedback.field-validation-error::before, body .kii-style .kii-feedback.field-validation-error::before {
  color: var(--bs-dark);
  content: "\f06a";
}
body .kii-form .kii-feedback.field-validation-error.invalid-stop::before, body .edit-order .kii-feedback.field-validation-error.invalid-stop::before, body .edit-row .kii-feedback.field-validation-error.invalid-stop::before, body .kii-style .kii-feedback.field-validation-error.invalid-stop::before {
  font-family: "bootstrap-icons";
  content: "\f337" !important;
  color: var(--bs-danger) !important;
}
body .kii-form .kii-feedback.field-validation-warning::before, body .edit-order .kii-feedback.field-validation-warning::before, body .edit-row .kii-feedback.field-validation-warning::before, body .kii-style .kii-feedback.field-validation-warning::before {
  font-family: "bootstrap-icons";
  color: var(--bs-dark);
  content: "\f431";
}
body .kii-form .kii-feedback.field-validation-info::before, body .edit-order .kii-feedback.field-validation-info::before, body .edit-row .kii-feedback.field-validation-info::before, body .kii-style .kii-feedback.field-validation-info::before {
  font-family: "bootstrap-icons";
  color: var(--bs-dark);
  content: "\f431";
}
body .kii-form .kii-feedback.field-validation-expiring::before, body .edit-order .kii-feedback.field-validation-expiring::before, body .edit-row .kii-feedback.field-validation-expiring::before, body .kii-style .kii-feedback.field-validation-expiring::before {
  color: var(--bs-dark) !important;
  content: "\f251" !important;
}
body .kii-form .kii-feedback.field-validation-expiring-verysoon::before, body .edit-order .kii-feedback.field-validation-expiring-verysoon::before, body .edit-row .kii-feedback.field-validation-expiring-verysoon::before, body .kii-style .kii-feedback.field-validation-expiring-verysoon::before {
  color: var(--bs-dark) !important;
  content: "\f252" !important;
}
body .kii-form .kii-feedback.field-validation-expired::before, body .edit-order .kii-feedback.field-validation-expired::before, body .edit-row .kii-feedback.field-validation-expired::before, body .kii-style .kii-feedback.field-validation-expired::before {
  color: var(--bs-dark) !important;
  content: "\f253" !important;
}
body .kii-form .kii-feedback span, body .edit-order .kii-feedback span, body .edit-row .kii-feedback span, body .kii-style .kii-feedback span {
  display: none !important;
}
body .kii-form .kii-feedback.is-pending::before, body .kii-form .kii-feedback.pending::before, body .edit-order .kii-feedback.is-pending::before, body .edit-order .kii-feedback.pending::before, body .edit-row .kii-feedback.is-pending::before, body .edit-row .kii-feedback.pending::before, body .kii-style .kii-feedback.is-pending::before, body .kii-style .kii-feedback.pending::before {
  font-family: "FontAwesome";
  color: var(--bs-dark) !important;
  content: "\f1ce" !important;
  animation: 0.75s linear infinite spinner-border;
}
body .kii-form .btn.disabled, body .kii-form .btn:disabled, body .kii-form fieldset:disabled .btn, body .edit-order .btn.disabled, body .edit-order .btn:disabled, body .edit-order fieldset:disabled .btn, body .edit-row .btn.disabled, body .edit-row .btn:disabled, body .edit-row fieldset:disabled .btn, body .kii-style .btn.disabled, body .kii-style .btn:disabled, body .kii-style fieldset:disabled .btn {
  opacity: 0.3;
}
body .kii-form table.pin-table, body .edit-order table.pin-table, body .edit-row table.pin-table, body .kii-style table.pin-table {
  width: 100%;
}
body .kii-form table.pin-table tr td, body .edit-order table.pin-table tr td, body .edit-row table.pin-table tr td, body .kii-style table.pin-table tr td {
  position: relative;
}
body .kii-form table.pin-table tr td:first-child, body .edit-order table.pin-table tr td:first-child, body .edit-row table.pin-table tr td:first-child, body .kii-style table.pin-table tr td:first-child {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}
body .kii-form table.pin-table tr td:last-child, body .edit-order table.pin-table tr td:last-child, body .edit-row table.pin-table tr td:last-child, body .kii-style table.pin-table tr td:last-child {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  width: 110px;
}
body .edit-row .kii-feedback {
  top: 4px;
  right: 8px;
}
body .is-summary .kii-feedback[class*=field-validation]::before {
  display: inline-block;
  font-size: 12px;
}
body .is-summary .kii-feedback[class*=field-validation] {
  position: relative;
  display: inline-block !important;
  top: 0;
  padding-left: 10px;
  right: 0;
}

.popover.legend-popover {
  border: 1px solid #000000;
}
.popover.legend-popover .popover-header {
  background-color: #212529;
  color: #ffffff;
}
.popover.legend-popover .popover-header::before {
  border-bottom-width: 0 !important;
}
.popover.legend-popover .popover-arrow::after {
  border-bottom-color: black !important;
}
.popover.legend-popover div.row {
  margin-bottom: 15px;
}

.home {
  position: relative;
  margin-left: var(--bs-gutter-x, 0.75rem);
  margin-right: var(--bs-gutter-x, 0.75rem);
}
.home .btn-create {
  position: absolute;
  right: 0;
  top: 24px;
}
.home #no-results-message {
  position: relative;
  top: 45%;
  text-align: center;
}
.home #legend-popover-button {
  margin-top: 21px;
}
@media (max-width: 768px) {
  .home #legend-popover-button {
    position: absolute;
    margin-top: 24px;
    top: 0;
    right: 80px;
  }
}
.home table#order-table thead th, .home table#order-table tbody th {
  border: 1px solid black;
  border-left: 0;
  border-right: 0;
}
.home table#order-table thead th, .home table#order-table thead td, .home table#order-table tbody th, .home table#order-table tbody td {
  padding: 16px 3px;
  text-transform: uppercase;
}
.home table#order-table thead a, .home table#order-table tbody a {
  padding: 0;
}
.home table#order-table thead th:nth-child(1), .home table#order-table thead td:nth-child(1), .home table#order-table tbody th:nth-child(1), .home table#order-table tbody td:nth-child(1) {
  width: 3%;
  text-align: center;
}
.home table#order-table thead th:nth-child(2), .home table#order-table thead td:nth-child(2), .home table#order-table tbody th:nth-child(2), .home table#order-table tbody td:nth-child(2) {
  width: 15%;
}
.home table#order-table thead th:nth-child(3), .home table#order-table thead td:nth-child(3), .home table#order-table tbody th:nth-child(3), .home table#order-table tbody td:nth-child(3) {
  width: 7%;
  min-width: 108px;
}
.home table#order-table thead th:nth-child(4), .home table#order-table thead td:nth-child(4), .home table#order-table tbody th:nth-child(4), .home table#order-table tbody td:nth-child(4) {
  width: 9%;
}
.home table#order-table thead th:nth-child(5), .home table#order-table thead td:nth-child(5), .home table#order-table tbody th:nth-child(5), .home table#order-table tbody td:nth-child(5) {
  width: 9%;
}
.home table#order-table thead th:nth-child(6), .home table#order-table thead td:nth-child(6), .home table#order-table tbody th:nth-child(6), .home table#order-table tbody td:nth-child(6) {
  width: 8%;
}
.home table#order-table thead th:nth-child(7), .home table#order-table thead td:nth-child(7), .home table#order-table tbody th:nth-child(7), .home table#order-table tbody td:nth-child(7) {
  width: 10%;
}
.home table#order-table thead th:nth-child(8), .home table#order-table thead td:nth-child(8), .home table#order-table tbody th:nth-child(8), .home table#order-table tbody td:nth-child(8) {
  width: 8%;
}
.home table#order-table thead th:nth-child(9), .home table#order-table thead td:nth-child(9), .home table#order-table tbody th:nth-child(9), .home table#order-table tbody td:nth-child(9) {
  width: 9%;
}
.home table#order-table thead th:nth-child(10), .home table#order-table thead td:nth-child(10), .home table#order-table tbody th:nth-child(10), .home table#order-table tbody td:nth-child(10) {
  width: 14%;
}
.home table#order-table thead th:nth-child(11), .home table#order-table thead td:nth-child(11), .home table#order-table tbody th:nth-child(11), .home table#order-table tbody td:nth-child(11) {
  width: 8%;
  overflow: visible;
  text-align: right;
  padding-right: 7px;
}
.home table#order-table tfoot tr {
  padding-left: 1rem;
  padding-right: 1rem;
}
.home .order-deleting {
  background-color: red !important;
  color: white !important;
}

@media only screen and (max-width: 767px) {
  .home #account-input-group {
    margin-top: 30px;
  }
}
.kii-form, .edit-order {
  position: relative;
}
.kii-form [class^=col], .edit-order [class^=col] {
  overflow-wrap: break-word;
}
.kii-form #orderTabs ul.nav-tabs li:last-of-type a, .edit-order #orderTabs ul.nav-tabs li:last-of-type a {
  max-width: 40vw;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-width: 100px !important;
}
.kii-form.pricing-not-valid.all-items-valid .reevaluate-button, .kii-form.pricing-not-valid.is-price-mode .reevaluate-button, .edit-order.pricing-not-valid.all-items-valid .reevaluate-button, .edit-order.pricing-not-valid.is-price-mode .reevaluate-button {
  overflow: hidden;
  background-color: var(--bs-warning) !important;
  position: relative;
}
.kii-form.pricing-not-valid.all-items-valid .reevaluate-button::before, .kii-form.pricing-not-valid.is-price-mode .reevaluate-button::before, .edit-order.pricing-not-valid.all-items-valid .reevaluate-button::before, .edit-order.pricing-not-valid.is-price-mode .reevaluate-button::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: -52%;
  background: linear-gradient(to right, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
  animation: sheen 15s linear 2s infinite;
}
.kii-form.pricing-not-valid.all-items-valid .reevaluate-button:hover::before, .kii-form.pricing-not-valid.all-items-valid .reevaluate-button:hover::after, .kii-form.pricing-not-valid.is-price-mode .reevaluate-button:hover::before, .kii-form.pricing-not-valid.is-price-mode .reevaluate-button:hover::after, .edit-order.pricing-not-valid.all-items-valid .reevaluate-button:hover::before, .edit-order.pricing-not-valid.all-items-valid .reevaluate-button:hover::after, .edit-order.pricing-not-valid.is-price-mode .reevaluate-button:hover::before, .edit-order.pricing-not-valid.is-price-mode .reevaluate-button:hover::after {
  animation-play-state: paused;
}
.kii-form.pricing-not-valid .item-row:not(.header-row) .td-calcnet, .kii-form.pricing-not-valid .item-row:not(.header-row) .td-calcdiscount, .edit-order.pricing-not-valid .item-row:not(.header-row) .td-calcnet, .edit-order.pricing-not-valid .item-row:not(.header-row) .td-calcdiscount {
  color: transparent;
}
.kii-form.pricing-not-valid .item-row:not(.header-row) .td-calcnet::after, .kii-form.pricing-not-valid .item-row:not(.header-row) .td-calcdiscount::after, .edit-order.pricing-not-valid .item-row:not(.header-row) .td-calcnet::after, .edit-order.pricing-not-valid .item-row:not(.header-row) .td-calcdiscount::after {
  position: absolute;
  right: 0;
  color: var(--bs-gray-400);
  content: "#REEVAL";
}
.kii-form.pricing-not-valid .item-row:not(.header-row) .td-status i.icon-success::before, .edit-order.pricing-not-valid .item-row:not(.header-row) .td-status i.icon-success::before {
  font-family: "FontAwesome";
  font-style: normal;
  content: "\f071";
  color: #ffc107;
}
.kii-form.pricing-is-valid .item-pricing-message, .edit-order.pricing-is-valid .item-pricing-message {
  display: none;
}
@keyframes sheen {
  0%, 1% {
    transform: skewX(-30deg);
  }
  5% {
    transform: skewX(-30deg) translateX(302%);
  }
  20% {
    transform: skewX(-30deg) translateX(302%);
  }
  35% {
    transform: skewX(-30deg);
  }
  45% {
    transform: skewX(-30deg);
  }
  100% {
    transform: skewX(-30deg);
  }
}
.kii-form #ItemConfigRowCollapsible + .popup-details-toggle, .edit-order #ItemConfigRowCollapsible + .popup-details-toggle {
  position: relative;
  margin: 12px 0 28px;
  border-top: solid 2px var(--bs-dark);
  text-align: center;
  text-decoration: none;
  color: var(--bs-dark);
}
.kii-form #ItemConfigRowCollapsible + .popup-details-toggle::after, .edit-order #ItemConfigRowCollapsible + .popup-details-toggle::after {
  position: absolute;
  bottom: -16px;
  background-color: transparent;
  font-family: FontAwesome;
  font-weight: 200;
  font-size: 20px;
  content: "\f0d7";
}
.kii-form #ItemConfigRowCollapsible.hide + .popup-details-toggle::after, .edit-order #ItemConfigRowCollapsible.hide + .popup-details-toggle::after {
  content: "\f0d7";
}
.kii-form #ItemConfigRowCollapsible.show + .popup-details-toggle::after, .edit-order #ItemConfigRowCollapsible.show + .popup-details-toggle::after {
  bottom: -13px;
  content: "\f0d8";
}
.kii-form .tab-status, .edit-order .tab-status {
  margin-left: 0.25rem;
  font-style: normal;
}
.kii-form .tab-status.tab-status-valid::before, .edit-order .tab-status.tab-status-valid::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 200;
  content: "\f058";
}
.kii-form .tab-status.tab-status-invalid::before, .edit-order .tab-status.tab-status-invalid::before {
  font-family: FontAwesome;
  font-weight: 200;
  content: "\f06a";
}
.kii-form .nav-item.title .nav-link, .edit-order .nav-item.title .nav-link {
  font-weight: 600 !important;
}
.kii-form .nav-item.title .nav-link:hover, .edit-order .nav-item.title .nav-link:hover {
  border-width: 0 !important;
}
.kii-form .nav-item .nav-link, .edit-order .nav-item .nav-link {
  text-transform: uppercase;
  color: var(--bs-dark);
  font-weight: 300;
  height: 38px;
}
.kii-form .nav-item .nav-link.active, .edit-order .nav-item .nav-link.active {
  font-weight: 600;
}
.kii-form .tabstrip-info, .edit-order .tabstrip-info {
  position: absolute;
  z-index: 1029;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1400px) {
  .kii-form .tabstrip-info, .edit-order .tabstrip-info {
    transform: none;
    left: 530px;
  }
}
@media (max-width: 992px) {
  .kii-form .tabstrip-info, .edit-order .tabstrip-info {
    transform: none;
    left: 500px;
    font-size: smaller;
  }
}
@media (max-width: 900px) {
  .kii-form .tabstrip-info, .edit-order .tabstrip-info {
    position: relative;
    left: 0;
    top: 0;
    padding-top: 10px;
    width: 100%;
    transform: none;
    text-align: center;
    font-size: small;
  }
}
@media (max-width: 576px) {
  .kii-form .tabstrip-info, .edit-order .tabstrip-info {
    width: calc(100% - 105px);
  }
}
.kii-form .tabstrip-buttons, .edit-order .tabstrip-buttons {
  position: absolute;
  z-index: 1030;
  right: 0;
  top: 9px;
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
}
@media (max-width: 900px) {
  .kii-form .status-label .status-text, .edit-order .status-label .status-text {
    display: none;
  }
}
.kii-form .moveto-modalfooter, .edit-order .moveto-modalfooter {
  position: absolute;
  right: 0;
  bottom: -48px;
  z-index: 1030;
}
.kii-form #statusAlert, .edit-order #statusAlert {
  z-index: 1030;
}
.kii-form .cda-input-block, .edit-order .cda-input-block {
  width: 100%;
}
.kii-form .cda-input-block:has(.is-valid:not(.no-cda), .is-expiring, .is-expired, .is-expiring-verysoon) .kii-feedback, .edit-order .cda-input-block:has(.is-valid:not(.no-cda), .is-expiring, .is-expired, .is-expiring-verysoon) .kii-feedback {
  /* move the feedback icon when expiring, etc.*/
  right: 34px;
}
.kii-form .cda-input-block:has(.is-valid:not(.no-cda), .is-expiring, .is-expired, .is-expiring-verysoon):has(+ .cda-link-block), .edit-order .cda-input-block:has(.is-valid:not(.no-cda), .is-expiring, .is-expired, .is-expiring-verysoon):has(+ .cda-link-block) {
  /* This has() is testing sibling cda-link-block exists. 
  it can be toggled in live settings. */
  position: relative;
  display: inline-block;
  width: calc(100% - 24px - 0.5rem);
}
.kii-form .cda-input-block:has(.is-valid:not(.no-cda), .is-expiring, .is-expired, .is-expiring-verysoon):has(+ .cda-link-block) + .cda-link-block, .edit-order .cda-input-block:has(.is-valid:not(.no-cda), .is-expiring, .is-expired, .is-expiring-verysoon):has(+ .cda-link-block) + .cda-link-block {
  display: inline-block;
}
.kii-form .cda-input-block:has(.kii-feedback.is-pending), .edit-order .cda-input-block:has(.kii-feedback.is-pending) {
  width: 100% !important;
}
.kii-form .cda-input-block:has(.kii-feedback.is-pending) .kii-feedback, .edit-order .cda-input-block:has(.kii-feedback.is-pending) .kii-feedback {
  right: 20.3px;
}
.kii-form .cda-input-block:has(.kii-feedback.is-pending):has(+ .cda-link-block) .kii-feedback, .edit-order .cda-input-block:has(.kii-feedback.is-pending):has(+ .cda-link-block) .kii-feedback {
  right: 10px !important;
}
.kii-form .cda-input-block:has(.kii-feedback.is-pending) + .cda-link-block, .edit-order .cda-input-block:has(.kii-feedback.is-pending) + .cda-link-block {
  display: none !important;
}
.kii-form .cda-input-block + .cda-link-block, .edit-order .cda-input-block + .cda-link-block {
  display: none;
  padding-left: 0.75rem;
  font-size: large;
}
.kii-form #shipToAccounts > .flex-table-container, .kii-form #poeList > .flex-table-container, .edit-order #shipToAccounts > .flex-table-container, .edit-order #poeList > .flex-table-container {
  height: 400px;
}
.kii-form .item-status-icon, .edit-order .item-status-icon {
  /*display: block;
  width: 15px;
  height: 15px;*/
  border-radius: 50%;
  margin: auto;
}
.kii-form .item-status-icon.item-status-W, .edit-order .item-status-icon.item-status-W {
  background-color: var(--kii-module);
}
.kii-form .item-status-icon.item-status-E, .edit-order .item-status-icon.item-status-E {
  background-color: var(--kii-module);
}
.kii-form .item-status-icon.item-status-S, .edit-order .item-status-icon.item-status-S {
  display: none;
}
.kii-form .item-status-icon .icon-warning::before, .edit-order .item-status-icon .icon-warning::before {
  font-family: "FontAwesome";
  font-style: normal;
  content: "\f071";
  color: #ffc107;
}
.kii-form .item-status-icon .icon-success::before, .edit-order .item-status-icon .icon-success::before {
  font-family: "FontAwesome";
  font-style: normal;
  content: "\f058";
  color: #32cd32;
}
.kii-form .item-status-icon .icon-error::before, .edit-order .item-status-icon .icon-error::before {
  font-family: "FontAwesome";
  font-style: normal;
  content: "\f06a";
  color: #ff0000;
}
.kii-form .item-status-icon.fa-circle-info, .edit-order .item-status-icon.fa-circle-info {
  color: #74c0fc;
}
.kii-form .item-status-icon.fa-circle-check, .edit-order .item-status-icon.fa-circle-check {
  color: #32cd32;
}
.kii-form .item-status-icon.fa-triangle-exclamation, .edit-order .item-status-icon.fa-triangle-exclamation {
  color: #ffc107;
}
.kii-form .item-status-icon.fa-circle-exclamation, .edit-order .item-status-icon.fa-circle-exclamation {
  color: #ff0000;
}
.kii-form .item-status-icon > .fa-circle-info, .edit-order .item-status-icon > .fa-circle-info {
  color: #74c0fc;
}
.kii-form .item-status-icon > .fa-circle-check, .edit-order .item-status-icon > .fa-circle-check {
  color: #32cd32;
}
.kii-form .item-status-icon > .fa-triangle-exclamation, .edit-order .item-status-icon > .fa-triangle-exclamation {
  color: #ffc107;
}
.kii-form .item-status-icon > .fa-circle-exclamation, .edit-order .item-status-icon > .fa-circle-exclamation {
  color: #ff0000;
}
.kii-form .items-tab i.fa-circle-check, .edit-order .items-tab i.fa-circle-check {
  color: #32cd32;
}
.kii-form .items-tab i.fa-triangle-exclamation, .kii-form .items-tab i.icon-warning, .edit-order .items-tab i.fa-triangle-exclamation, .edit-order .items-tab i.icon-warning {
  color: #ffc107;
}
.kii-form .items-tab i.fa-circle-exclamation, .kii-form .items-tab i.icon-error, .edit-order .items-tab i.fa-circle-exclamation, .edit-order .items-tab i.icon-error {
  color: #ff0000;
}
.kii-form .items-tab .status-filters-container button.status-filter-button:focus, .edit-order .items-tab .status-filters-container button.status-filter-button:focus {
  outline-style: none;
  outline: none;
  box-shadow: none;
}
.kii-form .form-label, .edit-order .form-label {
  position: relative;
}
.kii-form .form-label[data-val-message]:not([data-val-message=""])::after, .edit-order .form-label[data-val-message]:not([data-val-message=""])::after {
  position: absolute;
  right: 0;
  font-family: FontAwesome;
  content: "\f06a";
}
.kii-form .pricemode-button-collection, .edit-order .pricemode-button-collection {
  /* This position for the buttons inside matches the items page buttons.
      Even though this should only appear on the review page.
  */
  position: absolute;
  top: 51px;
  right: 36px;
  border: solid 1px var(--bs-gray-300);
  border-width: 0 1px 1px 1px;
  background-color: #ffffff;
  z-index: 1030;
  border-radius: 0 0 18px 18px;
  padding: 11px 5px 5px 5px;
}
@media (max-width: 900px) {
  .kii-form .pricemode-button-collection, .edit-order .pricemode-button-collection {
    right: 5px;
  }
}
@media (max-width: 576px) {
  .kii-form .pricemode-button-collection, .edit-order .pricemode-button-collection {
    border-width: 0;
    top: 55px;
    right: 37px;
    border-radius: 50rem;
    padding: 5px;
  }
}
.kii-form #ConfigForm, .edit-order #ConfigForm {
  /* This is very much dependent on model */
}
.kii-form #ConfigForm #ItemVM_Status[value=""] ~ .modal-form-buttons .submit-no-validate, .edit-order #ConfigForm #ItemVM_Status[value=""] ~ .modal-form-buttons .submit-no-validate {
  display: none;
}
.kii-form #ConfigForm #ItemVM_Status[value=""] ~ .modal-form-buttons .submit-with-validation, .edit-order #ConfigForm #ItemVM_Status[value=""] ~ .modal-form-buttons .submit-with-validation {
  display: inline-block;
}
.kii-form #ConfigForm #ItemVM_Status:not([value=""]) ~ .modal-form-buttons .submit-no-validate, .edit-order #ConfigForm #ItemVM_Status:not([value=""]) ~ .modal-form-buttons .submit-no-validate {
  display: inline-block;
}
.kii-form #ConfigForm #ItemVM_Status:not([value=""]) ~ .modal-form-buttons .submit-with-validation, .edit-order #ConfigForm #ItemVM_Status:not([value=""]) ~ .modal-form-buttons .submit-with-validation {
  display: none;
}
.kii-form #PriceModeSearch, .edit-order #PriceModeSearch {
  width: 43px;
}

.order-totals-box {
  position: absolute;
  resize: horizontal;
  z-index: 1073;
  background-color: var(--bs-dark);
  overflow: hidden;
  border-radius: 4px;
  min-height: 24px;
  min-width: 80px;
}
@container (max-width: 370px) {
  .order-totals-box .order-totals-contents {
    display: inline-block !important;
  }
}
.order-totals-box:hover {
  opacity: 1;
  padding-top: 35px;
  margin-top: -35px;
}
.order-totals-box:hover .title-bar {
  display: block;
}
.order-totals-box .title-bar {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 30px;
  padding-top: 6px;
  color: white;
  text-align: center;
  font-weight: bold;
}
.order-totals-box .drag-handle {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 27px;
  width: 27px;
  font-size: 16px;
  text-align: center;
  display: inline;
  border-radius: 50%;
  margin: 4px;
  background-color: white;
  padding: 2px;
  color: var(--bs-dark);
}
.order-totals-box .close-icon {
  cursor: pointer;
  position: absolute;
  z-index: 11;
  right: 0px;
  top: 0px;
  height: 27px;
  width: 27px;
  font-size: 16px;
  text-align: center;
  display: inline;
  border-radius: 50%;
  margin: 4px;
  background-color: white;
  padding: 2px;
  color: var(--bs-dark);
}
.order-totals-box .order-totals-contents {
  display: inline-grid;
  grid-template-columns: auto 1fr;
}
.order-totals-box .order-totals-contents .totals-column .totals-group {
  position: relative;
  display: inline-block;
}
.order-totals-box .order-totals-contents .totals-column .totals-group .total-row {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
}
.order-totals-box .order-totals-contents .totals-column .totals-group .total-row .grand-total {
  padding: 0 !important;
  margin-left: 5px;
}
.order-totals-box .order-totals-contents .totals-column .totals-group .total-row .grand-total.currency {
  padding-left: 0 !important;
  margin: 0;
}
.order-totals-box .order-totals-contents .totals-column .totals-group .total-row .grand-total.currency:before {
  position: relative !important;
  margin-left: 5px;
  margin-right: 2px;
}

.items-container {
  overflow-y: auto;
  overflow-x: visible;
}
.items-container .items-list {
  /*  This having "display: table-cell" keeps the background colors when 
      it overflows the container.
      Using "width:100%" will not expand further than the content.
      However, when the item-grid inside has a fractional (fr) unit it 
      will expand. You can further control that column by defining a 
      minimum and maximum range with minmax(50px,1fr) or an obscenely 
      high number minmax(50px,5000px).
  */
  display: table-cell;
  padding: 0;
  max-width: initial;
}
.items-container .items-list .header-row {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  z-index: 1001;
  top: 0;
  border-top: solid 1px var(--bs-dark) !important;
  border-bottom: solid 1px var(--bs-dark) !important;
  background-color: white;
  font-weight: bold;
}
.items-container .items-list .header-row .item-grid .td-unitdiscount,
.items-container .items-list .header-row .item-grid .td-kiunitextlist,
.items-container .items-list .header-row .item-grid .td-kiunitextprice,
.items-container .items-list .header-row .item-grid .td-unitextlist,
.items-container .items-list .header-row .item-grid .td-unitextprice {
  white-space: normal;
  text-overflow: initial;
  line-height: 14px;
  text-wrap: pretty;
}
.items-container .items-list .item-row {
  padding: 0;
  border-bottom: solid 1px var(--bs-gray-300);
}
.items-container .items-list .item-row:nth-child(2n) {
  background-color: var(--bs-gray-100);
}
.items-container .items-list .item-row.show-item-message .item-message {
  display: block !important;
}
.items-container .items-list .item-row .message-row {
  background-color: var(--bs-secondary);
}
.items-container .items-list .item-row .message-row .item-message {
  display: none;
}
.items-container .items-list .item-row .display-row {
  position: relative;
}
.items-container .items-list .item-row .edit-row {
  position: relative;
  line-height: 35px;
}
.items-container .items-list .item-row .edit-row:focus-within {
  background-color: var(--bs-gray-200) !important;
}
.items-container .items-list .item-row .edit-row.is-dirty {
  background-color: var(--bs-gray-300) !important;
}
.items-container .items-list .item-row .edit-row.is-dirty .show-when-editing {
  display: block !important;
}
.items-container .items-list .item-row .edit-row.is-dirty .hide-when-editing {
  display: none !important;
}
.items-container .items-list .item-row .edit-row.is-dirty .skip-dirty-watch {
  display: none !important;
}
.items-container .items-list .item-row .edit-row:has(.item-delete-flag:checked) {
  background-color: var(--bs-gray-500) !important;
}
.items-container .items-list .item-row .edit-row:has(.item-delete-flag:checked) td > *:not(.form-check) {
  opacity: 0.65;
}
.items-container .items-list .item-row .edit-row.is-pending::before {
  color: rgba(var(--bs-dark-rgb), 1) !important;
  background-color: rgba(var(--bs-light-rgb), 0.75) !important;
}
.items-container .items-list .item-row .edit-row.is-paused::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  padding: 0;
  color: rgba(var(--bs-dark-rgb), 1) !important;
  background-color: rgba(var(--bs-light-rgb), 0.5) !important;
}
.items-container .items-list .item-row .edit-row.is-paused::after {
  position: absolute;
  z-index: 2;
  margin: 0;
  top: calc(50% - 1.4rem);
  left: calc(50% - 1.4rem);
  width: 3rem;
  height: 3rem;
  /*color: rgba(var(--bs-dark-rgb), 1) !important;
  content: "\f04c";
  border: 0.25rem solid currentColor;
  border-radius: 50%;
  font-family: FontAwesome;
  font-size: 1.8rem;
  text-align: center;*/
}
.items-container .items-list .item-row .edit-row.is-error {
  background-color: var(--bs-gray-300) !important;
}
.items-container .items-list .item-row .edit-row.is-error .show-when-editing {
  display: block !important;
}
.items-container .items-list .item-row .edit-row.is-dirty.is-error {
  /* This should appear where postback fails when updating row. */
  color: #842029 !important;
  background-color: #f8d7da !important;
}
.items-container .items-list .item-row .edit-row .show-when-editing {
  /* The default state is hidden until is-dirty */
  display: none;
}
.items-container .items-list .item-row .edit-row .edit-config-button {
  position: absolute;
  right: 23px;
  top: 0;
}
.items-container .items-list .item-row .edit-row .search-material-button {
  position: absolute;
  right: 0px;
  top: 0;
}
.items-container .items-list .item-row .edit-row .kii-feedback {
  top: 1px !important;
  right: 4px !important;
  margin: 0;
}
.items-container .items-list .item-row .edit-row {
  /*This :has() is replaced with a more performant version below.
      :has(.field-validation-error) {
      .form-control {
          padding-right: 20px;
      }
  }*/
}
.items-container .items-list .item-row .edit-row .form-control:has(~ .field-validation-error) {
  padding-right: 20px;
}
.items-container .items-list .item-row .item-grid {
  /***************/
  /* Make sure item-message-grid correlates. */
  /***************/
  display: grid;
  grid-template-columns: 25px 25px 70px 80px 150px minmax(75px, 500px) 100px 85px 100px 120px 85px 120px 115px minmax(110px, 200px);
  grid-template-rows: 67px;
  grid-gap: 0px 12px;
  align-items: center;
  grid-template-areas: "delete status line quantity material description calclist calcdiscount calcnet unitlist unitdiscount unitprice totalprice tagging";
  text-transform: uppercase;
}
.items-container .items-list .item-row .item-inlinemessage-grid {
  /***************/
  /* Make sure .item-grid correlates. */
  /***************/
  display: grid;
  grid-template-columns: 25px 25px 70px 80px minmax(225px, 750px) 100px 85px 305px 120px 115px minmax(110px, 200px);
  grid-template-rows: 20px;
  grid-gap: 0px 12px;
  align-items: center;
  grid-template-areas: "delete status line quantity longmessage calclist calcdiscount shortmessage unitprice totalprice tagging";
  position: absolute !important;
  bottom: -2px;
  text-transform: initial;
  font-style: italic;
  font-size: 11px;
  color: var(--bs-gray);
}
.items-container .items-list .item-row .item-grid > div, .items-container .items-list .item-row .item-inlinemessage-grid > div {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
  /*&:has(.form-control, .btn) {
      &::before {
          padding-top: 6px;
      }
  }*/
}
.items-container .items-list .item-row .item-grid > div:last-child, .items-container .items-list .item-row .item-inlinemessage-grid > div:last-child {
  padding-right: 10px;
}
.items-container .items-list .item-row .item-grid > div.td-kii-price-note, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-kii-price-note {
  grid-area: 1/calclist/1/calcnet;
}
.items-container .items-list .item-row .item-grid > div.td-unit-price-note, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-unit-price-note {
  grid-area: 1/unitlist/1/totalprice;
}
.items-container .items-list .item-row .item-grid > div.td-delete, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-delete {
  grid-area: delete;
  text-align: center;
}
.items-container .items-list .item-row .item-grid > div.td-delete .form-check, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-delete .form-check {
  padding-left: 0;
}
.items-container .items-list .item-row .item-grid > div.td-delete .form-check .form-check-input, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-delete .form-check .form-check-input {
  margin: 0;
  float: initial;
}
.items-container .items-list .item-row .item-grid > div.td-status, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-status {
  grid-area: status;
  text-align: center;
}
.items-container .items-list .item-row .item-grid > div.td-line, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-line {
  grid-area: line;
}
.items-container .items-list .item-row .item-grid > div.td-quantity, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-quantity {
  grid-area: quantity;
}
.items-container .items-list .item-row .item-grid > div.td-longmessage, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-longmessage {
  grid-area: longmessage;
}
.items-container .items-list .item-row .item-grid > div.td-material, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-material {
  grid-area: material;
}
.items-container .items-list .item-row .item-grid > div.td-description, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-description {
  grid-area: description;
}
.items-container .items-list .item-row .item-grid > div.td-calclist, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-calclist {
  grid-area: calclist;
  text-align: right;
}
.items-container .items-list .item-row .item-grid > div.td-kiunitextlist, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-kiunitextlist {
  grid-area: kitotallist;
  text-align: right;
}
.items-container .items-list .item-row .item-grid > div.td-calcdiscount, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-calcdiscount {
  grid-area: calcdiscount;
}
.items-container .items-list .item-row .item-grid > div.td-calcdiscount::after, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-calcdiscount::after {
  left: 0 !important;
  right: initial !important;
}
.items-container .items-list .item-row .item-grid > div.td-shortmessage, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-shortmessage {
  grid-area: shortmessage;
}
.items-container .items-list .item-row .item-grid > div.td-calcnet, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-calcnet {
  grid-area: calcnet;
  text-align: right;
}
.items-container .items-list .item-row .item-grid > div.td-kiunitextprice, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-kiunitextprice {
  grid-area: kitotalprice;
  text-align: right;
}
.items-container .items-list .item-row .item-grid > div.td-unitlist, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-unitlist {
  grid-area: unitlist;
  text-align: right;
}
.items-container .items-list .item-row .item-grid > div.td-unitextlist, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-unitextlist {
  grid-area: totallist;
  text-align: right;
}
.items-container .items-list .item-row .item-grid > div.td-unitdiscount, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-unitdiscount {
  grid-area: unitdiscount;
}
.items-container .items-list .item-row .item-grid > div.td-unitprice, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-unitprice {
  grid-area: unitprice;
  text-align: right;
}
.items-container .items-list .item-row .item-grid > div.td-unitextprice, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-unitextprice {
  grid-area: totalprice;
  text-align: right;
}
.items-container .items-list .item-row .item-grid > div.td-tagging, .items-container .items-list .item-row .item-inlinemessage-grid > div.td-tagging {
  grid-area: tagging;
}
.items-container.is-summary {
  overflow-y: unset;
}
.items-container.is-summary .items-list .header-row {
  border-top: solid 0px var(--bs-secondary) !important;
  border-bottom: solid 1px var(--bs-secondary) !important;
  color: var(--bs-body-color);
  font-weight: normal;
  top: -7px;
}
.items-container.is-summary .items-list .item-row .item-grid {
  grid-template-rows: 36px;
}
.items-container.is-summary .items-list .item-row .item-grid > div.td-delete {
  display: none;
}
.items-container.is-summary .items-list .item-row .item-grid > div.td-status {
  grid-column: span 2;
}
.items-container.is-summary .items-list .item-row:nth-child(2n) {
  background-color: #ffffff;
}
.items-container.is-summary .items-list .item-row [role=button] {
  display: none;
}
.items-container.is-summary .items-list .item-row .item-message {
  display: block !important;
}

.footer-row {
  text-transform: uppercase;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  padding-right: 8px;
  margin-bottom: 0.75rem;
}

body .kii-form.is-demand-mode .cda-input-block, body .edit-order.is-demand-mode .cda-input-block, body .edit-row.is-demand-mode .cda-input-block, body .kii-style.is-demand-mode .cda-input-block {
  width: 100% !important;
}
body .kii-form.is-demand-mode .cda-input-block .input-group .find-cda-button, body .edit-order.is-demand-mode .cda-input-block .input-group .find-cda-button, body .edit-row.is-demand-mode .cda-input-block .input-group .find-cda-button, body .kii-style.is-demand-mode .cda-input-block .input-group .find-cda-button {
  display: none !important;
}
body .kii-form.is-demand-mode .cda-input-block .input-group ~ .kii-feedback, body .edit-order.is-demand-mode .cda-input-block .input-group ~ .kii-feedback, body .edit-row.is-demand-mode .cda-input-block .input-group ~ .kii-feedback, body .kii-style.is-demand-mode .cda-input-block .input-group ~ .kii-feedback {
  right: 22px;
}
body .kii-form.is-demand-mode .cda-input-block .input-group ~ .kii-feedback.field-validation-expired, body .edit-order.is-demand-mode .cda-input-block .input-group ~ .kii-feedback.field-validation-expired, body .edit-row.is-demand-mode .cda-input-block .input-group ~ .kii-feedback.field-validation-expired, body .kii-style.is-demand-mode .cda-input-block .input-group ~ .kii-feedback.field-validation-expired {
  right: 14px;
}
body .kii-form.is-demand-mode .cda-link-block, body .edit-order.is-demand-mode .cda-link-block, body .edit-row.is-demand-mode .cda-link-block, body .kii-style.is-demand-mode .cda-link-block {
  display: none !important;
}
body .kii-form.is-demand-mode .price-list-description-row, body .edit-order.is-demand-mode .price-list-description-row, body .edit-row.is-demand-mode .price-list-description-row, body .kii-style.is-demand-mode .price-list-description-row {
  display: none;
}
body .kii-form.is-demand-mode .attachments-row, body .edit-order.is-demand-mode .attachments-row, body .edit-row.is-demand-mode .attachments-row, body .kii-style.is-demand-mode .attachments-row {
  display: none;
}
body .kii-form.is-demand-mode #PrintErrorsButton, body .edit-order.is-demand-mode #PrintErrorsButton, body .edit-row.is-demand-mode #PrintErrorsButton, body .kii-style.is-demand-mode #PrintErrorsButton {
  display: none;
}
body .kii-form.is-demand-mode #FilterErrorsButton, body .edit-order.is-demand-mode #FilterErrorsButton, body .edit-row.is-demand-mode #FilterErrorsButton, body .kii-style.is-demand-mode #FilterErrorsButton {
  padding-right: 0.75rem;
}

/*overwrite some bootstrap*/
:root {
  --bs-font-sans-serif: "Plus Jakarta Sans", system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --bs-dark: #000000;
  --bs-dark-rgb: 0,0,0;
  --bs-body-color: #000000;
  --kii-form-control-border-focus: #86b7fe;
  --kii-tertiary: #d3d3d3;
  --kii-tertiary-active: #a9a9a9;
  --kii-module: #f0f7f7;
  --kii-module-tint: #f5f7f7;
  --kii-module-highlight: #956839;
}

html {
  max-height: 100vh;
  font-size: 14px;
}
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}
html body {
  height: calc(100vh - 102px) !important;
  margin-top: 55px;
  margin-bottom: 60px;
  color: black;
}
html body .message-details {
  display: none;
  color: var(--bs-gray-400);
  font-size: smaller;
}
html body.show-message-details .message-details {
  display: inline !important;
}
html.framed body {
  height: calc(100vh - 192px) !important;
}
html .modal-dialog:not(.modal-dialog-centered) {
  margin-top: 75px;
}

.currency {
  position: relative;
  padding-left: 2rem !important;
}
.currency * {
  text-align: right;
}
.currency::before {
  position: absolute;
  left: 0;
  margin-left: 10px;
  color: var(--bs-gray-400);
}
.currency.currency-usd::before {
  content: "$" !important;
}
.currency.currency-usd.grand-total::after {
  content: " USD" !important;
}
.currency.currency-cad::before {
  content: "$" !important;
}
.currency.currency-cad.grand-total::after {
  content: " CAD" !important;
}
.currency.currency-unknown::before {
  content: "" !important;
}
.currency.currency-unknown.grand-total::after {
  content: "" !important;
}

.spinner {
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

main {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  overflow-y: hidden;
  border-width: 0 1px;
  border-style: solid;
  border-color: var(--bs-gray-200);
  box-shadow: 0 0 50px var(--bs-gray-200);
}
main #formContainer {
  overflow-x: hidden;
  overflow-y: auto;
  /* Added this padding so the home screen search focus glow can appear
      and we can still avoid making a horizontal scroll. */
  padding-left: 5px;
  margin-left: -5px;
}
@media (min-width: 1200px) {
  main .fix-scroll-margin {
    margin-right: -17px;
    overflow-x: clip;
  }
}

header {
  z-index: 1072;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
}
header::after {
  z-index: 1021;
  display: block;
  padding-bottom: 16px;
  background-color: #ffffff;
  line-height: 16px;
}
header .maintenance-alert {
  position: absolute;
  z-index: 2;
  width: 100%;
  background-color: var(--bs-red);
  color: var(--bs-white);
  text-align: center;
  opacity: 70%;
}
header .maintenance-alert a {
  color: white;
  text-decoration: none;
}

footer {
  z-index: 101;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  white-space: nowrap;
  line-height: 60px;
}

#statusAlert {
  z-index: 2000;
}

.navbar .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.7) !important;
}

/*This css controls menu-open-onhover*/
@media all and (min-width: 768px) {
  .nav-item.dropdown.nav-open-on-hover .dropdown-menu {
    display: none;
    margin-top: 0;
  }
  .nav-item.dropdown.nav-open-on-hover:hover .dropdown-menu {
    display: block;
  }
}
.test-table {
  margin: 0 auto;
  text-align: left;
}

table.sortable-table th:not(.no-sort):hover {
  cursor: pointer;
}
table.sortable-table th.sorted.ascending:after {
  content: " ↑";
}
table.sortable-table th.sorted.descending:after {
  content: " ↓";
}
table.sortable-table th:not(.sorted):after {
  content: " ↑↓";
  color: lightgray;
}
table.sortable-table th.no-sort:after {
  content: none;
}

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

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

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .user-badge {
    cursor: pointer;
    right: 0px;
    display: flex;
    height: 36px;
    margin: 2px 0;
    align-items: center;
    background-color: var(--bs-dark);
    border-radius: 50rem !important;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 1rem !important;
    font-weight: 400 !important;
    padding: 0.35em 0.65em;
    white-space: nowrap;
  }
  .user-badge.no-animate .user-badge-lastname {
    max-width: 0 !important;
  }
  .user-badge .user-badge-lastname {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    animation-delay: 0s;
    animation-direction: normal;
    animation-name: backspacing;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  .user-badge:hover .user-badge-lastname {
    animation-direction: normal;
    animation-name: typing;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
}

.env {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%) !important;
  padding: 2px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-radius: 50%;
  height: 23px;
  width: 23px;
  line-height: 10px;
  text-align: center;
}
.env::before {
  color: white;
  font-size: 14px !important;
  font-weight: bold;
}
.env.host-local {
  display: block !important;
  border-color: #000 !important;
}
.env.host-local::before {
  color: #000 !important;
}
.env.env-local {
  background-color: rgba(var(--bs-info-rgb));
  border-color: rgba(var(--bs-info-rgb));
}
.env.env-local::before {
  content: "L";
}
.env.env-development {
  background-color: rgba(var(--bs-primary-rgb));
  border-color: rgba(var(--bs-primary-rgb));
}
.env.env-development::before {
  content: "D";
}
.env.env-quality {
  background-color: rgba(var(--bs-success-rgb));
  border-color: rgba(var(--bs-success-rgb));
}
.env.env-quality::before {
  content: "Q";
}
.env.env-stage {
  background-color: rgba(var(--bs-warning-rgb));
  border-color: rgba(var(--bs-warning-rgb));
}
.env.env-stage::before {
  content: "G";
}
.env.env-horatio {
  display: none;
  background-color: var(--bs-orange);
}
.env.env-horatio::before {
  content: "H";
}
.env.env-production {
  display: none;
  background-color: rgba(var(--bs-danger-rgb));
}
.env.env-production::before {
  content: "P";
}

.nav-badge:hover .user-badge .user-badge-lastname {
  animation-direction: normal;
  animation-name: typing;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.nav-badge .nav-link {
  padding: 0;
}
.nav-badge .dropdown-menu {
  right: 8px;
}

/* Hide the up and down arrows on intgers inputs. */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.btn {
  text-transform: uppercase;
  font-weight: 600;
}

.fs-7 {
  font-size: 0.67em !important;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes typing {
  0% {
    max-width: 0;
    text-overflow: clip !important;
  }
  0.01% {
    text-overflow: clip !important;
  }
  99.99% {
    text-overflow: clip !important;
  }
  100% {
    max-width: 300px;
    text-overflow: ellipsis;
  }
}
@keyframes backspacing {
  0% {
    max-width: 300px;
    text-overflow: ellipsis !important;
  }
  0.01% {
    text-overflow: clip !important;
  }
  100% {
    max-width: 0;
  }
}
